diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..c040004 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,34 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: +// https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/typescript-node +{ + "name": "Frontend: CHIP Test Harness", + "build": { + "dockerfile": "../Dockerfile", + }, + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + + // The optional 'workspaceFolder' property is the path VS Code should open by default when + // connected. This is typically a file mount in .devcontainer/docker-compose.yml + "workspaceFolder": "/app", + + // Add the IDs of extensions you want installed when the container is created. + "extensions": [ + "dbaeumer.vscode-eslint", + "ms-vscode.vscode-typescript-tslint-plugin", + "msjsdiag.debugger-for-chrome", + "Angular.ng-template", + "ms-vscode.vscode-typescript-tslint-plugin", + "esbenp.prettier-vscode", + "mikael.angular-beastcode", + "cyrilletuzi.angular-schematics", + "angular.ng-template" + ], + // Use 'forwardPorts' to make a list of ports inside the container available locally. + "forwardPorts": [4200], + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "npm install" + // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root. + // "remoteUser": "node" +} diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..4d8c024 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,214 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "overrides": [ + { + "files": [ + "*.ts" + ], + "parserOptions": { + "project": [ + "./tsconfig.json" + ] + } + } + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "sourceType": "module" + }, + "plugins": [ + "@angular-eslint/eslint-plugin", + "@typescript-eslint" + ], + "rules": { + "@angular-eslint/component-class-suffix": "error", + "@angular-eslint/component-selector": [ + "error", + { + "type": "element", + "prefix": "app", + "style": "kebab-case" + } + ], + "@angular-eslint/directive-class-suffix": "error", + "@angular-eslint/directive-selector": [ + "error", + { + "type": "attribute", + "prefix": "app", + "style": "camelCase" + } + ], + "@angular-eslint/no-host-metadata-property": "error", + "@angular-eslint/no-input-rename": "error", + "@angular-eslint/no-inputs-metadata-property": "error", + "@angular-eslint/no-output-rename": "error", + "@angular-eslint/no-outputs-metadata-property": "error", + "@angular-eslint/use-lifecycle-interface": "error", + "@angular-eslint/use-pipe-transform-interface": "error", + "@typescript-eslint/consistent-type-definitions": "error", + "@typescript-eslint/dot-notation": "off", + "@typescript-eslint/explicit-member-accessibility": [ + "off", + { + "accessibility": "explicit" + } + ], + "@typescript-eslint/indent": [ + "error", + 2 + ], + "@typescript-eslint/member-delimiter-style": [ + "error", + { + "multiline": { + "delimiter": "semi", + "requireLast": true + }, + "singleline": { + "delimiter": "semi", + "requireLast": false + } + } + ], + "@typescript-eslint/member-ordering": "error", + "@typescript-eslint/naming-convention": "error", + "@typescript-eslint/no-empty-function": "off", + "@typescript-eslint/no-empty-interface": "error", + "@typescript-eslint/no-inferrable-types": [ + "error", + { + "ignoreParameters": true + } + ], + "@typescript-eslint/no-misused-new": "error", + "@typescript-eslint/no-non-null-assertion": "error", + "@typescript-eslint/no-shadow": [ + "error", + { + "hoist": "all" + } + ], + "@typescript-eslint/no-unused-expressions": "error", + "@typescript-eslint/no-use-before-define": "error", + "@typescript-eslint/prefer-function-type": "error", + "@typescript-eslint/semi": [ + "error", + "always" + ], + "@typescript-eslint/type-annotation-spacing": "error", + "@typescript-eslint/unified-signatures": "error", + "arrow-body-style": "error", + "brace-style": [ + "error", + "1tbs" + ], + "constructor-super": "error", + "curly": "error", + "dot-notation": "off", + "eol-last": "error", + "eqeqeq": [ + "error", + "smart" + ], + "guard-for-in": "error", + "id-blacklist": "off", + "id-match": "off", + "indent": [ + "error", + 2 + ], + "max-len": [ + "error", + { + "code": 140 + } + ], + "no-bitwise": "error", + "no-caller": "error", + "no-console": [ + "error", + { + "allow": [ + "log", + "warn", + "dir", + "timeLog", + "assert", + "clear", + "count", + "countReset", + "group", + "groupEnd", + "table", + "dirxml", + "error", + "groupCollapsed", + "Console", + "profile", + "profileEnd", + "timeStamp", + "context" + ] + } + ], + "no-debugger": "error", + "no-empty": "off", + "no-empty-function": "off", + "no-eval": "error", + "no-fallthrough": "error", + "no-new": "error", + "no-new-wrappers": "error", + "no-restricted-imports": "error", + "no-labels": "error", + "no-shadow": "error", + "no-throw-literal": "error", + "no-trailing-spaces": "error", + "no-undef-init": "error", + "no-underscore-dangle": "off", + "no-unused-expressions": "error", + "no-unused-labels": "error", + "no-use-before-define": "error", + "no-var": "error", + "no-irregular-whitespace": "error", + "prefer-const": "error", + "quotes": [ + "error", + "single" + ], + "object-curly-spacing": [ + "error", + "always" + ], + "radix": "error", + "semi": "error", + "spaced-comment": [ + "error", + "always", + { + "markers": [ + "/" + ] + } + ], + "valid-typeof": "error" + } +} +// the following rules from tslint can't be find on eslint rules +// member-ordering +// no-inputs-metadata-property +// no-outputs-metadata-property +// no-host-metadata-property +// no-input-rename +// no-output-rename +// use-lifecycle-interface +// use-pipe-transform-interface +// component-class-suffix +// directive-class-suffix +// no-access-missing-member +// templates-use-public +// invoke-injectable diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..e67c962 --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,29 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Node.js CI +on: + push: + branches: + - develop + pull_request: + branches: + - develop + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - run: npm install + - run: npm run build --if-present diff --git a/.github/workflows/npm-lint.yml b/.github/workflows/npm-lint.yml new file mode 100644 index 0000000..00f38b8 --- /dev/null +++ b/.github/workflows/npm-lint.yml @@ -0,0 +1,24 @@ +name: npm linting +on: + push: + branches: + - develop + pull_request: + branches: + - develop + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: setup-node + uses: actions/setup-python@v1 + with: + node-version: 14.x + - name: Install Dependencies + run: | + npm install + - name: Code Linting + run: | + npm run lint diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8225baa --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/node_modules +/dist diff --git a/.pullapprove.yml b/.pullapprove.yml new file mode 100644 index 0000000..a90ac0f --- /dev/null +++ b/.pullapprove.yml @@ -0,0 +1,39 @@ + +version: 3 + +# https://developer.github.com/v3/previews/#draft-pull-requests +github_api_version: "shadow-cat-preview" + +pullapprove_conditions: + - "base.ref == 'develop'" + +############################################################ +# Notifications +############################################################ + +notifications: + ############################################################ + # New contributors + ############################################################ + - when: pull_request.opened + if: "author_association == 'FIRST_TIME_CONTRIBUTOR'" + comment: | + Hey @{{ author }}, thanks for the PR! The review will start once + the tests and CI checks have passed. If they don't, please review + the logs and try to fix the issues (ask for help if you can't + figure it out). A reviewer will be assigned once the tests are + passing and they'll walk you through getting the PR finished + and merged. + +groups: +############################################################ +# Shared Reviewer Groups +############################################################ + dev-team-reviewers: + conditions: + - files.include('*') + reviewers: + teams: [test-harness-devs] + reviews: + request: 2 + required: 2 diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..89f39a5 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,12 @@ +{ + // List of extensions which should be recommended for users of this workspace. + "recommendations": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "angular.ng-template", + ], + // List of extensions recommended by VS Code that should not be recommended for users of this workspace. + "unwantedRecommendations": [ + + ] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d25f62d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "command": "npm start", + "name": "Run npm start", + "request": "launch", + "type": "node-terminal" + }, + { + "type": "pwa-chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..80dad9a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ +# Stage 0, "build-stage", based on Node.js, to build and compile the frontend +FROM node:14.15 +# Puppeteer dependencies, from: https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker +# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others) +# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer +# installs, work. +ARG INSTALL_PUPPETEER=false +RUN bash -c "if [ $INSTALL_PUPPETEER == 'true' ] ; then apt-get update && apt-get install -y wget --no-install-recommends \ + && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ + && sh -c 'echo \"deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main\" >> /etc/apt/sources.list.d/google.list' \ + && apt-get update \ + && apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \ + --no-install-recommends \ + && rm -rf /var/lib/apt/lists/* \ + && apt-get purge --auto-remove -y curl \ + && rm -rf /src/*.deb; fi" +WORKDIR /app +RUN bash -c "if [ $INSTALL_PUPPETEER == 'true' ] ; then npm install puppeteer ; fi" +COPY package*.json /app/ +RUN npm install +COPY ./ /app/ +ARG FRONTEND_ENV=production +ENV ANGULAR_APP_ENV=${FRONTEND_ENV} +ARG INSTALL_DEV=false +RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then npm install -g @angular/cli ; fi" +EXPOSE 4200 +CMD npm run start diff --git a/README.md b/README.md new file mode 100644 index 0000000..b51d9a6 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ + +Welcome to CHIP test Harness portal. + + +## First time users + +Run `npm install` in current directory. + +## Development server + +Run `npm start` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. diff --git a/angular.json b/angular.json new file mode 100644 index 0000000..62ed4b0 --- /dev/null +++ b/angular.json @@ -0,0 +1,116 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "cli": { + "analytics": "731824a4-9faf-47ce-92bd-a3ec4079a145" + }, + "version": 1, + "newProjectRoot": "projects", + "projects": { + "chip-cert-tool-frontend": { + "projectType": "application", + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/chip-cert-tool-frontend", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/favicon.ico", + "src/assets" + ], + "styles": [ + "src/styles.scss", + "node_modules/primeicons/primeicons.css", + "node_modules/primeng/resources/primeng.min.css" + ], + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "2mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "1mb" + } + ], + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "chip-cert-tool-frontend:build:production" + }, + "development": { + "browserTarget": "chip-cert-tool-frontend:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "chip-cert-tool-frontend:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "inlineStyleLanguage": "scss", + "assets": [ + "src/favicon.ico", + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + } + } + } + } + }, + "defaultProject": "chip-cert-tool-frontend" +} diff --git a/browserslist b/browserslist new file mode 100644 index 0000000..8084853 --- /dev/null +++ b/browserslist @@ -0,0 +1,12 @@ +# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. +# For additional information regarding the format and rule options, please see: +# https://github.com/browserslist/browserslist#queries + +# You can see what browsers were selected by your queries by running: +# npx browserslist + +> 0.5% +last 2 versions +Firefox ESR +not dead +not IE 9-11 # For IE 9-11 support, remove 'not'. \ No newline at end of file diff --git a/docs/development/Test_Harness_Frontend_Development_Environment_Setup_Windows/Test_Harness_Frontend_Development_Environment_Setup_Windows.adoc b/docs/development/Test_Harness_Frontend_Development_Environment_Setup_Windows/Test_Harness_Frontend_Development_Environment_Setup_Windows.adoc new file mode 100644 index 0000000..23e9cf9 --- /dev/null +++ b/docs/development/Test_Harness_Frontend_Development_Environment_Setup_Windows/Test_Harness_Frontend_Development_Environment_Setup_Windows.adoc @@ -0,0 +1,133 @@ +//// + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +//// += Test Harness Frontend Development Environment Setup (Windows) +ifdef::env-github[] +:tip-caption: :bulb: +:note-caption: :information_source: +:important-caption: :heavy_exclamation_mark: +:caution-caption: :fire: +:warning-caption: :warning: +endif::[] +ifndef::env-github[] +:icons: font +endif::[] +:idprefix: +:idseparator: - +:sectlinks: +:sectanchors: +:sectnumlevels: 4 +:toc-title: +:toc: + +[discrete] +== *Revision History* + +|=== +| *Revision* | *Date* | *Author* | *Description* +| 1 | 20-Jul-2023 | [CSA]Raul Marquez | * Initial version. +|=== + +:sectnums: +== Pre-requisites +- GitHub account +- Access to the Test Harness Frontend repository + +== Software Requirements +=== Visual Studio Code + +Download and install Visual Studio Code from https://code.visualstudio.com/Download + +=== NodeJs / npm +Download and install NodeJs / npm (version 12.14.1) from https://nodejs.org/en/blog/release/v12.14.1 + +Verify NodeJs installation + +[source,bash] +----------------- +node --version +----------------- + +Verify npm installation + +[source,bash] +----------------- +npm --version +----------------- + +=== Angular CLI +Run this command to install Angular CLI version 12.1.4 + +[source,bash] +----------------- +npm install -g @angular/cli@~12.1.4 +----------------- + +Verify Angular CLI installation + +[source,bash] +----------------- +ng version +----------------- + +== Test Harness Frontend repository +Clone the Test Harness Frontend repository + +https://github.com/CHIP-Specifications/chip-certification-tool-frontend/tree/develop + + +== Run Application +From the cloned repository root folder, run the following commands + +Install dependencies + +[source,bash] +----------------- +npm install +----------------- + +Run development server + +[source,bash] +----------------- +npm start +----------------- + +Navigate to UI in the browser + +`http://localhost:4200/` + +== Troubleshooting +=== [red]#*ng.ps1 cannot be loaded because running scripts is disabled on this system*# +This error occurs when the system has disabled the running script and can't accept the ng commands. + +To solve this problem, run the following: + +Update the Execution Policy of the current user + +[source,bash] +----------------- +set-ExecutionPolicy RemoteSigned -Scope CurrentUser +----------------- + +Verify the updated Execution Policy, it should return '_RemoteSigned_' + +[source,bash] +----------------- +Get-ExecutionPolicy +----------------- + +You will now be able to run *ng* commands diff --git a/karma.conf.js b/karma.conf.js new file mode 100644 index 0000000..b897b2d --- /dev/null +++ b/karma.conf.js @@ -0,0 +1,67 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + // Karma configuration file, see link for more information +// https://karma-runner.github.io/1.0/config/configuration-file.html + +module.exports = function (config) { + config.set({ + basePath: '', + frameworks: ['jasmine', '@angular-devkit/build-angular'], + plugins: [ + require('karma-jasmine'), + require('karma-chrome-launcher'), + require('karma-jasmine-html-reporter'), + require('karma-coverage'), + require('@angular-devkit/build-angular/plugins/karma') + ], + client: { + jasmine: { + // you can add configuration options for Jasmine here + // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html + // for example, you can disable the random execution with `random: false` + // or set a specific seed with `seed: 4321` + }, + clearContext: false // leave Jasmine Spec Runner output visible in browser + }, + jasmineHtmlReporter: { + suppressAll: true // removes the duplicated traces + }, + coverageReporter: { + dir: require('path').join(__dirname, './coverage/chip-cert-tool-frontend'), + subdir: '.', + reporters: [ + { type: 'html' }, + { type: 'text-summary' } + ] + }, + reporters: ['progress', 'kjhtml'], + port: 9876, + colors: true, + logLevel: config.LOG_INFO, + autoWatch: true, + browsers: ['Chrome'], + singleRun: false, + restartOnFileChange: true, + customLaunchers: { + // eslint-disable-next-line @typescript-eslint/naming-convention + ChromeHeadlessPuppeteer: { + base: 'ChromeHeadless', + flags: ['--no-sandbox', '--disable-gpu'] + } + } + }); +}; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..c4abd4d --- /dev/null +++ b/package-lock.json @@ -0,0 +1,14085 @@ +{ + "name": "chip-cert-tool-frontend", + "version": "0.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@angular-devkit/architect": { + "version": "0.1201.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1201.4.tgz", + "integrity": "sha512-hGO5NrZxV8Z7sILwokt7H+1sMf+5tJS9PJszvYlIBSzG0LBkOwwLQDb4MD42ATXFru57SXNqMZDVKoi1kTgxAw==", + "dev": true, + "requires": { + "@angular-devkit/core": "12.1.4", + "rxjs": "6.6.7" + } + }, + "@angular-devkit/build-angular": { + "version": "12.1.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-12.1.4.tgz", + "integrity": "sha512-9kMdnaU2dr8o7gJpuBsEHLUpa6huF8uZQEd1+jhKfByEY/xTQo8qztvmbhFhrSfDvdYRygNHItpt3pYEoCEOig==", + "dev": true, + "requires": { + "@angular-devkit/architect": "0.1201.4", + "@angular-devkit/build-optimizer": "0.1201.4", + "@angular-devkit/build-webpack": "0.1201.4", + "@angular-devkit/core": "12.1.4", + "@babel/core": "7.14.6", + "@babel/generator": "7.14.5", + "@babel/helper-annotate-as-pure": "7.14.5", + "@babel/plugin-proposal-async-generator-functions": "7.14.7", + "@babel/plugin-transform-async-to-generator": "7.14.5", + "@babel/plugin-transform-runtime": "7.14.5", + "@babel/preset-env": "7.14.7", + "@babel/runtime": "7.14.6", + "@babel/template": "7.14.5", + "@discoveryjs/json-ext": "0.5.3", + "@jsdevtools/coverage-istanbul-loader": "3.0.5", + "@ngtools/webpack": "12.1.4", + "ansi-colors": "4.1.1", + "babel-loader": "8.2.2", + "browserslist": "^4.9.1", + "cacache": "15.2.0", + "caniuse-lite": "^1.0.30001032", + "circular-dependency-plugin": "5.2.2", + "copy-webpack-plugin": "9.0.0", + "core-js": "3.15.1", + "critters": "0.0.10", + "css-loader": "5.2.6", + "css-minimizer-webpack-plugin": "3.0.1", + "find-cache-dir": "3.3.1", + "glob": "7.1.7", + "https-proxy-agent": "5.0.0", + "inquirer": "8.1.1", + "jest-worker": "27.0.2", + "karma-source-map-support": "1.4.0", + "less": "4.1.1", + "less-loader": "10.0.0", + "license-webpack-plugin": "2.3.20", + "loader-utils": "2.0.0", + "mini-css-extract-plugin": "1.6.2", + "minimatch": "3.0.4", + "open": "8.2.1", + "ora": "5.4.1", + "parse5-html-rewriting-stream": "6.0.1", + "postcss": "8.3.5", + "postcss-import": "14.0.2", + "postcss-loader": "6.1.0", + "postcss-preset-env": "6.7.0", + "raw-loader": "4.0.2", + "regenerator-runtime": "0.13.7", + "resolve-url-loader": "4.0.0", + "rxjs": "6.6.7", + "sass": "1.35.1", + "sass-loader": "12.1.0", + "semver": "7.3.5", + "source-map": "0.7.3", + "source-map-loader": "3.0.0", + "source-map-support": "0.5.19", + "style-loader": "2.0.0", + "stylus": "0.54.8", + "stylus-loader": "6.1.0", + "terser": "5.7.0", + "terser-webpack-plugin": "5.1.3", + "text-table": "0.2.0", + "tree-kill": "1.2.2", + "tslib": "2.3.0", + "webpack": "5.44.0", + "webpack-dev-middleware": "5.0.0", + "webpack-dev-server": "3.11.2", + "webpack-merge": "5.8.0", + "webpack-subresource-integrity": "1.5.2" + } + }, + "@angular-devkit/build-optimizer": { + "version": "0.1201.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.1201.4.tgz", + "integrity": "sha512-Hq+mDUe4xIyq4939JZaUkptsM89WnZOk8Qel6mS0T/bxMX/qs+nuGD5o+xDKkuayogbiTrLmyZBib0/90eSXEA==", + "dev": true, + "requires": { + "source-map": "0.7.3", + "tslib": "2.3.0", + "typescript": "4.3.4" + }, + "dependencies": { + "typescript": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.4.tgz", + "integrity": "sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew==", + "dev": true + } + } + }, + "@angular-devkit/build-webpack": { + "version": "0.1201.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1201.4.tgz", + "integrity": "sha512-eMmbyHyWJZMQ1tfwVdja/iAk/eXJFYrF8b27gDV9gGI7MGB3KJ93AhkbPbcvlw4Hhx4+6M11GfeXzbwH0q9pnQ==", + "dev": true, + "requires": { + "@angular-devkit/architect": "0.1201.4", + "rxjs": "6.6.7" + } + }, + "@angular-devkit/core": { + "version": "12.1.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-12.1.4.tgz", + "integrity": "sha512-KOzGD8JbP/7EeUwPiU5x+fo3ZEQ5R4IVW5WoH92PaO3mdpqXC7UL2MWLct8PUe9il9nqJMvrBMldSSvP9PCT2w==", + "dev": true, + "requires": { + "ajv": "8.6.0", + "ajv-formats": "2.1.0", + "fast-json-stable-stringify": "2.1.0", + "magic-string": "0.25.7", + "rxjs": "6.6.7", + "source-map": "0.7.3" + } + }, + "@angular-devkit/schematics": { + "version": "12.1.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.1.4.tgz", + "integrity": "sha512-yD3y3pK/K5piOgvALFoCCiPp4H8emNa3yZL+vlpEpewVLpF1MM55LeTxc0PI5s0uqtOGVnvcbA5wYgMm3YsUEA==", + "dev": true, + "requires": { + "@angular-devkit/core": "12.1.4", + "ora": "5.4.1", + "rxjs": "6.6.7" + } + }, + "@angular-eslint/eslint-plugin": { + "version": "12.3.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-12.3.1.tgz", + "integrity": "sha512-KBm27onYggRcusA/BxuSkDGpVnIs8yG4ARio8ZAhe0H2XIRJTzJZ7oIBBjugDau03AGX3VMG6wAXailjJvsywg==", + "requires": { + "@typescript-eslint/experimental-utils": "4.28.2" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.2.tgz", + "integrity": "sha512-MwHPsL6qo98RC55IoWWP8/opTykjTp4JzfPu1VfO2Z0MshNP0UZ1GEV5rYSSnZSUI8VD7iHvtIPVGW5Nfh7klQ==", + "requires": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.28.2", + "@typescript-eslint/types": "4.28.2", + "@typescript-eslint/typescript-estree": "4.28.2", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.28.2.tgz", + "integrity": "sha512-MqbypNjIkJFEFuOwPWNDjq0nqXAKZvDNNs9yNseoGBB1wYfz1G0WHC2AVOy4XD7di3KCcW3+nhZyN6zruqmp2A==", + "requires": { + "@typescript-eslint/types": "4.28.2", + "@typescript-eslint/visitor-keys": "4.28.2" + } + }, + "@typescript-eslint/types": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.28.2.tgz", + "integrity": "sha512-Gr15fuQVd93uD9zzxbApz3wf7ua3yk4ZujABZlZhaxxKY8ojo448u7XTm/+ETpy0V0dlMtj6t4VdDvdc0JmUhA==" + }, + "@typescript-eslint/typescript-estree": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.2.tgz", + "integrity": "sha512-86lLstLvK6QjNZjMoYUBMMsULFw0hPHJlk1fzhAVoNjDBuPVxiwvGuPQq3fsBMCxuDJwmX87tM/AXoadhHRljg==", + "requires": { + "@typescript-eslint/types": "4.28.2", + "@typescript-eslint/visitor-keys": "4.28.2", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.2.tgz", + "integrity": "sha512-aT2B4PLyyRDUVUafXzpZFoc0C9t0za4BJAKP5sgWIhG+jHECQZUEjuQSCIwZdiJJ4w4cgu5r3Kh20SOdtEBl0w==", + "requires": { + "@typescript-eslint/types": "4.28.2", + "eslint-visitor-keys": "^2.0.0" + } + } + } + }, + "@angular/animations": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-12.1.5.tgz", + "integrity": "sha512-t17n8RuzkY7lYawmI01WuNWf70ttvEPknmS3sh7q2IAsBdRiLQCBmh6Hw5q0SBaQNoRWNIcUWKBwl4EmyXOtrA==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@angular/cdk": { + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-12.2.0.tgz", + "integrity": "sha512-Dts+KIMz6EdzQxaWBFcNwgWAHVPkI5pnOGMidKKVOmjezSUN6mhfBKq8emgsddJMRAqz/1VHMAEaRkp0VoBKiA==", + "requires": { + "parse5": "^5.0.0", + "tslib": "^2.2.0" + } + }, + "@angular/cli": { + "version": "12.1.4", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-12.1.4.tgz", + "integrity": "sha512-LpyhyqWe3bFcuH3MrXeYoIPI1htjwG1b5ehETfq4qsMvNmuFON6QI+F7EWEpX7lItVQc2bES+ogasTZsZue/uw==", + "dev": true, + "requires": { + "@angular-devkit/architect": "0.1201.4", + "@angular-devkit/core": "12.1.4", + "@angular-devkit/schematics": "12.1.4", + "@schematics/angular": "12.1.4", + "@yarnpkg/lockfile": "1.1.0", + "ansi-colors": "4.1.1", + "debug": "4.3.1", + "ini": "2.0.0", + "inquirer": "8.1.1", + "jsonc-parser": "3.0.0", + "npm-package-arg": "8.1.5", + "npm-pick-manifest": "6.1.1", + "open": "8.2.1", + "ora": "5.4.1", + "pacote": "11.3.4", + "resolve": "1.20.0", + "semver": "7.3.5", + "symbol-observable": "4.0.0", + "uuid": "8.3.2" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "@angular/common": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-12.1.5.tgz", + "integrity": "sha512-xs33eMhV79S85nbH5FVmujKY3OoczloW9oOGRe5tCzxsDDv85hadrB8Mbm3qI5WQ99DNk8M2+P0MW6uiyCAWkQ==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@angular/compiler": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-12.1.5.tgz", + "integrity": "sha512-MBrNCuTFmBiTy+sqmBYRqfBHPBJeONvRWOxHepn/CMtjHJiTZ+PHG61Chu2ySxLBuOZxAGaP4GMcqIc15G742g==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@angular/compiler-cli": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-12.1.5.tgz", + "integrity": "sha512-5YqZ5heKS3G5t3Fg9L26UedNnum8F9yjNDgUq0qvYR2b6nEDOLYgUxuUSRtg6IGDglSgbxpkgkGNd/SHF9Iu8A==", + "dev": true, + "requires": { + "@babel/core": "^7.8.6", + "@babel/types": "^7.8.6", + "canonical-path": "1.0.0", + "chokidar": "^3.0.0", + "convert-source-map": "^1.5.1", + "dependency-graph": "^0.11.0", + "magic-string": "^0.25.0", + "minimist": "^1.2.0", + "reflect-metadata": "^0.1.2", + "semver": "^7.0.0", + "source-map": "^0.6.1", + "sourcemap-codec": "^1.4.8", + "tslib": "^2.2.0", + "yargs": "^17.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.0.tgz", + "integrity": "sha512-SQr7qqmQ2sNijjJGHL4u7t8vyDZdZ3Ahkmo4sc1w5xI9TBX0QDdG/g4SFnxtWOsGLjwHQue57eFALfwFCnixgg==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "@angular/core": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-12.1.5.tgz", + "integrity": "sha512-okXnhAPxfblAWSe5M/IqrSATi+ul83a9o9PWOTFR/XCVcbx+neE2IwIr1dIDKBKj91b1CFalLS+uOSkN05PNkA==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@angular/flex-layout": { + "version": "12.0.0-beta.34", + "resolved": "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-12.0.0-beta.34.tgz", + "integrity": "sha512-nLwKovXpyG+/U3Lbmfwt+q4ARupxtbPmFTZD0Y8oItFAV6/Oh9l+QQsNQa2VhOHAOrVagyDwcEM+SePtB5EmrQ==", + "requires": { + "tslib": "^2.1.0" + } + }, + "@angular/forms": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-12.1.5.tgz", + "integrity": "sha512-ABfBRCZYVbR5MUkMNrYU/ovCjXtCedk0h4phzCimGl6hBcpbumT9z/3m0TsY9sQnLq0BaCfKNklnHwCuO9mSSg==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@angular/platform-browser": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-12.1.5.tgz", + "integrity": "sha512-UNlmvCY8cS1/WojCJtgf/EMMN8qdPV1IQa6vZ6/ChQiS38YlH+aQEOCcxtSSfMFmWjaz7j67u55vSlkvA4rApQ==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@angular/platform-browser-dynamic": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-12.1.5.tgz", + "integrity": "sha512-4Anc2pRGRnBHzSeWMYOaEs6hUYw09N/WsOg1lHevZ8abwXyo80xOKiZa+kfgFkst0XaY8DzuDQFnj7opcEVdCQ==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@angular/router": { + "version": "12.1.5", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-12.1.5.tgz", + "integrity": "sha512-ZZFLcaenVFKCyaxD3mU4cuV4RNFwCEN6JLWmkOFkwIt01RVJcvPaPxiv4pfQf5hnk2HeSciMA0J+UIzSu5YKMA==", + "requires": { + "tslib": "^2.2.0" + } + }, + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", + "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.14.5" + } + }, + "@babel/compat-data": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", + "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", + "dev": true + }, + "@babel/core": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz", + "integrity": "sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.6", + "@babel/parser": "^7.14.6", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz", + "integrity": "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", + "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz", + "integrity": "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz", + "integrity": "sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz", + "integrity": "sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.15.0", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.0", + "@babel/helper-split-export-declaration": "^7.14.5" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz", + "integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz", + "integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz", + "integrity": "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz", + "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz", + "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz", + "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz", + "integrity": "sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==", + "dev": true, + "requires": { + "@babel/types": "^7.15.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz", + "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-module-transforms": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz", + "integrity": "sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.0", + "@babel/helper-simple-access": "^7.14.8", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.15.0", + "@babel/types": "^7.15.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", + "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz", + "integrity": "sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-wrap-function": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-replace-supers": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz", + "integrity": "sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.15.0", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.15.0", + "@babel/types": "^7.15.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.14.8", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz", + "integrity": "sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==", + "dev": true, + "requires": { + "@babel/types": "^7.14.8" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz", + "integrity": "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz", + "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", + "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz", + "integrity": "sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helpers": { + "version": "7.14.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.8.tgz", + "integrity": "sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw==", + "dev": true, + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.8", + "@babel/types": "^7.14.8" + } + }, + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", + "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.15.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.2.tgz", + "integrity": "sha512-bMJXql1Ss8lFnvr11TZDH4ArtwlAS5NG9qBmdiFW2UHHm6MVoR+GDc5XE2b9K938cyjc9O6/+vjjcffLDtfuDg==", + "dev": true + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz", + "integrity": "sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz", + "integrity": "sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz", + "integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz", + "integrity": "sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz", + "integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz", + "integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz", + "integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz", + "integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", + "integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz", + "integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz", + "integrity": "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.14.7", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.14.5" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz", + "integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz", + "integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz", + "integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz", + "integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz", + "integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", + "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz", + "integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz", + "integrity": "sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz", + "integrity": "sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz", + "integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz", + "integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz", + "integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz", + "integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz", + "integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz", + "integrity": "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz", + "integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz", + "integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz", + "integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz", + "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz", + "integrity": "sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.15.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.14.8", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz", + "integrity": "sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz", + "integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz", + "integrity": "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz", + "integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz", + "integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz", + "integrity": "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz", + "integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz", + "integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", + "dev": true, + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz", + "integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.5.tgz", + "integrity": "sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz", + "integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz", + "integrity": "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz", + "integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz", + "integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz", + "integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz", + "integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz", + "integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/preset-env": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.7.tgz", + "integrity": "sha512-itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.14.7", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-async-generator-functions": "^7.14.7", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.14.5", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.14.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.14.5", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@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-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.14.5", + "@babel/plugin-transform-classes": "^7.14.5", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.7", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.14.5", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.14.5", + "@babel/plugin-transform-modules-systemjs": "^7.14.5", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.7", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.14.5", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.14.6", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.15.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/runtime": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz", + "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/traverse": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz", + "integrity": "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.0", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.15.0", + "@babel/types": "^7.15.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/generator": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz", + "integrity": "sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==", + "dev": true, + "requires": { + "@babel/types": "^7.15.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", + "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + } + }, + "@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", + "dev": true + }, + "@discoveryjs/json-ext": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz", + "integrity": "sha512-Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "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 + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", + "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==", + "dev": true + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jsdevtools/coverage-istanbul-loader": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jsdevtools/coverage-istanbul-loader/-/coverage-istanbul-loader-3.0.5.tgz", + "integrity": "sha512-EUCPEkaRPvmHjWAAZkWMT7JDzpw7FKB00WTISaiXsbNOd5hCHg77XLA8sLYLFDo1zepYLo2w7GstN8YBqRXZfA==", + "dev": true, + "requires": { + "convert-source-map": "^1.7.0", + "istanbul-lib-instrument": "^4.0.3", + "loader-utils": "^2.0.0", + "merge-source-map": "^1.1.0", + "schema-utils": "^2.7.0" + } + }, + "@ngtools/webpack": { + "version": "12.1.4", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-12.1.4.tgz", + "integrity": "sha512-hXc8dTnRfDB7o1Pd7a07aw0rjGmVLXU28+cTHQJliosgD3obcjfZ4QPA0k97vlQMtqVJawuShRfyiUKrpsJf8Q==", + "dev": true, + "requires": { + "enhanced-resolve": "5.8.2" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/git": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz", + "integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==", + "dev": true, + "requires": { + "@npmcli/promise-spawn": "^1.3.2", + "lru-cache": "^6.0.0", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^6.1.1", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@npmcli/installed-package-contents": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz", + "integrity": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==", + "dev": true, + "requires": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "@npmcli/node-gyp": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.2.tgz", + "integrity": "sha512-yrJUe6reVMpktcvagumoqD9r08fH1iRo01gn1u0zoCApa9lnZGEigVKUd2hzsCId4gdtkZZIVscLhNxMECKgRg==", + "dev": true + }, + "@npmcli/promise-spawn": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz", + "integrity": "sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==", + "dev": true, + "requires": { + "infer-owner": "^1.0.4" + } + }, + "@npmcli/run-script": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.5.tgz", + "integrity": "sha512-NQspusBCpTjNwNRFMtz2C5MxoxyzlbuJ4YEhxAKrIonTiirKDtatsZictx9RgamQIx6+QuHMNmPl0wQdoESs9A==", + "dev": true, + "requires": { + "@npmcli/node-gyp": "^1.0.2", + "@npmcli/promise-spawn": "^1.3.2", + "infer-owner": "^1.0.4", + "node-gyp": "^7.1.0", + "read-package-json-fast": "^2.0.1" + } + }, + "@schematics/angular": { + "version": "12.1.4", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-12.1.4.tgz", + "integrity": "sha512-xGqgGI6GWk4EFdKis8FmSESxoLgjnLQbaRE1t1KZCkSKJzqkOj0R9wiDrtZfcrbPxIkLL+3fAk2ThwwPznT6yw==", + "dev": true, + "requires": { + "@angular-devkit/core": "12.1.4", + "@angular-devkit/schematics": "12.1.4", + "jsonc-parser": "3.0.0" + } + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true + }, + "@trysound/sax": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz", + "integrity": "sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow==", + "dev": true + }, + "@types/component-emitter": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz", + "integrity": "sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg==", + "dev": true + }, + "@types/cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", + "dev": true + }, + "@types/cors": { + "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", + "dev": true + }, + "@types/eslint": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.0.tgz", + "integrity": "sha512-07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz", + "integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", + "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "dev": true + }, + "@types/file-saver": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.3.tgz", + "integrity": "sha512-MBIou8pd/41jkff7s97B47bc9+p0BszqqDJsO51yDm49uUxeKzrfuNl5fSLC6BpLEWKA8zlwyqALVmXrFwoBHQ==", + "dev": true + }, + "@types/glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/jasmine": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-3.8.2.tgz", + "integrity": "sha512-u5h7dqzy2XpXTzhOzSNQUQpKGFvROF8ElNX9P/TJvsHnTg/JvsAseVsGWQAQQldqanYaM+5kwxW909BBFAUYsg==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" + }, + "@types/lodash": { + "version": "4.14.178", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz", + "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "@types/node": { + "version": "12.20.19", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.19.tgz", + "integrity": "sha512-niAuZrwrjKck4+XhoCw6AAVQBENHftpXw9F4ryk66fTgYaKQ53R4FI7c9vUGGw5vQis1HKBHDR1gcYI/Bq1xvw==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "@types/webpack-sources": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.9.tgz", + "integrity": "sha512-bvzMnzqoK16PQIC8AYHNdW45eREJQMd6WG/msQWX5V2+vZmODCOPb4TJcbgRljTZZTwTM4wUMcsI8FftNA7new==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.1.tgz", + "integrity": "sha512-AHqIU+SqZZgBEiWOrtN94ldR3ZUABV5dUG94j8Nms9rQnHFc8fvDOue/58K4CFz6r8OtDDc35Pw9NQPWo0Ayrw==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "4.29.1", + "@typescript-eslint/scope-manager": "4.29.1", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/eslint-plugin-tslint": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin-tslint/-/eslint-plugin-tslint-4.29.1.tgz", + "integrity": "sha512-Xk2eXDKnKqGk9DetITb9mwRIsw1SBYIrEFUrhy81Ebzuv5egMl9gOw4CqzOIPQeFpJgmXu0fTJK8r/5pNnKIlg==", + "requires": { + "@typescript-eslint/experimental-utils": "4.29.1", + "lodash": "^4.17.21" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.1.tgz", + "integrity": "sha512-kl6QG6qpzZthfd2bzPNSJB2YcZpNOrP6r9jueXupcZHnL74WiuSjaft7WSu17J9+ae9zTlk0KJMXPUj0daBxMw==", + "requires": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.29.1", + "@typescript-eslint/types": "4.29.1", + "@typescript-eslint/typescript-estree": "4.29.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.1.tgz", + "integrity": "sha512-3fL5iN20hzX3Q4OkG7QEPFjZV2qsVGiDhEwwh+EkmE/w7oteiOvUNzmpu5eSwGJX/anCryONltJ3WDmAzAoCMg==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.29.1", + "@typescript-eslint/types": "4.29.1", + "@typescript-eslint/typescript-estree": "4.29.1", + "debug": "^4.3.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.29.1.tgz", + "integrity": "sha512-Hzv/uZOa9zrD/W5mftZa54Jd5Fed3tL6b4HeaOpwVSabJK8CJ+2MkDasnX/XK4rqP5ZTWngK1ZDeCi6EnxPQ7A==", + "requires": { + "@typescript-eslint/types": "4.29.1", + "@typescript-eslint/visitor-keys": "4.29.1" + } + }, + "@typescript-eslint/types": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.29.1.tgz", + "integrity": "sha512-Jj2yu78IRfw4nlaLtKjVaGaxh/6FhofmQ/j8v3NXmAiKafbIqtAPnKYrf0sbGjKdj0hS316J8WhnGnErbJ4RCA==" + }, + "@typescript-eslint/typescript-estree": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.1.tgz", + "integrity": "sha512-lIkkrR9E4lwZkzPiRDNq0xdC3f2iVCUjw/7WPJ4S2Sl6C3nRWkeE1YXCQ0+KsiaQRbpY16jNaokdWnm9aUIsfw==", + "requires": { + "@typescript-eslint/types": "4.29.1", + "@typescript-eslint/visitor-keys": "4.29.1", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.1.tgz", + "integrity": "sha512-zLqtjMoXvgdZY/PG6gqA73V8BjqPs4af1v2kiiETBObp+uC6gRYnJLmJHxC0QyUrrHDLJPIWNYxoBV3wbcRlag==", + "requires": { + "@typescript-eslint/types": "4.29.1", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@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 + }, + "@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 + }, + "@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz", + "integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + } + }, + "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, + "requires": { + "debug": "4" + } + }, + "agentkeepalive": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.1.4.tgz", + "integrity": "sha512-+V/rGa3EuU74H6wR04plBb7Ks10FbtUQgRj/FQOG7uUIEuaINI+AiqJR1k6t3SVNs7o7ZjIdus6706qqzVq8jQ==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz", + "integrity": "sha512-cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-formats": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.0.tgz", + "integrity": "sha512-USH2jBb+C/hIpwD2iRjp0pe0k+MvzG0mlSn/FIdCgQhUb9ALPRjt2KIQdfZDS9r0ZIeUAg7gOu9KL0PFqGqr5Q==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "ansi-align": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", + "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", + "requires": { + "string-width": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "dev": true + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "app-root-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.0.0.tgz", + "integrity": "sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw==" + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "are-we-there-yet": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "dev": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", + "integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=", + "requires": { + "ast-types-flow": "0.0.7", + "commander": "^2.11.0" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "dev": true, + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "axobject-query": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.2.tgz", + "integrity": "sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww==", + "requires": { + "ast-types-flow": "0.0.7" + } + }, + "babel-loader": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", + "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "integrity": "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz", + "integrity": "sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.14.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "integrity": "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-arraybuffer": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz", + "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=", + "dev": true + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "base64id": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", + "dev": true + }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "bowser": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" + }, + "boxen": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.0.1.tgz", + "integrity": "sha512-49VBlw+PrWEF51aCmy7QIteYPIFZxSpvqBdP/2itCPPlJ49kj9zg/XPRFrdkne2W+CfwXUls8exMvu1RysZpKA==", + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.0", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "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==" + }, + "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==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.16.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.7.tgz", + "integrity": "sha512-7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001248", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.793", + "escalade": "^3.1.1", + "node-releases": "^1.1.73" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "cacache": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.2.0.tgz", + "integrity": "sha512-uKoJSHmnrqXgthDFx/IU6ED/5xd+NNGe+Bb+kLZy7Ku4P+BaiWEUflAKPZ7eAzsYGcsAGASJZsybXp+quEcHTw==", + "dev": true, + "requires": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + }, + "normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001249", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001249.tgz", + "integrity": "sha512-vcX4U8lwVXPdqzPWi6cAJ3FnQaqXbBqy/GZseKNQzRj37J7qZdGcBtxq/QLFNLLlfsoXLUdHw8Iwenri86Tagw==", + "dev": true + }, + "canonical-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/canonical-path/-/canonical-path-1.0.0.tgz", + "integrity": "sha512-feylzsbDxi1gPZ1IjystzIQZagYYLvfKrSuygUCgf7z6x790VEzze5QEkdSV1U58RA7Hi0+v6fv4K54atOzATg==", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "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==", + "dev": true + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "circular-dependency-plugin": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz", + "integrity": "sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz", + "integrity": "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==", + "dev": true + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, + "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, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "codelyzer": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/codelyzer/-/codelyzer-6.0.2.tgz", + "integrity": "sha512-v3+E0Ucu2xWJMOJ2fA/q9pDT/hlxHftHGPUay1/1cTgyPV5JTHFdO9hqo837Sx2s9vKBMTt5gO+lhF95PO6J+g==", + "requires": { + "@angular/compiler": "9.0.0", + "@angular/core": "9.0.0", + "app-root-path": "^3.0.0", + "aria-query": "^3.0.0", + "axobject-query": "2.0.2", + "css-selector-tokenizer": "^0.7.1", + "cssauron": "^1.4.0", + "damerau-levenshtein": "^1.0.4", + "rxjs": "^6.5.3", + "semver-dsl": "^1.0.1", + "source-map": "^0.5.7", + "sprintf-js": "^1.1.2", + "tslib": "^1.10.0", + "zone.js": "~0.10.3" + }, + "dependencies": { + "@angular/compiler": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-9.0.0.tgz", + "integrity": "sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ==" + }, + "@angular/core": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-9.0.0.tgz", + "integrity": "sha512-6Pxgsrf0qF9iFFqmIcWmjJGkkCaCm6V5QNnxMy2KloO3SDq6QuMVRbN9RtC8Urmo25LP+eZ6ZgYqFYpdD8Hd9w==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "zone.js": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.10.3.tgz", + "integrity": "sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==" + } + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "colord": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.6.0.tgz", + "integrity": "sha512-8yMrtE20ZxH1YWvvSoeJFtvqY+GIAOfU+mZ3jx7ZSiEMasnAmNqD1BKUP3CuCWcy/XHgcXkLW6YU8C35nhOYVg==", + "dev": true + }, + "colorette": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz", + "integrity": "sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==", + "dev": true + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concurrently": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.2.1.tgz", + "integrity": "sha512-emgwhH+ezkuYKSHZQ+AkgEpoUZZlbpPVYCVv7YZx0r+T7fny1H03r2nYRebpi2DudHR4n1Rgbo2YTxKOxVJ4+g==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.21", + "read-pkg": "^5.2.0", + "rxjs": "^6.6.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + } + }, + "connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", + "integrity": "sha1-smmyu4Ldsaw9tQmcD7WCq6mfs3o=" + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz", + "integrity": "sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==", + "dev": true, + "requires": { + "is-what": "^3.12.0" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "copy-webpack-plugin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.0.0.tgz", + "integrity": "sha512-k8UB2jLIb1Jip2nZbCz83T/XfhfjX6mB1yLJNYKrpYi7FQimfOoFv/0//iT6HV1K8FwUB5yUbCcnpLebJXJTug==", + "dev": true, + "requires": { + "fast-glob": "^3.2.5", + "glob-parent": "^6.0.0", + "globby": "^11.0.3", + "normalize-path": "^3.0.0", + "p-limit": "^3.1.0", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "core-js": { + "version": "3.15.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.15.1.tgz", + "integrity": "sha512-h8VbZYnc9pDzueiS2610IULDkpFFPunHwIpl8yRwFahAEEdSpHlTy3h3z3rKq5h11CaUdBEeRViu9AYvbxiMeg==", + "dev": true + }, + "core-js-compat": { + "version": "3.16.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.1.tgz", + "integrity": "sha512-NHXQXvRbd4nxp9TEmooTJLUf94ySUG6+DSsscBpTftN1lQLQ4LjnWvc7AoIo4UjDsFF3hB8Uh5LLCRRdaiT5MQ==", + "dev": true, + "requires": { + "browserslist": "^4.16.7", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "dev": true, + "requires": { + "@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" + } + }, + "critters": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.10.tgz", + "integrity": "sha512-p5VKhP1803+f+0Jq5P03w1SbiHtpAKm+1EpJHkiPxQPq0Vu9QLZHviJ02GRrWi0dlcJqrmzMWInbwp4d22RsGw==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "css": "^3.0.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "pretty-bytes": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + }, + "css": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "css-color-names": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-1.0.1.tgz", + "integrity": "sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA==", + "dev": true + }, + "css-declaration-sorter": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.1.1.tgz", + "integrity": "sha512-BZ1aOuif2Sb7tQYY1GeCjG7F++8ggnwUkH5Ictw0mrdpqpEd+zWmcPdstnH2TItlb74FqR0DrVEieon221T/1Q==", + "dev": true, + "requires": { + "timsort": "^0.3.0" + } + }, + "css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "css-loader": { + "version": "5.2.6", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.6.tgz", + "integrity": "sha512-0wyN5vXMQZu6BvjbrPdUJvkCzGEO24HC7IS7nW4llc6BBFC+zwR9CKtYGv63Puzsg10L/o12inMY5/2ByzfD6w==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "css-minimizer-webpack-plugin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.1.tgz", + "integrity": "sha512-RGFIv6iZWUPO2T1vE5+5pNCSs2H2xtHYRdfZPiiNH8Of6QOn9BeFnZSoHiQMkmsxOO/JkPe4BpKfs7slFIWcTA==", + "dev": true, + "requires": { + "cssnano": "^5.0.0", + "jest-worker": "^27.0.2", + "p-limit": "^3.0.2", + "postcss": "^8.2.9", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "css-parse": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz", + "integrity": "sha1-pGjuZnwW2BzPBcWMONKpfHgNv9Q=", + "dev": true, + "requires": { + "css": "^2.0.0" + }, + "dependencies": { + "css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + } + } + }, + "css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + } + }, + "css-selector-tokenizer": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", + "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", + "requires": { + "cssesc": "^3.0.0", + "fastparse": "^1.1.2" + } + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "css-what": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz", + "integrity": "sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==", + "dev": true + }, + "cssauron": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz", + "integrity": "sha1-pmAt/34EqDBtwNuaVR6S6LVmKtg=", + "requires": { + "through": "X.X.X" + } + }, + "cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.7.tgz", + "integrity": "sha512-7C0tbb298hef3rq+TtBbMuezBQ9VrFtrQEsPNuBKNVgWny/67vdRsnq8EoNu7TRjAHURgYvWlRIpCUmcMZkRzw==", + "dev": true, + "requires": { + "cssnano-preset-default": "^5.1.3", + "is-resolvable": "^1.1.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "cssnano-preset-default": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.3.tgz", + "integrity": "sha512-qo9tX+t4yAAZ/yagVV3b+QBKeLklQbmgR3wI7mccrDcR+bEk9iHgZN1E7doX68y9ThznLya3RDmR+nc7l6/2WQ==", + "dev": true, + "requires": { + "css-declaration-sorter": "^6.0.3", + "cssnano-utils": "^2.0.1", + "postcss-calc": "^8.0.0", + "postcss-colormin": "^5.2.0", + "postcss-convert-values": "^5.0.1", + "postcss-discard-comments": "^5.0.1", + "postcss-discard-duplicates": "^5.0.1", + "postcss-discard-empty": "^5.0.1", + "postcss-discard-overridden": "^5.0.1", + "postcss-merge-longhand": "^5.0.2", + "postcss-merge-rules": "^5.0.2", + "postcss-minify-font-values": "^5.0.1", + "postcss-minify-gradients": "^5.0.1", + "postcss-minify-params": "^5.0.1", + "postcss-minify-selectors": "^5.1.0", + "postcss-normalize-charset": "^5.0.1", + "postcss-normalize-display-values": "^5.0.1", + "postcss-normalize-positions": "^5.0.1", + "postcss-normalize-repeat-style": "^5.0.1", + "postcss-normalize-string": "^5.0.1", + "postcss-normalize-timing-functions": "^5.0.1", + "postcss-normalize-unicode": "^5.0.1", + "postcss-normalize-url": "^5.0.2", + "postcss-normalize-whitespace": "^5.0.1", + "postcss-ordered-values": "^5.0.2", + "postcss-reduce-initial": "^5.0.1", + "postcss-reduce-transforms": "^5.0.1", + "postcss-svgo": "^5.0.2", + "postcss-unique-selectors": "^5.0.1" + } + }, + "cssnano-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-2.0.1.tgz", + "integrity": "sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + } + }, + "custom-event": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", + "integrity": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=", + "dev": true + }, + "damerau-levenshtein": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz", + "integrity": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "date-fns": { + "version": "2.23.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.23.0.tgz", + "integrity": "sha512-5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA==", + "dev": true + }, + "date-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", + "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", + "dev": true + }, + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "dev": true + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "di": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", + "integrity": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-serialize": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", + "integrity": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=", + "dev": true, + "requires": { + "custom-event": "~1.0.0", + "ent": "~2.2.0", + "extend": "^3.0.0", + "void-elements": "^2.0.0" + } + }, + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", + "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz", + "integrity": "sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "requires": { + "is-obj": "^2.0.0" + } + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "electron-to-chromium": { + "version": "1.3.802", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.802.tgz", + "integrity": "sha512-dXB0SGSypfm3iEDxrb5n/IVKeX4uuTnFHdve7v+yKJqNpEP0D4mjFJ8e1znmSR+OOVlVC+kDO6f2kAkTFXvJBg==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, + "requires": { + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "engine.io": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz", + "integrity": "sha512-t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w==", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~4.0.0", + "ws": "~7.4.2" + }, + "dependencies": { + "cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "dev": true + }, + "ws": { + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", + "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "dev": true + } + } + }, + "engine.io-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz", + "integrity": "sha512-sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg==", + "dev": true, + "requires": { + "base64-arraybuffer": "0.1.4" + } + }, + "enhanced-resolve": { + "version": "5.8.2", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz", + "integrity": "sha512-F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "ent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", + "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=", + "dev": true + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true + }, + "err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "requires": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + } + }, + "es-module-lexer": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz", + "integrity": "sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==", + "dev": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "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 + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "eslint-config-google": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", + "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", + "dev": true + }, + "eslint-plugin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin/-/eslint-plugin-1.0.1.tgz", + "integrity": "sha512-ervp8C09On0fLA258TvE08AqAr/bhRYgHVZd3BrJjD4JfOA2JGANDLGs06j51oWqfPd7Feoo3OoqHD+fuI2sFQ==", + "requires": { + "requireindex": "~1.1.0" + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "requires": { + "eslint-visitor-keys": "^2.0.0" + } + }, + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dev": true, + "requires": { + "original": "^1.0.0" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", + "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", + "requires": { + "debug": "*", + "path-to-regexp": "^1.0.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastparse": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", + "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==" + }, + "fastq": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz", + "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-saver": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz", + "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "flatted": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + } + } + }, + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", + "dev": true + }, + "follow-redirects": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz", + "integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.1.tgz", + "integrity": "sha512-kEVjS71mQazDBHKcsq4E9u/vUzaLcw1A8EtUeydawvIWQCJM0qQ08G1H7/XTjFUulla6XQiDOG6MXSaG0HDKog==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz", + "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==", + "requires": { + "ini": "2.0.0" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "hosted-git-info": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz", + "integrity": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", + "dev": true, + "requires": { + "ms": "^2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + }, + "ignore-walk": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + }, + "inquirer": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.1.1.tgz", + "integrity": "sha512-hUDjc3vBkh/uk1gPfMAD/7Z188Q8cvTGl0nxwaCdwSbzFh6ZKkZh+s2ozVxbE5G9ZNRyeY0+lgbAIOUFsFf98w==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.3.0", + "run-async": "^2.4.0", + "rxjs": "^6.6.6", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + }, + "dependencies": { + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true + } + } + }, + "is-core-module": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", + "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "dependencies": { + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", + "dev": true + }, + "is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "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, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isbinaryfile": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.8.tgz", + "integrity": "sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jasmine-core": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.8.0.tgz", + "integrity": "sha512-zl0nZWDrmbCiKns0NcjkFGYkVTGCPUgoHypTaj+G2AzaWus7QGoXARSlYsSle2VRpSdfJmM+hzmFKzQNhF2kHg==", + "dev": true + }, + "jest-worker": { + "version": "27.0.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.2.tgz", + "integrity": "sha512-EoBdilOTTyOgmHXtw/cPc+ZrCA0KJMrkXzkrPGNwLmnvvlN1nj7MPrxpT7m+otSv2e1TLaVffzDnE/LB14zJMg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=", + "requires": { + "jju": "^1.1.0" + } + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "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 + }, + "json-server": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.16.3.tgz", + "integrity": "sha512-tbsBONiefH7SR5EhSmK4EzwP3kCHuOduUq5hWAQjCwXTva4OBeKVcPrciHNWOK/+12ygtUnjuWcAxuHgqTuBLA==", + "requires": { + "body-parser": "^1.19.0", + "chalk": "^4.1.0", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.3.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.20", + "lodash-id": "^0.14.0", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.16", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "update-notifier": "^5.0.1", + "yargs": "^16.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "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==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + } + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "dev": true + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonc-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", + "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "dev": true + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", + "dev": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "karma": { + "version": "6.3.4", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.4.tgz", + "integrity": "sha512-hbhRogUYIulfkBTZT7xoPrCYhRBnBoqbbL4fszWD0ReFGUxU+LYBr3dwKdAluaDQ/ynT9/7C+Lf7pPNW4gSx4Q==", + "dev": true, + "requires": { + "body-parser": "^1.19.0", + "braces": "^3.0.2", + "chokidar": "^3.5.1", + "colors": "^1.4.0", + "connect": "^3.7.0", + "di": "^0.0.1", + "dom-serialize": "^2.2.1", + "glob": "^7.1.7", + "graceful-fs": "^4.2.6", + "http-proxy": "^1.18.1", + "isbinaryfile": "^4.0.8", + "lodash": "^4.17.21", + "log4js": "^6.3.0", + "mime": "^2.5.2", + "minimatch": "^3.0.4", + "qjobs": "^1.2.0", + "range-parser": "^1.2.1", + "rimraf": "^3.0.2", + "socket.io": "^3.1.0", + "source-map": "^0.6.1", + "tmp": "^0.2.1", + "ua-parser-js": "^0.7.28", + "yargs": "^16.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "karma-chrome-launcher": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.1.0.tgz", + "integrity": "sha512-3dPs/n7vgz1rxxtynpzZTvb9y/GIaW8xjAwcIGttLbycqoFtI7yo1NGnQi6oFTherRE+GIhCAHZC4vEqWGhNvg==", + "dev": true, + "requires": { + "which": "^1.2.1" + } + }, + "karma-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/karma-coverage/-/karma-coverage-2.0.3.tgz", + "integrity": "sha512-atDvLQqvPcLxhED0cmXYdsPMCQuh6Asa9FMZW1bhNqlVEhJoB9qyZ2BY1gu7D/rr5GLGb5QzYO4siQskxaWP/g==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.1", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.0", + "minimatch": "^3.0.4" + } + }, + "karma-jasmine": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-4.0.1.tgz", + "integrity": "sha512-h8XDAhTiZjJKzfkoO1laMH+zfNlra+dEQHUAjpn5JV1zCPtOIVWGQjLBrqhnzQa/hrU2XrZwSyBa6XjEBzfXzw==", + "dev": true, + "requires": { + "jasmine-core": "^3.6.0" + } + }, + "karma-jasmine-html-reporter": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.7.0.tgz", + "integrity": "sha512-pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ==", + "dev": true + }, + "karma-source-map-support": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", + "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", + "dev": true, + "requires": { + "source-map-support": "^0.5.5" + } + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "requires": { + "json-buffer": "3.0.0" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "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 + }, + "klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==", + "dev": true + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "requires": { + "package-json": "^6.3.0" + } + }, + "less": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.1.tgz", + "integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==", + "dev": true, + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^2.5.2", + "parse-node-version": "^1.0.1", + "source-map": "~0.6.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "less-loader": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-10.0.0.tgz", + "integrity": "sha512-JjioAkw9qyavL0BzMPUOHJa0a20fh+ipq/MNZH4OkU8qERsCMeZIWRE0FDBIx2O+cFguvY01vHh/lmBA9LyWDg==", + "dev": true, + "requires": { + "klona": "^2.0.4" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "license-webpack-plugin": { + "version": "2.3.20", + "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.3.20.tgz", + "integrity": "sha512-AHVueg9clOKACSHkhmEI+PCC9x8+qsQVuKECZD3ETxETK5h/PCv5/MUzyG1gm8OMcip/s1tcNxqo9Qb7WhjGsg==", + "dev": true, + "requires": { + "@types/webpack-sources": "^0.1.5", + "webpack-sources": "^1.2.0" + } + }, + "lilconfig": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", + "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==", + "dev": true + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, + "loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", + "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==" + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "log4js": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.3.0.tgz", + "integrity": "sha512-Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw==", + "dev": true, + "requires": { + "date-format": "^3.0.0", + "debug": "^4.1.1", + "flatted": "^2.0.1", + "rfdc": "^1.1.4", + "streamroller": "^2.2.4" + } + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", + "dev": true + }, + "lowdb": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", + "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", + "requires": { + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "make-fetch-happen": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.0.4.tgz", + "integrity": "sha512-sQWNKMYqSmbAGXqJg2jZ+PmHh5JAybvwu0xM8mZR/bsTjGiTASj3ldXJV7KFHy1k/IJIBkjxQFoWIVsv9+PQMg==", + "dev": true, + "requires": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^5.0.0", + "ssri": "^8.0.0" + } + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "requires": { + "p-defer": "^1.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "mem": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz", + "integrity": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==", + "dev": true, + "requires": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^3.1.0" + }, + "dependencies": { + "mimic-fn": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", + "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", + "dev": true + } + } + }, + "memfs": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.2.2.tgz", + "integrity": "sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==", + "dev": true, + "requires": { + "fs-monkey": "1.0.3" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "method-override": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", + "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", + "requires": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.49.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz", + "integrity": "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==" + }, + "mime-types": { + "version": "2.1.32", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz", + "integrity": "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==", + "requires": { + "mime-db": "1.49.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-fetch": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.4.tgz", + "integrity": "sha512-TielGogIzbUEtd1LsjZFs47RWuHHfhl6TiCx1InVxApBAmQ8bL0dL5ilkLGcRvuyW/A9nE+Lvn855Ewz8S0PnQ==", + "dev": true, + "requires": { + "encoding": "^0.1.12", + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "dev": true, + "requires": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "mobx": { + "version": "6.3.2", + "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.3.2.tgz", + "integrity": "sha512-xGPM9dIE1qkK9Nrhevp0gzpsmELKU4MFUJRORW/jqxVFIHHWIoQrjDjL8vkwoJYY3C2CeVJqgvl38hgKTalTWg==" + }, + "mobx-angular": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mobx-angular/-/mobx-angular-4.3.0.tgz", + "integrity": "sha512-ZjIEPptJgkkc6TXM0e+cxC9WvIGTpW+euRNfblv1HB+hkMmn2I/V0LP6E3LEaMWe5VIU24+X5i0qrew5jSLSTQ==", + "requires": { + "tslib": "^2.0.0" + } + }, + "morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "requires": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "nanoid": { + "version": "3.1.23", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz", + "integrity": "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "needle": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.8.0.tgz", + "integrity": "sha512-ZTq6WYkN/3782H1393me3utVYdq2XyqNUFBsprEE3VMAT0+hP/cItpnITpqsY6ep2yeFE4Tqtqwc74VqUlUYtw==", + "dev": true, + "optional": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, + "node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "dev": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "node-releases": { + "version": "1.1.74", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.74.tgz", + "integrity": "sha512-caJBVempXZPepZoZAPCWRTNxYQ+xtG/KAi4ozTA5A+nJ7IU+kLQCbqaUjb5Rwy14M9upBWiQ4NutcmW04LJSRw==", + "dev": true + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true + }, + "npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dev": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-install-checks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz", + "integrity": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==", + "dev": true, + "requires": { + "semver": "^7.1.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "npm-package-arg": { + "version": "8.1.5", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz", + "integrity": "sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "semver": "^7.3.4", + "validate-npm-package-name": "^3.0.0" + } + }, + "npm-packlist": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.2.2.tgz", + "integrity": "sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==", + "dev": true, + "requires": { + "glob": "^7.1.6", + "ignore-walk": "^3.0.3", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-pick-manifest": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz", + "integrity": "sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==", + "dev": true, + "requires": { + "npm-install-checks": "^4.0.0", + "npm-normalize-package-bin": "^1.0.1", + "npm-package-arg": "^8.1.2", + "semver": "^7.3.4" + } + }, + "npm-registry-fetch": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", + "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", + "dev": true, + "requires": { + "make-fetch-happen": "^9.0.1", + "minipass": "^3.1.3", + "minipass-fetch": "^1.3.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.0.0", + "npm-package-arg": "^8.0.0" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dev": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "nth-check": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz", + "integrity": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/open/-/open-8.2.1.tgz", + "integrity": "sha512-rXILpcQlkF/QuFez2BJDf3GsqpjGKbkUUToAIGo9A0Q6ZkoSGogZJulrUdwRkrAsoQvoZsrjCYt8+zblOk7JQQ==", + "dev": true, + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + } + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "pacote": { + "version": "11.3.4", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-11.3.4.tgz", + "integrity": "sha512-RfahPCunM9GI7ryJV/zY0bWQiokZyLqaSNHXtbNSoLb7bwTvBbJBEyCJ01KWs4j1Gj7GmX8crYXQ1sNX6P2VKA==", + "dev": true, + "requires": { + "@npmcli/git": "^2.0.1", + "@npmcli/installed-package-contents": "^1.0.6", + "@npmcli/promise-spawn": "^1.2.0", + "@npmcli/run-script": "^1.8.2", + "cacache": "^15.0.5", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.3", + "mkdirp": "^1.0.3", + "npm-package-arg": "^8.0.1", + "npm-packlist": "^2.1.4", + "npm-pick-manifest": "^6.0.0", + "npm-registry-fetch": "^11.0.0", + "promise-retry": "^2.0.1", + "read-package-json-fast": "^2.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.1.0" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "optional": true + }, + "parse5-html-rewriting-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz", + "integrity": "sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==", + "dev": true, + "requires": { + "parse5": "^6.0.1", + "parse5-sax-parser": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + } + } + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + } + } + }, + "parse5-sax-parser": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz", + "integrity": "sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==", + "dev": true, + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + } + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz", + "integrity": "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA==", + "dev": true, + "requires": { + "colorette": "^1.2.2", + "nanoid": "^3.1.23", + "source-map-js": "^0.6.2" + } + }, + "postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-calc": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.0.0.tgz", + "integrity": "sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "dev": true, + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "dev": true, + "requires": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "dev": true, + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-colormin": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.0.tgz", + "integrity": "sha512-+HC6GfWU3upe5/mqmxuqYZ9B2Wl4lcoUUNkoaX59nEWV4EtADCMiBqui111Bu8R8IvaZTmqmxrqOAqjbHIwXPw==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-convert-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.1.tgz", + "integrity": "sha512-C3zR1Do2BkKkCgC0g3sF8TS0koF2G+mN8xxayZx3f10cIRmTaAnpgpRQZjNekTZxM2ciSPoh2IWJm0VZx8NoQg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "dev": true, + "requires": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-discard-comments": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz", + "integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==", + "dev": true + }, + "postcss-discard-duplicates": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz", + "integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==", + "dev": true + }, + "postcss-discard-empty": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz", + "integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==", + "dev": true + }, + "postcss-discard-overridden": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz", + "integrity": "sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q==", + "dev": true + }, + "postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "dev": true, + "requires": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-import": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz", + "integrity": "sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-initial": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", + "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "dev": true, + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-loader": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.1.0.tgz", + "integrity": "sha512-yA/cXBfACkthZNA2hQxOnaReVfQ6uLmvbEDQzNafpbK40URZJvP/28dL1DG174Gvz3ptkkHbbwDBCh+gXR94CA==", + "dev": true, + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "semver": "^7.3.5" + } + }, + "postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-merge-longhand": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.2.tgz", + "integrity": "sha512-BMlg9AXSI5G9TBT0Lo/H3PfUy63P84rVz3BjCFE9e9Y9RXQZD3+h3YO1kgTNsNJy7bBc1YQp8DmSnwLIW5VPcw==", + "dev": true, + "requires": { + "css-color-names": "^1.0.1", + "postcss-value-parser": "^4.1.0", + "stylehacks": "^5.0.1" + } + }, + "postcss-merge-rules": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz", + "integrity": "sha512-5K+Md7S3GwBewfB4rjDeol6V/RZ8S+v4B66Zk2gChRqLTCC8yjnHQ601omj9TKftS19OPGqZ/XzoqpzNQQLwbg==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^2.0.1", + "postcss-selector-parser": "^6.0.5", + "vendors": "^1.0.3" + } + }, + "postcss-minify-font-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz", + "integrity": "sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-gradients": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.1.tgz", + "integrity": "sha512-odOwBFAIn2wIv+XYRpoN2hUV3pPQlgbJ10XeXPq8UY2N+9ZG42xu45lTn/g9zZ+d70NKSQD6EOi6UiCMu3FN7g==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "is-color-stop": "^1.1.0", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-params": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.1.tgz", + "integrity": "sha512-4RUC4k2A/Q9mGco1Z8ODc7h+A0z7L7X2ypO1B6V8057eVK6mZ6xwz6QN64nHuHLbqbclkX1wyzRnIrdZehTEHw==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.2", + "browserslist": "^4.16.0", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0", + "uniqs": "^2.0.0" + } + }, + "postcss-minify-selectors": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz", + "integrity": "sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-charset": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz", + "integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==", + "dev": true + }, + "postcss-normalize-display-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz", + "integrity": "sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-positions": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz", + "integrity": "sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz", + "integrity": "sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-string": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz", + "integrity": "sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz", + "integrity": "sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-unicode": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz", + "integrity": "sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA==", + "dev": true, + "requires": { + "browserslist": "^4.16.0", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-url": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.0.2.tgz", + "integrity": "sha512-k4jLTPUxREQ5bpajFQZpx8bCF2UrlqOTzP9kEqcEnOfwsRshWs2+oAFIHfDQB8GO2PaUaSE0NlTAYtbluZTlHQ==", + "dev": true, + "requires": { + "is-absolute-url": "^3.0.3", + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-whitespace": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz", + "integrity": "sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-ordered-values": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz", + "integrity": "sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "dev": true, + "requires": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-reduce-initial": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.0.1.tgz", + "integrity": "sha512-zlCZPKLLTMAqA3ZWH57HlbCjkD55LX9dsRyxlls+wfuRfqCi5mSlZVan0heX5cHr154Dq9AfbH70LyhrSAezJw==", + "dev": true, + "requires": { + "browserslist": "^4.16.0", + "caniuse-api": "^3.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz", + "integrity": "sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.0.2.tgz", + "integrity": "sha512-YzQuFLZu3U3aheizD+B1joQ94vzPfE6BNUcSYuceNxlVnKKsOtdo6hL9/zyC168Q8EwfLSgaDSalsUGa9f2C0A==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0", + "svgo": "^2.3.0" + } + }, + "postcss-unique-selectors": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.1.tgz", + "integrity": "sha512-gwi1NhHV4FMmPn+qwBNuot1sG1t2OmacLQ/AX29lzyggnjd+MnVD5uqQmpXO3J17KGL2WAxQruj1qTd3H0gG/w==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5", + "uniqs": "^2.0.0" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true + }, + "postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "dev": true, + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true + }, + "primeicons": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/primeicons/-/primeicons-4.1.0.tgz", + "integrity": "sha512-uEv2pSPk1zQCfaB2VgnUfnUxxlGryYi+5rbdxmZBBt5v9S/pscIQYS5YDLxsQZ7D9jn5c76+Tx5wX/2J1nK6sA==" + }, + "primeng": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/primeng/-/primeng-12.0.2.tgz", + "integrity": "sha512-lkuBc+46VyojhNZ2e5Uc6H9nvTRiBBEizJT06Ql6RfLZ8ckfFZvDtwzEDxuPJixmQ9L42rxMybiCGNJsq4IkSg==", + "requires": { + "tslib": "^2.1.0" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, + "requires": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "requires": { + "escape-goat": "^2.0.0" + } + }, + "qjobs": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz", + "integrity": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==", + "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + } + } + }, + "raw-loader": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz", + "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + } + } + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "dev": true, + "requires": { + "pify": "^2.3.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "read-package-json-fast": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", + "integrity": "sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==", + "dev": true, + "requires": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", + "dev": true + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "dev": true, + "requires": { + "regenerate": "^1.4.0" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", + "dev": true + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "dev": true + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "dev": true, + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + } + }, + "registry-auth-token": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", + "requires": { + "rc": "^1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "requires": { + "rc": "^1.2.8" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true + }, + "regjsparser": { + "version": "0.6.9", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz", + "integrity": "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requireindex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.1.0.tgz", + "integrity": "sha1-5UBLgVV+91225JxacgBIk/4D4WI=" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dev": true, + "requires": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sass": { + "version": "1.35.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.35.1.tgz", + "integrity": "sha512-oCisuQJstxMcacOPmxLNiLlj4cUyN2+8xJnG7VanRoh2GOLr9RqkvI4AxA4a6LHVg/rsu+PmxXeGhrdSF9jCiQ==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0" + } + }, + "sass-loader": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.1.0.tgz", + "integrity": "sha512-FVJZ9kxVRYNZTIe2xhw93n3xJNYZADr+q69/s98l9nTCrWASo+DR2Ot0s5xTKQDDEosUkatsGeHxcH4QBp5bSg==", + "dev": true, + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + } + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=" + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "semver-dsl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/semver-dsl/-/semver-dsl-1.0.1.tgz", + "integrity": "sha1-02eN5VVeimH2Ke7QJTZq5fJzQKA=", + "requires": { + "semver": "^5.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "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, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "socket.io": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz", + "integrity": "sha512-JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw==", + "dev": true, + "requires": { + "@types/cookie": "^0.4.0", + "@types/cors": "^2.8.8", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "debug": "~4.3.1", + "engine.io": "~4.1.0", + "socket.io-adapter": "~2.1.0", + "socket.io-parser": "~4.0.3" + } + }, + "socket.io-adapter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz", + "integrity": "sha512-+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg==", + "dev": true + }, + "socket.io-parser": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz", + "integrity": "sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g==", + "dev": true, + "requires": { + "@types/component-emitter": "^1.2.10", + "component-emitter": "~1.3.0", + "debug": "~4.3.1" + } + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "sockjs-client": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.1.tgz", + "integrity": "sha512-VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ==", + "dev": true, + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "socks": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz", + "integrity": "sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==", + "dev": true, + "requires": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + } + }, + "socks-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", + "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "dev": true, + "requires": { + "agent-base": "^6.0.2", + "debug": "4", + "socks": "^2.3.3" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + }, + "source-map-js": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", + "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==", + "dev": true + }, + "source-map-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.0.tgz", + "integrity": "sha512-GKGWqWvYr04M7tn8dryIWvb0s8YM41z82iQv01yBtIylgxax0CwvSy6gc2Y02iuXwEfGWRlMicH0nvms9UZphw==", + "dev": true, + "requires": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.2", + "source-map-js": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "dev": true + }, + "spawn-command": { + "version": "0.0.2-1", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", + "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz", + "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "steno": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", + "integrity": "sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs=", + "requires": { + "graceful-fs": "^4.1.3" + } + }, + "streamroller": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", + "integrity": "sha512-OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ==", + "dev": true, + "requires": { + "date-format": "^2.1.0", + "debug": "^4.1.1", + "fs-extra": "^8.1.0" + }, + "dependencies": { + "date-format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", + "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==", + "dev": true + } + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "stylehacks": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz", + "integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==", + "dev": true, + "requires": { + "browserslist": "^4.16.0", + "postcss-selector-parser": "^6.0.4" + } + }, + "stylus": { + "version": "0.54.8", + "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.8.tgz", + "integrity": "sha512-vr54Or4BZ7pJafo2mpf0ZcwA74rpuYCZbxrHBsH8kbcXOwSfvBFwsRfpGO5OD5fhG5HDCFW737PKaawI7OqEAg==", + "dev": true, + "requires": { + "css-parse": "~2.0.0", + "debug": "~3.1.0", + "glob": "^7.1.6", + "mkdirp": "~1.0.4", + "safer-buffer": "^2.1.2", + "sax": "~1.2.4", + "semver": "^6.3.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "stylus-loader": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-6.1.0.tgz", + "integrity": "sha512-qKO34QCsOtSJrXxQQmXsPeaVHh6hMumBAFIoJTcsSr2VzrA6o/CW9HCGR8spCjzJhN8oKQHdj/Ytx0wwXyElkw==", + "dev": true, + "requires": { + "fast-glob": "^3.2.5", + "klona": "^2.0.4", + "normalize-path": "^3.0.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "svgo": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.3.1.tgz", + "integrity": "sha512-riDDIQgXpEnn0BEl9Gvhh1LNLIyiusSpt64IR8upJu7MwxnzetmF/Y57pXQD2NMX2lVyMRzXt5f2M5rO4wG7Dw==", + "dev": true, + "requires": { + "@trysound/sax": "0.1.1", + "chalk": "^4.1.0", + "commander": "^7.1.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.2", + "csso": "^4.2.0", + "stable": "^0.1.8" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "symbol-observable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", + "dev": true + }, + "table": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.7.1.tgz", + "integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==", + "dev": true, + "requires": { + "ajv": "^8.0.1", + "lodash.clonedeep": "^4.5.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0" + } + }, + "tapable": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.0.tgz", + "integrity": "sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw==", + "dev": true + }, + "tar": { + "version": "6.1.7", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.7.tgz", + "integrity": "sha512-PBoRkOJU0X3lejJ8GaRCsobjXTgFofRDSPdSUhRSdlwJfifRlQBwGXitDItdGFu0/h0XDMCkig0RN1iT7DBxhA==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "terser": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz", + "integrity": "sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.19" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.3.tgz", + "integrity": "sha512-cxGbMqr6+A2hrIB5ehFIF+F/iST5ZOxvOmy9zih9ySbP1C2oEWQSOUS+2SNBTjzx5xLKO4xnod9eywdfq1Nb9A==", + "dev": true, + "requires": { + "jest-worker": "^27.0.2", + "p-limit": "^3.1.0", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.7.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, + "tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", + "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", + "dev": true + }, + "ua-parser-js": { + "version": "0.7.28", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz", + "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==", + "dev": true + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "dev": true + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "requires": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-parse": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz", + "integrity": "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "requires": { + "prepend-http": "^2.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=", + "dev": true, + "requires": { + "builtins": "^1.0.3" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "void-elements": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", + "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=", + "dev": true + }, + "watchpack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz", + "integrity": "sha512-up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA==", + "dev": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webpack": { + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.44.0.tgz", + "integrity": "sha512-I1S1w4QLoKmH19pX6YhYN0NiSXaWY8Ou00oA+aMcr9IUGeF5azns+IKBkfoAAG9Bu5zOIzZt/mN35OffBya8AQ==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.0", + "es-module-lexer": "^0.7.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.2.0", + "webpack-sources": "^2.3.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "dev": true, + "requires": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + } + } + } + }, + "webpack-dev-middleware": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.0.0.tgz", + "integrity": "sha512-9zng2Z60pm6A98YoRcA0wSxw1EYn7B7y5owX/Tckyt9KGyULTkLtiavjaXlWqOMkM0YtqGgL3PvMOFgyFLq8vw==", + "dev": true, + "requires": { + "colorette": "^1.2.2", + "mem": "^8.1.1", + "memfs": "^3.2.2", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "webpack-dev-server": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz", + "integrity": "sha512-A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + } + } + }, + "webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "webpack-subresource-integrity": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-1.5.2.tgz", + "integrity": "sha512-GBWYBoyalbo5YClwWop9qe6Zclp8CIXYGIz12OPclJhIrSplDxs1Ls1JDMH8xBPPrg1T6ISaTW9Y6zOrwEiAzw==", + "dev": true, + "requires": { + "webpack-sources": "^1.3.0" + } + }, + "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, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "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 + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "requires": { + "string-width": "^4.0.0" + } + }, + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "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 + }, + "zone.js": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.4.tgz", + "integrity": "sha512-DDh2Ab+A/B+9mJyajPjHFPWfYU1H+pdun4wnnk0OcQTNjem1XQSZ2CDW+rfZEUDjv5M19SBqAkjZi0x5wuB5Qw==", + "requires": { + "tslib": "^2.0.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..5c3e623 --- /dev/null +++ b/package.json @@ -0,0 +1,64 @@ +{ + "name": "chip-cert-tool-frontend", + "version": "0.0.0", + "scripts": { + "ng": "ng", + "start": "npm run dev", + "build": "ng build", + "lint": "eslint src --ext .ts", + "watch": "ng build --watch --configuration development", + "test": "ng test", + "api": "json-server src/app/shared/api/db.json --routes src/app/shared/api/routes.json --no-cors=true", + "dev": "concurrently \"ng serve --host 0.0.0.0 \" \" json-server --watch src/app/shared/api/db.json\"", + "runtest": "concurrently \"ng test \" \" json-server --watch src/app/shared/api/db.json\"" + }, + "private": true, + "dependencies": { + "@angular-eslint/eslint-plugin": "^12.3.1", + "@angular/animations": "~12.1.0-", + "@angular/cdk": "^12.1.4", + "@angular/common": "~12.1.0-", + "@angular/compiler": "~12.1.0-", + "@angular/core": "~12.1.0-", + "@angular/flex-layout": "^12.0.0-beta.34", + "@angular/forms": "~12.1.0-", + "@angular/platform-browser": "~12.1.0-", + "@angular/platform-browser-dynamic": "~12.1.0-", + "@angular/router": "~12.1.0-", + "@typescript-eslint/eslint-plugin-tslint": "^4.29.1", + "bowser": "^2.11.0", + "codelyzer": "^6.0.2", + "eslint-plugin": "^1.0.1", + "file-saver": "^2.0.5", + "json-server": "^0.16.3", + "lodash": "^4.17.21", + "mobx": "^6.3.2", + "mobx-angular": "^4.3.0", + "primeicons": "^4.1.0", + "primeng": "^12.0.1", + "rxjs": "~6.6.0", + "tslib": "^2.2.0", + "zone.js": "~0.11.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "~12.1.3", + "@angular/cli": "~12.1.3", + "@angular/compiler-cli": "~12.1.0-", + "@types/file-saver": "^2.0.3", + "@types/jasmine": "~3.8.0", + "@types/lodash": "^4.14.178", + "@types/node": "^12.11.1", + "@typescript-eslint/eslint-plugin": "^4.29.1", + "@typescript-eslint/parser": "^4.29.1", + "concurrently": "^6.2.1", + "eslint": "^7.32.0", + "eslint-config-google": "^0.14.0", + "jasmine-core": "~3.8.0", + "karma": "~6.3.0", + "karma-chrome-launcher": "~3.1.0", + "karma-coverage": "~2.0.3", + "karma-jasmine": "~4.0.0", + "karma-jasmine-html-reporter": "~1.7.0", + "typescript": "~4.3.2" + } +} diff --git a/src/app/app.component.html b/src/app/app.component.html new file mode 100644 index 0000000..bb033c7 --- /dev/null +++ b/src/app/app.component.html @@ -0,0 +1,17 @@ + + diff --git a/src/app/app.component.scss b/src/app/app.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/app.component.ts b/src/app/app.component.ts new file mode 100644 index 0000000..4b92a95 --- /dev/null +++ b/src/app/app.component.ts @@ -0,0 +1,34 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { AfterViewInit, Component } from '@angular/core'; +import { MainAreaSandbox } from './components/main-area/main-area.sandbox'; +import { ProjectsAPI } from './shared/core_apis/project'; +import { SharedService } from './shared/core_apis/shared-utils'; +import { DataService } from './shared/web_sockets/ws-config'; +@Component({ + selector: 'app-root', + templateUrl: './app.component.html' +}) +export class AppComponent implements AfterViewInit { + constructor(public projectsAPI: ProjectsAPI, private dataService: DataService, public mainAreaSandbox: MainAreaSandbox, + public sharedService: SharedService) { + mainAreaSandbox.syncDataToServer(this.dataService); + } + ngAfterViewInit() { + this.sharedService.checkBrowserAndVersion(); + } +} diff --git a/src/app/app.module.ts b/src/app/app.module.ts new file mode 100644 index 0000000..657a8dd --- /dev/null +++ b/src/app/app.module.ts @@ -0,0 +1,184 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { NgModule } from '@angular/core'; +import { BrowserModule } from '@angular/platform-browser'; +import { FormsModule } from '@angular/forms'; +import { HttpClientModule } from '@angular/common/http'; + +import { AppComponent } from './app.component'; +import { MenubarModule } from 'primeng/menubar'; +import { StyleClassModule } from 'primeng/styleclass'; +import { ConfirmationService, SharedModule } from 'primeng/api'; +import { BadgeModule } from 'primeng/badge'; +import { SplitButtonModule } from 'primeng/splitbutton'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { TableModule } from 'primeng/table'; +import { ProjectDetailsComponent } from './components/project/project-details/project-details.component'; +import { CardModule } from 'primeng/card'; +import { InputTextModule } from 'primeng/inputtext'; +import { DropdownModule } from 'primeng/dropdown'; +import { CheckboxModule } from 'primeng/checkbox'; +import { PasswordModule } from 'primeng/password'; +import { ToggleButtonModule } from 'primeng/togglebutton'; +import { ButtonModule } from 'primeng/button'; +import { FlexLayoutModule } from '@angular/flex-layout'; +import { DeviceDetailListComponent } from './components/project/device-detail-list/device-detail-list.component'; +import { ProjectComponent } from './components/project/project.component'; +import { DeviceDetailComponent } from './components/project/device-detail/device-detail.component'; +import { TopNavComponent } from './components/nav/top-nav/top-nav.component'; +import { MainAreaComponent } from './components/main-area/main-area.component'; +import { SideNavComponent } from './components/nav/side-nav/side-nav.component'; +import { CreateNewProjectComponent } from './components/project/create-new-project/create-new-project.component'; +import { ProjectService } from './shared/project-utils'; +import { ProjectsAPI } from './shared/core_apis/project'; +import { MobxAngularModule } from 'mobx-angular'; +import { ProjectTableComponent } from './components/project/project-table/project-table.component'; +import { ToastModule } from 'primeng/toast'; +import { ToolbarModule } from 'primeng/toolbar'; +import { DialogModule } from 'primeng/dialog'; +import { ConfirmDialogModule } from 'primeng/confirmdialog'; +import { RadioButtonModule } from 'primeng/radiobutton'; +import { MessageService } from 'primeng/api'; +import { NavSandbox } from './components/nav/nav.sandbox'; +import { MainAreaSandbox } from './components/main-area/main-area.sandbox'; +import { TestComponent } from './components/test/test.component'; +import { TestDetailsComponent } from './components/test/test-details/test-details.component'; +import { TabViewModule } from 'primeng/tabview'; +import { ProgressBarModule } from 'primeng/progressbar'; +import { ProgressSpinnerModule } from 'primeng/progressspinner'; +import { ProjectSandbox } from './components/project/project.sandbox'; +import { TestCaseCategoryComponent } from './components/test/test-case-category/test-case-category.component'; +import { TestCasesComponent } from './components/test/test-case-category/test-cases/test-cases.component'; +import { TestSuitesListComponent } from './components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component'; +import { TestCasesListComponent } from './components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component'; +import { TestSummaryComponent } from './components/test/test-case-category/test-summary/test-summary.component'; +import { InputNumberModule } from 'primeng/inputnumber'; +import { TreeModule } from 'primeng/tree'; +import { TestSandbox } from './components/test/test.sandbox'; +import { TestSummarySandbox } from './components/test/test-case-category/test-summary/test-summary.sandbox'; +import { TooltipModule } from 'primeng/tooltip'; +import { TestExecutionComponent } from './components/test/test-execution/test-execution.component'; +import { TestExecutionTreeComponent } from './components/test/test-execution/test-execution-tree/test-execution-tree.component'; +import { TestLogsComponent } from './components/test/test-execution/test-logs/test-logs.component'; +import { TestLogToolbarComponent } from './components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component'; +import { TestLogConsoleComponent } from './components/test/test-execution/test-logs/test-log-console/test-log-console.component'; +import { TestRunAPI } from './shared/core_apis/test-run'; +import { TestRunService } from './shared/test-run-utils'; +import { PopupModalComponent } from './components/shared/popup-modal/popup-modal.component'; +import { SharedAPI } from './shared/core_apis/shared'; +import { TestExecutionHistoryComponent } from './components/test/test-execution-history/test-execution-history.component'; +import { DatePipe } from '@angular/common'; +import { TestExecutionSandbox } from './components/test/test-execution/test-execution.sandbox'; +import { WebSocketAPI } from './shared/core_apis/websocket'; +import { ListboxModule } from 'primeng/listbox'; +import { CreateNewTestRunComponent } from './components/test/create-new-test-run/create-new-test-run.component'; +import { UtilityComponent } from './components/utility/utility.component'; +import { SharedService } from './shared/core_apis/shared-utils'; +import { FileUploadModule } from 'primeng/fileupload'; +import { UploadFileComponent } from './components/utility/upload-file/upload-file.component'; +import { DialogService, DynamicDialogModule } from 'primeng/dynamicdialog'; +import { SettingsComponent } from './components/settings/settings.component'; +import { OverlayPanelModule } from 'primeng/overlaypanel'; +import { AutoCompleteModule } from 'primeng/autocomplete'; +import { MultiSelectModule } from 'primeng/multiselect'; +import { TestOperatorComponent } from './components/test/test-operator/test-operator.component'; +import { HighlightSearchPipe } from './components/shared/pipes/highlight-search.pipe'; +import { KeyFilterModule } from 'primeng/keyfilter'; +import { InputTextareaModule } from 'primeng/inputtextarea'; +import { DividerModule } from 'primeng/divider'; +@NgModule({ + imports: [ + BrowserModule, + TableModule, + HttpClientModule, + FormsModule, + CardModule, + InputTextModule, + FlexLayoutModule, + DropdownModule, + BrowserAnimationsModule, + CheckboxModule, + PasswordModule, + ToggleButtonModule, + ButtonModule, + MenubarModule, + StyleClassModule, + SharedModule, + BadgeModule, + SplitButtonModule, + MobxAngularModule, + ToastModule, + ToolbarModule, + DialogModule, + ConfirmDialogModule, + RadioButtonModule, + TabViewModule, + InputNumberModule, + TreeModule, + TooltipModule, + ProgressBarModule, + DialogModule, + ProgressSpinnerModule, + ListboxModule, + FileUploadModule, + DynamicDialogModule, + OverlayPanelModule, + AutoCompleteModule, + MultiSelectModule, + KeyFilterModule, + InputTextareaModule, + DividerModule, + ], + declarations: [ + AppComponent, + ProjectDetailsComponent, + DeviceDetailListComponent, + ProjectComponent, + DeviceDetailComponent, + TopNavComponent, + MainAreaComponent, + SideNavComponent, + CreateNewProjectComponent, + ProjectTableComponent, + TestComponent, + TestDetailsComponent, + TestCaseCategoryComponent, + TestCasesComponent, + TestSuitesListComponent, + TestCasesListComponent, + TestSummaryComponent, + TestExecutionComponent, + TestExecutionTreeComponent, + TestLogsComponent, + TestLogToolbarComponent, + TestLogConsoleComponent, + PopupModalComponent, + TestExecutionHistoryComponent, + CreateNewTestRunComponent, + UtilityComponent, + UploadFileComponent, + SettingsComponent, + TestOperatorComponent, + HighlightSearchPipe + ], + bootstrap: [AppComponent], + providers: [ProjectService, SharedService, ProjectsAPI, SharedAPI, TestRunService, + TestRunAPI, MessageService, ConfirmationService, NavSandbox, + MainAreaSandbox, ProjectSandbox, TestSandbox, TestSummarySandbox, + TestExecutionSandbox, WebSocketAPI, DialogService, DatePipe] +}) +export class AppModule { } diff --git a/src/app/components/main-area/main-area.component.html b/src/app/components/main-area/main-area.component.html new file mode 100644 index 0000000..081e442 --- /dev/null +++ b/src/app/components/main-area/main-area.component.html @@ -0,0 +1,38 @@ + + + +
+
+ +
+
+ + + + + +
+ under_construction + Page Under Construction +
+
+

© Connectivity Standards Alliance

+
+
+ + diff --git a/src/app/components/main-area/main-area.component.scss b/src/app/components/main-area/main-area.component.scss new file mode 100644 index 0000000..798270a --- /dev/null +++ b/src/app/components/main-area/main-area.component.scss @@ -0,0 +1,66 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../styles/colors"; +:host ::ng-deep { + .confirmPopUp { + .p-dialog { + .p-dialog-header { + border-bottom: none !important; + } + .p-dialog-footer { + border-top: 1px solid white; + } + } + } +} +.copy-rights { + position: absolute; + top: 98.2%; + left: 48%; + font-size: 9px; +} +.side_nav_bar { + width: 86px; +} +.mainarea-parent-div { + background-color: $mainAreaParent; +} + +.glass-pane { + position: fixed; + width: 100vw; + height: 100vh; + top: 0; + background-color: rgb(131 131 131 / 40%); + opacity: 0.5; +} +.construction { + display: flex; + align-items: center; + flex-direction: column; + justify-content: center; + height: calc(100vh - 68px); + img { + width: 200px; + } + span { + font-size: 50px; + padding-top: 15px; + font-family: monospace; + color: #444242; + } +} diff --git a/src/app/components/main-area/main-area.component.spec.ts b/src/app/components/main-area/main-area.component.spec.ts new file mode 100644 index 0000000..793ab5b --- /dev/null +++ b/src/app/components/main-area/main-area.component.spec.ts @@ -0,0 +1,58 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { ProjectSandbox } from '../project/project.sandbox'; +import { MainAreaComponent } from './main-area.component'; +import { MainAreaSandbox } from './main-area.sandbox'; +class MockProjectSandbox { + // This function is returning projectData + getAllProjectData() { + const data = [ + { name: 'harish' }, + { name: 'san' }, { name: 'ock' }]; + return data; + } + getArchivedProjects() { + const data = [ + { name: 'harish' }, + { name: 'san' }, { name: 'ock' }]; + return data; + } +}; + +describe('MainAreaComponent', () => { + let component: MainAreaComponent; + let fixture: ComponentFixture; + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [MainAreaComponent], + providers: [ + { provide: ProjectSandbox, useClass: MockProjectSandbox }, + { provide: MainAreaSandbox, useClass: MockProjectSandbox } + ] + }).compileComponents(); + }); + beforeEach(() => { + fixture = TestBed.createComponent(MainAreaComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should return a valid length', () => { + expect(component.getIsNavBarVisible()).toBe(1); + }); +}); diff --git a/src/app/components/main-area/main-area.component.ts b/src/app/components/main-area/main-area.component.ts new file mode 100644 index 0000000..ad274e2 --- /dev/null +++ b/src/app/components/main-area/main-area.component.ts @@ -0,0 +1,39 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { ProjectSandbox } from '../project/project.sandbox'; +import { MainAreaSandbox } from './main-area.sandbox'; + +@Component({ + selector: 'app-main-area', + templateUrl: './main-area.component.html', + styleUrls: ['./main-area.component.scss'] +}) + +// This component will show the UI based on left-nav-bar tab selection. +export class MainAreaComponent { + constructor(public mainAreaSandbox: MainAreaSandbox, public projectSandbox: ProjectSandbox) { + } + + getIsNavBarVisible() { + if (this.projectSandbox.getAllProjectData().length || this.projectSandbox.getArchivedProjects().length) { + return 1; + } else { + return 0; + } + } +} diff --git a/src/app/components/main-area/main-area.sandbox.ts b/src/app/components/main-area/main-area.sandbox.ts new file mode 100644 index 0000000..455de58 --- /dev/null +++ b/src/app/components/main-area/main-area.sandbox.ts @@ -0,0 +1,68 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { WebSocketAPI } from 'src/app/shared/core_apis/websocket'; +import { APP_STATE } from 'src/app/shared/utils/constants'; +import { ProjectStore } from '../../store/project-store'; +import { ProjectSandbox } from '../project/project.sandbox'; +import { TestSandbox } from '../test/test.sandbox'; +@Injectable() +export class MainAreaSandbox { + index = -1; + constructor(public projectStore: ProjectStore, public testRunAPI: TestRunAPI, public projectsAPI: ProjectsAPI, + public testSandBox: TestSandbox, public sharedAPI: SharedAPI, public projectSandbox: ProjectSandbox, + public webSocketAPI: WebSocketAPI) { + testRunAPI.getDefaultTestCases(this.getTestData.bind(this)); + } + public fetchCurrentIndex() { + this.index = this.projectStore.currentPanelIndex; + return this.index; + } + + getTestData() { + this.testSandBox.getTestData(); + } + + async syncDataToServer(dataService: any) { + await dataService.connect(); + await this.webSocketAPI.socketSubscription(); + await this.projectsAPI.getAllProjectData(false); + this.projectsAPI.getAllProjectData(true); + const testExecStatusData: any = await this.testRunAPI.getExecutionStatus(); + + if (testExecStatusData.state === 'running') { + this.sharedAPI.setAppState(APP_STATE[1]); + await this.testRunAPI.readRunningTestsRawDataAsync(testExecStatusData.test_run_execution_id, + this.testRunAPI.updateRunningTestcase.bind(this.testRunAPI)); + + this.sharedAPI.setExecutionStatus(testExecStatusData); // update exexutionStatus after completing above api. (used for rendering) + + const testRundata: any = this.testRunAPI.getRunningTestCasesRawData(); + const allProjects = this.projectSandbox.getAllProjectData(); + const currentProject = allProjects.filter((ele: any) => ele.id === testRundata.project_id); + this.sharedAPI.setSelectedProjectType(currentProject[0]); + this.projectsAPI.setCurrentPanelIndex(1); + this.testSandBox.setTestScreen(1); + + } else { + this.sharedAPI.setExecutionStatus(testExecStatusData); + } + } +} diff --git a/src/app/components/nav/nav.sandbox.ts b/src/app/components/nav/nav.sandbox.ts new file mode 100644 index 0000000..a0b0b75 --- /dev/null +++ b/src/app/components/nav/nav.sandbox.ts @@ -0,0 +1,33 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { ProjectStore } from '../../store/project-store'; + +@Injectable() +export class NavSandbox { + public currentIndex: any; + constructor(private projectStore: ProjectStore) { } + + public getCurrentIndex() { + this.currentIndex = this.projectStore.currentPanelIndex; + return this.currentIndex; + } + + public getIsNewProjectClicked() { + return this.projectStore.isNewProjectClicked; + } +} diff --git a/src/app/components/nav/side-nav/side-nav.component.html b/src/app/components/nav/side-nav/side-nav.component.html new file mode 100644 index 0000000..6e1c0ea --- /dev/null +++ b/src/app/components/nav/side-nav/side-nav.component.html @@ -0,0 +1,43 @@ + +
+ + +
diff --git a/src/app/components/nav/side-nav/side-nav.component.scss b/src/app/components/nav/side-nav/side-nav.component.scss new file mode 100644 index 0000000..4d74369 --- /dev/null +++ b/src/app/components/nav/side-nav/side-nav.component.scss @@ -0,0 +1,70 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; + +:host ::ng-deep { + .content-wrapper { + display: flex; + flex-direction: column; + width: 86px; + height: 100vh; + justify-content: space-between; + background-color: $lightBlack; + position: absolute; + top: 0px; + z-index: 1; + } + .top-container { + margin-top: 80px; + } + .side_nav_content { + display: flex; + flex-direction: column; + align-items: center; + font-size: 12px; + color: $creamWhite; + font-family: "Roboto-Regular"; + padding: 8px; + width: 80%; + margin: auto; + cursor: pointer; + i { + font-size: 25px; + padding: 2px; + } + &:hover:not(.active-nav) { + background-color: $lightGray; + border-radius: 5px; + } + } + a { + margin-bottom: 15px !important; + } + hr { + width: 62px; + height: 1px; + background-color: $darkGray !important; + opacity: 0.4; + } + .active-nav { + background-color: $darkGray; + border-radius: 5px; + } + .icon_color { + color: $white; + } +} diff --git a/src/app/components/nav/side-nav/side-nav.component.spec.ts b/src/app/components/nav/side-nav/side-nav.component.spec.ts new file mode 100644 index 0000000..92dd24d --- /dev/null +++ b/src/app/components/nav/side-nav/side-nav.component.spec.ts @@ -0,0 +1,54 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { TestBed } from '@angular/core/testing'; +import { ConfirmationService } from 'primeng/api'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { TestSandbox } from '../../test/test.sandbox'; +import { NavSandbox } from '../nav.sandbox'; +import { SideNavComponent } from './side-nav.component'; + +class MockSideNav { + // get current component index + getCurrentIndex() { + return 1; + } +} +describe('SideNavComponent', () => { + let component: SideNavComponent, navSandbox, projectApi, confirmationService, testSandbox; + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + SideNavComponent, + { provide: NavSandbox, useClass: MockSideNav }, + { provide: ProjectsAPI, useClass: MockSideNav }, + { provide: ConfirmationService, useClass: MockSideNav }, + { provide: TestSandbox, useClass: MockSideNav } + ] + }).compileComponents(); + component = TestBed.inject(SideNavComponent); + navSandbox = TestBed.inject(NavSandbox); + projectApi = TestBed.inject(ProjectsAPI); + confirmationService = TestBed.inject(ConfirmationService); + testSandbox = TestBed.inject(TestSandbox); + + }); + + it('should contain SideNavComponent', () => { + expect(component).toBeTruthy(); + expect(component.sideBarClicked).toBeTruthy(); + }); +}); diff --git a/src/app/components/nav/side-nav/side-nav.component.ts b/src/app/components/nav/side-nav/side-nav.component.ts new file mode 100644 index 0000000..4db0c20 --- /dev/null +++ b/src/app/components/nav/side-nav/side-nav.component.ts @@ -0,0 +1,57 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { ConfirmationService } from 'primeng/api'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { TestSandbox } from '../../test/test.sandbox'; +import { NavSandbox } from '../nav.sandbox'; + +@Component({ + selector: 'app-side-nav', + templateUrl: './side-nav.component.html', + styleUrls: ['./side-nav.component.scss'], +}) + +// This is a component for Sidebar navigation controls +export class SideNavComponent { + sideBarIndex = this.navSandbox.getCurrentIndex(); + + constructor(public navSandbox: NavSandbox, public projectsAPI: ProjectsAPI, + public confirmationService: ConfirmationService, public testSandBox: TestSandbox) { } + sideBarClicked(index: number) { + if (this.navSandbox.getCurrentIndex() === 1 && index !== 1 && this.testSandBox.getTestScreen() !== 2) { + this.confirmationService.confirm({ + message: 'Are you sure that you want to proceed?', + header: 'You Are in Test Execution Screen', + icon: 'pi pi-exclamation-triangle', + accept: () => { + this.projectsAPI.setCurrentPanelIndex(index); + this.sideBarIndex = index; + }, + reject: () => { + } + }); + } else { + if (index === 1 && this.testSandBox.getTestScreen() === 0) { + // If user is in Test-selection screen and click on "Test" on left-nav show test-history screen. + this.testSandBox.setTestScreen(2); + } + this.projectsAPI.setCurrentPanelIndex(index); + this.sideBarIndex = index; + } + } +} diff --git a/src/app/components/nav/top-nav/top-nav.component.html b/src/app/components/nav/top-nav/top-nav.component.html new file mode 100644 index 0000000..02de787 --- /dev/null +++ b/src/app/components/nav/top-nav/top-nav.component.html @@ -0,0 +1,80 @@ + + + +
+ +
+ + +
+
+ +
+ +
+
+
+ Version: {{sharedAPI.getShaVersion().version}} + Sha: {{sharedAPI.getShaVersion().sha}} +
+ + + + + + + + +
+
+
+
+

Notifications

+ +
+
+
+ +
+

{{data.message}} +

+ {{findTime(data.time)}} +
+
+
+

No + Notifications

+
+
+
+ +
+ + + + diff --git a/src/app/components/nav/top-nav/top-nav.component.scss b/src/app/components/nav/top-nav/top-nav.component.scss new file mode 100644 index 0000000..10907f6 --- /dev/null +++ b/src/app/components/nav/top-nav/top-nav.component.scss @@ -0,0 +1,219 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; +@import "../../../../styles/custom.scss"; + +:host ::ng-deep { + .p-menubar { + background-color: $navbar !important; + opacity: 0.9; + border: none !important; + border-radius: unset !important; + color: $white; + z-index: 2; + height: 68px; + position: relative; + padding-left: 0; + .p-menubar-start { + height: 68px; + width: 86px; + position: relative; + } + } + .user-data { + display: flex; + align-items: center; + i { + margin-right: 20px; + } + } + .notification-text { + color: black; + } + .project-list-overlay { + max-width: 100%; + span { + overflow: hidden; + white-space: pre; + text-overflow: ellipsis; + } + } + .top-nav-start { + .top-nav-dropdown { + padding-left: 90px; + text-transform: capitalize; + .p-dropdown { + max-width: 400px !important; + .p-inputtext { + font-family: "Roboto-Regular"; + font-size: 22px; + color: $white; + } + .p-dropdown-trigger { + color: $white; + } + background: $transparent !important; + box-shadow: unset; + border-color: $transparent; + top: 15px; + } + .p-dropdown-items-wrapper { + max-width: 400px; + li { + overflow: hidden; + white-space: pre; + text-overflow: ellipsis; + } + } + .p-dropdown:not(.p-disabled).p-focus { + box-shadow: unset; + border-color: $transparent; + outline: unset; + outline-offset: unset; + } + } + } + .display-drop { + visibility: visible !important; + max-height: none !important; + } + + .matter-logo-icon { + width: 40px; + font-size: 38px; + margin-left: 3px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + } + .arrow-down-icon { + font-size: 20px; + } + .project-title { + font-size: 25px; + } + .notification-icon { + font-size: 25px; + z-index: 3; + .p-badge-dot { + background: red; + } + } + .theme-switch-icon { + font-size: 30px; + } + .matter-logo { + width: 205px; + margin-left: 2px; + } + .p-dropdown-items-wrapper { + @extend .sub-heading; + } + .notification-overlay { + min-width: 355px; + position: absolute; + background: whitesmoke; + display: block; + visibility: hidden; + left: calc(100vw - 430px); + top: 58px; + transition: all 200ms ease-out; + border-radius: 5px; + ::before { + content: ""; + position: absolute; + border-color: rgba(194, 225, 245, 0); + border: solid transparent; + border-bottom-color: whitesmoke; + border-width: 11px; + margin-left: -10px; + top: -21px; + right: 10px; + z-index: 1; + } + hr { + background: #bdc2c0; + border-width: 0; + height: 1px; + } + .message-parent { + overflow-y: auto; + max-height: 340px; + .no-notification { + text-align: center; + } + } + .notification-header { + display: flex; + justify-content: space-between; + padding: 7px 7px 0 7px; + } + .notification-title { + margin: auto 0; + font-weight: 500; + color: #000000b8; + } + .status-circle { + width: 8px; + height: 8px; + border-radius: 50%; + display: inline-block; + margin-right: 5px; + } + .success { + background-color: rgb(48, 129, 235); + } + .error { + background-color: rgb(238, 26, 37); + } + .notification-message { + margin: 0 8px; + p { + margin-bottom: 2px; + } + .message-title { + font-weight: 500; + } + .notification-time { + margin-left: 13px; + font-weight: 200; + color: grey; + font-size: 13px; + } + } + } + .select-project-dialog { + .p-listbox .p-listbox-list { + .p-listbox-item { + border-bottom: 1px solid #e4dddd; + &:nth-child(even) { + background-color: #f2f2f2; + } + &:hover { + background-color: #b8b7b7; + } + } + } + } + .sha-version { + margin-right: 25px; + font-weight: 600; + display: flex; + flex-direction: column; + } +} diff --git a/src/app/components/nav/top-nav/top-nav.component.spec.ts b/src/app/components/nav/top-nav/top-nav.component.spec.ts new file mode 100644 index 0000000..3a4d842 --- /dev/null +++ b/src/app/components/nav/top-nav/top-nav.component.spec.ts @@ -0,0 +1,92 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { TestBed } from '@angular/core/testing'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { ProjectSandbox } from '../../project/project.sandbox'; +import { TestSandbox } from '../../test/test.sandbox'; +import { NavSandbox } from '../nav.sandbox'; +import { TopNavComponent } from './top-nav.component'; + +class MockNavSandbox { } +class MockProjectsAPI { } +class MockProjectSandbox { + getAllProjectData() { + const projectData = [ + { + 'name': 'First Project', + 'dut_type': 'accessory', + 'id': 1 + }, + { + 'name': 'string', + 'dut_type': 'controller', + 'id': 7 + }, + { + 'name': 'Switch', + 'dut_type': 'accessory', + 'id': 9 + }, + { + 'name': 'printer', + 'dut_type': 'controller', + 'id': 11 + }, + { + 'name': 'testname29sep2', + 'dut_type': 'accessory', + 'id': 13 + } + ]; + return projectData; + } +} +class MockSharedAPI { } +class MockTestSandbox { } + +describe('topNavComponent', () => { + let component: TopNavComponent, navSandbox, projectSandbox, projectAPI, sharedAPI, testSandbox; + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + TopNavComponent, + { provide: NavSandbox, useClass: MockNavSandbox }, + { provide: ProjectsAPI, useClass: MockProjectsAPI }, + { provide: ProjectSandbox, useClass: MockProjectSandbox }, + { provide: SharedAPI, useClass: MockSharedAPI }, + { provide: TestSandbox, useClass: MockTestSandbox } + ] + }).compileComponents(); + component = TestBed.inject(TopNavComponent); + navSandbox = TestBed.inject(NavSandbox); + projectAPI = TestBed.inject(ProjectsAPI); + projectSandbox = TestBed.inject(ProjectSandbox); + sharedAPI = TestBed.inject(SharedAPI); + testSandbox = TestBed.inject(TestSandbox); + }); + // checks project length + it('should return a value greater or equal to 0', () => { + expect(component.getProjectDataLen()).toBeGreaterThanOrEqual(0); + }); + + it('should return a date in readable format', () => { + const getTime = component.findTime(new Date); + expect(getTime).toBe('Just Now'); + }); +}); diff --git a/src/app/components/nav/top-nav/top-nav.component.ts b/src/app/components/nav/top-nav/top-nav.component.ts new file mode 100644 index 0000000..7fdfb1d --- /dev/null +++ b/src/app/components/nav/top-nav/top-nav.component.ts @@ -0,0 +1,124 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, DoCheck, OnInit } from '@angular/core'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { THEMES } from 'src/app/shared/utils/constants'; +import { addThemeSwitchClass } from 'src/app/shared/utils/utils'; +import { ProjectSandbox } from '../../project/project.sandbox'; +import { TestSandbox } from '../../test/test.sandbox'; +import { NavSandbox } from '../nav.sandbox'; + +@Component({ + selector: 'app-top-nav', + templateUrl: './top-nav.component.html', + styleUrls: ['./top-nav.component.scss'] +}) + +// This is a component used to display Top navigation bar. +export class TopNavComponent implements DoCheck { + headerName?: any; + dropdownData: any = ''; + selectedProject?: any; + display = false; + notification = false; + themesOption = THEMES; + constructor(public navSandbox: NavSandbox, public projectsAPI: ProjectsAPI, + public projectSandbox: ProjectSandbox, public sharedAPI: SharedAPI, public testSandbox: TestSandbox) { + this.getProjectDataLen(); + + window.onclick = (event: any) => { + /* eslint-disable prefer-const */ + let notificationElement = document.getElementById('notification'); + let notificationClick = document.getElementById('notification-click'); + /* eslint-enable prefer-const */ + if (!notificationElement?.contains(event.target) && !notificationClick?.contains(event.target)) { + this.notification = false; + } + }; + if (localStorage.getItem('selectedTheme')) { + const storedTheme = THEMES.find(data => data.code === localStorage.getItem('selectedTheme')); + this.sharedAPI.setSelectedTheme(storedTheme); + addThemeSwitchClass(storedTheme); + } + } + + ngDoCheck() { + if (this.headerName !== this.sharedAPI.getSelectedProjectType()) { + this.headerName = this.sharedAPI.getSelectedProjectType(); + } + + if (!this.sharedAPI.getSelectedProjectType() && this.navSandbox.getCurrentIndex() === 1) { + this.display = true; + } + } + getProjectDataLen() { + this.dropdownData = this.projectSandbox.getAllProjectData(); + if (this.dropdownData.length === 0) { + if (this.projectSandbox.getArchivedProjects().length === 0) { + this.projectsAPI.setCurrentPanelIndex(5); + } + this.dropdownData = this.projectSandbox.getArchivedProjects(); + } + return this.dropdownData.length; + } + + closePopUp() { + this.display = false; + this.headerName = this.selectedProject || this.dropdownData[0]; + this.sharedAPI.setSelectedProjectType(this.headerName); + this.testSandbox.getTestExecutionResults(this.headerName?.id); + } + projectChanged() { + this.sharedAPI.setSelectedProjectType(this.headerName); + this.testSandbox.getTestExecutionResults(this.headerName?.id); + this.testSandbox.setTestScreen(2); + } + onThemeSwitch() { + let newTheme; + if (this.sharedAPI.getSelectedTheme() === this.themesOption[2]) { + newTheme = this.sharedAPI.getSelectedLightTheme(); + } else { + newTheme = THEMES[2]; + } + localStorage.setItem('selectedTheme', newTheme.code); + this.sharedAPI.setSelectedTheme(newTheme); + addThemeSwitchClass(newTheme); + } + onClickNotification() { + this.sharedAPI.setIsNotificationRead(false); + this.notification = !this.notification; + } + findTime(date: any) { + const differenceInMinutes = Math.floor(((new Date().getTime() - new Date(date).getTime()) / (1000 * 60))); + const differenceInHours = Math.floor(differenceInMinutes / 60); + const differenceInDays = Math.floor(differenceInHours / 24); + const differenceInMonths = Math.floor(differenceInDays / 30); + if (differenceInMinutes < 1) { + return 'Just Now'; + } else if (differenceInMinutes > 0 && differenceInMinutes < 61) { + return differenceInMinutes + 'mins ago'; + } else if (differenceInHours > 0 && differenceInHours < 25) { + return differenceInHours + ' hours ago'; + } else if (differenceInMonths > 0 && differenceInMonths < 13) { + return differenceInMonths + ' months ago'; + } else { + return 'a while ago'; + } + } + +} diff --git a/src/app/components/project/create-new-project/create-new-project.component.html b/src/app/components/project/create-new-project/create-new-project.component.html new file mode 100644 index 0000000..f90f431 --- /dev/null +++ b/src/app/components/project/create-new-project/create-new-project.component.html @@ -0,0 +1,26 @@ + +
+ +

Create New Project

+
+
+ +
diff --git a/src/app/components/project/create-new-project/create-new-project.component.scss b/src/app/components/project/create-new-project/create-new-project.component.scss new file mode 100644 index 0000000..f7e8d2d --- /dev/null +++ b/src/app/components/project/create-new-project/create-new-project.component.scss @@ -0,0 +1,35 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; + +:host ::ng-deep { + .new-project-main { + height: calc(100vh - 150px); + user-select: none; + cursor: pointer; + color: $lightBlack; + + i { + font-size: 90px; + padding-bottom: 15px; + } + .create-new-project-label { + font-family: "Roboto-Regular"; + font-size: 38px; + } + } +} diff --git a/src/app/components/project/create-new-project/create-new-project.component.ts b/src/app/components/project/create-new-project/create-new-project.component.ts new file mode 100644 index 0000000..39624ee --- /dev/null +++ b/src/app/components/project/create-new-project/create-new-project.component.ts @@ -0,0 +1,37 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, Injectable } from '@angular/core'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { NavSandbox } from '../../nav/nav.sandbox'; +import { ProjectSandbox } from '../project.sandbox'; +@Component({ + selector: 'app-create-new-project', + templateUrl: './create-new-project.component.html', + styleUrls: ['./create-new-project.component.scss'] +}) + +@Injectable({ + providedIn: 'root' +}) +// This is a component used to display create button to redirect to create new project +export class CreateNewProjectComponent { + constructor(public projectSandbox: ProjectSandbox, public projectsAPI: ProjectsAPI, public navSandbox: NavSandbox) { } + + createNewProject() { + this.projectsAPI.setIsNewProjectClicked(true); + } +} diff --git a/src/app/components/project/device-detail-list/device-detail-list.component.html b/src/app/components/project/device-detail-list/device-detail-list.component.html new file mode 100644 index 0000000..e05a7f5 --- /dev/null +++ b/src/app/components/project/device-detail-list/device-detail-list.component.html @@ -0,0 +1,31 @@ + +
+ +
+ + +
+
diff --git a/src/app/components/project/device-detail-list/device-detail-list.component.scss b/src/app/components/project/device-detail-list/device-detail-list.component.scss new file mode 100644 index 0000000..13fe313 --- /dev/null +++ b/src/app/components/project/device-detail-list/device-detail-list.component.scss @@ -0,0 +1,30 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; + +.add-device-icon { + font-size: 24px; + vertical-align: middle; + padding-left: 6px; + .path1:before { + color: $buttonColor; + opacity: 1; + } + .path2::before { + color: $white; + } +} diff --git a/src/app/components/project/device-detail-list/device-detail-list.component.ts b/src/app/components/project/device-detail-list/device-detail-list.component.ts new file mode 100644 index 0000000..9419688 --- /dev/null +++ b/src/app/components/project/device-detail-list/device-detail-list.component.ts @@ -0,0 +1,48 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, Injectable, OnInit } from '@angular/core'; +import { getDefaultSettings, ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { ProjectService } from 'src/app/shared/project-utils'; +import { ProjectSandbox } from '../project.sandbox'; + +@Component({ + selector: 'app-device-detail-list', + templateUrl: './device-detail-list.component.html', + styleUrls: ['./device-detail-list.component.scss'] +}) + +@Injectable() +// This component is wrapping the device-details and show additional config +export class DeviceDetailListComponent implements OnInit { + addedSettings: any[]; + settingsType: any[]; + + constructor(public projectsAPI: ProjectsAPI, public projectSandbox: ProjectSandbox, public projectService: ProjectService) { + this.addedSettings = getDefaultSettings(); + this.settingsType = getDefaultSettings(); + } + + ngOnInit() { + this.projectsAPI.getSettingsJsonData(); + } + onCreate() { + if (!this.projectsAPI.getIsCreateProjectContainsWarning()) { + this.projectService.cursorBusy(true); + this.projectSandbox.createNewProject(); + } + } +} diff --git a/src/app/components/project/device-detail/device-detail.component.html b/src/app/components/project/device-detail/device-detail.component.html new file mode 100644 index 0000000..45d63cc --- /dev/null +++ b/src/app/components/project/device-detail/device-detail.component.html @@ -0,0 +1,36 @@ + +
+
+
+

Settings

+ + +
+
+
+
+

{{item.key}}

+ + + + + +
+
+
diff --git a/src/app/components/project/device-detail/device-detail.component.scss b/src/app/components/project/device-detail/device-detail.component.scss new file mode 100644 index 0000000..263a9c1 --- /dev/null +++ b/src/app/components/project/device-detail/device-detail.component.scss @@ -0,0 +1,24 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +.toggle-button { + margin-left: 15px; +} +.trash-icon { + font-size: 25px; + vertical-align: middle; + margin-left: 15px; +} diff --git a/src/app/components/project/device-detail/device-detail.component.ts b/src/app/components/project/device-detail/device-detail.component.ts new file mode 100644 index 0000000..73a17bc --- /dev/null +++ b/src/app/components/project/device-detail/device-detail.component.ts @@ -0,0 +1,42 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, Input } from '@angular/core'; + +@Component({ + selector: 'app-device-detail', + templateUrl: './device-detail.component.html', + styleUrls: ['./device-detail.component.scss'] +}) + +// This component will loop through selected settings and display the UI inputs +export class DeviceDetailComponent { + @Input() addedSetting: any; + @Input() settingsType: any; + @Input() settingsJson: any; + + getValue(data: any) { + return data.value; + } + + getType(data: any) { + return data.type; + } + + unsorted() { + return 1; + } +} diff --git a/src/app/components/project/project-details/project-details.component.html b/src/app/components/project/project-details/project-details.component.html new file mode 100644 index 0000000..5104224 --- /dev/null +++ b/src/app/components/project/project-details/project-details.component.html @@ -0,0 +1,71 @@ + +

Project Details

+
+
+
+

Project Name

+ +
+ + {{projectName === '' ? 'Project name cannot be empty' : 'Special cases are not allowed'}} + +
+

Project Config

+ +
+
+ + +
+ + +
+ + +
+
+ + +
+
+ + +
diff --git a/src/app/components/project/project-details/project-details.component.scss b/src/app/components/project/project-details/project-details.component.scss new file mode 100644 index 0000000..1a5607e --- /dev/null +++ b/src/app/components/project/project-details/project-details.component.scss @@ -0,0 +1,71 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +.project-name-parent { + position: relative; +} +.project-warning { + position: absolute; + bottom: -15px; + left: 0px; + color: red; +} +.environment-parent { + height: 43vh; + position: relative; + width: 60%; +} +.edit-button { + position: absolute; + + bottom: 12px; + right: 12px; + +} +.environment-button { + position: absolute; + bottom: 12px; + gap: 5px; + right: 12px; + display: flex; +} +:host ::ng-deep .settings-environment { + white-space: pre; + max-height: 100%; + overflow: auto; + background: black; + color: white; + margin-top: 10px; + + + + textarea { + background: black; + color: white; + border: none !important; + font-family: monospace; + } + .p-inputtext:enabled:focus { + border: none !important; + box-shadow: none !important; + } + font-family: monospace; + .string { color: brown; } + .number { color: darkorange; } + .boolean { color: blue; } + .null { color: green; } + .key { color: violet; } +} diff --git a/src/app/components/project/project-details/project-details.component.ts b/src/app/components/project/project-details/project-details.component.ts new file mode 100644 index 0000000..272cedc --- /dev/null +++ b/src/app/components/project/project-details/project-details.component.ts @@ -0,0 +1,93 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { Component, ElementRef, ViewChild } from '@angular/core'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; + + +@Component({ + selector: 'app-project-details', + templateUrl: './project-details.component.html', + styleUrls: ['./project-details.component.scss'] +}) + +// This component used to display input for project details +export class ProjectDetailsComponent { + @ViewChild('projectConfig') set configText(ref: ElementRef) { + if (!!ref) { + ref.nativeElement.focus(); + } + } + // projectTypes: ProjectType[]; + // selectedProjectType: ProjectType; + selectedTransport: string[] = []; + allowedCharacter = /[^A-Za-z0-9 _-]/; + projectName = 'New Project'; + onEnvironmentEdit = false; + environmentData: any = []; + constructor(public projectsAPI: ProjectsAPI, public sharedAPI: SharedAPI) { + this.environmentData = JSON.stringify(sharedAPI.getEnvironmentConfig(), null, ' '); + const projectDetails = this.projectsAPI.getProjectDetails(); + projectDetails.config = JSON.parse(this.environmentData); + this.projectsAPI.setProjectDetails(projectDetails); + } + onProjectNameChange(event: any) { + const query = event.target.value; + this.projectsAPI.setIsCreateProjectContainsWarning(false); + if (this.allowedCharacter.test(query) || query === '') { + this.projectsAPI.setIsCreateProjectContainsWarning(true); + this.projectName = query; + } + const projectDetails = this.projectsAPI.getProjectDetails(); + projectDetails.name = query; + this.projectsAPI.setProjectDetails(projectDetails); + } + + jsonToHtml(data: any) { + data = data.replace(/&/g, '&').replace(//g, '>'); + data = data.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, + function (match: any) { + let cls = 'number'; + if (/^"/.test(match)) { + if (/:$/.test(match)) { + cls = 'key'; + } else { + cls = 'string'; + } + } else if (/true|false/.test(match)) { + cls = 'boolean'; + } else if (/null/.test(match)) { + cls = 'null'; + } + return '' + match + ''; + }); + + return data; + + } + updateEnvironment() { + const projectDetails = this.projectsAPI.getProjectDetails(); + projectDetails.config = JSON.parse(this.environmentData); + this.projectsAPI.setProjectDetails(projectDetails); + this.onEnvironmentEdit = false; + } + onCancelConfig() { + this.environmentData = JSON.stringify(this.sharedAPI.getEnvironmentConfig(), null, ' '); + this.onEnvironmentEdit = false; + } +} diff --git a/src/app/components/project/project-table/project-table.component.html b/src/app/components/project/project-table/project-table.component.html new file mode 100644 index 0000000..0857b2f --- /dev/null +++ b/src/app/components/project/project-table/project-table.component.html @@ -0,0 +1,144 @@ + +
+
+ +
+ + +
+
+ + + +
+
+ + + + + +
+
+
+ + + + + Project details + + + + Created + + + + + + + + + + + {{ data.name }} + + + {{ sharedService.findDate(data.created_at) }} + + + + + + + + + + + + +
+
+
+
+
+ + + +
+
+

Project Name

+ +
+ + {{updateProjectData.name === '' ? 'Project name cannot be empty' : 'Special cases are not allowed'}} + +
+ +
+
+

Project Config

+ +
+
+
+

PICS

+
+ + +
+
+ + +
+
+ {{clusters}} +
+ +
+
+
+
NO PICS UPLOADED
+
+
+ + + +
+ + + + +
+
diff --git a/src/app/components/project/project-table/project-table.component.scss b/src/app/components/project/project-table/project-table.component.scss new file mode 100644 index 0000000..9f1f06d --- /dev/null +++ b/src/app/components/project/project-table/project-table.component.scss @@ -0,0 +1,246 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; +@import "../../../../styles/custom.scss"; + +:host ::ng-deep { + .p-datatable { + table { + border-collapse: collapse; + width: -webkit-fill-available; + table-layout: fixed; + } + .p-datatable-thead > tr > th { + &:hover { + background:#f8f9fa; + } + } + } + .p-card-body { + padding: 0 !important; + + } + .icon-add-circle1 { + font-size: 23px; + padding-left: 6px; + .path1:before { + color: $buttonColor; + opacity: 1; + } + .path2::before { + color: white; + } + } + .filter-button { + padding-right: 8px; + } + tr { + height: 60px; + } + .table_icons { + display: none; + i { + padding: 6px; + font-size: 25px; + margin: 3px; + } + i:hover { + color: $buttonColor; + background-color: rgba(156, 204, 235, 0.432); + border-radius: 20px; + } + } + + .table_row:hover { + .table_icons { + display: block !important; + } + } + .p-paginator-bottom { + .p-dropdown { + width: 4.5rem !important; + } + } + .round_circle { + height: 10px; + width: 10px; + border-radius: 50%; + display: inline-block; + } + .failed { + background-color: $error; + } + + .completed { + background-color: $success; + } + .pending { + background-color: $warning; + } + .table-heading-row th { + @extend .table-heading; + } + .table_row td { + @extend .table-data; + } + .p-paginator-bottom, + .p-paginator-page, + .p-dropdown-label, + .p-dropdown-items-wrapper, + .search-input { + @extend .table-data; + } + + .p-card-comp { + flex: 1 1 auto; + & > .p-component { + height: 100%; + box-shadow: 0px 6px 12px 3px rgb(0 0 0 / 10%); + } + + .transport-div { + label { + margin-right: 15px; + margin-left: 5px; + } + } + .sub-heading { + font-size: 18px; + } + } + + .card-comp-parent-div { + height: calc(100vh - 97px); + margin: 14px; + .p-card-parent { + height: 100%; + } + } + + .project-dropdown { + .p-dropdown { + .p-inputtext { + @extend .heading-text; + } + .p-dropdown-trigger { + color: $iconBackground; + } + background: transparent !important; + box-shadow: unset; + border-color: transparent; + } + .p-dropdown:not(.p-disabled).p-focus { + box-shadow: unset; + border-color: transparent; + outline: unset; + outline-offset: unset; + } + .p-dropdown .p-dropdown-trigger { + width: none !important; + padding-right: 20px; + } + } + .update-project { + .p-dropdown { + width: 197px; + } + .update-project-child { + padding-bottom: 16px; + } + .update-project-button { + padding-top: 5px; + display: flex; + justify-content: flex-end; + gap: 15px; + } + .project-warning { + position: absolute; + color: red; + } + .settings-environment { + height: 300px; + overflow: auto; + display: flex; + gap: 10px; + } + .textbox-label { + font-weight: 500; + } + } + .card-comp-parent-div { + .p-card .p-card-content { + padding: 0 0 1rem 0 !important; + } + } + .project-name { + width: 36%; + max-width: 0; + white-space: pre; + overflow: hidden; + text-overflow: ellipsis; + } + .input-file { + opacity: 0; + width: 0.1px; + height: 0.1px; + position: absolute; + } + .pics-upload label { + display: flex; + position: relative; + width: 130px; + height: 25px; + border-radius: 4px; + background: var(--blue-500); + align-items: center; + justify-content: center; + color: #fff; + .pi-upload { + padding-right: 8px; + } + } + .text-area { + height: unset !important; + overflow: auto !important; + width: 100%; + } + .pics-list { + display: flex; + width: 100%; + justify-content: space-between; + align-items: center; + i { + font-size: 18px; + display: none; + } + } + .settings-textarea, .settings-pics { + width: 50%; + } + .p-listbox-list li:hover { + i { + display: block !important; + } + } + .pics-upload-settings { + display: flex; + gap:10px; + } + + +} + \ No newline at end of file diff --git a/src/app/components/project/project-table/project-table.component.spec.ts b/src/app/components/project/project-table/project-table.component.spec.ts new file mode 100644 index 0000000..acda354 --- /dev/null +++ b/src/app/components/project/project-table/project-table.component.spec.ts @@ -0,0 +1,65 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { TestBed } from '@angular/core/testing'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +import { TestSandbox } from '../../test/test.sandbox'; +import { ProjectSandbox } from '../project.sandbox'; +import { ProjectTableComponent } from './project-table.component'; + +class MockProjectSandbox { + getProjectType() { + return 0; + } +} +class MockProjectAPI { + updateProject(data: any) { } +} +class MockSharedAPI { } +class MockTestSandbox { } +class MockSharedService { } +describe('ProjectTableComponent', () => { + let component: ProjectTableComponent; + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ + ProjectTableComponent, + { provide: ProjectSandbox, useClass: MockProjectSandbox }, + { provide: ProjectsAPI, useClass: MockProjectAPI }, + { provide: SharedAPI, useClass: MockSharedAPI }, + { provide: TestSandbox, useClass: MockTestSandbox }, + { provide: SharedService, useClass: MockSharedService } + ] + }).compileComponents(); + component = TestBed.inject(ProjectTableComponent); + const projectSandbox = TestBed.inject(ProjectSandbox); + const projectAPI = TestBed.inject(ProjectsAPI); + const sharedAPI = TestBed.inject(SharedAPI); + const testSandbox = TestBed.inject(TestSandbox); + }); + it('updateProjectClicked', () => { + component.updateProjectClicked('update'); + expect(component.isUpdateClicked).toBe(true); + }); + + it('updateProject', () => { + component.updateProject(); + expect(component.isUpdateClicked).toBe(false); + }); + +}); diff --git a/src/app/components/project/project-table/project-table.component.ts b/src/app/components/project/project-table/project-table.component.ts new file mode 100644 index 0000000..501ba79 --- /dev/null +++ b/src/app/components/project/project-table/project-table.component.ts @@ -0,0 +1,100 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { projectDropdown, ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestSandbox } from '../../test/test.sandbox'; +import { ProjectSandbox } from '../project.sandbox'; +import * as _ from 'lodash'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +@Component({ + selector: 'app-project-table', + templateUrl: './project-table.component.html', + styleUrls: ['./project-table.component.scss'] +}) + +// This is a component used to display all the Projects in table +export class ProjectTableComponent { + projectDropdownData: any = projectDropdown(); + selectedDropdownData = this.projectSandbox.getProjectType(); + updateProjectData: any = []; + projectConfig: any = []; + isUpdateClicked = false; + multiplePics = 0; + allowedCharacter = /[^A-Za-z0-9 _-]/; + constructor(public projectSandbox: ProjectSandbox, public projectsAPI: ProjectsAPI, + public sharedAPI: SharedAPI, public testSandbox: TestSandbox, public sharedService: SharedService) { } + addNewProject() { + this.projectsAPI.setIsNewProjectClicked(true); + this.projectsAPI.setCurrentPanelIndex(5); + } + deleteProject(projectId: number) { + this.projectSandbox.deleteProject(projectId); + } + toTestSelection(projectData: any) { + this.sharedAPI.setSelectedProjectType(projectData); + this.testSandbox.getTestExecutionResults(projectData.id); + this.testSandbox.setTestScreen(2); + this.projectsAPI.setCurrentPanelIndex(1); + } + updateProjectClicked(data: any) { + this.updateProjectData = _.cloneDeep(data); + const editData = { + 'config': this.updateProjectData.config, + 'pics': this.updateProjectData.pics + }; + this.projectConfig = JSON.stringify(editData, null, ' '); + this.isUpdateClicked = true; + } + updateProject() { + if (this.updateProjectData.name && !this.allowedCharacter.test(this.updateProjectData.name)) { + const parsedData = JSON.parse(this.projectConfig); + this.updateProjectData.config = parsedData.config; + this.updateProjectData.pics = parsedData.pics; + this.projectsAPI.updateProject(this.updateProjectData); + this.isUpdateClicked = false; + } + } + archiveProject(id: any) { + if (this.selectedDropdownData.tableName === 'Archive Project') { + this.projectsAPI.unarchiveProject(id); + } else { + this.projectsAPI.archiveProject(id); + } + } + onProjectTypeChange() { + this.projectSandbox.setProjectType(this.selectedDropdownData); + } + onUpload(data: any, id: any) { + if (data.target.files.item(this.multiplePics)) { + const file: File = data.target.files.item(this.multiplePics++); + this.projectsAPI.uploadPics(file, id, this.onUpload.bind(this, data, id), this.updatedPICS.bind(this)); + } else { + this.multiplePics = 0; + } + } + deletePICS(data: any, id: any) { + this.projectsAPI.deletePics(data, id, this.updatedPICS.bind(this)); + } + updatedPICS(data: any) { + this.updateProjectData = data; + this.updateProjectClicked(data); + } + chagePicsType(data: any) { + return Object.keys(data); + } +} diff --git a/src/app/components/project/project.component.html b/src/app/components/project/project.component.html new file mode 100644 index 0000000..b5d110f --- /dev/null +++ b/src/app/components/project/project.component.html @@ -0,0 +1,28 @@ + +
+
+ +
+

New Project

+ + +
+ +
+
+
diff --git a/src/app/components/project/project.component.scss b/src/app/components/project/project.component.scss new file mode 100644 index 0000000..f99157a --- /dev/null +++ b/src/app/components/project/project.component.scss @@ -0,0 +1,71 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../styles/colors"; +@import "../../../styles/custom.scss"; + +:host ::ng-deep .p-card-comp { + flex: 1 1 auto; + & > .p-component { + height: 100%; + box-shadow: 0px 6px 12px 3px rgb(0 0 0 / 10%); + } + .p-dropdown { + width: 14rem; + } + .p-card-parent .p-card.p-component { + position: relative; + } + .transport-div { + label { + @extend .table-data; + margin-right: 15px; + margin-left: 5px; + } + } + .sub-heading { + font-size: 18px; + } + /* Override CSS */ + .p-card-body { + padding: 30px; + position: absolute; + width: 100%; + } + .p-card-content { + padding: 0; + } + .heading-label { + @extend .heading-text; + } + .sub-heading { + @extend .sub-heading; + } + .textbox-label { + @extend .table-data; + } + h3 { + padding: 0; + margin: 0; + } +} +.card-comp-parent-div { + height: calc(100vh - 97px); + margin: 14px; + .p-card-parent { + height: 100%; + } +} diff --git a/src/app/components/project/project.component.ts b/src/app/components/project/project.component.ts new file mode 100644 index 0000000..2276c34 --- /dev/null +++ b/src/app/components/project/project.component.ts @@ -0,0 +1,30 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { ProjectSandbox } from './project.sandbox'; + +@Component({ + selector: 'app-project', + templateUrl: './project.component.html', + styleUrls: ['./project.component.scss'] +}) + +// This component used to wrap project-details and device-details +export class ProjectComponent { + isNewProjectClicked = false; + constructor(public projectSandbox: ProjectSandbox) { } +} diff --git a/src/app/components/project/project.sandbox.ts b/src/app/components/project/project.sandbox.ts new file mode 100644 index 0000000..27af98d --- /dev/null +++ b/src/app/components/project/project.sandbox.ts @@ -0,0 +1,61 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { ProjectStore } from '../../store/project-store'; + +@Injectable() +export class ProjectSandbox { + public isNewProjectClicked: any; + public newProjectDetails: any; + constructor(private projectStore: ProjectStore, private projectsAPI: ProjectsAPI) { } + + public getNewProjectDetails() { + this.newProjectDetails = this.projectStore.newProjectDetails; + return this.newProjectDetails; + } + public getIsNewProjectClicked() { + this.isNewProjectClicked = this.projectStore.isNewProjectClicked; + return this.isNewProjectClicked; + } + public createNewProject() { + const projectDetails = this.projectsAPI.getProjectDetails(); + /* eslint-disable @typescript-eslint/naming-convention */ + const requestData = { + 'name': projectDetails.name, + 'config': projectDetails.config + + }; + /* eslint-enable @typescript-eslint/naming-convention */ + this.projectsAPI.setProjectData(requestData); + } + getAllProjectData() { + return this.projectStore.allProjectData; + } + deleteProject(projectId: number) { + this.projectsAPI.deleteProject(projectId); + } + getArchivedProjects() { + return this.projectStore.archivedProjects; + } + getProjectType() { + return this.projectStore.projectType; + } + setProjectType(data: any) { + this.projectStore.setProjectType(data); + } +} diff --git a/src/app/components/settings/settings.component.html b/src/app/components/settings/settings.component.html new file mode 100644 index 0000000..1738365 --- /dev/null +++ b/src/app/components/settings/settings.component.html @@ -0,0 +1,39 @@ + +
+
+ + + UI Settings + + +
+
+
+

Select theme

+ + +
+ +
+ +
+ +
+
+
diff --git a/src/app/components/settings/settings.component.scss b/src/app/components/settings/settings.component.scss new file mode 100644 index 0000000..8f2d60e --- /dev/null +++ b/src/app/components/settings/settings.component.scss @@ -0,0 +1,119 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../styles/colors"; +@import "../../../styles/custom.scss"; + +:host ::ng-deep .p-card-comp { + flex: 1 1 auto; + & > .p-component { + height: 100%; + box-shadow: 0px 6px 12px 3px rgb(0 0 0 / 10%); + } + .sub-heading { + font-size: 18px; + } + /* Override CSS */ + .p-card-body { + padding: 30px; + } + .p-card-content { + padding: 0; + } + .heading-label { + @extend .heading-text; + } + .sub-heading { + @extend .sub-heading; + } + .textbox-label { + @extend .table-data; + } + h3 { + padding: 0; + margin: 0; + } + .p-card-content, .p-card-body { + height: 100%; + } + .p-tag { + font-size: 16px !important; + } +.settings-environment{ + font-family: monospace; +.string { color: brown; } +.number { color: darkorange; } +.boolean { color: blue; } +.null { color: green; } +.key { color: violet; } +} +.p-divider.p-divider-horizontal .p-divider-content { + padding: 0 !important; +} +} +.card-comp-parent-div { + height: calc(100vh - 97px); + margin: 14px; + .p-card-parent { + height: 100%; + } +} +.heading-environment { + padding-top: 10px !important; +} +.settings-environment { + white-space: pre; + max-height: 100%; + overflow: auto; + background: black; + color: white; + margin-top: 10px; + + + + textarea { + background: black; + color: white; + border: none !important; + font-family: monospace; + } + .p-inputtext:enabled:focus { + border: none !important; + box-shadow: none !important; + } + +} +.environment-parent { +height: 60%; +position: relative; +} +.settings-icon { + position: absolute; + font-size: 30px; + color: white; + bottom: 12px; + right: 12px; + background-color: rgba(156, 204, 235, 0.432); + border-radius: 19px; + padding: 5px; +} +.environment-button { + position: absolute; + bottom: 12px; + gap: 5px; + right: 12px; + display: flex; +} diff --git a/src/app/components/settings/settings.component.ts b/src/app/components/settings/settings.component.ts new file mode 100644 index 0000000..e07d3ad --- /dev/null +++ b/src/app/components/settings/settings.component.ts @@ -0,0 +1,45 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { THEMES } from 'src/app/shared/utils/constants'; +import { addThemeSwitchClass } from 'src/app/shared/utils/utils'; + +@Component({ + selector: 'app-settings', + templateUrl: './settings.component.html', + styleUrls: ['./settings.component.scss'] +}) +export class SettingsComponent { + themesOption: any; + onEnvironmentEdit = false; + environmentData: any = []; + constructor(public sharedAPI: SharedAPI, public projectAPI: ProjectsAPI) { + this.themesOption = THEMES; + this.environmentData = JSON.stringify(sharedAPI.getEnvironmentConfig(), null, ' '); + } + + onThemeChange(value: any) { + localStorage.setItem('selectedTheme', value.code); + this.sharedAPI.setSelectedTheme(value); + addThemeSwitchClass(value); + if (value === THEMES[0] || value === THEMES[1]) { + this.sharedAPI.setSelectedLightTheme(value); + } + } +} diff --git a/src/app/components/shared/pipes/highlight-search.pipe.spec.ts b/src/app/components/shared/pipes/highlight-search.pipe.spec.ts new file mode 100644 index 0000000..31a67cd --- /dev/null +++ b/src/app/components/shared/pipes/highlight-search.pipe.spec.ts @@ -0,0 +1,24 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { HighlightSearchPipe } from './highlight-search.pipe'; + +describe('HighlightSearchPipe', () => { + it('create an instance', () => { + const pipe = new HighlightSearchPipe(); + expect(pipe).toBeTruthy(); + }); +}); diff --git a/src/app/components/shared/pipes/highlight-search.pipe.ts b/src/app/components/shared/pipes/highlight-search.pipe.ts new file mode 100644 index 0000000..c9384b7 --- /dev/null +++ b/src/app/components/shared/pipes/highlight-search.pipe.ts @@ -0,0 +1,43 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'highlightSearch' +}) +export class HighlightSearchPipe implements PipeTransform { + + transform(value: any, args: any): any { + if (!args[0]) { + return value; + } + + const regex = new RegExp(args[0], 'gi'); + const match = value.match(regex); + + if (!match) { + return value; + } + + const activeClass = args[1] ? ' active_log' : ''; + + return value.replace(regex, function (matchKey: any) { + return '' + matchKey + ''; + }); + } + +} diff --git a/src/app/components/shared/popup-modal/popup-modal.component.html b/src/app/components/shared/popup-modal/popup-modal.component.html new file mode 100644 index 0000000..e158d40 --- /dev/null +++ b/src/app/components/shared/popup-modal/popup-modal.component.html @@ -0,0 +1,56 @@ + + +
{{subHeader}}
+ +
+ + + + + + +
+
+
+ + +
+

{{fileName}}

+
+
+ +
+ +
+ +
+
diff --git a/src/app/components/shared/popup-modal/popup-modal.component.scss b/src/app/components/shared/popup-modal/popup-modal.component.scss new file mode 100644 index 0000000..05d58c0 --- /dev/null +++ b/src/app/components/shared/popup-modal/popup-modal.component.scss @@ -0,0 +1,111 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/custom.scss"; +@import "../../../../styles/colors"; + +:host ::ng-deep .custom-popup-parent { + .p-dialog-mask > .p-dialog { + min-width: 400px; + max-width: 60%; + } + .p-dialog-header { + padding: 10px 2px 3px 7px; + background-color: #a3aeb7; + cursor: move; + .p-dialog-title { + min-width: 2px !important; + } + @extend .table-data; + } + + .subheader { + white-space: pre; + @extend .heading-text; + font-size: 16px !important; + max-height: 134px; + overflow: auto; + user-select: text !important; + + } + .buttons-div { + float: right; + margin-top: 30px; + } + .popup-button { + margin-right: 10px; + } + .input-items-div > .popup-inputbox { + width: 100%; + margin-top: 15px; + } + .input-items-div > .popup-dropdown > .p-dropdown { + width: 100%; + margin-top: 15px; + } + .popup-radio-div { + margin-top: 10px; + .popup-radio-row { + padding: 10px 0px; + label { + margin-right: 30px; + margin-left: 5px; + } + } + } + .upload-popup { + .input-file { + opacity: 0; + width: 0.1px; + height: 0.1px; + position: absolute; + } + .file-upload label { + display: flex; + position: relative; + width: 100px; + height: 40px; + border-radius: 4px; + background: var(--blue-500); + align-items: center; + justify-content: center; + color: #fff; + .pi-upload { + padding-right: 8px; + } + } + .upload-file { + padding: 8px; + margin: 13px; + border: 1px solid #e3e1e187; + box-shadow: 0px 6px 12px 3px rgb(0 0 0 / 10%); + .icon-document-text-1 { + padding-right: 5px; + } + } + .file-name { + margin: auto 0 auto 15px; + } + } + .upload-width { + width: 60vw; + } +} +:host ::ng-deep .upload-width { + .p-dialog-mask > .p-dialog { + width: 50vw !important; + } +} diff --git a/src/app/components/shared/popup-modal/popup-modal.component.ts b/src/app/components/shared/popup-modal/popup-modal.component.ts new file mode 100644 index 0000000..b10c29f --- /dev/null +++ b/src/app/components/shared/popup-modal/popup-modal.component.ts @@ -0,0 +1,69 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, Input } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { DEFAULT_POPUP_OBJECT } from 'src/app/shared/utils/constants'; +import { DataService } from 'src/app/shared/web_sockets/ws-config'; + +@Component({ + selector: 'app-popup-modal', + templateUrl: './popup-modal.component.html', + styleUrls: ['./popup-modal.component.scss'] +}) +export class PopupModalComponent { + @Input() popupId!: string; + @Input() header!: string; + @Input() subHeader!: string; + @Input() buttons!: any; + @Input() inputItems!: any; + @Input() messageId!: any; + fileName: any = ''; + file?: File; + + constructor(public sharedAPI: SharedAPI, private dataService: DataService) { + this.fileName = ''; + + } + + cancel(event: any) { + const closeIcon = event.target.className; + if (closeIcon.includes('p-dialog-header-close-icon')) { + this.sharedAPI.setShowCustomPopup(''); + this.sharedAPI.setCustomPopupData(DEFAULT_POPUP_OBJECT); + /* eslint-disable @typescript-eslint/naming-convention */ + const promptResponse = { + 'type': 'prompt_response', 'payload': + { 'response': ' ', 'status_code': -1, 'message_id': this.messageId } + }; + /* eslint-enable @typescript-eslint/naming-convention */ + this.dataService.send(promptResponse); + } + } + onUpload(event: any) { + this.file = event.target.files.item(0); + this.fileName = this.file?.name; + } + checkInput(data: any) { + if (this.fileName !== '' && this.popupId === 'FILE_UPLOAD_' + this.messageId) { + return false; + } else if (data && data[0].value || this.popupId === 'ABORT') { + return false; + } else { + return true; + } + } +} diff --git a/src/app/components/test/create-new-test-run/create-new-test-run.component.html b/src/app/components/test/create-new-test-run/create-new-test-run.component.html new file mode 100644 index 0000000..4f69ac1 --- /dev/null +++ b/src/app/components/test/create-new-test-run/create-new-test-run.component.html @@ -0,0 +1,33 @@ + +
+
+ +

Create New Test Run

+
+
+
+ +

Import Test Run

+ +
+
+ Importing Test Runs... +

Importing Test Runs...

+
+
diff --git a/src/app/components/test/create-new-test-run/create-new-test-run.component.scss b/src/app/components/test/create-new-test-run/create-new-test-run.component.scss new file mode 100644 index 0000000..f7e8d2d --- /dev/null +++ b/src/app/components/test/create-new-test-run/create-new-test-run.component.scss @@ -0,0 +1,35 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; + +:host ::ng-deep { + .new-project-main { + height: calc(100vh - 150px); + user-select: none; + cursor: pointer; + color: $lightBlack; + + i { + font-size: 90px; + padding-bottom: 15px; + } + .create-new-project-label { + font-family: "Roboto-Regular"; + font-size: 38px; + } + } +} diff --git a/src/app/components/test/create-new-test-run/create-new-test-run.component.ts b/src/app/components/test/create-new-test-run/create-new-test-run.component.ts new file mode 100644 index 0000000..e90838c --- /dev/null +++ b/src/app/components/test/create-new-test-run/create-new-test-run.component.ts @@ -0,0 +1,79 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +import { TestSandbox } from '../test.sandbox'; + +@Component({ + selector: 'app-create-new-test-run', + templateUrl: './create-new-test-run.component.html', + styleUrls: ['./create-new-test-run.component.scss'] +}) +export class CreateNewTestRunComponent { + isImportingTestRuns = false; + + constructor(public sharedAPI: SharedAPI, + private testRunAPI: TestRunAPI, + public sharedService: SharedService, + public testSandbox: TestSandbox) { } + + createNewProject() { + this.sharedAPI.setIsProjectTypeSelected(1); + } + + importTestRun(event: any) { + const projectId = this.sharedAPI.getSelectedProjectType().id; + const totalFiles = event.target.files.length; + let processedFilesCount = 0; + this.isImportingTestRuns = true; + + for (let i = 0; i < totalFiles; i++) { + const file: File = event.target.files.item(i); + if (file.type === 'application/json') { + this.testRunAPI.importTestRun(file, projectId).subscribe(() => { + processedFilesCount++; + if (processedFilesCount === totalFiles) { + this.testSandbox.setTestScreen(2); + this.testSandbox.getTestExecutionResults(projectId); + this.sharedService.setToastAndNotification({ + status: 'success', + summary: 'Success!', + message: 'File(s) imported successfully' + }); + this.isImportingTestRuns = false; + } + }, () => { + this.sharedService.setToastAndNotification({ + status: 'error', + summary: 'Error!', + message: 'Something went wrong importing the test run execution file' + }); + this.isImportingTestRuns = false; + }); + } else { + this.sharedService.setToastAndNotification({ + status: 'error', + summary: 'Error!', + message: 'Invalid test run execution file' + }); + this.isImportingTestRuns = false; + } + } + } +} diff --git a/src/app/components/test/test-case-category/test-case-category.component.html b/src/app/components/test/test-case-category/test-case-category.component.html new file mode 100644 index 0000000..0591e3b --- /dev/null +++ b/src/app/components/test/test-case-category/test-case-category.component.html @@ -0,0 +1,20 @@ + +
+ + +
diff --git a/src/app/components/test/test-case-category/test-case-category.component.scss b/src/app/components/test/test-case-category/test-case-category.component.scss new file mode 100644 index 0000000..3209f42 --- /dev/null +++ b/src/app/components/test/test-case-category/test-case-category.component.scss @@ -0,0 +1,29 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +:host ::ng-deep { + p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus { + outline: unset; + outline-offset: 0; + box-shadow: unset; + } + .app-test-cases { + position: relative; + } + .tabview-custom { + font-size: 14px; + } +} diff --git a/src/app/components/test/test-case-category/test-case-category.component.ts b/src/app/components/test/test-case-category/test-case-category.component.ts new file mode 100644 index 0000000..c630645 --- /dev/null +++ b/src/app/components/test/test-case-category/test-case-category.component.ts @@ -0,0 +1,24 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-test-case-category', + templateUrl: './test-case-category.component.html', + styleUrls: ['./test-case-category.component.scss'] +}) +export class TestCaseCategoryComponent { } diff --git a/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.html b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.html new file mode 100644 index 0000000..933f5c7 --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.html @@ -0,0 +1,54 @@ + +
+
+ + + +
+ + + {{selectedCategories[this.testSandbox.getCurrentTestCategory()][this.testSandbox.getLastChecked()].length | + number:'2.0'}} + + +
+ +
+ +
+
+ + + +
+ + + + +
+
+
diff --git a/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.scss b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.scss new file mode 100644 index 0000000..b3d6cdc --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.scss @@ -0,0 +1,42 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +:host ::ng-deep { + .test-name { + border-bottom-right-radius: 4px; + } + .test-name-master{ + border-top-right-radius: 4px; + } + .span-input-number { + margin: auto 10px 0; + .p-inputnumber-input { + width: 35px; + } + .p-inputnumber { + height: 22.5px; + } + .p-inputnumber-button { + width: 20px; + } + } + .label-text { + user-select: none; + } + .d-none { + display: none !important; + } +} diff --git a/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.spec.ts b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.spec.ts new file mode 100644 index 0000000..e529bfd --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.spec.ts @@ -0,0 +1,232 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { TestBed } from '@angular/core/testing'; +import { TestSandbox } from '../../../test.sandbox'; +import { TestCasesListComponent } from './test-cases-list.component'; + +class MockTestSandbox { + getCurrentTestCategory() { + return 0; + } + getLastChecked() { + return 0; + } + setSelectedChild() { + + } + getRunTestCaseData() { + return test_cases; + } +} +describe('TestCasesListComponent', () => { + let component: TestCasesListComponent, testSandbox; + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + TestCasesListComponent, + { provide: TestSandbox, useClass: MockTestSandbox } + ] + }).compileComponents(); + component = TestBed.inject(TestCasesListComponent); + testSandbox = TestBed.inject(TestSandbox); + }); + it('should be a component', () => { + expect(component).toBeTruthy(); + }); + it('check and unchecks master checkbox', () => { + component.isMasterChecked(); + expect(component.masterCheckBox).toBeFalse(); + component.selectedCategories[0][0] = test_cases[0][0].children; + component.isMasterChecked(); + expect(component.masterCheckBox).toBeTrue(); + }); + + it('checks selected children', () => { + expect(component.childrenSelected('0', '0_0')).toBeFalse(); + component.selectedCategories[0][0] = test_cases[0][0].children; + expect(component.childrenSelected('0', '0_0')).toBeTrue(); + }); + + it('checks partially selected', () => { + expect(component.isPartiallySelected(0)).toBeFalse(); + component.selectedCategories[0][0] = [{ name: 'test' }]; + expect(component.isPartiallySelected(0)).toBeTrue(); + }); +}); + + +const test_cases = [ + [ + { + 'public_id': 'ChipToolPoCSuite', + 'version': '0.0.1', + 'title': 'This is a Proof of Concept of running chip-tool tests', + 'description': '', + 'key': 0, + 'children': [ + { + 'public_id': 'TC_BI_1_1', + 'version': '0.0.1', + 'title': '12.1.1. [TC-BI-1.1] Global attributes with server as DUT', + 'description': 'TC_BI_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_0' + }, + { + 'public_id': 'TC_CC_3_4', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-3.1 to 3.3 and 4.1 to 4.4] Color Hue and Saturation Controls', + 'description': 'TC_CC_3_4', + 'count': 1, + 'parentKey': 0, + 'key': '0_1' + }, + { + 'public_id': 'TC_CC_5', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-5.1 to 5.3] Color XY Controls', + 'description': 'TC_CC_5', + 'count': 1, + 'parentKey': 0, + 'key': '0_2' + }, + { + 'public_id': 'TC_CC_6', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-6.1 to 6.3] Color Temperature Controls', + 'description': 'TC_CC_6', + 'count': 1, + 'parentKey': 0, + 'key': '0_3' + }, + { + 'public_id': 'TC_CC_7', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-7.1 to 7.4] Enhanced Color Controls', + 'description': 'TC_CC_7', + 'count': 1, + 'parentKey': 0, + 'key': '0_4' + }, + { + 'public_id': 'TC_CC_8', + 'version': '0.0.1', + 'title': '. [TC-CC-8] Color Loop Controls', + 'description': 'TC_CC_8', + 'count': 1, + 'parentKey': 0, + 'key': '0_5' + }, + { + 'public_id': 'TC_DM_1_1', + 'version': '0.0.1', + 'title': '10.1.1. [TC-DM-1.1] Basic Cluster Server Attributes', + 'description': 'TC_DM_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_6' + }, + { + 'public_id': 'TC_DM_3_1', + 'version': '0.0.1', + 'title': '10.3.1. [TC-DM-3.1] Network Commissioning Attributes', + 'description': 'TC_DM_3_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_7' + }, + { + 'public_id': 'TC_FLW_1_1', + 'version': '0.0.1', + 'title': '27.1.1. [TC-FLW-1.1] Global attributes with server as DUT', + 'description': 'TC_FLW_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_8' + }, + { + 'public_id': 'TC_OCC_1_1', + 'version': '0.0.1', + 'title': '24.1.1. [TC-OCC-1.1] Global attributes with server as DUT', + 'description': 'TC_OCC_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_9' + }, + { + 'public_id': 'TC_OO_1_1', + 'version': '0.0.1', + 'title': '3.1.1. [TC-OO-1] Global attributes with server as DUT', + 'description': 'TC_OO_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_10' + }, + { + 'public_id': 'TC_OO_2_1', + 'version': '0.0.1', + 'title': '3.2.1. [TC-OO-2] Attributes with server as DUT', + 'description': 'TC_OO_2_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_11' + }, + { + 'public_id': 'TC_OO_2_2', + 'version': '0.0.1', + 'title': '3.2.2. [TC-OO-3] Primary functionality with server as DUT', + 'description': 'TC_OO_2_2', + 'count': 1, + 'parentKey': 0, + 'key': '0_12' + }, + { + 'public_id': 'TC_TM_1_1', + 'version': '0.0.1', + 'title': '6.1.1. [TC-TM-1.1] Global attributes with server as DUT', + 'description': 'TC_TM_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_13' + }, + { + 'public_id': 'TC_WNCV_1_1', + 'version': '0.0.1', + 'title': 'Window Covering [TC-WNCV-1.1] Global attributes with server as DUT', + 'description': 'TC_WNCV_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_14' + }, + { + 'public_id': 'TC_WNCV_2_1', + 'version': '0.0.1', + 'title': 'Window Covering [TC-WNCV-2.1] Attributes with server as DUT', + 'description': 'TC_WNCV_2_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_15' + } + ] + } + ], + [] +]; diff --git a/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.ts b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.ts new file mode 100644 index 0000000..8beabff --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases-list/test-cases-list.component.ts @@ -0,0 +1,150 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, DoCheck } from '@angular/core'; +import * as _ from 'lodash'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { TestRunStore } from 'src/app/store/test-run-store'; +import { TestSandbox } from '../../../test.sandbox'; + +@Component({ + selector: 'app-test-cases-list', + templateUrl: './test-cases-list.component.html', + styleUrls: ['./test-cases-list.component.scss'] +}) +export class TestCasesListComponent implements DoCheck { + selectedCategories: any[] = []; + masterCheckBox = false; + lastChanges = true; + constructor(public testSandbox: TestSandbox, public testRunStore: TestRunStore, + public testRunAPI: TestRunAPI, public sharedAPI: SharedAPI) { + // defines number of index(test-cases) + this.testSandbox.getRunTestCaseData().forEach((category: any, categoryIndex: any) => { + this.selectedCategories[categoryIndex] = []; + this.testSandbox.getRunTestCaseData()[categoryIndex].forEach((testSuit: any, testSuitIndex: any) => { + this.selectedCategories[categoryIndex][testSuitIndex] = []; + }); + }); + } + // it is a hook, get triggered when value changes + ngDoCheck() { + if (this.lastChanges !== this.testSandbox.getOnClickChanges()) { + for (let index = 0; index < this.runTestCaseData().length; index++) { + if (this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][index]) { + if (this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][index].children.length === + this.runTestCaseData()[index].children.length) { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][index] = + this.runTestCaseData()[index].children; + } + } else { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][index] = []; + } + } + this.lastChanges = this.testSandbox.getOnClickChanges(); + } + if (this.runTestCaseData().length !== 0 && this.runTestCaseData()[this.testSandbox.getLastChecked()].children.length === + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][this.testSandbox.getLastChecked()].length) { + this.masterCheckBox = true; + } else { + this.masterCheckBox = false; + } + if (this.testSandbox.getDetectPicsChanges()[this.testSandbox.getCurrentTestCategory()] === true) { + setTimeout(() => this.checkPicsData(), 200); + } + } + // check and uncheck mastercheckbox + checkAndUncheckAll() { + if (this.runTestCaseData()[this.testSandbox.getLastChecked()].children.length === + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][this.testSandbox.getLastChecked()].length) { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][this.testSandbox.getLastChecked()] = []; + this.masterCheckBox = false; + } else { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][this.testSandbox.getLastChecked()] = + this.runTestCaseData()[this.testSandbox.getLastChecked()].children; + this.masterCheckBox = true; + } + this.onSelectedChildren(); + } + // checks selected test-cases length,for mastercheck box + isMasterChecked() { + if (this.runTestCaseData()[this.testSandbox.getLastChecked()].children.length === + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][this.testSandbox.getLastChecked()].length) { + this.masterCheckBox = true; + } else { + this.masterCheckBox = false; + } + this.onSelectedChildren(); + } + // set's selectedChildren to mobx + onSelectedChildren() { + this.testSandbox.setSelectedChild( + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][this.testSandbox.getLastChecked()]); + } + // checks selected children + childrenSelected(parent: any, child: any) { + let checkKey = -1; + if (this.selectedCategories[this.testSandbox.getCurrentTestCategory()][parent]) { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][parent].forEach((data: any) => { + if (data.key === child) { + checkKey = 1; + } + }); + } + if (checkKey === 1) { + return true; + } else { + return false; + } + } + // set's current clicked test-cases + onClickChanges() { + this.onSelectedChildren(); + this.testSandbox.setOnClickChanges(); + } + // checks all test-cases are selected + isPartiallySelected(currentIndex: any) { + if (this.runTestCaseData().length !== 0 && + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][currentIndex].length > 0 && + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][currentIndex].length < + this.runTestCaseData()[currentIndex].children.length) { + return true; + } else { + return false; + } + } + // get current test case data + runTestCaseData() { + return this.testSandbox.getRunTestCaseData()[this.testSandbox.getCurrentTestCategory()]; + } + checkPicsData() { + const detectPicsData = _.cloneDeep(this.testSandbox.getDetectPicsChanges()); + for (let index = 0; index < this.runTestCaseData().length; index++) { + if (this.getSelectedTestCases()[index]) { + const selectedPics = this.getSelectedTestCases()[index].children.map((data: any) => + this.runTestCaseData()[index].children[data.picsKey] + ); + this.selectedCategories[this.testSandbox.getCurrentTestCategory()][index] = selectedPics; + } + } + detectPicsData[this.testSandbox.getCurrentTestCategory()] = false; + this.testSandbox.setDetectPicsChanges(detectPicsData); + } + getSelectedTestCases() { + return this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()]; + } +} + diff --git a/src/app/components/test/test-case-category/test-cases/test-cases.component.html b/src/app/components/test/test-case-category/test-cases/test-cases.component.html new file mode 100644 index 0000000..2681bac --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases.component.html @@ -0,0 +1,40 @@ + +
+

Test Cases

+ + + + + + + + + + + + {{category}} + + +
+ + +
+
+
+
diff --git a/src/app/components/test/test-case-category/test-cases/test-cases.component.scss b/src/app/components/test/test-case-category/test-cases/test-cases.component.scss new file mode 100644 index 0000000..983011a --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases.component.scss @@ -0,0 +1,134 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +:host ::ng-deep { + .search-test-case { + position: absolute; + right: 0; + top: 53px; + input { + width: 11vw ; + } + } + .p-tabview-panels { + padding: 1rem 0; + } + .test-name { + display: flex; + flex-direction: column; + gap: 1px; + height: calc(100vh - 495px); + overflow-y: auto; + border: solid 1px #dee2e6; + background-color: #fff; + position: relative; + padding-bottom: 10px; + } + .test-name-master { + background-color: #f8f9fa; + height: 45px; + display: flex; + border: solid 1px #dee2e6; + + .master-text { + margin-bottom: 15px; + } + } + .test-name-checkbox { + margin: 15px 15px 0; + } + .master-label { + margin-top: 14px; + font-weight: bold; + font-size: 14px; + } + .custom-icon { + .p-checkbox .p-checkbox-box { + border-color: #2196f3; + background: #2196f3; + .p-checkbox-icon { + margin-bottom: 4px; + font-size: larger; + } + .p-checkbox-icon::before { + content: "\2212"; + font-weight: bolder; + } + } + } + .label-text { + font-size: 14px; + } + .test-case-view { + height: 100%; + .sub-heading { + margin: 30px 1px 0 1px; + } + .scroll-test { + color: black; + background: #238f83; + /* width: fit-content; */ + /* height: 26px; */ + padding: 11px 0; + position: absolute; + + } + .pi-angle-right { + right: 23%; + top: 62px; + z-index: 9999; + } + .pi-angle-left { + position: absolute; + top: 64px; + z-index: 9999; + } + } + .testcase-custom-view { + font-size: 14px; + ul { + width: 77%; + /* line-break: anywhere; */ + /* white-space: nowrap; */ + display: flex; + flex-direction: row; + flex-wrap: nowrap; + overflow-x: auto; + height: 58px; + border: none; + } + .parent-test-cases { + ::-webkit-scrollbar { + display: block !important; + } + } + ::-webkit-scrollbar { + display: none; + } + } + .testcase-custom-view, + .p-tabview-panel, + .parent-test-cases { + height: 100%; + } + .p-tabview-panels { + height: 88%; + } + .isDisabled { + pointer-events: none; + opacity: 0.59; + } +} diff --git a/src/app/components/test/test-case-category/test-cases/test-cases.component.spec.ts b/src/app/components/test/test-case-category/test-cases/test-cases.component.spec.ts new file mode 100644 index 0000000..32a7ce3 --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases.component.spec.ts @@ -0,0 +1,154 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { TestSandbox } from '../../test.sandbox'; +import { TestCasesComponent } from './test-cases.component'; + +let updatedFilteredData: any = []; + +class MockTestSandbox { + getTestSuiteCategory() { + return []; + } + getRunTestCaseData() { + return getRunTestCases(); + } + setFilteredData(data: any) { + updatedFilteredData = data; + } + setTestCaseQuery(data: any) { } +}; + +describe('TestCasesComponent', () => { + let component: TestCasesComponent; + let fixture: ComponentFixture; + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [TestCasesComponent], + providers: [ + { provide: TestSandbox, useClass: MockTestSandbox } + ] + }).compileComponents(); + }); + beforeEach(() => { + fixture = TestBed.createComponent(TestCasesComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('check onTestSearch', () => { + expect(component.searchQuery).toBe(''); + component.searchQuery = 'tc_d'; + expect(component.searchQuery).toBe('tc_d'); + component.onTestSearch(); + expect(updatedFilteredData).toEqual(getUpdatedFilteredData()); + }); +}); + + +// Configuration: this function returns filtered testCaseData +function getRunTestCases() { + return [ + [ + { + 'public_id': 'FirstChipToolSuite', + 'version': '0.0.1', + 'title': 'Test Suite run with chip-tool tests', + 'description': '', + 'key': 0, + 'children': [ + { + 'public_id': 'TC_BI_1_1', + 'version': '0.0.1', + 'title': '12.1.1. [TC-BI-1.1] Global attributes with server as DUT', + 'description': 'TC_BI_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_0', + }, + { + 'public_id': 'TC_DM_1_1', + 'version': '0.0.1', + 'title': '10.1.1. [TC-DM-1.1] Basic Cluster Server Attributes', + 'description': 'TC_DM_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_6', + }, + { + 'public_id': 'TC_DM_3_1', + 'version': '0.0.1', + 'title': '10.3.1. [TC-DM-3.1] Network Commissioning Attributes', + 'description': 'TC_DM_3_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_7', + } + ] + } + ] + ]; +} + +function getUpdatedFilteredData() { + return [ + [ + { + 'public_id': 'FirstChipToolSuite', + 'version': '0.0.1', + 'title': 'Test Suite run with chip-tool tests', + 'description': '', + 'key': 0, + 'children': [ + { + 'public_id': 'TC_BI_1_1', + 'version': '0.0.1', + 'title': '12.1.1. [TC-BI-1.1] Global attributes with server as DUT', + 'description': 'TC_BI_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_0', + 'filtered': false + }, + { + 'public_id': 'TC_DM_1_1', + 'version': '0.0.1', + 'title': '10.1.1. [TC-DM-1.1] Basic Cluster Server Attributes', + 'description': 'TC_DM_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_6', + 'filtered': true + }, + { + 'public_id': 'TC_DM_3_1', + 'version': '0.0.1', + 'title': '10.3.1. [TC-DM-3.1] Network Commissioning Attributes', + 'description': 'TC_DM_3_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_7', + 'filtered': true + } + ] + } + ] + ]; +} diff --git a/src/app/components/test/test-case-category/test-cases/test-cases.component.ts b/src/app/components/test/test-case-category/test-cases/test-cases.component.ts new file mode 100644 index 0000000..5ab44a1 --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-cases.component.ts @@ -0,0 +1,91 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, OnDestroy } from '@angular/core'; +import { TestSandbox } from '../../test.sandbox'; + +@Component({ + selector: 'app-test-cases', + templateUrl: './test-cases.component.html', + styleUrls: ['./test-cases.component.scss'] +}) +export class TestCasesComponent implements OnDestroy { + searchQuery: any = ''; + constructor(public testSandbox: TestSandbox) { + this.onTestSearch(); + } + // to find the number of selectedtestcases + getSelectedTestCase(index: number) { + let count = 0; + this.testSandbox.getSelectedData()[index].forEach((data: any, dataIndex: number) => { + if (data && data.children.length === this.testSandbox.getRunTestCaseData()[index][dataIndex].children.length) { + count++; + } + }); + return count; + } + // to set the current test category tab + testCategoryClicked(category: any) { + this.testSandbox.setCurrentTestCategory(category); + } + // search + onTestSearch() { + const filteredData = this.testSandbox.getRunTestCaseData(); + this.searchQuery = (this.searchQuery).toLowerCase(); + this.testSandbox.getRunTestCaseData().forEach((data: any, index: any) => { + data.forEach((testSuite: any, testSuiteIndex: any) => { + testSuite.children.forEach((testCase: any, testCaseIndex: any) => { + const title = testCase.title.toLowerCase(); + filteredData[index][testSuiteIndex].children[testCaseIndex]['filtered'] = false; + if (title.includes(this.searchQuery)) { + filteredData[index][testSuiteIndex].children[testCaseIndex]['filtered'] = true; + } + }); + + }); + }); + this.testSandbox.setTestCaseQuery(this.searchQuery); + this.testSandbox.setFilteredData(filteredData); + } + + scrollNavbar(data: any) { + const ele = document.querySelector('.testcase-custom-view ul'); + + if (ele && data === 'R') { + ele.scrollLeft += 20; + } else if (ele && data === 'L') { + ele.scrollLeft -= 20; + } + } + isNavbar(data: any) { + const ele = document.querySelector('.testcase-custom-view ul'); + let isScroll = false; + + if (ele?.scrollLeft === 0 && data === 'RC') { + ele.scrollLeft += 1; + if (ele.scrollLeft > 0) { + ele.scrollLeft = 0; + isScroll = true; + } + } else if (ele && ele.scrollLeft > 0) { + isScroll = true; + } + return isScroll; + } + ngOnDestroy() { + this.testSandbox.setCurrentTestCategory(0); + } +} diff --git a/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.html b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.html new file mode 100644 index 0000000..3b66e29 --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.html @@ -0,0 +1,55 @@ + +
+
+ + + +
+ {{selectedCategories[this.testSandbox.getCurrentTestCategory()].length | number:'2.0'}} +
+ +
+ +
+
+ + + +
+ + {{this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][+category.key].children.length + | number:'2.0'}} + +
+
+
+

No Test Cases Available

+
+
diff --git a/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.scss b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.scss new file mode 100644 index 0000000..97c27de --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.scss @@ -0,0 +1,39 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +:host ::ng-deep { + .test-name { + border-bottom-left-radius: 4px; + } + .current-element { + background-color: #e9ecef; + } + .div-test-name-checkbox { + .test-name-checkbox { + margin: 0px 15px 0; + padding: 9px 0; + } + } + .test-name { + gap: unset; + } + .test-name-master { + border-top-left-radius: 4px; + } + .no-test-available { + height: 100%; + } +} diff --git a/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.spec.ts b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.spec.ts new file mode 100644 index 0000000..c580f13 --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.spec.ts @@ -0,0 +1,259 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable @typescript-eslint/naming-convention */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +import { TestBed } from '@angular/core/testing'; +import { TestSandbox } from '../../../test.sandbox'; +import { TestSuitesListComponent } from './test-suites-list.component'; + +class MockTestSandbox { + getCurrentTestCategory() { + return 0; + } + getRunTestCaseData() { + return test_cases; + } + setDefaultSelectedData() { } + setSelectedData() { } + getSelectedData() { + return Selected_test_cases; + } +} + +describe('TestSuitesListComponent', () => { + let component: TestSuitesListComponent, testSandbox; + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + TestSuitesListComponent, + { provide: TestSandbox, useClass: MockTestSandbox } + ] + }).compileComponents(); + component = TestBed.inject(TestSuitesListComponent); + testSandbox = TestBed.inject(TestSandbox); + }); + it('check and uncheck mastercheckbox', () => { + component.checkAndUncheckAll(); + expect(component.masterCheckBox).toBeTrue(); + component.checkAndUncheckAll(); + expect(component.masterCheckBox).toBeFalse(); + }); + it('checks selected children length', () => { + Selected_test_cases = test_cases; + expect(component.checkCurrentChildLength(0)).toBeFalse(); + Selected_test_cases = partically_selected; + expect(component.checkCurrentChildLength(0)).toBeTrue(); + }); + it('checks all test-suites are selected', () => { + Selected_test_cases = test_cases; + expect(component.isPartiallySelected()).toBeFalse(); + Selected_test_cases = partically_selected; + expect(component.isPartiallySelected()).toBeTrue(); + }); + + it('checks is parent selected', () => { + component.selectedCategories = test_cases; + expect(component.isParentSelected(0)).toBeTrue(); + expect(component.isParentSelected(2)).toBeFalse(); + }); +}); + +let Selected_test_cases: any; +// test case data +const test_cases = [ + [ + { + 'public_id': 'ChipToolPoCSuite', + 'version': '0.0.1', + 'title': 'This is a Proof of Concept of running chip-tool tests', + 'description': '', + 'key': 0, + 'children': [ + { + 'public_id': 'TC_BI_1_1', + 'version': '0.0.1', + 'title': '12.1.1. [TC-BI-1.1] Global attributes with server as DUT', + 'description': 'TC_BI_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_0' + }, + { + 'public_id': 'TC_CC_3_4', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-3.1 to 3.3 and 4.1 to 4.4] Color Hue and Saturation Controls', + 'description': 'TC_CC_3_4', + 'count': 1, + 'parentKey': 0, + 'key': '0_1' + }, + { + 'public_id': 'TC_CC_5', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-5.1 to 5.3] Color XY Controls', + 'description': 'TC_CC_5', + 'count': 1, + 'parentKey': 0, + 'key': '0_2' + }, + { + 'public_id': 'TC_CC_6', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-6.1 to 6.3] Color Temperature Controls', + 'description': 'TC_CC_6', + 'count': 1, + 'parentKey': 0, + 'key': '0_3' + }, + { + 'public_id': 'TC_CC_7', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-7.1 to 7.4] Enhanced Color Controls', + 'description': 'TC_CC_7', + 'count': 1, + 'parentKey': 0, + 'key': '0_4' + }, + { + 'public_id': 'TC_CC_8', + 'version': '0.0.1', + 'title': '. [TC-CC-8] Color Loop Controls', + 'description': 'TC_CC_8', + 'count': 1, + 'parentKey': 0, + 'key': '0_5' + }, + { + 'public_id': 'TC_DM_1_1', + 'version': '0.0.1', + 'title': '10.1.1. [TC-DM-1.1] Basic Cluster Server Attributes', + 'description': 'TC_DM_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_6' + }, + { + 'public_id': 'TC_DM_3_1', + 'version': '0.0.1', + 'title': '10.3.1. [TC-DM-3.1] Network Commissioning Attributes', + 'description': 'TC_DM_3_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_7' + }, + { + 'public_id': 'TC_FLW_1_1', + 'version': '0.0.1', + 'title': '27.1.1. [TC-FLW-1.1] Global attributes with server as DUT', + 'description': 'TC_FLW_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_8' + }, + { + 'public_id': 'TC_OCC_1_1', + 'version': '0.0.1', + 'title': '24.1.1. [TC-OCC-1.1] Global attributes with server as DUT', + 'description': 'TC_OCC_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_9' + }, + { + 'public_id': 'TC_OO_1_1', + 'version': '0.0.1', + 'title': '3.1.1. [TC-OO-1] Global attributes with server as DUT', + 'description': 'TC_OO_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_10' + }, + { + 'public_id': 'TC_OO_2_1', + 'version': '0.0.1', + 'title': '3.2.1. [TC-OO-2] Attributes with server as DUT', + 'description': 'TC_OO_2_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_11' + }, + { + 'public_id': 'TC_OO_2_2', + 'version': '0.0.1', + 'title': '3.2.2. [TC-OO-3] Primary functionality with server as DUT', + 'description': 'TC_OO_2_2', + 'count': 1, + 'parentKey': 0, + 'key': '0_12' + }, + { + 'public_id': 'TC_TM_1_1', + 'version': '0.0.1', + 'title': '6.1.1. [TC-TM-1.1] Global attributes with server as DUT', + 'description': 'TC_TM_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_13' + }, + { + 'public_id': 'TC_WNCV_1_1', + 'version': '0.0.1', + 'title': 'Window Covering [TC-WNCV-1.1] Global attributes with server as DUT', + 'description': 'TC_WNCV_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_14' + }, + { + 'public_id': 'TC_WNCV_2_1', + 'version': '0.0.1', + 'title': 'Window Covering [TC-WNCV-2.1] Attributes with server as DUT', + 'description': 'TC_WNCV_2_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_15' + } + ] + } + ], + [] +]; +// partically selected test cases +const partically_selected = [ + [ + { + 'public_id': 'ChipToolPoCSuite', + 'version': '0.0.1', + 'title': 'This is a Proof of Concept of running chip-tool tests', + 'description': '', + 'key': 0, + 'children': [ + { + 'public_id': 'TC_BI_1_1', + 'version': '0.0.1', + 'title': '12.1.1. [TC-BI-1.1] Global attributes with server as DUT', + 'description': 'TC_BI_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_0' + } + ] + } + ], + [] +]; diff --git a/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.ts b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.ts new file mode 100644 index 0000000..0d97cea --- /dev/null +++ b/src/app/components/test/test-case-category/test-cases/test-suites-list/test-suites-list.component.ts @@ -0,0 +1,150 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, DoCheck } from '@angular/core'; +import { TestSandbox } from '../../../test.sandbox'; + +@Component({ + selector: 'app-test-suites-list', + templateUrl: './test-suites-list.component.html', + styleUrls: ['./test-suites-list.component.scss'] +}) +export class TestSuitesListComponent implements DoCheck { + selectedCategories: any[] = []; + masterCheckBox = false; + lastChanges = true; + categoryChanges = -1; + constructor(public testSandbox: TestSandbox) { + // defines number of index(test-suites) + for (let index = 0; index < this.testSandbox.getRunTestCaseData().length; index++) { + this.selectedCategories[index] = []; + } + this.testSandbox.setDefaultSelectedData(this.selectedCategories); + + } + // it is a hook, get triggered when value changes + ngDoCheck() { + if (this.lastChanges !== this.testSandbox.getOnClickChanges()) { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()] = []; + for (let index = 0; index < this.runTestCaseData().length; index++) { + if (this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][index] && + this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][index].children.length === + this.runTestCaseData()[index].children.length) { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()] = + [...this.selectedCategories[this.testSandbox.getCurrentTestCategory()], this.runTestCaseData()[index]]; + } + } + this.onDataChanges(); + } + if (this.categoryChanges !== this.testSandbox.getCurrentTestCategory()) { + this.onDataChanges(); + } + this.categoryChanges = this.testSandbox.getCurrentTestCategory(); + this.lastChanges = this.testSandbox.getOnClickChanges(); + } + // checks selected test-suites length,for mastercheck box + onDataChanges() { + if (this.runTestCaseData().length === this.selectedCategories[this.testSandbox.getCurrentTestCategory()].length && + this.runTestCaseData().length !== 0) { + this.masterCheckBox = true; + } else { + this.masterCheckBox = false; + } + } + // check and uncheck mastercheckbox + checkAndUncheckAll() { + if (this.runTestCaseData().length === this.selectedCategories[this.testSandbox.getCurrentTestCategory()].length) { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()] = []; + this.masterCheckBox = false; + this.setSelectedItems(-2); + } else { + this.selectedCategories[this.testSandbox.getCurrentTestCategory()] = this.runTestCaseData(); + this.masterCheckBox = true; + this.setSelectedItems(-1); + } + } + // checks selected test-suites length,for mastercheck box + isMasterChecked(selectedKey: any) { + if (this.runTestCaseData().length === + this.selectedCategories[this.testSandbox.getCurrentTestCategory()].length) { + this.masterCheckBox = true; + } else { + this.masterCheckBox = false; + } + this.setSelectedItems(selectedKey); + } + // set's current clicked test-suites + currentElement(lastChecked: string) { + this.testSandbox.setLastChecked(lastChecked); + this.testSandbox.setOnClickChanges(); + } + setSelectedItems(selectedKey: any) { + this.testSandbox.setSelectedData(selectedKey); + } + // checks selected children length + checkCurrentChildLength(parentKey: any) { + if (this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][parentKey] !== undefined && + this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][parentKey] !== null) { + if (this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][parentKey].children.length > 0 && + this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()][parentKey].children.length < + this.runTestCaseData()[parentKey].children.length) { + return true; + } else { + return false; + } + } else { + return false; + } + } + // checks all test-suites are selected + isPartiallySelected() { + let count = 0, childCount = 0; + this.testSandbox.getSelectedData()[this.testSandbox.getCurrentTestCategory()].forEach((data: any) => { + if (data) { + if (data.children.length === this.runTestCaseData()[data.key].children.length) { + childCount++; + count = 1; + } else { + count = 1; + } + } + }); + if (childCount === this.runTestCaseData().length) { + return false; + } else if (count === 1) { + return true; + } else { + return false; + } + } + runTestCaseData() { + return this.testSandbox.getRunTestCaseData()[this.testSandbox.getCurrentTestCategory()]; + } + // checks is parent selected + isParentSelected(parentKey: any) { + let isParent = 0; + this.selectedCategories[this.testSandbox.getCurrentTestCategory()].forEach((data: any) => { + if (data.key === parentKey) { + isParent = 1; + } + }); + if (isParent) { + return true; + } else { + return false; + } + } +} diff --git a/src/app/components/test/test-case-category/test-summary/test-summary.component.html b/src/app/components/test/test-case-category/test-summary/test-summary.component.html new file mode 100644 index 0000000..08e6eec --- /dev/null +++ b/src/app/components/test/test-case-category/test-summary/test-summary.component.html @@ -0,0 +1,34 @@ + +
+ + + + Summary ({{treeData.length|number:"2.0"}}) + + + + + {{node.label}} ({{node.count|number:'2.0'}}) + + + +

Please Select test cases

+
+
+
diff --git a/src/app/components/test/test-case-category/test-summary/test-summary.component.scss b/src/app/components/test/test-case-category/test-summary/test-summary.component.scss new file mode 100644 index 0000000..87e18ec --- /dev/null +++ b/src/app/components/test/test-case-category/test-summary/test-summary.component.scss @@ -0,0 +1,50 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +:host ::ng-deep { + .tabview-custom, + .p-tabview-panel, + .test-summary { + height: 100%; + } + .test-summary{ + .p-tree { + height: calc(100vh - 450px); + margin-top: 4px; + } +} + .p-tabview-panels { + height: 88%; + } + .p-tree { + overflow-y: auto; + } + .tabview-custom { + font-size: 14px; + margin-top: 50px; + } + .no-data { + font-weight: 600; + font-size: 18px; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + } + .p-treenode-label { + width: 100%; + } +} diff --git a/src/app/components/test/test-case-category/test-summary/test-summary.component.ts b/src/app/components/test/test-case-category/test-summary/test-summary.component.ts new file mode 100644 index 0000000..227bc83 --- /dev/null +++ b/src/app/components/test/test-case-category/test-summary/test-summary.component.ts @@ -0,0 +1,36 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, DoCheck, OnDestroy } from '@angular/core'; +import { TreeNode } from 'primeng/api'; +import { TestSummarySandbox } from './test-summary.sandbox'; +@Component({ + selector: 'app-test-summary', + templateUrl: './test-summary.component.html', + styleUrls: ['./test-summary.component.scss'] +}) +export class TestSummaryComponent implements DoCheck { + treeData: TreeNode[] = []; + lastChanges = true; + constructor(public testSummary: TestSummarySandbox) { } + // it is a hook, get triggered when value changes + ngDoCheck() { + if (this.lastChanges !== this.testSummary.getOnClickChanges()) { + this.treeData = this.testSummary.selectedDataSummary(); + } + this.lastChanges = this.testSummary.getOnClickChanges(); + } +} diff --git a/src/app/components/test/test-case-category/test-summary/test-summary.sandbox.spec.ts b/src/app/components/test/test-case-category/test-summary/test-summary.sandbox.spec.ts new file mode 100644 index 0000000..a8817e1 --- /dev/null +++ b/src/app/components/test/test-case-category/test-summary/test-summary.sandbox.spec.ts @@ -0,0 +1,165 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { TestRunStore } from 'src/app/store/test-run-store'; +import { TestSummarySandbox } from './test-summary.sandbox'; + + +class MockTestRunStore { + selectedTestCase: any = getSelectedTestCase(); + testSuiteCategory: any = { test_collections: { chip_tool_tests: {}, sample_tests: {} } }; +}; + +describe('TestSummarySandbox', () => { + let component: TestSummarySandbox; + let fixture: ComponentFixture; + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ + TestSummarySandbox, + { provide: TestRunStore, useClass: MockTestRunStore } + ] + }).compileComponents(); + component = TestBed.inject(TestSummarySandbox); + const dataService = TestBed.inject(TestRunStore); + }); + + it('check selectedDataSummary', () => { + expect(component).toBeTruthy(); + expect(component.selectedDataSummary()).toEqual(formattedTestSummary()); + }); + + it('check selectedDataSummary', () => { + const expectedValue = ['chip_tool_tests', 'sample_tests']; + expect(component.getTestSuiteCategory()).toEqual(expectedValue); + }); +}); + + +// Configuration: It returns selectedTestCase JSON data +function getSelectedTestCase() { + return [ + [ + { + 'public_id': 'FirstChipToolSuite', + 'version': '0.0.1', + 'title': 'Test Suite run with chip-tool tests', + 'description': '', + 'key': 0, + 'children': [ + { + 'public_id': 'TC_BI_1_1', + 'version': '0.0.1', + 'title': '12.1.1. [TC-BI-1.1] Global attributes with server as DUT', + 'description': 'TC_BI_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_0' + }, + { + 'public_id': 'TC_CC_3_4', + 'version': '0.0.1', + 'title': '3.2.15. [TC-CC-3.1 to 3.3 and 4.1 to 4.4] Color Hue and Saturation Controls', + 'description': 'TC_CC_3_4', + 'count': 1, + 'parentKey': 0, + 'key': '0_1' + } + ] + } + ], + [ + { + 'public_id': 'CommissioningSampleTestSuite', + 'version': '1.2.3', + 'title': 'This is Commissioning Test Suite', + 'description': 'This is Commissioning Test Suite', + 'key': 0, + 'children': [ + { + 'public_id': 'TCCSSWifiDeviceCommissioning', + 'version': '1.2.3', + 'title': 'This is Test Case tccss_wifi_device_commissioning', + 'description': 'This Test Case is built to test the wifi device commissioning', + 'count': 1, + 'parentKey': 0, + 'key': '0_0' + } + ] + } + ] + ]; +} + +// Configuration: This is expected format for primeNG tree component used for test-summary +function formattedTestSummary() { + return [ + { + 'label': 'chip_tool_tests', + 'children': [ + { + 'label': 'FirstChipToolSuite', + 'children': [ + { + 'label': 'TC_BI_1_1', + 'count': 1, + 'collapsedIcon': 'icon-folder-open', + 'expandedIcon': 'icon-folder-open' + }, + { + 'label': 'TC_CC_3_4', + 'count': 1, + 'collapsedIcon': 'icon-folder-open', + 'expandedIcon': 'icon-folder-open' + } + ], + 'collapsedIcon': 'icon-folder-open', + 'expandedIcon': 'icon-folder-open', + 'expanded': true + } + ], + 'collapsedIcon': 'icon-folder-open', + 'expandedIcon': 'icon-folder-open', + 'expanded': true + }, + { + 'label': 'sample_tests', + 'children': [ + { + 'label': 'CommissioningSampleTestSuite', + 'children': [ + { + 'label': 'TCCSSWifiDeviceCommissioning', + 'count': 1, + 'collapsedIcon': 'icon-folder-open', + 'expandedIcon': 'icon-folder-open' + } + ], + 'collapsedIcon': 'icon-folder-open', + 'expandedIcon': 'icon-folder-open', + 'expanded': true + } + ], + 'collapsedIcon': 'icon-folder-open', + 'expandedIcon': 'icon-folder-open', + 'expanded': true + } + ]; +} diff --git a/src/app/components/test/test-case-category/test-summary/test-summary.sandbox.ts b/src/app/components/test/test-case-category/test-summary/test-summary.sandbox.ts new file mode 100644 index 0000000..e680049 --- /dev/null +++ b/src/app/components/test/test-case-category/test-summary/test-summary.sandbox.ts @@ -0,0 +1,79 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { TestRunStore } from 'src/app/store/test-run-store'; + +@Injectable() +export class TestSummarySandbox { + summaryData: any = []; + constructor(public testRunStore: TestRunStore) { } + // build's the required json format for p-tree + selectedDataSummary() { + let summaryIndex = 0, summaryParentIndex = 0; + this.summaryData = []; + const selectedData = this.testRunStore.selectedTestCase; + for (let index = 0; index < selectedData.length; index++) { + if (selectedData[index].length > 0 && selectedData[index] && this.checkChildren(selectedData[index])) { + this.summaryData[summaryParentIndex] = { + label: this.getTestSuiteCategory()[index], children: [], + collapsedIcon: 'icon-folder-open', expandedIcon: 'icon-folder-open', expanded: true, + }; + summaryIndex = 0; + for (let selectedNameIndex = 0; selectedNameIndex < selectedData[index].length; selectedNameIndex++) { + if (selectedData[index][selectedNameIndex]) { + this.summaryData[summaryParentIndex]['children'][summaryIndex] = { + label: selectedData[index][selectedNameIndex].title, children: [], + collapsedIcon: 'icon-folder-open', expandedIcon: 'icon-folder-open', expanded: true, + }; + selectedData[index][selectedNameIndex].children.forEach((child: any, childIndex: any) => { + this.summaryData[summaryParentIndex]['children'][summaryIndex]['children'][childIndex] = { + label: child.title, count: child.count, collapsedIcon: 'icon-folder-open', expandedIcon: 'icon-folder-open' + }; + }); + summaryIndex++; + } + } + summaryParentIndex++; + } + } + return this.summaryData; + } + // checks children is valid + checkChildren(selected: any) { + let valid = false; + for (let i = 0; selected.length > i; i++) { + if (selected[i]) { + valid = true; + } + } + return valid; + } + // triggered when clicked on test-suit, test-case + getOnClickChanges() { + return this.testRunStore.onClickChange; + } + // gets the test_collection name + getTestSuiteCategory() { + const testSuite = Object.keys(this.testRunStore.testSuiteCategory.test_collections).map((data) => data); + return testSuite; + } + getTestCaseLength() { + return this.testRunStore.selectedTestCase.length; + } +} + + diff --git a/src/app/components/test/test-details/test-details.component.html b/src/app/components/test/test-details/test-details.component.html new file mode 100644 index 0000000..9eeb024 --- /dev/null +++ b/src/app/components/test/test-details/test-details.component.html @@ -0,0 +1,54 @@ + +
+

Test Details

+
+ +
+
+
+

Test Name

+ +
+ + {{testName ==='' ? 'Test name cannot be empty' : 'Special cases are not allowed'}} + +
+
+
+

Description

+ +
+
+
+ +
+ +
+ +
+ + +
+ Start + + Clear Selection + +
+
+ diff --git a/src/app/components/test/test-details/test-details.component.scss b/src/app/components/test/test-details/test-details.component.scss new file mode 100644 index 0000000..9cc92ce --- /dev/null +++ b/src/app/components/test/test-details/test-details.component.scss @@ -0,0 +1,43 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +:host ::ng-deep { + .test-details, + .app-test-case-component { + height: 100%; + } + .test-name-parent { + position: relative; + } + .test-name-warning { + position: absolute; + bottom: -15px; + color: red; + left: 0px; + } + .test-loader { + display: flex; + height: 100%; + align-items: center; + } + .test-buttons { + display: flex; + gap: 15px; + .clear-test, .start-button { + width: fit-content; + } + } +} diff --git a/src/app/components/test/test-details/test-details.component.spec.ts b/src/app/components/test/test-details/test-details.component.spec.ts new file mode 100644 index 0000000..d3d950a --- /dev/null +++ b/src/app/components/test/test-details/test-details.component.spec.ts @@ -0,0 +1,85 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { TestBed } from '@angular/core/testing'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { TestSandbox } from '../test.sandbox'; +import { TestDetailsComponent } from './test-details.component'; + +class MockTestSandbox { + getSelectedData() { + return selected_tests; + } +} +class MockSharedAPI { } +class MockTestRunAPI { } +class MockSharedService { } + +describe('TestDetailsComponent', () => { + let component: TestDetailsComponent, testSandbox, sharedAPI, testRunAPI, sharedService; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + TestDetailsComponent, + { provide: TestSandbox, useClass: MockTestSandbox }, + { provide: SharedAPI, useClass: MockSharedAPI }, + { provide: TestRunAPI, useClass: MockTestRunAPI }, + { provide: SharedService, useClass: MockSharedService } + ] + }).compileComponents(); + component = TestBed.inject(TestDetailsComponent); + testSandbox = TestBed.inject(TestSandbox); + sharedAPI = TestBed.inject(TestRunAPI); + testRunAPI = TestBed.inject(TestRunAPI); + sharedService = TestBed.inject(SharedService); + }); + it('check isTestCaseSelected', () => { + expect(component.isTestCaseSelected()).toBeFalse(); + selected_tests = []; + expect(component.isTestCaseSelected()).toBeTrue(); + }); +}); + +// selected test cases +let selected_tests = [ + [ + { + 'public_id': 'ChipToolPoCSuite', + 'version': '0.0.1', + 'title': 'This is a Proof of Concept of running chip-tool tests', + 'description': '', + 'key': 0, + 'children': [ + { + 'public_id': 'TC_BI_1_1', + 'version': '0.0.1', + 'title': '12.1.1. [TC-BI-1.1] Global attributes with server as DUT', + 'description': 'TC_BI_1_1', + 'count': 1, + 'parentKey': 0, + 'key': '0_0' + } + ] + } + ], + [] +]; diff --git a/src/app/components/test/test-details/test-details.component.ts b/src/app/components/test/test-details/test-details.component.ts new file mode 100644 index 0000000..ec89fc7 --- /dev/null +++ b/src/app/components/test/test-details/test-details.component.ts @@ -0,0 +1,162 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable indent */ +/* eslint-disable @typescript-eslint/indent */ +import { Component } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { APP_STATE } from 'src/app/shared/utils/constants'; +import { TestSandbox } from '../test.sandbox'; +import { environment } from 'src/environments/environment'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +import { TestRunStore } from 'src/app/store/test-run-store'; +import * as _ from 'lodash'; + +@Component({ + selector: 'app-test-details', + templateUrl: './test-details.component.html', + styleUrls: ['./test-details.component.scss'] +}) +export class TestDetailsComponent { + selectedDataFinal: any = {}; + testName = 'UI_Test_Run'; + description = ''; + allowedCharacter = /[^A-Za-z0-9 _-]/; + constructor(public testSandbox: TestSandbox, public sharedAPI: SharedAPI, + public testRunAPI: TestRunAPI, public sharedService: SharedService, public testRunStore: TestRunStore) { + testRunAPI.getApplicableTestCases(this.sharedAPI.getSelectedProjectType().id, this.setDefaultPicsData.bind(this)); + } + + setDefaultPicsData(data: any) { + const selectedData = _.cloneDeep(this.testRunStore.selectedTestCase); + const defaultTestCase = _.cloneDeep(this.testSandbox.getRunTestCaseData()); + // eslint-disable-next-line prefer-const + let detectPicsChanges: any = []; + defaultTestCase.forEach((category: any, categoryIndex: any) => { + detectPicsChanges[categoryIndex] = ''; + category.forEach((testSuite: any, testSuiteIndex: any) => { + testSuite.children.forEach((testCase: any) => { + data.test_cases.find((e: any) => { + if (testCase.title === e) { + if (selectedData[categoryIndex][testSuiteIndex]) { + selectedData[categoryIndex][testSuiteIndex].children.push(testCase); + } else { + selectedData[categoryIndex][testSuiteIndex] = testSuite; + selectedData[categoryIndex][testSuiteIndex].children = []; + detectPicsChanges[categoryIndex] = true; + selectedData[categoryIndex][testSuiteIndex].children.push(testCase); + } + } + }); + }); + }); + }); + this.testRunStore.setSelectedTestCase(selectedData); + this.testSandbox.setOnClickChanges(); + this.testRunStore.setDetectPicsChanges(detectPicsChanges); + } + // build's final data as object + async onTestStart() { + if (environment.isMockActive) { + if (!this.testRunAPI.getSelectedOperator()) { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Select a operator' }); + } else { + this.testSandbox.setTestScreen(1); + this.testRunAPI.getRunningTestsData(); + } + } else { + if (!this.testRunAPI.getSelectedOperator()) { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Select a operator' }); + } else if (!this.isTestCaseSelected() && !this.isWarningExist()) { + this.sharedAPI.setWebSocketLoader(true); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Test execution started' }); + this.sharedAPI.setAppState(APP_STATE[1]); + this.testRunAPI.setRunningTestCasesRawData([]); + this.testRunAPI.setRunningTestCases([]); + this.testRunAPI.setTestLogs([]); + this.testSandbox.setTestScreen(1); + /* eslint-disable @typescript-eslint/naming-convention */ + this.selectedDataFinal = { + 'name': 'test', + 'dut_name': 'test_dut', + 'selected_tests': {} + }; + /* eslint-enable @typescript-eslint/naming-convention */ + for (let mainIndex = 0; mainIndex < this.testSandbox.getSelectedData().length; mainIndex++) { + if (this.testSandbox.getSelectedData()[mainIndex].length > 0) { + this.selectedDataFinal.selected_tests[this.testSandbox.getTestSuiteCategory()[mainIndex]] = {}; + for (let parentIndex = 0; parentIndex < this.testSandbox.getSelectedData()[mainIndex].length; parentIndex++) { + if (this.testSandbox.getSelectedData()[mainIndex][parentIndex]) { + this.selectedDataFinal.selected_tests[this.testSandbox.getTestSuiteCategory() + [mainIndex]][this.testSandbox.getSelectedData()[mainIndex][parentIndex].public_id] = {}; + this.testSandbox.getSelectedData()[mainIndex][parentIndex].children.forEach((selectedChildren: any) => { + this.selectedDataFinal.selected_tests[this.testSandbox.getTestSuiteCategory()[mainIndex]] + [this.testSandbox.getSelectedData()[mainIndex][parentIndex].public_id][selectedChildren.public_id] = + selectedChildren.count; + }); + } + } + } + } + const testConfig: any = await this.testSandbox.createTestRunConfig(this.selectedDataFinal); + this.testSandbox.createTestRunExecution(this.callbackForStartTestExecution.bind(this), + testConfig.id, this.testName, this.testRunAPI.getSelectedOperator().id, this.description); + } + } + } + + // call back for test execution + callbackForStartTestExecution(value: any) { + this.testSandbox.setRunningTestsDataOnStart(value); + } + + isTestCaseSelected() { + let selectedSuite = 0; + this.testSandbox.getSelectedData().forEach((testCategory) => { + if (testCategory) { + testCategory.forEach((testSuite: any) => { + if (testSuite) { + if (testSuite.children.length > 0) { + selectedSuite = 1; + } + } + }); + } + }); + if (selectedSuite === 1) { + return false; + } else { + return true; + } + } + + isWarningExist() { // If Test-run-config input has any warning it will return true + let returnVal = false; + if (this.testName === '' || this.allowedCharacter.test(this.testName)) { + returnVal = true; + } + return returnVal; + } + clearTestSelection() { + const emptySelection: any = []; + for (let index = 0; index < this.testSandbox.getRunTestCaseData().length; index++) { + emptySelection[index] = []; + } + this.testRunStore.setSelectedTestCase(emptySelection); + this.testSandbox.setOnClickChanges(); + } +} diff --git a/src/app/components/test/test-execution-history/test-execution-history.component.html b/src/app/components/test/test-execution-history/test-execution-history.component.html new file mode 100644 index 0000000..1f9635a --- /dev/null +++ b/src/app/components/test/test-execution-history/test-execution-history.component.html @@ -0,0 +1,131 @@ + +
+ + +
+
+ + + +
+
+ + + +
+
+
+
+ +
+ Importing Test Runs... +
+
+
+ + + + + +
+
+
+ + + + + Test Name + + + Created + + + Success + + + Failure + + + Completion + + + + + + + + + + {{ data.title }} + + + {{ sharedService.findDate(data.started_at) || "NA" }} + + + {{ data.test_case_stats.states.passed || "NA" }} + + + {{ data.test_case_stats.states.failed || "NA"}} + + + + + + + + + + + + + + + + + + + + +
+ +
+

Legends:

+

+ Passed Failed Error + Cancelled Pending +

+
+
+
+ +
diff --git a/src/app/components/test/test-execution-history/test-execution-history.component.scss b/src/app/components/test/test-execution-history/test-execution-history.component.scss new file mode 100644 index 0000000..bae7049 --- /dev/null +++ b/src/app/components/test/test-execution-history/test-execution-history.component.scss @@ -0,0 +1,204 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; +@import "../../../../styles/custom.scss"; +:host ::ng-deep { + .p-datatable table { + border-collapse: collapse; + width: -webkit-fill-available; + table-layout: fixed; + } + .custom-times { + right: 1%; + } + .icon-add-circle1 { + font-size: 23px; + padding-left: 6px; + .path1:before { + color: $buttonColor; + opacity: 1; + } + .path2::before { + color: white; + } + } + .filter-button { + padding-right: 8px; + } + tr { + height: 60px; + } + .table_icons { + display: none; + i { + padding: 6px; + font-size: 25px; + } + i:hover { + color: $buttonColor; + background-color: rgba(156, 204, 235, 0.432); + border-radius: 20px; + } + } + + .table_row:hover { + .table_icons { + display: block !important; + } + } + .p-paginator-bottom { + .p-dropdown { + width: 4.5rem !important; + } + } + .round_circle { + height: 10px; + width: 10px; + + border-radius: 50%; + display: inline-block; + } + .failed { + background-color: $error; + } + + .completed { + background-color: $success; + } + .pending { + background-color: $warning; + } + .table-heading-row th { + @extend .table-heading; + } + .table_row td { + @extend .table-data; + } + .p-paginator-bottom, + .p-paginator-page, + .p-dropdown-label, + .p-dropdown-items-wrapper, + .search-input { + @extend .table-data; + } + .project-dropdown { + .p-dropdown { + .p-inputtext { + @extend .heading-text; + } + .p-dropdown-trigger { + color: $iconBackground; + } + background: transparent !important; + box-shadow: unset; + border-color: transparent; + } + .p-dropdown:not(.p-disabled).p-focus { + box-shadow: unset; + border-color: transparent; + outline: unset; + outline-offset: unset; + } + } + .progress-bar .p-progressbar { + height: 6px; + width: 100px; + top: 10px; + } + .failed-p-bar { + .p-progressbar-value { + background-color: $error; + } + } + .completed-p-bar { + .p-progressbar-value { + background-image: linear-gradient(#007e33, #007e33), + linear-gradient(#cc0000, #cc0000), linear-gradient(#ffc933, #ffc933), + linear-gradient(#ff8800, #ff8800), linear-gradient(#2193f6, #2193f6), + linear-gradient(rgb(218, 209, 209), rgb(218, 209, 209)); + background-repeat: no-repeat; + background-size: var(--percent-passed) 100%, var(--percent-failed) 100%, + var(--percent-error) 100%, var(--percent-cancelled) 100%, + var(--percent-pending) 100%, 100% 100%; + } + } + .pending-p-bar { + .p-progressbar-value { + background-color: $warning; + } + } + .test-name-td { + cursor: pointer; + &:hover { + color: $ceruleanBlue !important; + } + } + .legends-parent { + display: flex; + justify-content: center; + align-items: center; + .legends-title { + font-weight: 500; + padding-right: 10px; + } + } + .legends-color { + font-size: 15px; + .circle { + height: 8px; + width: 8px; + border-radius: 50%; + display: inline-block; + } + .pending { + background-color: #2193f6; + } + .error { + background-color: #ffc933; + } + .cancelled { + background-color: #ff8800; + } + .failed { + background-color: #cc0000; + } + .passed { + background-color: #007e33; + } + } + .spinner-height { + height: 100%; + } + .test-title { + width: 25%; + max-width: 0; + overflow: hidden; + white-space: pre; + text-overflow: ellipsis; + } + .import-loader-container { + display: flex; + align-items: center; + justify-content: center; + } + + .import-loader-items { + display: flex; + flex-direction: column; + align-items: center; + } +} diff --git a/src/app/components/test/test-execution-history/test-execution-history.component.spec.ts b/src/app/components/test/test-execution-history/test-execution-history.component.spec.ts new file mode 100644 index 0000000..517af70 --- /dev/null +++ b/src/app/components/test/test-execution-history/test-execution-history.component.spec.ts @@ -0,0 +1,117 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { TestBed } from '@angular/core/testing'; +import { DomSanitizer } from '@angular/platform-browser'; +import { DialogService } from 'primeng/dynamicdialog'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { TestSandbox } from '../test.sandbox'; +import { TestExecutionHistoryComponent } from './test-execution-history.component'; + +class MockTestSandbox { + getTestExecutionResult() { + return testExecutionHistory; + } + getTestExecutionHistory(id: any) { + return 0; + } + getArchivedTestResult() { + return testExecutionHistory; + } +} +class MockDomSanitizer { + bypassSecurityTrustStyle() { } +} +class MockSharedAPI { + getSelectedProjectType() { + return { id: 1 }; + }; + setIsProjectTypeSelected() { } +} +class MockDialogService { } +class MockTestRunAPI { } +class MockSharedService { } +describe('TestExecutionHistoryComponent', () => { + let component: TestExecutionHistoryComponent, testSandbox, + domSanitizer, sharedAPI, dialogService, testRunAPI; + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + TestExecutionHistoryComponent, + { provide: TestSandbox, useClass: MockTestSandbox }, + { provide: DomSanitizer, useClass: MockDomSanitizer }, + { provide: SharedAPI, useClass: MockSharedAPI }, + { provide: DialogService, useClass: MockDialogService }, + { provide: TestRunAPI, useClass: MockTestRunAPI }, + { provide: SharedService, useClass: MockSharedService } + ] + }).compileComponents(); + component = TestBed.inject(TestExecutionHistoryComponent); + testSandbox = TestBed.inject(TestSandbox); + domSanitizer = TestBed.inject(DomSanitizer); + sharedAPI = TestBed.inject(SharedAPI); + dialogService = TestBed.inject(DialogService); + testRunAPI = TestBed.inject(TestRunAPI); + }); + it('should return a valid string', () => { + expect(component.mystyle).toBeDefined(); + }); + it('it should match return', () => { + expect(component.filterProjectId()).toEqual(testExecutionHistory.reverse()); + }); +}); + +const testExecutionHistory = [ + { + 'title': 'UI_Test_Run_2021_9_21_17_20_7', + 'test_run_config_id': 1, + 'project_id': 1, + 'operator_id': null, + 'id': 1, + 'state': 'passed', + 'started_at': '2021-09-21T11:50:07.968195', + 'completed_at': '2021-09-21T11:50:27.461959', + 'test_case_stats': { + 'test_case_count': 11, + 'states': { + 'passed': 11 + } + } + }, + { + 'title': 'UI_Test_Run_2021_10_4_11_33_21', + 'test_run_config_id': 8, + 'project_id': 1, + 'operator_id': null, + 'id': 14, + 'state': 'error', + 'started_at': '2021-10-04T06:03:21.503544', + 'completed_at': '2021-10-04T06:03:31.884589', + 'test_case_stats': { + 'test_case_count': 9, + 'states': { + 'pending': 4, + 'executing': 1, + 'passed': 1, + 'error': 3 + } + } + }]; diff --git a/src/app/components/test/test-execution-history/test-execution-history.component.ts b/src/app/components/test/test-execution-history/test-execution-history.component.ts new file mode 100644 index 0000000..23e14ad --- /dev/null +++ b/src/app/components/test/test-execution-history/test-execution-history.component.ts @@ -0,0 +1,254 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, Injectable } from '@angular/core'; +import { DomSanitizer } from '@angular/platform-browser'; +import { DialogService } from 'primeng/dynamicdialog'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { testExecutionTable, TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { TestSandbox } from '../test.sandbox'; +import { DynamicDialogRef } from 'primeng/dynamicdialog'; +import { UtilityComponent } from '../../utility/utility.component'; +import { APP_STATE } from 'src/app/shared/utils/constants'; +import { environment } from 'src/environments/environment'; +import { saveAs } from 'file-saver'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; + +@Component({ + selector: 'app-test-execution-history', + templateUrl: './test-execution-history.component.html', + styleUrls: ['./test-execution-history.component.scss'], +}) +@Injectable() +export class TestExecutionHistoryComponent { + + testExecutionDropDown: any = testExecutionTable(); + selectedDropdownData = this.testExecutionDropDown[0]; + isSearch = false; + ref?: DynamicDialogRef; + searchQuery = ''; + isImportingTestRuns = false; + constructor(public testSandbox: TestSandbox, public sanitizer: DomSanitizer, public sharedService: SharedService, + public sharedAPI: SharedAPI, public dialogService: DialogService, private testRunAPI: TestRunAPI) { + sanitizer.bypassSecurityTrustStyle('--bper'); + } + mystyle(data: any): string { + const states: any = {}; + let percent = 0; + if (data.test_case_count > 0) { + percent = 100 / data.test_case_count; + } + states['passed'] = (data.states.passed || 0) * percent; + states['failed'] = (data.states.failed || 0) * percent + states.passed; + states['error'] = (data.states.error || 0) * percent + states.failed; + states['cancelled'] = (data.states.cancelled || 0) * percent + states.error; + states['pending'] = (data.states.pending || 0) * percent + states.cancelled; + const final = '--percent-passed:' + states.passed + '%; --percent-failed:' + states.failed + '%; --percent-error:' + + states.error + '%; --percent-cancelled:' + states.cancelled + '%; --percent-pending:' + states.pending + '%;'; + return final; + } + filterProjectId() { + let filterData = []; + if (this.isSearch) { + document.getElementById('testsearch')?.focus(); + } + if (this.selectedDropdownData.tableName === 'Test' && this.testSandbox.getTestExecutionResult().length) { + filterData = this.testSandbox.getTestExecutionResult(); + } else if (this.testSandbox.getTestExecutionResult().length === 0 && this.selectedDropdownData.tableName === 'Test') { + this.selectedDropdownData = this.testExecutionDropDown[1]; + filterData = this.testSandbox.getArchivedTestResult(); + } else { + filterData = this.testSandbox.getArchivedTestResult(); + } + + if (filterData.length) { + this.sharedAPI.setIsProjectTypeSelected(1); + return filterData.reverse(); + } else { + if (this.isSearch === false && this.testSandbox.getTestExecutionResult().length === 0 && + this.testSandbox.getArchivedTestResult().length === 0) { + this.sharedAPI.setIsProjectTypeSelected(0); + this.testSandbox.setTestScreen(0); + } + return filterData; + } + } + newTestRun() { + this.testSandbox.setTestScreen(0); + } + importTestRun(event: any) { + const projectId = this.sharedAPI.getSelectedProjectType().id; + const totalFiles = event.target.files.length; + let processedFilesCount = 0; + this.isImportingTestRuns = true; + + for (let i = 0; i < totalFiles; i++) { + const file: File = event.target.files.item(i); + if (file.type === 'application/json') { + this.testRunAPI.importTestRun(file, projectId).subscribe(() => { + processedFilesCount++; + if (processedFilesCount === totalFiles) { + this.testSandbox.getTestExecutionResults(projectId); + this.sharedService.setToastAndNotification({ + status: 'success', + summary: 'Success!', + message: 'File(s) imported successfully' + }); + this.isImportingTestRuns = false; + } + }, () => { + this.sharedService.setToastAndNotification({ + status: 'error', + summary: 'Error!', + message: 'Something went wrong importing the test run execution file' + }); + this.isImportingTestRuns = false; + }); + } else { + this.sharedService.setToastAndNotification({ + status: 'error', + summary: 'Error!', + message: 'Invalid test run execution file' + }); + this.isImportingTestRuns = false; + } + } + } + exportTestRun(data: any) { + const download = true; + this.testRunAPI.exportTestRun(data, download).subscribe(responseObj => { + const response: any = responseObj; + const jsonStr = JSON.stringify(response); + const file = new Blob([jsonStr], { type: 'application/json;charset=utf-8' }); + saveAs(file, `${response.test_run_execution.title}.json`); + this.sharedService.setToastAndNotification({ + status: 'success', + summary: 'Success!', + message: 'Test run exported successfully' + }); + }, () => { + this.sharedService.setToastAndNotification({ + status: 'error', + summary: 'Error!', + message: 'Test run export failed' + }); + }); + } + downloadGroupedLogs(data: any) { + this.testRunAPI.downloadGroupedLogs(data).subscribe(responseObj => { + const response: any = responseObj; + const fileName = `${arguments[0].title}.zip`; + const file = new Blob([response], { type: 'application/zip;charset=utf-8' }); + saveAs(file, fileName); + this.sharedService.setToastAndNotification({ + status: 'success', + summary: 'Success!', + message: 'Grouped logs downloaded successfully' + }); + }, (err) => { + this.sharedService.setToastAndNotification({ + status: 'error', + summary: 'Error!', + message: 'Grouped logs download failed' + }); + }); + } + testHistorySearch() { + this.isSearch = true; + if (this.selectedDropdownData.tableName === 'Test') { + this.testRunAPI.searchTestExecutionHistory(this.searchQuery, false); + } else { + this.testRunAPI.searchTestExecutionHistory(this.searchQuery, true); + } + } + checkSearchLength(data: any) { + if (data.length === 0) { + if (this.selectedDropdownData.tableName === 'Test') { + this.testRunAPI.searchTestExecutionHistory('', false); + } else { + this.testRunAPI.searchTestExecutionHistory('', true); + } + this.isSearch = false; + } + } + showTestReport(reportId: any) { + if (environment.isMockActive) { + this.testRunAPI.getMockReport(); + } else { + this.testRunAPI.getTestReportData(reportId, 0); + } + this.ref = this.dialogService.open(UtilityComponent, { + width: '100%', + baseZIndex: 10000, + styleClass: 'report-dialog' + }); + } + downloadTestReport(reportId: any) { + this.testRunAPI.getTestReportData(reportId, this.saveTestReport.bind(this)); + } + + saveTestReport() { + const reportData = this.sharedAPI.getTestReportData(); + const reportDataStr = JSON.stringify(reportData); + const file = new Blob([reportDataStr], { type: 'text/plain;charset=utf-8' }); + saveAs(file, reportData.title + '-' + reportData.id.toString() + '.json'); + } + + downloadTestLog(data: any) { + this.testRunAPI.getLogs(data.id, this.saveLogs.bind(this, data.title), false); + } + showExecutionPage(reportId: any) { + this.testRunAPI.setRunningTestCasesRawData([]); + this.testRunAPI.setRunningTestCases([]); + this.testRunAPI.setTestLogs([]); + this.testSandbox.setTestScreen(1); + if (environment.isMockActive) { + this.testRunAPI.getRunningTestsData(); + } else { + this.testRunAPI.readRunningTestsRawData(reportId, this.testRunAPI.updateRunningTestcase.bind(this.testRunAPI)); + } + } + repeatTestRun(executionData: any) { + this.testSandbox.setTestScreen(1); + if (environment.isMockActive) { + this.testRunAPI.getRunningTestsData(); + } else { + const title: any = executionData.title.slice(0, executionData.title.length - 20); + this.sharedAPI.setAppState(APP_STATE[1]); + this.sharedAPI.setWebSocketLoader(true); + this.testSandbox.createTestRunExecution(this.repeatExecution.bind(this), executionData.test_run_config_id, + title, executionData.operator.id, executionData.description); + } + } + repeatExecution(execId: any) { + this.testSandbox.setRunningTestsDataOnStart(execId); + } + archiveTestRun(id: any) { + if (this.selectedDropdownData.tableName === 'Test') { + this.testSandbox.archiveTestRun(id); + } else { + this.testSandbox.unarchiveTestRun(id); + } + } + + deleteTestRun(id: any) { + this.testSandbox.deleteTestRun(id); + } + saveLogs(title: any, data: any) { + const file = new Blob([data], { type: 'text/plain;charset=utf-8' }); + saveAs(file, title + '.log'); + } +} diff --git a/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.html b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.html new file mode 100644 index 0000000..10d78ba --- /dev/null +++ b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.html @@ -0,0 +1,83 @@ + +
+
Test Cases
+ +
+ +
+ + + +
+
+
+ + + + {{testCollection.key}} + {{filteredRunningTC.length|number:'2.0'}} +
+
+ + +
+
+
+ +
+ + +
+
+
+ + + + +
+
+ + + +   + + {{ item.name }} + + {{item.children.length|number:'2.0'}} + ({{item.count}}) +
+
+ + +
+
+ + + + +
+
+
+ +
diff --git a/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.scss b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.scss new file mode 100644 index 0000000..699cb71 --- /dev/null +++ b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.scss @@ -0,0 +1,133 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../../styles/colors"; +@import "../../../../../styles/custom.scss"; + +:host ::ng-deep .test-exec-tree-parent { + height: 100%; + position: relative; + .table-heading { + @extend .table-heading; + padding: 14px; + background-color: $execTableHeader; + } + .all-tests-div { + .default-test { + @extend .table-data; + padding: 12px 14px; + background-color: $execTableHeader; + border-top: 1px solid $execTableSubHeader; + border-bottom: 1px solid $execTableSubHeader; + user-select: none; + cursor: pointer; + .expand-icon { + vertical-align: middle; + } + } + .pi-angle-down { + vertical-align: middle; + } + .category-progress { + margin-left: 5px; + margin-right: 2px; + } + .default-test.active-block { + background-color: $execTableSubHeader; + } + } + .badge-count { + margin-left: 5px; + min-width: 20px; + height: 20px; + padding: 2px; + } + + .progress-bar .p-progressbar { + height: 6px; + width: 100px; + top: 7px; + .p-progressbar-value { + background: $navbar; + } + } + .testcase-loader { + padding-right: 14px; + } + .testcase-div { + overflow: auto; + height: calc(100% - 134px); + transition: height 0.2s; + } + .testcase-div-3 { + display: block !important; + .text-ellipsis { + overflow: hidden !important; + text-overflow: ellipsis; + } + } + .remove-border { + border-bottom: unset !important; + } + .remove-padding { + height: 28px !important; + } + + .testcase-div-1, + .testcase-div-2, + .testcase-div-3 { + @extend .table-data; + height: 34px; + border-bottom: 1px solid $execTableBorder; + padding: 7px 0px; + user-select: none; + cursor: pointer; + .testcse-count { + float: right; + padding-right: 15px; + font-size: 11px; + } + } + + .testcase-div-1 { + padding-left: 15px; + } + .testcase-div-2 { + padding-left: 30px; + } + .testcase-div-3 { + padding-left: 45px; + white-space: nowrap; + } + .no-test-found { + height: 40px; + text-align: center; + padding: 12px; + } + .line-through { + text-decoration: line-through; + } + .pending-tc { + font-style: italic; + opacity: 0.5; + } + .loader-div { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + } +} diff --git a/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.spec.ts b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.spec.ts new file mode 100644 index 0000000..8ffd201 --- /dev/null +++ b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.spec.ts @@ -0,0 +1,290 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +import { TestBed, ComponentFixture, waitForAsync } from '@angular/core/testing'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestExecutionTreeComponent } from './test-execution-tree.component'; + + +class MockTestRunAPI { + getRunningTestCasesRawData() { + return []; + } + getTestCollectionData() { + return []; + } + getRunningTestCases() { + return getRunningTestDummyJson(); + } +} + +describe('TestExecutionTreeComponent', () => { + let component: TestExecutionTreeComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [TestExecutionTreeComponent], + providers: [ + { provide: TestRunAPI, useClass: MockTestRunAPI }, + { provide: SharedAPI, useClass: MockTestRunAPI } + ] + }).compileComponents(); + })); + beforeEach(() => { + fixture = TestBed.createComponent(TestExecutionTreeComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + const data = 'Default'; + it('check switchActiveBlock', () => { + component.switchActiveBlock(data); + expect(component.activeBlock).toEqual(data); + component.switchActiveBlock(data); + expect(component.activeBlock).toEqual(''); + }); + + // Configuration: passed, error and warning are the sample JSON used for validation. + const passed = [ + { + 'key': 'test_suite_execution_219', + 'name': 'CommissioningSampleTestSuite', + 'expanded': true, + 'count': '1', + 'status': 'passed', + 'progress': 100, + 'children': [] + }, + { + 'key': 'test_suite_execution_220', + 'name': 'SampleTestSuite1', + 'expanded': true, + 'count': '1', + 'status': 'passed', + 'progress': 100, + 'children': [] + } + ]; + const error = [ + { + 'key': 'test_suite_execution_219', + 'name': 'CommissioningSampleTestSuite', + 'expanded': true, + 'count': '1', + 'status': 'error', + 'progress': 100, + 'children': [] + }, + { + 'key': 'test_suite_execution_220', + 'name': 'SampleTestSuite1', + 'expanded': true, + 'count': '1', + 'status': 'passed', + 'progress': 100, + 'children': [] + } + ]; + const executing = [ + { + 'key': 'test_suite_execution_219', + 'name': 'CommissioningSampleTestSuite', + 'expanded': true, + 'count': '1', + 'status': 'executing', + 'progress': 100, + 'children': [] + }, + { + 'key': 'test_suite_execution_220', + 'name': 'SampleTestSuite1', + 'expanded': true, + 'count': '1', + 'status': 'executing', + 'progress': 100, + 'children': [] + } + ]; + + // Configuration: these are the expected return values. + const passedReturn = 'pi pi-check success'; + const errorReturn = 'pi pi-times error'; + const executingReturn = 'pi pi-spin pi-spinner'; + + it('check getCategoryClassName', () => { + const passedReturnValue = component.getCategoryClassName(passed); + const errorReturnValue = component.getCategoryClassName(error); + const executingReturnValue = component.getCategoryClassName(executing); + expect(passedReturn).toEqual(passedReturnValue); + expect(errorReturn).toEqual(errorReturnValue); + expect(executingReturn).toEqual(executingReturnValue); + }); + + it('check getFilteredRunningTestCases', () => { + const testCollection = getTestCollection(); + const testCollection2 = getTestCollection2(); + const filteredJson = component.getFilteredRunningTestCases(testCollection); + expect(filteredJson.length).toEqual(1); + expect(filteredJson).toEqual(getRunningTestDummyJson()); + + const filteredJson2 = component.getFilteredRunningTestCases(testCollection2); + expect(filteredJson2.length).toEqual(0); + expect(filteredJson2).toEqual([]); + }); +}); + + +/* eslint-disable @typescript-eslint/naming-convention */ +// Configuration: this returns testCollection sample JSON. +function getTestCollection() { + return { + 'key': 'sample_tests', + 'value': { + 'name': 'sample_tests', + 'path': '/app/backend/app/test_engine/../../test_collections/sample_tests', + 'test_suites': { + 'SampleTestSuite1': { + 'metadata': { + 'public_id': 'SampleTestSuite1', + 'version': '1.2.3', + 'title': 'This is Test Suite 1', + 'description': 'This is Test Suite 1, it will not get a very long description', + 'key': 1, + 'children': [ + { + 'public_id': 'TCSS1001', + 'version': '1.2.3', + 'title': 'This is Test Case tcss1001', + 'description': 'This is Test Case tcss1001, it will not get a very long description', + 'count': 1, + 'parentKey': 1, + 'key': '1_0' + }, + { + 'public_id': 'TCSS1002', + 'version': '3.2.1', + 'title': 'This is Test Case tcss1002', + 'description': 'This is Test Case tcss1002, it will not get a very long description', + 'count': 1, + 'parentKey': 1, + 'key': '1_1' + } + ] + }, + 'test_cases': { + 'TCSS1001': { + 'metadata': { + 'public_id': 'TCSS1001', + 'version': '1.2.3', + 'title': 'This is Test Case tcss1001', + 'description': 'This is Test Case tcss1001, it will not get a very long description', + 'count': 1, + 'parentKey': 1, + 'key': '1_0' + } + }, + 'TCSS1002': { + 'metadata': { + 'public_id': 'TCSS1002', + 'version': '3.2.1', + 'title': 'This is Test Case tcss1002', + 'description': 'This is Test Case tcss1002, it will not get a very long description', + 'count': 1, + 'parentKey': 1, + 'key': '1_1' + } + } + } + } + } + } + }; +} + +// Configuration: this returns testCollection sample JSON without suits data. +function getTestCollection2() { + return { + 'key': 'official_tests', + 'value': { + 'name': 'official_tests', + 'path': '/app/backend/app/test_engine/../../test_collections/official_tests', + 'test_suites': {} + } + }; +} +/* eslint-enable @typescript-eslint/naming-convention */ + +// Configuration: this returns running test sample JSON. +function getRunningTestDummyJson() { + return [ + { + 'key': 'test_suite_execution_239', + 'name': 'SampleTestSuite1', + 'expanded': true, + 'count': '1', + 'status': 'passed', + 'progress': 100, + 'children': [ + { + 'key': 'test_case_execution_949', + 'name': 'TCSS1001', + 'expanded': true, + 'count': '1', + 'status': 'passed', + 'children': [ + { + 'key': 'test_step_execution_5533', + 'name': 'Test Step 1', + 'status': 'passed', + 'children': [] + }, + { + 'key': 'test_step_execution_5534', + 'name': 'Test Step 2', + 'status': 'passed', + 'children': [] + } + ] + }, + { + 'key': 'test_case_execution_950', + 'name': 'TCSS1002', + 'expanded': true, + 'count': '1', + 'status': 'passed', + 'children': [ + { + 'key': 'test_step_execution_5538', + 'name': 'Test Step 1', + 'status': 'passed', + 'children': [] + }, + { + 'key': 'test_step_execution_5539', + 'name': 'Test Step 2', + 'status': 'passed', + 'children': [] + } + ] + } + ] + } + ]; +} diff --git a/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.ts b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.ts new file mode 100644 index 0000000..fd2994b --- /dev/null +++ b/src/app/components/test/test-execution/test-execution-tree/test-execution-tree.component.ts @@ -0,0 +1,106 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import * as _ from 'lodash'; +@Component({ + selector: 'app-test-execution-tree', + templateUrl: './test-execution-tree.component.html', + styleUrls: ['./test-execution-tree.component.scss'] +}) +export class TestExecutionTreeComponent { + activeBlock: any; + constructor(public testRunAPI: TestRunAPI, public sharedAPI: SharedAPI) { } + + expandClick(data: any) { + if (data.children.length) { + const copyRunningTests = this.testRunAPI.getRunningTestCases(); + const updatedData = this.updateExpanded(copyRunningTests, data.key); + this.testRunAPI.setRunningTestCases(updatedData); + } + if (data.testStepIndex) { + const logs = _.cloneDeep(this.testRunAPI.getTestLogs()); + const logIndex = logs.map((log: any) => + log.test_suite_execution_index + '' + log.test_case_execution_index + '' + log.test_step_execution_index). + indexOf(data.testStepIndex); + const logEle = document.getElementsByClassName('test-logs-parent')[0]; + if (logEle.getElementsByClassName('cdk-virtual-scroll-viewport')[0] && logIndex !== -1) { + logEle.getElementsByClassName('cdk-virtual-scroll-viewport')[0].scrollTop = logIndex * 27; + } + } + } + + keepOriginalOrder = (a: any, b: any) => a.key; + + updateExpanded(testData: any, key: any) { + testData.some(function iter(ele: any) { + if (ele.key === key) { + ele.expanded = !ele.expanded; + return true; + } + return Array.isArray(ele.children) && ele.children.some(iter); + }); + return testData; + } + + switchActiveBlock(active: any) { + if (this.activeBlock === active) { + this.activeBlock = ''; + } else { + this.activeBlock = active; + } + } + + getAllTestSuits(testCollectionName: any) { + const testSuitsArr = Object.keys(testCollectionName.value.test_suites); + return testSuitsArr; + } + + getFilteredRunningTestCases(testCollection: any) { + const testSuitsList = this.getAllTestSuits(testCollection); + const runningTC = this.testRunAPI.getRunningTestCases(); + const filteredRunningTC = runningTC.filter((ele: any) => testSuitsList.includes(ele.name)); + if (this.activeBlock === undefined && filteredRunningTC.length !== 0) { // This will check only in initially TC execution started + this.activeBlock = testCollection.key; + } + return filteredRunningTC; + } + + getCategoryProgress(filteredRunningTC: any) { + let progressSum = 0; + filteredRunningTC.forEach((ele: any) => { + progressSum = progressSum + ele.progress; + }); + return Math.round(progressSum / filteredRunningTC.length); + } + + getCategoryClassName(data: any) { + const isPending = data.some((ele: any) => ele.status === 'pending'); + const isExecuting = data.some((ele: any) => ele.status === 'executing'); + const isPassed = data.every((ele: any) => ele.status === 'passed'); + let className = ''; + if (isExecuting) { + className = 'pi pi-spin pi-spinner'; + } else if (isPassed) { + className = 'pi pi-check success'; + } else if (!isPending) { + className = 'pi pi-times error'; + } + return className; + } +} diff --git a/src/app/components/test/test-execution/test-execution.component.html b/src/app/components/test/test-execution/test-execution.component.html new file mode 100644 index 0000000..eefdcf8 --- /dev/null +++ b/src/app/components/test/test-execution/test-execution.component.html @@ -0,0 +1,41 @@ + +
+
+
Test Execution
+
+ + + +
+
+
+
+ +
+
+ +
+
+ + +
diff --git a/src/app/components/test/test-execution/test-execution.component.scss b/src/app/components/test/test-execution/test-execution.component.scss new file mode 100644 index 0000000..411e50e --- /dev/null +++ b/src/app/components/test/test-execution/test-execution.component.scss @@ -0,0 +1,50 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../styles/colors"; +@import "../../../../styles/custom.scss"; + +:host ::ng-deep .test-execution-parent { + height: 100%; + .heading-text { + @extend .heading-text; + padding: 20px 14px; + } + .abort-button-div { + padding: 14px; + button { + height: 34px; + } + .aborting { + width: 120px; + cursor: not-allowed; + .pi-spinner { + margin-right: 7px; + } + } + } + .test-execution-tree-div { + width: 35%; + min-width: 35%; + } +} +div.container { + margin-bottom: 10px; + // height: calc(100vh - 190px); +} +div.container > div { + border: 1px solid $execTableBorder; +} diff --git a/src/app/components/test/test-execution/test-execution.component.ts b/src/app/components/test/test-execution/test-execution.component.ts new file mode 100644 index 0000000..33b953e --- /dev/null +++ b/src/app/components/test/test-execution/test-execution.component.ts @@ -0,0 +1,71 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component, OnInit } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { WebSocketAPI } from 'src/app/shared/core_apis/websocket'; +import { APP_STATE } from 'src/app/shared/utils/constants'; +import { TestSandbox } from '../test.sandbox'; + +@Component({ + selector: 'app-test-execution', + templateUrl: './test-execution.component.html', + styleUrls: ['./test-execution.component.scss'] +}) +export class TestExecutionComponent implements OnInit { + buttons: any; + inputItems: any; + appState = APP_STATE; + abortClicked = false; + constructor(public sharedAPI: SharedAPI, public testSandBox: TestSandbox, + public webSocketAPI: WebSocketAPI, private testRunAPI: TestRunAPI, public sharedService: SharedService) { } + onAbort() { + this.sharedAPI.setShowCustomPopup('ABORT'); + } + async onFinish() { + this.sharedService.cursorBusy(true); + await this.testRunAPI.getTestExecutionResult(false, this.sharedAPI.getSelectedProjectType().id); + await this.testRunAPI.getTestExecutionResult(true, this.sharedAPI.getSelectedProjectType().id); + this.sharedService.cursorBusy(false); + this.testRunAPI.setRunningTestCasesRawData([]); + this.testRunAPI.setRunningTestCases([]); + this.testRunAPI.setTestLogs([]); + this.testSandBox.setTestScreen(2); + } + onYesClick() { + this.abortClicked = true; + this.sharedAPI.setShowCustomPopup(''); + const newTestRun: any = this.testRunAPI.getRunningTestCasesRawData(); + this.testRunAPI.abortTestExecAndUpdateTestcase(newTestRun.id); + this.sharedAPI.setAppState(APP_STATE[1]); + } + onNoClick() { + this.sharedAPI.setShowCustomPopup(''); + } + + ngOnInit(): void { + this.buttons = [ + { id: 0, label: 'No', class: 'buttonNo', iconClass: 'pi pi-times', callback: this.onNoClick.bind(this) }, + { id: 1, label: 'Yes', class: 'buttonYes', iconClass: 'pi pi-check', callback: this.onYesClick.bind(this) } + ]; + } + +} + + + diff --git a/src/app/components/test/test-execution/test-execution.sandbox.spec.ts b/src/app/components/test/test-execution/test-execution.sandbox.spec.ts new file mode 100644 index 0000000..00d25b7 --- /dev/null +++ b/src/app/components/test/test-execution/test-execution.sandbox.spec.ts @@ -0,0 +1,155 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-use-before-define */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +import { TestBed } from '@angular/core/testing'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { DataService } from 'src/app/shared/web_sockets/ws-config'; +import { TestExecutionSandbox } from './test-execution.sandbox'; + + +class MockDataService { }; +class MockSharedAPI { }; +class MockTestRunAPI { }; +describe('TestExecutionSandbox', () => { + let component: TestExecutionSandbox; + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ + TestExecutionSandbox, + { provide: DataService, useClass: MockDataService }, + { provide: SharedAPI, useClass: MockSharedAPI }, + { provide: TestRunAPI, useClass: MockTestRunAPI } + ] + }).compileComponents(); + component = TestBed.inject(TestExecutionSandbox); + const dataService = TestBed.inject(DataService); + const sharedAPI = TestBed.inject(SharedAPI); + const testRunAPI = TestBed.inject(TestRunAPI); + }); + + it('check updateJSONBasedOnWebSocketData', () => { + expect(component).toBeTruthy(); + + // Test 1: check Test suits update + const updatedJson = component.updateJSONBasedOnWebSocketData(getTestData(), statusJson('testSuit')); + const testSuitUpdate = JSON.parse(JSON.stringify(getTestData())); + testSuitUpdate[0].status = 'executing'; + expect(updatedJson).toEqual(testSuitUpdate); + + // Test 2: check Test case update + const testCaseUpdate = JSON.parse(JSON.stringify(testSuitUpdate)); + const updatedJson2 = component.updateJSONBasedOnWebSocketData(updatedJson, statusJson('testCase')); + testCaseUpdate[0].progress = 100; + testCaseUpdate[0].children[0].status = 'cancelled'; + expect(updatedJson2).toEqual(testCaseUpdate); + + // Test 3: check Test step update + const testStepUpdate = JSON.parse(JSON.stringify(testCaseUpdate)); + const updatedJson3 = component.updateJSONBasedOnWebSocketData(updatedJson2, statusJson('testStep')); + testStepUpdate[0].children[0].children[0].status = 'cancelled'; + expect(updatedJson3).toEqual(testStepUpdate); + + }); +}); + +// Configuration: It returns testData sample JSON. +function getTestData() { + return [ + { + 'key': 'test_suite_execution_240', + 'name': 'FirstChipToolSuite', + 'expanded': true, + 'count': '1', + 'status': 'pending', + 'progress': 0, + 'children': [ + { + 'key': 'test_case_execution_951', + 'name': 'TC_BI_1_1', + 'expanded': true, + 'count': '1', + 'status': 'pending', + 'children': [ + { + 'key': 'test_step_execution_5543', + 'name': 'Starting ChipTool Test', + 'status': 'pending', + 'children': [] + }, + { + 'key': 'test_step_execution_5544', + 'name': 'read the global attribute: ClusterRevision', + 'status': 'pending', + 'children': [] + } + ] + } + ] + } + ]; +} + +// Configuration: It returns sample status JSON. +function statusJson(param: any) { + let returnJson = {}; + /* eslint-disable @typescript-eslint/naming-convention */ + if (param === 'testSuit') { + returnJson = { + 'type': 'test_update', + 'payload': { + 'test_type': 'Test Suite', + 'body': { + 'test_suite_execution_id': 240, + 'state': 'executing', + 'errors': null + } + } + }; + } else if (param === 'testCase') { + returnJson = { + 'type': 'test_update', + 'payload': { + 'test_type': 'Test Case', + 'body': { + 'test_suite_execution_id': 240, + 'test_case_execution_id': 951, + 'state': 'cancelled', + 'errors': null + } + } + }; + } else if (param === 'testStep') { + returnJson = { + 'type': 'test_update', + 'payload': { + 'test_type': 'Test Step', + 'body': { + 'test_suite_execution_id': 240, + 'test_case_execution_id': 951, + 'test_step_execution_id': 5543, + 'state': 'cancelled', + 'errors': null, + 'failures': [] + } + } + }; + } + /* eslint-enable @typescript-eslint/naming-convention */ + return returnJson; +} diff --git a/src/app/components/test/test-execution/test-execution.sandbox.ts b/src/app/components/test/test-execution/test-execution.sandbox.ts new file mode 100644 index 0000000..d94917a --- /dev/null +++ b/src/app/components/test/test-execution/test-execution.sandbox.ts @@ -0,0 +1,110 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { DEFAULT_POPUP_OBJECT, EXECUTION_STATUS_COMPLETED } from 'src/app/shared/utils/constants'; +import { DataService } from 'src/app/shared/web_sockets/ws-config'; + +@Injectable() +export class TestExecutionSandbox { + message: any = ''; + constructor(private dataService: DataService, public sharedAPI: SharedAPI, public testRunAPI: TestRunAPI) { } + + + showExecutionPrompt(promptData: any) { + // Converting the prompt BE json to component required JSON format. + const buttons = [{ id: 1, label: 'Submit', class: 'buttonYes', callback: this.onYesClick.bind(this) }]; + const popupObject = { + 'popupId': '', 'subHeader': promptData.payload.prompt, 'header': ' ', 'buttons': buttons, 'inputItems': [] as any, + 'messageId': promptData.payload.message_id + }; + + if (promptData.payload.options) { // Displaying the Radio button popup + popupObject.popupId = 'RADIO_' + promptData.payload.message_id; + const options = Object.entries(promptData.payload.options).map(([key, value]) => ({ key: value, value: key })); + const inputItems = [ + { + id: 1, type: 'radioButton', value: '', groupName: 'group_1', + options: options + } + ]; + popupObject.inputItems = inputItems; + } else if (promptData.payload.placeholder_text) { // Displaying the Textbox popup + popupObject.popupId = 'TEXTBOX_' + promptData.payload.message_id; + const inputItems = [ + { id: 1, type: 'inputbox', value: promptData.payload.default_value, placeHolder: promptData.payload.placeholder_text } + ]; + popupObject.inputItems = inputItems; + } else if (promptData.payload.path) { // Displaying the File-upload popup + popupObject.popupId = 'FILE_UPLOAD_' + promptData.payload.message_id; + const inputItems = [ + { id: 1, type: 'file_upload', value: '' } + ]; + popupObject.inputItems = inputItems; + } + this.sharedAPI.setCustomPopupData(popupObject); + this.sharedAPI.setShowCustomPopup(popupObject.popupId); + } + + // This function will be called when user submit the popup. + onYesClick(inputData: any, messageId: number, file: File) { + this.sharedAPI.setShowCustomPopup(''); + this.sharedAPI.setCustomPopupData(DEFAULT_POPUP_OBJECT); + if (inputData[0].type === 'file_upload') { + this.message = messageId; + this.testRunAPI.fileUpload(file, this.fileUploadCallback.bind(this)); + } else { + /* eslint-disable @typescript-eslint/naming-convention */ + const promptResponse = { + 'type': 'prompt_response', 'payload': + { 'response': inputData[0].value, 'status_code': 0, 'message_id': messageId } + }; + /* eslint-enable @typescript-eslint/naming-convention */ + this.dataService.send(promptResponse); + } + } + + fileUploadCallback(status: any) { + /* eslint-disable @typescript-eslint/naming-convention */ + const promptResponse = { + 'type': 'prompt_response', 'payload': + { 'response': ' ', 'status_code': 0, 'message_id': this.message } + }; + /* eslint-enable @typescript-eslint/naming-convention */ + this.dataService.send(promptResponse); + } + + // Update Test execution status JSON using websocket data of particular testcase/suits data + updateJSONBasedOnWebSocketData(testData: any, statusJson: any) { + const suiteData = statusJson.payload.body; + if (statusJson.payload.body.test_suite_execution_index > -1) { + if (suiteData.test_step_execution_index > -1) { + testData[suiteData.test_suite_execution_index].children[suiteData.test_case_execution_index]. + children[suiteData.test_step_execution_index].status = suiteData.state; + } else if (suiteData.test_case_execution_index > -1) { + testData[suiteData.test_suite_execution_index].children[suiteData.test_case_execution_index].status = suiteData.state; + } else { + testData[suiteData.test_suite_execution_index].status = statusJson.payload.body.state; + } + const updatedChild = testData[suiteData.test_suite_execution_index].children; + testData[suiteData.test_suite_execution_index].progress = Math.round(updatedChild.filter( + (elem: any) => EXECUTION_STATUS_COMPLETED.includes(elem.status)).length / updatedChild.length * 100); + } + return testData; + } +} diff --git a/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.html b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.html new file mode 100644 index 0000000..3adb7c5 --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.html @@ -0,0 +1,37 @@ + +
+ + + + + + {{getPrefixChar(rowData)}} + + + + + +
+ +
+ +
diff --git a/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.scss b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.scss new file mode 100644 index 0000000..a4aafdb --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.scss @@ -0,0 +1,80 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../../../styles/colors"; + +:host ::ng-deep .log-console-parent { + height: 100%; + color: $creamWhite; + background-color: $lightBlack; + padding: 15px; + overflow: auto; + font-family: monospace; + p { + margin-bottom: 8px; + } + td { + border: none !important; + padding: 2px !important; + } + tr { + background: #212121;; + } + .info-log { + color: $info; + } + .error-log { + color: $error; + } + .warning-log { + color: $warning; + } + .testsuits-log .prefixSpan { + margin-left: 30px; + } + .testcase-log .prefixSpan { + margin-left: 60px; + } + .logs-scolltobottom-icon { + position: absolute; + right: 20px; + bottom: 15px; + font-size: 20px; + color: $white; + background: #8b8888; + padding: 5px; + border-radius: 5px; + } + .highlight_log_search { + background-color: rgb(138 141 138 / 20%); + font-weight: bold; + } + .active_log { + background-color: rgb(255 247 0 / 60%); + } + .plain-logs { + .highlight_log_search { + background-color: rgb(255 247 0 / 60%); + font-weight: bold; + } + } + .loader-div { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + } +} diff --git a/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.spec.ts b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.spec.ts new file mode 100644 index 0000000..a596f32 --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.spec.ts @@ -0,0 +1,108 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { APP_STATE } from 'src/app/shared/utils/constants'; +import { TestLogConsoleComponent } from './test-log-console.component'; + + +class MockTestRunAPI { + getTestLogs() { + return []; + } + getLogsFilterKey() { + return []; + } +}; +class MockSharedAPI { + getAppState() { + return APP_STATE[0]; + } +}; + +describe('TestLogConsoleComponent', () => { + let component: TestLogConsoleComponent; + let fixture: ComponentFixture; + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [TestLogConsoleComponent], + providers: [ + { provide: TestRunAPI, useClass: MockTestRunAPI }, + { provide: SharedAPI, useClass: MockSharedAPI } + ] + }).compileComponents(); + }); + beforeEach(() => { + fixture = TestBed.createComponent(TestLogConsoleComponent); + component = fixture.componentInstance; + spyOn(component, 'scrollToBottom'); + fixture.detectChanges(); + }); + + // Configuration: Below json are sample logs data. + const infoLog = { + 'level': 'INFO', + 'timestamp': 1640877078.176987, + 'message': 'Test Run Executing', + 'test_suite_execution_id': null, + 'test_case_execution_id': null + }; + + const testSuitsAndErrorLog = { + 'level': 'ERROR', + 'timestamp': 1640877078.224148, + 'message': 'Test Suite Executing: This is Test Suite 1', + 'test_suite_execution_id': 243, + 'test_case_execution_id': null + }; + + const testCaseAndWarningLog = { + 'level': 'WARNING', + 'timestamp': 1640877078.255148, + 'message': 'Executing Test Case: This is Test Case tcss1001', + 'test_suite_execution_id': 243, + 'test_case_execution_id': 954 + }; + it('check getLogCategory', () => { + expect(component).toBeTruthy(); + // Test: check function is returning the valid classname based on the passed data. + expect(component.getLogCategory(infoLog)).toEqual('info-log'); + expect(component.getLogCategory(testSuitsAndErrorLog)).toEqual('error-log testsuits-log'); + expect(component.getLogCategory(testCaseAndWarningLog)).toEqual('warning-log testcase-log'); + }); + + it('check getPrefixChar', () => { + expect(component).toBeTruthy(); + // Test: check function is returning valid prefix character based on log data + expect(component.getPrefixChar(infoLog)).toEqual(''); + expect(component.getPrefixChar(testSuitsAndErrorLog)).toEqual(' * '); + expect(component.getPrefixChar(testCaseAndWarningLog)).toEqual(' - '); + }); + + it('check logs auto scroll', () => { + expect(component).toBeTruthy(); + // Test: check "autoScrollToBottom" value when we update values from other functions. + expect(component.autoScrollToBottom).toBeTruthy(); + component.onUserScroll(); + expect(component.autoScrollToBottom).toBeFalsy(); + component.onAutoScrollIconClick(); + expect(component.autoScrollToBottom).toBeTruthy(); + expect(component.scrollToBottom).toHaveBeenCalledTimes(3); + }); +}); diff --git a/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.ts b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.ts new file mode 100644 index 0000000..4d65695 --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-log-console/test-log-console.component.ts @@ -0,0 +1,92 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { AfterViewChecked, Component, ElementRef, OnInit, ViewChild } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { APP_STATE } from 'src/app/shared/utils/constants'; + +@Component({ + selector: 'app-test-log-console', + templateUrl: './test-log-console.component.html', + styleUrls: ['./test-log-console.component.scss'] +}) +export class TestLogConsoleComponent implements OnInit, AfterViewChecked { + @ViewChild('logsParentDiv') public logsScrollContainer: ElementRef | undefined; + autoScrollToBottom: boolean; + cols: any = [ + { field: 'message', header: 'message' } + ]; + constructor(public testRunAPI: TestRunAPI, public sharedAPI: SharedAPI) { + this.autoScrollToBottom = true; + } + + ngOnInit() { + this.scrollToBottom(); + } + + ngAfterViewChecked() { + this.scrollToBottom(); + } + + getFilteredLogs() { // Dont store getTestLogs() to local variable(contains huge data) + if (this.testRunAPI.getLogsFilterKey()) { + return this.testRunAPI.getTestLogs().filter((ele: any) => + ele.message.toLowerCase().includes(this.testRunAPI.getLogsFilterKey().toLowerCase())); + } else { + return this.testRunAPI.getTestLogs(); + } + } + + scrollToBottom(forceScroll = false): void { + const scrollElement: HTMLElement | null = document.querySelector('.log-console-parent .cdk-virtual-scroll-viewport'); + if (((forceScroll) || (this.autoScrollToBottom && this.sharedAPI.getAppState() === APP_STATE[1])) && scrollElement) { + try { + if (!forceScroll) { + scrollElement.scrollTop = scrollElement.scrollHeight; + } else { + scrollElement.scrollTo({ top: scrollElement.scrollHeight, behavior: 'smooth' }); + } + } catch (err) { } + } + } + + onUserScroll() { + this.autoScrollToBottom = false; + } + onAutoScrollIconClick() { + this.autoScrollToBottom = true; + this.scrollToBottom(true); + } + getLogCategory(log: any) { + let logCategory = log.level.toLowerCase() + '-log'; + if (log.test_case_execution_index) { + logCategory += ' testcase-log'; + } else if (log.test_suite_execution_index) { + logCategory += ' testsuits-log'; + } + return logCategory; + } + getPrefixChar(log: any) { + let prefixChar = ''; + if (log.test_case_execution_index) { + prefixChar = ' - '; + } else if (log.test_suite_execution_index) { + prefixChar = ' * '; + } + return prefixChar; + } +} diff --git a/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.html b/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.html new file mode 100644 index 0000000..c773d34 --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.html @@ -0,0 +1,38 @@ + +
+
+
+ Logs +
+
+
+
+ + + + +
+
+ + +
+
+
diff --git a/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.scss b/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.scss new file mode 100644 index 0000000..2f0e02b --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.scss @@ -0,0 +1,77 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../../../../styles/colors"; +@import "../../../../../../styles/custom.scss"; + +:host ::ng-deep .test-log-toolbar { + .test-log-toolbar-header { + height: 100%; + background-color: $execTableHeader; + .table-heading { + @extend .table-heading; + padding: 14px; + } + .input-serach-logs { + height: 28px; + font-size: 14px; + box-shadow: unset; + } + .p-input-icon-left { + padding: 8px 14px; + padding-right: 0; + .pi-search { + padding-left: 14px; + left: 12px; + font-size: 14px; + top: 24px; + } + } + } + .download-logs-div, + .pdf-logs-div { + width: 28px; + height: 28px; + margin: 8px 4px; + padding: 6px; + border-radius: 3px; + } + .download-logs-div { + background-color: $warning; + color: $lightGray; + } + .pdf-logs-div { + background-color: $ceruleanBlue; + color: $white; + } + .disable-logs-icon * { + cursor: not-allowed; + opacity: 0.5; + } + .logs-search-arrow { + margin-top: 8px; + margin-right: 10px; + height: 28px; + border: 1px solid $creamWhite; + .pi { + font-size: 14px; + color: $color1; + &:hover { + color: $color2; + } + } + } +} diff --git a/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.ts b/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.ts new file mode 100644 index 0000000..ec34a88 --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-log-toolbar/test-log-toolbar.component.ts @@ -0,0 +1,121 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { AfterViewInit, Component, OnInit } from '@angular/core'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { saveAs } from 'file-saver'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { APP_STATE } from 'src/app/shared/utils/constants'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; + +@Component({ + selector: 'app-test-log-toolbar', + templateUrl: './test-log-toolbar.component.html', + styleUrls: ['./test-log-toolbar.component.scss'] +}) +export class TestLogToolbarComponent { + appState = APP_STATE; + constructor(public testRunAPI: TestRunAPI, public sharedAPI: SharedAPI, public sharedService: SharedService) { } + + // Using Blob save the execution data as file + saveExecHistoryAsFile() { + const newTestRun: any = this.sharedAPI.getTestReportData(); + const newTestRunStr = JSON.stringify(newTestRun); + const file = new Blob([newTestRunStr], { type: 'text/plain;charset=utf-8' }); + saveAs(file, newTestRun.title + '-' + newTestRun.id.toString() + '.json'); + this.sharedService.cursorBusy(false); + } + + // Take latest execution data and download as file + downloadExecHistory() { + if (this.sharedAPI.getAppState() === APP_STATE[0]) { + this.sharedService.cursorBusy(true); + const newTestRun: any = this.testRunAPI.getRunningTestCasesRawData(); + this.testRunAPI.getTestReportData(newTestRun.id, this.saveExecHistoryAsFile.bind(this)); + } + } + + // Download the logs as file + downloadTestLogs() { + if (this.sharedAPI.getAppState() === APP_STATE[0]) { + this.sharedService.cursorBusy(true); + this.testRunAPI.getLogs(this.testRunAPI.getRunningTestCasesRawData().id, this.saveLogs.bind(this), false); + } + } + + onLogsFilterKeyChange(event: any) { + this.testRunAPI.setLogsFilterKey(event.target.value); + this.testRunAPI.setHighlightedLog(0); + const scrollElement: HTMLElement | null = document.querySelector('.log-console-parent .cdk-virtual-scroll-viewport'); + if (scrollElement) { + scrollElement.scrollTop = 0; + } + } + + getFilteredLogsLegth() { + if (this.testRunAPI.getLogsFilterKey()) { + return this.testRunAPI.getTestLogs().filter((ele: any) => + ele.message.toLowerCase().includes(this.testRunAPI.getLogsFilterKey().toLowerCase())).length; + } else { + return this.testRunAPI.getTestLogs().length; + } + } + + onLogSearchUpAndDown(type: any) { + const currentIndex = this.testRunAPI.getHighlightedLog(); + let newIndex = 0; + const filteredLogsLegth = this.getFilteredLogsLegth(); + if (type === 'DOWN') { + if (currentIndex === filteredLogsLegth - 1) { + newIndex = 0; + } else { + newIndex = currentIndex + 1; + } + } else if (type === 'UP') { + if (currentIndex === 0) { + newIndex = filteredLogsLegth - 1; + } else { + newIndex = currentIndex - 1; + } + } + this.testRunAPI.setHighlightedLog(newIndex); + + const className = '.logs_tr_index_' + newIndex; + const highlightedElement: HTMLElement | null = document.querySelector(className); + const scrollElement: HTMLElement | null = document.querySelector('.log-console-parent .cdk-virtual-scroll-viewport'); + if (highlightedElement) { + highlightedElement.scrollIntoView({ behavior: 'smooth', block: 'center' }); + } else if (scrollElement) { + const scrollTopVal = newIndex / filteredLogsLegth * scrollElement.scrollHeight; + scrollElement.scrollTop = scrollTopVal; + } + } + + onKeydown(event: any) { + if (event.key === 'Enter') { + if (event.shiftKey) { + this.onLogSearchUpAndDown('UP'); + } else { + this.onLogSearchUpAndDown('DOWN'); + } + } + } + saveLogs(data: any) { + const file = new Blob([data], { type: 'text/plain;charset=utf-8' }); + saveAs(file, this.testRunAPI.getRunningTestCasesRawData().title + '.log'); + this.sharedService.cursorBusy(false); + } +} diff --git a/src/app/components/test/test-execution/test-logs/test-logs.component.html b/src/app/components/test/test-execution/test-logs/test-logs.component.html new file mode 100644 index 0000000..3211af1 --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-logs.component.html @@ -0,0 +1,24 @@ + +
+
+ +
+
+ +
+
diff --git a/src/app/components/test/test-execution/test-logs/test-logs.component.scss b/src/app/components/test/test-execution/test-logs/test-logs.component.scss new file mode 100644 index 0000000..9f4d685 --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-logs.component.scss @@ -0,0 +1,23 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +.test-logs-parent { + height: 100%; + overflow: auto; + .log-console-wrapper { + position: relative; + } +} diff --git a/src/app/components/test/test-execution/test-logs/test-logs.component.ts b/src/app/components/test/test-execution/test-logs/test-logs.component.ts new file mode 100644 index 0000000..634d11f --- /dev/null +++ b/src/app/components/test/test-execution/test-logs/test-logs.component.ts @@ -0,0 +1,26 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-test-logs', + templateUrl: './test-logs.component.html', + styleUrls: ['./test-logs.component.scss'] +}) +export class TestLogsComponent { + +} diff --git a/src/app/components/test/test-operator/test-operator.component.html b/src/app/components/test/test-operator/test-operator.component.html new file mode 100644 index 0000000..f3a50ae --- /dev/null +++ b/src/app/components/test/test-operator/test-operator.component.html @@ -0,0 +1,54 @@ + +
+

Operator

+ + Special cases are not allowed + +
+ + + +
+ Click To Add New Operator +
{{operator.name}}
+
+
+
{{operator.name}}
+
+ + +
+
+
+
+
+ +
+ +
+

Operator Name

+ +
+
+ + +
+
diff --git a/src/app/components/test/test-operator/test-operator.component.scss b/src/app/components/test/test-operator/test-operator.component.scss new file mode 100644 index 0000000..7920dc2 --- /dev/null +++ b/src/app/components/test/test-operator/test-operator.component.scss @@ -0,0 +1,64 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +:host ::ng-deep { + .operator { + .p-autocomplete-panel { + left: -37px !important; + } + position: relative; + input { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .operator-name { + max-width: 160px; + overflow: hidden; + text-overflow: ellipsis; + } + } + .operator-small { + font-size: 10px; + } + .operator-item { + min-width: 204px; + display: flex; + justify-content: space-between; + } + .operator-warning { + position: absolute; + top: 13px; + right: 1px; + color: red; + } + .operator-edit-buttons { + padding-top: 9px; + display: flex; + justify-content: space-between; + } + .operator-buttons { + i { + padding: 5px; + } + i:hover { + background-color: rgba(156, 204, 235, 0.432); + border-radius: 20px; + } + } + .add-new-operator { + min-width: 204px; + } +} diff --git a/src/app/components/test/test-operator/test-operator.component.ts b/src/app/components/test/test-operator/test-operator.component.ts new file mode 100644 index 0000000..7354719 --- /dev/null +++ b/src/app/components/test/test-operator/test-operator.component.ts @@ -0,0 +1,114 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { AfterViewInit, Component } from '@angular/core'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { TestSandbox } from '../test.sandbox'; +import * as _ from 'lodash'; +@Component({ + selector: 'app-test-operator', + templateUrl: './test-operator.component.html', + styleUrls: ['./test-operator.component.scss'] +}) +export class TestOperatorComponent implements AfterViewInit { + addNew = false; + filteredOperator?: any = []; + selectedOperator?: any; + warning = false; + operatorEdit = false; + operatorData: any = ''; + allowedCharacter = /[^A-Za-z0-9 _-]/; + + constructor(public testSandbox: TestSandbox, public testRunAPI: TestRunAPI) { + this.selectedOperator = testRunAPI.getSelectedOperator(); + } + + ngAfterViewInit() { + this.blockCopyPasteForOperator(); + } + + // This function will not let user to copy, cut, paste the operator name + blockCopyPasteForOperator() { + const inputBox = document.querySelector('#autoc input') as HTMLButtonElement; + if (inputBox) { + ['paste', 'copy', 'cut'].forEach(eventType => + inputBox.addEventListener(eventType, (e) => { + e.preventDefault(); + }) + ); + } + } + + // filter operator data + onFilterOperator(event: any) { + let filteredData: any = []; + this.addNew = false; + this.warning = false; + const operators = _.cloneDeep(this.testSandbox.getOperatorData()); + let query = event.query; + if (query) { + if (this.allowedCharacter.test(query)) { + const regex = new RegExp(this.allowedCharacter, 'g'); + query = query.replace(regex, ''); + this.selectedOperator = { name: query }; + } + for (let i = 0; i < operators.length; i++) { + const operator = operators[i]; + if (operator.name.toLowerCase().indexOf(query.toLowerCase()) === 0) { + filteredData.push(operator); + } + } + if (filteredData.length === 0) { + filteredData = [{ name: query }]; + this.addNew = true; + } + this.filteredOperator = filteredData; + } else { + this.filteredOperator = _.cloneDeep(this.testSandbox.getOperatorData()); + } + + } + + // add new operator + addNewOperator(newOperator: any) { + this.testSandbox.setOperatorData(newOperator, (data: any) => { + this.testRunAPI.setSelectedOperator(data); + }); + } + + // delete operator + deleteOperator(operator: any) { + this.testSandbox.deleteOperator(operator); + this.testRunAPI.setSelectedOperator(''); + this.selectedOperator = ''; + } + + // When user select operator + onSelectedOperator(operator: any) { + this.testRunAPI.setSelectedOperator(operator); + } + isString(value: any) { + return typeof value === 'string'; + } + editOperator(data: any) { + this.operatorData = data; + this.operatorEdit = true; + } + updateOperator() { + this.testSandbox.updateOperator(this.operatorData); + this.operatorEdit = false; + } +} diff --git a/src/app/components/test/test.component.html b/src/app/components/test/test.component.html new file mode 100644 index 0000000..b9146d9 --- /dev/null +++ b/src/app/components/test/test.component.html @@ -0,0 +1,38 @@ + +
+
+ + + +
+

New Test Run

+ +
+ + +
+
+ + +
diff --git a/src/app/components/test/test.component.scss b/src/app/components/test/test.component.scss new file mode 100644 index 0000000..be12f1e --- /dev/null +++ b/src/app/components/test/test.component.scss @@ -0,0 +1,89 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../../../styles/colors"; +@import "../../../styles/custom.scss"; + +:host ::ng-deep .p-card-comp { + flex: 1 1 auto; + & > .p-component { + height: 100%; + box-shadow: 0px 6px 12px 3px rgb(0 0 0 / 10%); + } + .sub-heading { + font-size: 18px; + } + /* Override CSS */ + .p-card-body { + padding: 30px; + } + .p-card-content { + padding: 0; + } + .heading-text { + @extend .heading-text; + } + .sub-heading { + font-family: "Roboto-Regular"; + font-size: 16px; + color: $lightBlack; + } + .textbox-label { + font-family: "Roboto-Regular"; + font-size: 14px; + color: $bluishGray; + } + h3 { + padding: 0; + margin: 0; + } + .p-card-body { + height: 100%; + padding: 0; + .p-card-content { + height: 100%; + } + } + .test-parent, + .app-test-component { + height: 100%; + } + .test-parent { + padding: 15px; + } + p-badge .p-badge.p-component { + min-width: 20px; + height: 20px; + line-height: 20px; + } + .success { + color: $success; + } + .error { + color: $error; + } + .pi-spinner { + color: $warning; + } +} +.card-comp-parent-div { + height: calc(100vh - 97px); + width: calc(100vw - 114px); + margin: 14px; + .p-card-parent { + height: 100%; + } +} diff --git a/src/app/components/test/test.component.ts b/src/app/components/test/test.component.ts new file mode 100644 index 0000000..37b88cd --- /dev/null +++ b/src/app/components/test/test.component.ts @@ -0,0 +1,37 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { AfterViewInit, ChangeDetectorRef, Component, Injectable } from '@angular/core'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { ProjectsAPI } from 'src/app/shared/core_apis/project'; +import { TestSandbox } from './test.sandbox'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; + +@Component({ + selector: 'app-test', + templateUrl: './test.component.html', + styleUrls: ['./test.component.scss'] +}) + +@Injectable() +export class TestComponent implements AfterViewInit { + constructor(public testRunAPI: TestRunAPI, public projectsAPI: ProjectsAPI, public testSandBox: TestSandbox, + public sharedAPI: SharedAPI, public changeDetectorRef: ChangeDetectorRef) { } + + ngAfterViewInit() { + this.changeDetectorRef.detectChanges(); + } +} diff --git a/src/app/components/test/test.sandbox.ts b/src/app/components/test/test.sandbox.ts new file mode 100644 index 0000000..7851353 --- /dev/null +++ b/src/app/components/test/test.sandbox.ts @@ -0,0 +1,205 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { TestRunAPI } from 'src/app/shared/core_apis/test-run'; +import { TestRunStore } from 'src/app/store/test-run-store'; +import * as _ from 'lodash'; +@Injectable() +export class TestSandbox { + constructor(public testRunStore: TestRunStore, public testRunAPI: TestRunAPI, public sharedAPI: SharedAPI) { + } + // get's runtestcase data + getRunTestCaseData() { + return [...this.testRunStore.runTestCases]; + } + // get's testsuite category + getTestSuiteCategory() { + const testSuite = Object.keys(this.testRunStore.testSuiteCategory.test_collections).map((data) => data); + return testSuite; + } + // set's selected data in mobx + setSelectedData(selectedData: any) { + const defaulTestcases = _.cloneDeep(this.testRunStore.runTestCases); + // eslint-disable-next-line prefer-const + let selectedTestCases = _.cloneDeep(this.testRunStore.selectedTestCase); + if (selectedData === -2) { + selectedTestCases[this.getCurrentTestCategory()].length = 0; + } else if (selectedData === -1) { + selectedTestCases[this.getCurrentTestCategory()] = defaulTestcases[this.getCurrentTestCategory()]; + } else if (selectedTestCases[this.getCurrentTestCategory()][selectedData] === undefined || + selectedTestCases[this.getCurrentTestCategory()][selectedData] === null + || selectedTestCases[this.getCurrentTestCategory()][selectedData].children.length !== + defaulTestcases[this.getCurrentTestCategory()][selectedData].children.length) { + selectedTestCases[this.getCurrentTestCategory()][selectedData] = defaulTestcases[this.getCurrentTestCategory()][selectedData]; + } else { + selectedTestCases[this.getCurrentTestCategory()][selectedData] = undefined; + } + this.testRunStore.setSelectedTestCase(selectedTestCases); + } + // get's selected data + getSelectedData() { + return this.testRunStore.selectedTestCase; + } + // get's last checked + getLastChecked() { + return this.testRunStore.lastChecked; + } + // set's last checked + setLastChecked(lastChecked: any) { + this.testRunStore.setLastChecked(lastChecked); + } + // set's selected children in mobx + setSelectedChild(data: any) { + const selectedData = _.cloneDeep(this.testRunStore.selectedTestCase); + if (data.length === 0) { + selectedData[this.getCurrentTestCategory()][this.getLastChecked()] = undefined; + } else { + if (selectedData[this.getCurrentTestCategory()][data[0].parentKey]) { + selectedData[this.getCurrentTestCategory()][data[0].parentKey].children = data; + } else { + selectedData[this.getCurrentTestCategory()][data[0].parentKey] = + _.cloneDeep(this.getRunTestCaseData()[this.getCurrentTestCategory()][data[0].parentKey]); + selectedData[this.getCurrentTestCategory()][data[0].parentKey].children = data; + } + } + this.testRunStore.setSelectedTestCase(selectedData); + } + // set's onclick changes + setOnClickChanges() { + this.testRunStore.setOnClickChanges(); + } + // get's onclick changes + getOnClickChanges() { + return this.testRunStore.onClickChange; + } + // set's current test screen (selection / execution) + setTestScreen(value: any) { + this.testRunStore.setTestScreen(value); + } + // get's current test screen (selection / execution) + getTestScreen() { + return this.testRunStore.testScreen; + } + // get's test execution result + getTestExecutionResult() { + return this.testRunStore.testExecutionResult; + } + // get's current test category + getCurrentTestCategory() { + return this.testRunStore.currentTestCategory; + } + // convert's object into array of objects in required format + getTestData() { + const testCollections = this.testRunStore.testSuiteCategory.test_collections; + const testRunData: any = []; + Object.keys(testCollections).forEach((testCategory, testCategoryIndex) => { + const parsingData = testCollections[testCategory].test_suites; + testRunData[testCategoryIndex] = []; + Object.keys(parsingData).forEach((element, index) => { + testRunData[testCategoryIndex][index] = parsingData[element].metadata; + testRunData[testCategoryIndex][index].key = index; + testRunData[testCategoryIndex][index].children = []; + Object.keys(parsingData[element].test_cases).forEach((testCases, testCasesIndex) => { + testRunData[testCategoryIndex][index].children[testCasesIndex] = parsingData[element].test_cases[testCases].metadata; + testRunData[testCategoryIndex][index].children[testCasesIndex].count = 1; + testRunData[testCategoryIndex][index].children[testCasesIndex].parentKey = index; + testRunData[testCategoryIndex][index].children[testCasesIndex].key = index + '_' + testCasesIndex; + testRunData[testCategoryIndex][index].children[testCasesIndex].picsKey = testCasesIndex; + }); + }); + }); + this.testRunStore.setRunTestCases(testRunData); + this.sharedAPI.setTestCaseLoader(false); + } + // set's current test category + setCurrentTestCategory(category: any) { + this.testRunStore.setCurrentTestCategory(category); + this.testRunStore.setLastChecked(0); + } + // set's selected test cases + setDefaultSelectedData(selectedData: any) { + this.testRunStore.setSelectedTestCase(selectedData); + } + // Trigger core_apis function to create new test-run-config + async createTestRunConfig(requestJson: any) { + const testConfigData = await this.testRunAPI.createTestRunConfig(requestJson); + return testConfigData; + } + // Trigger core_apis function to create new test-run-executions + createTestRunExecution(callback: any, testConfigId: number, testName: string, operatorId: any, description: any) { + const selectedProjectId = this.sharedAPI.getSelectedProjectType().id; + this.testRunAPI.createTestRunExecution(callback, testConfigId, selectedProjectId, testName, operatorId, description); + } + // Start test execution and set initial running testcase data + setRunningTestsDataOnStart(execId: any) { + this.testRunAPI.setRunningTestsDataOnStart(execId); + } + // get operator data + getOperatorData() { + return this.testRunStore.operators; + } + // set operator data + setOperatorData(operatorName: any, data: any) { + return this.testRunAPI.setOperatorData(operatorName, data); + } + // delete operator data + deleteOperator(operator: any) { + this.testRunAPI.deleteOperator(operator); + } + // update opeator + updateOperator(data: any) { + this.testRunAPI.updateOperator(data); + } + // get test case query + getTestCaseQuery() { + return this.testRunStore.testCaseQuery; + } + // set filtered data + setFilteredData(filteredData: any) { + this.testRunStore.setRunTestCases(filteredData); + } + // set test case query + setTestCaseQuery(query: any) { + this.testRunStore.setTestCaseQuery(query); + } + + archiveTestRun(id: any) { + this.testRunAPI.archiveTestRun(id); + } + + unarchiveTestRun(id: any) { + this.testRunAPI.unarchiveTestRun(id); + } + deleteTestRun(id: any) { + this.testRunAPI.deleteTestRun(id); + + } + getArchivedTestResult() { + return this.testRunStore.archivedTestResult; + } + getTestExecutionResults(projectId: any) { + this.testRunAPI.getTestExecutionResult(false, projectId); + this.testRunAPI.getTestExecutionResult(true, projectId); + } + getDetectPicsChanges() { + return this.testRunStore.detectPicsChanges; + } + setDetectPicsChanges(data: any) { + this.testRunStore.setDetectPicsChanges(data); + } +} diff --git a/src/app/components/utility/upload-file/upload-file.component.html b/src/app/components/utility/upload-file/upload-file.component.html new file mode 100644 index 0000000..962adf9 --- /dev/null +++ b/src/app/components/utility/upload-file/upload-file.component.html @@ -0,0 +1,29 @@ + +
+

Utility

+

File Upload

+
+
+ + +
+

{{fileName}}

+
+
diff --git a/src/app/components/utility/upload-file/upload-file.component.scss b/src/app/components/utility/upload-file/upload-file.component.scss new file mode 100644 index 0000000..79c1320 --- /dev/null +++ b/src/app/components/utility/upload-file/upload-file.component.scss @@ -0,0 +1,51 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +.input-file { + opacity: 0; + width: 0.1px; + height: 0.1px; + position: absolute; +} +.file-upload label { + display: flex; + position: relative; + width: 100px; + height: 40px; + border-radius: 4px; + background: var(--blue-500); + align-items: center; + justify-content: center; + color: #fff; + .pi-upload { + padding-right: 8px; + } +} +.upload-file { + padding: 8px; + margin: 13px; + border: 1px solid #e3e1e187; + box-shadow: 0px 6px 12px 3px rgb(0 0 0 / 10%); + .icon-document-text-1 { + padding-right: 5px; + } +} +.file-name { + margin: auto 0 auto 15px; +} +.utility-title { + margin-left: 13px; +} diff --git a/src/app/components/utility/upload-file/upload-file.component.spec.ts b/src/app/components/utility/upload-file/upload-file.component.spec.ts new file mode 100644 index 0000000..84f66cd --- /dev/null +++ b/src/app/components/utility/upload-file/upload-file.component.spec.ts @@ -0,0 +1,50 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { TestBed } from '@angular/core/testing'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; +import { UploadFileComponent } from './upload-file.component'; + +class MockUploadFile { + returnData() { + return []; + } +} + +describe('UploadFileComponent', () => { + let component: UploadFileComponent; + let sharedAPI, sharedService; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + UploadFileComponent, + { provide: SharedAPI, useClass: MockUploadFile }, + { provide: SharedService, useClass: MockUploadFile } + ] + }) + .compileComponents(); + component = TestBed.inject(UploadFileComponent); + sharedAPI = TestBed.inject(SharedAPI); + sharedService = TestBed.inject(SharedService); + }); + + it('should create UploadFileComponent', () => { + expect(component).toBeTruthy(); + expect(component.onUpload).toBeTruthy(); + }); +}); diff --git a/src/app/components/utility/upload-file/upload-file.component.ts b/src/app/components/utility/upload-file/upload-file.component.ts new file mode 100644 index 0000000..e0fad16 --- /dev/null +++ b/src/app/components/utility/upload-file/upload-file.component.ts @@ -0,0 +1,47 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Component } from '@angular/core'; +import { MessageService } from 'primeng/api'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { SharedService } from 'src/app/shared/core_apis/shared-utils'; + +@Component({ + selector: 'app-upload-file', + templateUrl: './upload-file.component.html', + styleUrls: ['./upload-file.component.scss'] +}) +export class UploadFileComponent { + data: any = ''; + fileName = ''; + fileSize = ''; + constructor(public sharedAPI: SharedAPI, public sharedService: SharedService) { } + + onUpload(event: any) { + const file: File = event.target.files.item(0); + if (file.type === 'application/json') { + this.fileName = file.name; + const fileReader = new FileReader(); + fileReader.onload = (e) => { + this.data = fileReader.result; + this.sharedAPI.setTestReportData(JSON.parse(this.data)); + }; + fileReader.readAsText(file); + } else { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Upload a valid JSON file' }); + } + } +} diff --git a/src/app/components/utility/utility.component.html b/src/app/components/utility/utility.component.html new file mode 100644 index 0000000..e11bc78 --- /dev/null +++ b/src/app/components/utility/utility.component.html @@ -0,0 +1,160 @@ + +
+ + + +
+ +
+ +
+
+
+

Matter Test Harness - Test Run Report

+ + +
+ +
+

Test Run Information

+
+
+

Test Name

+

{{sharedAPI.getTestReportData().title}}

+
+
+

Status

+

{{sharedAPI.getTestReportData().state | + titlecase}}

+
+
+

Date

+

+ {{sharedAPI.getTestReportData().started_at | date:'mediumDate'}}

+ +

-

+
+
+
+

Time

+

{{getTime(sharedAPI.getTestReportData().started_at) | date:'H:m:s'}} - + {{getTime(sharedAPI.getTestReportData().completed_at) | date:'H:m:s'}} + ({{getTimeDifference(sharedAPI.getTestReportData().started_at,sharedAPI.getTestReportData().completed_at)}}) +

+
+
+

Operator

+

+ {{sharedAPI.getTestReportData().operator.name}}

+

+ Unknown

+
+
+ +
+ +
+
+
diff --git a/src/app/components/utility/utility.component.scss b/src/app/components/utility/utility.component.scss new file mode 100644 index 0000000..98513f5 --- /dev/null +++ b/src/app/components/utility/utility.component.scss @@ -0,0 +1,184 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +.test-report { + margin: 13px; + height: calc(100vh - 274px); + overflow: auto; +} +.test-border, +.utility-parent { + border: 1px solid #e3e1e187; + box-shadow: 0px 6px 12px 3px rgb(0 0 0 / 10%); +} +.data-table { +table-layout: fixed; +} +table, +th, +td { + border: 1px solid #c3bfbf; + border-collapse: collapse; +} +th { + background-color: #eeebf047; +} +.error { + color: #ffc933; +} +.passed { + color: #007e33; +} +.pending { + color: #2193f6; +} +.failed { + color: #cc0000; +} +.cancelled { + color: #ff8800; +} +.report-title { + text-align: left; +} +.detail-divider, +.detail-summary { + border-top: 2px solid rgba(151, 151, 151, 0.849); + margin: 0 0 18px 0; +} + +.detail-summary { + margin-bottom: 0; +} +.test-case { + padding-left: 22px !important; +} +.test-step { + padding-left: 37px !important; +} +.report-heading { + width: 90vw; +} +.report-detail, +.report-summary { + width: 90vw; + table { + width: 100%; + margin-bottom: 20px; + tr { + line-height: 35px; + } + th, + td { + text-align: left; + padding: 0 6px 0 6px; + } + } +} +.report-detail { + .test-run { + padding: 10px 35px 1px 35px; + border: 1px solid #c3bfbf; + } + .test-title { + font-size: 12px; + } + .bold-test-title { + font-weight: 400; + } +} +.bold-title { + font-weight: bold; +} +.loader-div { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); +} + +.utility-parent { + margin: 8px; +} +.d-none { + display: none; +} +:host ::ng-deep .report-summary-title { + .custom-select { + background: none !important; + border: none !important; + width: 200px; + } +} +:host ::ng-deep .test-report { + background: white !important; +} +.text-warp { + line-break:anywhere; +} +.statistics { + width: 90vw; + .statistics-bar { + border: 1px solid #c3bfbf; + height: 75px; + } + .progress-bar-legends { + text-align: center; + .progress-bar-text { + margin-right: 25px; + span { + color: grey; + } + } + .circle { + height: 8px; + width: 8px; + border-radius: 50%; + display: inline-block; + margin-right: 5px; + } + } + .progress-bar { + width: 70%; + height: 15px; + border: 1px solid #c3bfbf; + border-radius: 7px; + margin: 17px auto; + background-image: linear-gradient(#007e33, #007e33), + linear-gradient(#cc0000, #cc0000), linear-gradient(#ffc933, #ffc933), + linear-gradient(#ff8800, #ff8800), linear-gradient(#2193f6, #2193f6), + linear-gradient(rgb(218, 209, 209), rgb(218, 209, 209)); + background-repeat: no-repeat; + background-size: var(--percent-passed) 100%, var(--percent-failed) 100%, + var(--percent-error) 100%, var(--percent-cancelled) 100%, + var(--percent-pending) 100%, 100% 100%; + } + .error-background { + background: #ffc933; + } + .passed-background { + background: #007e33; + } + .pending-background { + background: #2193f6; + } + .failed-background { + background: #cc0000; + } + .cancelled-background { + background: #ff8800; + } +} diff --git a/src/app/components/utility/utility.component.spec.ts b/src/app/components/utility/utility.component.spec.ts new file mode 100644 index 0000000..f534714 --- /dev/null +++ b/src/app/components/utility/utility.component.spec.ts @@ -0,0 +1,59 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { DatePipe } from '@angular/common'; +import { TestBed } from '@angular/core/testing'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { MainAreaSandbox } from '../main-area/main-area.sandbox'; +import { UtilityComponent } from './utility.component'; + +class MockUtilityProvider { + // sets the uploaded JOSN file + setTestReportData() { + + } + returnData() { + return []; + } +} +describe('UtilityComponent', () => { + let component: UtilityComponent; + let mainAreaSandbox, sharedAPI, date; + beforeEach(async () => { + await TestBed.configureTestingModule({ + providers: [ + UtilityComponent, + { provide: SharedAPI, useClass: MockUtilityProvider }, + { provide: MainAreaSandbox, useClass: MockUtilityProvider }, + { provide: DatePipe } + ] + }) + .compileComponents(); + component = TestBed.inject(UtilityComponent); + mainAreaSandbox = TestBed.inject(MainAreaSandbox); + sharedAPI = TestBed.inject(SharedAPI); + date = TestBed.inject(DatePipe); + }); + + it('should return difference in time', () => { + expect(component.getTimeDifference(0, 0)).toBe('-'); + }); + + it('should return True or False', () => { + expect(component.isFieldDisplayed(1)).toBe(true); + expect(component.isFieldDisplayed(2)).toBe(false); + }); +}); diff --git a/src/app/components/utility/utility.component.ts b/src/app/components/utility/utility.component.ts new file mode 100644 index 0000000..5f4ec82 --- /dev/null +++ b/src/app/components/utility/utility.component.ts @@ -0,0 +1,317 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { DatePipe } from '@angular/common'; +import { Component } from '@angular/core'; +import { SharedAPI } from 'src/app/shared/core_apis/shared'; +import { MainAreaSandbox } from '../main-area/main-area.sandbox'; + +@Component({ + selector: 'app-utility', + templateUrl: './utility.component.html', + styleUrls: ['./utility.component.scss'] +}) +export class UtilityComponent { + testHistory: any = ''; + millis = 0; + statisticsData: any; + data: any = ''; + tableFields = [ + { name: 'Description', id: 1 }, + { name: 'Time Elapsed', id: 2 }, + { name: 'Title', id: 3 } + ]; + selectedFields: any = [ + { name: 'Time Elapsed', id: 2 } + ]; + constructor(public sharedAPI: SharedAPI, public mainAreaSandbox: MainAreaSandbox, public date: DatePipe) { + sharedAPI.setTestReportData(''); + } + // find Time Elapsed + getTimeDifference(start: any, end: any) { + this.millis = new Date(end).getTime() - new Date(start).getTime(); + if (!end || !start) { + return '-'; + } + let minutes = 0, seconds = 0; + if (this.millis > 0) { + minutes = this.millis / 60000; + seconds = (this.millis % 60000) / 1000; + } + return Math.floor(minutes) + 'm' + Math.floor(seconds) + 's'; + } + // returns time + getTime(date: any) { + if (date) { + const time = date.replace(/-/g, '/').replace(/\.(.*[0-9])/g, '').split('T'); + const timeZone = new Date(time[0] + ' PST').toUTCString(); + if (timeZone.includes('08:00:00 GMT')) { + date = time[0] + ' ' + time[1] + ' PDT'; + } else { + date = time[0] + ' ' + time[1] + ' PST'; + } + return new Date(date); + } else { + return NaN; + } + } + // filter columns + isFieldDisplayed(id: any) { + let isDisplay = 0; + this.selectedFields.forEach((data: any) => { + if (data.id === id) { + isDisplay = 1; + } + }); + if (isDisplay) { + return false; + } else { + return true; + } + } + reportStatistics() { + const statistics: any = { 'pending': 0, 'error': 0, 'cancelled': 0, 'failed': 0, 'passed': 0 }; + const states: any = {}; + let percent = 0, toalCase = 0; + this.sharedAPI.getTestReportData().test_suite_executions.forEach((data: any) => { + data.test_case_executions.forEach((testCases: any) => { + statistics[testCases.state]++; + toalCase++; + }); + }); + if (toalCase > 0) { + percent = 100 / toalCase; + } + states['passed'] = (statistics.passed || 0) * percent; + states['failed'] = (statistics.failed || 0) * percent + states.passed; + states['error'] = (statistics.error || 0) * percent + states.failed; + states['cancelled'] = (statistics.cancelled || 0) * percent + states.error; + states['pending'] = (statistics.pending || 0) * percent + states.cancelled; + const final = '--percent-passed:' + states.passed + '%; --percent-failed:' + states.failed + '%; --percent-error:' + + states.error + '%; --percent-cancelled:' + states.cancelled + '%; --percent-pending:' + states.pending + '%;'; + this.statisticsData = statistics; + return final; + } + /* eslint-disable prefer-const */ + // Print report + printDoc() { + let printContents, popupWin; + printContents = document.getElementById('print-section')?.innerHTML; + let operator = 'Unknown'; + if (this.sharedAPI.getTestReportData().operator) { + operator = this.sharedAPI.getTestReportData().operator.name; + } + popupWin = window.open(''); + popupWin?.document.open(); + popupWin?.document.write(` + + + Test Report + + +
+

Matter Test Harness - Test Run Report

+ +
+
+

Test Run Information

+ + + + + + + + + + + + + + + +
Test NameStatusDateTimeOperator
${this.sharedAPI.getTestReportData().title}${this.sharedAPI.getTestReportData().state}${this.date.transform(this.sharedAPI.getTestReportData().started_at, 'mediumDate')}${this.date.transform(this.sharedAPI.getTestReportData().started_at, 'H:m:s')} - + ${this.date.transform(this.sharedAPI.getTestReportData().started_at, 'H:m:s')} + (${this.getTimeDifference(this.sharedAPI.getTestReportData().started_at, this.sharedAPI.getTestReportData().completed_at)})${operator}
+
+ ${printContents} + ` + ); + popupWin?.document.close(); + } + + +} diff --git a/src/app/shared/api/db.json b/src/app/shared/api/db.json new file mode 100644 index 0000000..fb4228b --- /dev/null +++ b/src/app/shared/api/db.json @@ -0,0 +1,1972 @@ +{ + "settings-json": { + "Wi-Fi": { + "SSID": { + "type": "textbox", + "value": "802.11" + }, + "Password": { + "type": "password", + "value": "user123" + } + }, + "Internet Protocol": { + "IP Address": { + "type": "textbox", + "value": "192.168.1.1" + }, + "User Name": { + "type": "textbox", + "value": "matter" + }, + "Password": { + "type": "password", + "value": "user123" + } + } + }, + "test_run_executions": [ + { + "title": "UI_Test_Run_2021_9_21_17_20_7", + "test_run_config_id": 1, + "project_id": 1, + "id": 1, + "state": "passed", + "started_at": "2021-09-21T11:50:07.968195", + "completed_at": "2021-09-21T11:50:27.461959", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 11 + } + } + }, + { + "title": "UI_Test_Run_2021_10_4_11_33_21", + "test_run_config_id": 8, + "project_id": 1, + "id": 14, + "state": "error", + "started_at": "2021-10-04T06:03:21.503544", + "completed_at": "2021-10-04T06:03:31.884589", + "test_case_stats": { + "test_case_count": 9, + "states": { + "pending": 4, + "executing": 1, + "passed": 1, + "error": 3 + } + } + }, + { + "title": "UI_Test_Run_2021_9_22_18_29_16", + "test_run_config_id": 1, + "project_id": 1, + "id": 2, + "state": "failed", + "started_at": "2021-09-22T12:59:18.790579", + "completed_at": "2021-09-22T12:59:35.139736", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "failed": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_9_24_11_10_24", + "test_run_config_id": 1, + "project_id": 1, + "id": 9, + "state": "failed", + "started_at": "2021-09-24T05:40:24.907671", + "completed_at": "2021-09-24T05:40:37.215519", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "failed": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_9_22_18_30_55", + "test_run_config_id": 1, + "project_id": 1, + "id": 3, + "state": "error", + "started_at": "2021-09-22T13:00:57.606696", + "completed_at": "2021-09-22T13:01:36.267971", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "error": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_9_22_18_32_48", + "test_run_config_id": 1, + "project_id": 1, + "id": 4, + "state": "error", + "started_at": "2021-09-22T13:02:50.694851", + "completed_at": "2021-09-22T13:03:29.423921", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "error": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_9_22_18_34_6", + "test_run_config_id": 1, + "project_id": 1, + "id": 5, + "state": "failed", + "started_at": "2021-09-22T13:04:08.434146", + "completed_at": "2021-09-22T13:04:19.406165", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "failed": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_9_22_18_34_32", + "test_run_config_id": 1, + "project_id": 1, + "id": 6, + "state": "passed", + "started_at": "2021-09-22T13:04:34.737577", + "completed_at": "2021-09-22T13:04:46.650205", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 11 + } + } + }, + { + "title": "UI_Test_Run_2021_9_24_11_10_29", + "test_run_config_id": 1, + "project_id": 1, + "id": 11, + "state": "error", + "started_at": "2021-09-24T05:47:53.189822", + "completed_at": "2021-09-24T05:48:32.005788", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "error": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_9_22_18_54_54", + "test_run_config_id": 1, + "project_id": 1, + "id": 7, + "state": "passed", + "started_at": "2021-09-22T13:24:56.516819", + "completed_at": "2021-09-22T13:25:11.617874", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 11 + } + } + }, + { + "title": "UI_Test_Run_2021_9_24_11_5_54", + "test_run_config_id": 1, + "project_id": 1, + "id": 8, + "state": "failed", + "started_at": "2021-09-24T05:35:54.474206", + "completed_at": "2021-09-24T05:36:07.498311", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "failed": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_9_24_11_20_21", + "test_run_config_id": 1, + "project_id": 1, + "id": 12, + "state": "failed", + "started_at": "2021-09-24T05:50:21.686938", + "completed_at": "2021-09-24T05:50:34.822169", + "test_case_stats": { + "test_case_count": 11, + "states": { + "passed": 10, + "failed": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_10_13_17_57_24", + "test_run_config_id": 12, + "project_id": 1, + "id": 18, + "state": "error", + "started_at": "2021-10-13T12:27:25.120983", + "completed_at": "2021-10-13T12:27:36.484105", + "test_case_stats": { + "test_case_count": 19, + "states": { + "passed": 18, + "error": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_10_14_11_46_25", + "test_run_config_id": 13, + "project_id": 1, + "id": 19, + "state": "error", + "started_at": "2021-10-14T06:16:25.890110", + "completed_at": "2021-10-14T06:17:00.358241", + "test_case_stats": { + "test_case_count": 14, + "states": { + "passed": 10, + "error": 4 + } + } + }, + { + "title": "UI_Test_Run_2021_10_14_14_53_43", + "test_run_config_id": 14, + "project_id": 1, + "id": 20, + "state": "error", + "started_at": "2021-10-14T09:23:45.797940", + "completed_at": "2021-10-14T09:23:55.969720", + "test_case_stats": { + "test_case_count": 8, + "states": { + "pending": 3, + "executing": 1, + "passed": 1, + "error": 3 + } + } + }, + { + "title": "UI_Test_Run_2021_10_14_16_0_47", + "test_run_config_id": 15, + "project_id": 1, + "id": 21, + "state": "pending", + "started_at": null, + "completed_at": null, + "test_case_stats": { + "test_case_count": 1, + "states": { + "pending": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_11_47_14", + "test_run_config_id": 32, + "project_id": 1, + "id": 38, + "state": "pending", + "started_at": null, + "completed_at": null, + "test_case_stats": { + "test_case_count": 10, + "states": { + "pending": 10 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_10_7_3", + "test_run_config_id": 22, + "project_id": 1, + "id": 28, + "state": "error", + "started_at": "2021-10-18T04:37:03.797917", + "completed_at": "2021-10-18T04:37:25.610675", + "test_case_stats": { + "test_case_count": 2, + "states": { + "error": 2 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_11_49_36", + "test_run_config_id": 33, + "project_id": 1, + "id": 39, + "state": "pending", + "started_at": null, + "completed_at": null, + "test_case_stats": { + "test_case_count": 19, + "states": { + "pending": 19 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_10_14_57", + "test_run_config_id": 24, + "project_id": 1, + "id": 30, + "state": "error", + "started_at": "2021-10-18T04:44:57.090128", + "completed_at": "2021-10-18T04:45:06.904662", + "test_case_stats": { + "test_case_count": 1, + "states": { + "error": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_11_55_52", + "test_run_config_id": 34, + "project_id": 1, + "id": 40, + "state": "pending", + "started_at": null, + "completed_at": null, + "test_case_stats": { + "test_case_count": 19, + "states": { + "pending": 19 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_11_18_45", + "test_run_config_id": 30, + "project_id": 1, + "id": 36, + "state": "error", + "started_at": "2021-10-18T05:48:51.619435", + "completed_at": "2021-10-18T05:49:01.783940", + "test_case_stats": { + "test_case_count": 19, + "states": { + "passed": 18, + "error": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_11_32_55", + "test_run_config_id": 31, + "project_id": 1, + "id": 37, + "state": "executing", + "started_at": "2021-10-18T06:03:02.021041", + "completed_at": null, + "test_case_stats": { + "test_case_count": 12, + "states": { + "pending": 8, + "executing": 1, + "passed": 1, + "error": 2 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_12_0_7", + "test_run_config_id": 35, + "project_id": 1, + "id": 41, + "state": "pending", + "started_at": null, + "completed_at": null, + "test_case_stats": { + "test_case_count": 1, + "states": { + "pending": 1 + } + } + }, + { + "title": "UI_Test_Run_2021_10_18_12_11_9", + "test_run_config_id": 36, + "project_id": 1, + "id": 42, + "state": "pending", + "started_at": null, + "completed_at": null, + "test_case_stats": { + "test_case_count": 1, + "states": { + "pending": 1 + } + } + }, + { + "test_run_execution_in": { + "title": "UI_Test_Run_Redo_2021_11_25_14_32_50", + "test_run_config_id": 35, + "project_id": 1 + }, + "id": 43 + } + ], + "projects": [ + { + "name": "Color Bulb", + "dut_type": "controller", + "dut_vid": "string", + "dut_pid": "string", + "wifi_ssid": "string", + "wifi_password": "string", + "thread_rcp_serial_path": "string", + "thread_channel": "string", + "thread_panid": "string", + "thread_extpanid": "string", + "thread_masterkey": "string", + "thread_networkname": "string", + "thread_on_mesh_prefix": "string", + "id": 1 + }, + { + "name": "Echo dot", + "dut_type": "controller", + "dut_vid": "string", + "dut_pid": "string", + "wifi_ssid": "string", + "wifi_password": "string", + "thread_rcp_serial_path": "string", + "thread_channel": "string", + "thread_panid": "string", + "thread_extpanid": "string", + "thread_masterkey": "string", + "thread_networkname": "string", + "thread_on_mesh_prefix": "string", + "id": 3 + }, + { + "name": "Echo", + "dut_type": "controller", + "dut_vid": "string", + "dut_pid": "string", + "wifi_ssid": "string", + "wifi_password": "string", + "thread_rcp_serial_path": "string", + "thread_channel": "string", + "thread_panid": "string", + "thread_extpanid": "string", + "thread_masterkey": "string", + "thread_networkname": "string", + "thread_on_mesh_prefix": "string", + "id": 8 + } + ], + "running-testcases": { + "title": "UI_Test_Run_2021_10_28_14_1_46", + "test_run_config_id": 1, + "project_id": 1, + "operator": { + "name": "harish" + }, + "id": 1, + "state": "cancelled", + "started_at": "2021-10-28T08:31:48.674047", + "completed_at": "2021-10-28T09:22:50.277850", + "test_suite_executions": [ + { + "state": "failed", + "public_id": "SampleTestSuite1", + "test_run_execution_id": 1, + "test_suite_metadata_id": 1, + "id": 1, + "started_at": "2021-10-28T08:31:48.687071", + "completed_at": "2021-10-28T08:32:19.903627", + "errors": null, + "test_case_executions": [ + { + "state": "passed", + "public_id": "TCSS1001", + "test_suite_execution_id": 1, + "test_case_metadata_id": 1, + "id": 1, + "started_at": "2021-10-28T08:31:48.694378", + "completed_at": "2021-10-28T08:31:52.768946", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1001", + "title": "This is Test Case tcss1001", + "description": "This is Test Case tcss1001, it will not get a very long description", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 1 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 1, + "id": 1, + "started_at": "2021-10-28T08:31:48.699955", + "completed_at": "2021-10-28T08:31:49.706895", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 1, + "id": 2, + "started_at": "2021-10-28T08:31:49.714056", + "completed_at": "2021-10-28T08:31:50.721312", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 1, + "id": 3, + "started_at": "2021-10-28T08:31:50.730660", + "completed_at": "2021-10-28T08:31:51.739266", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 4", + "test_case_execution_id": 1, + "id": 4, + "started_at": "2021-10-28T08:31:51.745595", + "completed_at": "2021-10-28T08:31:52.751942", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 5", + "test_case_execution_id": 1, + "id": 5, + "started_at": "2021-10-28T08:31:52.758843", + "completed_at": "2021-10-28T08:31:52.764145", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "passed", + "public_id": "TCSS1002", + "test_suite_execution_id": 1, + "test_case_metadata_id": 2, + "id": 2, + "started_at": "2021-10-28T08:31:52.782377", + "completed_at": "2021-10-28T08:31:52.821430", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1002", + "title": "This is Test Case tcss1002", + "description": "This is Test Case tcss1002, it will not get a very long description", + "version": "3.2.1", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 2 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 2, + "id": 6, + "started_at": "2021-10-28T08:31:52.787457", + "completed_at": "2021-10-28T08:31:52.792143", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 2, + "id": 7, + "started_at": "2021-10-28T08:31:52.795063", + "completed_at": "2021-10-28T08:31:52.798826", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 2, + "id": 8, + "started_at": "2021-10-28T08:31:52.801654", + "completed_at": "2021-10-28T08:31:52.805184", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 4", + "test_case_execution_id": 2, + "id": 9, + "started_at": "2021-10-28T08:31:52.809058", + "completed_at": "2021-10-28T08:31:52.812625", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 5", + "test_case_execution_id": 2, + "id": 10, + "started_at": "2021-10-28T08:31:52.815285", + "completed_at": "2021-10-28T08:31:52.818493", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "passed", + "public_id": "TCSS1003", + "test_suite_execution_id": 1, + "test_case_metadata_id": 3, + "id": 3, + "started_at": "2021-10-28T08:31:52.861117", + "completed_at": "2021-10-28T08:31:52.892513", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1003", + "title": "This is Test Case tcss1003", + "description": "This is Test Case tcss1003, it will not get a very long description", + "version": "4.5.6", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 3 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 3, + "id": 11, + "started_at": "2021-10-28T08:31:52.865479", + "completed_at": "2021-10-28T08:31:52.870212", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 3, + "id": 12, + "started_at": "2021-10-28T08:31:52.875182", + "completed_at": "2021-10-28T08:31:52.879834", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 3, + "id": 13, + "started_at": "2021-10-28T08:31:52.883453", + "completed_at": "2021-10-28T08:31:52.887437", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "passed", + "public_id": "TCSS1004", + "test_suite_execution_id": 1, + "test_case_metadata_id": 4, + "id": 4, + "started_at": "2021-10-28T08:31:52.928987", + "completed_at": "2021-10-28T08:31:53.004733", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1004", + "title": "This is Test Case tcss1004", + "description": "This is Test Case tcss1004, it will not get a very long description", + "version": "1.0", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 4 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 4, + "id": 14, + "started_at": "2021-10-28T08:31:52.933620", + "completed_at": "2021-10-28T08:31:52.938036", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 4, + "id": 15, + "started_at": "2021-10-28T08:31:52.942184", + "completed_at": "2021-10-28T08:31:52.946224", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 4, + "id": 16, + "started_at": "2021-10-28T08:31:52.949207", + "completed_at": "2021-10-28T08:31:52.952744", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 4", + "test_case_execution_id": 4, + "id": 17, + "started_at": "2021-10-28T08:31:52.956182", + "completed_at": "2021-10-28T08:31:52.960995", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 5", + "test_case_execution_id": 4, + "id": 18, + "started_at": "2021-10-28T08:31:52.963978", + "completed_at": "2021-10-28T08:31:52.968234", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 6", + "test_case_execution_id": 4, + "id": 19, + "started_at": "2021-10-28T08:31:52.971515", + "completed_at": "2021-10-28T08:31:52.977810", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 7", + "test_case_execution_id": 4, + "id": 20, + "started_at": "2021-10-28T08:31:52.981232", + "completed_at": "2021-10-28T08:31:52.985480", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 8", + "test_case_execution_id": 4, + "id": 21, + "started_at": "2021-10-28T08:31:52.989427", + "completed_at": "2021-10-28T08:31:52.994321", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 9", + "test_case_execution_id": 4, + "id": 22, + "started_at": "2021-10-28T08:31:52.997788", + "completed_at": "2021-10-28T08:31:53.001494", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "passed", + "public_id": "TCSS1005", + "test_suite_execution_id": 1, + "test_case_metadata_id": 5, + "id": 5, + "started_at": "2021-10-28T08:31:53.070111", + "completed_at": "2021-10-28T08:31:53.116938", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1005", + "title": "This is Test Case tcss1005", + "description": "This is Test Case tcss1005, it will not get a very long description", + "version": "1.0", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 5 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 5, + "id": 23, + "started_at": "2021-10-28T08:31:53.077897", + "completed_at": "2021-10-28T08:31:53.082062", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 5, + "id": 24, + "started_at": "2021-10-28T08:31:53.085182", + "completed_at": "2021-10-28T08:31:53.090141", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 5, + "id": 25, + "started_at": "2021-10-28T08:31:53.093621", + "completed_at": "2021-10-28T08:31:53.097726", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 4", + "test_case_execution_id": 5, + "id": 26, + "started_at": "2021-10-28T08:31:53.101024", + "completed_at": "2021-10-28T08:31:53.105082", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 5", + "test_case_execution_id": 5, + "id": 27, + "started_at": "2021-10-28T08:31:53.109536", + "completed_at": "2021-10-28T08:31:53.113486", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "passed", + "public_id": "TCSS1006", + "test_suite_execution_id": 1, + "test_case_metadata_id": 6, + "id": 6, + "started_at": "2021-10-28T08:31:53.160946", + "completed_at": "2021-10-28T08:31:53.208427", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1006", + "title": "This is Test Case tcss1006", + "description": "This is Test Case tcss1006, it will not get a very long description", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 6 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 6, + "id": 28, + "started_at": "2021-10-28T08:31:53.166243", + "completed_at": "2021-10-28T08:31:53.169887", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 6, + "id": 29, + "started_at": "2021-10-28T08:31:53.174315", + "completed_at": "2021-10-28T08:31:53.179275", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 6, + "id": 30, + "started_at": "2021-10-28T08:31:53.182378", + "completed_at": "2021-10-28T08:31:53.186340", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 4", + "test_case_execution_id": 6, + "id": 31, + "started_at": "2021-10-28T08:31:53.190882", + "completed_at": "2021-10-28T08:31:53.195409", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 5", + "test_case_execution_id": 6, + "id": 32, + "started_at": "2021-10-28T08:31:53.198858", + "completed_at": "2021-10-28T08:31:53.203096", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "passed", + "public_id": "TCSS1007", + "test_suite_execution_id": 1, + "test_case_metadata_id": 7, + "id": 7, + "started_at": "2021-10-28T08:31:53.250945", + "completed_at": "2021-10-28T08:31:53.296983", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1007", + "title": "This is Test Case tcss1007", + "description": "This is Test Case tcss1007, it will not get a very long description", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 7 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 7, + "id": 33, + "started_at": "2021-10-28T08:31:53.255749", + "completed_at": "2021-10-28T08:31:53.261658", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 7, + "id": 34, + "started_at": "2021-10-28T08:31:53.264499", + "completed_at": "2021-10-28T08:31:53.268555", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 7, + "id": 35, + "started_at": "2021-10-28T08:31:53.271687", + "completed_at": "2021-10-28T08:31:53.276867", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 4", + "test_case_execution_id": 7, + "id": 36, + "started_at": "2021-10-28T08:31:53.280299", + "completed_at": "2021-10-28T08:31:53.284289", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 5", + "test_case_execution_id": 7, + "id": 37, + "started_at": "2021-10-28T08:31:53.287631", + "completed_at": "2021-10-28T08:31:53.293318", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "passed", + "public_id": "TCSS1008", + "test_suite_execution_id": 1, + "test_case_metadata_id": 8, + "id": 8, + "started_at": "2021-10-28T08:31:53.336871", + "completed_at": "2021-10-28T08:31:53.402611", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1008", + "title": "This is Test Case tcss1008", + "description": "This is Test Case tcss1008, it will not get a very long description", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 8 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 8, + "id": 38, + "started_at": "2021-10-28T08:31:53.342569", + "completed_at": "2021-10-28T08:31:53.346978", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 2", + "test_case_execution_id": 8, + "id": 39, + "started_at": "2021-10-28T08:31:53.350254", + "completed_at": "2021-10-28T08:31:53.354006", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 3", + "test_case_execution_id": 8, + "id": 40, + "started_at": "2021-10-28T08:31:53.357882", + "completed_at": "2021-10-28T08:31:53.361359", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 4", + "test_case_execution_id": 8, + "id": 41, + "started_at": "2021-10-28T08:31:53.363976", + "completed_at": "2021-10-28T08:31:53.391932", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Test Step 5", + "test_case_execution_id": 8, + "id": 42, + "started_at": "2021-10-28T08:31:53.396097", + "completed_at": "2021-10-28T08:31:53.399711", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "failed", + "public_id": "TCSS1009", + "test_suite_execution_id": 1, + "test_case_metadata_id": 9, + "id": 9, + "started_at": "2021-10-28T08:31:53.445446", + "completed_at": "2021-10-28T08:32:19.887343", + "errors": null, + "test_case_metadata": { + "public_id": "TCSS1009", + "title": "User prompt sample test", + "description": "This is Test Case tcss1009, it will not get a very long description", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 9 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Always pass", + "test_case_execution_id": 9, + "id": 43, + "started_at": "2021-10-28T08:31:53.449627", + "completed_at": "2021-10-28T08:31:53.453876", + "errors": null, + "failures": [] + }, + { + "state": "passed", + "title": "Prompt user", + "test_case_execution_id": 9, + "id": 44, + "started_at": "2021-10-28T08:31:53.458495", + "completed_at": "2021-10-28T08:32:19.874562", + "errors": null, + "failures": [] + }, + { + "state": "failed", + "title": "Evaluate user response", + "test_case_execution_id": 9, + "id": 45, + "started_at": "2021-10-28T08:32:19.879343", + "completed_at": "2021-10-28T08:32:19.883486", + "errors": null, + "failures": [] + } + ] + } + ], + "test_suite_metadata": { + "public_id": "SampleTestSuite1", + "title": "This is Test Suite 1", + "description": "This is Test Suite 1, it will not get a very long description", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 1 + } + }, + { + "state": "cancelled", + "public_id": "TestSuiteAsync", + "test_run_execution_id": 1, + "test_suite_metadata_id": 2, + "id": 2, + "started_at": "2021-10-28T08:32:19.920377", + "completed_at": "2021-10-28T09:22:50.175101", + "errors": null, + "test_case_executions": [ + { + "state": "error", + "public_id": "TCTRDUTManager", + "test_suite_execution_id": 2, + "test_case_metadata_id": 10, + "id": 10, + "started_at": "2021-10-28T08:32:29.645915", + "completed_at": "2021-10-28T08:32:29.651351", + "errors": [ + "Error occurred during setup of test case #TCTRDUTManager. #'NoneType' object has no attribute 'id'" + ], + "test_case_metadata": { + "public_id": "TCTRDUTManager", + "title": "This is Test Case tctr_dut_manager", + "description": "This Test Case is built to test the dut manager", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 10 + }, + "test_step_executions": [ + { + "state": "pending", + "title": "No-op", + "test_case_execution_id": 10, + "id": 46, + "started_at": null, + "completed_at": null, + "errors": null, + "failures": null + }, + { + "state": "pending", + "title": "Setup accessory and controller", + "test_case_execution_id": 10, + "id": 47, + "started_at": null, + "completed_at": null, + "errors": null, + "failures": null + }, + { + "state": "pending", + "title": "Test Echo Alive", + "test_case_execution_id": 10, + "id": 48, + "started_at": null, + "completed_at": null, + "errors": null, + "failures": null + } + ] + }, + { + "state": "error", + "public_id": "TCTRGenericController", + "test_suite_execution_id": 2, + "test_case_metadata_id": 11, + "id": 11, + "started_at": "2021-10-28T08:32:29.660980", + "completed_at": "2021-10-28T08:32:38.142928", + "errors": null, + "test_case_metadata": { + "public_id": "TCTRGenericController", + "title": "This is Test Case tctr_user_prompt", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 11 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "No-op", + "test_case_execution_id": 11, + "id": 49, + "started_at": "2021-10-28T08:32:29.666116", + "completed_at": "2021-10-28T08:32:29.670627", + "errors": null, + "failures": [] + }, + { + "state": "error", + "title": "Creating generic controller", + "test_case_execution_id": 11, + "id": 50, + "started_at": "2021-10-28T08:32:38.133431", + "completed_at": "2021-10-28T08:32:38.139202", + "errors": [ + "Error occurred during execution of test case #TCTRGenericController. #'NoneType' object has no attribute 'id'" + ], + "failures": [] + }, + { + "state": "pending", + "title": "Communicate with Simulated device", + "test_case_execution_id": 11, + "id": 51, + "started_at": null, + "completed_at": null, + "errors": null, + "failures": null + } + ] + }, + { + "state": "passed", + "public_id": "TCTRInstantPass", + "test_suite_execution_id": 2, + "test_case_metadata_id": 12, + "id": 12, + "started_at": "2021-10-28T08:32:38.154546", + "completed_at": "2021-10-28T08:32:38.166322", + "errors": null, + "test_case_metadata": { + "public_id": "TCTRInstantPass", + "title": "This is Test Case tctr_instant_pass", + "description": "This Test Case is built to test the test runner, it is supposed pass instantly", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 12 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "Test Step 1", + "test_case_execution_id": 12, + "id": 52, + "started_at": "2021-10-28T08:32:38.159526", + "completed_at": "2021-10-28T08:32:38.163213", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "cancelled", + "public_id": "TCTRNeverEnding", + "test_suite_execution_id": 2, + "test_case_metadata_id": 13, + "id": 13, + "started_at": "2021-10-28T08:32:38.183143", + "completed_at": "2021-10-28T09:22:50.160610", + "errors": null, + "test_case_metadata": { + "public_id": "TCTRNeverEnding", + "title": "This is Test Case tctr_never_ending", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 13 + }, + "test_step_executions": [ + { + "state": "passed", + "title": "No-op", + "test_case_execution_id": 13, + "id": 53, + "started_at": "2021-10-28T08:32:38.188738", + "completed_at": "2021-10-28T08:32:38.193202", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Run forever", + "test_case_execution_id": 13, + "id": 54, + "started_at": "2021-10-28T08:32:38.197107", + "completed_at": "2021-10-28T09:22:50.164460", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Not reachable", + "test_case_execution_id": 13, + "id": 55, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.170328", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "cancelled", + "public_id": "TCTROptionsSelectUserPrompt", + "test_suite_execution_id": 2, + "test_case_metadata_id": 14, + "id": 14, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.178504", + "errors": null, + "test_case_metadata": { + "public_id": "TCTROptionsSelectUserPrompt", + "title": "This is Test Case tctr_options_select_user_prompt", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 14 + }, + "test_step_executions": [ + { + "state": "cancelled", + "title": "No-op", + "test_case_execution_id": 14, + "id": 56, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.185026", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Prompt User", + "test_case_execution_id": 14, + "id": 57, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.189295", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Pass on option 1", + "test_case_execution_id": 14, + "id": 58, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.192629", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "cancelled", + "public_id": "TCTRTextInputUserPrompt", + "test_suite_execution_id": 2, + "test_case_metadata_id": 15, + "id": 15, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.195899", + "errors": null, + "test_case_metadata": { + "public_id": "TCTRTextInputUserPrompt", + "title": "This is Test Case tctr_text_input_user_prompt", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 15 + }, + "test_step_executions": [ + { + "state": "cancelled", + "title": "No-op", + "test_case_execution_id": 15, + "id": 59, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.201158", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Prompt User", + "test_case_execution_id": 15, + "id": 60, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.205126", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Pass on option 1", + "test_case_execution_id": 15, + "id": 61, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.208591", + "errors": null, + "failures": [] + } + ] + }, + { + "state": "cancelled", + "public_id": "TCTRWifiNetworkProvisioning", + "test_suite_execution_id": 2, + "test_case_metadata_id": 16, + "id": 16, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.212285", + "errors": null, + "test_case_metadata": { + "public_id": "TCTRWifiNetworkProvisioning", + "title": "This is Test Case tctr_wifi_network_provisioning", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 16 + }, + "test_step_executions": [ + { + "state": "cancelled", + "title": "Prompt WiFi SSID entry", + "test_case_execution_id": 16, + "id": 62, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.216856", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Prompt WiFi password entry", + "test_case_execution_id": 16, + "id": 63, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.220899", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Create Simulated Device", + "test_case_execution_id": 16, + "id": 64, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.224349", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Add WiFi Network", + "test_case_execution_id": 16, + "id": 65, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.227833", + "errors": null, + "failures": [] + }, + { + "state": "cancelled", + "title": "Enable WiFi Network", + "test_case_execution_id": 16, + "id": 66, + "started_at": null, + "completed_at": "2021-10-28T09:22:50.231781", + "errors": null, + "failures": [] + } + ] + } + ], + "test_suite_metadata": { + "public_id": "TestSuiteAsync", + "title": "This is Test Runner Test Suite", + "description": "This is Test Runner Test Suite", + "version": "1.2.3", + "source_hash": "de7f3c1390cd283f91f74a334aaf0ec3", + "id": 2 + } + } + ] + }, + "test_collections": { + "test_collections": { + "official_tests": { + "name": "official_tests", + "path": "/app/app/test_engine/../../test_collections/official_tests", + "test_suites": {} + }, + "sample_tests": { + "name": "sample_tests", + "path": "/app/app/test_engine/../../test_collections/sample_tests", + "test_suites": { + "CommissioningSampleTestSuite": { + "metadata": { + "public_id": "CommissioningSampleTestSuite", + "version": "1.2.3", + "title": "This is Commissioning Test Suite", + "description": "This is Commissioning Test Suite" + }, + "test_cases": { + "TCCSSWifiDeviceCommissioning": { + "metadata": { + "public_id": "TCCSSWifiDeviceCommissioning", + "version": "1.2.3", + "title": "This is Test Case tccss_wifi_device_commissioning", + "description": "This Test Case is built to test the wifi device commissioning" + } + } + } + }, + "SampleTestSuite1": { + "metadata": { + "public_id": "SampleTestSuite1", + "version": "1.2.3", + "title": "This is Test Suite 1", + "description": "This is Test Suite 1, it will not get a very long description" + }, + "test_cases": { + "TCSS1001": { + "metadata": { + "public_id": "TCSS1001", + "version": "1.2.3", + "title": "This is Test Case tcss1001", + "description": "This is Test Case tcss1001, it will not get a very long description" + } + }, + "TCSS1002": { + "metadata": { + "public_id": "TCSS1002", + "version": "3.2.1", + "title": "This is Test Case tcss1002", + "description": "This is Test Case tcss1002, it will not get a very long description" + } + }, + "TCSS1003": { + "metadata": { + "public_id": "TCSS1003", + "version": "4.5.6", + "title": "This is Test Case tcss1003", + "description": "This is Test Case tcss1003, it will not get a very long description" + } + }, + "TCSS1004": { + "metadata": { + "public_id": "TCSS1004", + "version": "1.0", + "title": "This is Test Case tcss1004", + "description": "This is Test Case tcss1004, it will not get a very long description" + } + }, + "TCSS1005": { + "metadata": { + "public_id": "TCSS1005", + "version": "1.0", + "title": "This is Test Case tcss1005", + "description": "This is Test Case tcss1005, it will not get a very long description" + } + }, + "TCSS1006": { + "metadata": { + "public_id": "TCSS1006", + "version": "1.2.3", + "title": "This is Test Case tcss1006", + "description": "This is Test Case tcss1006, it will not get a very long description" + } + }, + "TCSS1007": { + "metadata": { + "public_id": "TCSS1007", + "version": "1.2.3", + "title": "This is Test Case tcss1007", + "description": "This is Test Case tcss1007, it will not get a very long description" + } + }, + "TCSS1008": { + "metadata": { + "public_id": "TCSS1008", + "version": "1.2.3", + "title": "This is Test Case tcss1008", + "description": "This is Test Case tcss1008, it will not get a very long description" + } + }, + "TCSS1009": { + "metadata": { + "public_id": "TCSS1009", + "version": "1.2.3", + "title": "User prompt sample test", + "description": "This is Test Case tcss1009, it will not get a very long description" + } + } + } + }, + "SampleTestSuite2": { + "metadata": { + "public_id": "SampleTestSuite2", + "version": "4.5.6", + "title": "This is Test Suite 2 with version 4.5.6", + "description": "This is Test Suite 2, it will not get a very long description" + }, + "test_cases": { + "TCSS2001": { + "metadata": { + "public_id": "TCSS2001", + "version": "1.2.3", + "title": "This is Test Case tcss2001", + "description": "This is Test Case tcss2001, it will not get a very long description" + } + }, + "TCSS2002": { + "metadata": { + "public_id": "TCSS2002", + "version": "3.2.1", + "title": "This is Test Case tcss2002", + "description": "This is Test Case tcss2002, it will not get a very long description" + } + }, + "TCSS2003": { + "metadata": { + "public_id": "TCSS2003", + "version": "1.2.3", + "title": "This is Test Case tcss2003", + "description": "This is Test Case tcss2003, it will not get a very long description" + } + }, + "TCSS2004": { + "metadata": { + "public_id": "TCSS2004", + "version": "1.2.3", + "title": "This is Test Case tcss2004", + "description": "This is Test Case tcss2004, it will not get a very long description" + } + }, + "TCSS2005": { + "metadata": { + "public_id": "TCSS2005", + "version": "1.2.3", + "title": "This is Test Case tcss2005", + "description": "This is Test Case tcss2005, it will not get a very long description" + } + }, + "TCSS2006": { + "metadata": { + "public_id": "TCSS2006", + "version": "1.2.3", + "title": "This is Test Case tcss2006", + "description": "This is Test Case tcss2006, it will not get a very long description" + } + }, + "TCSS2007": { + "metadata": { + "public_id": "TCSS2007", + "version": "1.2.3", + "title": "This is Test Case tcss2007", + "description": "This is Test Case tcss2007, it will not get a very long description" + } + }, + "TCSS2008": { + "metadata": { + "public_id": "TCSS2008", + "version": "1.2.3", + "title": "This is Test Case tcss2008", + "description": "This is Test Case tcss2008, it will not get a very long description" + } + }, + "TCSS2009": { + "metadata": { + "public_id": "TCSS2009", + "version": "1.2.3", + "title": "This is Test Case tcss2009", + "description": "This is Test Case tcss2009, it will not get a very long description" + } + } + } + } + } + }, + "tool_unit_tests": { + "name": "tool_unit_tests", + "path": "/app/app/test_engine/../../test_collections/tool_unit_tests", + "test_suites": { + "TestSuiteAsync": { + "metadata": { + "public_id": "TestSuiteAsync", + "version": "1.2.3", + "title": "This is Test Runner Test Suite", + "description": "This is Test Runner Test Suite" + }, + "test_cases": { + "TCTRDUTManager": { + "metadata": { + "public_id": "TCTRDUTManager", + "version": "1.2.3", + "title": "This is Test Case tctr_dut_manager", + "description": "This Test Case is built to test the dut manager" + } + }, + "TCTRGenericController": { + "metadata": { + "public_id": "TCTRGenericController", + "version": "1.2.3", + "title": "This is Test Case tctr_user_prompt", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever" + } + }, + "TCTRInstantPass": { + "metadata": { + "public_id": "TCTRInstantPass", + "version": "1.2.3", + "title": "This is Test Case tctr_instant_pass", + "description": "This Test Case is built to test the test runner, it is supposed pass instantly" + } + }, + "TCTRNeverEnding": { + "metadata": { + "public_id": "TCTRNeverEnding", + "version": "1.2.3", + "title": "This is Test Case tctr_never_ending", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever" + } + }, + "TCTROptionsSelectUserPrompt": { + "metadata": { + "public_id": "TCTROptionsSelectUserPrompt", + "version": "1.2.3", + "title": "This is Test Case tctr_options_select_user_prompt", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever" + } + }, + "TCTRTextInputUserPrompt": { + "metadata": { + "public_id": "TCTRTextInputUserPrompt", + "version": "1.2.3", + "title": "This is Test Case tctr_text_input_user_prompt", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever" + } + }, + "TCTRWifiNetworkProvisioning": { + "metadata": { + "public_id": "TCTRWifiNetworkProvisioning", + "version": "1.2.3", + "title": "This is Test Case tctr_wifi_network_provisioning", + "description": "This Test Case is built to test the test runner, step 2 is supposed to run for ever" + } + } + } + }, + "TestSuiteExceptions": { + "metadata": { + "public_id": "TestSuiteExceptions", + "version": "1.2.3", + "title": "A Test suite with custom exceptions", + "description": "This is Test Suite that can cause exceptions during all phases" + }, + "test_cases": { + "TCException": { + "metadata": { + "public_id": "TCException", + "version": "1.2.3", + "title": "Test Case with errors", + "description": "This Test case can cause errors at all levels" + } + } + } + }, + "TestSuiteExpected": { + "metadata": { + "public_id": "TestSuiteExpected", + "version": "1.2.3", + "title": "This is Test Runner Test Suite", + "description": "This is Test Runner Test Suite" + }, + "test_cases": { + "TCTRExpectedError": { + "metadata": { + "public_id": "TCTRExpectedError", + "version": "1.2.3", + "title": "This is Test Case tctr_expected_error", + "description": "This Test Case is built to test the test runner, it is supposed to error out" + } + }, + "TCTRExpectedFail": { + "metadata": { + "public_id": "TCTRExpectedFail", + "version": "1.2.3", + "title": "This is Test Case tctr_expected_fail", + "description": "This Test Case is built to test the test runner, it is supposed to fail" + } + }, + "TCTRExpectedPass": { + "metadata": { + "public_id": "TCTRExpectedPass", + "version": "1.2.3", + "title": "This is Test Case tctr_expected_pass", + "description": "This Test Case is built to test the test runner, it is supposed to pass" + } + } + } + }, + "TestSuiteNeverEnding": { + "metadata": { + "public_id": "TestSuiteNeverEnding", + "version": "1.2.3", + "title": "A Test suite that can sleep forever. ", + "description": "This is Test Suite that can sleep forever during all phases" + }, + "test_cases": { + "TCNeverEnding": { + "metadata": { + "public_id": "TCNeverEnding", + "version": "1.2.3", + "title": "Test Case that can sleep forever", + "description": "This Test case is built to test the testrunner's ability to handle CancelledError." + } + } + } + } + } + } + } + }, + "operators": [ + { + "name": "Karthik", + "id": 2 + }, + { + "name": "harish", + "id": 23 + }, + { + "name": "sandesh", + "id": 24 + }, + { + "name": "check", + "id": 26 + }, + { + "name": "test", + "id": 27 + }, + { + "name": "matters", + "id": 35 + } + ], + "test-logs": [ + { + "level": "INFO", + "timestamp": 1637824978.181769, + "message": "Run Test Runner is Ready", + "test_suite_execution_id": null, + "test_case_execution_id": null + }, + { + "level": "INFO", + "timestamp": 1637824978.188862, + "message": "Test Run Executing", + "test_suite_execution_id": null, + "test_case_execution_id": null + }, + { + "level": "INFO", + "timestamp": 1637824978.198708, + "message": "Test Suite Executing: This is Test Runner Test Suite", + "test_suite_execution_id": 73, + "test_case_execution_id": null + }, + { + "level": "INFO", + "timestamp": 1637824978.199276, + "message": "This is a test setup", + "test_suite_execution_id": 73, + "test_case_execution_id": null + }, + { + "level": "INFO", + "timestamp": 1637824978.20432, + "message": "Executing Test Case: This is Test Case tctr_dut_manager", + "test_suite_execution_id": 73, + "test_case_execution_id": 483 + }, + { + "level": "INFO", + "timestamp": 1637824978.20513, + "message": "This is a test case setup", + "test_suite_execution_id": 73, + "test_case_execution_id": 483 + }, + { + "level": "ERROR", + "timestamp": 1637824988.630824, + "message": "Test Case Error: Error occurred during setup of test case #TCTRDUTManager. #'NoneType' object has no attribute 'id'", + "test_suite_execution_id": 73, + "test_case_execution_id": 483 + }, + { + "level": "INFO", + "timestamp": 1637824988.636285, + "message": "This is a test case cleanup", + "test_suite_execution_id": 73, + "test_case_execution_id": 483 + }, + { + "level": "INFO", + "timestamp": 1637824988.641152, + "message": "Test Case Completed[ERROR]: This is Test Case tctr_dut_manager", + "test_suite_execution_id": 73, + "test_case_execution_id": 483 + }, + { + "level": "INFO", + "timestamp": 1637824988.646212, + "message": "This is a test cleanup", + "test_suite_execution_id": 73, + "test_case_execution_id": null + }, + { + "level": "INFO", + "timestamp": 1637824988.650205, + "message": "Test Suite Completed [ERROR]: This is Test Runner Test Suite", + "test_suite_execution_id": 73, + "test_case_execution_id": null + }, + { + "level": "INFO", + "timestamp": 1637824988.658157, + "message": "Test Run Completed [ERROR]", + "test_suite_execution_id": null, + "test_case_execution_id": null + } + ] +} diff --git a/src/app/shared/api/routes.json b/src/app/shared/api/routes.json new file mode 100644 index 0000000..6a7af55 --- /dev/null +++ b/src/app/shared/api/routes.json @@ -0,0 +1,3 @@ +{ + "/api/*": "/$1" +} diff --git a/src/app/shared/core_apis/project.ts b/src/app/shared/core_apis/project.ts new file mode 100644 index 0000000..14fbad0 --- /dev/null +++ b/src/app/shared/core_apis/project.ts @@ -0,0 +1,253 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable no-use-before-define */ +import { Injectable } from '@angular/core'; +import { ProjectService } from '../project-utils'; +import { ProjectStore } from 'src/app/store/project-store'; +import { SharedService } from './shared-utils'; +import { SharedStore } from 'src/app/store/shared-store'; +import { Title } from '@angular/platform-browser'; + +@Injectable() +export class ProjectsAPI { + public projectData: any; + public runningTestCases: any; + archivedLimit = 0; unArchivedLimit = 0; setArchived = false; + archivedData: any = []; unArchivedData: any = []; setUnarchived = false; + constructor(private projectService: ProjectService, private projectStore: ProjectStore, + private sharedService: SharedService, private sharedStore: SharedStore, private titleService: Title) { + this.getEnvironmentConfig(); + this.getShaVersion(); + } + getProjectData() { + this.projectData = this.projectStore.allProjectData; + return this.projectData; + } + getRunningTestCases() { + this.runningTestCases = this.projectStore.runningTestCases; + return this.runningTestCases; + } + getProjectDetails() { + return this.projectStore.projectDetails; + } + setProjectDetails(value: any) { + this.projectStore.setProjectDetails(value); + } + setIsNewProjectClicked(value: boolean) { + this.projectStore.setIsNewProjectClicked(value); + } + setCurrentPanelIndex(value: number) { + this.projectStore.setCurrentPanelIndex(value); + } + setUserIndex(data: number) { + this.projectStore.setUserIndex(data); + } + + getIsCreateProjectContainsWarning() { + return this.projectStore.isCreateProjectContainsWarning; + } + setIsCreateProjectContainsWarning(value: boolean) { + this.projectStore.setIsCreateProjectContainsWarning(value); + } + + getSettingsJsonData() { + return this.projectService.getSettingsJson().subscribe( + (data) => { + this.projectStore.setNewProjectDetails(data); + return data; + }); + } + getDataLimit(data: any) { + if (data) { + return this.archivedLimit; + } else { + return this.unArchivedLimit; + } + } + getAllProjectData(isArchived: any) { + return this.projectService.getProjectData(isArchived, this.getDataLimit(isArchived)).subscribe( + (data) => { + if (isArchived) { + if (data.length >= 250) { + this.archivedData.push(...data); + this.archivedLimit += 250; + this.getAllProjectData(isArchived); + } else { + this.archivedData.push(...data); + this.projectStore.setArchivedProjects(this.archivedData); + this.archivedData = []; + this.archivedLimit = 0; + this.setArchived = true; + this.checkProjectData(); + } + } else { + if (data.length >= 250) { + this.unArchivedData.push(...data); + this.unArchivedLimit += 250; + this.getAllProjectData(isArchived); + } else { + this.unArchivedData.push(...data); + this.projectStore.setAllProjectData(this.unArchivedData.reverse()); + this.projectStore.setIsNewProjectClicked(false); + this.unArchivedData = []; + this.unArchivedLimit = 0; + this.setUnarchived = true; + this.checkProjectData(); + } + } + return data; + }, err => { + this.sharedService.showPopUp(); + }); + } + checkProjectData() { + if (this.setArchived && this.setUnarchived) { + if (this.projectStore.allProjectData.length) { + this.projectStore.setProjectType(projectDropdown()[0]); + this.projectStore.setCurrentPanelIndex(4); + } else if (this.projectStore.archivedProjects.length) { + this.projectStore.setProjectType(projectDropdown()[1]); + this.projectStore.setCurrentPanelIndex(4); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'No Active project found' }); + } + this.setArchived = false; this.setUnarchived = false; + } + } + setProjectData(value: any) { + return this.projectService.setProjectData(value).subscribe( + (data: any) => { + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Project added successfully.' }); + this.getAllProjectData(false); + this.getAllProjectData(true); + this.projectService.cursorBusy(false); + return data; + }, err => { + this.projectService.cursorBusy(false); + this.sharedService.showPopUp(); + }); + } + deleteProject(projectId: number) { + this.projectService.deleteProject(projectId).subscribe( + (data: any) => { + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Project deleted successfully.' }); + this.getAllProjectData(false); + return data; + }, err => { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error occured in deleting project.' }); + } + ); + } + + updateProject(data: any) { + this.projectService.updateProject(data).subscribe( + (updatedData: any) => { + this.getAllProjectData(false); + this.getAllProjectData(true); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Project Updated successfully.' }); + }, err => { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error in updating Project.' }); + } + ); + } + + archiveProject(id: any) { + this.projectService.archiveProject(id).subscribe( + (data: any) => { + this.getAllProjectData(false); + this.getAllProjectData(true); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Project archived successfully.' }); + }, err => { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error in archive Project..' }); + } + ); + } + + unarchiveProject(id: any) { + this.projectService.unarchiveProject(id).subscribe( + (data: any) => { + this.getAllProjectData(false); + this.getAllProjectData(true); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Project unarchived successfully.' }); + }, err => { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error in unarchive Project..' }); + } + ); + } + getEnvironmentConfig() { + this.projectService.getEnvironmentConfig().subscribe( + (data: any) => { + this.sharedStore.setEnvironmentConfig(data); + }, err => { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Unprocessable Entity' }); + } + ); + } + uploadPics(data: any, id: any, picsCallback: any, picsUpdate: any) { + this.projectService.uploadPics(data, id).subscribe( + (e: any) => { + picsCallback(); + picsUpdate(e); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'PICS Uploaded successfully.' }); + }, err => { + picsCallback(); + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error in uploading PICS.' }); + } + ); + } + deletePics(data: any, id: any, callback: any) { + this.projectService.deletePics(data, id).subscribe( + (e: any) => { + callback(e); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'PICS deleted successfully.' }); + }, err => { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error in deleting PICS.' }); + } + ); + } + getShaVersion() { + this.projectService.getShaVersion().subscribe( + (data: any) => { + this.titleService.setTitle('Matter Test Harness (' + data.version + ')'); + this.sharedStore.setShaVersion(data); + } + ); + } +} + + +// Return default added values +export function getDefaultSettings() { + const addedSettings = [ + { name: 'Wi-Fi', code: 'wifi' }, + { name: 'Internet Protocol', code: 'ip' }, + ]; + return addedSettings; +} +export function projectDropdown() { + const projectDropdownData = [ + { + tableName: 'Projects', + toolTip: 'Archive' + }, + { + tableName: 'Archive Project', + toolTip: 'Unarchive' + }, + ]; + return projectDropdownData; +} diff --git a/src/app/shared/core_apis/shared-utils.ts b/src/app/shared/core_apis/shared-utils.ts new file mode 100644 index 0000000..1327a68 --- /dev/null +++ b/src/app/shared/core_apis/shared-utils.ts @@ -0,0 +1,107 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { ConfirmationService, MessageService } from 'primeng/api'; +import { SharedAPI } from './shared'; +import * as Bowser from 'bowser'; +@Injectable() +export class SharedService { + constructor(public confirmationService: ConfirmationService, public messageService: MessageService, public sharedAPI: SharedAPI) { } + cursorBusy(isTrue: boolean) { + if (isTrue) { + document.getElementsByTagName('body')[0].classList.add('cursor-busy'); + } else { + document.getElementsByTagName('body')[0].classList.remove('cursor-busy'); + } + } + // pop-up if BE is failed to respond + showPopUp() { + this.confirmationService.confirm({ + message: 'Some thing went wrong', + header: 'Failed to connect', + icon: 'pi pi-exclamation-triangle', + acceptLabel: 'Retry', + acceptIcon: 'pi pi-refresh', + rejectVisible: false, + closeOnEscape: false, + accept: () => { + window.location.reload(); + } + }); + } + // toast and notification + setToastAndNotification(data: any) { + this.messageService.add({ severity: data.status, summary: data.summary, detail: data.message }); + this.sharedAPI.setNotificationMessage({ state: data.status, message: data.message, time: new Date() }); + } + findDate(date: any) { + if (date) { + const time = date.replace(/-/g, '/').replace(/\.(.*[0-9])/g, '').split('T'); + date = time[0] + ' ' + time[1] + ' UTC'; + const timeZone = new Date(date).toUTCString(); + if (timeZone.includes('PDT')) { + date = time[0] + ' ' + time[1] + ' PDT'; + } + const differenceInMinutes = Math.floor(((new Date().getTime() - new Date(date).getTime()) / (1000 * 60))); + const differenceInHours = Math.floor(differenceInMinutes / 60); + const differenceInDays = Math.floor(differenceInHours / 24); + const differenceInMonths = Math.floor(differenceInDays / 30); + const differenceInYears = Math.floor(differenceInDays / 365); + + if (differenceInMinutes <= 15) { + return 'Just now'; + } else if (differenceInMinutes > 15 && differenceInMinutes <= 60) { + return differenceInMinutes + ' minutes ago'; + } else if (differenceInHours >= 1 && differenceInHours <= 24) { + return differenceInHours + ' hours ago'; + } else if (differenceInDays >= 1 && differenceInDays <= 30) { + return differenceInDays + ' days ago'; + } else if (differenceInMonths >= 1 && differenceInMonths <= 12) { + return differenceInMonths + ' months ago'; + } else if (differenceInYears >= 1 && differenceInYears < 5) { + return differenceInYears + ' years ago'; + } else { + return 'a while ago'; + } + } else { + return '-'; + } + } + checkBrowserAndVersion() { + const browser = Bowser.getParser(window.navigator.userAgent); + const isValid = browser.satisfies({ + chrome: '>=99.0.4844', + edge: '>=96.0.1024.72', + // eslint-disable-next-line @typescript-eslint/naming-convention + Firefox: '>=97.0', + safari: '>=12.1.2' + + }); + if (!isValid) { + this.confirmationService.confirm({ + message: 'Your browser version is too old, please upgrade your browser to latest version to get all features of UI', + header: 'Upgrade your browser to latest version', + icon: 'pi pi-exclamation-triangle', + acceptLabel: 'Okay', + rejectVisible: false, + closeOnEscape: false, + accept: () => { + } + }); + } + } +} diff --git a/src/app/shared/core_apis/shared.ts b/src/app/shared/core_apis/shared.ts new file mode 100644 index 0000000..365c00b --- /dev/null +++ b/src/app/shared/core_apis/shared.ts @@ -0,0 +1,124 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { SharedStore } from 'src/app/store/shared-store'; + +@Injectable() +export class SharedAPI { + constructor(private sharedStore: SharedStore) { } + + getShowCustomPopup() { + return this.sharedStore.showCustomPopup; + } + setShowCustomPopup(value: string) { + return this.sharedStore.setShowCustomPopup(value); + } + + getCustomPopupData() { + return this.sharedStore.customPopupData; + } + setCustomPopupData(value: any) { + return this.sharedStore.setCustomPopupData(value); + } + + getAppState() { + return this.sharedStore.appState; + } + setAppState(value: string) { + return this.sharedStore.setAppState(value); + } + setIsProjectTypeSelected(data: number) { + this.sharedStore.setIsProjectTypeSelected(data); + } + getIsProjectTypeSelected() { + return this.sharedStore.isProjecTypeSelected; + } + setSelectedProjectType(selectedType: any) { + this.sharedStore.setSelectedProjectType(selectedType); + + } + getSelectedProjectType() { + return this.sharedStore.selectedProjectType; + } + setTestReportData(report: any) { + this.sharedStore.setTestReportData(report); + } + getTestReportData() { + return this.sharedStore.testReportData; + } + getSelectedTheme() { + return this.sharedStore.selectedTheme; + } + setSelectedTheme(selectedTheme: any) { + this.sharedStore.setSelectedTheme(selectedTheme); + } + getSelectedLightTheme() { + return this.sharedStore.selectedLightTheme; + } + setSelectedLightTheme(selectedLightTheme: any) { + this.sharedStore.setSelectedLightTheme(selectedLightTheme); + } + setNotificationMessage(data: any) { + this.sharedStore.setNotificationMessage(data); + } + getNotificationMessage() { + return this.sharedStore.notificationMessage; + } + setWebSocketLoader(data: any) { + this.sharedStore.setWebSocketLoader(data); + } + + getWebSocketLoader() { + return this.sharedStore.webSocketLoader; + } + getExecutionStatus() { + return this.sharedStore.executionStatus; + } + setExecutionStatus(data: any) { + this.sharedStore.setExecutionStatus(data); + } + getbufferWSData() { + return this.sharedStore.bufferWSData; + } + setbufferWSData(data: any) { + this.sharedStore.setbufferWSData(data); + } + getTestExecutionLoader() { + return this.sharedStore.testExecutionLoader; + } + setTestExecutionLoader(data: any) { + this.sharedStore.setTestExecutionLoader(data); + } + getTestCaseLoader() { + return this.sharedStore.testCaseLoader; + } + setTestCaseLoader(data: any) { + this.sharedStore.setTestCaseLoader(data); + } + getIsNotificationRead() { + return this.sharedStore.isNotificationRead; + } + setIsNotificationRead(data: any) { + this.sharedStore.setIsNotificationRead(data); + } + getEnvironmentConfig() { + return this.sharedStore.environmentConfig; + } + getShaVersion() { + return this.sharedStore.shaVersion; + } +} diff --git a/src/app/shared/core_apis/test-run.ts b/src/app/shared/core_apis/test-run.ts new file mode 100644 index 0000000..a3a0c01 --- /dev/null +++ b/src/app/shared/core_apis/test-run.ts @@ -0,0 +1,453 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { TestRunStore } from 'src/app/store/test-run-store'; +import { TestRunService } from '../test-run-utils'; +import { EXECUTION_STATUS_COMPLETED } from '../utils/constants'; +import { SharedAPI } from './shared'; +import * as _ from 'lodash'; +import { SharedService } from './shared-utils'; + +@Injectable() +export class TestRunAPI { + public runningTestCases: any; + unArchivedHistory: any = []; archivedHistory: any = []; + unArchivedLimit = 0; archivedLimit = 0; + setArchived = false; setUnarchived = false; + constructor(private testRunService: TestRunService, private testRunStore: TestRunStore, private sharedAPI: SharedAPI, + public sharedService: SharedService) { + this.getOperatorData(); + } + + // Get running testcase filtered data + getRunningTestCases() { + this.runningTestCases = this.testRunStore.runningTestCases; + return this.runningTestCases; + } + + // Get running testcase raw data + getRunningTestCasesRawData() { + return this.testRunStore.runningTestCasesRawData; + } + + // Set running testcase raw data + setRunningTestCasesRawData(value: any) { + return this.testRunStore.setRunningTestCasesRawData(value); + } + + // Set running testcase filtered data + setRunningTestCases(value: any) { + this.testRunStore.setRunningTestCases(value); + } + + // get's testsuite category + getTestCollectionData() { + return this.testRunStore.testSuiteCategory.test_collections; + } + + // Get test-logs data + getTestLogs() { + return this.testRunStore.testLogs; + } + + // Set test-logs data + setTestLogs(value: any) { + this.testRunStore.setTestLogs(value); + } + + // Get test-logs data + getSelectedOperator() { + return this.testRunStore.selectedOperator; + } + + // Set test-logs data + setSelectedOperator(value: any) { + this.testRunStore.setSelectedOperator(value); + } + + // Get test-logs data + getLogsFilterKey() { + return this.testRunStore.logsFilterKey; + } + + // Set test-logs data + setLogsFilterKey(value: string) { + this.testRunStore.setLogsFilterKey(value); + } + + // Get highlighted-logs-id + getHighlightedLog() { + return this.testRunStore.highlightedLog; + } + + // Set highlighted-logs-id + setHighlightedLog(value: number) { + this.testRunStore.setHighlightedLog(value); + } + + // Get running testcase from backend and set to mobx-store + getRunningTestsData() { + return this.testRunService.getRunningTestsJson().subscribe( + (data) => { + this.testRunStore.setRunningTestCasesRawData(data); + const filteredJson = this.filterTestRunJSON(_.cloneDeep(data)); + this.testRunStore.setRunningTestCases(filteredJson); + this.getTestLogsJson(); + return data; + }, err => { + this.sharedService.showPopUp(); + }); + } + + getTestLogsJson() { + this.testRunService.getTestLogs().subscribe( + (data) => { + this.testRunStore.setTestLogs(data); + }, err => { + this.sharedService.showPopUp(); + } + ); + } + + // Filter running testacse data to Component required format + /* eslint-disable max-len */ + filterTestRunJSON(testData: any) { + return testData.test_suite_executions.map((ele: any, index: any) => { + const testExec = ele.test_case_executions.map((eleExec: any, caseIndex: any) => { + const stepExec = eleExec.test_step_executions.map((eleStep: any, stepIndex: any) => { + const newObject3 = { 'key': 'test_step_execution_' + eleStep.id, 'testStepIndex': index + '' + '' + caseIndex + '' + stepIndex, 'name': eleStep.title, 'status': eleStep.state, 'children': [] }; + return newObject3; + }); + const newObject2 = { 'key': 'test_case_execution_' + eleExec.id, 'name': eleExec.test_case_metadata.title, 'expanded': true, 'count': '1', 'status': eleExec.state, 'children': stepExec }; + return newObject2; + }); + + const newObject = { + 'key': 'test_suite_execution_' + ele.id, 'name': ele.test_suite_metadata.public_id, 'expanded': true, 'count': '1', 'status': ele.state, + 'progress': this.getProgressValue(testExec), 'children': testExec + }; + return newObject; + }); + } + + getProgressValue(testExec: any) { // When Abort we need to set updated value + const progress = Math.round(testExec.filter( + (elem: any) => EXECUTION_STATUS_COMPLETED.includes(elem.status)).length / testExec.length * 100); + return progress; + } + + // Start execution and update initial value + setRunningTestsDataOnStart(execId: any) { + return this.testRunService.startTestRunExecution(execId).subscribe( + (data) => { + this.testRunStore.setRunningTestCasesRawData(data); // Initial rawData added to get testExecution id. + const filteredJson = this.filterTestRunJSON(_.cloneDeep(data)); + this.testRunStore.setRunningTestCases(filteredJson); + return data; + }, err => { + if (err.status === 409) { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Run Execution HTTP request Conflit' }); + } else { + this.sharedService.showPopUp(); + } + }); + } + + // Abort test execution and update execution status + abortTestExecAndUpdateTestcase(execId: any) { + return this.testRunService.abortTestExecution().subscribe( + async (data) => { + this.readRunningTestsRawData(execId, this.updateRunningTestcase.bind(this)); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Test execution aborted' }); + return data; + }, err => { + if (err.status === 409) { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error occured while aborting' }); + } else { + this.sharedService.showPopUp(); + } + }); + } + + // update execution status + updateRunningTestcase(data: any) { + const filteredJson = this.filterTestRunJSON(_.cloneDeep(data)); + this.testRunStore.setRunningTestCases(filteredJson); + } + + async readRunningTestsRawDataAsync(execId: any, callback: any = null) { + const testExecData = await this.testRunService.readTestRunExecutionAsync(execId); + this.testRunStore.setRunningTestCasesRawData(testExecData); + if (callback) { + await callback(testExecData); + } + return testExecData; + } + + // Read test-execution data using Id and store it in mobx-stores + readRunningTestsRawData(execId: any, callback: any = null) { + this.testRunService.getLogs(execId, true).subscribe( + (data: any) => { + data = data.replaceAll('}', '},'); + let modifiedData = '[' + data + '{"level": "", "timestamp": null, "message": "", "test_suite_execution_index": null, "test_case_execution_index": null}]'; + modifiedData = JSON.parse(modifiedData); + this.testRunStore.setTestLogs(modifiedData); + }, err => { + this.sharedService.cursorBusy(false); + } + ); + return this.testRunService.readTestRunExecution(execId).subscribe( + (data) => { + this.testRunStore.setRunningTestCasesRawData(data); + if (callback) { + callback(data); + } + return data; + }, err => { + this.sharedService.showPopUp(); + }); + } + getMockReport() { + return this.testRunService.getRunningTestsJson().subscribe(data => { + this.sharedAPI.setTestReportData(data); + return data; + }); + + } + getTestReportData(execId: any, callBack: any) { + this.testRunService.readTestRunExecution(execId).subscribe( + (data) => { + this.sharedAPI.setTestReportData(data); + if (callBack !== 0) { + callBack(); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Test Report downloaded sucessfully' }); + } + return data; + }, err => { + this.sharedService.showPopUp(); + } + ); + } + + // Create new test run config + async createTestRunConfig(requestJson: any) { + const testConfigData = await this.testRunService.createTestRunConfig(requestJson); + return testConfigData; + } + + // Create new test run execution + createTestRunExecution(callback: any, testConfigId: number, selectedProjectId: number, testName: string, operatorId: any, description: any) { + return this.testRunService.createTestRunExecution(testConfigId, selectedProjectId, testName, operatorId, description).subscribe( + (data) => { + callback(data.id); + return data; + }, err => { + this.sharedService.showPopUp(); + }); + } + + // get test execution result and update in the store + async getTestExecutionResult(isArchived: any, projectId: any) { + this.sharedAPI.setTestExecutionLoader(false); + (await this.testRunService.getTestExecutionResult(isArchived, projectId, this.getDatalimit(isArchived))).subscribe((data: any) => { + if (isArchived) { + if (data.length >= 250) { + this.archivedHistory.push(...data); + this.archivedLimit += 250; + this.getTestExecutionResult(isArchived, projectId); + } else { + this.archivedHistory.push(...data); + this.testRunStore.setArchivedTestResult(this.archivedHistory); + this.setArchived = true; + this.archivedHistory = []; + this.archivedLimit = 0; + this.checkTestData(); + } + } else { + if (data.length >= 250) { + this.unArchivedHistory.push(...data); + this.unArchivedLimit += 250; + this.getTestExecutionResult(isArchived, projectId); + } else { + this.unArchivedHistory.push(...data); + this.unArchivedLimit = 0; + this.testRunStore.setTestExecutionResult(this.unArchivedHistory); + this.setUnarchived = true; + this.unArchivedHistory = []; + this.checkTestData(); + } + } + }, err => { + this.sharedAPI.setTestExecutionLoader(true); + this.sharedService.showPopUp(); + }); + } + checkTestData() { + if (this.setArchived && this.setUnarchived) { + this.setArchived = false; this.setUnarchived = false; + this.sharedAPI.setTestExecutionLoader(true); + } + } + getDatalimit(isArchived: any) { + if (isArchived) { + return this.archivedLimit; + } else { + return this.unArchivedLimit; + } + } + + // Get the test collection data and store it in mobx-store + getDefaultTestCases(callBack: any) { + this.sharedAPI.setTestCaseLoader(true); + return this.testRunService.getDefaultTestCases().subscribe( + (data) => { + this.testRunStore.setTestSuiteCategory(data); + this.testRunStore.setCurrentTestCategory(0); + callBack(); + }, err => { + this.sharedService.showPopUp(); + }); + } + + getOperatorData() { + return this.testRunService.getOperatorData().subscribe( + (data) => { + this.testRunStore.setOperators(data); + }, err => { + this.sharedService.showPopUp(); + } + ); + } + + setOperatorData(operator: any, callback: (data: any) => void) { + return this.testRunService.setOperatorData(operator).subscribe(data => { + this.getOperatorData(); + callback(data); + }, err => { + this.sharedService.showPopUp(); + }); + } + deleteOperator(operator: any) { + this.testRunService.deleteOperator(operator).subscribe(data => { + this.getOperatorData(); + }, err => { + this.sharedService.showPopUp(); + }); + } + + updateOperator(data: any) { + this.testRunService.updateOperator(data).subscribe(status => { + this.getOperatorData(); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Operator Name Updated' }); + }, err => { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Failed to update operator ' }); + }); + } + archiveTestRun(id: any) { + this.testRunService.archiveTestRun(id).subscribe(data => { + this.getTestExecutionResult(false, this.sharedAPI.getSelectedProjectType().id); + this.getTestExecutionResult(true, this.sharedAPI.getSelectedProjectType().id); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Test execution archived' }); + }, err => { + this.sharedService.showPopUp(); + }); + } + + unarchiveTestRun(id: any) { + this.testRunService.unarchiveTestRun(id).subscribe(data => { + this.getTestExecutionResult(false, this.sharedAPI.getSelectedProjectType().id); + this.getTestExecutionResult(true, this.sharedAPI.getSelectedProjectType().id); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Test execution unarchived' }); + }, err => { + this.sharedService.showPopUp(); + }); + } + + deleteTestRun(id: any) { + this.testRunService.deleteTestRun(id).subscribe(data => { + this.getTestExecutionResult(false, this.sharedAPI.getSelectedProjectType().id); + this.getTestExecutionResult(true, this.sharedAPI.getSelectedProjectType().id); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Test execution deleted' }); + }, err => { + this.sharedService.showPopUp(); + }); + } + searchTestExecutionHistory(searchQuery: any, isArchived: any) { + this.sharedAPI.setTestExecutionLoader(false); + this.testRunService.searchTestExecutionHistory(searchQuery, isArchived, this.sharedAPI.getSelectedProjectType().id).subscribe((data) => { + this.sharedAPI.setTestExecutionLoader(true); + if (isArchived) { + this.testRunStore.setArchivedTestResult(data); + } else { + this.testRunStore.setTestExecutionResult(data); + } + }); + } + fileUpload(data: File, callBack: any) { + this.testRunService.fileUpload(data).subscribe(res => { + callBack('0'); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'File uploaded sucessfully' }); + }, err => { + callBack('-1'); + this.sharedService.showPopUp(); + }); + } + + getLogs(logId: any, callBack: any, json: any) { + this.testRunService.getLogs(logId, json).subscribe(data => { + callBack(data); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Logs downloaded sucessfully' }); + }, err => { + this.sharedService.cursorBusy(false); + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Error in Logs download' }); + }); + } + + async getExecutionStatus() { + return await this.testRunService.getExecutionStatus(); + } + + getApplicableTestCases(data: any, callBack: any) { + this.testRunService.getApplicableTestCases(data).subscribe(e => { + callBack(e); + }, err => { + }); + } + importTestRun(data: any, projectId: number) { + return this.testRunService.importTestRun(data, projectId); + } + exportTestRun(data: any, download: boolean) { + return this.testRunService.exportTestRun(data, download); + } + downloadGroupedLogs(data: any) { + return this.testRunService.downloadGroupedLogs(data); + } +} + +export function testExecutionTable() { + const testExecutionTableData = [ + { + tableName: 'Test', + toolTip: 'Archive' + }, + { + tableName: 'Archived Test', + toolTip: 'Unarchive' + } + ]; + return testExecutionTableData; +} diff --git a/src/app/shared/core_apis/websocket.ts b/src/app/shared/core_apis/websocket.ts new file mode 100644 index 0000000..28efa64 --- /dev/null +++ b/src/app/shared/core_apis/websocket.ts @@ -0,0 +1,88 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { Injectable } from '@angular/core'; +import { Subscription } from 'rxjs'; +import { TestExecutionSandbox } from 'src/app/components/test/test-execution/test-execution.sandbox'; +import { APP_STATE, EXECUTION_STATUS_COMPLETED } from '../utils/constants'; +import { DataService } from '../web_sockets/ws-config'; +import { SharedAPI } from './shared'; +import { TestRunAPI } from './test-run'; +import * as _ from 'lodash'; +import { SharedService } from './shared-utils'; + +@Injectable({ providedIn: 'root' }) +export class WebSocketAPI { + dataSubscription: Subscription | undefined; + constructor(private testRunAPI: TestRunAPI, private dataService: DataService, public sharedAPI: SharedAPI, + private sharedService: SharedService, public testExecutionSandbox: TestExecutionSandbox) { } + + async socketSubscription() { + if (!this.dataSubscription) { + // Use websocket to stream the logs + this.dataSubscription = await this.dataService.messages$.subscribe( + (data: any) => { + const dataObject = JSON.parse(data); + if (dataObject.type === 'test_update') { + this.updateBufferData(dataObject); + const runningTestcase = this.testRunAPI.getRunningTestCases(); + const updated = this.testExecutionSandbox.updateJSONBasedOnWebSocketData(runningTestcase, dataObject); + this.testRunAPI.setRunningTestCases(updated); + this.checkExecutionEnded(dataObject); + } else if (dataObject.type === 'prompt_request' || dataObject.type === 'custom_upload') { + this.testExecutionSandbox.showExecutionPrompt(dataObject); + } else if (dataObject.type === 'time_out_notification') { + this.sharedService.setToastAndNotification({ status: 'error', summary: 'Error!', message: 'Failed to give input' }); + this.sharedAPI.setShowCustomPopup(''); + } else if (dataObject.type === 'test_log_records') { + if (this.sharedAPI.getWebSocketLoader() === true) { + this.sharedAPI.setWebSocketLoader(false); + } + const logs = _.cloneDeep(this.testRunAPI.getTestLogs()); + logs.push(...dataObject.payload); + this.testRunAPI.setTestLogs(logs); + } + }); + } + } + + updateBufferData(dataObject: any) { + if (this.sharedAPI.getExecutionStatus().state === '') { + const updatedData = [...this.sharedAPI.getbufferWSData(), dataObject]; + this.sharedAPI.setbufferWSData(updatedData); + } else if (this.sharedAPI.getbufferWSData().length && this.sharedAPI.getExecutionStatus().state === 'running') { + this.sharedAPI.getbufferWSData().forEach((wsData: any) => { + const runningTestcase = this.testRunAPI.getRunningTestCases(); + const updated = this.testExecutionSandbox.updateJSONBasedOnWebSocketData(runningTestcase, wsData); + this.testRunAPI.setRunningTestCases(updated); + }); + this.sharedAPI.setbufferWSData([]); + } + } + + checkExecutionEnded(dataObject: any) { + // TODO: BE having issue only with Sample tests to send the "Test Run" details in Websocket, So We are checking "Test Suite" + const state = dataObject.payload.body.state; + const executionCompleted = EXECUTION_STATUS_COMPLETED.includes(state); + const isTestRunType = dataObject.payload.test_type === 'Test Run'; + if (isTestRunType && executionCompleted) { + this.sharedAPI.setAppState(APP_STATE[0]); + this.sharedService.setToastAndNotification({ status: 'success', summary: 'Success!', message: 'Test execution completed' }); + } + } + +} diff --git a/src/app/shared/project-utils.ts b/src/app/shared/project-utils.ts new file mode 100644 index 0000000..807185e --- /dev/null +++ b/src/app/shared/project-utils.ts @@ -0,0 +1,79 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable @typescript-eslint/naming-convention */ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { Observable } from 'rxjs'; +import { getBaseUrl } from 'src/environments/environment'; + +@Injectable() +export class ProjectService { + constructor(private http: HttpClient) { + } + + getSettingsJson(): Observable { + return this.http.get(getBaseUrl() + 'settings-json'); + } + + getProjectData(isArchived: any, limit: any): Observable { + return this.http.get(getBaseUrl() + 'projects/?archived=' + isArchived + '&skip=' + limit + '&limit=250'); + } + + setProjectData(value: any): Observable { + return this.http.post(getBaseUrl() + 'projects', value); + } + + + cursorBusy(isTrue: boolean) { + if (isTrue) { + document.getElementsByTagName('body')[0].classList.add('cursor-busy'); + } else { + document.getElementsByTagName('body')[0].classList.remove('cursor-busy'); + } + } + + deleteProject(projectId: any) { + return this.http.delete(getBaseUrl() + 'projects/' + projectId); + } + + updateProject(data: any) { + const updatedFields = { 'name': data.name, 'config': data.config, 'pics': data.pics }; + return this.http.put(getBaseUrl() + 'projects/' + data.id, updatedFields); + } + + archiveProject(id: any) { + return this.http.post(getBaseUrl() + 'projects/' + id + '/archive', ''); + } + unarchiveProject(id: any) { + return this.http.post(getBaseUrl() + 'projects/' + id + '/unarchive', ''); + } + getEnvironmentConfig() { + return this.http.get(getBaseUrl() + 'projects/default_config'); + } + uploadPics(data: any, id: any) { + // eslint-disable-next-line prefer-const + let formData: FormData = new FormData(); + formData.append('file', data, data.name); + return this.http.put(getBaseUrl() + 'projects/' + id + '/upload_pics', formData); + } + deletePics(data: any, id: any) { + return this.http.delete(getBaseUrl() + 'projects/' + id + '/pics_cluster_type?cluster_name=' + data); + } + getShaVersion() { + return this.http.get(getBaseUrl() + 'version'); + } +} diff --git a/src/app/shared/test-run-utils.ts b/src/app/shared/test-run-utils.ts new file mode 100644 index 0000000..c05aa22 --- /dev/null +++ b/src/app/shared/test-run-utils.ts @@ -0,0 +1,122 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { Observable } from 'rxjs'; +import { getBaseUrl } from 'src/environments/environment'; +import { getTimeStamp } from './utils/utils'; + +@Injectable() +export class TestRunService { + constructor(private http: HttpClient) { } + + getRunningTestsJson(): Observable { + return this.http.get(getBaseUrl() + 'running-testcases'); + } + getTestLogs() { + return this.http.get(getBaseUrl() + 'test-logs'); + } + async getTestExecutionResult(isArchived: any, projectId: any, skipLimit: any) { + return await this.http.get(getBaseUrl() + 'test_run_executions/?archived=' + isArchived + '&project_id=' + + projectId + '&skip=' + skipLimit + '&limit=250'); + } + getDefaultTestCases(): Observable { + return this.http.get(getBaseUrl() + 'test_collections'); + } + async createTestRunConfig(requestJson: any) { + const testConfigData = await this.http.post(getBaseUrl() + 'test_run_configs', requestJson).toPromise(); + return testConfigData; + } + createTestRunExecution(testConfigId: number, selectedProjectId: number, testName: string, operatorId: any, + description: any): Observable { + /* eslint-disable @typescript-eslint/naming-convention */ + const requestJson = { + 'test_run_execution_in': + { + 'title': testName + '_' + getTimeStamp(), 'test_run_config_id': testConfigId, + 'project_id': selectedProjectId, 'description': description, 'operator_id': operatorId + } + }; + /* eslint-enable @typescript-eslint/naming-convention */ + return this.http.post(getBaseUrl() + 'test_run_executions', requestJson); + } + startTestRunExecution(id: number): Observable { + return this.http.post(getBaseUrl() + 'test_run_executions/' + id + '/start', {}); + } + readTestRunExecution(id: number): Observable { + return this.http.get(getBaseUrl() + 'test_run_executions/' + id, {}); + } + async readTestRunExecutionAsync(id: number) { + return await this.http.get(getBaseUrl() + 'test_run_executions/' + id, {}).toPromise(); + } + abortTestExecution(): Observable { + return this.http.post(getBaseUrl() + 'test_run_executions/abort-testing', {}); + } + getOperatorData() { + return this.http.get(getBaseUrl() + 'operators/'); + } + setOperatorData(operator: any) { + return this.http.post(getBaseUrl() + 'operators', { 'name': operator }); + + } + deleteOperator(operator: any) { + return this.http.delete(getBaseUrl() + 'operators/' + operator.id); + } + updateOperator(data: any) { + return this.http.put(getBaseUrl() + 'operators/' + data.id, { 'name': data.name }); + } + archiveTestRun(id: any) { + return this.http.post(getBaseUrl() + 'test_run_executions/' + id + '/archive', {}); + } + unarchiveTestRun(id: any) { + return this.http.post(getBaseUrl() + 'test_run_executions/' + id + '/unarchive', {}); + } + deleteTestRun(id: any) { + return this.http.delete(getBaseUrl() + 'test_run_executions/' + id); + } + searchTestExecutionHistory(searchQuery: any, isArchived: any, projectId: any) { + return this.http.get(getBaseUrl() + 'test_run_executions/?archived=' + isArchived + + '&project_id=' + projectId + '&search_query=' + searchQuery); + } + fileUpload(data: File) { + // eslint-disable-next-line prefer-const + let formData: FormData = new FormData(); + formData.append('file', data, data.name); + return this.http.post(getBaseUrl() + 'test_run_executions/file_upload/', formData); + } + getLogs(logId: any, json: any) { + return this.http.get(getBaseUrl() + 'test_run_executions/' + logId + '/log?json_entries=' + json, { responseType: 'text' }); + } + getApplicableTestCases(data: any) { + return this.http.get(getBaseUrl() + 'projects/' + data + '/applicable_test_cases'); + } + + async getExecutionStatus() { + return await this.http.get(getBaseUrl() + 'test_run_executions/status').toPromise(); + } + importTestRun(file: File, projectId: number) { + const formData: FormData = new FormData(); + formData.append('import_file', file, file.name); + return this.http.post(getBaseUrl() + `test_run_executions/import?project_id=${projectId}`, formData); + } + exportTestRun(data: any, download: boolean) { + return this.http.get(getBaseUrl() + `test_run_executions/${data.id}/export?download=${download}`); + } + downloadGroupedLogs(data: any) { + return this.http.get(getBaseUrl() + `test_run_executions/${data.id}/grouped-log`, { responseType: 'blob' }); + } +} diff --git a/src/app/shared/utils/constants.ts b/src/app/shared/utils/constants.ts new file mode 100644 index 0000000..cc4fb6b --- /dev/null +++ b/src/app/shared/utils/constants.ts @@ -0,0 +1,26 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +export const DEFAULT_POPUP_OBJECT = { 'popupId': '', 'header': '', 'subHeader': '', 'buttons': [], 'inputItems': [], 'messageId': '' }; +export const EXECUTION_STATUS = ['passed', 'error', 'cancelled', 'failed', 'pending', 'executing']; +export const EXECUTION_STATUS_COMPLETED = ['passed', 'error', 'cancelled', 'failed']; +export const APP_STATE = ['READY', 'BUSY']; + +export const THEMES = [ + { name: 'Default', code: 'default' }, + { name: 'Light theme', code: 'light-theme' }, + { name: 'Dark theme', code: 'dark-theme' } +]; diff --git a/src/app/shared/utils/utils.ts b/src/app/shared/utils/utils.ts new file mode 100644 index 0000000..3654c17 --- /dev/null +++ b/src/app/shared/utils/utils.ts @@ -0,0 +1,28 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +export function getTimeStamp() { + const dateTime = new Date(); + const title = dateTime.getFullYear() + '_' + (dateTime.getMonth() + 1).toString().padStart(2, '0') + '_' + + dateTime.getDate().toString().padStart(2, '0') + '_' + dateTime.getHours().toString().padStart(2, '0') + '_' + + dateTime.getMinutes().toString().padStart(2, '0') + '_' + dateTime.getSeconds().toString().padStart(2, '0'); + return title; +} + +export function addThemeSwitchClass(value: any) { + document.getElementsByTagName('body')[0].className = ''; + document.getElementsByTagName('body')[0].classList.add(value.code); +} diff --git a/src/app/shared/web_sockets/ws-config.ts b/src/app/shared/web_sockets/ws-config.ts new file mode 100644 index 0000000..f4042e0 --- /dev/null +++ b/src/app/shared/web_sockets/ws-config.ts @@ -0,0 +1,84 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { Injectable } from '@angular/core'; +import { webSocket, WebSocketSubject } from 'rxjs/webSocket'; +import { environment } from '../../../environments/environment'; +import { catchError, tap } from 'rxjs/operators'; +import { EMPTY } from 'rxjs'; +import { SharedAPI } from '../core_apis/shared'; +import { SharedService } from '../core_apis/shared-utils'; + + +export const dataServiceStateEnum = { + 'closed': 0, + 'ready': 1, +}; + +@Injectable({ + providedIn: 'root' +}) +export class DataService { + public socket$: WebSocketSubject | any; // TODO make this private and let components use messages$ + public messages$: any = null; + public readyState = dataServiceStateEnum.closed; + private webSocketURL = environment.webSocketBaseURL; + constructor(private sharedService: SharedService, private sharedAPI: SharedAPI) { } + close() { + this.socket$.complete(); + } + public connect(): void { + + if (!this.socket$ || this.readyState === dataServiceStateEnum.closed) { + this.socket$ = this.getNewWebSocket(); + this.socket$.subscribe(); + this.messages$ = this.socket$.pipe( + tap({ + error: error => { + this.sharedService.showPopUp(); + }, + }), catchError(_ => EMPTY)); + } + } + public sendMessage(msg: any) { + this.socket$.next(msg); + } + public send(data: any) { + if (this.socket$) { + this.socket$.next(data); + } else { + console.error('Did not send data, open a connection first'); + } + } + + private getNewWebSocket() { + return webSocket({ + url: this.webSocketURL, + deserializer: (e: { data: any }) => e.data, + openObserver: { + next: () => { + this.readyState = dataServiceStateEnum.ready; + } + }, + closeObserver: { + next: () => { + this.readyState = dataServiceStateEnum.closed; + } + } + }); + } + +} diff --git a/src/app/store/project-store.ts b/src/app/store/project-store.ts new file mode 100644 index 0000000..265c449 --- /dev/null +++ b/src/app/store/project-store.ts @@ -0,0 +1,72 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-unused-expressions */ +/* eslint-disable @typescript-eslint/member-ordering */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ +import { Injectable } from '@angular/core'; +import { observable, action } from 'mobx'; + +@Injectable({ providedIn: 'root' }) +export class ProjectStore { + @observable newProjectDetails = []; + @action setNewProjectDetails(newProjectDetails: any) { + this.newProjectDetails = newProjectDetails; + } + @observable runningTestCases = []; + @action setRunningTestCases(runningTestCases: any) { + this.runningTestCases = runningTestCases; + } + @observable allProjectData: any = []; + @action setAllProjectData(allProjectData: any) { + this.allProjectData = allProjectData; + } + @observable currentPanelIndex = 1; + @action setCurrentPanelIndex(currentPanelIndex: number) { + this.currentPanelIndex = currentPanelIndex; + } + @observable isNewProjectClicked: any = null; + @action setIsNewProjectClicked(newProjectIndex: boolean) { + this.isNewProjectClicked = newProjectIndex; + } + @observable userIndex = 0; + @action setUserIndex(userIndex: number) { + this.userIndex = userIndex; + } + @observable projectDetails = { + 'name': 'New Project', + 'config': {} + }; + @action setProjectDetails(projectDetails: any) { + this.projectDetails = projectDetails; + } + @observable isCreateProjectContainsWarning = false; + @action setIsCreateProjectContainsWarning(value: boolean) { + this.isCreateProjectContainsWarning = value; + } + @observable archivedProjects: any = ''; + @action setArchivedProjects(data: any) { + this.archivedProjects = data; + } + + @observable projectType: any = { + 'tableName': 'Projects', + 'toolTip': 'Archive' + }; + @action setProjectType(data: any) { + this.projectType = data; + } +} diff --git a/src/app/store/shared-store.ts b/src/app/store/shared-store.ts new file mode 100644 index 0000000..6938813 --- /dev/null +++ b/src/app/store/shared-store.ts @@ -0,0 +1,96 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-unused-expressions */ +/* eslint-disable @typescript-eslint/member-ordering */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ +import { Injectable } from '@angular/core'; +import { observable, action } from 'mobx'; +import { APP_STATE, DEFAULT_POPUP_OBJECT, THEMES } from '../shared/utils/constants'; + +@Injectable({ providedIn: 'root' }) +export class SharedStore { + + @observable showCustomPopup = ''; + @action setShowCustomPopup(showCustomPopup: string) { + this.showCustomPopup = showCustomPopup; + } + @observable customPopupData = DEFAULT_POPUP_OBJECT; + @action setCustomPopupData(customPopupData: any) { + this.customPopupData = customPopupData; + } + @observable appState = APP_STATE[0]; + @action setAppState(appState: string) { + this.appState = appState; + } + @observable isProjecTypeSelected = 0; + @action setIsProjectTypeSelected(isProjecTypeSelected: number) { + this.isProjecTypeSelected = isProjecTypeSelected; + } + @observable selectedProjectType: any = null; + @action setSelectedProjectType(selectedProjectType: any) { + this.selectedProjectType = selectedProjectType; + } + @observable testReportData: any = ''; + @action setTestReportData(report: any) { + this.testReportData = report; + } + @observable selectedTheme = THEMES[1]; + @action setSelectedTheme(theme: any) { + this.selectedTheme = theme; + } + @observable selectedLightTheme = THEMES[1]; + @action setSelectedLightTheme(theme: any) { + this.selectedLightTheme = theme; + } + @observable notificationMessage: any = []; + @action setNotificationMessage(message: any) { + this.notificationMessage.push(message); + this.isNotificationRead = true; + } + @observable isNotificationRead = false; + @action setIsNotificationRead(data: any) { + this.isNotificationRead = data; + } + @observable webSocketLoader = false; + @action setWebSocketLoader(data: any) { + this.webSocketLoader = data; + } + @observable executionStatus = { 'state': '' }; + @action setExecutionStatus(data: any) { + this.executionStatus = data; + } + @observable bufferWSData: any = []; + @action setbufferWSData(message: any) { + this.bufferWSData = message; + } + @observable testExecutionLoader = true; + @action setTestExecutionLoader(data: any) { + this.testExecutionLoader = data; + } + @observable testCaseLoader = false; + @action setTestCaseLoader(data: any) { + this.testCaseLoader = data; + } + @observable environmentConfig = []; + @action setEnvironmentConfig(data: any) { + this.environmentConfig = data; + } + @observable shaVersion: any = ''; + @action setShaVersion(data: any) { + this.shaVersion = data; + } +} diff --git a/src/app/store/test-run-store.ts b/src/app/store/test-run-store.ts new file mode 100644 index 0000000..f9b5b2a --- /dev/null +++ b/src/app/store/test-run-store.ts @@ -0,0 +1,97 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* eslint-disable no-unused-expressions */ +/* eslint-disable @typescript-eslint/member-ordering */ +/* eslint-disable @typescript-eslint/no-unused-expressions */ +import { Injectable } from '@angular/core'; +import { observable, action } from 'mobx'; + +@Injectable({ providedIn: 'root' }) +export class TestRunStore { + @observable runningTestCases = []; + @action setRunningTestCases(runningTestCases: any) { + this.runningTestCases = runningTestCases; + } + @observable runningTestCasesRawData: any = []; + @action setRunningTestCasesRawData(runningTestCasesRawData: any) { + this.runningTestCasesRawData = runningTestCasesRawData; + } + @observable testExecutionResult: any = []; + @action setTestExecutionResult(testExecutionResult: any) { + this.testExecutionResult = testExecutionResult; + } + @observable runTestCases: any = []; + @action setRunTestCases(runTestCases: any) { + this.runTestCases = runTestCases; + } + @observable testCaseQuery: any = ''; + @action setTestCaseQuery(testCaseQuery: any) { + this.testCaseQuery = testCaseQuery; + } + @observable selectedTestCase: any[] = []; + @action setSelectedTestCase(selectedData: any) { + this.selectedTestCase = selectedData; + } + @observable lastChecked = 0; + @action setLastChecked(lastChecked: number) { + this.lastChecked = +lastChecked; + } + @observable onClickChange = false; + @action setOnClickChanges() { + this.onClickChange = !this.onClickChange; + } + @observable testScreen = 2; + @action setTestScreen(value: any) { + this.testScreen = value; + } + @observable testSuiteCategory: any = []; + @action setTestSuiteCategory(data: any) { + this.testSuiteCategory = data; + } + @observable currentTestCategory = 1; + @action setCurrentTestCategory(currentTestCategory: number) { + this.currentTestCategory = currentTestCategory; + } + @observable testLogs: any = []; + @action setTestLogs(testLogs: any) { + this.testLogs = testLogs; + } + @observable logsFilterKey = ''; + @action setLogsFilterKey(logsFilterKey: string) { + this.logsFilterKey = logsFilterKey; + } + @observable operators: any = []; + @action setOperators(operators: any) { + this.operators = operators; + } + @observable selectedOperator: any = ''; + @action setSelectedOperator(selectedOperator: any) { + this.selectedOperator = selectedOperator; + } + @observable archivedTestResult: any = []; + @action setArchivedTestResult(data: any) { + this.archivedTestResult = data; + } + @observable highlightedLog = 0; + @action setHighlightedLog(value: any) { + this.highlightedLog = value; + } + @observable detectPicsChanges: any = []; + @action setDetectPicsChanges(data: any) { + this.detectPicsChanges = data; + } +} diff --git a/src/assets/.gitkeep b/src/assets/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/assets/icomoon/fonts/icomoon.eot b/src/assets/icomoon/fonts/icomoon.eot new file mode 100644 index 0000000..d269511 Binary files /dev/null and b/src/assets/icomoon/fonts/icomoon.eot differ diff --git a/src/assets/icomoon/fonts/icomoon.svg b/src/assets/icomoon/fonts/icomoon.svg new file mode 100644 index 0000000..ac502d6 --- /dev/null +++ b/src/assets/icomoon/fonts/icomoon.svg @@ -0,0 +1,921 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/icomoon/fonts/icomoon.ttf b/src/assets/icomoon/fonts/icomoon.ttf new file mode 100644 index 0000000..bcf2e9b Binary files /dev/null and b/src/assets/icomoon/fonts/icomoon.ttf differ diff --git a/src/assets/icomoon/fonts/icomoon.woff b/src/assets/icomoon/fonts/icomoon.woff new file mode 100644 index 0000000..1127639 Binary files /dev/null and b/src/assets/icomoon/fonts/icomoon.woff differ diff --git a/src/assets/icomoon/selection.json b/src/assets/icomoon/selection.json new file mode 100644 index 0000000..6019087 --- /dev/null +++ b/src/assets/icomoon/selection.json @@ -0,0 +1 @@ +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M455.907 324.507l-2.785-288.936 62.66-35.572 59.875 36.914v288.264c0 0-40.519 4.162-60.844 4.025-19.697-0.133-58.907-4.696-58.907-4.696zM306.272 261.887c19.646 16.79 39.058 33.344 64.671 44.464s57.775 16.962 98.221 19.863c40.446 2.901 88.95 2.88 133.573-8.15s85.78-33.182 127.114-55.448l1.224 2.278 1.336-2.237 106.867 64.094-1.326 2.207 1.559 2.035c-24.207 18.498-48.461 37.075-75.614 55.063s-57.33 35.488-97.795 48.938c-40.466 13.451-91.116 22.84-139.009 24.449s-92.929-4.584-135.071-16.411c-42.143-11.826-81.351-29.297-114.095-48.827-30.968-18.471-56.028-38.752-80.686-59.062l-1.539 0.942-2.47-4.232c-0.082-0.069-0.17-0.133-0.253-0.202l0.080-0.092-0.121-0.203 0.567-0.344 2.764-3.381c0.39 0.321 0.785 0.64 1.174 0.962z","M784.153 689.405l254.336 137.13 0.879 72.048-61.244 34.596-252.403-139.244c0 0 15.928-37.489 25.867-55.219 9.631-17.183 32.566-49.31 32.566-49.31zM911.263 588.633c-24.191 9.091-48.063 18.093-70.171 35.148s-42.76 42.394-64.837 76.407c-22.077 34.013-45.488 76.493-57.386 120.893s-12.381 91.137-12.851 138.084l-2.586-0.027 1.314 2.251-107.741 62.612-1.292-2.227-2.535 0.382c-4.504-30.131-9.054-60.341-11.688-92.806s-3.38-67.34 4.389-109.269c7.769-41.929 24.014-90.813 45.74-133.526s48.902-79.154 79.614-110.341c30.712-31.187 64.948-57.079 97.865-76.316 31.132-18.193 60.995-30.339 90.69-42.119l-0.080-1.802 4.898-0.12c0.1-0.039 0.199-0.084 0.3-0.123l0.041 0.116 0.236-0.009 0.027 0.663 1.626 4.053c-0.47 0.186-0.94 0.378-1.409 0.564z","M308.51 790.379l-245.6 152.224-62.91-35.128 0.51-70.338 246.471-149.495c0 0 24.572 32.486 34.995 49.936 10.101 16.911 26.534 52.801 26.534 52.801zM332.571 950.794c4.168-25.505 8.254-50.688 4.479-78.353s-15.459-58.195-33.954-94.281c-18.495-36.086-43.667-77.547-76.239-109.981s-72.857-56.135-113.33-79.929l1.312-2.229-2.606 0.018-0.62-124.612 2.575-0.010 0.931-2.389c28.37 11.104 56.832 22.208 86.294 36.096s60.074 30.614 92.56 58.237c32.486 27.623 66.781 66.061 92.995 106.176s44.274 81.833 56.017 123.999c11.743 42.166 17.14 84.75 17.422 122.875 0.267 36.057-4.077 68.002-8.655 99.618l1.603 0.828-2.337 4.307c-0.016 0.108-0.025 0.215-0.043 0.321l-0.12-0.022-0.11 0.209-0.588-0.306-4.324-0.609c0.072-0.5 0.141-1.003 0.214-1.503z"],"attrs":[{},{},{}],"width":1039,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["matter-logo-black"]},"attrs":[{},{},{}],"properties":{"order":176,"id":1,"name":"matter-logo-black","prevSize":32,"code":59817},"setIdx":0,"setId":4,"iconIdx":0},{"icon":{"paths":["M455.907 324.507l-2.785-288.936 62.66-35.572 59.875 36.914v288.264c0 0-40.519 4.162-60.844 4.025-19.697-0.133-58.907-4.696-58.907-4.696zM306.272 261.887c19.646 16.79 39.058 33.344 64.671 44.464s57.775 16.962 98.221 19.863c40.446 2.901 88.95 2.88 133.573-8.15s85.78-33.182 127.114-55.448l1.224 2.278 1.336-2.237 106.867 64.094-1.326 2.207 1.559 2.035c-24.207 18.498-48.461 37.075-75.614 55.063s-57.33 35.488-97.795 48.938c-40.466 13.451-91.116 22.84-139.009 24.449s-92.929-4.584-135.071-16.411c-42.143-11.826-81.351-29.297-114.095-48.827-30.968-18.471-56.028-38.752-80.686-59.062l-1.539 0.942-2.47-4.232c-0.082-0.069-0.17-0.133-0.253-0.202l0.080-0.092-0.121-0.203 0.567-0.344 2.764-3.381c0.39 0.321 0.785 0.64 1.174 0.962z","M784.153 689.405l254.336 137.13 0.879 72.048-61.244 34.596-252.403-139.244c0 0 15.928-37.489 25.867-55.219 9.631-17.183 32.566-49.31 32.566-49.31zM911.263 588.633c-24.191 9.091-48.063 18.093-70.171 35.148s-42.76 42.394-64.837 76.407c-22.077 34.013-45.488 76.493-57.386 120.893s-12.381 91.137-12.851 138.084l-2.586-0.027 1.314 2.251-107.741 62.612-1.292-2.227-2.535 0.382c-4.504-30.131-9.054-60.341-11.688-92.806s-3.38-67.34 4.389-109.269c7.769-41.929 24.014-90.813 45.74-133.526s48.902-79.154 79.614-110.341c30.712-31.187 64.948-57.079 97.865-76.316 31.132-18.193 60.995-30.339 90.69-42.119l-0.080-1.802 4.898-0.12c0.1-0.039 0.199-0.084 0.3-0.123l0.041 0.116 0.236-0.009 0.027 0.663 1.626 4.053c-0.47 0.186-0.94 0.378-1.409 0.564z","M308.51 790.379l-245.6 152.224-62.91-35.128 0.51-70.338 246.471-149.495c0 0 24.572 32.486 34.995 49.936 10.101 16.911 26.534 52.801 26.534 52.801zM332.571 950.794c4.168-25.505 8.254-50.688 4.479-78.353s-15.459-58.195-33.954-94.281c-18.495-36.086-43.667-77.547-76.239-109.981s-72.857-56.135-113.33-79.929l1.312-2.229-2.606 0.018-0.62-124.612 2.575-0.010 0.931-2.389c28.37 11.104 56.832 22.208 86.294 36.096s60.074 30.614 92.56 58.237c32.486 27.623 66.781 66.061 92.995 106.176s44.274 81.833 56.017 123.999c11.743 42.166 17.14 84.75 17.422 122.875 0.267 36.057-4.077 68.002-8.655 99.618l1.603 0.828-2.337 4.307c-0.016 0.108-0.025 0.215-0.043 0.321l-0.12-0.022-0.11 0.209-0.588-0.306-4.324-0.609c0.072-0.5 0.141-1.003 0.214-1.503z"],"attrs":[{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"}],"width":1039,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["matter-logo-white"]},"attrs":[{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":177,"id":0,"name":"matter-logo-white","prevSize":32,"code":59818},"setIdx":0,"setId":4,"iconIdx":1},{"icon":{"paths":["M273.86 357.209h-142.884c-72.394 0-130.977-58.582-130.977-130.977v-95.256c0-72.394 58.582-130.977 130.977-130.977h142.884c72.394 0 130.977 58.582 130.977 130.977v95.256c0 72.394-58.582 130.977-130.977 130.977zM130.977 71.442c-32.863 0-59.535 26.672-59.535 59.535v95.256c0 32.863 26.672 59.535 59.535 59.535h142.884c32.863 0 59.535-26.672 59.535-59.535v-95.256c0-32.863-26.672-59.535-59.535-59.535z","M931.125 309.581h-171.46c-51.438 0-92.874-41.913-92.874-92.875v-76.204c0-51.438 41.913-92.875 92.874-92.875h171.46c51.438 0 92.874 41.913 92.874 92.875v76.204c0 51.438-41.436 92.875-92.874 92.875zM759.665 119.070c-11.431 0-21.433 10.002-21.433 21.433v76.204c0 11.431 10.002 21.433 21.433 21.433h171.46c11.431 0 21.433-10.002 21.433-21.433v-76.204c0-11.431-10.002-21.433-21.433-21.433z","M931.125 666.791h-171.46c-51.438 0-92.874-41.913-92.874-92.874v-76.205c0-51.438 41.913-92.874 92.874-92.874h171.46c51.438 0 92.874 41.913 92.874 92.874v76.205c0 51.438-41.436 92.874-92.874 92.874zM759.665 476.279c-11.431 0-21.433 10.002-21.433 21.433v76.205c0 11.431 10.002 21.433 21.433 21.433h171.46c11.431 0 21.433-10.002 21.433-21.433v-76.205c0-11.431-10.002-21.433-21.433-21.433z","M702.512 214.325h-333.395c-19.527 0-35.721-16.193-35.721-35.721s16.193-35.721 35.721-35.721h333.395c19.527 0 35.721 16.193 35.721 35.721s-16.193 35.721-35.721 35.721z","M702.512 928.744h-71.442c-72.394 0-130.977-58.582-130.977-130.977v-619.163c0-19.527 16.193-35.721 35.721-35.721s35.721 16.193 35.721 35.721v619.163c0 32.863 26.672 59.535 59.535 59.535h71.442c19.527 0 35.721 16.193 35.721 35.721s-16.193 35.721-35.721 35.721z","M702.512 571.535h-166.698c-19.527 0-35.721-16.193-35.721-35.721s16.193-35.721 35.721-35.721h166.698c19.527 0 35.721 16.193 35.721 35.721s-16.193 35.721-35.721 35.721z","M931.125 1024h-171.46c-51.438 0-92.874-41.913-92.874-92.874v-76.205c0-51.438 41.913-92.874 92.874-92.874h171.46c51.438 0 92.874 41.913 92.874 92.874v76.205c0 51.438-41.436 92.874-92.874 92.874zM759.665 833.488c-11.431 0-21.433 10.002-21.433 21.433v76.205c0 11.431 10.002 21.433 21.433 21.433h171.46c11.431 0 21.433-10.002 21.433-21.433v-76.205c0-11.431-10.002-21.433-21.433-21.433z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["data2"]},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":1128,"id":0,"name":"data2","prevSize":32,"code":59826},"setIdx":1,"setId":3,"iconIdx":0},{"icon":{"paths":["M512 938.667c235.639 0 426.667-191.027 426.667-426.667 0-235.642-191.027-426.667-426.667-426.667-235.642 0-426.667 191.025-426.667 426.667 0 235.639 191.025 426.667 426.667 426.667z","M682.667 480h-138.667v-138.667c0-17.493-14.507-32-32-32s-32 14.507-32 32v138.667h-138.667c-17.493 0-32 14.507-32 32s14.507 32 32 32h138.667v138.667c0 17.493 14.507 32 32 32s32-14.507 32-32v-138.667h138.667c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{"fill":"rgb(41, 45, 50)","opacity":0.4},{"fill":"rgb(41, 45, 50)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["add-circle"],"colorPermutations":{"25525525514145501":[{"f":0},{"f":0}]}},"attrs":[{"fill":"rgb(41, 45, 50)","opacity":0.4},{"fill":"rgb(41, 45, 50)"}],"properties":{"order":1129,"id":901,"name":"add-circle1","prevSize":32,"code":49,"codes":[49,50]},"setIdx":2,"setId":2,"iconIdx":0},{"icon":{"paths":["M512 923.738c-13.227 0-26.027-1.707-36.693-5.547-162.987-55.893-421.973-254.293-421.973-547.413 0-149.333 120.747-270.507 269.227-270.507 72.107 0 139.52 28.16 189.44 78.507 49.92-50.347 117.333-78.507 189.44-78.507 148.48 0 269.227 121.6 269.227 270.507 0 293.547-258.987 491.52-421.973 547.413-10.667 3.84-23.467 5.547-36.693 5.547zM322.56 164.271c-113.067 0-205.227 92.587-205.227 206.507 0 291.413 280.32 453.547 378.88 487.253 7.68 2.56 24.32 2.56 32 0 98.133-33.707 378.88-195.413 378.88-487.253 0-113.92-92.16-206.507-205.227-206.507-64.853 0-125.013 30.293-163.84 82.773-11.947 16.213-39.253 16.213-51.2 0-39.68-52.907-99.413-82.773-164.267-82.773z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":228,"id":899,"name":"heart","prevSize":32,"code":59827},"setIdx":2,"setId":2,"iconIdx":2},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M362.667 618.662c-11.093 0-22.187-4.693-30.294-12.373-1.707-2.133-3.84-4.267-5.12-6.4-1.707-2.56-2.987-5.12-3.84-7.68-1.28-2.56-2.133-5.116-2.56-7.676-0.427-2.987-0.853-5.978-0.853-8.538 0-11.093 4.693-22.182 12.373-30.289 15.787-15.787 44.374-15.787 60.588 0 7.68 8.107 12.373 19.196 12.373 30.289 0 2.56-0.427 5.551-0.853 8.538-0.427 2.56-1.28 5.116-2.56 7.676-0.853 2.56-2.133 5.12-3.84 7.68-1.707 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.294 12.373z","M512 618.662c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-10.24-5.12-14.080-8.96-1.707-2.133-3.84-4.267-5.12-6.4-1.707-2.56-2.987-5.12-3.84-7.68-1.28-2.56-2.133-5.12-2.56-7.68-0.427-2.987-0.853-5.973-0.853-8.533 0-11.093 4.693-22.187 12.373-30.293 3.84-3.84 8.533-6.827 14.080-8.96 15.36-6.827 34.56-2.987 46.507 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 2.56-0.427 5.547-0.853 8.533-0.427 2.56-1.28 5.12-2.56 7.68-0.853 2.56-2.133 5.12-3.84 7.68-1.707 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.293 12.373z","M362.667 768c-11.52 0-22.187-4.693-30.294-12.373-7.68-8.107-12.373-19.2-12.373-30.293s4.693-22.187 12.373-30.293c2.133-1.707 4.267-3.84 6.4-5.12 2.56-1.707 5.12-2.987 7.68-3.84 2.56-1.28 5.12-2.133 7.68-2.56 8.533-1.707 17.067-0.853 24.747 2.56 5.547 2.133 9.814 5.12 14.080 8.96 7.68 8.107 12.373 19.2 12.373 30.293s-4.693 22.187-12.373 30.293c-4.267 3.84-8.534 6.827-14.080 8.96-5.12 2.133-10.667 3.413-16.213 3.413z","M874.667 419.833h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 1013.333c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM768 672c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M813.67 890.022c-8.107 0-16.213-2.982-22.613-9.382l-90.027-90.031c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.382-22.613 9.382z","M722.351 891.307c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 5.973-14.507 9.387-22.613 9.387z","M655.787 970.667h-314.453c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v335.36c0 13.227-8.107 25.173-20.907 29.867-12.373 4.693-26.453 1.28-35.413-8.96-26.453-29.867-64.427-46.933-104.107-46.933-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 7.253 12.8 16.64 23.467 26.88 32.427 10.24 8.533 14.080 22.613 9.387 35.413-3.84 12.373-15.787 20.907-29.44 20.907zM341.333 181.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h248.32c-15.787-29.013-24.32-61.867-24.32-96 0-111.787 90.88-202.667 202.667-202.667 33.707 0 66.987 8.533 96 24.32v-269.653c0-122.027-59.307-181.333-181.333-181.333h-341.333z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":229,"id":898,"name":"calendar-remove","prevSize":32,"code":59650},"setIdx":2,"setId":2,"iconIdx":3},{"icon":{"paths":["M938.667 512c0 235.52-191.147 426.667-426.667 426.667s-379.307-237.227-379.307-237.227M132.693 701.44h192.853M132.693 701.44v213.333M85.333 512c0-235.52 189.44-426.667 426.667-426.667 284.587 0 426.667 237.227 426.667 237.227M938.667 322.56v-213.333M938.667 322.56h-189.44"],"attrs":[{"fill":"none","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["refresh-2"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{"fill":"none","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64}],"properties":{"order":230,"id":897,"name":"refresh-2","prevSize":32,"code":59828},"setIdx":2,"setId":2,"iconIdx":4},{"icon":{"paths":["M721.050 853.333h-503.466c-17.493 0-32-14.507-32-32s14.507-32 32-32h503.466c43.093 0 57.6-8.96 57.6-63.147v-44.373c0-54.187-14.507-63.147-57.6-63.147h-503.466c-17.493 0-32-14.507-32-32s14.507-32 32-32h503.466c81.92 0 121.6 41.813 121.6 127.147v44.373c0 85.333-39.68 127.147-121.6 127.147z","M507.716 490.667h-290.133c-17.493 0-32-14.507-32-32s14.507-32 32-32h290.133c43.093 0 57.6-8.96 57.6-63.147v-44.373c0-54.187-14.507-63.147-57.6-63.147h-290.133c-17.493 0-32-14.507-32-32s14.507-32 32-32h290.133c81.92 0 121.6 41.813 121.6 127.147v44.373c0 85.333-39.68 127.147-121.6 127.147z","M213.333 970.249c-17.493 0-32-14.507-32-32v-853.332c0-17.493 14.507-32 32-32s32 14.507 32 32v853.332c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-left"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":231,"id":896,"name":"align-left","prevSize":32,"code":59829},"setIdx":2,"setId":2,"iconIdx":5},{"icon":{"paths":["M640 552.542h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M528.213 723.209h-186.88c-17.493 0-32-14.507-32-32s14.507-32 32-32h186.88c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 288h-170.667c-40.96 0-117.333 0-117.333-117.333s76.373-117.333 117.333-117.333h170.667c40.96 0 117.333 0 117.333 117.333 0 40.96 0 117.333-117.333 117.333zM426.667 117.333c-42.24 0-53.333 0-53.333 53.333s11.093 53.333 53.333 53.333h170.667c53.333 0 53.333-11.093 53.333-53.333 0-53.333-11.093-53.333-53.333-53.333h-170.667z","M640 970.662h-256c-239.787 0-288-110.080-288-288v-255.999c0-194.56 70.4-277.76 243.627-286.72 17.067-0.853 32.853 12.373 33.707 30.293s-12.8 32.427-30.293 33.28c-121.173 6.827-183.040 43.093-183.040 223.147v255.999c0 157.867 31.147 224 224 224h256c192.853 0 224-66.133 224-224v-255.999c0-180.053-61.867-216.32-183.040-223.147-17.493-0.853-31.147-16.213-30.293-33.707s16.213-31.147 33.707-30.293c173.227 9.387 243.627 92.587 243.627 286.72v255.999c0 178.347-48.213 288.427-288 288.427z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard-text"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":232,"id":895,"name":"clipboard-text","prevSize":32,"code":59651},"setIdx":2,"setId":2,"iconIdx":6},{"icon":{"paths":["M606.758 922.884c-50.347 0-121.6-35.413-177.92-204.8l-30.722-92.16-92.16-30.72c-168.96-56.32-204.373-127.573-204.373-177.921 0-49.92 35.413-121.6 204.373-178.347l362.242-120.747c90.453-30.293 165.973-21.333 212.48 24.747s55.467 122.027 25.173 212.48l-120.747 362.241c-56.747 169.813-128 205.227-178.347 205.227zM326.010 299.95c-118.613 39.68-160.853 86.613-160.853 117.333 0 30.721 42.24 77.655 160.853 116.908l107.522 35.84c9.387 2.987 17.067 10.667 20.053 20.053l35.84 107.52c39.253 118.613 86.613 160.853 117.333 160.853s77.653-42.24 117.333-160.853l120.747-362.241c21.76-65.707 17.92-119.467-9.813-147.2s-81.493-31.147-146.773-9.387l-362.242 121.173z","M431.394 614.4c-8.108 0-16.214-2.987-22.614-9.387-12.373-12.373-12.373-32.853 0-45.227l152.748-153.173c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-152.747 153.173c-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":233,"id":894,"name":"send-2","prevSize":32,"code":59652},"setIdx":2,"setId":2,"iconIdx":7},{"icon":{"paths":["M587.115 757.333h-150.613c-46.935 0-84.055-23.040-104.961-64.853l-37.973-76.373c-8.96-18.347-27.307-29.44-47.787-29.44h-161.28c-17.493 0-32-14.507-32-32s14.507-32 32-32h161.707c44.8 0 84.907 24.747 104.96 64.853l37.973 76.373c9.813 19.627 25.6 29.44 47.788 29.44h150.613c20.48 0 38.827-11.093 47.787-29.44l37.973-76.373c20.053-40.107 60.16-64.853 104.96-64.853h159.573c17.493 0 32 14.507 32 32s-14.507 32-32 32h-159.573c-20.48 0-38.827 11.093-47.787 29.44l-37.973 76.373c-20.48 40.107-60.587 64.853-105.387 64.853z","M810.667 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-notification"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":234,"id":893,"name":"direct-notification","prevSize":32,"code":59830},"setIdx":2,"setId":2,"iconIdx":8},{"icon":{"paths":["M576 394.667h-490.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h490.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h301.227c17.493 0 32 14.507 32 32s-14.507 32-32 32h-301.227c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 132.267 23.467 155.307 157.44 155.307h474.027c133.973 0 157.44-23.040 157.44-155.307v-216.747c0-17.493 14.507-32 32-32s32 14.507 32 32v216.747c0.427 168.533-51.2 219.733-221.013 219.733z","M767.979 351.997c-8.107 0-16.213-2.987-22.613-9.387l-64-64c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l41.387 41.387 148.053-148.053c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-170.667 170.667c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":235,"id":892,"name":"card-tick","prevSize":32,"code":59653},"setIdx":2,"setId":2,"iconIdx":9},{"icon":{"paths":["M725.333 885.333h-362.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h362.667c122.027 0 181.333-59.307 181.333-181.333v-256c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v268.8c0 17.493-14.507 32-32 32s-32-14.507-32-32v-268.8c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v256c0 155.733-89.6 245.333-245.333 245.333z","M512 650.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 437.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M789.333 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M213.333 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM213.333 629.333c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.825 49.92 20.052 71.253 24.747 41.813 70.401 67.413 118.615 67.413s93.868-25.6 118.615-66.987c13.227-21.76 20.052-46.080 20.052-71.68 0-76.373-62.293-138.667-138.667-138.667z","M259.004 844.378c-8.107 0-16.215-2.987-22.615-9.387l-90.026-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.026 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.505 9.387-22.612 9.387z","M167.725 845.649c-8.107 0-16.212-2.987-22.612-9.387-12.373-12.373-12.373-32.853 0-45.227l90.026-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.026 90.027c-6.4 6.4-14.508 9.387-22.615 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":236,"id":891,"name":"money-remove","prevSize":32,"code":59831},"setIdx":2,"setId":2,"iconIdx":10},{"icon":{"paths":["M256 635.311c-17.493 0-32-14.507-32-32v-183.040c0-17.493 14.507-32 32-32s32 14.507 32 32v183.040c0 17.92-14.507 32-32 32z","M384 696.307c-17.493 0-32-14.507-32-32v-304.64c0-17.493 14.507-32 32-32s32 14.507 32 32v304.64c0 17.92-14.507 32-32 32z","M512 757.333c-17.493 0-32-14.507-32-32v-426.667c0-17.493 14.507-32 32-32s32 14.507 32 32v426.667c0 17.493-14.507 32-32 32z","M640 696.307c-17.493 0-32-14.507-32-32v-304.64c0-17.493 14.507-32 32-32s32 14.507 32 32v304.64c0 17.92-14.507 32-32 32z","M768 635.311c-17.493 0-32-14.507-32-32v-183.040c0-17.493 14.507-32 32-32s32 14.507 32 32v183.040c0 17.92-14.507 32-32 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["voice-cricle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":237,"id":890,"name":"voice-cricle","prevSize":32,"code":59832},"setIdx":2,"setId":2,"iconIdx":11},{"icon":{"paths":["M596.467 222.708c-9.387 0-18.773-4.265-24.747-11.945l-84.48-105.388c-11.093-13.653-8.96-34.133 5.12-44.8 13.653-11.093 33.707-8.96 44.8 5.12l84.48 105.388c11.093 13.653 8.96 34.132-5.12 44.799-5.973 4.267-13.227 6.826-20.053 6.826z","M511.974 970.658c-226.56 0-411.308-184.324-411.308-411.311 0-226.985 184.32-411.305 411.308-411.305 29.44 0 59.307 3.414 91.733 11.094 17.067 3.84 28.16 21.334 23.893 38.401-3.84 17.067-20.907 28.16-38.4 23.893-27.307-6.4-52.907-9.388-77.227-9.388-191.574 0-347.308 155.734-347.308 347.305 0 191.573 155.734 347.311 347.308 347.311s347.307-155.738 347.307-347.311c0-74.24-24.32-145.917-70.4-207.357-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.682 44.8 6.398c54.613 72.533 83.2 157.439 83.2 245.759 0 226.987-184.747 411.311-411.307 411.311z","M407.021 711.258c-17.493 0-32-14.507-32-32v-144.64l-8.107 8.96c-11.947 13.227-32 14.080-45.227 2.56-13.227-11.947-14.080-32-2.56-45.227l64-71.253c8.96-9.814 23.040-13.228 35.413-8.535 12.372 4.693 20.478 16.641 20.478 29.868v228.267c0 17.92-14.078 32-31.998 32z","M597.333 711.266c-64.853 0-117.333-52.48-117.333-117.333v-57.6c0-64.853 52.48-117.333 117.333-117.333s117.333 52.48 117.333 117.333v57.6c0 64.853-52.48 117.333-117.333 117.333zM597.333 483.426c-29.44 0-53.333 23.893-53.333 53.333v57.6c0 29.44 23.893 53.333 53.333 53.333s53.333-23.893 53.333-53.333v-57.6c0-29.44-23.893-53.333-53.333-53.333z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forward-10-seconds"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":238,"id":889,"name":"forward-10-seconds","prevSize":32,"code":59654},"setIdx":2,"setId":2,"iconIdx":12},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M587.102 757.333h-150.613c-46.932 0-84.052-23.040-104.959-64.853l-37.973-76.373c-8.96-18.347-27.307-29.44-47.787-29.44h-160.853c-17.493 0-32-14.507-32-32s14.933-32 32.427-32h160.427c44.8 0 84.907 24.747 104.96 64.853l37.973 76.373c9.813 19.627 25.6 29.44 47.785 29.44h150.613c20.48 0 38.827-11.093 47.787-29.44l37.973-76.373c20.053-40.107 60.16-64.853 104.96-64.853h159.573c17.493 0 32 14.507 32 32s-14.507 32-32 32h-159.573c-20.48 0-38.827 11.093-47.787 29.44l-37.973 76.373c-20.053 40.107-60.16 64.853-104.96 64.853z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-normal"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":239,"id":888,"name":"direct-normal","prevSize":32,"code":59655},"setIdx":2,"setId":2,"iconIdx":13},{"icon":{"paths":["M597.333 970.667h-170.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM426.667 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h170.667c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-170.667z","M642.97 535.044c-7.68 0-15.36-2.987-21.333-8.107-62.293-55.467-157.013-55.467-219.305 0-6.827 6.4-16.214 8.96-26.027 7.68-9.387-1.28-17.493-6.827-22.613-14.933l-93.013-149.333c-8.107-13.227-5.547-30.293 5.973-40.96 139.947-124.16 350.719-124.16 490.666 0 11.52 10.24 14.080 27.733 5.973 40.96l-93.013 149.333c-5.12 8.107-13.227 13.227-22.613 14.933-1.707 0-3.413 0.427-4.693 0.427zM511.983 421.124c42.667 0 84.907 11.947 122.027 35.413l59.733-96c-107.947-80.213-256-80.213-363.946 0l59.734 96c37.545-23.893 79.785-35.413 122.452-35.413z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["weight"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":240,"id":887,"name":"weight","prevSize":32,"code":59656},"setIdx":2,"setId":2,"iconIdx":14},{"icon":{"paths":["M938.667 778.667h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 778.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.667 309.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 309.333h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M554.667 906.667h-256c-73.387 0-117.333-43.947-117.333-117.333v-85.333c0-73.387 43.947-117.333 117.333-117.333h256c73.387 0 117.333 43.947 117.333 117.333v85.333c0 73.387-43.947 117.333-117.333 117.333zM298.667 650.667c-37.973 0-53.333 15.36-53.333 53.333v85.333c0 37.973 15.36 53.333 53.333 53.333h256c37.973 0 53.333-15.36 53.333-53.333v-85.333c0-37.973-15.36-53.333-53.333-53.333h-256z","M725.333 437.333h-256c-73.387 0-117.333-43.947-117.333-117.333v-85.333c0-73.387 43.947-117.333 117.333-117.333h256c73.387 0 117.333 43.947 117.333 117.333v85.333c0 73.387-43.947 117.333-117.333 117.333zM469.333 181.333c-37.973 0-53.333 15.36-53.333 53.333v85.333c0 37.973 15.36 53.333 53.333 53.333h256c37.973 0 53.333-15.36 53.333-53.333v-85.333c0-37.973-15.36-53.333-53.333-53.333h-256z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["candle-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":241,"id":886,"name":"candle-2","prevSize":32,"code":59660},"setIdx":2,"setId":2,"iconIdx":15},{"icon":{"paths":["M531.644 970.671c-7.253 0-14.507 0-21.76-0.427-238.932-10.667-438.612-203.093-455.252-437.76-14.507-201.386 101.973-389.546 289.707-468.48 53.333-22.186 81.493-5.12 93.438 7.253 11.947 11.947 28.587 39.68 6.4 90.453-19.625 45.227-29.438 93.44-29.012 142.933 0.853 189.013 157.865 349.44 349.438 357.12 27.733 1.28 55.040-0.853 81.493-5.547 56.32-10.24 79.787 12.373 88.747 26.88s19.2 45.653-14.933 91.733c-90.453 123.733-234.24 195.84-388.267 195.84zM118.205 527.791c14.507 203.093 187.733 369.493 394.238 378.453 140.373 6.827 273.493-57.173 355.413-168.96 6.4-8.96 9.387-15.36 10.667-18.773-3.84-0.427-10.667-0.853-21.333 1.28-31.147 5.547-63.573 7.68-95.573 6.4-225.28-8.96-409.598-197.973-410.878-420.693 0-58.88 11.52-115.627 34.987-168.96 4.267-9.387 5.12-15.787 5.547-19.2-3.84 0-10.667 0.853-21.76 5.547-162.56 68.267-263.253 231.253-251.307 404.906z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["moon"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":242,"id":885,"name":"moon","prevSize":32,"code":59661},"setIdx":2,"setId":2,"iconIdx":16},{"icon":{"paths":["M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M768 373.331c-17.493 0-32-14.507-32-32v-256c0-12.8 7.68-24.747 19.627-29.44s25.6-2.133 34.987 6.827l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0l-30.72-30.72v178.773c0 17.493-14.507 32-32 32z","M682.645 202.664c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z","M113.891 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.533-44.373l210.347-141.227c46.080-30.72 109.653-27.307 151.466 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.227-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-32 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.173-18.347-78.507 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.079-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-209.92 141.227c-5.973 3.413-12.373 5.12-18.347 5.12z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-export"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":243,"id":884,"name":"gallery-export","prevSize":32,"code":59662},"setIdx":2,"setId":2,"iconIdx":17},{"icon":{"paths":["M110.064 401.93c-3.413 0-7.253-0.426-10.667-1.706-16.64-5.973-25.173-24.321-19.626-40.961 28.587-80.213 78.080-150.612 144.214-203.945 13.653-11.093 33.706-8.96 44.799 4.693s8.961 33.707-4.692 45.227c-56.747 45.653-99.413 106.239-123.733 175.359-4.693 13.227-17.068 21.333-30.294 21.333z","M110.080 686.080c-13.227 0-25.6-8.107-30.293-21.333-17.493-49.92-26.453-101.12-26.453-152.747 0-17.493 14.507-32 32-32s32 14.507 32 32c0 44.373 7.68 88.747 23.040 131.413 5.973 16.64-2.988 34.987-19.628 40.96-3.413 1.28-7.253 1.707-10.667 1.707z","M512.026 970.671c-45.227 0-90.027-6.827-133.547-20.053-17.067-5.12-26.453-23.040-21.333-40.107s23.040-26.453 40.107-21.333c37.12 11.52 75.947 17.062 114.773 17.062 217.6 0 394.667-177.067 394.667-394.667 0-22.187-2.133-45.227-6.4-69.547-2.987-17.492 8.533-34.132 26.027-37.118s34.133 8.533 37.12 26.025c5.12 28.16 7.68 54.618 7.68 81.071-0.427 253.013-206.080 458.667-459.093 458.667z","M244.063 874.671c-7.253 0-14.080-2.133-20.053-7.253-24.32-19.627-43.947-38.404-60.587-57.604-11.52-13.227-9.813-33.707 3.414-45.227s33.707-9.809 45.227 3.418c14.080 16.213 31.147 32.422 52.053 49.489 13.653 11.093 15.786 31.151 4.693 44.804-5.973 8.107-15.36 12.373-24.746 12.373z","M863.59 302.508c-10.24 0-20.053-4.694-26.453-14.081-73.813-107.52-195.413-171.521-325.12-171.521-38.827 0-77.653 5.548-114.773 17.068-16.64 5.12-34.56-4.267-40.107-21.333s4.267-34.987 21.333-40.107c43.52-13.227 88.32-20.055 133.547-20.055 151.040 0 292.267 74.668 378.027 199.255 9.813 14.507 6.4 34.559-8.107 44.372-5.547 4.693-11.947 6.401-18.347 6.401z","M366.507 762.014c-55.040 0-99.84-44.8-99.84-99.84s44.8-99.84 99.84-99.84c55.040 0 99.84 44.8 99.84 99.84s-44.8 99.84-99.84 99.84zM366.507 626.334c-19.627 0-35.84 16.213-35.84 35.84s16.213 35.84 35.84 35.84c19.627 0 35.84-16.213 35.84-35.84s-16.213-35.84-35.84-35.84z","M434.334 694.174c-17.494 0-32-14.507-32-32v-273.066c0-40.96 25.6-74.667 65.28-85.333l135.68-37.12c40.96-11.093 66.56-0.427 80.64 10.24 20.48 15.787 30.72 40.96 30.72 75.094v264.959c0 17.493-14.507 32-32 32s-32-14.507-32-32v-264.959c0-14.507-2.987-22.187-5.973-23.893-2.987-2.133-11.947-2.986-25.173 0.427l-135.68 37.12c-11.947 3.413-17.92 11.093-17.92 23.466v273.066c0.427 17.493-14.080 32-31.573 32z","M614.839 716.804c-55.040 0-99.84-44.8-99.84-99.84s44.8-99.84 99.84-99.84c55.040 0 99.84 44.8 99.84 99.84s-44.8 99.84-99.84 99.84zM614.839 581.124c-19.627 0-35.84 16.213-35.84 35.84s16.213 35.84 35.84 35.84c19.627 0 35.84-16.213 35.84-35.84s-16.213-35.84-35.84-35.84z","M434.359 490.658c-14.080 0-26.88-9.387-30.72-23.467-4.693-17.067 5.547-34.56 22.613-39.253l248.32-67.84c17.067-4.693 34.56 5.545 39.253 22.612s-5.547 34.562-22.613 39.255l-248.32 67.839c-2.987 0.853-5.973 0.853-8.533 0.853z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":244,"id":883,"name":"music-circle","prevSize":32,"code":59833},"setIdx":2,"setId":2,"iconIdx":18},{"icon":{"paths":["M843.52 480h-172.373c-85.76 0-127.147-41.813-127.147-127.147v-172.373c0-85.76 41.813-127.147 127.147-127.147h172.373c85.76 0 127.147 41.813 127.147 127.147v172.373c0 85.333-41.813 127.147-127.147 127.147zM671.147 117.333c-50.347 0-63.147 12.8-63.147 63.147v172.373c0 50.347 12.8 63.147 63.147 63.147h172.373c50.347 0 63.147-12.8 63.147-63.147v-172.373c0-50.347-12.8-63.147-63.147-63.147h-172.373z","M352.853 480h-172.373c-85.76 0-127.147-37.973-127.147-116.48v-193.707c0-78.507 41.813-116.48 127.147-116.48h172.373c85.76 0 127.147 37.973 127.147 116.48v193.28c0 78.933-41.813 116.907-127.147 116.907zM180.48 117.333c-57.173 0-63.147 16.213-63.147 52.48v193.28c0 36.693 5.973 52.48 63.147 52.48h172.373c57.173 0 63.147-16.213 63.147-52.48v-193.28c0-36.693-5.973-52.48-63.147-52.48h-172.373z","M352.853 970.667h-172.373c-85.76 0-127.147-41.813-127.147-127.147v-172.373c0-85.76 41.813-127.147 127.147-127.147h172.373c85.76 0 127.147 41.813 127.147 127.147v172.373c0 85.333-41.813 127.147-127.147 127.147zM180.48 608c-50.347 0-63.147 12.8-63.147 63.147v172.373c0 50.347 12.8 63.147 63.147 63.147h172.373c50.347 0 63.147-12.8 63.147-63.147v-172.373c0-50.347-12.8-63.147-63.147-63.147h-172.373z","M874.667 778.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M746.667 906.667c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v256c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-plus"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":245,"id":882,"name":"element-plus","prevSize":32,"code":59663},"setIdx":2,"setId":2,"iconIdx":19},{"icon":{"paths":["M85.333 416c-17.493 0-32-14.507-32-32v-106.667c0-123.733 100.693-224 224-224h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-106.667c-88.32 0-160 71.68-160 160v106.667c0 17.493-14.507 32-32 32z","M938.667 416c-17.493 0-32-14.507-32-32v-106.667c0-88.32-71.68-160-160-160h-106.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h106.667c123.307 0 224 100.267 224 224v106.667c0 17.493-14.507 32-32 32z","M746.667 970.667h-64c-17.493 0-32-14.507-32-32s14.507-32 32-32h64c88.32 0 160-71.68 160-160v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 123.733-100.693 224-224 224z","M384 970.667h-106.667c-123.307 0-224-100.267-224-224v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 88.32 71.68 160 160 160h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M362.667 501.333c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM362.667 288c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M320 800c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM320 672c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z","M704 416c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM704 288c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z","M661.333 800c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM661.333 586.667c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scanning"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":246,"id":881,"name":"scanning","prevSize":32,"code":59664},"setIdx":2,"setId":2,"iconIdx":20},{"icon":{"paths":["M597.333 288h-170.667c-40.96 0-117.333 0-117.333-117.333s76.373-117.333 117.333-117.333h170.667c40.96 0 117.333 0 117.333 117.333 0 40.96 0 117.333-117.333 117.333zM426.667 117.333c-42.24 0-53.333 0-53.333 53.333s11.093 53.333 53.333 53.333h170.667c53.333 0 53.333-11.093 53.333-53.333 0-53.333-11.093-53.333-53.333-53.333h-170.667z","M640 970.662h-256c-239.787 0-288-110.080-288-288v-255.999c0-194.56 70.4-277.76 243.627-286.72 17.493-0.853 32.853 12.373 33.707 30.293s-12.8 32.427-30.293 33.28c-121.173 6.827-183.040 43.093-183.040 223.147v255.999c0 157.867 31.147 224 224 224h256c192.853 0 224-66.133 224-224v-255.999c0-180.053-61.867-216.32-183.040-223.147-17.493-0.853-31.147-16.213-30.293-33.707s16.213-31.147 33.707-30.293c173.227 9.387 243.627 92.587 243.627 286.72v255.999c0 178.347-48.213 288.427-288 288.427z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-normal"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":247,"id":880,"name":"document-normal","prevSize":32,"code":59665},"setIdx":2,"setId":2,"iconIdx":21},{"icon":{"paths":["M618.667 714.667h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M221.854 446.289c-8.107 0-16.213-3.413-22.613-9.387-8.96-8.96-11.947-23.041-6.827-34.988l79.36-189.44c1.707-3.84 2.56-6.4 3.84-8.533 63.147-145.493 143.787-180.907 286.293-126.293 8.107 2.987 14.507 9.387 17.92 17.493s3.413 17.067 0 25.173l-125.013 290.133c-5.12 11.52-16.64 19.201-29.44 19.201h-121.6c-24.32 0-47.36 4.693-69.547 14.080-3.84 1.707-8.107 2.56-12.373 2.56zM452.681 117.328c-52.907 0-85.333 34.56-119.040 113.067-0.427 1.28-1.28 2.56-1.707 3.84l-55.893 132.693c9.387-0.853 18.347-1.28 27.733-1.28h100.267l102.827-238.933c-20.053-6.4-37.973-9.387-54.187-9.387z","M780.382 438.187c-2.987 0-6.4-0.427-9.387-1.28-15.787-4.693-33.28-7.253-51.2-7.253h-294.399c-10.667 0-20.907-5.546-26.88-14.506-5.547-8.96-6.827-20.48-2.56-30.293l123.732-287.147c6.4-15.36 24.747-25.6 40.96-20.48 5.12 1.707 9.813 3.84 14.933 5.973l100.693 42.24c58.88 24.32 98.133 49.92 123.733 80.64 5.12 5.973 9.387 12.373 13.227 18.773 4.693 7.253 8.96 16.213 11.947 25.173 1.28 2.987 3.413 8.533 4.693 14.507 11.947 40.107 5.973 90.027-19.627 154.027-5.12 11.946-17.067 19.626-29.867 19.626zM474.035 365.654h246.187c13.653 0 26.88 1.28 40.107 3.413 11.947-37.12 14.507-65.707 7.68-88.747-0.853-3.84-1.707-5.547-2.133-7.253-2.56-6.827-4.267-10.667-6.4-14.080-2.987-4.693-5.12-8.533-8.533-12.373-18.347-22.187-50.773-42.667-98.987-62.293l-84.48-35.413-93.44 216.747z","M678.4 970.658h-332.8c-11.947 0-23.040-0.853-34.133-2.133-149.76-10.24-235.093-95.573-245.333-247.040-1.28-9.387-2.133-20.907-2.133-32.427v-83.2c0-96 57.173-182.612 145.493-221.012 29.867-12.8 61.867-19.2 94.72-19.2h416.427c24.32 0 47.787 3.413 69.547 10.24 100.267 30.293 170.667 125.012 170.667 229.972v83.2c0 9.387-0.427 18.347-0.853 26.88-9.387 166.827-106.667 254.72-281.6 254.72zM303.787 429.645c-24.32 0-47.36 4.693-69.547 14.080-64.853 28.16-106.667 91.733-106.667 162.133v83.2c0 8.96 0.853 17.92 1.707 26.453 8.107 121.6 67.84 181.333 187.733 189.44 10.667 1.28 19.2 2.133 28.16 2.133h332.8c140.8 0 209.92-61.867 216.747-194.133 0.427-7.68 0.853-15.36 0.853-23.893v-83.2c0-77.227-51.627-146.347-125.013-168.96-15.787-4.693-33.28-7.253-51.2-7.253h-415.573z","M95.583 637.858c-17.493 0-32-14.507-32-32v-125.013c0-134.4 95.147-250.453 226.56-276.053 11.52-2.133 23.467 2.133 31.147 11.093 7.253 8.96 9.387 21.76 4.693 32.427l-74.667 178.347c-3.413 7.68-9.387 13.653-16.64 17.067-64.853 28.16-106.667 91.733-106.667 162.133-0.427 17.493-14.507 32-32.427 32zM238.943 290.978c-54.613 30.72-94.293 84.48-106.667 147.2 18.773-19.2 40.533-35.413 65.28-47.36l41.387-99.84z","M928.393 637.858c-17.493 0-32-14.507-32-32 0-77.227-51.627-146.347-125.013-168.96-8.533-2.56-15.787-8.533-19.627-16.641s-4.267-17.493-0.853-25.6c20.053-49.92 25.173-86.187 17.067-114.347-0.853-3.84-1.707-5.547-2.133-7.253-5.547-12.373-2.56-26.88 7.253-36.267s24.747-11.52 36.693-5.12c93.013 48.64 150.613 144.213 150.613 249.174v125.013c0 17.493-14.507 32-32 32zM821.299 387.831c26.88 12.373 50.773 29.867 70.827 50.774-8.107-41.814-28.16-79.788-57.6-109.654-2.133 17.92-6.4 37.547-13.227 58.88z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-minus"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":248,"id":879,"name":"wallet-minus","prevSize":32,"code":59834},"setIdx":2,"setId":2,"iconIdx":22},{"icon":{"paths":["M576 394.667h-490.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h490.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h301.227c17.493 0 32 14.507 32 32s-14.507 32-32 32h-301.227c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 132.267 23.467 155.307 157.44 155.307h474.027c133.973 0 157.44-23.040 157.44-155.307v-174.080c0-17.493 14.507-32 32-32s32 14.507 32 32v174.080c0.427 168.533-51.2 219.733-221.013 219.733z","M938.667 298.667h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M821.333 416c-17.493 0-32-14.507-32-32v-234.667c0-17.493 14.507-32 32-32s32 14.507 32 32v234.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":249,"id":878,"name":"card-add","prevSize":32,"code":59835},"setIdx":2,"setId":2,"iconIdx":23},{"icon":{"paths":["M938.667 416c-17.493 0-32-14.507-32-32v-85.333c0-110.080-71.253-181.333-181.333-181.333h-426.667c-110.080 0-181.333 71.253-181.333 181.333v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-146.773 98.56-245.333 245.333-245.333h426.667c146.773 0 245.333 98.56 245.333 245.333v85.333c0 17.493-14.507 32-32 32z","M725.333 970.667h-426.667c-146.773 0-245.333-98.56-245.333-245.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 110.080 71.253 181.333 181.333 181.333h426.667c110.080 0 181.333-71.253 181.333-181.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 146.773-98.56 245.333-245.333 245.333z","M512.026 558.080c-5.547 0-11.093-1.284-16.213-4.271l-226.133-130.559c-15.36-8.96-20.48-28.585-11.52-43.945s28.587-20.481 43.52-11.521l209.92 121.599 208.64-120.745c15.36-8.96 34.987-3.415 43.52 11.518 8.96 15.36 3.413 34.988-11.52 43.948l-224.427 129.705c-4.693 2.56-10.24 4.271-15.787 4.271z","M512 790.191c-17.493 0-32-14.507-32-32v-232.107c0-17.493 14.507-32 32-32s32 14.507 32 32v232.107c0 17.493-14.507 32-32 32z","M512.009 800.004c-24.747 0-49.067-5.551-68.693-16.218l-136.532-75.942c-40.96-22.613-72.533-76.8-72.533-123.733v-144.644c0-46.505 32-100.69 72.533-123.73l136.532-75.948c39.253-21.76 98.133-21.76 137.387 0l136.533 75.948c40.96 22.613 72.533 76.798 72.533 123.73v144.644c0 46.507-32 100.693-72.533 123.733l-136.533 75.942c-19.627 10.667-43.947 16.218-68.693 16.218zM474.462 296.109l-136.532 75.945c-20.907 11.52-39.68 43.948-39.68 67.412v144.644c0 23.893 18.773 55.893 39.68 67.413l136.532 75.942c19.627 10.667 55.467 10.667 75.093 0l136.533-75.942c20.907-11.52 39.68-43.947 39.68-67.413v-144.644c0-23.892-18.773-55.892-39.68-67.412l-136.533-75.945c-19.627-10.667-55.467-10.667-75.093 0z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["d-cube-scan"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":250,"id":877,"name":"d-cube-scan","prevSize":32,"code":59666},"setIdx":2,"setId":2,"iconIdx":24},{"icon":{"paths":["M768 544h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":251,"id":876,"name":"minus","prevSize":32,"code":59667},"setIdx":2,"setId":2,"iconIdx":25},{"icon":{"paths":["M749.227 766.72h-474.453c-169.813 0-221.44-51.627-221.44-221.44v-270.507c0-169.813 51.627-221.44 221.44-221.44h474.027c169.813 0 221.44 51.627 221.44 221.44v270.080c0.427 170.24-51.2 221.867-221.013 221.867zM274.773 117.333c-133.973 0-157.44 23.467-157.44 157.44v270.080c0 133.973 23.467 157.44 157.44 157.44h474.027c133.973 0 157.44-23.467 157.44-157.44v-270.080c0-133.973-23.467-157.44-157.44-157.44h-474.027z","M512 970.667c-17.493 0-32-14.507-32-32v-203.947c0-17.493 14.507-32 32-32s32 14.507 32 32v203.947c0 17.493-14.507 32-32 32z","M938.667 586.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M704 970.667h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["monitor"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":252,"id":875,"name":"monitor","prevSize":32,"code":59668},"setIdx":2,"setId":2,"iconIdx":26},{"icon":{"paths":["M650.231 970.667h-276.479c-80.64 0-139.52-33.707-162.133-91.733-23.467-60.587-1.707-135.68 54.613-186.453l197.972-180.48-197.972-180.48c-56.32-50.773-78.080-125.867-54.613-186.453 22.613-58.453 81.493-91.733 162.133-91.733h276.479c80.64 0 139.52 33.707 162.133 91.733 23.467 60.587 1.707 135.68-54.613 186.453l-197.973 180.48 198.4 180.48c55.893 50.773 78.080 125.867 54.613 186.453-23.040 58.027-81.92 91.733-162.56 91.733zM511.991 555.093l-202.666 184.32c-35.84 32.853-51.627 80.64-37.973 116.053 12.8 32.853 49.067 51.2 102.4 51.2h276.479c53.333 0 89.6-17.92 102.4-51.2 13.653-35.413-1.707-83.2-37.973-116.053l-202.667-184.32zM373.752 117.333c-53.333 0-89.6 17.92-102.4 51.2-13.653 35.413 1.707 83.2 37.973 116.053l202.666 184.32 202.667-184.32c35.84-32.853 51.627-80.64 37.973-116.053-12.8-32.853-49.067-51.2-102.4-51.2h-276.479z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["timer"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":253,"id":874,"name":"timer","prevSize":32,"code":59669},"setIdx":2,"setId":2,"iconIdx":27},{"icon":{"paths":["M511.979 716.804c-29.867 0-59.733-11.52-82.347-34.133l-278.185-278.185c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l278.185 278.185c20.48 20.48 53.76 20.48 74.24 0l278.187-278.185c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-278.187 278.185c-22.613 22.613-52.48 34.133-82.347 34.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-1"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":254,"id":873,"name":"arrow-down-1","prevSize":32,"code":59670},"setIdx":2,"setId":2,"iconIdx":28},{"icon":{"paths":["M255.99 970.658c-12.8 0-26.454-1.28-40.107-3.84-7.253-1.707-13.653-3.413-20.053-5.12-7.253-2.133-14.080-4.693-20.48-7.253-1.707-0.427-2.985-1.28-4.265-1.707-14.933-7.68-27.734-15.36-39.254-23.893-0.853-0.427-1.28-1.28-2.133-1.707-6.4-5.12-12.374-10.24-17.92-16.213-5.973-6.4-10.24-11.52-14.934-16.64-9.813-12.8-17.92-25.6-25.173-40.533-0.853-1.28-1.279-2.987-1.706-4.693-2.56-5.973-4.694-11.947-6.401-18.347-2.56-8.96-4.267-14.933-5.547-21.333-2.987-14.933-4.265-28.16-4.265-40.96v-576.001c0-81.493 57.173-138.667 138.667-138.667h128c81.493 0 138.668 57.173 138.668 138.667v575.575c0 52.907-20.48 103.253-57.602 141.227-6.827 6.827-11.947 11.52-16.641 15.36-13.653 11.947-31.146 22.613-49.919 30.293-4.267 1.707-9.387 3.84-14.933 5.973-20.907 6.4-42.667 9.813-64 9.813zM202.229 895.991c4.267 1.707 8.534 2.987 12.8 4.267 4.693 1.28 9.386 2.56 14.080 3.84 23.467 4.267 48.641 2.987 68.694-3.84 2.987-1.28 7.252-2.56 11.092-4.267 13.653-5.547 24.746-12.373 34.56-20.48 4.267-3.413 7.254-6.4 10.241-8.96 26.88-27.733 40.96-61.867 40.96-98.133v-576.001c0-46.080-28.587-74.667-74.667-74.667h-128c-46.080 0-74.667 28.587-74.667 74.667v575.575c0 8.96 0.853 18.347 2.987 28.16 0.853 3.84 2.133 8.533 3.413 13.653 1.707 4.693 2.988 8.533 4.694 12.8 0.853 1.28 1.279 2.56 1.705 3.413s0.853 2.133 1.28 2.987c5.12 9.387 10.241 17.493 15.788 24.747 2.987 3.413 6.827 7.68 10.667 11.947 4.693 5.12 8.533 8.107 12.8 11.52 0.427 0.427 1.28 0.853 1.707 1.28 6.827 5.12 14.506 9.813 23.466 14.507 0.853 0.427 1.707 0.427 2.56 0.853s2.133 1.28 3.84 2.133z","M832 970.658h-576c-17.493 0-32-14.507-32-32s14.507-32 32-32c14.933 0 29.44-2.133 41.814-6.4 2.987-1.28 7.252-2.56 11.092-4.267 13.653-5.547 24.747-12.373 34.56-20.48 4.267-3.413 7.254-6.4 10.241-8.96l291.84-291.413c5.973-5.973 14.080-9.387 22.613-9.387h163.84c81.493 0 138.667 57.173 138.667 138.667v128c0 81.067-57.173 138.24-138.667 138.24zM403.626 906.658h428.374c46.080 0 74.667-28.587 74.667-74.667v-128c0-46.080-28.587-74.667-74.667-74.667h-150.613l-277.76 277.333z","M205.235 962.987c-2.987 0-5.973-0.427-8.96-1.28-31.573-9.387-60.586-26.88-83.626-50.347-23.040-22.613-40.534-51.627-49.921-83.2-5.12-17.067 4.267-34.56 21.333-39.68s34.56 4.267 40.107 20.907c13.653 43.52 47.786 77.653 91.306 91.307 16.64 5.12 26.028 23.040 20.908 40.107-4.693 13.227-17.494 22.187-31.147 22.187z","M378.025 919.036c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.799-32.427-0.426-45.227 25.6-26.027 39.68-60.587 39.68-96.853v-412.159c0-8.533 3.413-16.64 9.387-22.613l115.627-115.627c55.893-55.893 140.373-55.893 196.267 0l90.453 90.454c57.6 57.6 57.6 138.665 0 196.265l-405.76 405.333c-6.4 6.827-14.508 9.813-22.615 9.813zM458.667 369.063v392.106l302.507-302.080c32.427-32.426 32.427-72.959 0-105.812l-90.453-90.453c-32-32-73.813-32-105.813 0l-106.24 106.24z","M256 842.667c-40.96 0-74.667-33.707-74.667-74.667s33.707-74.667 74.667-74.667c40.96 0 74.667 33.707 74.667 74.667s-33.707 74.667-74.667 74.667zM256 757.333c-5.973 0-10.667 4.693-10.667 10.667 0 11.947 21.333 11.947 21.333 0 0-5.973-4.693-10.667-10.667-10.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["color-swatch"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":255,"id":872,"name":"color-swatch","prevSize":32,"code":59836},"setIdx":2,"setId":2,"iconIdx":29},{"icon":{"paths":["M511.991 438.618c-43.52 0-87.042-7.68-128.428-22.615-16.64-5.973-25.173-24.32-19.2-40.96 6.4-16.64 24.747-25.173 41.387-19.2 68.695 24.747 144.215 24.747 212.908 0 16.64-5.973 34.987 2.56 40.96 19.2s-2.56 34.987-19.2 40.96c-41.387 14.935-84.907 22.615-128.427 22.615z","M813.666 970.667c-21.76 0-45.653-6.4-68.693-19.627l-208.213-115.627c-12.373-6.827-36.693-6.827-49.067 0l-208.213 115.627c-42.24 23.467-85.333 26.027-118.187 6.4-32.853-19.2-51.627-58.027-51.627-106.24v-601.173c0-108.373 88.32-196.693 196.693-196.693h411.733c108.373 0 196.693 88.32 196.693 196.693v601.173c0 48.213-18.773 87.040-51.627 106.24-14.933 8.96-32 13.227-49.493 13.227zM512.013 766.293c20.053 0 39.68 4.267 55.467 13.227l208.213 115.627c21.76 12.373 41.813 14.933 54.613 7.253s20.053-26.027 20.053-51.2v-601.173c0-72.96-59.733-132.693-132.693-132.693h-411.306c-72.96 0-132.693 59.733-132.693 132.693v601.173c0 25.173 7.253 43.947 20.053 51.2s32.427 5.12 54.613-7.253l208.213-115.627c15.787-8.96 35.413-13.227 55.467-13.227z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":256,"id":871,"name":"archive-1","prevSize":32,"code":59671},"setIdx":2,"setId":2,"iconIdx":30},{"icon":{"paths":["M729.6 53.333h-179.2c-166.827 0-241.067 74.24-241.067 241.067v46.933c0 17.493 14.507 32 32 32h132.267c132.267 0 177.067 44.8 177.067 177.067v132.267c0 17.493 14.507 32 32 32h46.933c166.827 0 241.067-74.24 241.067-241.067v-179.2c0-166.827-74.24-241.067-241.067-241.067zM373.333 309.333v-14.933c0-132.267 44.8-177.067 177.067-177.067h179.2c132.267 0 177.067 44.8 177.067 177.067v179.2c0 132.267-44.8 177.067-177.067 177.067h-14.933v-100.267c0-166.827-74.24-241.067-241.067-241.067h-100.267z","M473.6 309.333h-179.2c-166.827 0-241.067 74.24-241.067 241.067v179.2c0 166.827 74.24 241.067 241.067 241.067h179.2c166.827 0 241.067-74.24 241.067-241.067v-179.2c0-166.827-74.24-241.067-241.067-241.067zM294.4 906.667c-132.267 0-177.067-44.8-177.067-177.067v-179.2c0-132.267 44.8-177.067 177.067-177.067h179.2c132.267 0 177.067 44.8 177.067 177.067v179.2c0 132.267-44.8 177.067-177.067 177.067h-179.2z","M342.593 755.2c-8.107 0-16.213-2.987-22.613-9.387l-83.2-83.2c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l60.587 60.587 143.359-143.36c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-166.399 165.973c-5.973 5.973-14.080 9.387-22.187 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy-success"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":257,"id":870,"name":"copy-success","prevSize":32,"code":59672},"setIdx":2,"setId":2,"iconIdx":31},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 970.667h-768c-17.493 0-32-14.507-32-32v-298.667c0-229.547 186.453-416 416-416s416 186.453 416 416v298.667c0 17.493-14.507 32-32 32zM160 906.667h704v-266.667c0-194.133-157.867-352-352-352s-352 157.867-352 352v266.667z","M512 160c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.493-14.507 32-32 32z","M213.31 245.331c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M810.645 245.331c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l42.667-42.667c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-42.667 42.667c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["alarm"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":258,"id":869,"name":"alarm","prevSize":32,"code":59837},"setIdx":2,"setId":2,"iconIdx":32},{"icon":{"paths":["M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h64c74.667 0 98.133 24.32 128 64l64 85.333c14.080 18.773 16.213 21.333 42.667 21.333h128c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 117.333c-152.32 0-181.333 29.013-181.333 181.333v426.667c0 152.32 29.013 181.333 181.333 181.333h426.667c152.32 0 181.333-29.013 181.333-181.333v-256c0-152.32-29.013-181.333-181.333-181.333h-128c-54.613 0-72.533-18.773-93.867-46.933l-64-85.333c-22.187-29.44-28.587-38.4-76.8-38.4h-64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":259,"id":868,"name":"folder","prevSize":32,"code":59673},"setIdx":2,"setId":2,"iconIdx":33},{"icon":{"paths":["M810.667 570.022h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M649.387 927.991h-402.772c-146.347 0-193.281-46.507-193.281-191.147v-298.24c0-114.773 26.028-182.613 158.294-190.293 11.093-0.427 22.614-0.854 34.987-0.854h402.772c146.347 0 193.28 46.507 193.28 191.147v305.067c-1.707 139.52-48.64 184.32-193.28 184.32zM246.615 311.458c-11.52 0-22.187 0.427-32 0.854-76.373 4.693-97.281 20.906-97.281 126.293v298.24c0 109.227 17.921 127.147 129.281 127.147h402.772c110.080 0 128-17.067 129.28-120.747v-304.64c0-109.227-17.92-127.147-129.28-127.147h-402.772z","M810.667 775.68c-8.107 0-16.213-2.987-21.76-8.533-6.4-5.973-10.24-14.507-10.24-23.467v-305.067c0-109.227-17.92-127.147-129.28-127.147h-402.772c-11.52 0-22.187 0.427-32 0.853-8.533 0.427-17.069-2.987-23.469-8.96s-9.812-14.507-9.812-23.467c1.707-139.093 48.641-183.893 193.281-183.893h402.772c146.347 0 193.28 46.507 193.28 191.147v298.24c0 114.773-26.027 182.613-158.293 190.293-0.427 0-1.28 0-1.707 0zM246.615 247.467h402.772c146.347 0 193.28 46.507 193.28 191.147v269.653c49.493-8.96 64-34.56 64-122.88v-298.24c0-109.227-17.92-127.147-129.28-127.147h-402.772c-97.28 0-122.453 13.227-128 87.467z","M296.972 791.898h-73.388c-17.493 0-32-14.507-32-32s14.507-32 32-32h73.388c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M535.441 791.898h-146.774c-17.493 0-32-14.507-32-32s14.507-32 32-32h146.774c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cards"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":260,"id":867,"name":"cards","prevSize":32,"code":59674},"setIdx":2,"setId":2,"iconIdx":34},{"icon":{"paths":["M682.658 952.316c-14.507 0-28.587-4.262-40.96-12.369l-181.76-121.178h-80.641c-9.813 0-19.201-4.689-25.175-12.369-5.973-8.107-8.105-18.351-5.545-27.738 2.56-10.24 3.84-20.48 3.84-31.573 0-34.133-12.8-66.982-35.84-92.582-26.027-29.44-63.147-46.084-102.827-46.084-37.973 0-73.388 14.933-99.414 41.813-8.107 8.533-20.48 11.947-31.573 8.533s-20.053-12.373-22.613-23.893c-4.267-18.773-6.4-39.253-6.4-61.44v-255.998c0-146.773 98.56-245.333 245.333-245.333h426.668c146.773 0 245.333 98.56 245.333 245.333v255.998c0 71.253-23.467 132.693-68.267 177.493-37.547 37.547-87.467 60.164-145.067 66.138v60.582c0 27.733-15.364 52.907-39.684 66.133-11.52 5.547-23.462 8.533-35.409 8.533zM415.99 754.342h53.335c6.4 0 12.373 1.707 17.92 5.547l189.867 126.724c4.267 2.987 8.533 1.702 10.667 0.422s5.973-3.84 5.973-9.813v-90.88c0-17.493 14.507-32 32-32 54.187 0 99.84-17.062 131.84-49.062 32.427-32.427 49.493-78.084 49.493-132.271v-255.999c0-110.080-71.253-181.333-181.333-181.333h-426.668c-110.080 0-181.333 71.253-181.333 181.333v250.879c29.013-15.787 61.867-23.893 96-23.893 58.027 0 113.066 24.751 150.613 67.418 33.28 37.12 52.054 85.329 52.054 135.249-0.427 2.56-0.427 5.12-0.427 7.68z","M213.333 949.333c-50.347 0-98.134-18.773-135.254-52.48-14.933-12.8-28.16-28.587-38.4-46.080-18.773-30.72-29.013-66.987-29.013-104.107 0-53.333 20.48-103.253 57.173-141.227 38.4-39.68 90.027-61.44 145.493-61.44 58.027 0 113.067 24.747 150.613 67.413 33.28 37.12 52.053 85.333 52.053 135.253 0 16.213-2.133 32.427-6.4 47.787-4.267 19.2-12.374 39.253-23.468 56.747-35.413 60.587-101.973 98.133-172.8 98.133zM213.333 608c-37.973 0-73.386 14.933-99.413 41.813-25.173 26.027-39.254 60.16-39.254 96.853 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.786 22.613 26.026 31.573 25.6 23.467 58.454 36.267 92.587 36.267 49.067 0 93.44-25.173 118.613-66.987 7.68-11.947 12.8-25.173 15.786-38.827 2.987-11.093 4.267-21.76 4.267-32.853 0-34.133-12.8-66.987-35.84-92.587-25.6-29.867-63.147-46.507-102.827-46.507z","M259.004 823.044c-8.107 0-16.213-2.987-22.613-9.387l-90.028-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.506 9.387-22.613 9.387z","M167.727 824.316c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.028-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.028 90.027c-6.4 6.4-14.507 9.387-22.613 9.387z","M661.333 480h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":261,"id":866,"name":"message-remove","prevSize":32,"code":59838},"setIdx":2,"setId":2,"iconIdx":35},{"icon":{"paths":["M469.333 885.333c-229.547 0-416-186.453-416-416s186.453-416 416-416c17.493 0 32 14.507 32 32s-14.507 32-32 32c-194.133 0-352 157.867-352 352s157.867 352 352 352c194.133 0 352-157.867 352-352 0-17.493 14.507-32 32-32s32 14.507 32 32c0 229.547-186.453 416-416 416z","M703.996 407.037c-39.253 0-130.56-47.787-158.72-135.68-19.2-60.16 2.987-139.093 72.533-161.707 29.867-9.813 61.013-5.12 85.76 10.667 24.32-15.787 56.32-20.053 86.187-10.667 69.547 22.613 92.16 101.547 72.533 161.707-27.733 89.6-123.733 135.68-158.293 135.68zM606.289 252.157c19.627 61.867 86.187 90.027 98.133 91.307 13.653-1.28 78.933-32.853 96.853-90.88 9.813-31.147 0-71.253-31.147-81.493-13.227-4.267-31.147-1.707-39.68 10.667-5.973 8.96-15.36 14.080-26.027 14.507-9.813 0.427-20.48-4.693-26.453-13.227-9.813-14.080-27.733-16.213-40.533-12.373-30.72 10.24-40.96 50.347-31.147 81.493z","M860.164 972.373c-3.413 0-6.827-0.427-9.813-0.853-20.053-2.56-56.32-16.213-76.8-77.227-10.667-32-6.827-64 10.667-88.32s46.933-37.973 80.64-37.973c43.52 0 77.653 16.64 93.013 46.080s11.093 66.987-13.227 103.253c-30.293 45.653-63.147 55.040-84.48 55.040zM834.564 874.24c7.253 22.187 17.493 33.28 24.32 34.133s19.627-7.253 32.853-26.453c12.373-18.347 13.227-31.573 10.24-37.547s-14.933-12.373-37.12-12.373c-13.227 0-23.040 4.267-28.587 11.52-5.12 7.253-5.973 18.347-1.707 30.72z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-favorite"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":262,"id":865,"name":"search-favorite","prevSize":32,"code":59839},"setIdx":2,"setId":2,"iconIdx":36},{"icon":{"paths":["M128 416c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM128 245.333c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M896 416c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM896 245.333c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M810.667 330.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 330.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M256 885.333h-85.333c-52.907 0-96-43.093-96-96v-85.333c0-52.907 43.093-96 96-96h85.333c52.907 0 96 43.093 96 96v85.333c0 38.4-22.613 72.533-57.6 87.467-11.52 5.547-24.747 8.533-38.4 8.533zM170.667 672c-17.493 0-32 14.507-32 32v85.333c0 17.493 14.507 32 32 32h85.333c4.267 0 8.107-0.849 12.373-2.982 12.373-5.12 19.627-16.644 19.627-29.018v-85.333c0-17.493-14.507-32-32-32h-85.333z","M853.333 885.333h-85.333c-13.653 0-26.88-2.987-39.68-8.96-33.707-14.080-56.32-48.64-56.32-87.040v-85.333c0-52.907 43.093-96 96-96h85.333c52.907 0 96 43.093 96 96v85.333c0 52.907-43.093 96-96 96zM768 672c-17.493 0-32 14.507-32 32v85.333c0 12.373 7.253 23.893 18.347 28.587 5.547 2.56 9.387 3.413 13.653 3.413h85.333c17.493 0 32-14.507 32-32v-85.333c0-17.493-14.507-32-32-32h-85.333z","M576 458.667h-128c-52.907 0-96-43.093-96-96v-128c0-52.907 43.093-96 96-96h128c52.907 0 96 43.093 96 96v128c0 52.907-43.093 96-96 96zM448 202.667c-17.493 0-32 14.507-32 32v128c0 17.493 14.507 32 32 32h128c17.493 0 32-14.507 32-32v-128c0-17.493-14.507-32-32-32h-128z","M809.417 671.991c-1.28 0-2.56 0-3.84 0-17.493-2.133-30.293-17.92-28.16-35.413 0.853-5.973 0.853-11.52 0.853-17.493 0-110.933-60.16-213.336-153.173-260.27-15.787-8.107-22.187-27.305-14.080-43.091s27.307-22.187 43.093-14.080c114.347 58.027 188.16 182.615 188.16 317.441 0 8.533-0.427 16.636-1.707 25.169-1.28 15.787-14.933 27.738-31.147 27.738z","M214.613 672c-16.213 0-29.867-11.947-31.573-28.16-0.853-8.533-1.707-16.64-1.707-25.173 0-134.827 73.813-259.413 188.16-317.44 15.787-8.107 34.987-1.706 43.093 14.081s1.707 34.987-14.080 43.094c-93.013 46.933-153.173 149.332-153.173 260.265 0 5.973 0.427 11.52 0.853 17.493 2.133 17.493-10.667 33.28-28.16 35.413-0.853 0.427-2.133 0.427-3.413 0.427z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bezier"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":263,"id":864,"name":"bezier","prevSize":32,"code":59675},"setIdx":2,"setId":2,"iconIdx":37},{"icon":{"paths":["M533.321 970.675h-359.252c-66.987 0-122.027-53.76-122.027-120.32v-633.174c0-65.28 24.32-116.053 68.693-143.787 44.8-28.16 102.827-27.307 162.987 2.56l189.439 93.013c51.627 25.6 92.16 90.027 92.16 147.2v622.507c0 17.493-14.507 32-32 32zM194.548 117.341c-14.933 0-28.587 3.413-40.107 10.667-24.747 15.36-38.4 47.36-38.4 89.173v633.174c0 31.147 26.027 56.32 58.027 56.32h327.252v-590.507c0-32.853-26.453-75.093-56.747-89.6l-189.439-93.013c-21.76-10.667-42.24-16.213-60.587-16.213z","M802.56 970.658h-269.227c-17.493 0-32-14.507-32-32v-494.080c0-9.813 4.267-18.774 11.947-24.748s17.067-8.533 26.88-6.4l20.053 4.267 279.040 62.294c84.907 18.773 127.573 68.693 130.133 153.6 0.427 0 0.427 4.267 0.427 8.96v161.28c-0.427 109.227-58.027 166.827-167.253 166.827zM565.333 906.658h237.227c75.093 0 102.827-27.733 102.827-102.827v-164.693c-2.133-58.453-24.32-84.48-80.213-96.853l-259.84-58.027v422.4z","M382.72 416h-148.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h148.053c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M382.72 586.667h-148.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h148.053c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M649.374 757.333c-70.4 0-128-57.6-128-128v-180.48c0-9.813 4.267-18.773 11.947-25.174s17.493-8.533 26.88-6.4l192 43.094c14.507 3.413 25.173 16.213 25.173 31.147v137.387c0 70.827-57.173 128.427-128 128.427zM585.374 488.96v140.373c0 35.413 28.587 64 64 64s64-28.587 64-64v-111.787l-128-28.587z","M841.374 757.338c-70.4 0-128-57.6-128-128v-137.387c0-9.813 4.267-18.773 11.947-24.747s17.493-8.533 26.88-6.4l86.613 19.2c84.907 18.773 127.573 68.693 130.133 153.6 0 0.853 0 1.707 0 2.56-3.413 67.84-59.307 121.173-127.573 121.173zM777.374 531.631v97.707c0 35.413 28.587 64 64 64 33.707 0 61.44-26.027 63.573-59.307-2.133-53.76-24.32-79.36-79.787-91.733l-47.787-10.667z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["building"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":264,"id":863,"name":"building","prevSize":32,"code":59840},"setIdx":2,"setId":2,"iconIdx":38},{"icon":{"paths":["M781.653 544h-141.653c-106.24 0-160-60.16-160-179.202v-122.453c0-43.52 5.12-105.813 50.347-139.947 37.973-28.16 92.587-30.293 173.227-6.827 105.813 30.72 194.133 119.040 224.853 224.853 23.467 80.213 21.333 135.255-6.827 172.802-34.133 45.653-96.427 50.773-139.947 50.773zM609.28 143.358c-17.493 0-31.147 3.413-40.107 10.24-16.64 12.373-24.747 41.387-24.747 88.747v122.88c0 95.575 36.693 115.202 96 115.202h141.653c46.933 0 75.947-8.107 88.747-24.747 14.933-19.627 13.653-58.882-2.987-116.482-24.747-84.053-97.28-157.013-181.333-181.333-31.573-9.813-57.173-14.507-77.227-14.507z","M472.337 970.658c-22.613 0-45.653-1.707-68.695-5.547-174.507-28.16-316.587-169.813-344.747-344.32-36.267-224.425 108.373-436.052 329.813-481.279 17.493-3.413 34.133 7.68 37.975 24.747 3.413 17.493-7.681 34.133-24.748 37.973-187.307 38.4-310.187 217.6-279.040 408.319 23.893 147.627 143.787 267.52 291.413 291.413 191.575 30.72 370.348-92.587 408.321-280.747 3.413-17.493 20.48-28.587 37.547-25.173 17.493 3.413 28.587 20.48 25.173 37.547-40.533 199.253-214.613 337.067-413.013 337.067z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":265,"id":862,"name":"graph","prevSize":32,"code":59676},"setIdx":2,"setId":2,"iconIdx":39},{"icon":{"paths":["M597.333 949.333h-170.667c-140.8 0-225.707-28.16-241.493-171.093-2.56-19.2-3.84-42.24-3.84-74.24v-384c0-32 1.28-55.467 4.267-75.52 15.36-141.653 100.267-169.813 241.067-169.813h170.667c140.8 0 225.707 28.16 241.493 171.093 2.56 19.2 3.84 42.24 3.84 74.24v384c0 32-1.28 55.467-4.267 75.52-15.36 141.653-100.267 169.813-241.067 169.813zM426.667 138.667c-141.227 0-168.107 28.587-177.92 113.92-2.133 17.92-3.413 38.4-3.413 67.413v384c0 29.013 1.28 49.493 3.413 66.133 9.387 86.613 36.693 115.2 177.92 115.2h170.667c141.227 0 168.107-28.587 177.92-113.92 2.56-17.92 3.413-38.4 3.413-67.413v-384c0-29.013-1.28-49.493-3.413-66.133-9.387-86.613-36.693-115.2-177.92-115.2h-170.667z","M85.333 864c-17.493 0-32-14.507-32-32v-640c0-17.493 14.507-32 32-32s32 14.507 32 32v640c0 17.493-14.507 32-32 32z","M938.667 842.667c-17.493 0-32-14.507-32-32v-640c0-17.493 14.507-32 32-32s32 14.507 32 32v640c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-horizontal"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":266,"id":861,"name":"slider-horizontal","prevSize":32,"code":59677},"setIdx":2,"setId":2,"iconIdx":40},{"icon":{"paths":["M744.145 655.782c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l86.613-86.613-86.613-86.613c-12.373-12.372-12.373-32.852 0-45.225s32.853-12.373 45.227 0l109.227 109.225c12.373 12.373 12.373 32.853 0 45.227l-109.227 109.227c-6.4 6.4-14.507 9.387-22.613 9.387z","M850.338 546.564h-433.921c-17.493 0-32-14.507-32-32s14.507-32 32-32h433.921c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M501.751 885.333c-219.735 0-373.335-153.6-373.335-373.333s153.6-373.333 373.335-373.333c17.493 0 32 14.507 32 32s-14.507 32-32 32c-182.188 0-309.335 127.147-309.335 309.333s127.147 309.333 309.335 309.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["logout-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":267,"id":860,"name":"logout-1","prevSize":32,"code":59841},"setIdx":2,"setId":2,"iconIdx":41},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987-4.693 11.947-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z","M411.761 798.302c-18.773 0-36.693-7.253-49.92-20.48l-104.96-104.96c-23.040-23.040-26.88-61.867-8.96-89.173l48.213-72.533c11.947-18.347 36.693-31.573 58.88-31.573h113.065c21.76 0 46.507 13.227 58.88 31.573l48.213 72.107c17.92 26.88 14.080 66.133-8.96 89.173l-104.96 104.96c-12.8 13.653-30.72 20.907-49.492 20.907zM355.441 544.009c-1.707 0.427-5.12 2.133-5.973 3.413l-47.787 72.107c-1.28 1.707-0.853 6.827 0.853 8.533l104.96 104.96c2.133 2.133 7.253 2.133 9.387 0l104.958-104.96c1.707-1.707 2.133-6.4 0.853-8.533l-48.213-72.107c-0.853-0.853-4.267-2.56-5.973-2.987l-113.065-0.427z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-sketch"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":268,"id":859,"name":"document-sketch","prevSize":32,"code":59678},"setIdx":2,"setId":2,"iconIdx":42},{"icon":{"paths":["M698.918 970.675h-560.64c-40.533 0-78.080-18.769-102.4-51.622-24.747-33.28-32-75.098-19.626-114.778l179.626-577.28c16.213-53.76 65.707-90.453 122.027-90.453h524.799c51.627 0 98.133 30.723 117.76 78.51 10.667 24.747 12.8 52.908 6.4 80.641l-143.787 577.276c-13.653 57.6-64.853 97.707-124.16 97.707zM318.332 200.969c-27.733 0-52.906 18.349-61.013 45.229l-179.626 577.282c-5.973 20.053-2.56 40.96 10.24 58.027 11.947 16.213 30.72 25.6 50.773 25.6h560.64c29.44 0 55.040-20.058 61.867-48.644l143.787-577.707c3.413-14.080 2.56-28.158-2.987-40.531-10.24-24.32-32.853-39.682-58.88-39.682l-524.8 0.427z","M886.613 970.667h-203.947c-17.493 0-32-14.507-32-32s14.507-32 32-32h203.947c17.493 0 33.707-7.253 45.653-20.053s17.92-29.867 16.64-47.36l-42.24-581.119c-1.28-17.493 11.947-32.855 29.44-34.135 17.493-0.853 32.853 11.944 34.133 29.437l42.24 581.124c2.56 34.987-9.813 69.973-33.707 95.573-23.467 26.027-57.173 40.533-92.16 40.533z","M413.004 304.201c-2.56 0-5.12-0.428-7.68-0.854-17.067-4.267-27.732-21.335-23.466-38.828l44.372-184.318c4.268-17.067 21.335-27.735 38.828-23.469 17.067 4.267 27.733 21.335 23.467 38.828l-44.373 184.323c-3.413 14.507-16.64 24.317-31.148 24.317z","M698.859 304.629c-2.133 0-4.698-0.001-6.831-0.854-17.067-3.84-28.156-20.907-24.742-37.974l40.102-185.172c3.84-17.493 20.907-28.158 37.973-24.745s28.16 20.902 24.747 37.969l-40.107 185.177c-2.987 15.36-16.209 25.599-31.142 25.599z","M669.833 544h-341.332c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.332c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M627.166 714.667h-341.332c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.332c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["menu-board"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":269,"id":858,"name":"menu-board","prevSize":32,"code":59679},"setIdx":2,"setId":2,"iconIdx":43},{"icon":{"paths":["M512 800c-206.080 0-373.333-167.68-373.333-373.333s167.253-373.333 373.333-373.333c206.080 0 373.333 167.68 373.333 373.333s-167.253 373.333-373.333 373.333zM512 117.333c-170.667 0-309.333 138.667-309.333 309.333s138.667 309.333 309.333 309.333c170.667 0 309.333-138.667 309.333-309.333s-138.667-309.333-309.333-309.333z","M768 970.667h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mirror"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":270,"id":857,"name":"mirror","prevSize":32,"code":59842},"setIdx":2,"setId":2,"iconIdx":44},{"icon":{"paths":["M382.75 714.667c-16.64 0-31.147-1.28-44.8-3.413-162.133-21.333-285.867-162.133-285.867-327.253 0-182.187 148.48-330.667 330.667-330.667 165.12 0 305.92 123.307 327.253 286.72 2.133 12.8 3.413 27.307 3.413 43.947 0 182.187-148.053 330.667-330.667 330.667zM382.75 117.333c-147.2 0-266.667 119.467-266.667 266.667 0 133.12 99.413 246.613 231.253 264.107 11.093 1.707 22.613 2.56 35.413 2.56 147.2 0 266.667-119.467 266.667-266.667 0-12.8-0.853-24.32-2.56-34.56-17.493-132.693-130.56-232.107-264.107-232.107z","M638.686 970.675c-165.12 0-305.922-123.307-327.255-286.72-1.28-10.24 2.133-20.053 9.387-27.307s17.92-10.24 27.733-8.533c10.24 1.707 21.333 2.56 34.133 2.56 147.202 0 266.668-119.467 266.668-266.666 0-12.8-0.853-24.32-2.56-34.56-1.707-9.813 1.707-20.053 8.533-27.307s16.64-11.093 27.307-9.387c163.413 21.333 286.72 162.132 286.72 327.252 0 182.187-148.053 330.667-330.667 330.667zM383.111 714.675c32.427 111.787 136.108 192 255.575 192 147.2 0 266.667-119.467 266.667-266.667 0-119.467-80.213-223.572-192-255.572 0 181.759-148.053 330.239-330.242 330.239z","M658.325 689.485c-8.107 0-16.213-2.987-22.613-8.96l-55.467-54.613c-12.373-12.373-12.8-32.853-0.427-45.227s32.427-12.8 45.227-0.427l55.467 54.613c12.373 12.373 12.8 32.853 0.427 45.227-5.973 5.973-14.507 9.387-22.613 9.387z","M724.062 543.996c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M510.729 757.329c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["blend-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":271,"id":856,"name":"blend-2","prevSize":32,"code":59843},"setIdx":2,"setId":2,"iconIdx":45},{"icon":{"paths":["M178.352 814.076c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l676.266-676.266c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-676.266 676.266c-6.4 6.4-14.507 9.387-22.613 9.387z","M224.013 586.667c-12.373 0-23.893-7.253-29.44-19.2-20.907-47.787-31.573-96.427-31.573-145.066 0-116.053 50.347-223.147 137.813-293.973 81.92-65.707 183.466-89.6 285.866-66.987 67.413 14.933 128.853 50.347 177.067 102.4 11.947 12.8 11.093 33.28-1.707 45.227s-33.28 11.093-45.227-1.707c-39.68-42.667-89.173-71.68-143.787-83.627-83.2-17.92-165.546 1.28-231.68 54.613-72.533 58.453-113.92 147.2-113.92 244.053 0 39.68 8.96 79.786 26.027 119.466 7.253 16.213-0.427 34.987-16.64 42.24-4.267 1.707-8.533 2.56-12.8 2.56z","M623.343 842.675h-221.44c-16.64 0-40.107-1.707-55.893-17.92-15.36-15.787-14.933-35.84-14.507-49.067v-38.827c-17.067-11.947-33.28-25.6-48.64-40.96-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0c16.64 16.213 34.133 30.72 52.48 42.667 8.96 5.973 14.933 16.213 14.933 26.88v57.173c0 0.427 0 0.853 0 1.28 1.707 0 3.84 0 6.827 0h221.44c2.987 0 5.12 0 6.827-0.427 0-1.707 0-3.413 0-4.693v-53.76c0-11.093 5.547-20.907 14.933-26.88 105.387-67.413 186.453-216.747 137.813-371.627-5.12-17.067 4.267-34.987 20.907-40.107 16.64-5.547 34.987 4.266 40.107 20.906 55.893 178.347-31.147 350.294-149.76 434.774v32.853c0.427 13.227 0.853 35.84-16.64 53.76-13.227 12.8-31.147 19.2-54.613 19.2z","M661.346 970.662c-2.987 0-5.973-0.427-8.96-1.28-92.16-26.453-189.013-26.453-281.175 0-17.067 4.693-34.56-5.12-39.68-22.187s5.12-34.56 22.187-39.68c103.255-29.44 212.909-29.44 316.162 0 17.067 4.693 26.88 22.613 22.187 39.68-3.84 14.507-16.64 23.467-30.72 23.467z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lamp-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":272,"id":855,"name":"lamp-slash","prevSize":32,"code":59844},"setIdx":2,"setId":2,"iconIdx":46},{"icon":{"paths":["M828.587 501.333h-145.92c-17.493 0-32-14.507-32-32v-298.24c0-31.573 12.373-61.013 34.56-83.2s51.627-34.56 83.2-34.56h0.427c53.333 0.427 103.68 21.333 142.080 59.307 38.4 38.827 59.307 90.027 59.307 143.36v103.253c0.427 84.907-56.747 142.080-141.653 142.080zM714.667 437.333h113.92c49.493 0 78.080-28.587 78.080-78.080v-103.253c0-36.693-14.507-71.68-40.533-98.133-26.027-25.6-60.587-40.107-97.28-40.533 0 0 0 0-0.427 0-14.080 0-27.733 5.547-37.973 15.787s-15.787 23.467-15.787 37.973v266.24z","M383.99 995.413c-20.053 0-38.826-7.68-52.906-22.187l-70.828-71.253c-3.84-3.84-9.811-4.267-14.078-0.853l-72.961 54.613c-22.613 17.067-52.48 20.053-78.080 7.253s-41.385-38.4-41.385-66.987v-640c0-128.853 73.813-202.667 202.667-202.667h512.001c17.493 0 32 14.507 32 32s-14.507 32-32 32c-29.44 0-53.333 23.893-53.333 53.333v725.333c0 28.587-15.791 54.187-41.391 66.987-25.173 12.8-55.462 9.813-78.076-7.253l-72.96-54.613c-4.267-3.413-10.244-2.56-13.658 0.853l-71.676 71.68c-14.508 14.080-33.282 21.76-53.335 21.76zM252.148 834.987c19.627 0 38.827 7.253 53.333 22.187l70.828 71.253c2.56 2.56 5.973 2.987 7.68 2.987s5.12-0.427 7.68-2.987l71.678-71.68c26.453-26.453 68.271-29.013 97.711-6.4l72.529 54.187c4.693 3.413 8.96 2.133 11.093 0.853s5.978-3.84 5.978-9.387v-725.333c0-19.2 4.689-37.547 12.796-53.333h-407.464c-94.72 0-138.667 43.947-138.667 138.667v640c0 5.973 3.84 8.533 5.974 9.813 2.56 1.28 6.827 2.133 11.094-1.28l72.958-54.613c13.227-9.813 29.013-14.933 44.8-14.933z","M512 416h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M480 586.667h-192c-17.493 0-32-14.507-32-32s14.507-32 32-32h192c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-text"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":273,"id":854,"name":"receipt-text","prevSize":32,"code":59680},"setIdx":2,"setId":2,"iconIdx":47},{"icon":{"paths":["M437.333 949.333c-200.107 0-362.667-162.56-362.667-362.667s162.56-362.667 362.667-362.667c200.107 0 362.667 162.56 362.667 362.667s-162.56 362.667-362.667 362.667zM437.333 288c-164.693 0-298.667 133.973-298.667 298.667s133.973 298.667 298.667 298.667c164.693 0 298.667-133.973 298.667-298.667s-133.973-298.667-298.667-298.667z","M682.684 373.331c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l234.667-234.667c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-234.667 234.667c-6.4 6.4-14.507 9.387-22.613 9.387z","M917.333 416c-17.493 0-32-14.507-32-32v-245.333h-245.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h277.333c17.493 0 32 14.507 32 32v277.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["man"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":274,"id":853,"name":"man","prevSize":32,"code":59845},"setIdx":2,"setId":2,"iconIdx":48},{"icon":{"paths":["M554.667 629.333h-469.333c-17.493 0-32-14.507-32-32v-272.213c0-13.654 8.533-25.601 20.906-30.295 12.8-4.693 26.881-0.852 35.414 9.388 25.6 30.293 62.719 47.36 103.252 47.36 1.28 0 2.134 0 3.414 0 34.133-0.853 65.705-13.652 89.599-36.266 11.093-9.387 20.054-20.48 26.88-32.854 13.227-22.613 19.627-47.361 19.2-72.534-0.853-39.253-17.919-75.093-46.932-101.12-10.24-8.96-13.654-23.041-8.961-35.414s16.64-20.906 29.867-20.906h314.026c17.493 0 32 14.507 32 32v426.668c0 65.707-52.48 118.187-117.333 118.187zM117.333 565.333h437.333c29.44 0 53.333-23.893 53.333-53.333v-394.667h-215.893c14.933 27.733 23.040 58.88 23.893 91.307 0.853 37.12-8.534 73.813-27.307 105.813-10.24 18.346-24.32 35.84-39.68 48.64-34.133 32.427-81.067 51.626-130.987 52.906-35.413 1.28-70.399-7.68-100.266-23.893v173.227h-0.427z","M810.667 885.333h-42.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-170.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-42.667c-88.32 0-160-71.68-160-160v-128c0-17.493 14.507-32 32-32h469.333c29.44 0 53.333-23.893 53.333-53.333v-298.667c0-17.493 14.507-32 32-32h78.507c42.24 0 81.067 22.614 101.973 59.307l72.96 127.573c5.547 9.813 5.547 22.187 0 32s-16.213 15.787-27.733 15.787h-55.040c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h128c17.493 0 32 14.507 32 32v128c0 88.32-71.68 160-160 160zM795.733 821.333h14.933c52.907 0 96-43.093 96-96v-96h-96c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.28-74.667 74.667-74.667l-45.653-79.787c-9.387-16.64-27.307-26.88-46.507-26.88h-46.507v266.667c0 64.853-52.48 117.333-117.333 117.333h-437.333v96c0 52.907 43.093 96 96 96h14.932c14.080-49.067 59.308-85.333 113.068-85.333s98.987 36.267 113.067 85.333h115.627c14.080-49.067 59.307-85.333 113.067-85.333s98.56 36.267 112.64 85.333z","M341.333 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM341.333 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M682.667 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM682.667 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M938.667 629.333h-128c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.707-74.667 74.667-74.667h55.040c11.52 0 22.187 5.973 27.733 16.213l72.96 128c2.56 4.693 4.267 10.24 4.267 15.787v85.333c0 17.493-14.507 32-32 32zM810.667 416c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h96v-44.8l-59.733-104.533h-36.267z","M213.333 416c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.735-119.894 75.948-158.294 35.84-28.587 81.065-44.372 126.719-44.372 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.534-10.667 17.92-24.32 34.133-40.534 47.787-35.413 32.427-82.773 50.346-132.693 50.346zM213.333 74.667c-31.573 0-61.441 10.665-86.615 30.719-32.853 26.027-52.052 65.708-52.052 107.948 0 25.173 6.825 49.919 20.052 71.252 24.747 41.813 70.401 67.414 118.615 67.414 33.707 0 66.133-12.373 90.88-34.56 11.094-9.387 20.481-20.48 27.308-32.427 13.653-21.76 20.479-46.506 20.479-71.68 0-76.373-62.293-138.667-138.667-138.667z","M259.004 289.71c-8.107 0-16.215-2.985-22.615-9.385l-90.026-90.026c-12.373-12.373-12.373-32.853 0-45.226s32.853-12.373 45.227 0l90.026 90.026c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.505 9.385-22.612 9.385z","M167.725 290.983c-8.107 0-16.212-2.988-22.612-9.388-12.373-12.373-12.373-32.853 0-45.227l90.026-90.026c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.026 90.026c-6.4 6.4-14.508 9.388-22.615 9.388z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["truck-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":275,"id":852,"name":"truck-remove","prevSize":32,"code":59846},"setIdx":2,"setId":2,"iconIdx":49},{"icon":{"paths":["M503.057 506.88c-23.040 0-46.507-4.267-64.853-12.373l-251.734-111.787c-64-28.587-73.387-66.987-73.387-87.893s9.387-59.307 73.387-87.893l251.734-111.787c37.12-16.64 93.013-16.64 130.133 0l252.16 111.787c63.573 28.16 73.387 66.987 73.387 87.893s-9.387 59.307-73.387 87.893l-252.16 111.787c-18.773 8.533-41.813 12.373-65.28 12.373zM503.057 146.773c-14.507 0-28.587 2.133-38.827 6.827l-251.734 111.787c-26.027 11.947-35.413 23.893-35.413 29.44s9.387 17.92 34.987 29.44l251.734 111.787c20.48 8.96 57.6 8.96 78.080 0l252.16-111.787c26.027-11.52 35.413-23.893 35.413-29.44s-9.387-17.92-35.413-29.44l-251.733-111.787c-10.24-4.267-24.747-6.827-39.253-6.827z","M512 729.173c-16.213 0-32.427-3.413-47.787-10.24l-289.707-128.853c-43.947-19.2-78.507-72.533-78.507-120.747 0-17.493 14.507-32 32-32s32 14.507 32 32c0 23.467 19.2 52.907 40.533 62.72l289.707 128.853c13.653 5.973 29.44 5.973 43.52 0l289.707-128.853c21.333-9.387 40.533-39.253 40.533-62.72 0-17.493 14.507-32 32-32s32 14.507 32 32c0 48.213-34.56 101.547-78.507 121.173l-289.707 128.853c-15.36 6.4-31.573 9.813-47.787 9.813z","M512 942.515c-16.213 0-32.427-3.413-47.787-10.24l-289.707-128.853c-47.787-21.333-78.507-68.693-78.507-121.173 0-17.493 14.507-32 32-32s32 14.933 32 32.427c0 26.88 15.787 51.627 40.533 62.72l289.707 128.853c13.653 5.973 29.44 5.973 43.52 0l289.707-128.853c24.747-11.093 40.533-35.413 40.533-62.72 0-17.493 14.507-32 32-32s32 14.507 32 32c0 52.48-30.72 99.84-78.507 121.173l-289.707 128.853c-15.36 6.4-31.573 9.813-47.787 9.813z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["layer"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":276,"id":851,"name":"layer","prevSize":32,"code":59681},"setIdx":2,"setId":2,"iconIdx":50},{"icon":{"paths":["M512 906.667h-213.333c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v128c0 17.493-14.507 32-32 32s-32-14.507-32-32v-128c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M511.949 549.12c-35.84 0-72.107-11.093-99.84-33.707l-133.547-106.668c-13.653-11.093-16.213-31.146-5.12-44.8s31.146-15.787 44.8-5.12l133.547 106.668c32.427 26.027 87.467 26.027 119.893 0l133.547-106.668c13.653-11.093 33.707-8.96 44.8 5.12 11.093 13.653 8.96 34.133-5.12 44.8l-133.547 106.668c-27.307 22.613-63.573 33.707-99.413 33.707z","M674.97 929.284c-16.213 0-31.573-5.973-42.667-17.067-13.227-13.227-19.2-32.427-16.213-52.48l8.107-57.6c2.133-14.933 11.093-32.853 21.76-43.52l151.040-151.040c20.48-20.48 40.533-31.147 62.293-33.28 26.453-2.56 52.907 8.533 77.653 33.28s35.84 50.773 33.28 77.653c-2.133 21.333-13.227 41.813-33.28 62.293l-151.040 151.040c-10.667 10.667-28.587 19.627-43.52 21.76l-57.604 8.107c-3.413 0.427-6.396 0.853-9.809 0.853zM866.543 637.871c-0.427 0-0.853 0-1.28 0-5.973 0.427-14.080 5.973-23.040 14.933l-151.040 151.040c-1.28 1.28-3.413 5.547-3.413 7.253l-7.68 53.333 53.333-7.68c1.707-0.427 5.969-2.56 7.249-3.84l151.044-151.040c8.96-9.387 14.507-17.067 14.933-23.040 0.853-8.533-7.68-18.773-14.933-26.027-6.827-6.827-16.64-14.933-25.173-14.933z","M892.612 778.662c-2.987 0-5.973-0.427-8.533-1.28-56.32-15.787-101.12-60.587-116.907-116.907-4.693-17.067 5.12-34.56 22.187-39.68 17.067-4.693 34.56 5.12 39.253 22.187 9.813 34.987 37.547 62.72 72.533 72.533 17.067 4.693 26.88 22.613 22.187 39.68-3.84 14.080-16.64 23.467-30.72 23.467z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":277,"id":850,"name":"sms-edit","prevSize":32,"code":59682},"setIdx":2,"setId":2,"iconIdx":51},{"icon":{"paths":["M612.267 928h-243.2c-221.44 0-315.733-94.293-315.733-315.733v-243.199c0-221.44 94.293-315.734 315.733-315.734h243.2c221.44 0 315.733 94.294 315.733 315.734v243.199c0 15.36-0.427 29.867-1.28 43.947-0.853 12.8-9.387 23.893-21.76 28.16s-25.6 0.427-34.56-8.96c-25.6-29.013-63.147-46.080-102.827-46.080-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.787 22.613 26.027 31.573 9.813 8.533 13.653 22.187 9.387 34.133-4.267 12.373-15.36 20.907-28.16 21.76-13.653 0.853-28.16 1.28-43.947 1.28zM369.067 117.333c-186.027 0-251.733 65.708-251.733 251.734v243.199c0 186.027 65.707 251.733 251.733 251.733h220.587c-15.787-29.013-24.32-61.867-24.32-96 0-111.787 90.88-202.667 202.667-202.667 34.133 0 66.987 8.533 96 23.893v-220.159c0-186.027-65.707-251.734-251.733-251.734h-243.2z","M286.7 647.253c-51.627 0-93.867-42.24-93.867-93.867s42.24-93.867 93.867-93.867c51.627 0 93.866 42.24 93.866 93.867s-42.24 93.867-93.866 93.867zM286.7 523.52c-16.213 0-29.867 13.227-29.867 29.867 0 16.213 13.227 29.867 29.867 29.867s29.866-13.227 29.866-29.867c0-16.64-13.226-29.867-29.866-29.867z","M348.583 585.382c-17.493 0-32-14.507-32-32v-248.745c0-38.827 24.32-70.4 61.44-80.64l123.732-33.706c38.4-10.667 62.72-0.428 75.947 9.812s29.44 30.721 29.44 70.401v241.492c0 17.493-14.507 32-32 32s-32-14.507-32-32v-241.492c0-13.653-2.987-18.774-4.267-19.628s-7.68-2.559-20.48 0.854l-123.305 33.706c-12.8 3.413-14.507 12.373-14.507 18.773v248.746c0 17.92-14.507 32.427-32 32.427z","M513.284 605.858c-51.627 0-93.868-42.24-93.868-93.867s42.241-93.867 93.868-93.867c51.627 0 93.867 42.24 93.867 93.867 0 52.053-42.24 93.867-93.867 93.867zM513.284 482.551c-16.213 0-29.867 13.227-29.867 29.867 0 16.213 13.227 29.867 29.867 29.867s29.867-13.227 29.867-29.867c0-16.64-13.653-29.867-29.867-29.867z","M348.61 408.75c-14.080 0-26.88-9.386-30.72-23.466-4.693-17.067 5.547-34.562 22.613-39.255l226.558-61.868c17.067-4.267 34.56 5.548 39.253 22.615s-5.547 34.56-22.613 39.253l-226.558 61.867c-2.987 0.427-5.973 0.854-8.533 0.854z","M768 970.667c-50.347 0-98.133-18.773-135.253-52.48-14.933-12.8-28.16-28.587-38.4-46.080-18.773-30.72-29.013-66.987-29.013-104.107 0-111.787 90.88-202.667 202.667-202.667 58.027 0 113.067 24.747 150.613 67.413 33.28 37.12 52.053 84.907 52.053 135.253 0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM768 629.333c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.787 22.613 26.027 31.573 25.6 23.467 58.453 36.267 92.587 36.267 49.067 0 93.44-25.173 118.613-66.987 13.227-21.76 20.053-46.080 20.053-71.68 0-34.133-12.8-66.987-35.84-92.587-25.6-29.867-63.147-46.507-102.827-46.507z","M813.67 844.378c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M722.394 845.649c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-square-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":278,"id":849,"name":"music-square-remove","prevSize":32,"code":59847},"setIdx":2,"setId":2,"iconIdx":52},{"icon":{"paths":["M233.373 458.667c-30.293 0-61.013-11.093-84.48-33.707-78.507-74.667-110.080-156.16-91.733-235.947 21.76-93.867 104.107-135.68 176.213-135.68s154.88 42.24 176.213 135.68c18.348 79.787-13.653 161.28-91.733 235.947-23.467 22.613-53.76 33.707-84.48 33.707zM119.453 203.52c-16.213 71.253 31.147 134.4 73.813 174.933 22.613 21.76 58.027 21.333 80.64 0 42.667-40.533 90.027-103.68 73.387-175.36-14.507-63.147-70.4-85.76-113.493-85.76-43.52 0-99.413 22.613-114.347 86.187z","M235.084 264.542c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667h0.427c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-43.093 42.667z","M788.881 970.675c-30.293 0-61.013-11.093-84.907-33.707-78.933-74.667-110.933-156.16-92.16-236.373 21.76-93.44 104.533-135.68 177.067-135.68s155.307 42.24 177.067 135.68c18.347 79.787-13.653 161.707-92.587 235.947-23.467 23.040-53.76 34.133-84.48 34.133zM788.881 629.342c-43.52 0-99.84 22.613-114.773 86.187-16.64 71.253 31.147 134.827 73.813 175.36 22.613 21.76 58.453 21.76 81.493 0 42.667-40.533 90.453-103.68 73.813-174.933-14.080-64-70.4-86.613-114.347-86.613z","M790.583 776.542c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667h0.427c23.467 0 42.667 19.2 42.667 42.667s-19.627 42.667-43.093 42.667z","M511.979 842.667h-114.349c-49.493 0-92.587-29.867-109.653-75.947-17.493-46.080-4.693-96.853 32.427-129.707l340.909-298.24c20.48-17.92 20.907-42.24 14.933-58.88-6.4-16.64-22.613-34.56-49.92-34.56h-114.347c-17.493 0-32-14.507-32-32s14.507-32 32-32h114.347c49.493 0 92.587 29.867 109.653 75.947 17.493 46.080 4.693 96.853-32.427 129.707l-340.909 298.24c-20.48 17.92-20.907 42.24-14.933 58.88 6.4 16.64 22.613 34.56 49.92 34.56h114.349c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["routing"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":279,"id":848,"name":"routing","prevSize":32,"code":59848},"setIdx":2,"setId":2,"iconIdx":53},{"icon":{"paths":["M498.308 655.782c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l86.613-86.613-86.613-86.613c-12.373-12.372-12.373-32.852 0-45.225s32.853-12.373 45.227 0l109.227 109.225c12.373 12.373 12.373 32.853 0 45.227l-109.227 109.227c-5.973 6.4-14.507 9.387-22.613 9.387z","M604.587 546.564h-433.92c-17.493 0-32-14.507-32-32s14.507-32 32-32h433.92c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 885.333c-17.493 0-32-14.507-32-32s14.507-32 32-32c182.187 0 309.333-127.147 309.333-309.333s-127.147-309.333-309.333-309.333c-17.493 0-32-14.507-32-32s14.507-32 32-32c219.733 0 373.333 153.6 373.333 373.333s-153.6 373.333-373.333 373.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["login-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":280,"id":847,"name":"login-1","prevSize":32,"code":59849},"setIdx":2,"setId":2,"iconIdx":54},{"icon":{"paths":["M512 970.667c-194.133 0-352-157.867-352-352v-213.333c0-194.133 157.867-352 352-352s352 157.867 352 352v213.333c0 194.133-157.867 352-352 352zM512 117.333c-158.72 0-288 129.28-288 288v213.333c0 158.72 129.28 288 288 288s288-129.28 288-288v-213.333c0-158.72-129.28-288-288-288z","M512 501.333c-52.907 0-96-43.093-96-96v-85.333c0-52.907 43.093-96 96-96s96 43.093 96 96v85.333c0 52.907-43.093 96-96 96zM512 288c-17.493 0-32 14.507-32 32v85.333c0 17.493 14.507 32 32 32s32-14.507 32-32v-85.333c0-17.493-14.507-32-32-32z","M512 288c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":281,"id":846,"name":"mouse","prevSize":32,"code":59850},"setIdx":2,"setId":2,"iconIdx":55},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512.026 558.076c-5.547 0-11.093-1.28-16.213-4.267l-226.133-130.558c-15.36-8.96-20.481-28.586-11.521-43.52 8.96-15.36 28.588-20.48 43.521-11.52l209.92 121.598 208.64-120.745c15.36-8.96 34.987-3.414 43.52 11.52s3.413 34.987-11.52 43.52l-224.427 129.705c-4.693 2.56-10.24 4.267-15.787 4.267z","M512 790.191c-17.493 0-32-14.507-32-32v-232.107c0-17.493 14.507-32 32-32s32 14.507 32 32v232.107c0 17.493-14.507 32-32 32z","M512.009 800c-24.747 0-49.062-5.547-68.689-16.213l-136.535-75.947c-40.96-22.613-72.534-76.8-72.534-123.733v-144.64c0-46.505 32.001-100.691 72.534-123.731l136.535-75.947c39.253-21.76 98.129-21.76 137.382 0l136.533 75.947c40.96 22.613 72.538 76.8 72.538 123.731v144.64c0 46.507-32.004 100.693-72.538 123.733l-136.533 75.947c-19.627 11.093-43.947 16.213-68.693 16.213zM512.009 288.002c-14.080 0-27.733 2.56-37.547 8.107l-136.531 75.947c-20.907 11.52-39.681 43.947-39.681 67.411v144.64c0 23.893 18.775 55.893 39.681 67.413l136.531 75.947c19.627 11.093 55.467 11.093 75.093 0l136.533-75.947c20.907-11.52 39.684-43.947 39.684-67.413v-144.64c0-23.891-18.778-55.891-39.684-67.411l-136.533-75.947c-9.813-5.547-23.467-8.107-37.547-8.107z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["d-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":282,"id":845,"name":"d-square","prevSize":32,"code":59683},"setIdx":2,"setId":2,"iconIdx":56},{"icon":{"paths":["M209.462 973.653c-46.507 0-86.187-14.933-115.2-43.947-41.387-41.387-54.187-104.533-35.84-177.92l105.813-423.68c18.347-73.387 90.027-144.64 162.987-162.987l423.682-105.813c73.387-18.347 136.533-5.547 177.92 35.84s54.187 104.533 35.84 177.92l-105.813 423.68c-18.347 73.387-90.027 144.64-162.987 162.987l-423.682 105.813c-21.76 5.12-42.667 8.107-62.72 8.107zM767.117 120.747l-423.682 106.24c-49.92 12.373-104.107 66.56-116.907 116.48l-105.813 423.68c-12.8 50.773-5.973 92.16 18.773 117.333 24.747 24.747 66.56 31.573 117.333 18.773l423.682-105.813c49.92-12.373 104.107-66.987 116.48-116.48l105.813-423.68c12.8-50.773 5.973-92.16-18.773-117.333s-66.133-31.573-116.907-19.2z","M512 693.333c-99.84 0-181.333-81.493-181.333-181.333s81.493-181.333 181.333-181.333c99.84 0 181.333 81.493 181.333 181.333s-81.493 181.333-181.333 181.333zM512 394.667c-64.853 0-117.333 52.48-117.333 117.333s52.48 117.333 117.333 117.333c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discover-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":283,"id":844,"name":"discover-1","prevSize":32,"code":59851},"setIdx":2,"setId":2,"iconIdx":57},{"icon":{"paths":["M597.333 970.667h-170.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM426.667 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h170.667c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-170.667z","M640 462.084h-256c-52.907 0-96-43.094-96-96.001v-42.667c0-52.907 43.093-96 96-96h256c52.907 0 96 43.093 96 96v42.667c0 52.907-43.093 96.001-96 96.001zM384 291.417c-17.493 0-32 14.507-32 32v42.667c0 17.493 14.507 32 32 32h256c17.493 0 32-14.507 32-32v-42.667c0-17.493-14.507-32-32-32h-256z","M347.74 636.591c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-13.653-8.96c-8.107-8.107-12.373-18.773-12.373-30.293 0-5.547 0.853-11.093 2.987-16.213 2.133-5.547 5.12-9.813 9.387-14.080 1.707-1.707 3.84-3.84 6.4-5.12 2.133-1.707 4.693-2.987 7.253-3.84 2.56-1.28 5.547-2.133 8.107-2.56 13.653-2.987 28.587 1.707 38.4 11.52 3.84 3.84 7.253 8.533 9.387 14.080 2.133 5.12 3.413 10.667 3.413 16.213 0 11.52-4.693 22.187-12.8 30.293s-18.773 12.373-30.293 12.373z","M518.835 636.582c-11.52 0-22.187-4.267-30.293-12.373s-12.373-18.773-12.373-30.293c0-5.547 0.853-11.093 2.987-16.213 2.133-5.547 5.12-9.813 9.387-14.080 1.707-1.707 3.84-3.84 6.4-5.12 2.133-1.707 4.693-2.987 7.253-3.84 2.56-1.28 5.547-2.133 8.107-2.56 8.107-1.707 16.64-0.853 24.747 2.56 5.12 2.133 9.813 5.12 13.653 8.96 3.84 4.267 7.253 8.533 9.387 14.080 2.133 5.12 3.413 10.667 3.413 16.213 0 11.52-4.693 22.187-12.8 30.293s-18.773 12.373-29.867 12.373z","M689.075 636.591c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-13.653-8.96c-4.267-4.267-7.253-8.96-9.387-14.080s-2.987-10.667-2.987-16.213c0-5.547 0.853-11.093 2.987-16.213 2.133-5.547 5.12-9.813 9.387-14.080 15.787-15.787 44.373-15.787 60.16 0 8.107 8.107 12.8 19.2 12.8 30.293 0 11.52-4.693 22.187-12.8 30.293-7.68 7.68-18.347 12.373-30.293 12.373z","M348.177 807.249c-11.52 0-22.187-4.267-30.293-12.373s-12.8-18.773-12.8-30.293c0-11.093 4.693-22.187 12.8-30.293 1.707-1.707 4.267-3.84 6.4-5.12 2.133-1.707 4.693-2.987 7.253-3.84 2.56-1.28 5.547-2.133 8.107-2.56 14.080-2.56 28.587 1.707 38.4 11.52 2.133 2.133 3.84 4.267 5.547 6.4 1.28 2.56 2.56 5.12 3.84 7.68 0.853 2.56 1.707 5.12 2.56 7.68 0.427 2.987 0.853 5.547 0.853 8.533 0 11.52-4.693 22.187-12.8 30.293s-18.773 12.373-29.867 12.373z","M518.844 807.249c-11.52 0-22.187-4.267-30.293-12.373s-12.8-18.773-12.8-30.293c0-11.093 4.693-22.187 12.8-30.293 9.813-9.813 24.747-14.080 38.4-11.52 2.56 0.427 5.547 1.28 8.107 2.56 2.56 0.853 5.12 2.133 7.253 3.84 2.133 1.28 4.267 3.413 6.4 5.12 8.107 8.107 12.373 19.2 12.373 30.293 0 11.52-4.267 22.187-12.373 30.293s-18.773 12.373-29.867 12.373z","M689.075 807.253c-11.093 0-21.76-4.267-29.867-12.373s-12.373-18.773-12.373-30.293c0-11.093 4.267-22.187 12.373-30.293 3.84-3.84 8.533-6.827 13.653-8.96 15.787-6.4 34.987-2.987 46.507 8.96 8.107 8.107 12.373 19.2 12.373 30.293 0 11.52-4.267 22.187-12.373 30.293-3.84 3.84-8.533 6.827-13.653 8.96s-10.667 3.413-16.64 3.413z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calculator"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":284,"id":843,"name":"calculator","prevSize":32,"code":59852},"setIdx":2,"setId":2,"iconIdx":58},{"icon":{"paths":["M366.090 962.138c-9.387 0-19.2-1.707-28.16-5.547-20.053-8.533-35.413-25.173-42.24-46.080l-18.773-56.32c-8.533-25.6-0.853-57.6 17.92-76.8l96.853-97.28c1.28-1.28 2.987-5.973 2.987-8.107v-105.387l-194.56 84.053c-26.027 11.093-52.48 9.813-72.533-3.413s-32-37.12-32-64.853v-55.040c0-41.813 29.867-86.613 67.84-101.548l230.827-99.84v-121.173c0-51.627 36.265-110.933 82.345-134.827 22.187-11.093 47.787-11.093 69.547 0 46.507 23.893 82.773 82.773 82.773 134.4v121.173l232.107 99.84c37.973 16.215 66.987 59.735 66.987 101.975v55.040c0 28.16-11.52 51.627-32 64.853s-46.507 14.507-72.533 3.84l-194.56-84.053v105.387c0 1.707 1.707 5.973 2.987 7.253l97.28 97.707c18.773 18.773 26.453 51.627 17.92 76.8l-18.773 56.32c-7.253 20.907-22.613 37.547-43.093 45.653-20.053 8.107-42.24 7.253-61.44-2.133-2.133-1.28-4.267-2.56-6.4-4.267l-99.413-83.627c-3.413-2.987-10.24-2.56-13.227 0l-99.412 83.627c-1.707 1.707-3.84 2.987-5.973 3.84-10.24 5.973-21.76 8.533-33.28 8.533zM407.904 496.644c9.813 0 19.198 2.56 27.305 8.107 14.933 9.813 23.467 26.453 23.467 46.080v121.6c0 18.347-8.96 40.107-21.76 52.907l-96.852 97.28c-1.707 2.133-3.413 8.533-2.56 11.093l18.773 56.747c1.28 4.267 4.267 5.973 5.973 6.827 1.28 0.427 3.413 1.28 5.973 0.427l95.572-80.64c26.88-23.040 69.12-23.040 96 0l95.147 80.213c2.987 0.427 5.12 0 6.4-0.427 1.707-0.853 5.12-2.56 6.4-6.827l18.773-56.32c0.853-2.987-0.853-9.387-2.56-11.093l-96.853-97.28c-12.8-11.947-22.187-34.133-22.187-52.907v-121.6c0-19.2 8.107-35.84 22.613-45.653s33.28-11.093 51.2-3.413l209.92 90.453c6.4 2.56 10.667 2.56 11.947 1.707s2.987-4.693 2.987-11.52v-55.040c0-16.213-13.653-37.12-28.16-43.093l-238.080-102.828c-18.773-8.107-32-28.587-32-49.067v-128c0-28.16-22.187-64.427-47.787-77.227-3.413-1.707-7.68-1.707-11.52 0-24.747 12.8-47.36 49.92-47.36 77.653v128c0 20.053-13.227 40.96-32 49.067l-238.079 102.828c-14.933 5.973-28.587 26.88-28.587 42.667v55.040c0 6.827 1.707 10.667 2.987 11.52s5.547 0.853 11.947-1.707l209.493-90.453c7.68-3.413 15.787-5.12 23.467-5.12z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airplane"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":285,"id":842,"name":"airplane","prevSize":32,"code":59853},"setIdx":2,"setId":2,"iconIdx":59},{"icon":{"paths":["M510.75 970.667c-252.587 0-458.667-205.653-458.667-458.667s206.080-458.667 458.667-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM510.75 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M511.996 821.329c-91.734 0-177.921-44.8-230.401-120.32-10.24-14.507-6.4-34.56 8.107-44.373 14.507-10.24 34.56-6.4 44.373 8.107 40.533 58.027 107.094 93.013 177.921 93.013s137.387-34.56 177.92-93.013c10.24-14.507 29.867-17.92 44.373-8.107 14.507 10.24 17.92 29.867 8.107 44.373-52.48 75.52-138.667 120.32-230.4 120.32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["happyemoji"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":286,"id":841,"name":"happyemoji","prevSize":32,"code":59854},"setIdx":2,"setId":2,"iconIdx":60},{"icon":{"paths":["M776.107 757.333h-454.4c-42.24 0-82.773-17.92-111.36-49.067s-43.093-72.96-39.68-115.2l35.413-424.96c1.28-13.227-3.414-26.026-12.374-35.84s-21.333-14.934-34.56-14.934h-73.813c-17.493 0-32-14.507-32-32s14.507-32 32-32h74.24c31.147 0 60.586 13.227 81.492 35.84 11.52 12.8 20.054 27.733 24.747 44.373h532.907c43.093 0 82.773 17.067 111.787 47.787 28.587 31.147 43.093 71.68 39.68 114.773l-23.040 320c-4.693 78.080-72.96 141.227-151.040 141.227zM267.947 197.12l-33.28 401.067c-2.133 24.747 5.973 48.213 22.613 66.56s39.68 28.16 64.426 28.16h454.4c44.373 0 84.48-37.547 87.893-81.92l23.040-320c1.707-25.173-6.4-49.067-23.040-66.56-16.64-17.92-39.68-27.734-64.853-27.734l-531.2 0.427z","M693.333 970.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333zM693.333 864c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333z","M352 970.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333zM352 864c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333z","M896 373.333h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shopping-cart"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":287,"id":840,"name":"shopping-cart","prevSize":32,"code":59684},"setIdx":2,"setId":2,"iconIdx":61},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M511.983 666.876c-56.32 0-102.4-46.080-102.4-102.4v-105.387c0-56.32 46.080-102.402 102.4-102.402s102.4 46.081 102.4 102.402v105.387c0 56.747-46.080 102.4-102.4 102.4zM511.983 421.114c-20.907 0-38.4 17.068-38.4 38.401v105.387c0 21.333 17.067 38.4 38.4 38.4s38.4-17.067 38.4-38.4v-105.387c0-21.333-17.493-38.401-38.4-38.401z","M512 802.982c-135.253 0-245.333-110.080-245.333-245.333v-91.307c0-135.252 110.080-245.332 245.333-245.332 126.293 0 231.253 94.722 244.053 220.163 1.707 17.493-11.093 33.276-28.587 34.982-17.493 2.133-33.28-11.093-34.987-28.587-9.387-92.585-87.040-162.559-180.48-162.559-99.84 0-181.333 81.493-181.333 181.332v91.307c0 99.84 81.493 181.333 181.333 181.333 93.867 0 173.227-73.387 180.907-166.827 1.28-17.493 16.64-30.72 34.56-29.44 17.493 1.28 30.72 16.644 29.44 34.564-10.24 126.72-117.76 225.702-244.907 225.702z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["finger-cricle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":288,"id":839,"name":"finger-cricle","prevSize":32,"code":59855},"setIdx":2,"setId":2,"iconIdx":62},{"icon":{"paths":["M626.773 970.671c-18.773 0-38.4-5.547-58.453-16.213l-167.68-93.44c-8.107-4.267-25.601-4.267-33.708 0l-167.253 93.44c-36.267 20.053-73.387 21.76-101.547 5.12-28.587-16.64-44.8-49.92-44.8-90.88v-484.692c0-90.88 73.813-164.692 164.693-164.692h331.947c90.88 0 164.693 73.812 164.693 164.692v484.692c0 40.96-16.213 74.24-44.8 90.88-12.8 7.253-27.307 11.093-43.093 11.093zM384 793.604c17.067 0 33.707 3.84 47.787 11.52l167.68 93.44c15.36 8.533 29.44 10.667 37.973 5.547 8.107-4.693 13.227-18.347 13.227-35.84v-484.693c0-55.467-45.227-100.692-100.693-100.692h-331.947c-55.467 0-100.693 45.226-100.693 100.692v484.693c0 17.493 5.12 31.147 13.227 35.84s22.614 2.56 37.974-5.973l167.68-93.44c13.654-7.253 30.72-11.093 47.787-11.093z","M882.773 805.111c-18.773 0-38.4-5.551-58.453-16.218l-157.44-87.893c-10.24-5.547-16.213-16.209-16.213-27.729v-289.282c0-55.467-45.227-100.693-100.693-100.693h-208.64c-17.493 0-32-14.507-32-32v-32.854c0-90.88 73.813-164.692 164.693-164.692h331.947c90.88 0 164.693 73.812 164.693 164.692v484.695c0 40.96-16.213 74.236-44.8 90.876-12.8 7.253-27.307 11.098-43.093 11.098zM714.667 654.067l140.8 78.933c15.36 8.533 29.44 10.671 37.973 5.551 8.107-4.693 13.227-18.347 13.227-35.84v-484.696c0-55.467-45.227-100.692-100.693-100.692h-331.947c-55.467 0-100.693 45.226-100.693 100.692v0.854h176.64c90.88 0 164.693 73.813 164.693 164.693v270.505z","M469.333 544h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 629.333c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-add"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":289,"id":838,"name":"save-add","prevSize":32,"code":59685},"setIdx":2,"setId":2,"iconIdx":63},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 714.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM512 373.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M903.245 373.331c-2.133 0-4.693-0.427-6.827-0.853-125.44-27.307-252.16-27.307-377.6 0-17.493 3.84-34.133-7.253-37.973-24.32-3.84-17.493 7.253-34.133 24.32-37.973 134.4-29.44 270.507-29.44 404.907 0 17.067 3.84 28.16 20.907 24.32 37.973-2.987 14.933-16.213 25.173-31.147 25.173z","M364.364 629.338c-8.96 0-17.92-3.84-24.32-11.093-88.747-101.973-156.16-218.455-200.96-346.455l29.44-13.227 30.293-10.24 0.853 2.56c41.813 119.893 105.387 229.548 189.013 325.548 11.52 13.227 10.24 33.707-2.987 45.227-6.4 5.12-14.080 7.68-21.333 7.68z","M464.205 968.107c-7.68 0-15.36-2.56-21.333-8.107-13.227-11.947-14.080-32-2.133-45.227 85.333-93.867 148.48-202.667 187.733-323.413 5.547-16.64 24.32-27.733 40.96-22.187s26.453 21.76 21.333 38.4c-43.093 133.12-110.933 250.027-202.24 350.72-6.827 6.4-15.787 9.813-24.32 9.813z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chrome"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":290,"id":837,"name":"chrome","prevSize":32,"code":59856},"setIdx":2,"setId":2,"iconIdx":64},{"icon":{"paths":["M298.667 757.329h-85.333c-103.253 0-160-56.747-160-160v-170.668c0-103.253 56.747-160 160-160h61.013c9.813 0 19.627-2.987 28.16-8.107l124.587-78.080c62.293-38.827 122.88-46.080 170.667-19.627s73.813 81.493 73.813 155.307v40.96c0 17.493-14.507 32-32 32s-32-14.507-32-32v-40.96c0-48.64-14.933-84.907-40.96-98.987-26.027-14.507-64.427-8.107-105.813 17.92l-124.587 77.653c-18.347 11.947-40.107 17.92-61.867 17.92h-61.013c-67.413 0-96 28.587-96 96v170.668c0 67.413 28.587 96 96 96h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M535.45 878.515c-33.707 0-70.827-11.947-107.947-35.413-14.933-9.387-19.627-29.013-10.24-43.947s29.013-19.627 43.947-10.24c41.387 25.6 79.787 32.427 105.813 17.92s40.96-50.773 40.96-98.987v-155.307c0-17.493 14.507-32 32-32s32 14.507 32 32v155.307c0 73.387-26.453 128.853-73.813 155.307-19.2 10.24-40.533 15.36-62.72 15.36z","M768.013 714.658c-6.827 0-13.227-2.133-19.2-6.4-14.080-10.667-17.067-30.72-6.4-44.8 53.76-71.68 65.28-166.827 30.72-249.172-6.827-16.213 0.853-34.987 17.067-41.813s34.987 0.853 41.813 17.067c43.52 103.252 28.587 223.145-38.4 312.745-6.4 8.107-15.787 12.373-25.6 12.373z","M846.097 821.342c-6.827 0-13.227-2.133-19.2-6.4-14.080-10.667-17.067-30.72-6.4-44.8 91.307-121.6 111.36-284.587 52.48-424.96-6.827-16.213 0.853-34.987 17.067-41.813 16.64-6.827 34.987 0.853 41.813 17.067 67.84 161.28 44.8 348.16-60.16 488.107-5.973 8.533-15.787 12.8-25.6 12.8z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":291,"id":836,"name":"volume-slash","prevSize":32,"code":59857},"setIdx":2,"setId":2,"iconIdx":65},{"icon":{"paths":["M441.626 784.649c-29.012 0-56.746-13.227-83.2-39.68l-120.746-120.747c-52.907-52.907-52.907-113.493 0-165.973l201.385-201.385c12.373-12.373 32.853-12.373 45.227 0l221.44 221.439c11.52 11.52 17.493 26.453 17.493 42.667s-6.4 31.573-17.493 42.667l-181.333 181.333c-25.6 26.453-53.76 39.68-82.773 39.68zM462.106 324.275l-178.772 178.774c-13.653 13.653-20.908 26.458-20.908 37.978 0 11.093 6.828 23.889 20.908 37.969l120.746 120.747c27.732 27.733 47.786 27.733 75.519 0l178.773-178.773-196.267-196.694z","M462.084 311.040c-8.107 0-16.213-2.985-22.613-9.385l-40.108-40.107c-12.373-12.373-12.373-32.853 0-45.227s32.854-12.373 45.228 0l40.107 40.107c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.385-22.613 9.385z","M232.121 571.315c-17.067 0-31.147-13.222-32-30.716s12.8-32.431 30.72-33.284l455.678-20.053c17.493-1.707 32.427 12.8 33.28 30.72 0.853 17.493-12.8 32.431-30.72 33.284l-455.678 20.049c-0.427 0-0.853 0-1.28 0z","M738.142 817.062c-48.213 0-87.893-39.258-87.893-87.898 0-46.080 49.067-102.822 64-119.036 11.947-13.227 34.987-13.227 46.933 0 14.933 16.213 64 73.382 64 119.036 0.427 48.64-38.827 87.898-87.040 87.898zM738.142 682.658c-13.227 18.773-23.893 37.547-23.893 46.507 0 12.8 10.667 23.898 23.893 23.898s23.893-10.671 23.893-23.898c-0.427-8.96-10.667-27.733-23.893-46.507z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bucket-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":292,"id":835,"name":"bucket-square","prevSize":32,"code":59858},"setIdx":2,"setId":2,"iconIdx":66},{"icon":{"paths":["M682.667 970.667h-341.333c-128.853 0-202.667-73.813-202.667-202.667v-416c0-134.4 68.267-202.667 202.667-202.667 17.493 0 32 14.507 32 32 0 17.067 6.827 33.28 18.773 45.227s28.16 18.773 45.227 18.773h149.333c35.413 0 64-28.587 64-64 0-17.493 14.507-32 32-32 134.4 0 202.667 68.267 202.667 202.667v416c0 128.853-73.813 202.667-202.667 202.667zM313.599 214.187c-67.413 5.547-110.932 35.84-110.932 137.813v416c0 94.72 43.947 138.667 138.667 138.667h341.333c94.72 0 138.667-43.947 138.667-138.667v-416c0-101.973-43.52-131.84-110.933-137.813-14.507 54.613-64.427 95.147-123.733 95.147h-149.333c-34.133 0-66.133-13.227-90.453-37.547-16.213-16.213-27.308-35.84-33.281-57.6z","M586.667 309.333h-149.333c-34.133 0-66.133-13.227-90.453-37.547s-37.547-56.32-37.547-90.453c0-70.4 57.6-128 128-128h149.333c34.133 0 66.133 13.227 90.453 37.547s37.547 56.32 37.547 90.453c0 70.4-57.6 128-128 128zM437.333 117.333c-35.413 0-64 28.587-64 64 0 17.067 6.827 33.28 18.773 45.227s28.16 18.773 45.227 18.773h149.333c35.413 0 64-28.587 64-64 0-17.067-6.827-33.28-18.773-45.227s-28.16-18.773-45.227-18.773h-149.333z","M512 586.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 757.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-21"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":293,"id":834,"name":"note-21","prevSize":32,"code":59686},"setIdx":2,"setId":2,"iconIdx":67},{"icon":{"paths":["M512.017 971.093c-46.507 0-92.586-13.658-128.853-40.538l-183.468-136.96c-48.64-36.267-86.613-111.787-86.613-172.373v-317.011c0-65.707 48.214-135.68 110.081-158.72l212.906-79.787c42.24-15.787 108.8-15.787 151.040 0l213.333 79.787c61.867 23.040 110.080 93.013 110.080 158.72v317.011c0 60.587-37.973 136.107-86.613 172.373l-183.467 136.96c-35.84 26.88-81.92 40.538-128.427 40.538zM458.684 125.438l-212.906 79.786c-36.693 13.653-68.694 59.734-68.694 98.987v317.011c0 40.533 28.587 97.28 60.587 121.173l183.466 136.96c49.067 36.693 132.267 36.693 181.334 0l183.467-136.96c32.427-24.32 60.587-81.067 60.587-121.173v-317.011c0-38.827-32-84.907-68.693-98.987l-212.907-79.786c-28.16-10.667-77.653-10.667-106.24 0z","M511.996 497.929c-0.853 0-1.707 0-2.987 0-61.867-1.707-107.092-49.067-107.092-106.668 0-58.88 48.212-107.094 107.092-107.094s107.093 48.214 107.093 107.094c-0.427 58.028-45.653 104.957-103.253 107.090-0.427-0.427-0.427-0.422-0.853-0.422zM509.009 348.167c-23.893 0-43.093 19.2-43.093 43.094 0 23.467 18.347 42.237 41.387 43.090 0 0 2.133 0 4.693 0 22.613-1.28 40.107-20.050 40.107-43.090 0.427-23.893-19.2-43.094-43.093-43.094z","M512.034 740.267c-36.693 0-73.813-9.813-102.4-29.013-28.587-18.773-44.801-46.507-44.801-75.947s16.214-57.173 44.801-76.373c57.6-38.4 147.627-37.973 204.8 0 28.587 18.773 44.8 46.507 44.8 75.947s-16.213 57.173-44.8 76.373c-28.587 19.2-65.707 29.013-102.4 29.013zM445.047 611.84c-10.667 6.827-16.64 15.36-16.213 23.040 0 7.68 5.973 16.213 16.213 23.040 35.84 23.893 98.133 23.893 133.973 0 10.667-6.827 16.64-15.36 16.64-23.040s-5.973-16.213-16.213-23.040c-35.84-23.467-98.56-23.467-134.4 0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-user"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":294,"id":833,"name":"security-user","prevSize":32,"code":59687},"setIdx":2,"setId":2,"iconIdx":68},{"icon":{"paths":["M166.827 733.009c-8.107 0-16.213-2.987-22.613-9.387-58.453-58.88-90.88-136.533-90.88-218.88 0-171.092 138.667-310.186 309.333-310.186l258.987 0.854-46.507-44.375c-12.8-12.373-13.227-32.426-0.853-45.226s32.427-13.225 45.227-0.852l104.107 99.838c9.387 8.96 12.373 23.040 7.68 34.987s-16.64 20.055-29.867 20.055l-339.2-0.854c-135.253 0-245.333 110.508-245.333 246.19 0 65.28 25.6 127.142 72.107 173.649 12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.080 8.96-22.186 8.96z","M426.663 928c-8.107 0-15.786-2.991-22.186-8.964l-104.107-99.836c-9.387-8.96-12.374-23.040-7.681-34.987s16.64-20.058 29.867-20.058l339.2 0.858c135.253 0 245.333-110.511 245.333-246.191 0-65.28-25.6-127.142-72.107-173.649-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0c58.453 58.88 90.88 136.529 90.88 218.876 0 171.093-138.667 310.191-309.333 310.191l-258.986-0.858 46.506 44.378c12.8 12.373 13.227 32.427 0.853 45.227-6.827 6.827-14.933 10.24-23.466 10.24z","M522.688 657.924c-17.493 0-32-14.507-32-32v-144.64l-8.107 8.96c-11.947 13.227-32 14.080-45.227 2.56s-14.080-32-2.56-45.227l64-71.254c8.96-9.813 23.040-13.227 35.413-8.534s20.48 16.64 20.48 29.867v228.268c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["repeate-one"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":295,"id":832,"name":"repeate-one","prevSize":32,"code":59859},"setIdx":2,"setId":2,"iconIdx":69},{"icon":{"paths":["M230.825 927.996c-47.787 0-78.080-16.213-97.28-35.413-37.547-37.547-64-117.333 20.48-286.72l37.12-73.813c4.693-9.813 4.693-30.293 0-40.107l-37.12-73.813c-84.907-169.387-58.027-249.6-20.48-286.72 37.12-37.547 117.333-64.427 286.293 20.48l365.225 182.613c90.88 45.227 140.8 108.373 140.8 177.493s-49.92 132.267-140.373 177.493l-365.225 182.613c-82.773 41.387-144.213 55.893-189.44 55.893zM230.825 159.996c-23.040 0-40.96 5.547-52.053 16.64-31.147 30.72-18.773 110.507 32.427 212.48l37.12 74.24c13.653 27.733 13.653 69.547 0 97.28l-37.12 73.813c-51.2 102.4-63.573 181.76-32.427 212.48 30.72 31.147 110.507 18.773 212.907-32.427l365.225-182.613c66.987-33.28 104.96-77.227 104.96-120.32s-38.4-87.040-105.387-120.32l-365.225-182.187c-64.853-32.427-120.747-49.067-160.427-49.067z","M462.485 544h-230.402c-17.493 0-32-14.507-32-32s14.507-32 32-32h230.402c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":296,"id":831,"name":"send-1","prevSize":32,"code":59688},"setIdx":2,"setId":2,"iconIdx":70},{"icon":{"paths":["M556.8 693.342h-80.213c-56.746 0-103.253-47.787-103.253-106.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 23.467 17.493 42.667 39.253 42.667h80.213c16.64 0 29.867-14.933 29.867-33.28 0-23.040-6.4-26.453-20.907-31.573l-128.427-44.8c-27.307-9.387-64-29.44-64-92.16 0-53.332 42.24-97.279 93.867-97.279h80.213c56.747 0 103.253 47.787 103.253 106.665 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-23.465-17.493-42.665-39.253-42.665h-80.213c-16.64 0-29.867 14.933-29.867 33.279 0 23.040 6.4 26.453 20.907 31.573l128.427 44.8c27.307 9.387 64 29.44 64 92.16 0 53.76-42.24 97.28-93.867 97.28z","M512 736c-17.493 0-32-14.507-32-32v-384c0-17.493 14.507-32 32-32s32 14.507 32 32v384c0 17.493-14.507 32-32 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c17.493 0 32 14.507 32 32s-14.507 32-32 32c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 253.013-205.653 458.667-458.667 458.667z","M896 330.667h-170.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v138.667h138.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.312 330.664c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l213.333-213.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-213.333 213.333c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-recive"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":297,"id":830,"name":"money-recive","prevSize":32,"code":59860},"setIdx":2,"setId":2,"iconIdx":71},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 155.733-89.6 245.333-245.333 245.333z","M511.949 549.111c-35.84 0-72.107-11.093-99.84-33.707l-133.547-106.668c-13.653-11.093-16.213-31.147-5.12-44.8s31.146-16.213 44.8-5.12l133.547 106.668c32.427 26.027 87.467 26.027 119.893 0 13.653-11.093 33.707-8.96 44.8 5.12 11.093 13.653 8.96 34.133-5.12 44.8-27.307 22.613-63.573 33.707-99.413 33.707z","M714.27 416.010c-17.493 0-29.44-5.974-37.12-11.52-14.080-10.24-35.84-35.839-23.040-92.159l2.133-8.96c0.853-3.413-1.707-11.52-3.84-14.080l-14.933-14.934c-25.173-25.6-34.987-55.466-26.453-82.346 8.533-26.453 33.707-45.227 69.12-51.2l16.213-2.56c2.987-0.853 8.96-5.12 10.667-8.107l11.947-24.32c16.64-33.707 42.24-52.906 70.4-52.906s53.76 19.2 70.4 52.906l11.947 24.32c1.28 2.56 7.68 7.253 10.667 8.107l16.213 2.56c35.413 5.973 60.587 24.747 69.12 51.2s-0.853 56.32-26.453 82.346l-14.933 14.934c-2.133 2.56-4.693 10.667-3.84 14.080l2.133 8.96c12.8 56.32-8.96 81.919-23.040 92.159s-44.8 22.612-93.867-6.826l-10.667-6.4c-2.987-1.707-11.52-1.707-14.507 0l-11.093 6.4c-23.040 13.653-42.24 18.346-57.173 18.346zM788.937 117.343c-0.427 0.427-6.4 4.693-12.373 17.066l-11.947 24.32c-10.24 20.907-34.56 38.827-57.173 42.667l-16.213 2.56c-13.653 2.133-18.347 6.827-18.773 7.68 0 0.853 1.28 7.679 11.093 17.492l14.933 14.934c17.493 17.92 26.453 48.64 20.907 72.96l-2.133 8.96c-3.413 15.36-2.133 23.466-1.28 26.453 0.853-0.853 8.533-1.706 22.613-10.24l11.093-6.4c23.467-14.080 57.173-14.080 80.64 0l10.667 6.4c14.080 8.533 21.333 9.387 23.893 9.387-0.427-1.28 1.28-8.96-2.56-25.6l-2.133-8.96c-5.547-24.747 3.413-55.040 20.907-72.96l14.933-14.934c9.813-9.813 11.093-16.64 11.093-17.92-0.427-0.853-5.12-5.12-18.773-7.68l-16.213-2.56c-23.040-3.84-46.933-21.76-57.173-42.667l-11.947-23.894c-6.827-12.8-12.373-16.64-14.080-17.066z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms-star"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":298,"id":829,"name":"sms-star","prevSize":32,"code":59689},"setIdx":2,"setId":2,"iconIdx":72},{"icon":{"paths":["M469.333 885.333c-229.547 0-416-186.453-416-416s186.453-416 416-416c229.547 0 416 186.453 416 416s-186.453 416-416 416zM469.333 117.333c-194.133 0-352 157.867-352 352s157.867 352 352 352c194.133 0 352-157.867 352-352s-157.867-352-352-352z","M576 501.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M860.164 972.373c-3.413 0-6.827-0.427-9.813-0.853-20.053-2.56-56.32-16.213-76.8-77.227-10.667-32-6.827-64 10.667-88.32s46.933-37.973 80.64-37.973c43.52 0 77.653 16.64 93.013 46.080s11.093 66.987-13.227 103.253c-30.293 45.653-63.147 55.040-84.48 55.040zM834.564 874.24c7.253 22.187 17.493 33.28 24.32 34.133s19.627-7.253 32.853-26.453c12.373-18.347 13.227-31.573 10.24-37.547s-14.933-12.373-37.12-12.373c-13.227 0-23.040 4.267-28.587 11.52-5.12 7.253-5.973 18.347-1.707 30.72z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-zoom-out"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":299,"id":828,"name":"search-zoom-out","prevSize":32,"code":59861},"setIdx":2,"setId":2,"iconIdx":73},{"icon":{"paths":["M981.333 970.667h-938.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h938.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M843.959 971.085c-17.493 0-32-14.507-32-32v-190.293c0-17.493 14.507-32 32-32s32 14.507 32 32v190.293c0 17.493-14.080 32-32 32z","M844.783 780.796c-69.547 0-125.867-56.32-125.867-125.867v-96.853c0-69.547 56.32-125.867 125.867-125.867s125.867 56.32 125.867 125.867v96.853c0 69.547-56.32 125.867-125.867 125.867zM844.783 496.636c-34.133 0-61.867 27.733-61.867 61.867v96.853c0 34.133 27.733 61.867 61.867 61.867s61.867-27.733 61.867-61.867v-96.853c0-34.133-27.733-61.867-61.867-61.867z","M610.125 970.658c-17.493 0-32-14.507-32-32v-681.387c0-67.84-28.587-96.854-95.147-96.854h-265.812c-66.987 0-96 29.014-96 96.854v681.387c0 17.493-14.507 32-32 32s-32-14.507-32-32v-681.387c0-103.68 56.747-160.854 160-160.854h265.812c102.827 0 159.147 57.174 159.147 160.854v681.387c0 17.493-14.507 32-32 32z","M458.658 384h-211.2c-17.493 0-32-14.507-32-32s14.507-32 32-32h211.2c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M458.658 544h-211.2c-17.493 0-32-14.507-32-32s14.507-32 32-32h211.2c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M352 970.667c-17.493 0-32-14.507-32-32v-160c0-17.493 14.507-32 32-32s32 14.507 32 32v160c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["building-4"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":300,"id":827,"name":"building-4","prevSize":32,"code":59862},"setIdx":2,"setId":2,"iconIdx":74},{"icon":{"paths":["M512.38 970.667c-26.88 0-53.76-8.96-74.667-26.88l-67.413-58.027c-6.827-5.973-23.893-11.947-32.853-11.947h-73.814c-63.147 0-114.346-51.2-114.346-114.347v-72.96c0-8.96-5.973-25.6-11.947-32.427l-57.6-67.84c-34.987-41.387-34.987-106.667 0-148.053l57.6-67.838c5.973-6.827 11.947-23.467 11.947-32.427v-72.963c0-63.147 51.2-114.344 114.346-114.344h73.814c8.96 0 26.026-6.401 32.853-11.948l67.413-58.026c41.813-35.84 107.093-35.84 148.907 0l67.413 58.026c6.827 5.973 23.893 11.948 32.853 11.948h72.533c63.147 0 114.347 51.197 114.347 114.344v72.536c0 8.96 6.4 26.028 12.373 32.854l57.6 67.411c35.84 41.813 35.84 107.093 0 148.907l-57.6 67.413c-5.973 6.827-11.947 23.893-11.947 32.853v72.533c0 63.147-51.2 114.347-114.347 114.347h-72.533c-8.96 0-26.027 6.4-32.853 11.947l-67.413 58.027c-21.333 17.92-48.213 26.88-74.667 26.88zM263.633 214.187c-27.733 0-50.346 22.611-50.346 50.344v72.963c0 24.32-11.52 55.466-26.88 73.812l-57.6 67.84c-14.933 17.493-14.933 47.787 0 65.28l57.6 67.84c15.787 18.773 27.307 49.92 27.307 73.813v72.96c0 27.733 22.613 50.347 50.346 50.347h73.814c24.747 0 55.893 11.52 74.667 27.733l67.412 58.027c17.493 14.933 48.213 14.933 65.707 0l67.413-58.027c18.773-15.787 49.92-27.733 74.667-27.733h72.533c27.733 0 50.347-22.613 50.347-50.347v-72.533c0-24.747 11.52-55.893 27.733-74.667l57.6-67.413c14.933-17.493 14.933-48.213 0-65.707l-57.6-67.413c-15.787-18.773-27.733-49.92-27.733-74.667v-72.536c0-27.733-22.613-50.344-50.347-50.344h-72.533c-24.32 0-55.893-11.521-74.667-27.734l-67.413-58.026c-17.493-14.933-48.213-14.933-65.707 0l-67.412 58.026c-18.773 15.787-49.92 27.734-74.667 27.734h-74.241v0.427z","M597.325 724.045h-75.947c-17.92 0-44.804-5.547-60.591-21.333l-58.877-45.222 39.255-50.778 61.867 47.787c4.267 2.987 11.947 5.12 18.347 5.12h75.947c10.24 0 22.609-8.956 24.742-17.916l48.644-148.058c1.28-3.84 1.276-6.396 0.849-7.249-0.853-1.28-3.84-2.564-8.107-2.564h-79.787c-15.36 0-29.436-6.396-39.676-17.916-9.813-11.52-14.511-26.88-12.378-42.667l10.244-64.427c0.853-3.413-1.707-7.683-4.267-8.536-2.56-0.427-6.4 0.428-7.68 1.708l-81.493 121.171-53.335-35.836 81.917-121.601c17.067-25.6 52.911-36.692 81.924-26.026 32.427 10.667 53.329 47.36 46.076 80.64l-7.676 48.635h66.129c25.173 0 47.364 10.671 60.591 29.444 12.8 18.347 15.782 42.24 7.676 64.853l-47.782 145.067c-8.96 36.693-46.933 65.702-86.613 65.702z","M379.744 702.298h-20.053c-62.72 0-72.107-43.947-72.107-69.973v-195.413c0-26.026 9.387-69.973 72.107-69.973h20.053c62.718 0 72.105 43.947 72.105 69.973v195.413c0 26.027-9.387 69.973-72.105 69.973zM352.437 637.871c1.707 0.427 4.267 0.427 7.68 0.427h20.053c3.413 0 5.973 0 7.68-0.427 0-1.28 0.427-2.987 0.427-5.547v-195.413c0-2.56-0-4.267-0.427-5.547-1.707-0.427-4.266-0.427-7.68-0.427h-20.053c-3.413 0-5.973 0-7.68 0.427 0 1.28-0.427 2.987-0.427 5.547v195.413c0 2.56 0 4.267 0.427 5.547z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-shapes"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":301,"id":826,"name":"like-shapes","prevSize":32,"code":59863},"setIdx":2,"setId":2,"iconIdx":75},{"icon":{"paths":["M748.378 386.566c-75.52 0-136.96-61.44-136.96-136.96s61.44-136.96 136.96-136.96c75.52 0 136.96 61.44 136.96 136.96s-61.44 136.96-136.96 136.96zM748.378 176.219c-40.107 0-72.96 32.853-72.96 72.96s32.853 72.96 72.96 72.96c40.107 0 72.96-32.853 72.96-72.96s-32.853-72.96-72.96-72.96z","M275.627 386.566c-75.52 0-136.96-61.44-136.96-136.96s61.44-136.96 136.96-136.96c75.52 0 136.96 61.44 136.96 136.96s-61.44 136.96-136.96 136.96zM275.627 176.219c-40.107 0-72.96 32.853-72.96 72.96s32.854 72.96 72.96 72.96c40.107 0 72.96-32.853 72.96-72.96s-32.426-72.96-72.96-72.96z","M748.378 911.795c-75.52 0-136.96-61.44-136.96-136.96s61.44-136.96 136.96-136.96c75.52 0 136.96 61.44 136.96 136.96s-61.44 136.96-136.96 136.96zM748.378 701.449c-40.107 0-72.96 32.853-72.96 72.96s32.853 72.96 72.96 72.96c40.107 0 72.96-32.853 72.96-72.96s-32.853-72.96-72.96-72.96z","M275.627 911.795c-75.52 0-136.96-61.44-136.96-136.96s61.44-136.96 136.96-136.96c75.52 0 136.96 61.44 136.96 136.96s-61.44 136.96-136.96 136.96zM275.627 701.449c-40.107 0-72.96 32.853-72.96 72.96s32.854 72.96 72.96 72.96c40.107 0 72.96-32.853 72.96-72.96s-32.426-72.96-72.96-72.96z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["menu"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":302,"id":825,"name":"menu","prevSize":32,"code":59864},"setIdx":2,"setId":2,"iconIdx":76},{"icon":{"paths":["M544.427 885.333c-34.56 0-71.68-11.947-110.080-35.84l-127.147-79.36c-8.96-5.547-18.773-8.533-29.013-8.533h-62.293c-104.96 0-162.56-57.6-162.56-162.56v-174.082c0-104.96 57.6-162.56 162.56-162.56h62.293c10.24 0 20.48-2.987 29.013-8.533l127.147-79.36c63.573-39.68 125.013-46.933 173.653-19.627 48.64 26.88 75.093 82.773 75.093 157.867v399.362c0 74.667-26.88 130.987-75.093 157.867-19.2 10.24-40.533 15.36-63.573 15.36zM215.893 326.398c-69.12 0-98.56 29.44-98.56 98.56v174.082c0 69.12 29.44 98.56 98.56 98.56h62.293c22.187 0 43.947 6.4 63.147 17.92l127.147 79.36c42.24 26.453 81.92 32.853 108.8 18.347 26.88-14.933 42.24-52.053 42.24-101.547v-399.362c0-49.92-15.36-87.040-42.24-101.547-26.88-14.933-66.56-8.107-108.8 18.347l-127.147 78.933c-19.2 11.947-40.96 18.347-63.147 18.347h-62.293z","M938.667 544h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-low-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":303,"id":824,"name":"volume-low-1","prevSize":32,"code":59865},"setIdx":2,"setId":2,"iconIdx":77},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M664.751 821.338c-17.493 0-32-14.507-32-32v-166.4c0-17.493 14.507-32 32-32s32 14.507 32 32v166.4c0 17.493-14.507 32-32 32z","M664.751 349.867c-17.493 0-32-14.507-32-32v-83.2c0-17.493 14.507-32 32-32s32 14.507 32 32v83.2c0 17.493-14.507 32-32 32z","M664.768 571.742c-78.933 0-142.933-64-142.933-142.933s64-142.933 142.933-142.933c78.933 0 142.933 64 142.933 142.933s-64.427 142.933-142.933 142.933zM664.768 349.875c-43.52 0-78.933 35.413-78.933 78.933s35.413 78.933 78.933 78.933c43.52 0 78.933-35.413 78.933-78.933s-35.84-78.933-78.933-78.933z","M359.25 821.325c-17.493 0-32-14.507-32-32v-83.2c0-17.493 14.507-32 32-32s32 14.507 32 32v83.2c0 17.493-14.080 32-32 32z","M359.25 433.067c-17.493 0-32-14.507-32-32v-166.4c0-17.493 14.507-32 32-32s32 14.507 32 32v166.4c0 17.493-14.080 32-32 32z","M359.267 738.138c-78.933 0-142.933-64-142.933-142.933s64-142.933 142.933-142.933c78.933 0 142.933 64 142.933 142.933s-64 142.933-142.933 142.933zM359.267 516.271c-43.52 0-78.933 35.413-78.933 78.933s35.413 78.933 78.933 78.933c43.52 0 78.933-35.413 78.933-78.933s-34.986-78.933-78.933-78.933z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-3"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":304,"id":823,"name":"setting-3","prevSize":32,"code":59866},"setIdx":2,"setId":2,"iconIdx":78},{"icon":{"paths":["M896 330.667c-17.493 0-32-14.507-32-32v-138.667h-138.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M639.979 415.999c-8.107 0-16.213-2.985-22.613-9.385-12.373-12.373-12.373-32.856 0-45.229l256-256c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-256 256c-6.4 6.4-14.507 9.385-22.613 9.385z","M298.667 928h-170.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v138.667h138.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M127.978 928c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.858 0-45.231l256-256c12.373-12.373 32.856-12.373 45.229 0s12.373 32.858 0 45.231l-256 256c-6.4 6.4-14.508 9.387-22.615 9.387z","M93.867 629.333c-14.933 0-28.162-10.667-31.148-25.6-5.973-29.867-9.385-61.013-9.385-91.733 0-253.013 205.653-458.667 458.667-458.667 31.147 0 62.293 2.985 92.587 9.385 17.493 3.413 28.587 20.48 25.173 37.547-3.413 17.493-20.907 28.161-37.547 25.174-26.027-5.12-52.907-8.107-79.787-8.107-217.6 0-394.666 177.067-394.666 394.667 0 26.453 2.56 53.333 8.107 78.933 3.413 17.493-7.681 34.133-25.174 37.547-2.56 0.853-4.692 0.853-6.826 0.853z","M512.043 970.679c-31.147 0-62.293-2.987-92.585-9.387-17.493-3.413-28.588-20.48-25.175-37.547 3.413-17.493 20.907-28.16 37.547-25.173 26.027 5.12 52.907 8.107 79.787 8.107 217.6 0 394.667-177.067 394.667-394.667 0-26.453-2.56-52.907-7.68-78.933-3.413-17.493 7.68-34.133 25.173-37.547 17.067-3.413 34.133 7.679 37.547 25.172 5.973 29.868 8.96 60.588 8.96 91.308 0.427 253.013-205.227 458.667-458.24 458.667z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":305,"id":822,"name":"maximize-circle","prevSize":32,"code":59867},"setIdx":2,"setId":2,"iconIdx":79},{"icon":{"paths":["M828.587 501.333h-145.92c-17.493 0-32-14.507-32-32v-298.24c0-31.573 12.373-61.013 34.56-83.2s51.627-34.56 83.2-34.56h0.427c53.333 0.427 103.68 21.333 142.080 59.307 38.4 38.827 59.307 90.027 59.307 143.36v103.253c0.427 84.907-56.747 142.080-141.653 142.080zM714.667 437.333h113.92c49.493 0 78.080-28.587 78.080-78.080v-103.253c0-36.693-14.507-71.68-40.533-98.133-26.027-25.6-61.013-40.107-97.28-40.533 0 0 0 0-0.427 0-14.080 0-27.733 5.547-37.973 15.787s-15.787 23.467-15.787 37.973v266.24z","M383.99 995.413c-20.053 0-38.827-7.68-52.907-22.187l-70.827-71.253c-3.84-3.84-9.813-4.267-14.080-0.853l-72.96 54.613c-22.613 17.067-52.48 20.053-78.080 7.253s-41.387-38.4-41.387-66.987v-640c0-128.853 73.813-202.667 202.667-202.667h512.001c17.493 0 32 14.507 32 32s-14.507 32-32 32c-29.44 0-53.333 23.893-53.333 53.333v725.333c0 28.587-15.787 54.187-41.387 66.987s-55.467 10.24-78.080-6.827l-72.96-54.613c-4.267-3.413-10.24-2.56-13.653 0.853l-71.68 71.68c-14.508 13.653-33.281 21.333-53.335 21.333zM252.15 834.987c19.627 0 38.827 7.253 53.333 22.187l70.827 71.253c2.56 2.56 5.973 2.987 7.68 2.987s5.12-0.427 7.68-2.987l71.681-71.68c26.453-26.453 68.267-29.013 97.707-6.4l72.533 54.187c4.693 3.413 8.96 2.133 11.093 0.853s5.973-3.84 5.973-9.387v-725.333c0-19.2 4.693-37.547 12.8-53.333h-407.468c-94.72 0-138.667 43.947-138.667 138.667v640c0 5.973 3.84 8.533 5.973 9.813 2.56 1.28 6.827 2.133 11.093-1.28l72.96-54.613c13.227-9.813 29.013-14.933 44.8-14.933z","M487.667 600.751c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M280.333 427.959c-23.893 0-42.667-19.201-42.667-42.668s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.668-42.667 42.668z","M267.56 617.813c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l232.958-232.962c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-232.958 232.962c-5.973 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-discount"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":306,"id":821,"name":"receipt-discount","prevSize":32,"code":59690},"setIdx":2,"setId":2,"iconIdx":80},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M682.667 842.667h-341.333c-103.253 0-160-56.747-160-160v-341.333c0-103.253 56.747-160 160-160h341.333c103.253 0 160 56.747 160 160v341.333c0 103.253-56.747 160-160 160zM341.333 245.333c-67.413 0-96 28.587-96 96v341.333c0 67.413 28.587 96 96 96h341.333c67.413 0 96-28.587 96-96v-341.333c0-67.413-28.587-96-96-96h-341.333z","M319.147 650.667h-105.813c-17.493 0-32-14.507-32-32s14.507-32 32-32h105.813c41.387 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667h-105.813c-17.493 0-32-14.507-32-32s14.507-32 32-32h105.813c76.373 0 138.667 62.293 138.667 138.667s-61.867 138.667-138.667 138.667z","M810.667 458.249h-128c-17.493 0-32-14.507-32-31.999 0-17.493 14.507-32 32-32h128c17.493 0 32 14.507 32 32 0 17.492-14.507 31.999-32 31.999z","M810.667 629.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M309.333 554.671c-5.547 0-11.093-1.28-16.213-3.413s-9.814-5.12-14.080-8.96c-8.107-8.107-12.373-18.773-12.373-30.293 0-11.093 4.693-22.187 12.373-30.293 11.947-11.52 30.72-15.787 46.507-8.96 5.547 2.133 10.24 5.12 14.080 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 11.52-4.266 22.187-12.373 30.293-4.267 3.84-8.96 6.827-14.080 8.96s-10.667 3.413-16.213 3.413z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["strongbox-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":307,"id":820,"name":"strongbox-2","prevSize":32,"code":59868},"setIdx":2,"setId":2,"iconIdx":81},{"icon":{"paths":["M511.991 970.667c-49.92 0-96.428-19.2-131.415-54.187l-272.641-272.64c-34.987-34.987-54.186-81.92-54.186-131.413s19.199-96.427 54.186-131.414l272.641-272.64c34.987-34.987 81.921-54.185 131.415-54.185s96.422 19.198 131.409 54.185l272.644 272.64c34.987 34.987 54.182 81.92 54.182 131.414s-19.196 96.427-54.182 131.413l-272.644 272.64c-34.987 34.987-81.489 54.187-131.409 54.187zM511.991 117.333c-32.853 0-63.573 12.801-86.188 35.414l-272.641 272.638c-23.040 23.041-35.412 53.761-35.412 86.188s12.799 63.573 35.412 86.187l272.641 272.64c45.655 45.653 126.717 45.653 172.37 0l272.644-272.64c23.040-23.040 35.409-53.333 35.409-86.187s-12.796-63.573-35.409-86.188l-272.644-272.638c-22.613-22.613-53.329-35.414-86.182-35.414z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["component"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":308,"id":819,"name":"component","prevSize":32,"code":59691},"setIdx":2,"setId":2,"iconIdx":82},{"icon":{"paths":["M704.009 650.662c-8.107 0-16.213-2.987-22.613-9.387l-151.467-151.467-46.507 69.973c-5.12 8.107-14.080 13.227-23.467 14.080-9.813 0.853-19.2-2.56-25.6-9.387l-136.533-136.533c-12.373-12.372-12.373-32.852 0-45.225s32.853-12.373 45.227 0l108.8 108.798 46.507-69.972c5.12-7.68 13.653-12.8 23.467-14.080 9.813-0.853 19.2 2.56 25.6 9.387l179.2 179.198c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M704 650.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h53.333v-53.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trend-down"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":309,"id":818,"name":"trend-down","prevSize":32,"code":59692},"setIdx":2,"setId":2,"iconIdx":83},{"icon":{"paths":["M554.667 970.667h-170.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v170.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-170.667c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M312.751 650.24c-6.827 0-13.653-2.133-19.626-6.827-14.080-10.667-16.639-30.72-5.972-44.8l101.545-131.84c12.373-15.787 29.868-26.027 49.92-28.587s39.68 2.987 55.467 15.36l78.080 61.44c2.987 2.56 5.973 2.133 8.107 2.133 1.707 0 4.693-0.853 7.253-4.267l98.56-127.147c10.667-14.080 30.72-16.64 44.8-5.546 14.080 10.667 16.64 30.72 5.547 44.8l-98.56 127.146c-12.373 15.787-29.867 26.027-49.92 28.16-19.627 2.56-39.68-2.987-55.040-15.36l-78.080-61.44c-2.987-2.56-6.4-2.56-8.107-2.133-1.707 0-4.693 0.853-7.253 4.267l-101.546 131.84c-5.973 8.533-15.361 12.8-25.175 12.8z","M864.448 970.675c-14.933 0-34.138-4.693-56.751-18.347l-10.667-6.4c-2.987-1.707-11.947-1.707-14.933 0l-10.667 6.4c-49.067 29.44-80.209 17.067-93.862 6.827-14.080-10.24-35.844-35.84-23.044-92.16l2.138-8.96c0.853-3.413-1.711-11.52-3.844-14.080l-14.929-14.933c-25.173-25.6-34.991-55.467-26.458-82.347 8.533-26.453 33.711-45.227 69.124-51.2l16.209-2.56c2.987-0.853 8.96-5.12 10.667-8.107l11.947-24.32c16.64-33.707 42.244-52.907 70.404-52.907s53.76 19.2 70.4 52.907l11.947 23.893c1.707 2.987 7.68 7.253 10.667 8.107l16.213 2.56c35.413 5.973 60.587 24.747 69.12 51.2s-0.853 56.32-26.453 82.347l-14.933 14.933c-2.133 2.56-4.693 10.667-3.84 14.080l2.129 8.96c12.8 56.32-8.956 81.92-23.036 92.16-7.68 5.973-20.053 11.947-37.547 11.947zM788.924 672.009c-0.427 0.427-6.396 4.693-12.369 17.067l-11.947 24.32c-10.24 20.907-34.564 38.827-57.178 42.667l-16.209 2.56c-13.653 2.133-18.347 6.827-18.773 7.68 0 0.853 1.276 7.68 11.089 17.493l14.933 14.933c17.493 17.92 26.453 48.64 20.907 72.96l-2.133 8.96c-3.84 16.64-2.133 23.893-1.28 26.453 1.28-0.853 8.533-1.707 22.613-10.24l10.667-6.4c23.467-14.080 57.178-14.080 80.644 0l10.667 6.4c17.493 10.667 24.747 9.387 25.173 9.387-1.707 0 0.422-8.533-3.418-25.6l-2.129-8.96c-5.547-24.747 3.409-55.040 20.902-72.96l14.933-14.933c9.813-9.813 11.098-16.64 11.098-17.92-0.427-0.853-5.12-5.12-18.773-7.68l-16.213-2.56c-23.040-3.84-46.933-21.76-57.173-42.667l-11.947-23.893c-6.827-12.8-12.804-16.64-14.084-17.067z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["favorite-chart"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":310,"id":817,"name":"favorite-chart","prevSize":32,"code":59869},"setIdx":2,"setId":2,"iconIdx":84},{"icon":{"paths":["M925.854 272.646h-310.187c-17.493 0-32-14.507-32-32s14.507-32 32-32h310.187c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M408.78 272.646h-310.613c-17.493 0-32-14.507-32-32s14.507-32 32-32h310.187c17.493 0 32.001 14.507 32.001 32s-14.081 32-31.574 32z","M925.854 686.084h-310.187c-17.493 0-32-14.507-32-32s14.507-32 32-32h310.187c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M925.854 944.644h-310.187c-17.493 0-32-14.507-32-32s14.507-32 32-32h310.187c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M771.831 427.52c-17.493 0-32-14.507-32-32v-310.187c0-17.493 14.507-32 32-32s32 14.507 32 32v310.187c0 17.92-14.080 32-32 32z","M98.143 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l310.187-310.187c12.373-12.373 32.854-12.373 45.225 0 12.373 12.373 12.373 32.853 0 45.227l-310.185 310.187c-5.973 6.4-14.080 9.387-22.613 9.387z","M408.747 970.662c-8.107 0-16.213-2.987-22.613-9.387l-310.187-310.187c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l310.187 310.187c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["math"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":311,"id":816,"name":"math","prevSize":32,"code":59870},"setIdx":2,"setId":2,"iconIdx":85},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M699.733 821.333h-162.133c-81.92 0-121.6-39.68-121.6-121.6v-76.8c0-81.92 39.68-121.6 121.6-121.6h162.133c81.92 0 121.6 39.68 121.6 121.6v76.8c0 81.92-39.68 121.6-121.6 121.6zM537.6 565.333c-46.080 0-57.6 11.52-57.6 57.6v76.8c0 46.080 11.52 57.6 57.6 57.6h162.133c46.080 0 57.6-11.52 57.6-57.6v-76.8c0-46.080-11.52-57.6-57.6-57.6h-162.133z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["screenmirroring"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":312,"id":815,"name":"screenmirroring","prevSize":32,"code":59871},"setIdx":2,"setId":2,"iconIdx":86},{"icon":{"paths":["M828.587 501.333h-145.92c-17.493 0-32-14.507-32-32v-298.24c0-31.573 12.373-61.013 34.56-83.2s51.627-34.56 83.2-34.56h0.427c53.333 0.427 103.68 21.333 142.080 59.307 38.4 38.827 59.307 90.027 59.307 143.36v103.253c0.427 84.907-56.747 142.080-141.653 142.080zM714.667 437.333h113.92c49.493 0 78.080-28.587 78.080-78.080v-103.253c0-36.693-14.507-71.68-40.533-98.133-26.027-25.6-61.013-40.107-97.28-40.533 0 0 0 0-0.427 0-14.080 0-27.733 5.547-37.973 15.787s-15.787 23.467-15.787 37.973v266.24z","M383.99 995.413c-20.053 0-38.826-7.68-52.906-22.187l-70.827-71.253c-3.84-3.84-9.813-4.267-14.080-0.853l-72.96 54.613c-22.613 17.067-52.48 20.053-78.080 7.253s-41.387-38.4-41.387-66.987v-640c0-128.853 73.813-202.667 202.667-202.667h512.001c17.493 0 32 14.507 32 32s-14.507 32-32 32c-29.44 0-53.333 23.893-53.333 53.333v725.333c0 28.587-15.787 54.187-41.387 66.987s-55.467 10.24-78.080-6.827l-72.96-54.613c-4.267-3.413-10.24-2.56-13.653 0.853l-71.68 71.68c-14.508 13.653-33.282 21.333-53.335 21.333zM252.15 834.987c19.627 0 38.827 7.253 53.333 22.187l70.826 71.253c2.56 2.56 5.973 2.987 7.68 2.987-0.427-0.853 5.12-0.427 7.68-2.987l71.682-71.68c26.453-26.453 68.267-29.013 97.707-6.4l72.533 54.187c4.693 3.413 8.96 2.133 11.093 0.853s5.973-3.84 5.973-9.387v-725.333c0-19.2 4.693-37.547 12.8-53.333h-407.468c-94.72 0-138.667 43.947-138.667 138.667v640c0 5.973 3.84 8.533 5.973 9.813 2.56 1.28 6.827 2.133 11.094-1.28l72.96-54.613c13.227-9.813 29.014-14.933 44.8-14.933z","M501.333 458.667h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-minus"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":313,"id":814,"name":"receipt-minus","prevSize":32,"code":59693},"setIdx":2,"setId":2,"iconIdx":87},{"icon":{"paths":["M640 501.333c-17.493 0-32-14.507-32-32v-42.667c0-62.293-15.36-96-96-96s-96 33.707-96 96v42.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-42.667c0-39.68 0-160 160-160s160 120.32 160 160v42.667c0 17.493-14.507 32-32 32z","M512.017 654.929c-31.573 0-57.6-26.027-57.6-57.6s26.027-57.6 57.6-57.6c31.573 0 57.596 26.027 57.596 57.6s-26.022 57.6-57.596 57.6zM512.017 590.929c-3.413 0-6.404 2.987-6.404 6.4 0 7.253 12.804 7.253 12.804 0 0-3.413-2.987-6.4-6.4-6.4z","M618.667 757.333h-213.333c-102.4 0-138.667-36.267-138.667-138.667v-42.667c0-102.4 36.267-138.667 138.667-138.667h213.333c102.4 0 138.667 36.267 138.667 138.667v42.667c0 102.4-36.267 138.667-138.667 138.667zM405.333 501.333c-67.84 0-74.667 6.827-74.667 74.667v42.667c0 67.84 6.827 74.667 74.667 74.667h213.333c67.84 0 74.667-6.827 74.667-74.667v-42.667c0-67.84-6.827-74.667-74.667-74.667h-213.333z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":314,"id":813,"name":"lock-circle","prevSize":32,"code":59694},"setIdx":2,"setId":2,"iconIdx":88},{"icon":{"paths":["M511.979 970.671c-216.745 0-405.758-154.027-449.278-366.080-3.413-17.493 7.68-34.133 24.747-37.973 17.493-3.413 34.133 7.68 37.973 24.747 37.547 182.613 200.107 315.307 386.558 315.307 186.027 0 348.587-131.84 386.56-313.6 3.413-17.493 20.48-28.587 37.973-24.747 17.493 3.413 28.587 20.48 24.747 37.973-44.373 210.773-232.96 364.373-449.28 364.373z","M930.598 461.227c-14.933 0-28.16-10.667-31.147-26.027-36.267-184.32-199.253-318.294-387.413-318.294-186.879 0-349.439 132.694-386.559 315.307-3.413 17.493-20.48 28.16-37.973 24.747s-28.587-20.48-24.747-37.973c43.52-212.053 232.533-366.081 449.279-366.081 218.88 0 407.893 155.734 450.133 369.92 3.413 17.493-8.107 34.133-25.173 37.547-2.133 0.853-4.267 0.853-6.4 0.853z","M512 608c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM512 480c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["level"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":315,"id":812,"name":"level","prevSize":32,"code":59872},"setIdx":2,"setId":2,"iconIdx":89},{"icon":{"paths":["M302.081 686.946c-15.36 0-30.72-3.84-44.8-11.947-28.587-16.213-45.654-45.231-45.654-77.658v-152.32c0-11.093-7.253-29.864-16.213-40.531l-107.521-113.068c-20.053-19.627-34.56-53.76-34.56-79.786v-66.133c0-51.627 39.252-92.588 89.599-92.588h379.734c49.493 0 89.6 40.107 89.6 89.6v63.147c0 33.28-19.2 69.973-37.973 88.746l-125.013 110.506c-9.813 8.107-17.92 27.736-17.92 42.243v123.729c0 29.44-17.92 62.298-41.386 76.378l-39.255 25.596c-15.36 9.387-31.998 14.084-48.638 14.084zM142.932 117.344c-14.507 0-25.599 12.374-25.599 28.588v66.133c0 7.253 7.254 25.6 16.64 34.987l110.078 115.626c16.213 20.053 32 52.907 32 82.345v152.32c0 12.8 8.109 19.204 13.229 21.764 6.827 3.84 17.918 5.973 27.305 0l39.68-25.604c5.12-2.987 11.094-14.929 11.094-22.182v-123.738c0-33.705 16.64-70.825 40.107-90.879l122.88-108.8c7.68-7.68 17.92-28.586 17.92-42.24v-63.147c0-14.080-11.52-25.6-25.6-25.6h-379.734v0.427z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-123.733-29.013-195.414-94.293-232.534-6.827-3.84-29.44-14.079-94.293-24.319-17.493-2.56-29.44-19.201-26.453-36.694s19.627-29.44 36.693-26.453c55.893 8.96 93.867 19.2 115.627 31.573 86.187 49.067 126.72 140.8 126.72 288.427v256c0 231.68-98.987 330.667-330.667 330.667z","M768 586.667h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 757.333h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-filter"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":316,"id":811,"name":"document-filter","prevSize":32,"code":59873},"setIdx":2,"setId":2,"iconIdx":90},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-50.347-36.693-98.56-78.080-143.787-122.88-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-101.973-87.040-151.893-22.187-52.48-33.28-103.68-33.28-151.893 0-33.28 5.973-64.853 17.493-94.293 12.373-30.72 31.147-58.453 57.173-82.773 32.853-32 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.48 23.893 40.533 45.227 60.16 65.707 25.6 25.173 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.36 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.2 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-0.853-2.133-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-11.093-4.267-18.347-4.693-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.907-17.493-42.24-37.547-69.547-64.427-21.333-21.76-41.813-44.373-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.547-12.8c-2.56-9.387-3.413-14.933-3.413-20.907 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.56-7.253-7.253-14.507-13.227-23.040l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-1.707-0.427-3.413 0-4.693 0.853z","M874.667 288h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 394.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-add"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":317,"id":810,"name":"call-add","prevSize":32,"code":59874},"setIdx":2,"setId":2,"iconIdx":91},{"icon":{"paths":["M810.667 714.667c-17.493 0-32-14.507-32-32v-405.333c0-29.44-23.893-53.333-53.333-53.333h-192c-17.493 0-32-14.507-32-32s14.507-32 32-32h192c64.853 0 117.333 52.48 117.333 117.333v405.333c0 17.493-14.507 32-32 32z","M640 330.664c-7.253 0-14.507-2.56-20.48-7.253l-128-106.667c-7.253-5.973-11.52-14.933-11.52-24.747s4.267-18.347 11.52-24.747l128-106.667c13.653-11.52 33.707-9.387 45.227 4.267s9.387 33.707-4.267 45.227l-98.56 81.92 98.56 81.92c13.653 11.52 15.36 31.573 4.267 45.226-6.4 7.68-15.787 11.52-24.747 11.52z","M213.333 714.667c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M224 394.667c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667zM224 117.333c-58.88 0-106.667 47.787-106.667 106.667s47.787 106.667 106.667 106.667c58.88 0 106.667-47.787 106.667-106.667s-47.787-106.667-106.667-106.667z","M213.333 970.667c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM213.333 714.667c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M810.667 970.667c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 714.667c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["programming-arrow"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":318,"id":809,"name":"programming-arrow","prevSize":32,"code":59695},"setIdx":2,"setId":2,"iconIdx":92},{"icon":{"paths":["M512.004 970.662c-221.868 0-401.921-180.48-401.921-401.92s180.053-402.347 401.921-402.347c45.653 0 90.027 6.4 132.693 19.627 17.067 5.12 26.453 23.040 21.333 40.107s-23.040 26.453-40.107 21.333c-36.267-11.093-74.667-17.067-113.92-17.067-186.454 0-337.921 151.467-337.921 337.92s151.467 337.92 337.921 337.92c186.453 0 337.92-151.467 337.92-337.92 0-67.413-19.627-132.267-56.747-187.733-9.813-14.507-5.973-34.56 8.96-44.373 14.507-9.813 34.56-5.973 44.373 8.96 44.373 66.133 67.84 143.36 67.84 223.573-0.427 221.44-180.48 401.92-402.347 401.92z","M688.23 258.996c-8.96 0-17.92-3.84-24.32-11.093l-123.307-141.653c-11.52-13.227-10.24-33.707 2.987-45.227s33.707-10.24 45.227 2.987l123.307 141.653c11.52 13.227 10.24 33.707-2.987 45.227-5.547 5.547-13.227 8.107-20.907 8.107z","M544.435 363.955c-9.813 0-19.627-4.693-26.027-13.227-10.24-14.080-7.253-34.133 6.827-44.8l143.787-104.96c14.080-10.667 34.133-7.253 44.8 6.827s7.253 34.133-6.827 44.8l-143.787 105.387c-5.547 4.267-11.947 5.973-18.773 5.973z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rotate-right"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":319,"id":808,"name":"rotate-right","prevSize":32,"code":59875},"setIdx":2,"setId":2,"iconIdx":93},{"icon":{"paths":["M469.333 970.667h-85.333c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v42.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-42.667c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M661.751 970.667c-64.427 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.907 117.333-117.333 117.333zM661.751 800.427c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M747.085 885.325c-17.493 0-32-14.507-32-32v-298.24c0-17.493 14.507-32 32-32s32 14.507 32 32v298.24c0 17.92-14.507 32-32 32z","M899.405 703.991c-8.96 0-17.92-1.28-26.88-4.693l-94.298-31.151c-36.267-11.947-63.142-49.92-63.142-87.893v-25.169c0-26.027 10.667-48.64 29.867-62.293s43.947-16.644 68.267-8.538l94.293 31.578c36.267 11.947 63.147 49.92 63.147 87.893v25.173c0 26.027-10.671 48.64-29.871 62.293-11.947 8.533-26.449 12.8-41.382 12.8zM786.334 543.991c-1.707 0-3.409 0.427-4.262 0.853-1.707 1.28-2.987 4.267-2.987 10.24v25.169c0 10.24 9.809 23.898 19.622 27.311l94.293 31.142c5.547 1.707 9.387 1.28 10.667 0.427 1.707-1.28 3.418-4.262 3.418-10.236v-25.173c0-10.24-9.818-23.893-19.631-27.307l-94.289-31.147c-2.987-0.853-5.124-1.28-6.831-1.28z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":320,"id":807,"name":"note-square","prevSize":32,"code":59696},"setIdx":2,"setId":2,"iconIdx":94},{"icon":{"paths":["M426.231 962.138c-2.133 0-4.267 0-6.4-0.853-163.413-33.28-296.107-153.6-345.6-313.173-5.12-17.067 4.267-34.987 20.907-40.107 17.067-5.12 34.987 4.267 40.107 20.907 42.667 137.387 156.587 240.64 297.387 269.227 17.493 3.413 28.587 20.48 24.747 37.973-2.987 15.36-16.64 26.027-31.147 26.027z","M936.542 500.48c-16.213 0-30.293-12.373-32-28.587-20.48-202.24-189.44-354.56-392.533-354.56-203.519 0-372.052 152.32-392.532 354.133-1.707 17.493-17.067 30.72-34.987 28.587-17.493-1.707-30.293-17.493-28.587-34.987 23.893-234.667 220.16-411.733 456.106-411.733 236.373 0 432.64 177.067 456.107 411.733 1.707 17.493-11.093 33.28-28.587 34.987-0.853 0.427-2.133 0.427-2.987 0.427z","M597.764 962.125c-14.933 0-28.16-10.24-31.147-25.6-3.413-17.493 7.68-34.133 24.747-37.547 139.947-28.587 253.867-130.987 296.96-267.52 5.12-17.067 23.467-26.453 40.107-20.907 17.067 5.12 26.027 23.467 20.907 40.107-50.347 158.72-182.613 277.76-345.173 311.040-2.133 0-4.267 0.427-6.4 0.427z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":321,"id":806,"name":"status","prevSize":32,"code":59697},"setIdx":2,"setId":2,"iconIdx":95},{"icon":{"paths":["M512.004 971.098c-46.507 0-92.586-13.653-128.852-40.533l-67.84-50.773c-14.080-10.667-17.067-30.72-6.4-44.8s30.72-17.067 44.8-6.4l67.84 50.773c49.066 36.693 132.266 36.693 181.332 0l183.467-136.96c32.427-24.32 60.587-81.067 60.587-121.173v-317.439c0-17.493 14.507-32 32-32s32 14.507 32 32v317.012c0 60.587-37.973 136.107-86.613 172.373l-183.467 136.96c-36.267 27.307-82.347 40.96-128.853 40.96z","M227.43 806.396c-6.827 0-13.227-2.133-19.2-6.4l-8.533-6.4c-48.64-36.267-86.613-112.213-86.613-172.373v-317.438c0-65.707 48.213-135.68 110.080-158.72l212.907-79.787c42.24-15.787 108.8-15.787 151.040 0l213.333 79.787c8.96 3.413 17.493 7.68 26.027 12.8 14.933 9.387 19.627 29.013 10.24 43.947s-29.013 19.627-43.947 10.24c-4.693-2.987-9.387-5.547-14.507-7.253l-213.333-79.787c-28.16-10.667-78.080-10.667-106.24 0l-212.907 80.213c-36.693 13.653-68.693 59.733-68.693 98.987v317.012c0 40.533 28.587 97.28 60.587 121.173l8.533 6.4c14.080 10.667 17.067 30.72 6.4 44.8-5.547 8.107-15.36 12.8-25.173 12.8z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-slash"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":322,"id":805,"name":"shield-slash","prevSize":32,"code":59698},"setIdx":2,"setId":2,"iconIdx":96},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 650.667c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v256c0 17.493-14.507 32-32 32z","M511.979 693.329c-8.107 0-16.213-2.987-22.613-9.387l-128.002-128c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l105.389 105.387 105.387-105.387c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-128 128c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":323,"id":804,"name":"arrow-down-2","prevSize":32,"code":59876},"setIdx":2,"setId":2,"iconIdx":97},{"icon":{"paths":["M704 970.667h-384c-140.8 0-160-76.8-160-160v-374.613c0-17.495 14.507-32.001 32-32.001s32 14.507 32 32.001v374.613c0 74.24 12.8 96 96 96h384c83.2 0 96-21.76 96-96v-374.613c0-17.495 14.507-32.001 32-32.001s32 14.507 32 32.001v374.613c0 83.2-19.2 160-160 160z","M810.667 458.667h-597.333c-103.253 0-160-56.747-160-160v-85.333c0-103.253 56.747-160 160-160h597.333c103.253 0 160 56.747 160 160v85.333c0 103.253-56.747 160-160 160zM213.333 117.333c-67.413 0-96 28.587-96 96v85.333c0 67.413 28.587 96 96 96h597.333c67.413 0 96-28.587 96-96v-85.333c0-67.413-28.587-96-96-96h-597.333z","M589.641 629.333h-155.307c-17.494 0-32-14.507-32-32s14.507-32 32-32h155.307c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":324,"id":803,"name":"archive-2","prevSize":32,"code":59877},"setIdx":2,"setId":2,"iconIdx":98},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M370.347 654.076c-17.92 0-34.56-4.267-49.067-12.373-35.413-20.053-54.613-59.733-54.613-111.787v-425.812c0-17.493 14.507-32 32-32s32 14.507 32 32v425.812c0 27.733 8.107 48.213 22.187 55.893 14.933 8.533 37.973 4.267 63.147-10.667l56.32-33.707c23.040-13.653 55.893-13.653 78.933 0l56.32 33.707c25.6 15.36 48.64 19.2 63.147 10.667 14.080-8.107 22.187-28.587 22.187-55.893v-425.812c0-17.493 14.507-32 32-32s32 14.507 32 32v425.812c0 52.053-19.2 91.733-54.613 111.787s-81.92 15.787-127.573-11.52l-56.32-33.707c-2.56-1.707-10.667-1.707-13.227 0l-56.32 33.707c-26.453 15.787-53.76 23.893-78.507 23.893z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bookmark"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":325,"id":802,"name":"bookmark","prevSize":32,"code":59878},"setIdx":2,"setId":2,"iconIdx":99},{"icon":{"paths":["M681.417 800c-71.253 0-139.52-26.453-192-73.813-6.827-5.973-10.667-14.933-10.667-23.893s3.84-17.92 10.667-23.893c47.36-41.813 74.667-102.4 74.667-166.4s-27.307-124.587-74.667-166.4c-6.827-5.973-10.667-14.507-10.667-23.893 0-8.96 3.84-17.92 10.667-23.893 52.907-47.787 120.747-73.813 192-73.813 158.72 0 288 129.28 288 288s-128.853 288-288 288zM558.963 699.307c36.267 23.893 78.507 36.693 122.88 36.693 123.307 0 224-100.693 224-224s-100.693-224-224-224c-43.947 0-86.613 12.8-122.88 36.693 44.373 51.627 69.547 117.76 69.547 187.307s-25.173 135.68-69.547 187.307z","M340.083 800c-158.72 0-288-129.28-288-288s129.28-288 288-288c71.253 0 139.52 26.453 192 73.813 60.587 53.76 96 131.84 96 214.187s-34.987 160-96 214.187c-52.48 47.36-120.747 73.813-192 73.813zM340.083 288c-123.307 0-224 100.693-224 224s100.693 224 224 224c55.467 0 108.373-20.48 149.333-57.6 47.787-42.24 74.667-102.827 74.667-166.4s-27.307-124.587-74.667-166.4c-40.96-37.12-93.867-57.6-149.333-57.6z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["blend"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":326,"id":801,"name":"blend","prevSize":32,"code":59699},"setIdx":2,"setId":2,"iconIdx":100},{"icon":{"paths":["M168.534 783.364c-19.627 0-39.68-5.12-57.6-15.787-36.267-20.907-57.6-58.027-57.6-99.84v-312.322c0-41.813 21.334-78.933 57.6-99.84s79.359-20.907 115.199 0l270.507 156.16c12.373 7.253 22.187 15.788 29.867 25.175 4.693 5.547 7.253 12.8 7.253 20.053v109.227c0 7.253-2.56 14.507-7.253 20.053-7.68 9.387-17.493 17.92-29.013 24.747l-271.36 157.013c-17.92 10.24-37.546 15.36-57.599 15.36zM168.534 304.643c-8.96 0-17.493 2.132-25.6 6.826-16.213 9.387-25.6 26.027-25.6 44.373v312.322c0 18.347 9.387 34.987 25.6 44.373s34.986 9.387 51.199 0l270.507-156.16c1.707-0.853 3.413-2.133 4.693-3.413v-82.347c-1.707-1.28-3.413-2.56-5.12-3.413l-270.080-155.735c-8.107-4.693-16.639-6.826-25.599-6.826z","M584.947 783.364c-19.627 0-39.68-5.12-57.6-15.787-36.267-20.907-57.596-58.027-57.596-99.84v-312.322c0-41.813 21.329-78.933 57.596-99.84s79.364-20.907 115.204 0l270.502 156.16c35.84 20.908 57.604 58.028 57.604 99.842s-21.333 78.933-57.604 99.84l-270.502 156.16c-17.92 10.667-37.978 15.787-57.604 15.787zM584.947 304.643c-8.96 0-17.493 2.132-25.6 6.826-16.213 9.387-25.596 25.6-25.596 44.373v312.322c0 18.347 9.382 34.987 25.596 44.373s35.418 9.387 51.204 0l270.502-156.16c16.213-9.387 25.604-26.027 25.604-44.373s-9.391-34.987-25.604-44.373l-270.502-156.162c-8.107-4.693-16.644-6.826-25.604-6.826z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forward"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":327,"id":800,"name":"forward","prevSize":32,"code":59700},"setIdx":2,"setId":2,"iconIdx":101},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-50.347-36.693-98.56-78.080-143.787-122.88-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-101.973-87.040-151.893-22.187-52.48-33.28-103.68-33.28-151.893 0-33.28 5.973-64.853 17.493-94.293 12.373-30.72 31.147-58.453 57.173-82.773 32.853-32 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.48 23.893 40.533 45.227 60.16 65.707 25.6 25.173 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.36 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.2 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-0.853-2.133-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-11.093-4.267-18.347-4.693-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.907-17.493-42.24-37.547-69.547-64.427-21.333-21.76-41.813-44.373-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.547-12.8c-2.56-9.387-3.413-14.933-3.413-20.907 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.56-7.253-7.253-14.507-13.227-23.040l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-1.707-0.427-3.413 0-4.693 0.853z","M874.667 288h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-minus"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":328,"id":799,"name":"call-minus","prevSize":32,"code":59879},"setIdx":2,"setId":2,"iconIdx":102},{"icon":{"paths":["M810.709 970.662c-69.12 0-134.4-35.84-171.093-94.72-19.627-30.293-30.72-66.56-31.573-103.68-1.28-62.293 25.178-120.32 72.538-159.573 35.413-29.44 79.787-46.080 125.44-47.36 55.467-0.427 105.382 18.773 144.636 56.32s61.44 87.893 62.293 142.080c0.853 37.12-8.533 73.387-27.307 105.387-10.24 17.92-23.467 34.56-39.253 48.64-34.987 32.853-81.92 52.053-131.84 52.907-0.853 0-2.133 0-3.84 0zM810.709 629.329c-0.853 0-2.133 0-2.987 0-31.573 0.853-61.44 11.947-86.187 32.427-32.427 26.88-50.347 66.56-49.493 109.227 0.427 25.173 8.107 49.92 21.333 70.827 26.027 41.813 71.253 67.413 119.893 64.853 33.707-0.853 65.711-13.653 90.031-36.267 11.093-9.813 20.049-20.907 26.876-32.853 12.8-22.187 19.2-46.933 18.773-72.107-0.853-37.12-15.787-71.68-42.667-97.28-25.6-25.173-59.733-38.827-95.573-38.827z","M787.153 842.662c-8.107 0-15.787-2.987-22.187-8.96l-43.093-40.96c-12.8-12.373-13.227-32.427-0.853-45.227s32.427-13.227 45.227-0.853l20.907 20.053 66.987-64.853c12.8-12.373 32.853-11.947 45.227 0.853s11.947 32.858-0.853 45.231l-89.173 86.182c-6.4 5.547-14.507 8.533-22.187 8.533z","M511.974 567.462c-5.547 0-11.093-1.28-16.213-4.267l-376.748-218.027c-15.36-8.96-20.481-28.588-11.521-43.948s28.588-20.481 43.521-11.521l360.531 208.642 358.404-207.361c15.36-8.96 34.987-3.412 43.52 11.521 8.96 15.36 3.413 34.985-11.52 43.945l-374.187 216.748c-4.693 2.56-10.24 4.267-15.787 4.267z","M512 954.018c-17.493 0-32-14.507-32-32v-386.987c0-17.493 14.507-32 32-32s32 14.507 32 32v386.987c0 17.493-14.507 32-32 32z","M511.953 970.662c-37.547 0-75.093-8.107-104.107-24.747l-227.84-126.293c-61.867-34.133-110.506-116.48-110.506-187.307v-241.493c0-70.827 48.64-152.745 110.506-187.305l227.84-126.294c58.027-32.853 149.333-32.853 207.787 0l227.84 126.294c61.867 34.133 110.507 116.478 110.507 187.305v241.493c0 4.267 0 7.68-0.853 11.947-2.133 11.093-10.24 20.48-20.907 23.893-10.667 3.84-22.613 1.28-31.573-5.973-49.067-42.667-125.013-44.373-176.64-2.987-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 3.413 5.973 6.827 10.667 10.667 15.36 6.4 7.253 8.96 17.067 7.253 26.453s-7.68 17.493-16.213 22.187l-78.080 43.093c-29.013 17.067-66.133 25.173-103.68 25.173zM511.953 117.33c-26.453 0-53.333 5.547-72.533 16.214l-227.84 126.294c-41.387 22.613-77.226 84.051-77.226 130.985v241.493c0 46.933 36.266 108.373 77.226 130.987l227.84 126.293c38.827 21.76 106.667 21.76 145.493 0l47.787-26.453c-15.787-28.587-24.32-61.867-24.32-96 0-62.293 27.733-119.893 75.947-158.293 58.027-46.507 140.8-56.32 206.080-28.587v-190.292c0-46.933-36.267-108.374-77.227-130.987l-227.84-126.294c-20.053-9.813-46.933-15.36-73.387-15.36z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":329,"id":798,"name":"box-tick","prevSize":32,"code":59880},"setIdx":2,"setId":2,"iconIdx":103},{"icon":{"paths":["M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M648.96 946.765c-8.96 0-17.92-1.28-26.88-3.413-26.453-7.253-48.64-23.893-62.72-47.36l-5.12-8.533c-25.173-43.52-59.733-43.52-84.907 0l-4.693 8.107c-14.080 23.893-36.267 40.96-62.72 47.787-26.88 7.253-54.613 3.413-78.080-10.667l-73.387-42.24c-26.027-14.933-44.8-39.253-52.907-68.693-7.68-29.44-3.84-59.733 11.093-85.76 12.373-21.76 15.787-41.387 8.533-53.76s-25.6-19.627-50.773-19.627c-62.293 0-113.067-50.773-113.067-113.067v-75.093c0-62.293 50.773-113.067 113.067-113.067 25.173 0 43.52-7.253 50.773-19.627s4.267-32-8.533-53.76c-14.933-26.027-18.773-56.747-11.093-85.76 7.68-29.44 26.453-53.76 52.907-68.693l73.813-42.24c48.213-28.587 111.787-11.947 140.8 37.12l5.12 8.533c25.173 43.52 59.733 43.52 84.907 0l4.693-8.107c29.013-49.493 92.587-66.133 141.227-37.12l73.387 42.24c26.027 14.933 44.8 39.253 52.907 68.693 7.68 29.44 3.84 59.733-11.093 85.76-12.373 21.76-15.787 41.387-8.533 53.76s25.6 19.627 50.773 19.627c62.293 0 113.067 50.773 113.067 113.067v75.093c0 62.293-50.773 113.067-113.067 113.067-25.173 0-43.52 7.253-50.773 19.627s-4.267 32 8.533 53.76c14.933 26.027 19.2 56.747 11.093 85.76-7.68 29.44-26.453 53.76-52.907 68.693l-73.813 42.24c-16.213 8.96-33.707 13.653-51.627 13.653zM512 788.898c37.973 0 73.387 23.893 97.707 66.133l4.693 8.107c5.12 8.96 13.653 15.36 23.893 17.92s20.48 1.28 29.013-3.84l73.813-42.667c11.093-6.4 19.627-17.067 23.040-29.867s1.707-26.027-4.693-37.12c-24.32-41.813-27.307-84.907-8.533-117.76s57.6-51.627 106.24-51.627c27.307 0 49.067-21.76 49.067-49.067v-75.093c0-26.88-21.76-49.067-49.067-49.067-48.64 0-87.467-18.773-106.24-51.627s-15.787-75.947 8.533-117.76c6.4-11.093 8.107-24.32 4.693-37.12s-11.52-23.040-22.613-29.867l-73.813-42.24c-18.347-11.093-42.667-4.693-53.76 14.080l-4.693 8.107c-24.32 42.24-59.733 66.133-97.707 66.133s-73.387-23.893-97.707-66.133l-4.693-8.533c-10.667-17.92-34.56-24.32-52.907-13.653l-73.813 42.667c-11.093 6.4-19.627 17.067-23.040 29.867s-1.707 26.027 4.693 37.12c24.32 41.813 27.307 84.907 8.533 117.76s-57.6 51.627-106.24 51.627c-27.307 0-49.067 21.76-49.067 49.067v75.093c0 26.88 21.76 49.067 49.067 49.067 48.64 0 87.467 18.773 106.24 51.627s15.787 75.947-8.533 117.76c-6.4 11.093-8.107 24.32-4.693 37.12s11.52 23.040 22.613 29.867l73.813 42.24c8.96 5.547 19.627 6.827 29.44 4.267 10.24-2.56 18.773-9.387 24.32-18.347l4.693-8.107c24.32-41.813 59.733-66.133 97.707-66.133z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":330,"id":797,"name":"setting-2","prevSize":32,"code":59881},"setIdx":2,"setId":2,"iconIdx":104},{"icon":{"paths":["M368.64 928h-154.88c-79.36 0-117.76-36.693-117.76-112.64v-606.72c0-75.947 38.4-112.64 117.76-112.64h154.88c79.36 0 117.76 36.693 117.76 112.64v606.72c0 75.947-38.4 112.64-117.76 112.64zM213.76 160c-46.080 0-53.76 11.52-53.76 48.64v606.72c0 37.12 7.253 48.64 53.76 48.64h154.88c46.080 0 53.76-11.52 53.76-48.64v-606.72c0-37.12-7.253-48.64-53.76-48.64h-154.88z","M810.223 928h-154.88c-79.36 0-117.76-36.693-117.76-112.64v-606.72c0-75.947 38.4-112.64 117.76-112.64h154.88c79.36 0 117.76 36.693 117.76 112.64v606.72c0 75.947-38.4 112.64-117.76 112.64zM655.343 160c-46.080 0-53.76 11.52-53.76 48.64v606.72c0 37.12 7.253 48.64 53.76 48.64h154.88c46.080 0 53.76-11.52 53.76-48.64v-606.72c0-37.12-7.253-48.64-53.76-48.64h-154.88z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pause"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":331,"id":796,"name":"pause","prevSize":32,"code":59882},"setIdx":2,"setId":2,"iconIdx":105},{"icon":{"paths":["M614.4 885.333h-204.8c-187.307 0-270.933-83.627-270.933-270.933v-204.8c0-187.307 83.627-270.933 270.933-270.933h204.8c187.307 0 270.933 83.627 270.933 270.933v204.8c0 187.307-83.627 270.933-270.933 270.933zM409.6 202.667c-152.747 0-206.933 54.187-206.933 206.933v204.8c0 152.747 54.187 206.933 206.933 206.933h204.8c152.747 0 206.933-54.187 206.933-206.933v-204.8c0-152.747-54.187-206.933-206.933-206.933h-204.8z","M576 757.333h-128c-123.733 0-181.333-57.6-181.333-181.333v-128c0-123.733 57.6-181.333 181.333-181.333h128c123.733 0 181.333 57.6 181.333 181.333v128c0 123.733-57.6 181.333-181.333 181.333zM448 330.667c-88.747 0-117.333 28.587-117.333 117.333v128c0 88.747 28.587 117.333 117.333 117.333h128c88.747 0 117.333-28.587 117.333-117.333v-128c0-88.747-28.587-117.333-117.333-117.333h-128z","M341.75 202.667c-17.92 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M682.667 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M938.667 373.333h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M938.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M938.667 714.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M682.667 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512.418 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M341.75 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M170.667 373.333h-85.333c-17.493 0-32-14.080-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M170.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M170.667 714.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M511.983 642.133c-5.547 0-11.093-1.28-15.787-4.267-15.36-8.96-20.48-28.587-11.947-43.52l29.013-50.347h-25.173c-20.48 0-37.12-8.96-46.080-24.32s-8.107-34.56 1.707-52.053l40.107-69.975c8.96-15.36 28.587-20.48 43.52-11.947 15.36 8.96 20.48 28.587 11.947 43.522l-29.013 50.347h25.173c20.48 0 37.12 8.96 46.080 24.32s8.107 34.56-1.707 52.053l-40.107 69.973c-5.973 10.667-16.64 16.213-27.733 16.213z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cpu-charge"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":332,"id":795,"name":"cpu-charge","prevSize":32,"code":59701},"setIdx":2,"setId":2,"iconIdx":106},{"icon":{"paths":["M512.034 964.275c-47.36 0-91.307-20.053-124.16-55.893l-292.693-321.707c-41.387-45.227-54.187-125.013-29.44-180.909l109.228-245.76c29.867-66.987 79.786-99.84 153.173-99.84h366.507v0c73.387 0 123.307 32.427 153.173 99.413l109.227 245.76c24.747 55.895 12.373 135.682-29.013 180.908l-292.267 322.133c-32 35.84-76.373 55.893-123.733 55.893zM695.074 123.74h-366.507c-55.893 0-78.507 24.746-94.72 61.866l-109.227 245.762c-14.507 32.853-5.973 85.333 17.92 111.787l292.693 321.707c20.48 22.613 47.787 34.987 76.8 34.987s56.32-12.373 76.8-34.987l292.267-322.133c24.32-26.88 32.853-78.933 17.92-111.787l-109.227-245.762c-16.213-36.693-38.827-61.44-94.72-61.44z","M149.333 373.333c-17.493 0-32-14.507-32-32s14.507-32 32-32l725.333-0.427c17.493 0 32 14.507 32 32s-14.507 32-32 32l-725.333 0.427z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["diamonds"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":333,"id":794,"name":"diamonds","prevSize":32,"code":59883},"setIdx":2,"setId":2,"iconIdx":107},{"icon":{"paths":["M469.333 970.667h-85.333c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v42.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-42.667c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M651.524 970.671c-51.627 0-93.44-41.813-93.44-93.44s41.813-93.44 93.44-93.44c51.627 0 93.44 41.813 93.44 93.44s-41.813 93.44-93.44 93.44zM651.524 847.364c-16.213 0-29.44 13.227-29.44 29.44s13.227 29.44 29.44 29.44c16.213 0 29.44-13.227 29.44-29.44s-13.227-29.44-29.44-29.44z","M712.998 909.218c-17.493 0-32-14.507-32-32v-248.32c0-38.827 23.893-70.4 61.44-80.213l123.307-33.707c38.4-10.667 62.293-0.427 75.947 9.813 13.227 10.24 29.013 30.72 29.013 70.4v240.64c0 17.493-14.507 32-32 32s-32-14.507-32-32v-240.64c0-13.653-2.987-18.773-4.267-19.627s-7.253-2.56-20.48 0.853l-123.307 33.707c-12.8 3.413-14.080 12.373-14.080 18.773v248.32c0.427 17.493-14.080 32-31.573 32z","M877.274 929.715c-51.627 0-93.44-41.813-93.44-93.44s41.813-93.44 93.44-93.44c51.627 0 93.44 41.813 93.44 93.44s-41.813 93.44-93.44 93.44zM877.274 806.409c-16.213 0-29.44 13.227-29.44 29.44s13.227 29.44 29.44 29.44c16.213 0 29.44-13.227 29.44-29.44s-13.227-29.44-29.44-29.44z","M712.943 733.009c-14.080 0-26.88-9.387-30.72-23.467-4.693-17.067 5.547-34.56 22.613-39.253l225.707-61.44c17.067-4.693 34.56 5.547 39.253 22.613s-5.547 34.556-22.613 39.249l-225.707 61.44c-2.987 0.427-5.973 0.858-8.533 0.858z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mini-music-sqaure"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":334,"id":793,"name":"mini-music-sqaure","prevSize":32,"code":59884},"setIdx":2,"setId":2,"iconIdx":108},{"icon":{"paths":["M518.417 825.6c-17.493 0-32-14.507-32-32v-89.6c0-17.493 14.507-32 32-32s32 14.507 32 32v89.6c0 17.493-14.507 32-32 32z","M763.75 970.667h-490.667v-74.667c0-64.853 52.48-117.333 117.333-117.333h256c64.853 0 117.333 52.48 117.333 117.333v74.667zM337.083 906.667h362.667v-10.667c0-29.44-23.893-53.333-53.333-53.333h-256c-29.44 0-53.333 23.893-53.333 53.333v10.667z","M774.417 970.667h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M786.377 530.778c-8.96 0-17.92-3.84-24.32-11.093-8.107-9.387-10.24-22.613-5.12-33.707 14.507-33.28 21.76-68.695 21.76-105.815v-128c0-14.933-2.56-29.44-7.68-44.8-0.427-1.28-0.853-2.987-1.28-4.693-1.28-6.4-1.707-12.8-1.707-18.773 0-17.493 14.507-32 32-32h25.6c76.373 0 138.667 64 138.667 142.933 0 65.28-26.88 129.707-73.387 176.215-0.853 0.853-3.413 2.987-3.84 3.413-25.173 20.907-53.76 44.373-92.16 55.040-2.987 0.853-5.547 1.28-8.533 1.28zM839.71 217.176c2.133 11.52 2.987 23.467 2.987 34.987v128c0 17.493-1.28 34.133-3.84 51.202 2.56-2.133 4.693-3.84 7.253-5.975 34.133-34.133 54.187-81.92 54.187-130.56 0-38.4-26.027-70.827-60.587-77.653z","M238.097 529.071c-3.413 0-6.4-0.427-9.813-1.707-34.987-11.093-67.84-31.573-95.147-58.88-49.067-54.187-73.387-113.493-73.387-176.213 0-77.653 61.013-138.667 138.667-138.667h27.733c10.667 0 20.907 5.547 26.88 14.507s6.827 20.48 2.56 30.293c-6.827 15.36-10.24 32.853-10.24 51.2v128c0 36.693 7.253 72.533 22.187 106.667 5.12 11.52 2.56 24.747-5.547 34.133-6.4 6.827-14.933 10.667-23.893 10.667zM183.483 218.884c-34.56 6.827-59.733 36.693-59.733 73.387 0 46.507 18.773 91.307 55.893 132.267 1.707 2.133 3.84 3.84 5.973 5.547-2.987-17.493-4.267-34.987-4.267-52.48v-128c0-10.24 0.853-20.48 2.133-30.72z","M512 714.667c-182.187 0-330.667-148.48-330.667-330.667v-128c0-111.787 90.88-202.667 202.667-202.667h256c111.787 0 202.667 90.88 202.667 202.667v128c0 182.187-148.48 330.667-330.667 330.667zM384 117.333c-76.373 0-138.667 62.293-138.667 138.667v128c0 147.2 119.467 266.667 266.667 266.667s266.667-119.467 266.667-266.667v-128c0-76.373-62.293-138.667-138.667-138.667h-256z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cup"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":335,"id":792,"name":"cup","prevSize":32,"code":59885},"setIdx":2,"setId":2,"iconIdx":109},{"icon":{"paths":["M237.237 799.573c0 0-0.426 0-0.853 0l-108.801-0.427c-17.493 0-32-14.507-32-32s14.507-32 32-32l109.227 0.427c27.733 0 53.761-13.653 69.121-37.12l272.637-408.748c27.307-40.96 72.96-65.706 122.453-65.706 0 0 0.431 0 0.858 0l194.129 0.854c17.493 0 32 14.507 32 32s-14.507 32-32 32l-194.56-0.854c-27.733 0-53.756 13.653-69.116 37.12l-272.643 408.747c-27.307 41.387-72.96 65.707-122.453 65.707z","M810.645 884.476c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z","M379.307 400.203c-9.813 0-19.627-4.693-26.027-13.227l-46.080-64c-15.787-21.76-41.814-34.56-67.841-34.56l-111.36 0.427c-19.627-0.427-32-14.080-32-32 0-17.493 14.080-32 32-32l111.36-0.427c0.427 0 0.427 0 0.854 0 47.36 0 91.733 23.040 119.466 61.013l46.081 64c10.24 14.507 7.253 34.133-7.254 44.8-5.973 3.84-12.373 5.974-19.2 5.974z","M696.299 799.996c-45.227 0-88.747-21.333-116.48-57.173l-52.053-66.982c-10.667-14.080-8.107-34.138 5.547-44.804 14.080-10.667 34.133-8.107 44.8 5.547l52.053 66.987c15.787 20.48 40.96 30.72 66.133 32.427l199.253-0.853c17.493 0 32 14.080 32 32 0 17.493-14.080 32-32 32l-199.253 0.853c0.427 0 0 0 0 0z","M895.979 288.853c-8.107 0-16.213-2.988-22.613-9.388l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.388-22.613 9.388z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shuffle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":336,"id":791,"name":"shuffle","prevSize":32,"code":59702},"setIdx":2,"setId":2,"iconIdx":110},{"icon":{"paths":["M465.92 842.671c-12.373 0-24.32-1.707-34.133-5.547-145.92-49.92-378.453-228.267-378.453-491.947 0-135.253 109.226-244.906 243.626-244.906 64.427 0 124.587 24.746 169.387 68.692 45.227-43.947 104.96-68.692 169.387-68.692 134.4 0 243.627 109.653 243.627 244.906 0 18.347-1.28 37.12-3.84 56.32-1.28 9.813-7.253 18.773-15.787 23.893s-19.2 5.547-28.587 1.707c-52.48-22.613-117.76-5.547-151.893 40.107-5.973 8.107-17.493 12.373-25.6 12.8-10.24 0-19.627-4.693-25.6-12.8-24.32-32.427-61.44-50.773-101.547-50.773-69.547 0-126.293 57.173-126.293 127.573 0 110.933 63.573 189.867 117.333 237.227 7.68 6.827 11.52 16.64 10.667 26.88s-6.4 19.2-15.36 24.747c-4.693 2.56-8.533 4.267-10.667 4.693-11.093 3.413-23.467 5.12-36.267 5.12zM296.96 164.271c-98.987 0-179.626 81.066-179.626 180.906 0 223.147 185.6 360.534 292.267 413.44-40.533-54.187-73.814-125.867-73.814-215.040 0-105.813 85.333-191.574 190.293-191.574 47.787 0 92.587 17.494 127.147 48.641 43.093-38.4 104.533-55.895 161.707-45.228 0-3.413 0-6.826 0-9.812 0-99.84-80.64-180.908-179.627-180.908-56.747 0-109.227 26.453-143.787 72.107-5.973 8.107-15.36 12.801-25.6 12.801s-19.627-4.694-25.6-12.801c-33.706-46.080-86.187-72.532-143.36-72.532z","M653.679 923.733c-9.813 0-20.053-1.28-28.16-4.267-36.693-12.373-96-42.667-150.187-90.88-63.146-55.893-138.666-150.613-138.666-285.013 0-105.813 85.333-191.573 190.292-191.573 47.787 0 92.587 17.494 127.147 48.64 53.76-48.213 135.68-61.867 203.093-32.427 69.12 30.72 113.92 99.84 113.92 175.787 0 202.24-177.493 337.92-289.28 375.893-8.533 2.56-18.347 3.84-28.16 3.84zM526.532 416c-69.547 0-126.292 57.173-126.292 127.573 0 110.933 63.572 189.867 117.332 237.227 47.36 41.813 97.28 67.84 128.427 78.080 3.413 1.28 11.52 1.28 14.507 0 64-21.76 246.187-126.293 246.187-315.307 0-50.773-29.867-96.853-75.52-116.907-51.627-22.613-117.76-5.547-151.893 40.107-5.973 8.107-17.493 12.373-25.6 12.8-10.24 0-19.627-4.693-25.6-12.8-24.32-32.427-61.44-50.773-101.547-50.773z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lovely"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":337,"id":790,"name":"lovely","prevSize":32,"code":59886},"setIdx":2,"setId":2,"iconIdx":111},{"icon":{"paths":["M711.642 888.751c-0.427 0-1.28 0-1.707 0h-473.175c-125.44-8.96-181.76-105.387-181.76-191.573 0-76.8 44.8-162.133 142.507-185.6-27.307-106.668-4.267-206.934 65.28-279.468 78.933-82.773 205.655-115.627 314.455-81.92 99.84 30.72 170.24 113.067 195.84 227.413 87.467 19.627 157.013 85.761 185.173 177.068 30.293 99.413 2.987 201.387-71.68 266.667-47.787 43.093-110.080 67.413-174.933 67.413zM237.613 569.604c-0.427 0-0.427 0-0.853 0-81.067 5.973-118.187 68.267-118.187 127.573s37.12 121.6 119.893 127.573h471.042c49.493-0.853 96.853-17.92 133.547-51.2 66.56-58.453 71.253-141.653 53.333-200.107-17.92-58.88-67.84-125.44-154.88-136.533-14.080-1.707-25.173-12.374-27.733-26.454-17.067-102.4-72.533-173.227-155.733-198.827-86.613-26.453-186.455-0.427-249.175 64.853-56.747 59.307-72.96 141.227-46.507 231.254 21.76 2.987 42.667 9.387 61.867 19.2 15.787 8.107 22.187 27.307 14.080 43.093s-27.307 22.187-43.093 14.080c-17.493-8.96-36.693-13.653-55.893-13.653-0.427-0.853-0.853-0.853-1.707-0.853z","M676.267 455.253c-11.947 0-23.040-6.4-28.587-17.92-8.107-15.788-1.28-34.988 14.507-43.094 26.453-13.227 55.893-20.48 84.907-20.907 17.067-0.427 32.427 13.653 32.427 31.573 0.427 17.493-13.653 32.428-31.573 32.428-19.627 0.427-39.68 5.12-57.6 14.080-4.693 2.56-9.387 3.84-14.080 3.84z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":338,"id":789,"name":"cloud","prevSize":32,"code":59887},"setIdx":2,"setId":2,"iconIdx":112},{"icon":{"paths":["M751.748 410.458h-224c-17.493 0-32-14.507-32-32s14.507-32 32-32h224c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M303.81 442.871c-8.107 0-16.213-2.987-22.613-9.387l-32-31.999c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l9.387 9.387 73.387-73.387c12.373-12.373 32.853-12.373 45.227 0 12.371 12.373 12.371 32.853 0 45.227l-96 95.999c-5.973 5.973-14.080 9.387-22.613 9.387z","M751.748 709.124h-224c-17.493 0-32-14.507-32-32s14.507-32 32-32h224c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M303.81 741.538c-8.107 0-16.213-2.987-22.613-9.387l-32-32c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l9.387 9.387 73.387-73.387c12.373-12.373 32.853-12.373 45.227 0 12.371 12.373 12.371 32.853 0 45.227l-96 96c-5.973 5.973-14.080 9.387-22.613 9.387z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["task-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":339,"id":788,"name":"task-square","prevSize":32,"code":59703},"setIdx":2,"setId":2,"iconIdx":113},{"icon":{"paths":["M305.911 970.671c-101.547 0-184.745-73.813-184.745-164.693v-87.040c0-17.493 14.507-32 32-32s32 14.507 32 32c0 53.333 51.625 93.44 120.745 93.44s120.748-40.107 120.748-93.44c0-17.493 14.506-32 31.999-32s32 14.507 32 32v87.040c0 90.88-82.773 164.693-184.747 164.693zM196.258 847.791c18.773 34.987 61.014 58.88 109.654 58.88s90.88-24.32 109.654-58.88c-30.293 18.347-67.84 29.013-109.654 29.013s-79.36-10.667-109.654-29.013z","M305.911 759.462c-69.973 0-132.692-32-163.839-82.773-13.653-22.187-20.906-48.213-20.906-74.667 0-44.8 19.626-86.613 55.466-117.76 69.12-60.586 188.159-60.584 257.705-0.422 35.84 31.573 55.893 73.382 55.893 118.182 0 26.453-7.253 52.48-20.907 74.667-30.72 50.773-93.44 82.773-163.413 82.773zM305.911 501.329c-33.28 0-63.999 11.093-87.039 31.147-21.76 18.773-33.706 43.52-33.706 69.547 0 14.933 3.838 28.591 11.518 41.391 19.627 32.427 61.44 52.476 109.227 52.476s89.6-20.049 108.8-52.049c7.68-12.373 11.521-26.458 11.521-41.391 0-26.027-11.946-50.773-33.706-69.973-22.613-20.053-53.335-31.147-86.615-31.147z","M305.911 876.8c-105.387 0-184.745-67.84-184.745-157.44v-117.333c0-90.88 82.772-164.693 184.745-164.693 48.213 0 94.294 16.64 128.853 46.507 35.84 31.573 55.893 73.387 55.893 118.187v117.333c0 89.6-79.36 157.44-184.747 157.44zM305.911 501.333c-66.56 0-120.745 45.227-120.745 100.693v117.333c0 53.333 51.625 93.44 120.745 93.44s120.748-40.107 120.748-93.44v-117.333c0-26.027-11.946-50.773-33.706-69.973-23.040-19.627-53.762-30.72-87.042-30.72z","M812.369 631.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.333-22.187 51.627-34.56 83.627-34.56h89.173c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.907zM894.716 456.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.133 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M682.675 906.667h-106.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h106.667c110.080 0 181.333-71.253 181.333-181.333v-29.867h-51.627c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.391-69.973 34.991-95.147 21.333-22.186 51.622-34.56 83.622-34.56h56.747v-29.867c0-99.84-58.449-168.534-153.169-179.628-10.24-1.707-19.204-1.706-28.164-1.706h-383.999c-10.24 0-20.054 0.853-29.867 2.133-93.867 11.947-151.466 80.214-151.466 179.2v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-131.413 81.068-226.56 206.935-242.346 11.52-1.707 24.745-2.987 38.398-2.987h383.999c10.24 0 23.467 0.427 37.12 2.56 125.867 14.507 208.213 110.080 208.213 242.773v61.867c0 17.493-14.507 32-32 32h-88.747c-14.933 0-28.582 5.547-38.396 15.787-12.373 11.947-18.351 28.16-16.644 44.373 2.133 28.16 29.444 50.773 60.164 50.773h84.049c17.493 0 32 14.507 32 32v61.867c0 146.773-98.56 245.333-245.333 245.333z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-money"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":340,"id":787,"name":"wallet-money","prevSize":32,"code":59888},"setIdx":2,"setId":2,"iconIdx":114},{"icon":{"paths":["M512 923.738c-9.387 0-23.467-0.853-36.693-5.547-162.987-55.893-421.973-253.867-421.973-547.412 0-149.333 120.747-270.508 269.227-270.508 72.107 0 139.52 28.161 189.44 78.508 49.92-50.347 117.333-78.508 189.44-78.508 148.48 0 269.227 121.174 269.227 270.508 0 51.627-7.68 102.399-23.040 151.039-5.12 16.64-23.467 26.453-40.107 20.907-17.067-5.12-26.027-23.462-20.907-40.102 13.227-42.24 20.053-86.616 20.053-131.416 0-113.92-92.16-206.508-205.227-206.508-64.853 0-125.013 30.293-163.84 82.346-11.947 16.213-39.253 16.213-51.2 0-39.253-52.48-98.987-82.346-163.84-82.346-113.067 0-205.227 92.588-205.227 206.508 0 291.839 280.32 453.545 378.88 487.252 2.56 0.853 8.533 2.133 15.787 2.133 17.493 0 32 14.507 32 32s-14.507 31.147-32 31.147z","M674.97 970.671c-16.213 0-31.573-5.973-42.667-17.067-13.227-13.227-19.2-32.427-16.213-52.48l8.107-57.6c2.133-14.933 11.093-32.853 21.76-43.52l151.040-151.040c20.48-20.48 40.533-31.147 62.293-33.28 26.88-2.56 52.907 8.533 77.653 33.28s35.84 50.773 33.28 77.653c-2.133 21.333-13.227 41.813-33.28 62.293l-151.040 151.040c-10.667 10.667-28.16 19.627-43.093 21.76l-57.6 8.107c-3.84 0.427-6.827 0.853-10.24 0.853zM866.543 679.258c-0.427 0-0.853 0-1.28 0-5.973 0.427-14.080 5.547-23.040 14.933l-151.040 151.040c-1.28 1.28-3.413 5.547-3.413 7.253l-7.68 53.333 53.333-7.68c1.707-0.427 5.973-2.56 7.253-3.84l151.040-151.040c8.96-8.96 14.507-17.067 14.933-23.040 0.853-8.533-7.68-18.773-14.933-26.027-6.827-6.827-16.64-14.933-25.173-14.933z","M892.612 820.058c-2.987 0-5.973-0.427-8.533-1.28-56.32-15.787-101.12-60.587-116.907-116.907-4.693-17.067 5.12-34.56 22.187-39.253s34.56 5.12 39.68 22.187c9.813 34.987 37.547 62.72 72.533 72.533 17.067 4.693 26.88 22.613 22.187 39.253-4.267 14.080-17.067 23.467-31.147 23.467z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-edit"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":341,"id":786,"name":"heart-edit","prevSize":32,"code":59704},"setIdx":2,"setId":2,"iconIdx":115},{"icon":{"paths":["M597.333 288h-170.667c-40.96 0-117.333 0-117.333-117.333s76.373-117.333 117.333-117.333h170.667c40.96 0 117.333 0 117.333 117.333 0 40.96 0 117.333-117.333 117.333zM426.667 117.333c-42.24 0-53.333 0-53.333 53.333s11.093 53.333 53.333 53.333h170.667c53.333 0 53.333-11.093 53.333-53.333 0-53.333-11.093-53.333-53.333-53.333h-170.667z","M597.333 970.675h-213.333c-239.787 0-288-110.080-288-288v-256c0-194.56 70.4-277.76 243.627-286.72 17.067-0.853 32.853 12.373 33.707 30.293s-12.8 32.427-30.293 33.28c-121.173 6.827-183.040 43.093-183.040 223.146v256c0 157.867 31.147 224 224 224h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896.038 671.996c-17.493 0-32-14.507-32-32v-213.332c0-180.053-61.867-216.32-183.040-223.147-17.493-0.853-31.147-16.213-30.293-33.707s16.64-31.147 33.707-30.293c173.227 9.387 243.627 92.587 243.627 286.72v213.332c0 17.92-14.507 32.427-32 32.427z","M896 970.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h96v-96c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M894.272 968.956c-8.107 0-16.213-2.987-22.613-9.387l-254.293-254.293c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l254.293 254.293c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard-import"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":342,"id":785,"name":"clipboard-import","prevSize":32,"code":59889},"setIdx":2,"setId":2,"iconIdx":116},{"icon":{"paths":["M391.226 664.751c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l241.494-241.493c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-241.495 241.493c-5.973 6.4-14.507 9.387-22.613 9.387z","M632.721 664.751c-8.107 0-16.213-2.987-22.613-9.387l-241.494-241.493c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.226 0l241.495 241.493c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["close-square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":343,"id":784,"name":"close-square","prevSize":32,"code":59890},"setIdx":2,"setId":2,"iconIdx":117},{"icon":{"paths":["M449.69 936.107c-9.813 0-19.204-4.267-25.603-12.8l-43.094-57.6c-8.96-11.947-20.905-18.773-33.705-19.627s-25.601 5.12-35.841 15.787c-61.867 66.133-108.8 60.587-131.413 52.053-23.040-8.96-61.867-38.4-61.867-133.12v-480.426c0-189.44 54.613-247.040 233.387-247.040h322.136c178.773 0 233.387 57.6 233.387 247.040v181.76c0 17.493-14.507 32-32 32s-32-14.507-32-32v-181.76c0-154.027-26.88-183.040-169.387-183.040h-322.136c-142.507 0-169.387 29.014-169.387 183.040v480.426c0 44.8 11.093 69.547 21.333 73.387 7.68 2.987 28.588-1.28 61.014-35.84 23.467-24.747 54.186-37.973 86.186-36.267 31.573 1.707 61.44 18.347 81.492 45.227l43.52 57.6c10.667 14.080 7.68 34.133-6.4 44.8-6.4 4.693-13.222 6.4-19.622 6.4z","M776.533 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM776.533 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M938.645 970.662c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M682.667 330.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 501.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-search"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":344,"id":783,"name":"receipt-search","prevSize":32,"code":59891},"setIdx":2,"setId":2,"iconIdx":118},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M725.333 736h-132.267c-12.8 0-24.32-7.253-29.44-19.2s-2.987-25.173 5.547-34.56l69.12-76.373c28.587-32 44.8-72.533 44.8-114.347 0-42.667-17.493-82.773-49.493-113.067s-76.373-47.787-121.6-47.787c-45.227 0-89.599 17.493-121.599 47.787s-49.495 70.4-49.495 113.067c0 41.813 15.786 82.347 44.8 114.347l69.121 76.373c8.533 9.387 10.667 23.040 5.547 34.56s-16.64 19.2-29.44 19.2h-132.267c-17.493 0-32-14.507-32-32s14.507-32 32-32h60.159l-20.906-23.040c-39.253-43.52-61.013-99.413-61.013-157.44 0-59.307 25.174-117.759 69.547-159.572 44.373-42.24 103.253-65.281 165.547-65.281s121.173 23.041 165.547 65.281c43.947 41.813 69.547 100.265 69.547 159.572 0 57.6-21.76 113.493-61.013 157.44l-20.907 23.040h60.16c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["omega-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":345,"id":782,"name":"omega-circle","prevSize":32,"code":59892},"setIdx":2,"setId":2,"iconIdx":119},{"icon":{"paths":["M517.141 577.28c-0.853 0-2.133 0-2.987 0-1.28 0-2.987 0-4.267 0-96.855-2.987-169.388-78.507-169.388-171.521 0-94.72 77.227-171.947 171.948-171.947 94.72 0 171.947 77.227 171.947 171.947-0.427 93.441-73.387 168.534-165.973 171.521-0.853 0-0.853 0-1.28 0zM512.021 297.386c-59.733 0-107.948 48.64-107.948 107.947 0 58.454 45.655 105.814 103.681 107.948 1.28-0.427 5.547-0.427 9.813 0 57.173-2.987 101.973-49.92 102.4-107.948 0-59.307-48.213-107.947-107.947-107.947z","M512.034 970.671c-114.773 0-224.426-42.667-309.333-120.32-7.68-6.827-11.093-17.067-10.24-26.88 5.547-50.773 37.12-98.133 89.6-133.12 127.147-84.48 333.226-84.48 459.946 0 52.48 35.413 84.053 82.347 89.6 133.12 1.28 10.24-2.56 20.053-10.24 26.88-84.907 77.653-194.56 120.32-309.333 120.32zM259.448 814.938c70.827 59.307 160 91.733 252.586 91.733s181.76-32.427 252.587-91.733c-7.68-26.027-28.16-51.2-58.453-71.68-104.96-69.973-282.88-69.973-388.693 0-30.293 20.48-50.347 45.653-58.027 71.68z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-circle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":346,"id":781,"name":"profile-circle","prevSize":32,"code":59893},"setIdx":2,"setId":2,"iconIdx":120},{"icon":{"paths":["M938.667 416c-17.493 0-32-14.507-32-32v-85.333c0-110.080-71.253-181.333-181.333-181.333h-426.667c-110.080 0-181.333 71.253-181.333 181.333v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-146.773 98.56-245.333 245.333-245.333h426.667c146.773 0 245.333 98.56 245.333 245.333v85.333c0 17.493-14.507 32-32 32z","M725.333 970.667h-426.667c-146.773 0-245.333-98.56-245.333-245.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 110.080 71.253 181.333 181.333 181.333h426.667c110.080 0 181.333-71.253 181.333-181.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 146.773-98.56 245.333-245.333 245.333z","M938.667 544h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scanner"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":347,"id":780,"name":"scanner","prevSize":32,"code":59894},"setIdx":2,"setId":2,"iconIdx":121},{"icon":{"paths":["M592.218 878.511c-33.707 0-70.827-11.947-107.947-35.413l-124.588-78.080c-8.533-5.12-18.347-8.107-28.16-8.107h-61.44c-103.253 0-160-56.747-160-160v-170.666c0-103.253 56.747-160 160-160h61.013c9.813 0 19.627-2.987 28.16-8.107l124.588-78.080c62.293-38.827 122.88-46.080 170.667-19.627s73.813 81.493 73.813 155.307v391.253c0 73.387-26.453 128.853-73.813 155.307-18.773 11.093-39.68 16.213-62.293 16.213zM270.083 330.671c-67.413 0-96 28.587-96 96v170.667c0 67.413 28.587 96 96 96h61.013c22.187 0 43.52 5.973 62.293 17.92l124.588 78.080c41.387 25.6 79.787 32.427 105.813 17.92s40.96-50.773 40.96-98.987v-392.106c0-48.64-14.933-84.907-40.96-98.987-26.027-14.507-64.427-8.107-105.813 17.92l-124.588 77.653c-18.773 11.947-40.107 17.92-62.293 17.92h-61.013z","M824.764 714.658c-6.827 0-13.227-2.133-19.2-6.4-14.080-10.667-17.067-30.72-6.4-44.8 66.987-89.173 66.987-213.76 0-302.934-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.68 44.8 6.4c84.053 111.788 84.053 267.948 0 379.734-5.973 8.533-15.787 12.8-25.6 12.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-low"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":348,"id":779,"name":"volume-low","prevSize":32,"code":59895},"setIdx":2,"setId":2,"iconIdx":122},{"icon":{"paths":["M682.667 970.667h-554.667c-40.96 0-74.667-33.707-74.667-74.667v-554.667c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v341.333c0 188.587-99.413 288-288 288zM341.333 117.333c-152.747 0-224 71.253-224 224v554.667c0 5.973 4.693 10.667 10.667 10.667h554.667c152.747 0 224-71.253 224-224v-341.333c0-152.747-71.253-224-224-224h-341.333z","M661.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-minus"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":349,"id":778,"name":"message-minus","prevSize":32,"code":59896},"setIdx":2,"setId":2,"iconIdx":123},{"icon":{"paths":["M714.231 835.84h-404.054c-33.707 0-58.027-1.28-78.934-4.267-148.053-16.213-177.493-104.96-177.493-252.16v-269.653c0-147.2 29.013-235.948 178.347-252.161 20.48-2.987 44.8-4.266 78.080-4.266h404.054c33.28 0 57.6 1.279 78.933 4.266 148.48 16.213 177.493 104.961 177.493 252.161v269.653c0 147.2-29.013 235.947-178.347 252.16-20.053 2.987-44.373 4.267-78.080 4.267zM309.75 117.333c-30.293 0-52.053 1.281-69.973 3.841-92.16 10.24-122.453 38.826-122.453 189.013v269.652c0 149.76 30.294 178.773 121.6 188.587 18.773 2.56 40.533 3.84 71.253 3.84h404.054c30.72 0 52.053-1.28 69.973-3.84 92.16-10.24 122.453-38.827 122.453-189.013v-269.653c0-149.76-30.293-178.772-121.6-188.586-19.2-2.56-40.533-3.841-71.253-3.841h-404.055z","M736.431 386.99h-157.013c-17.493 0-32-14.507-32-32s14.507-32 32-32h157.013c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M426.667 397.656c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M292.25 397.656c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667h0.426c23.467 0 42.667 19.2 42.667 42.667s-19.626 42.667-43.093 42.667z","M736.435 634.022h-448.425c-17.493 0-32.427-14.507-32.427-32s14.080-32 31.573-32h449.279c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M725.333 970.667h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["keyboard-open"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":350,"id":777,"name":"keyboard-open","prevSize":32,"code":59897},"setIdx":2,"setId":2,"iconIdx":124},{"icon":{"paths":["M315.307 750.507c-8.96 0-18.347-3.84-24.747-11.52-43.093-51.627-66.56-116.907-66.56-184.32v-213.333c0-158.72 129.28-288 288-288 132.267 0 247.040 89.6 279.467 217.6 4.267 17.067-5.973 34.56-23.040 38.827-16.64 4.267-34.56-5.973-38.827-23.040-25.6-99.84-114.773-169.387-217.6-169.387-123.307 0-224 100.267-224 224v213.333c0 52.48 18.347 103.253 51.627 143.36 11.52 13.653 9.387 33.707-4.267 45.227-5.547 4.693-12.8 7.253-20.053 7.253z","M511.991 842.667c-34.56 0-68.267-5.973-99.838-17.92-16.64-5.973-25.173-24.747-18.773-40.96 5.973-16.64 24.747-25.173 40.958-18.773 24.747 9.387 51.2 14.080 77.653 14.080 123.307 0 224-100.267 224-224v-129.281c0-17.493 14.507-32 32-32s32 14.507 32 32v128.854c0 158.72-129.28 288-288 288z","M511.974 970.675c-105.813 0-206.506-39.68-283.733-111.787-12.8-11.947-13.653-32.427-1.707-45.227s32.427-13.653 45.227-1.707c65.28 61.013 150.613 94.293 239.786 94.293 194.133 0 352-157.867 352-352v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0.427 229.973-186.027 416.427-415.573 416.427z","M106.643 970.249c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l810.669-810.668c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-810.669 810.668c-6.4 6.4-14.507 9.387-22.613 9.387z","M492.834 266.657c-17.493 0-32-14.507-32-32v-138.24c0-17.493 14.507-32 32-32s32 14.507 32 32v138.24c0 17.92-14.507 32-32 32z","M362.667 352c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":351,"id":776,"name":"microphone-slash","prevSize":32,"code":59898},"setIdx":2,"setId":2,"iconIdx":125},{"icon":{"paths":["M661.333 970.667h-298.667c-158.293 0-245.333-87.040-245.333-245.333v-426.667c0-158.293 87.040-245.333 245.333-245.333h298.667c155.733 0 245.333 89.6 245.333 245.333v42.667c0 40.96-33.707 74.667-74.667 74.667-5.973 0-10.667 4.693-10.667 10.667v92.587c0 14.080 5.547 27.733 15.787 37.547l35.413 35.413c22.187 22.187 34.56 51.627 34.56 82.773v50.347c-0.427 155.733-90.027 245.333-245.76 245.333zM362.667 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h298.667c120.32 0 181.333-61.013 181.333-181.333v-49.92c0-14.080-5.547-27.733-15.787-37.547l-35.413-35.413c-22.187-22.187-34.56-51.627-34.56-82.773v-93.013c0-40.96 33.707-74.667 74.667-74.667 5.973 0 10.667-4.693 10.667-10.667v-42.667c0-120.32-61.013-181.333-181.333-181.333h-298.24z","M683.115 969.387c-17.493 0-32-14.080-32-31.573l-1.28-127.573c0-29.44-24.32-52.907-53.333-52.907h-170.668c-14.080 0-27.733 5.547-37.973 15.787-9.813 9.813-15.36 23.467-15.36 37.547l0.427 126.72c0 17.493-14.080 32-32 32-17.493 0-32-14.080-32-32l-0.427-126.72c0-31.573 11.947-61.013 34.133-83.2s51.627-34.56 83.2-34.56h171.095c64.427 0 116.907 52.48 117.333 116.48l1.28 127.147c0 18.347-14.507 32.853-32.427 32.853 0.427 0 0 0 0 0z","M596.041 363.948h-255.999c-17.493 0-32-14.507-32-32s14.507-32 32-32h255.999c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ram"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":352,"id":775,"name":"ram","prevSize":32,"code":59899},"setIdx":2,"setId":2,"iconIdx":126},{"icon":{"paths":["M853.333 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM853.333 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M853.333 288c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM853.333 117.333c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M853.333 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM853.333 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M170.667 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM170.667 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M768 544h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 885.333h-170.667c-103.253 0-160-56.747-160-160v-426.667c0-103.253 56.747-160 160-160h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-67.413 0-96 28.587-96 96v426.667c0 67.413 28.587 96 96 96h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["data"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":353,"id":774,"name":"data","prevSize":32,"code":59900},"setIdx":2,"setId":2,"iconIdx":127},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 970.667h-768c-17.493 0-32-14.507-32-32v-682.667c0-128.853 73.813-202.667 202.667-202.667h426.667c128.853 0 202.667 73.813 202.667 202.667v682.667c0 17.493-14.507 32-32 32zM160 906.667h704v-650.667c0-94.72-43.947-138.667-138.667-138.667h-426.667c-94.72 0-138.667 43.947-138.667 138.667v650.667z","M426.667 736h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 736h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 544h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 544h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 352h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 352h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["buliding"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":354,"id":773,"name":"buliding","prevSize":32,"code":59901},"setIdx":2,"setId":2,"iconIdx":128},{"icon":{"paths":["M746.667 970.667h-597.333c-17.493 0-32-14.507-32-32v-725.333c0-95.573 64.427-160 160-160h341.333c95.573 0 160 64.427 160 160v725.333c0 17.493-14.507 32-32 32zM181.333 906.667h533.333v-693.333c0-60.16-35.84-96-96-96h-341.333c-60.16 0-96 35.84-96 96v693.333z","M810.667 970.667h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M538.035 458.667h-180.479c-69.547 0-112.64-43.094-112.64-112.64v-52.48c0-69.547 43.093-112.64 112.64-112.64h180.479c69.547 0 112.64 43.093 112.64 112.64v52.48c0 69.547-43.093 112.64-112.64 112.64zM357.983 245.332c-34.56 0-48.64 14.080-48.64 48.64v52.48c0 34.56 14.080 48.64 48.64 48.64h180.479c34.56 0 48.64-14.080 48.64-48.64v-52.48c0-34.56-14.080-48.64-48.64-48.64h-180.479z","M405.333 586.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M746.667 715.089c-17.493 0-32-14.080-32-32 0-17.493 14.080-32 32-32l160-0.427v-204.373l-67.84-33.706c-15.787-8.107-22.187-27.306-14.507-43.093 8.107-15.787 27.307-22.187 43.093-14.507l85.333 42.667c10.667 5.547 17.493 16.64 17.493 28.587v255.999c0 17.493-14.080 32-32 32l-191.573 0.853z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gas-station"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":355,"id":772,"name":"gas-station","prevSize":32,"code":59902},"setIdx":2,"setId":2,"iconIdx":129},{"icon":{"paths":["M408.297 802.991c-8.107 0-16.213-2.987-22.613-9.387l-258.987-258.987c-12.373-12.373-12.373-32.853 0-45.227l258.987-258.986c12.373-12.373 32.853-12.373 45.229 0 12.373 12.373 12.373 32.853 0 45.227l-236.375 236.372 236.375 236.373c12.373 12.373 12.373 32.853 0 45.227-5.975 6.4-14.509 9.387-22.615 9.387z","M874.662 544h-718.079c-17.493 0-32-14.507-32-32s14.507-32 32-32h718.079c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-left"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":356,"id":771,"name":"arrow-left","prevSize":32,"code":59903},"setIdx":2,"setId":2,"iconIdx":130},{"icon":{"paths":["M512.017 590.929c-5.547 0-11.093-1.28-15.787-4.267-15.36-8.96-20.48-28.587-11.947-43.52l36.267-63.147h-35.84c-21.333 0-38.827-9.387-48.213-25.173-9.387-16.213-8.533-35.84 2.133-54.613l45.653-79.36c8.96-15.36 28.587-20.48 43.52-11.947 15.36 8.96 20.48 28.587 11.947 43.52l-36.267 63.573h35.84c21.333 0 38.827 9.387 48.213 25.173 9.387 16.213 8.533 35.84-2.133 54.613l-45.653 79.36c-5.973 10.24-16.64 15.787-27.733 15.787z","M630.191 842.658h-235.092c-18.773 0-42.667-2.133-58.453-18.347-15.36-15.787-14.933-35.413-14.507-48.64v-37.973c-107.52-71.68-178.347-196.267-178.347-314.88 0-112.213 50.347-217.173 137.813-287.573s202.239-96.853 314.452-72.107c106.667 23.467 198.827 94.72 246.613 190.72 92.587 186.453 3.413 388.267-139.093 484.267v32c0.427 12.373 0.853 34.987-16.64 52.907-13.227 12.8-32 19.627-56.747 19.627zM385.712 778.231c2.133 0 5.12 0.427 8.96 0.427h235.519c4.267 0 7.253-0.427 8.96-0.853 0-1.28 0-2.987 0-4.267v-53.76c0-11.093 5.973-21.76 15.36-27.307 126.293-76.373 209.92-250.88 130.133-410.88-39.253-78.933-115.2-137.387-203.093-156.587-93.013-20.48-188.159 1.28-260.692 59.733s-113.92 145.067-113.92 238.080c0 118.613 81.92 221.013 162.987 270.080 9.813 5.973 15.36 16.213 15.36 27.307v57.6c0.427 0 0.427 0 0.427 0.427z","M661.346 970.662c-2.987 0-5.973-0.427-8.96-1.28-92.16-26.453-189.013-26.453-281.175 0-17.067 4.693-34.56-5.12-39.68-22.187s5.12-34.56 22.187-39.68c103.255-29.44 212.909-29.44 316.162 0 17.067 4.693 26.88 22.613 22.187 39.68-3.84 14.507-16.64 23.467-30.72 23.467z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lamp-charge"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":357,"id":770,"name":"lamp-charge","prevSize":32,"code":59705},"setIdx":2,"setId":2,"iconIdx":131},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M640 970.667h-256c-239.787 0-288-113.067-288-295.68v-263.253c0-202.24 68.267-284.587 243.627-294.4h343.040c0.427 0 1.28 0 1.707 0 175.36 9.813 243.627 92.16 243.627 294.4v263.253c0 182.613-48.213 295.68-288 295.68zM341.333 181.333c-119.467 6.827-181.333 44.373-181.333 230.4v263.253c0 163.413 31.147 231.68 224 231.68h256c192.853 0 224-68.267 224-231.68v-263.253c0-185.6-61.44-223.573-182.187-230.4h-340.48z","M885.333 782.938h-746.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h746.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 352c-52.48 0-96.853 28.587-96.853 84.053 0 26.453 12.373 46.507 31.147 59.307-26.027 15.36-40.96 40.107-40.96 69.12 0 52.907 40.533 85.76 106.667 85.76 65.707 0 106.667-32.853 106.667-85.76 0-29.013-14.933-54.187-41.387-69.12 19.2-13.227 31.147-32.853 31.147-59.307 0-55.467-43.947-84.053-96.427-84.053zM512 473.173c-22.187 0-38.4-13.227-38.4-34.133 0-21.333 16.213-33.707 38.4-33.707s38.4 12.373 38.4 33.707c0 20.907-16.213 34.133-38.4 34.133zM512 597.333c-28.16 0-48.64-14.080-48.64-39.68s20.48-39.253 48.64-39.253c28.16 0 48.64 14.080 48.64 39.253 0 25.6-20.48 39.68-48.64 39.68z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":358,"id":769,"name":"calendar","prevSize":32,"code":59904},"setIdx":2,"setId":2,"iconIdx":132},{"icon":{"paths":["M183.467 849.92c-7.253 0-14.507-2.56-20.48-7.253-43.093-35.413-66.987-92.16-66.987-160v-341.333c0-145.92 56.747-202.667 202.667-202.667h256c87.040 0 178.347 16.213 197.973 137.813 2.987 17.493-8.96 33.707-26.453 36.693s-33.707-8.96-36.693-26.453c-8.96-55.467-32.427-84.053-134.827-84.053h-256c-110.080 0-138.667 28.587-138.667 138.667v341.333c0 27.733 5.547 79.36 43.52 110.507 13.653 11.093 15.787 31.573 4.267 45.227-5.973 7.68-15.36 11.52-24.32 11.52z","M554.667 885.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c110.080 0 138.667-28.587 138.667-138.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 145.92-56.747 202.667-202.667 202.667z","M887.479 769.707c-18.347 0-40.96-5.973-67.84-24.747l-112.64-78.933c-14.507-10.24-17.92-30.293-7.68-44.373 10.24-14.507 29.867-17.92 44.373-7.68l112.64 78.933c18.773 13.227 32.427 14.507 37.973 11.52s12.373-14.507 12.373-37.547v-368.213c0-17.493 14.507-32 32-32s32 14.507 32 32v367.787c0 61.013-29.44 85.333-46.933 94.293-8.107 4.267-20.48 8.96-36.267 8.96z","M86.227 978.769c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.332-853.334c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.332 853.334c-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":359,"id":768,"name":"video-slash","prevSize":32,"code":59905},"setIdx":2,"setId":2,"iconIdx":133},{"icon":{"paths":["M384.403 906.675c-8.107 0-16.213-2.987-22.613-9.387l-213.76-213.76c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l213.76 213.76c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M384.417 906.667c-17.493 0-32-14.507-32-32v-725.333c0-17.493 14.507-32 32-32s32 14.507 32 32v725.333c0 17.493-14.507 32-32 32z","M853.739 395.091c-8.107 0-16.213-2.987-22.613-9.387l-213.76-213.76c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l213.76 213.76c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M639.582 906.667c-17.493 0-32-14.507-32-32v-725.333c0-17.493 14.507-32 32-32s32 14.507 32 32v725.333c0 17.493-14.080 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-swap"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":360,"id":767,"name":"arrow-swap","prevSize":32,"code":59706},"setIdx":2,"setId":2,"iconIdx":134},{"icon":{"paths":["M512 672c-176.64 0-320-138.667-320-309.333s143.36-309.333 320-309.333c176.64 0 320 138.667 320 309.333s-143.36 309.333-320 309.333zM512 117.333c-141.227 0-256 110.080-256 245.333s114.773 245.333 256 245.333c141.227 0 256-110.080 256-245.333s-114.773-245.333-256-245.333z","M666.453 970.671c-11.947 0-23.893-2.987-36.267-8.533l-114.773-54.187c-1.28-0.427-5.973-0.427-7.68 0l-113.919 53.76c-25.173 11.947-51.627 11.52-72.107-1.707-21.333-13.653-33.706-38.827-33.28-68.693l0.426-314.88c0-17.493 13.653-32.853 32-32 17.493 0 32 14.507 32 32l-0.426 314.88c0 9.387 2.56 14.080 3.84 14.507 0.853 0.427 4.693 0.853 10.667-2.133l114.346-54.187c18.347-8.533 43.52-8.533 61.867 0l114.773 54.187c5.973 2.987 9.813 2.56 10.667 2.133 1.28-0.853 3.84-5.547 3.84-14.507v-322.56c0-17.493 14.507-32 32-32s32 14.507 32 32v322.56c0 30.293-12.373 55.040-33.707 68.693-11.093 7.253-23.467 10.667-36.267 10.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["medal"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":361,"id":766,"name":"medal","prevSize":32,"code":59906},"setIdx":2,"setId":2,"iconIdx":135},{"icon":{"paths":["M348.996 715.511c-0.853 0-2.133 0-2.986 0-41.387-3.84-80.213-23.036-109.227-53.756-68.267-71.68-68.267-188.16 0-259.842l93.44-98.134c33.28-34.987 78.080-54.613 125.866-54.613s92.587 19.2 125.867 54.613c68.267 71.68 68.267 188.158 0 259.838l-46.507 49.067c-12.373 12.8-32.427 13.231-45.227 1.284-12.8-12.373-13.227-32.431-1.28-45.231l46.507-49.067c45.227-47.36 45.227-124.585 0-171.518-42.24-44.373-116.48-44.373-159.146 0l-93.44 98.131c-45.227 47.36-45.227 124.591 0 171.524 18.347 19.627 43.093 31.569 69.12 34.129 17.493 1.707 30.293 17.498 28.586 34.991-1.28 16.213-15.36 28.582-31.573 28.582z","M567.902 774.822c-47.787 0-92.587-19.2-125.867-54.613-68.268-71.68-68.268-188.16 0-259.84l46.507-49.066c12.373-12.8 32.427-13.228 45.227-1.281 12.8 12.373 13.222 32.428 1.276 45.228l-46.502 49.067c-45.227 47.36-45.227 124.587 0 171.52 42.24 44.373 116.476 44.8 159.142 0l93.444-98.133c45.227-47.36 45.227-124.587 0-171.52-18.347-19.627-43.093-31.573-69.12-34.133-17.493-1.707-30.293-17.494-28.587-34.987s17.062-30.719 34.982-28.586c41.387 4.267 80.218 23.039 109.231 53.759 68.267 71.68 68.267 188.16 0 259.84l-93.44 98.133c-33.707 35.413-78.507 54.613-126.293 54.613z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link-square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":362,"id":765,"name":"link-square","prevSize":32,"code":59907},"setIdx":2,"setId":2,"iconIdx":136},{"icon":{"paths":["M896 970.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 117.333h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 800c-17.493 0-32-14.507-32-32v-512c0-17.493 14.507-32 32-32s32 14.507 32 32v512c0 17.493-14.507 32-32 32z","M632.721 361.382c-8.107 0-16.213-2.987-22.613-9.387l-98.133-98.133-98.135 98.133c-12.373 12.373-32.853 12.373-45.226 0s-12.373-32.853 0-45.227l120.748-120.747c11.947-11.947 33.28-11.947 45.227 0l120.747 120.747c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M511.974 830.724c-8.533 0-16.64-3.413-22.613-9.387l-120.748-120.747c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.226 0l98.135 98.133 98.133-98.133c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-120.747 120.747c-5.973 5.973-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pharagraphspacing"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":363,"id":764,"name":"pharagraphspacing","prevSize":32,"code":59908},"setIdx":2,"setId":2,"iconIdx":137},{"icon":{"paths":["M556.8 693.342h-80.213c-56.746 0-103.253-47.787-103.253-106.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 23.467 17.493 42.667 39.253 42.667h80.213c16.64 0 29.867-14.933 29.867-33.28 0-23.040-6.4-26.453-20.907-31.573l-128.427-44.8c-27.307-9.813-64-29.44-64-92.16 0-53.332 42.24-97.279 93.867-97.279h80.213c56.747 0 103.253 47.787 103.253 106.665 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-23.465-17.493-42.665-39.253-42.665h-80.213c-16.64 0-29.867 14.933-29.867 33.279 0 23.040 6.4 26.453 20.907 31.573l128.427 44.8c27.307 9.813 64 29.44 64 92.16 0 53.76-42.24 97.28-93.867 97.28z","M512 736c-17.493 0-32-14.507-32-32v-384c0-17.493 14.507-32 32-32s32 14.507 32 32v384c0 17.493-14.507 32-32 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c17.493 0 32 14.507 32 32s-14.507 32-32 32c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 253.013-205.653 458.667-458.667 458.667z","M938.667 288c-17.493 0-32-14.507-32-32v-138.667h-138.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M725.312 330.664c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l213.333-213.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-213.333 213.333c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-send"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":364,"id":763,"name":"money-send","prevSize":32,"code":59909},"setIdx":2,"setId":2,"iconIdx":138},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M682.667 544h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 714.667c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32s32 14.507 32 32v341.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-circle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":365,"id":762,"name":"add-circle","prevSize":32,"code":59707},"setIdx":2,"setId":2,"iconIdx":139},{"icon":{"paths":["M466.79 966.404c-20.48 0-40.534-5.12-59.307-15.36-37.547-20.907-60.16-58.88-60.16-101.547v-226.133c0-21.333-14.080-53.333-27.307-69.547l-159.573-168.96c-26.88-26.88-47.36-72.96-47.36-107.52v-98.133c0-68.267 51.627-121.6 117.333-121.6h563.2c64.853 0 117.333 52.48 117.333 117.333v93.867c0 44.8-26.88 95.573-52.053 120.747l-184.747 163.413c-17.92 14.933-32 47.787-32 74.24v183.467c0 37.973-23.893 81.92-53.76 99.84l-58.88 37.973c-19.2 11.947-40.96 17.92-62.72 17.92zM230.417 121.604c-29.867 0-53.333 25.173-53.333 57.6v98.133c0 15.787 12.8 46.507 29.013 62.72l162.56 171.093c21.76 26.88 43.093 71.68 43.093 111.787v226.133c0 27.733 19.2 41.387 27.307 45.653 17.92 9.813 39.68 9.813 56.32-0.427l59.307-37.973c11.947-7.253 23.893-30.293 23.893-45.653v-183.467c0-45.653 22.187-96 54.187-122.88l182.613-161.707c14.507-14.507 32-49.067 32-74.24v-93.44c0-29.44-23.893-53.333-53.333-53.333h-563.627z","M255.986 458.667c-5.973 0-11.52-1.707-17.067-4.693-14.933-9.387-19.627-29.439-10.24-44.372l210.348-337.067c9.387-14.933 29.013-19.627 43.947-10.24s19.627 29.013 10.24 43.947l-210.348 337.066c-5.973 9.813-16.213 15.36-26.88 15.36z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":366,"id":761,"name":"filter","prevSize":32,"code":59708},"setIdx":2,"setId":2,"iconIdx":140},{"icon":{"paths":["M511.974 567.462c-5.547 0-11.093-1.28-16.213-4.267l-376.748-218.027c-15.36-8.96-20.481-28.588-11.521-43.948s28.16-20.481 43.947-11.521l360.536 208.642 358.396-207.361c15.36-8.96 34.987-3.412 43.947 11.521 8.96 15.36 3.418 34.985-11.516 43.945l-374.187 216.748c-5.547 2.56-11.093 4.267-16.64 4.267z","M512 954.027c-17.493 0-32-14.507-32-32v-386.987c0-17.493 14.507-32 32-32s32 14.507 32 32v386.987c0 17.493-14.507 32-32 32z","M511.953 970.667c-37.547 0-75.093-8.107-104.107-24.747l-227.84-126.293c-61.867-34.133-110.506-116.48-110.506-187.307v-241.495c0-70.827 48.64-152.745 110.506-187.305l227.84-126.294c58.027-32.427 149.333-32.427 207.787 0l227.84 126.294c61.867 34.133 110.507 116.478 110.507 187.305v241.495c0 2.987 0 7.253-1.28 12.8-2.56 11.093-10.667 20.053-21.333 23.467s-22.613 1.28-31.147-6.4c-48.64-42.667-124.587-44.373-176.64-2.987-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 3.413 5.973 6.827 10.667 10.667 14.933 6.4 7.253 8.96 17.067 7.253 26.453s-7.68 17.92-16.213 22.187l-78.080 43.093c-28.587 17.493-65.707 25.6-103.253 25.6zM511.953 117.333c-26.453 0-53.333 5.547-72.533 16.214l-227.84 126.294c-41.387 23.040-77.226 84.051-77.226 130.985v241.495c0 46.933 36.266 108.373 77.226 130.987l227.84 126.293c38.827 21.76 106.667 21.76 145.493 0l47.787-26.453c-15.787-28.587-24.32-61.867-24.32-96 0-62.293 27.733-119.893 75.947-158.293 58.453-46.507 141.227-56.32 206.080-28.16v-190.292c0-46.933-36.267-108.374-77.227-130.987l-227.84-126.294c-20.053-10.24-46.933-15.787-73.387-15.787z","M810.667 970.667c-111.787 0-202.667-90.88-202.667-202.667 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 58.027-25.173 113.493-69.12 151.893-37.12 32.853-84.48 50.773-133.547 50.773zM810.667 629.333c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 76.373 62.293 138.667 138.667 138.667 33.28 0 65.707-12.373 91.733-34.56 29.867-26.453 46.933-64 46.933-104.107 0-76.373-62.293-138.667-138.667-138.667z","M767.996 842.667c-10.667 0-21.333-5.547-27.307-15.36-8.96-15.36-4.267-34.987 11.093-43.947l37.973-22.613v-46.080c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 11.093-5.973 21.76-15.36 27.307l-53.333 32c-5.973 3.413-11.52 4.693-17.067 4.693z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box-time"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":367,"id":760,"name":"box-time","prevSize":32,"code":59910},"setIdx":2,"setId":2,"iconIdx":141},{"icon":{"paths":["M682.675 1012.053c-11.52 0-22.187-6.4-27.733-16.213s-5.547-22.187 0.427-32l44.8-74.667c8.96-15.36 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.187-148.907 330.667-331.093 330.667z","M42.667 372.052c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.187 6.4 27.733 16.214s5.547 22.187-0.427 32l-44.8 74.667c-8.96 15.36-28.587 20.054-43.947 11.094s-20.053-28.585-11.093-43.945l11.52-19.201c-117.76 27.733-206.080 133.545-206.080 259.839 0.427 17.493-14.080 32-31.573 32z","M402.394 686.084h-119.894c-17.493 0-32-14.507-32-32v-96c0-17.493 14.507-32 32-32h119.894c42.667 0 80.213 37.547 80.213 80.213 0 43.52-36.267 79.787-80.213 79.787zM314.5 622.084h87.894c8.96 0 16.213-7.253 16.213-16.213 0-6.4-7.253-16.213-16.213-16.213h-87.894v32.427z","M419.387 782.084h-137.387c-17.493 0-32-14.507-32-32v-96c0-17.493 14.507-32 32-32h137.387c47.788 0 87.041 35.84 87.041 80.213s-38.827 79.787-87.041 79.787zM314.426 718.084h105.387c13.655 0 23.041-8.533 23.041-16.213s-9.387-16.213-23.041-16.213h-105.387v32.427z","M359.25 829.858c-17.493 0-32-14.507-32-32v-48.213c0-17.493 14.507-32 32-32s32 14.507 32 32v48.213c0 17.92-14.507 32-32 32z","M359.25 589.649c-17.493 0-32-14.507-32-32v-48.213c0-17.493 14.507-32 32-32s32 14.507 32 32v48.213c0 17.92-14.507 32-32 32z","M369.92 949.329c-162.987 0-295.253-132.689-295.253-295.249s132.693-295.257 295.253-295.257c7.68 0 14.507 0.428 22.187 0.854 144.64 11.093 261.547 127.999 272.213 271.785 0.427 9.387 0.853 15.791 0.853 22.618 0.427 162.56-132.267 295.249-295.253 295.249zM369.92 422.398c-127.573 0-231.253 103.677-231.253 231.251s103.68 231.253 231.253 231.253c127.573 0 231.68-103.68 231.68-231.253 0-5.547-0.427-11.093-0.853-16.64-8.533-114.347-100.267-205.653-212.907-214.186-5.547 0-11.52-0.425-17.92-0.425z","M654.089 665.6h-20.907c-16.64 0-30.72-12.8-32-29.44-8.533-113.067-99.84-204.373-212.909-212.908-16.64-1.28-29.44-15.36-29.44-32v-20.906c0-162.987 132.695-295.252 295.682-295.252s295.253 132.692 295.253 295.252c0 162.56-133.12 295.254-295.68 295.254zM422.407 363.094c120.322 21.76 216.748 117.76 238.508 238.506 124.587-3.84 224.427-106.24 224.427-231.254 0-127.573-103.68-231.252-231.253-231.252-125.44-0.427-227.842 99.413-231.682 224z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bitcoin-convert"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":368,"id":759,"name":"bitcoin-convert","prevSize":32,"code":59911},"setIdx":2,"setId":2,"iconIdx":142},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M312.751 650.24c-6.827 0-13.653-2.133-19.627-6.827-14.080-10.667-16.64-30.72-5.973-44.8l101.547-131.84c12.373-15.787 29.867-26.027 49.92-28.587 19.627-2.56 39.68 2.987 55.467 15.36l78.080 61.44c2.987 2.56 5.973 2.56 8.107 2.133 1.707 0 4.693-0.853 7.253-4.267l98.56-127.146c10.667-14.080 31.147-16.64 44.8-5.547 14.080 10.667 16.64 30.72 5.547 44.8l-98.56 127.146c-12.373 15.787-29.867 26.027-49.92 28.16-20.053 2.56-39.68-2.987-55.467-15.36l-78.080-61.44c-2.987-2.56-6.4-2.56-8.107-2.133-1.707 0-4.693 0.853-7.253 4.267l-101.546 131.84c-5.547 8.533-14.933 12.8-24.747 12.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["activity"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":369,"id":758,"name":"activity","prevSize":32,"code":59912},"setIdx":2,"setId":2,"iconIdx":143},{"icon":{"paths":["M689.933 461.218h-355.843c-36.693 0-64.852-14.507-77.652-39.251-12.8-25.173-7.681-56.32 13.652-85.76l177.919-249.173c31.573-45.227 96.853-45.227 128.853 0.427l177.92 248.746c21.333 29.44 26.453 60.587 13.653 85.76-13.653 24.745-41.809 39.251-78.502 39.251zM512.009 115.193c-3.84 0-8.107 3.414-11.947 8.534l-177.919 249.6c-8.533 11.52-8.96 18.346-8.533 19.627 0.427 0.853 6.4 4.266 20.906 4.266h355.839c14.080 0 20.058-3.84 20.911-4.693 0-0.853-0.431-7.68-8.538-19.2l-177.92-249.173c-4.693-5.973-8.96-8.96-12.8-8.96z","M750.494 800.004h-476.588c-61.013 0-85.334-29.44-94.294-46.933s-18.347-54.187 17.493-103.68l170.24-238.935c5.973-8.533 15.788-13.227 26.028-13.227h237.655c10.24 0 20.053 5.12 26.027 13.227l170.24 239.362c35.84 49.067 26.027 85.76 17.067 103.253s-32.853 46.933-93.867 46.933zM409.586 461.231l-160.854 225.707c-13.653 18.773-14.932 31.573-12.372 37.12 2.987 5.547 14.080 11.947 37.12 11.947h476.588c23.040 0 34.56-6.4 37.12-11.947 2.987-5.547 1.28-18.347-12.373-37.12l-160.853-226.133h-204.375v0.427z","M512 970.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tree"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":370,"id":757,"name":"tree","prevSize":32,"code":59913},"setIdx":2,"setId":2,"iconIdx":144},{"icon":{"paths":["M511.991 970.671c-10.24 0-20.476-1.28-30.289-4.267-221.442-61.013-381.869-267.951-381.869-492.378v-187.305c0-47.787 34.56-99.411 78.934-117.758l237.654-97.281c61.868-25.173 129.704-25.173 191.144 0l237.653 97.281c44.373 18.347 78.938 69.971 78.938 117.758v187.305c0 224-160.858 430.938-381.871 492.378-9.813 2.987-20.053 4.267-30.293 4.267zM511.991 117.336c-24.32 0-48.213 4.694-71.253 14.080l-237.651 97.279c-20.48 8.533-39.254 36.267-39.254 58.453v187.309c0 195.84 140.8 376.747 334.932 430.507 8.533 2.56 17.92 2.56 26.453 0 194.133-53.76 334.938-234.667 334.938-430.507v-187.309c0-22.187-18.778-49.92-39.258-58.453l-237.649-97.279c-23.040-9.387-46.938-14.080-71.258-14.080z","M512 565.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 394.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M512 693.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-safe"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":371,"id":756,"name":"security-safe","prevSize":32,"code":59914},"setIdx":2,"setId":2,"iconIdx":145},{"icon":{"paths":["M485.547 806.396c-14.080 0-28.16-3.413-40.96-10.667-26.027-14.507-41.813-40.96-41.813-70.827v-131.413c0-8.107-6.4-23.893-12.8-32l-92.587-97.28c-17.493-17.493-30.72-48.213-30.72-71.68v-56.747c0-47.36 35.84-84.053 81.493-84.053h327.253c44.8 0 81.493 36.693 81.493 81.493v54.613c0 29.867-17.067 62.72-34.133 79.787l-107.947 95.573c-6.827 5.973-14.080 20.907-14.080 33.28v106.667c0 26.88-16.213 56.747-37.973 69.547l-33.707 21.76c-13.227 8.107-28.16 11.947-43.52 11.947zM348.16 315.729c-10.24 0-17.493 8.533-17.493 20.053v56.747c0 5.547 5.973 20.053 12.8 26.88l94.72 99.84c14.507 18.347 28.587 47.787 28.587 74.24v131.413c0 8.533 5.547 13.227 8.96 14.933 4.693 2.56 12.373 4.267 19.2 0l34.133-22.187c3.413-2.56 7.68-11.093 7.68-15.36v-106.667c0-30.293 14.933-64 36.267-81.493l105.813-93.867c5.547-5.547 14.080-22.613 14.080-33.28v-53.76c0-9.387-8.107-17.493-17.493-17.493h-327.253z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":372,"id":755,"name":"filter-square","prevSize":32,"code":59709},"setIdx":2,"setId":2,"iconIdx":146},{"icon":{"paths":["M682.667 970.667h-298.667c-146.773 0-245.333-98.56-245.333-245.333v-426.667c0-146.773 98.56-245.333 245.333-245.333h298.667c146.773 0 245.333 98.56 245.333 245.333v426.667c0 146.773-98.56 245.333-245.333 245.333zM384 117.333c-110.080 0-181.333 71.253-181.333 181.333v426.667c0 110.080 71.253 181.333 181.333 181.333h298.667c110.080 0 181.333-71.253 181.333-181.333v-426.667c0-110.080-71.253-181.333-181.333-181.333h-298.667z","M896 672h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 544h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 437.333h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 330.667h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 831.996c-11.093 0-22.187-4.693-30.293-12.373-7.68-8.107-12.373-19.2-12.373-30.293 0-11.52 4.693-22.187 12.373-30.293 11.947-11.947 30.72-15.787 46.507-8.96 5.12 2.133 9.813 5.12 14.080 8.96 7.68 8.107 12.373 19.2 12.373 30.293s-4.693 22.187-12.373 30.293c-4.267 3.84-8.533 6.827-14.080 8.96-5.12 2.133-10.667 3.413-16.213 3.413z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["external-drive"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":373,"id":754,"name":"external-drive","prevSize":32,"code":59915},"setIdx":2,"setId":2,"iconIdx":147},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M294 948.48c-17.493 0-32-14.507-32-32v-808.959c0-17.493 14.507-32 32-32s32 14.080 32 32v808.959c0 17.92-14.507 32-32 32z","M720.666 948.48c-17.493 0-32-14.507-32-32v-808.959c0-17.493 14.507-32 32-32s32 14.507 32 32v808.959c0 17.92-14.507 32-32 32z","M293.933 329.396h-185.6c-17.493 0-32-14.507-32-32s14.507-32 32-32h185.6c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M293.943 544h-207.36c-17.493 0-32-14.507-32-32s14.507-32 32-32h207.36c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M293.993 756.062h-188.16c-17.493 0-32-14.507-32-32s14.507-32 32-32h188.16c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M933.935 329.396h-185.6c-17.493 0-32-14.507-32-32s14.507-32 32-32h185.6c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M933.943 544h-207.36c-17.493 0-32-14.507-32-32s14.507-32 32-32h207.36c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M724.083 544h-469.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h469.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M933.995 756.062h-188.16c-17.493 0-32-14.507-32-32s14.507-32 32-32h188.16c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-vertical"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":374,"id":753,"name":"video-vertical","prevSize":32,"code":59916},"setIdx":2,"setId":2,"iconIdx":148},{"icon":{"paths":["M549.547 890.031h-258.987c-151.467 0-205.227-106.24-205.227-205.227v-345.598c0-147.627 57.6-205.227 205.227-205.227h258.987c147.627 0 205.227 57.6 205.227 205.227v345.598c0 147.627-57.6 205.227-205.227 205.227zM290.56 198.833c-111.36 0-140.373 29.013-140.373 140.373v345.598c0 52.48 18.347 140.373 140.373 140.373h258.987c111.36 0 140.373-29.013 140.373-140.373v-345.598c0-111.36-29.013-140.373-140.373-140.373h-258.987z","M886.601 772.693c-18.347 0-41.813-5.973-68.693-24.747l-113.92-79.787c-8.533-5.973-13.653-15.787-13.653-26.453v-259.414c0-10.667 5.12-20.48 13.653-26.453l113.92-79.787c50.773-35.413 87.893-25.173 105.387-16.213 17.493 9.387 47.36 33.707 47.36 95.573v312.747c0 61.867-29.867 86.613-47.36 95.573-8.107 4.693-20.907 8.96-36.693 8.96zM754.761 624.64l100.267 69.973c19.2 13.227 32.853 14.507 38.4 11.52 5.973-2.987 12.373-14.933 12.373-37.973v-312.32c0-23.467-6.827-34.987-12.373-37.973s-19.2-1.707-38.4 11.52l-100.267 69.973v225.28z","M490.667 501.333c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM490.667 373.333c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":375,"id":752,"name":"video","prevSize":32,"code":59917},"setIdx":2,"setId":2,"iconIdx":149},{"icon":{"paths":["M645.585 813.231h-341.335c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.335c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.335-181.333-181.335h-469.335c-17.493 0-32-14.507-32-32s14.507-32 32-32h469.335c135.253 0 245.333 110.082 245.333 245.335s-110.080 245.333-245.333 245.333z","M274.37 493.222c-8.107 0-16.213-2.987-22.613-9.387l-109.227-109.228c-12.373-12.373-12.373-32.853 0-45.227l109.227-109.227c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-86.613 86.613 86.613 86.614c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["undo"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":376,"id":751,"name":"undo","prevSize":32,"code":59918},"setIdx":2,"setId":2,"iconIdx":150},{"icon":{"paths":["M309.76 805.965c-3.413 0-6.826-0.427-10.24-0.853-25.6-3.413-47.36-19.627-58.027-42.667l-53.76-118.191c-85.333-63.147-134.4-157.436-134.4-259.837 0-182.187 157.867-330.667 352-330.667 136.96 0 261.973 75.093 318.72 191.573 21.76 43.093 33.28 90.027 33.28 139.094 0 177.495-149.76 322.988-336.64 330.241l-53.76 64.853c-14.507 16.64-35.414 26.453-57.174 26.453zM405.333 117.323c-158.72 0-288 119.467-288 266.667 0 84.055 41.813 161.704 114.346 212.904 4.693 3.413 8.533 7.68 10.667 12.8l57.174 125.867c2.133 4.693 6.4 5.978 8.533 5.978 2.133 0.427 6.4-0.004 9.387-3.418l63.147-75.942c5.973-7.253 14.933-11.52 24.747-11.52 158.72 0 288-119.467 288-266.668 0-38.827-8.96-75.948-26.453-110.508-46.080-95.147-148.907-156.159-261.547-156.159z","M714.244 970.671c-22.187 0-42.667-9.813-57.173-26.88l-53.76-64.427c-103.253-4.267-200.534-51.627-262.828-128.427-9.813-11.947-9.386-29.013 0.427-40.533l39.68-47.787c5.973-7.253 14.933-11.52 24.747-11.52 158.721 0 288.001-119.467 288.001-266.666 0-38.827-8.96-75.948-26.453-110.508-5.547-11.093-4.267-24.32 3.413-34.133s20.48-14.081 32.427-11.521c157.867 36.267 267.947 168.108 267.947 320.854 0 102.4-49.067 196.693-134.4 259.84l-53.76 118.187c-11.093 23.893-32.853 40.107-58.88 43.093-2.987 0.427-6.4 0.427-9.387 0.427zM407.897 729.604c53.334 54.187 130.134 85.76 210.774 85.76 9.387 0 18.347 4.267 24.747 11.52l63.147 75.947c2.987 3.84 6.827 4.267 9.387 3.84 1.707 0 6.4-1.28 8.96-6.4l57.173-125.867c2.56-5.12 5.973-9.813 10.667-12.8 72.533-51.2 114.347-128.853 114.347-212.907 0-102.4-62.72-193.278-158.293-238.078 5.973 23.893 8.96 48.212 8.96 73.385 0 177.493-149.76 322.986-336.641 330.24l-13.227 15.36z","M512 416h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["messages-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":377,"id":750,"name":"messages-1","prevSize":32,"code":59919},"setIdx":2,"setId":2,"iconIdx":151},{"icon":{"paths":["M896 330.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 544h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 757.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sort"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":378,"id":749,"name":"sort","prevSize":32,"code":59920},"setIdx":2,"setId":2,"iconIdx":152},{"icon":{"paths":["M641.284 491.516c-10.24 0-20.48-5.12-26.453-14.080l-136.533-203.945c-4.693-7.253-6.4-15.787-4.693-23.893s6.4-15.787 13.653-20.48l241.493-161.707c18.773-12.8 41.387-17.066 63.573-12.8s41.387 17.067 54.187 35.84l77.653 115.626c26.027 38.827 15.787 91.734-23.467 117.76l-241.067 161.705c-5.973 4.267-11.947 5.973-18.347 5.973zM549.551 264.531l100.693 150.613 214.613-143.788c9.813-6.4 12.373-19.626 5.547-29.013l-77.653-115.626c-2.987-4.693-7.68-7.68-13.227-8.96s-11.093-0.001-15.787 2.986l-214.187 143.788z","M424.095 607.573c-10.24 0-20.48-5.12-26.453-14.080l-109.227-162.987c-9.813-14.506-5.973-34.56 8.96-44.373l203.945-136.532c7.253-4.693 15.787-6.401 23.893-4.694 8.533 1.707 15.787 6.4 20.48 13.654l109.227 162.987c9.813 14.505 5.973 34.559-8.96 44.372l-203.947 136.533c-5.547 3.413-11.947 5.12-17.919 5.12zM359.242 421.548l73.385 109.652 150.613-100.693-73.387-110.079-150.612 101.12z","M225.297 717.653c-23.893 0-47.787-11.52-62.293-33.28l-48.213-71.68c-11.093-16.64-14.933-36.267-11.093-55.893s14.933-36.267 31.573-47.36l168.533-112.64c14.507-9.813 34.56-5.972 44.374 8.961l95.573 142.505c9.813 14.507 5.973 34.56-8.96 44.373l-168.534 112.64c-12.373 8.107-26.88 12.373-40.96 12.373zM312.763 467.2l-141.653 94.72c-4.693 3.413-6.4 9.813-2.987 14.933l48.213 71.68c3.413 4.693 9.813 6.4 14.933 2.987l141.653-94.72-60.16-89.6z","M322.568 970.658c-4.267 0-8.96-0.853-13.226-2.987-16.213-7.253-23.040-26.449-15.787-42.236l191.574-418.133c7.253-16.213 26.453-23.044 42.24-15.791 16.213 7.253 23.040 26.458 15.787 42.244l-191.574 418.129c-5.547 11.947-17.067 18.773-29.013 18.773z","M701.44 970.667c-12.373 0-23.893-6.827-29.013-18.773l-189.44-418.133c-7.253-16.213 0-34.987 15.787-42.24s34.987 0 42.24 15.787l189.44 418.133c7.253 16.213 0 34.987-15.787 42.24-4.267 2.133-8.533 2.987-13.227 2.987z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microscope"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":379,"id":748,"name":"microscope","prevSize":32,"code":59921},"setIdx":2,"setId":2,"iconIdx":153},{"icon":{"paths":["M514.581 736c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M618.667 629.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h64c74.667 0 98.133 24.32 128 64l64 85.333c14.080 18.773 16.213 21.333 42.667 21.333h128c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 117.333c-152.32 0-181.333 29.013-181.333 181.333v426.667c0 152.32 29.013 181.333 181.333 181.333h426.667c152.32 0 181.333-29.013 181.333-181.333v-256c0-152.32-29.013-181.333-181.333-181.333h-128c-54.613 0-72.533-18.773-93.867-46.933l-64-85.333c-22.187-29.44-28.587-38.4-76.8-38.4h-64z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-add"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":380,"id":747,"name":"folder-add","prevSize":32,"code":59710},"setIdx":2,"setId":2,"iconIdx":154},{"icon":{"paths":["M409.599 799.996c-102.4 0-185.599-83.2-185.599-185.6 0-83.627 56.321-157.44 136.961-179.2 15.787-4.267 31.998 3.84 37.972 19.2 14.080 35.413 44.374 62.72 81.068 72.533 20.053 5.547 43.947 5.547 64 0 15.787-4.267 32.427 3.84 38.4 18.773 8.533 21.76 12.8 44.8 12.8 68.267 0 52.907-22.613 103.253-61.867 138.24-33.707 30.72-77.653 47.787-123.734 47.787zM353.706 506.449c-39.68 20.48-65.706 61.867-65.706 107.947 0 66.987 54.612 121.6 121.599 121.6 29.868 0 58.881-11.093 81.068-31.147 26.027-23.040 40.533-55.893 40.533-90.453 0-6.827-0.427-13.227-1.707-20.053-22.613 2.133-45.653 0-66.56-5.973-45.654-12.373-84.908-42.24-109.228-81.92z","M512.009 595.191c-17.067 0-33.707-2.133-49.067-6.4-55.895-15.36-101.973-56.747-123.306-110.507-8.533-21.76-12.802-44.8-12.802-68.268 0-102.4 83.201-185.6 185.602-185.6s185.6 83.2 185.6 185.6c0 23.468-4.267 46.508-12.8 68.268-21.333 54.187-67.84 95.573-123.733 110.507-15.787 4.267-32.427 6.4-49.493 6.4zM512.009 287.99c-66.987 0-121.6 54.613-121.6 121.6 0 15.36 2.985 30.721 8.531 44.801 14.080 35.413 44.375 62.72 81.068 72.533 20.053 5.547 43.947 5.547 64 0 37.12-10.24 67.413-37.12 81.067-72.533 5.547-14.080 8.533-29.441 8.533-44.801 0-66.987-54.613-121.6-121.6-121.6z","M614.4 800.004c-46.080 0-90.027-17.067-123.733-47.787-6.827-5.973-10.667-14.933-10.667-23.893s3.84-17.92 10.667-23.893c25.6-22.613 40.533-55.467 40.533-90.027 0-15.36-2.987-30.72-8.533-44.8-3.413-8.533-2.987-17.92 1.28-26.027 3.84-8.107 11.52-14.080 20.053-16.64 36.693-10.24 66.987-37.12 81.067-72.533 5.973-14.933 22.187-23.467 37.973-19.2 80.64 21.76 136.96 95.573 136.96 179.2 0 102.4-83.2 185.6-185.6 185.6zM559.787 723.204c16.64 8.533 35.413 12.8 54.613 12.8 66.987 0 121.6-54.613 121.6-121.6 0-46.080-26.027-87.467-65.707-107.947-18.773 30.72-46.507 55.467-78.933 70.827 2.56 11.947 3.84 24.32 3.84 37.12 0 39.253-12.373 77.227-35.413 108.8z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["colors-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":381,"id":746,"name":"colors-square","prevSize":32,"code":59922},"setIdx":2,"setId":2,"iconIdx":155},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v298.667c0 155.733-89.6 245.333-245.333 245.333zM298.667 181.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-298.667c0-122.027-59.307-181.333-181.333-181.333h-426.667z","M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M234.667 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M789.333 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":382,"id":745,"name":"money","prevSize":32,"code":59923},"setIdx":2,"setId":2,"iconIdx":156},{"icon":{"paths":["M625.911 800h-227.84c-80.213 0-141.227-29.013-171.52-81.493s-24.747-119.893 15.36-189.44l113.92-197.547c40.107-69.12 95.573-107.52 156.16-107.52s116.053 38.4 156.16 107.947l113.92 197.547c40.107 69.547 45.653 136.96 15.36 189.44-30.293 52.053-91.307 81.067-171.52 81.067zM511.991 288c-36.693 0-72.533 26.88-100.693 75.947l-113.92 197.547c-28.16 49.067-33.707 93.44-15.36 125.44s59.733 49.493 116.053 49.493h227.84c56.32 0 97.707-17.493 116.053-49.493s12.8-76.373-15.36-125.44l-113.92-197.547c-28.16-49.067-64-75.947-100.693-75.947z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":383,"id":744,"name":"arrow-up","prevSize":32,"code":59924},"setIdx":2,"setId":2,"iconIdx":157},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M916.459 762.022h-808.959c-17.493 0-32-14.507-32-32s14.507-32 32-32h808.959c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M916.459 335.354h-808.959c-17.493 0-32-14.507-32-32s14.080-32 32-32h808.959c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M297.417 947.622c-17.493 0-32-14.507-32-32v-185.6c0-17.493 14.507-32 32-32s32 14.507 32 32v185.6c0 17.92-14.507 32-32 32z","M512 969.382c-17.493 0-32-14.507-32-32v-207.36c0-17.493 14.507-32 32-32s32 14.507 32 32v207.36c0 17.493-14.507 32-32 32z","M724.083 950.182c-17.493 0-32-14.507-32-32v-188.16c0-17.493 14.507-32 32-32s32 14.507 32 32v188.16c0 17.92-14.507 32-32 32z","M297.417 307.621c-17.493 0-32-14.507-32-32v-185.6c0-17.493 14.507-32 32-32s32 14.507 32 32v185.6c0 17.92-14.507 32-32 32z","M512 329.381c-17.493 0-32-14.507-32-32v-207.36c0-17.493 14.507-32 32-32s32 14.507 32 32v207.36c0 17.493-14.507 32-32 32z","M512 801.271c-17.493 0-32-14.507-32-32v-469.334c0-17.493 14.507-32 32-32s32 14.507 32 32v469.334c0 17.493-14.507 32-32 32z","M724.083 310.181c-17.493 0-32-14.507-32-32v-188.16c0-17.493 14.507-32 32-32s32 14.507 32 32v188.16c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-horizontal"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":384,"id":743,"name":"video-horizontal","prevSize":32,"code":59925},"setIdx":2,"setId":2,"iconIdx":158},{"icon":{"paths":["M383.977 757.333c-17.493 0-32-14.507-32-32v-178.773l-30.72 30.72c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l85.333-85.333c8.96-8.96 23.040-11.947 34.987-6.827 11.947 4.693 19.627 16.64 19.627 29.44v256c0 17.493-14.507 32-32 32z","M469.312 586.662c-8.107 0-16.213-2.987-22.613-9.387l-85.335-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.335 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-upload"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":385,"id":742,"name":"document-upload","prevSize":32,"code":59711},"setIdx":2,"setId":2,"iconIdx":159},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M459.085 698.445c-17.92 0-34.558-4.267-49.492-12.8-34.133-19.627-53.76-59.733-53.76-110.507v-126.293c0-50.346 19.627-90.88 53.76-110.507 34.132-19.627 78.505-16.64 122.452 8.96l109.653 63.146c43.52 25.173 68.693 62.293 68.693 101.547s-25.173 76.373-68.693 101.547l-109.653 63.147c-24.747 14.507-49.92 21.76-72.96 21.76zM459.511 389.539c-6.827 0-12.8 1.28-17.493 4.266-13.653 8.107-21.758 28.16-21.758 55.040v126.293c0 26.88 7.678 46.933 21.758 55.040 13.653 8.107 34.987 4.693 58.453-8.96l109.653-63.147c23.467-13.653 36.693-30.293 36.693-46.080s-13.227-32.853-36.693-46.080l-109.653-63.147c-15.36-8.96-29.44-13.226-40.96-13.226z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":386,"id":741,"name":"video-square","prevSize":32,"code":59926},"setIdx":2,"setId":2,"iconIdx":160},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512.009 636.151c-8.107 0-16.213-2.987-22.613-9.387l-150.615-150.613c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.372 45.227 0l128.002 128 128-128c12.373-12.372 32.853-12.372 45.227 0s12.373 32.853 0 45.227l-150.613 150.613c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-square-down"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":387,"id":740,"name":"arrow-square-down","prevSize":32,"code":59712},"setIdx":2,"setId":2,"iconIdx":161},{"icon":{"paths":["M879.77 557.658c-16.213 0-29.867-12.373-32-28.587-10.24-96.427-62.293-183.893-142.507-239.36-14.507-10.24-17.92-29.867-8.107-44.373 10.24-14.507 30.293-17.92 44.373-8.107 95.573 66.133 157.013 170.24 169.387 285.013 1.707 17.493-10.667 33.28-28.587 35.413-0.427 0-1.707 0-2.56 0z","M148.903 559.787c-1.28 0-2.133 0-3.413 0-17.493-2.133-30.293-17.92-28.587-35.413 11.52-114.773 72.533-218.453 166.827-285.44 14.507-10.24 34.56-6.827 44.8 7.68s6.827 34.56-7.68 44.8c-79.36 55.893-130.56 143.36-140.373 239.786-1.28 16.213-15.36 28.587-31.573 28.587z","M514.56 964.693c-63.147 0-123.308-14.507-179.628-42.667-15.787-8.107-22.187-27.307-14.080-43.093s27.307-22.187 43.093-14.080c92.161 46.507 203.095 47.36 296.108 2.56 15.787-7.68 34.987-0.853 42.667 14.933s0.853 34.987-14.933 42.667c-54.613 26.453-112.64 39.68-173.227 39.68z","M514.53 360.102c-83.2 0-150.613-67.413-150.613-150.613s67.413-150.613 150.613-150.613c83.2 0 150.613 67.413 150.613 150.613s-67.84 150.613-150.613 150.613zM514.53 123.302c-47.787 0-86.613 38.827-86.613 86.613s38.827 86.613 86.613 86.613c47.787 0 86.613-38.827 86.613-86.613s-39.253-86.613-86.613-86.613z","M206.113 881.924c-83.2 0-150.613-67.413-150.613-150.613 0-82.773 67.413-150.613 150.613-150.613s150.613 67.413 150.613 150.613c0 82.773-67.413 150.613-150.613 150.613zM206.113 644.698c-47.787 0-86.613 38.827-86.613 86.613s38.827 86.613 86.613 86.613c47.787 0 86.613-38.827 86.613-86.613s-38.827-86.613-86.613-86.613z","M817.946 881.924c-83.2 0-150.613-67.413-150.613-150.613 0-82.773 67.413-150.613 150.613-150.613s150.613 67.413 150.613 150.613c-0.427 82.773-67.84 150.613-150.613 150.613zM817.946 644.698c-47.787 0-86.613 38.827-86.613 86.613s38.827 86.613 86.613 86.613c47.787 0 86.613-38.827 86.613-86.613-0.427-47.787-38.827-86.613-86.613-86.613z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["share"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":388,"id":739,"name":"share","prevSize":32,"code":59927},"setIdx":2,"setId":2,"iconIdx":162},{"icon":{"paths":["M625.894 923.738h-445.865c-46.933 0-88.319-24.32-110.932-65.28s-21.332-89.173 3.414-128.853l118.185-189.013c9.387-14.933 9.387-42.667 0-57.173l-118.185-189.013c-24.747-39.68-26.028-87.893-3.414-128.853s64.426-65.28 110.932-65.28h488.105c40.107 0 86.613 25.6 107.52 59.733l178.347 285.013c23.893 38.4 21.76 97.28-5.547 133.547l-221.013 294.4c-21.76 29.013-65.28 50.773-101.547 50.773zM180.029 164.271c-23.040 0-43.946 11.947-55.039 32.427s-10.668 44.373 1.706 64l118.188 189.013c22.187 35.84 22.187 89.6 0 125.44l-118.188 189.013c-12.373 19.627-12.799 43.52-1.706 64s31.999 32.427 55.039 32.427h445.865c16.213 0 40.533-12.373 50.347-25.173l221.018-294.4c11.52-15.36 12.8-44.8 2.56-61.013l-178.351-285.013c-9.387-15.36-35.413-29.44-53.333-29.44h-488.105v-1.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag-right"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":389,"id":738,"name":"tag-right","prevSize":32,"code":59713},"setIdx":2,"setId":2,"iconIdx":163},{"icon":{"paths":["M724.894 414.292h-425.81c-17.493 0-32-14.507-32-32s14.507-32 32-32h425.81c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 414.305c-17.493 0-32-14.507-32-32v-71.68c0-17.493 14.507-32 32-32s32 14.507 32 32v71.68c0 17.493-14.507 32-32 32z","M298.667 745.382c-17.493 0-32-14.507-32-32s14.507-32 32-32c158.72 0 288-134.4 288-299.945 0-17.493 14.507-32 32-32s32 14.507 32 32c0 200.958-157.867 363.945-352 363.945z","M725.385 745.387c-84.053 0-162.133-41.813-219.307-118.187-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.68 44.8 6.4c45.227 59.733 104.96 92.587 168.533 92.587 17.493 0 32 14.507 32 32s-14.933 32-32.427 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["language-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":390,"id":737,"name":"language-square","prevSize":32,"code":59928},"setIdx":2,"setId":2,"iconIdx":164},{"icon":{"paths":["M571.733 622.929c-8.107 0-16.213-2.987-22.613-9.387l-59.733-59.733c-5.973-5.973-9.387-14.080-9.387-22.613v-119.040c0-17.493 14.507-32 32-32s32 14.507 32 32v105.813l50.347 50.347c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M512 821.333c-67.84 0-131.84-21.333-185.6-61.867-1.28-0.853-2.133-1.28-3.413-2.133-76.373-59.307-120.32-148.907-120.32-245.333 0-170.667 138.667-309.333 309.333-309.333s309.333 138.667 309.333 309.333c0 96-43.52 184.747-119.040 244.053-1.28 0.853-2.133 1.707-3.413 2.56-54.187 40.96-118.613 62.72-186.88 62.72zM359.68 704.427c1.28 0.853 2.133 1.28 2.987 2.133 86.613 66.987 213.76 66.56 299.947-0.853 0.853-0.853 2.133-1.707 2.987-2.133 58.453-46.933 91.733-116.48 91.733-191.573 0-135.253-110.080-245.333-245.333-245.333s-245.333 110.080-245.333 245.333c0 75.52 33.707 145.493 93.013 192.427z","M535.45 970.671h-46.507c-83.627 0-134.827-41.387-156.587-127.147l-21.333-105.387c-1.707-9.387 0.427-19.2 6.827-26.453s15.36-11.52 24.747-11.52h0.427c7.253 0 14.080 2.133 19.627 6.827 86.614 66.987 213.76 66.56 299.947-0.853 13.227-10.24 34.133-8.107 44.8 5.12 5.973 7.253 8.533 17.067 6.827 26.453l-21.76 105.387c-22.613 86.187-73.813 127.573-157.013 127.573zM387.823 795.311l6.827 34.133c16.213 64 49.494 77.227 94.294 77.227h46.507c44.373 0 77.653-13.227 94.293-78.080l6.827-33.28c-77.227 34.133-171.093 34.56-248.747 0z","M682.679 325.12c-7.253 0-14.507-2.56-20.053-6.827-86.187-67.413-213.333-67.84-299.949-0.853-13.227 10.24-34.133 8.107-44.373-4.693-5.973-7.253-8.533-17.067-6.827-26.453l20.907-104.107c21.76-87.467 72.96-128.853 156.589-128.853h46.507c83.2 0 134.396 41.387 156.156 126.293l22.191 107.093c2.133 9.387-0.427 19.2-6.4 26.453-5.973 7.68-14.933 11.947-24.747 11.947zM512.013 202.667c43.947 0 85.76 8.96 124.587 26.027l-7.253-34.56c-16.64-63.147-49.493-76.8-93.867-76.8h-46.507c-44.8 0-78.082 13.227-94.295 78.933l-6.827 32.427c38.829-17.067 80.642-26.027 124.162-26.027z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clock-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":391,"id":736,"name":"clock-1","prevSize":32,"code":59929},"setIdx":2,"setId":2,"iconIdx":165},{"icon":{"paths":["M733.884 970.662c-66.987 0-130.987-28.587-176.213-78.933-39.253-43.947-60.587-99.84-60.587-157.867 0-130.56 106.24-236.8 236.8-236.8 65.707 0 126.72 26.453 172.373 74.24 1.28 1.28 2.56 2.987 3.413 4.267 40.107 45.227 61.013 100.267 61.013 157.867 0 130.987-106.24 237.227-236.8 237.227zM733.884 561.062c-95.147 0-172.8 77.653-172.8 172.8 0 42.24 15.787 83.2 44.373 115.2 32.853 36.693 79.787 57.6 128.427 57.6 95.147 0 172.8-77.653 172.8-172.8 0-43.947-16.64-85.76-47.36-118.187-0.853-0.853-1.707-2.133-2.56-2.987-32.853-33.28-76.373-51.627-122.88-51.627z","M788.433 823.036c-8.107 0-16.213-2.982-22.613-9.382l-108.373-108.373c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l108.373 108.378c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.382-22.613 9.382z","M679.223 824.32c-8.107 0-16.209-2.991-22.609-9.391-12.373-12.373-12.373-32.853 0-45.227l108.373-108.369c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-108.373 108.369c-6.4 5.973-14.511 9.391-22.618 9.391z","M512 923.738c-13.227 0-26.453-1.707-37.12-5.547-109.227-37.12-421.547-218.027-421.547-547.412 0-149.333 120.747-270.508 269.227-270.508 71.253 0 139.52 28.588 189.44 78.508 49.92-49.92 118.613-78.508 189.44-78.508 148.48 0 269.227 121.174 269.227 270.508 0 83.199-20.053 162.986-59.733 237.652-4.693 8.96-13.653 15.36-23.893 16.64s-20.48-2.133-27.733-9.813c-33.28-34.987-78.080-54.613-125.867-54.613-95.147 0-172.8 77.653-172.8 172.8 0 42.24 15.787 83.2 44.373 115.2 6.827 7.68 9.387 17.92 7.253 27.733s-8.96 18.347-17.92 22.613c-17.067 7.68-32.427 14.080-46.507 18.773-9.813 4.267-22.613 5.973-35.84 5.973zM322.56 164.271c-113.067 0-205.227 92.588-205.227 206.508 0 291.839 280.32 453.119 378.453 486.826 7.68 2.987 24.32 2.56 32 0 1.28-0.427 2.56-0.853 3.84-1.28-22.187-36.693-34.56-78.933-34.56-122.453 0-130.56 106.24-236.8 236.8-236.8 50.347 0 98.133 15.787 138.24 44.373 23.040-54.613 34.56-111.787 34.56-170.666 0-113.92-92.16-206.508-205.227-206.508-64 0-125.44 30.722-163.84 82.349-11.947 16.213-39.253 16.213-51.2 0-38.4-51.627-99.84-82.349-163.84-82.349z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":392,"id":735,"name":"heart-remove","prevSize":32,"code":59930},"setIdx":2,"setId":2,"iconIdx":166},{"icon":{"paths":["M615.654 721.933h-97.702c-17.493 0-32-14.507-32-32s14.507-32 32-32h97.702c18.347 0 33.284-14.933 33.284-33.28s-14.938-33.28-33.284-33.28h-97.702c-10.24 0-20.053-5.12-26.027-13.227s-7.684-19.2-4.271-29.013l32.427-97.707c4.267-13.227 16.644-21.76 30.298-21.76h130.56c17.493 0 32 14.507 32 32s-14.507 32-32 32h-107.524l-11.093 33.707h53.333c53.76 0 97.284 43.52 97.284 97.28s-43.951 97.28-97.284 97.28z","M407.021 721.911c-17.493 0-32-14.507-32-32v-144.636l-8.107 9.382c-11.947 13.227-32 14.080-45.227 2.56-13.227-11.947-14.080-32-2.56-45.227l64-71.253c8.96-9.813 23.041-13.227 35.414-8.533 12.375 4.693 20.477 16.64 20.477 29.867v228.267c0 17.493-14.078 31.573-31.998 31.573z","M596.467 222.708c-9.387 0-18.769-4.265-24.742-11.945l-84.484-105.388c-11.093-13.653-8.96-34.133 5.12-44.8 13.653-11.093 33.711-8.96 44.804 5.12l84.48 105.388c11.093 13.653 8.96 34.132-5.12 44.799-5.973 4.267-13.231 6.826-20.058 6.826z","M511.974 970.658c-226.56 0-411.308-184.324-411.308-411.311 0-226.985 184.32-411.305 411.308-411.305 29.44 0 59.307 3.414 91.733 11.094 17.067 3.84 28.16 21.334 23.893 38.401-3.84 17.067-21.333 28.16-38.4 23.893-27.307-6.4-52.907-9.388-77.227-9.388-191.574 0-347.308 155.734-347.308 347.305 0 191.573 155.734 347.311 347.308 347.311s347.307-155.738 347.307-347.311c0-74.24-24.32-145.917-70.4-207.357-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.682 44.8 6.398c54.613 72.533 83.2 157.439 83.2 245.759 0 226.987-184.747 411.311-411.307 411.311z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forward-15-seconds"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":393,"id":734,"name":"forward-15-seconds","prevSize":32,"code":59931},"setIdx":2,"setId":2,"iconIdx":167},{"icon":{"paths":["M721.067 811.085c-13.227 0-26.453-3.844-37.973-11.524l-40.96-26.88c-11.52-7.68-17.067-22.182-13.227-35.409 2.987-9.813 4.267-21.338 4.267-34.138v-173.653c0-69.547-43.52-113.064-113.067-113.064h-289.707c-5.12 0-9.813 0.427-14.506 0.854-8.96 0.427-17.493-2.561-24.32-8.534s-10.24-14.506-10.24-23.466v-118.188c0-125.44 87.893-213.333 213.333-213.333h362.667c125.44 0 213.333 87.893 213.333 213.333v217.597c0 61.867-20.907 116.48-59.307 154.027-30.72 31.147-73.387 51.204-122.027 57.178v47.356c0 25.6-14.080 48.644-36.267 60.591-10.24 4.693-21.333 7.253-32 7.253zM695.467 730.871l27.733 15.787c2.56-1.28 2.56-3.418 2.56-3.844v-77.227c0-17.493 14.507-32 32-32 44.8 0 82.773-14.076 108.8-40.529 26.88-26.453 40.533-64.004 40.533-108.804v-217.597c0-90.88-58.453-149.333-149.333-149.333h-362.667c-90.88 0-149.333 58.453-149.333 149.333v85.333h274.774c104.107 0 177.067 72.961 177.067 177.068v173.649c-0.427 9.813-0.853 19.204-2.133 28.164z","M258.987 970.667c-9.387 0-19.2-2.133-28.16-6.827-20.053-10.667-32.427-31.147-32.427-54.187v-32.427c-37.547-5.973-70.826-21.76-95.573-46.507-32.427-32.427-49.493-76.8-49.493-128v-173.653c0-96.427 63.146-167.252 157.013-176.212 6.827-0.427 13.227-0.854 20.053-0.854h289.707c104.107 0 177.067 72.961 177.067 177.067v173.653c0 18.773-2.133 36.267-6.827 52.053-19.2 76.8-84.48 125.013-170.24 125.013h-106.24l-120.747 80.213c-10.24 7.253-22.186 10.667-34.133 10.667zM230.4 416c-5.12 0-9.813 0.428-14.506 0.854-61.44 5.547-98.56 47.786-98.56 112.212v173.653c0 34.133 10.667 62.72 30.72 82.773 19.627 19.627 48.213 30.293 82.346 30.293 17.493 0 32 14.507 32 32v55.893l123.734-82.347c5.12-3.413 11.52-5.547 17.92-5.547h116.053c56.32 0 96-28.16 108.373-77.653 2.987-10.667 4.693-22.613 4.693-35.413v-173.653c0-69.547-43.52-113.067-113.067-113.067h-289.707z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["messages-3"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":394,"id":733,"name":"messages-3","prevSize":32,"code":59714},"setIdx":2,"setId":2,"iconIdx":168},{"icon":{"paths":["M853.308 501.338h-682.668c-9.813 0-18.773-4.267-24.747-11.947-5.973-7.253-8.533-17.493-6.4-26.88l48.213-230.401c15.787-74.667 47.787-143.36 174.507-143.36h299.948c126.72 0 158.72 69.12 174.507 143.36l48.213 230.828c2.133 9.387-0.427 19.2-6.4 26.88-6.4 7.253-15.36 11.52-25.173 11.52zM209.893 437.338h603.735l-40.107-192.001c-11.947-55.893-26.027-92.587-111.787-92.587h-299.521c-85.76 0-99.84 36.693-111.787 92.587l-40.533 192.001z","M851.61 970.667h-80.213c-69.12 0-82.347-39.68-90.88-65.707l-8.533-25.6c-11.093-32.427-12.373-36.693-50.773-36.693h-218.453c-38.4 0-40.96 7.253-50.773 36.693l-8.533 25.6c-8.96 26.453-21.76 65.707-90.88 65.707h-80.213c-33.707 0-66.133-14.080-88.747-38.827-22.187-24.32-32.853-56.747-29.867-89.173l23.893-259.84c6.4-70.4 25.173-145.493 162.133-145.493h544.427c136.96 0 155.307 75.093 162.133 145.493l23.893 259.84c2.987 32.427-7.68 64.853-29.867 89.173-22.613 24.747-55.040 38.827-88.747 38.827zM402.756 778.667h218.453c77.653 0 96 34.56 111.36 79.787l8.96 26.453c7.253 21.76 7.253 22.187 30.293 22.187h80.213c15.787 0 30.72-6.4 41.387-17.92 10.24-11.093 14.933-25.173 13.653-40.107l-23.893-259.84c-5.547-57.6-12.373-87.467-98.133-87.467h-545.28c-86.187 0-93.013 29.867-98.133 87.467l-23.893 259.84c-1.28 14.933 3.413 29.013 13.653 40.107 10.24 11.52 25.6 17.92 41.387 17.92h80.213c23.040 0 23.040-0.427 30.293-21.76l8.533-26.027c10.667-34.133 26.453-80.64 110.933-80.64z","M170.667 373.333h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 373.333h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 245.333c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M576 245.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 672h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 672h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["car"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":395,"id":732,"name":"car","prevSize":32,"code":59932},"setIdx":2,"setId":2,"iconIdx":169},{"icon":{"paths":["M810.667 970.667c-17.493 0-32-14.507-32-32v-469.333c0-17.493 14.507-32 32-32s32 14.507 32 32v469.333c0 17.493-14.507 32-32 32z","M810.667 330.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M512 586.667c-17.493 0-32-14.507-32-32v-469.333c0-17.493 14.507-32 32-32s32 14.507 32 32v469.333c0 17.493-14.507 32-32 32z","M213.333 970.667c-17.493 0-32-14.507-32-32v-469.333c0-17.493 14.507-32 32-32s32 14.507 32 32v469.333c0 17.493-14.507 32-32 32z","M213.333 330.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M298.667 501.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 501.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 586.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-5"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":396,"id":731,"name":"setting-5","prevSize":32,"code":59715},"setIdx":2,"setId":2,"iconIdx":170},{"icon":{"paths":["M681.417 970.667h-341.333c-145.92 0-202.667-56.747-202.667-202.667v-341.333c0-17.493 14.507-32 32-32h682.667c17.493 0 32 14.507 32 32v341.333c0 145.92-56.747 202.667-202.667 202.667zM201.417 458.667v309.333c0 110.080 28.587 138.667 138.667 138.667h341.333c110.080 0 138.667-28.587 138.667-138.667v-309.333h-618.667z","M832 458.667h-640c-74.667 0-117.333-42.667-117.333-117.333v-42.667c0-74.667 42.667-117.333 117.333-117.333h640c72.533 0 117.333 44.8 117.333 117.333v42.667c0 72.533-44.8 117.333-117.333 117.333zM192 245.333c-38.827 0-53.333 14.507-53.333 53.333v42.667c0 38.827 14.507 53.333 53.333 53.333h640c37.547 0 53.333-15.787 53.333-53.333v-42.667c0-37.547-15.787-53.333-53.333-53.333h-640z","M496.602 245.328h-235.519c-8.96 0-17.493-3.84-23.467-10.24-26.027-28.587-25.173-72.533 2.133-99.84l60.587-60.587c28.16-28.16 74.667-28.16 102.827 0l116.052 116.053c8.96 8.96 11.947 23.040 6.827 34.987-4.693 11.947-16.213 19.627-29.44 19.627zM284.549 181.328h135.253l-61.867-61.44c-3.413-3.413-8.96-3.413-12.373 0l-60.587 60.587c0 0.427-0.427 0.427-0.427 0.853z","M762.458 245.328h-235.52c-12.8 0-24.747-7.68-29.44-19.627-5.12-11.947-2.133-25.6 6.827-34.987l116.053-116.053c28.16-28.16 74.667-28.16 102.827 0l60.587 60.587c27.307 27.307 28.587 71.253 2.133 99.84-5.973 6.4-14.507 10.24-23.467 10.24zM604.591 181.328h135.253c-0.427-0.427-0.427-0.427-0.853-0.853l-60.587-60.587c-3.413-3.413-8.96-3.413-12.373 0l-61.44 61.44z","M424.083 721.067c-11.947 0-24.32-2.987-35.413-8.96-24.32-13.227-39.253-38.4-39.253-65.707v-219.733c0-17.493 14.507-32 32-32h257.709c17.493 0 32 14.507 32 32v218.88c0 27.733-14.933 52.907-39.253 65.707-24.32 13.227-53.76 11.52-76.8-3.84l-37.973-25.6c-3.413-2.56-8.107-2.56-11.947 0l-40.107 26.453c-12.373 8.533-26.88 12.8-40.962 12.8zM413.417 458.667v187.307c0 5.547 3.413 8.107 5.547 9.387s6.4 2.56 11.095-0.427l40.107-26.453c25.173-16.64 57.6-16.64 82.347 0l37.973 25.6c4.693 2.987 8.96 1.707 11.093 0.427s5.547-3.84 5.547-9.387v-186.88h-193.709v0.427z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gift"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":397,"id":730,"name":"gift","prevSize":32,"code":59933},"setIdx":2,"setId":2,"iconIdx":171},{"icon":{"paths":["M597.333 778.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M85.333 778.667c-17.493 0-32-14.507-32-32v-426.667c0-188.16 57.173-245.333 245.333-245.333 17.493 0 32 14.507 32 32s-14.507 32-32 32c-152.32 0-181.333 28.587-181.333 181.333v426.667c0 17.493-14.507 32-32 32z","M938.667 778.667c-17.493 0-32-14.507-32-32v-426.667c0-152.747-29.013-181.333-181.333-181.333-17.493 0-32-14.507-32-32s14.507-32 32-32c188.16 0 245.333 57.173 245.333 245.333v426.667c0 17.493-14.507 32-32 32z","M307.2 970.671h-102.4c-103.253 0-151.467-48.213-151.467-151.467v-140.373c0-103.253 48.213-151.467 151.467-151.467h102.4c103.253 0 151.467 48.213 151.467 151.467v140.373c0 103.253-48.213 151.467-151.467 151.467zM204.8 591.364c-67.84 0-87.467 19.627-87.467 87.467v140.373c0 67.84 19.627 87.467 87.467 87.467h102.4c67.84 0 87.467-19.627 87.467-87.467v-140.373c0-67.84-19.627-87.467-87.467-87.467h-102.4z","M819.2 970.671h-102.4c-103.253 0-151.467-48.213-151.467-151.467v-140.373c0-103.253 48.213-151.467 151.467-151.467h102.4c103.253 0 151.467 48.213 151.467 151.467v140.373c0 103.253-48.213 151.467-151.467 151.467zM716.8 591.364c-67.84 0-87.467 19.627-87.467 87.467v140.373c0 67.84 19.627 87.467 87.467 87.467h102.4c67.84 0 87.467-19.627 87.467-87.467v-140.373c0-67.84-19.627-87.467-87.467-87.467h-102.4z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["glass-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":398,"id":729,"name":"glass-1","prevSize":32,"code":59934},"setIdx":2,"setId":2,"iconIdx":172},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M434.351 763.733c-8.108 0-16.214-2.987-22.614-9.387l-129.707-129.707c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l129.708 129.707c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M434.334 763.738c-17.494 0-32-14.507-32-32v-439.467c0-17.493 14.507-32 32-32s32 14.507 32 32v439.893c0 17.493-14.080 31.573-32 31.573z","M719.351 453.973c-8.107 0-16.213-2.987-22.613-9.387l-129.707-129.705c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l129.707 129.707c12.373 12.373 12.373 32.852 0 45.225-6.4 5.973-14.507 9.387-22.613 9.387z","M589.666 763.738c-17.493 0-32-14.507-32-32v-439.467c0-17.493 14.507-32 32-32s32 14.507 32 32v439.893c0 17.493-14.507 31.573-32 31.573z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrange-square-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":399,"id":728,"name":"arrange-square-2","prevSize":32,"code":59716},"setIdx":2,"setId":2,"iconIdx":173},{"icon":{"paths":["M490.667 928c-241.067 0-437.333-196.267-437.333-437.333s196.267-437.333 437.333-437.333c241.067 0 437.333 196.267 437.333 437.333s-196.267 437.333-437.333 437.333zM490.667 117.333c-206.080 0-373.333 167.68-373.333 373.333s167.253 373.333 373.333 373.333c206.080 0 373.333-167.68 373.333-373.333s-167.253-373.333-373.333-373.333z","M938.684 970.662c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-normal-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":400,"id":727,"name":"search-normal-1","prevSize":32,"code":59717},"setIdx":2,"setId":2,"iconIdx":174},{"icon":{"paths":["M449.69 936.107c-9.813 0-19.204-4.267-25.603-12.8l-43.094-57.6c-8.96-11.947-20.905-18.773-33.705-19.627-13.227-0.853-25.601 5.12-35.841 15.787-61.867 66.133-108.8 60.587-131.413 52.053-23.040-8.96-61.867-38.4-61.867-133.12v-480.426c0-189.44 54.613-247.040 233.387-247.040h322.136c178.773 0 233.387 57.6 233.387 247.040v181.76c0 17.493-14.507 32-32 32s-32-14.507-32-32v-181.76c0-154.027-26.88-183.040-169.387-183.040h-322.136c-142.507 0-169.387 29.014-169.387 183.040v480.426c0 44.8 11.093 69.547 21.333 73.387 7.68 2.987 28.588-1.28 61.014-35.84 23.467-24.747 54.186-37.973 86.186-36.267 31.573 1.707 61.44 18.347 81.492 45.227l43.52 57.6c10.667 14.080 7.68 34.133-6.4 44.8-6.4 4.693-13.222 6.4-19.622 6.4z","M682.667 330.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 501.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M632.303 929.284c-16.213 0-31.573-5.973-42.667-17.067-13.227-13.227-19.2-32.427-16.213-52.48l8.107-57.6c2.133-14.933 11.093-32.853 21.76-43.52l151.040-151.040c20.48-20.48 40.533-31.147 62.293-33.28 26.453-2.56 52.907 8.533 77.653 33.28s35.84 50.773 33.28 77.653c-2.133 21.333-13.227 41.813-33.28 62.293l-151.040 151.040c-10.667 10.667-28.587 19.627-43.52 21.76l-57.604 8.107c-3.413 0.427-6.396 0.853-9.809 0.853zM823.876 637.871c-0.427 0-0.853 0-1.28 0-5.973 0.427-14.080 5.973-23.040 14.933l-151.040 151.040c-1.28 1.28-3.413 5.547-3.413 7.253l-7.68 53.333 53.333-7.68c1.707-0.427 5.969-2.56 7.249-3.84l151.044-151.040c8.96-9.387 14.507-17.067 14.933-23.040 0.853-8.533-7.68-18.773-14.933-26.027-6.827-6.827-16.64-14.933-25.173-14.933z","M849.946 778.662c-2.987 0-5.973-0.427-8.533-1.28-56.32-15.787-101.12-60.587-116.907-116.907-4.693-17.067 5.12-34.56 22.187-39.68 17.067-4.693 34.56 5.12 39.253 22.187 9.813 34.987 37.547 62.72 72.533 72.533 17.067 4.693 26.88 22.613 22.187 39.68-3.84 14.080-16.64 23.467-30.72 23.467z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":401,"id":726,"name":"receipt-edit","prevSize":32,"code":59718},"setIdx":2,"setId":2,"iconIdx":175},{"icon":{"paths":["M576 714.667h-128c-117.333 0-202.667-85.333-202.667-202.667v-216.747c0-62.72 51.2-113.92 113.92-113.92h305.92c62.72 0 113.92 51.2 113.92 113.92v216.747c-0.427 117.333-85.76 202.667-203.093 202.667zM359.254 245.333c-27.307 0-49.92 22.187-49.92 49.92v216.747c0 69.12 42.667 138.667 138.667 138.667h128c96 0 138.667-69.547 138.667-138.667v-216.747c0-27.307-22.187-49.92-49.92-49.92h-305.493z","M405.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M618.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v256c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["electricity"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":402,"id":725,"name":"electricity","prevSize":32,"code":59719},"setIdx":2,"setId":2,"iconIdx":176},{"icon":{"paths":["M661.333 817.067h-384c-142.507 0-224-81.493-224-224v-230.4c0-142.507 81.493-224 224-224h115.2c10.24 0 20.053 5.123 26.027 13.229s7.68 19.197 4.267 29.010c-4.693 13.227-6.827 27.734-6.827 43.094v166.401c0 32.427 9.813 59.306 28.587 78.079s45.653 28.587 78.080 28.587c17.493 0 32 14.507 32 32v51.2l116.48-78.080c5.12-3.413 11.52-5.547 17.92-5.547h110.933c15.36 0 29.867-2.133 43.093-6.827 9.813-3.413 20.48-1.707 29.013 4.267s13.227 15.782 13.227 26.022v72.538c0 142.933-81.493 224.427-224 224.427zM277.333 202.667c-107.52 0-160 52.48-160 160v230.4c0 107.52 52.48 160 160 160h384c107.52 0 160-52.48 160-160v-33.28c-6.827 0.853-14.080 1.28-21.333 1.28h-101.12l-115.2 76.8c-18.773 11.947-42.24 13.227-61.44 2.56-19.2-10.24-31.147-30.293-31.147-52.053v-29.867c-35.84-5.547-67.413-21.333-91.307-44.8-30.293-30.293-47.36-74.24-47.36-123.306v-166.401c0-7.253 0.427-14.507 0.853-21.333h-75.947z","M550.4 647.684c-9.813 0-19.627-2.564-28.587-7.258-19.2-10.24-31.147-30.293-31.147-52.053v-29.867c-35.84-5.547-67.413-21.333-91.307-44.8-30.293-30.293-47.36-74.24-47.36-123.306v-166.401c0-22.613 3.413-43.946 10.24-63.573 23.893-66.987 83.627-107.094 160.427-107.094h277.333c100.267 0 170.667 69.973 170.667 170.667v166.401c0 76.799-39.68 136.532-106.667 160.426-20.48 6.827-41.813 10.24-64 10.24h-101.12l-115.2 76.8c-10.24 6.827-21.76 9.818-33.28 9.818zM522.667 117.333c-49.067 0-85.333 23.467-99.84 64-4.267 12.8-6.827 27.307-6.827 42.667v166.401c0 32.427 9.813 59.306 28.587 78.079s45.653 28.587 78.080 28.587c17.493 0 32 14.507 32 32v51.2l116.48-78.080c5.12-3.413 11.52-5.547 17.92-5.547h110.933c15.36 0 29.867-2.133 43.093-6.827 40.533-14.507 63.573-50.773 63.573-99.84v-166.401c0-65.707-40.96-106.667-106.667-106.667h-277.333v0.427z","M622.95 970.667h-307.2c-17.493 0-32-14.507-32-32s14.507-32 32-32h307.2c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M469.333 970.662c-17.493 0-32-14.507-32-32v-153.6c0-17.493 14.507-32 32-32s32 14.507 32 32v153.6c0 17.493-14.507 32-32 32z","M658.752 341.333c-17.92 0-32-14.507-32-32s14.507-32 32-32c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M778.667 341.333c-17.92 0-32-14.507-32-32s14.507-32 32-32c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M538.5 341.333c-17.92 0-32-14.507-32-32s14.507-32 32-32c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["device-message"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":403,"id":724,"name":"device-message","prevSize":32,"code":59935},"setIdx":2,"setId":2,"iconIdx":177},{"icon":{"paths":["M680.998 909.653c-8.107 0-16.213-2.987-22.613-9.387l-64.853-64.853c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.24 42.24 107.093-107.093c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-129.707 129.707c-6.4 6.4-14.507 9.387-22.613 9.387z","M518.857 495.787c-1.28 0-2.133 0-3.413 0-2.133-0.427-5.12-0.427-7.68 0-123.734-3.84-217.174-101.12-217.174-221.013-0.427-58.88 22.613-114.347 64.427-156.16s97.281-65.28 156.588-65.28c122.027 0 221.44 99.413 221.44 221.44 0 119.893-93.44 216.747-212.907 221.013-0.427 0-0.853 0-1.28 0zM511.603 117.333c-42.24 0-81.493 16.64-111.361 46.080-29.44 29.867-45.653 69.12-45.653 110.933 0 85.333 66.56 154.453 151.468 157.013 2.56-0.427 8.107-0.427 13.653 0 84.053-3.84 149.333-72.533 149.333-157.013 0-86.187-70.827-157.013-157.44-157.013z","M511.582 962.556c-87.042 0-169.388-22.613-231.682-64.427-59.307-39.68-91.733-93.867-91.733-152.32s32.853-112.213 91.733-151.467c127.573-85.333 334.935-85.333 462.508 0 14.507 9.813 18.773 29.867 8.96 44.373-9.813 14.933-29.867 18.773-44.373 8.96-106.24-70.827-285.442-70.827-391.682 0-40.96 27.307-63.147 61.867-63.147 98.133s22.187 71.68 63.147 98.987c51.627 34.56 121.175 53.333 195.842 53.333 17.493 0 32 14.507 32 32s-14.080 32.427-31.573 32.427z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-tick"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":404,"id":723,"name":"profile-tick","prevSize":32,"code":59720},"setIdx":2,"setId":2,"iconIdx":178},{"icon":{"paths":["M512.038 604.582c-90.882 0-165.122-73.813-165.122-165.12 0-91.305 74.24-164.692 165.122-164.692 90.88 0 165.12 73.813 165.12 165.118 0 91.307-74.24 164.693-165.12 164.693zM512.038 338.771c-55.467 0-101.122 45.227-101.122 101.118 0 55.893 45.228 101.12 101.122 101.12s101.12-45.227 101.12-101.12c0-55.892-45.653-101.118-101.12-101.118z","M511.987 971.093c-63.147 0-126.72-23.893-176.214-71.253-125.867-121.173-264.96-314.453-212.48-544.427 47.36-208.64 229.547-302.080 388.694-302.080 0 0 0 0 0.427 0 159.147 0 341.333 93.44 388.693 302.507 52.053 229.973-87.040 422.827-212.907 544-49.493 47.36-113.067 71.253-176.213 71.253zM511.987 117.333c-124.16 0-283.734 66.133-325.974 252.16-46.080 200.96 80.213 374.187 194.56 483.84 73.814 71.253 189.44 71.253 263.254 0 113.92-109.653 240.213-282.88 194.987-483.84-42.667-186.027-202.667-252.16-326.827-252.16z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["location"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":405,"id":722,"name":"location","prevSize":32,"code":59721},"setIdx":2,"setId":2,"iconIdx":179},{"icon":{"paths":["M641.673 555.511c-8.107 0-16.64-3.413-22.613-9.387l-140.373-140.374c-10.667-10.667-12.373-26.88-4.267-39.68l43.947-69.547c14.080-22.613 36.267-36.693 61.44-39.253 27.733-2.987 56.747 8.107 78.933 30.293l78.933 78.933c21.333 21.333 32 50.347 29.013 78.934-2.987 25.6-16.64 47.787-37.973 61.44l-69.547 43.947c-5.973 3.413-11.947 4.693-17.493 4.693zM541.833 378.444l104.533 104.534 47.787-30.293c5.973-3.84 8.107-9.813 8.533-14.507 0.853-8.96-2.987-19.201-10.667-26.881l-78.933-78.507c-8.533-8.533-18.347-12.8-26.453-11.947-5.973 0.853-10.667 3.84-14.507 9.813l-30.293 47.787z","M353.715 767.147c-26.453 0-51.2-9.813-68.693-27.307-20.48-20.48-30.293-50.347-26.453-81.92l25.6-216.32c8.533-72.105 43.52-101.119 116.907-96.425l101.973 5.973c17.493 1.28 31.147 16.213 29.867 33.707s-16.213 31.147-33.707 29.867l-102.4-5.547c-41.387-2.56-45.227 3.84-49.493 40.105l-25.6 216.32c-1.28 11.947 1.707 22.613 8.107 29.013 6.827 6.827 17.067 9.813 29.013 8.107l216.32-25.6c39.253-4.693 43.947-10.667 40.533-48.213l-6.4-103.253c-0.853-17.493 12.373-32.853 29.867-33.707 17.493-1.28 32.853 12.373 33.707 29.867l5.973 101.973c7.253 71.68-22.613 108.373-96.427 116.907l-216.32 25.6c-3.84 0.853-8.107 0.853-12.373 0.853z","M319.56 736.849c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l78.933-78.933c12.373-12.373 32.853-12.373 45.227 0s12.374 32.853 0 45.227l-78.933 78.933c-5.973 6.4-14.080 9.387-22.613 9.387z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["path-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":406,"id":721,"name":"path-square","prevSize":32,"code":59936},"setIdx":2,"setId":2,"iconIdx":180},{"icon":{"paths":["M725.355 970.667h-399.787c-13.653 0-25.601-8.533-30.294-20.907s-0.852-26.88 9.388-35.413c10.24-8.533 19.627-19.627 26.453-31.573 13.653-21.76 20.479-46.507 20.479-71.68 0-76.373-62.293-138.667-138.667-138.667-39.68 0-77.653 17.067-104.107 47.36-8.96 9.813-23.041 13.653-35.414 8.96s-20.906-16.64-20.906-29.867v-186.88c0-131.413 81.068-226.56 206.935-242.346 11.52-1.707 24.745-2.987 38.398-2.987h426.668c10.24 0 23.467 0.427 37.12 2.56 125.867 14.507 208.213 110.080 208.213 242.773v213.333c0.853 146.773-97.707 245.333-244.48 245.333zM391.7 906.667h333.654c110.080 0 181.333-71.253 181.333-181.333v-213.333c0-99.84-58.453-168.534-153.173-179.628-10.24-1.707-19.2-1.706-28.16-1.706h-426.667c-10.24 0-20.054 0.853-29.867 2.133-93.867 11.947-151.466 80.214-151.466 179.2v120.32c29.013-15.787 62.293-24.32 96-24.32 111.787 0 202.667 90.88 202.667 202.667 0 33.707-8.534 66.987-24.32 96z","M264.108 333.225c-10.24 0-19.626-4.693-26.026-13.227-7.253-9.813-8.107-22.615-2.56-33.281 7.253-14.507 17.492-28.585 30.719-41.385l138.667-139.094c70.826-70.4 186.026-70.4 256.852 0l74.667 75.948c31.573 31.147 50.773 72.96 52.907 117.333 0.427 9.813-3.413 19.199-10.667 25.599s-17.067 9.386-26.453 7.68c-8.533-1.28-17.493-1.706-26.88-1.706h-426.665c-10.24 0-20.054 0.853-29.867 2.133-1.28 0-2.986 0-4.693 0zM335.36 266.665h382.293c-5.547-14.507-14.507-27.733-26.453-39.68l-75.093-75.948c-45.653-45.227-120.32-45.227-166.4 0l-114.346 115.628z","M938.667 736h-128c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 1013.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-49.067 17.92-96.427 50.773-133.547 38.4-43.947 93.867-69.12 151.893-69.12 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.667 17.92-24.32 34.133-40.534 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM213.333 672c-39.68 0-77.653 17.067-104.107 47.36-22.187 25.6-34.56 58.027-34.56 91.307 0 25.173 6.825 49.92 20.052 71.253 24.747 41.813 70.401 67.413 118.615 67.413 33.707 0 66.133-12.373 90.88-34.56 11.094-9.387 20.481-20.48 27.308-32.427 13.653-21.76 20.479-46.507 20.479-71.68 0-76.373-62.293-138.667-138.667-138.667z","M259.004 887.044c-8.107 0-16.215-2.987-22.615-9.387l-90.026-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.026 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.505 9.387-22.612 9.387z","M167.725 888.316c-8.107 0-16.212-2.987-22.612-9.387-12.373-12.373-12.373-32.853 0-45.227l90.026-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.026 90.027c-6.4 6.4-14.508 9.387-22.615 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":407,"id":720,"name":"wallet-remove","prevSize":32,"code":59937},"setIdx":2,"setId":2,"iconIdx":181},{"icon":{"paths":["M537.6 772.689c-9.387 0-16.64-2.56-20.907-4.267-9.387-4.267-30.716-18.347-30.716-57.173v-113.92l-98.136 90.027c-12.8 11.947-33.28 11.093-45.227-2.133s-11.094-33.28 2.133-45.227l139.945-128.427-139.945-128.425c-13.227-11.947-14.080-32-2.133-45.227 11.947-12.8 32.427-14.080 45.227-2.134l98.136 90.027v-113.493c0-38.4 21.329-52.48 30.716-57.173 8.96-4.267 33.707-11.52 63.573 12.8l87.893 73.387c12.8 10.667 20.48 26.453 20.907 42.667s-6.4 32.426-18.773 43.519l-90.88 83.2 90.88 83.2c12.373 11.52 19.2 27.307 18.773 43.52s-8.107 32-20.907 42.667l-87.893 73.387c-16.213 15.36-31.147 19.2-42.667 19.2zM550.4 572.156v124.587l71.258-59.307-71.258-65.28zM550.4 327.251v124.585l71.258-65.279-71.258-59.306z","M640 970.667h-256c-146.773 0-245.333-98.56-245.333-245.333v-426.667c0-146.773 98.56-245.333 245.333-245.333h256c146.773 0 245.333 98.56 245.333 245.333v426.667c0 146.773-98.56 245.333-245.333 245.333zM384 117.333c-110.080 0-181.333 71.253-181.333 181.333v426.667c0 110.080 71.253 181.333 181.333 181.333h256c110.080 0 181.333-71.253 181.333-181.333v-426.667c0-110.080-71.253-181.333-181.333-181.333h-256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bluetooth-rectangle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":408,"id":719,"name":"bluetooth-rectangle","prevSize":32,"code":59722},"setIdx":2,"setId":2,"iconIdx":182},{"icon":{"paths":["M520.525 741.542c-29.867 0-60.16-11.52-82.773-34.133-22.188-22.187-34.561-51.627-34.561-82.773s12.373-61.013 34.561-82.773l60.156-60.16c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-60.156 60.16c-10.24 10.24-15.787 23.467-15.787 37.547s5.547 27.733 15.787 37.547c20.907 20.907 54.613 20.907 75.52 0l94.72-94.72c54.187-54.187 54.187-142.078 0-196.265s-142.080-54.187-196.267 0l-103.256 103.252c-21.76 21.76-33.705 50.347-33.705 80.64s11.945 59.307 33.705 80.64c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.226 0c-33.707-33.707-52.052-78.507-52.052-126.293s18.345-92.587 52.052-126.293l103.255-103.252c78.934-78.933 207.788-78.933 286.721 0s78.933 207.786 0 286.719l-94.72 94.72c-23.040 23.467-52.907 34.987-83.2 34.987z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["attach-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":409,"id":718,"name":"attach-square","prevSize":32,"code":59723},"setIdx":2,"setId":2,"iconIdx":183},{"icon":{"paths":["M237.641 968.538c-99.84 0-184.32-84.484-184.32-184.324v-262.827c-2.133-124.585 43.947-241.918 130.133-329.811 86.187-87.467 201.813-136.107 326.4-136.107 254.293 0 460.8 206.933 460.8 460.798v262.827c0 101.547-82.773 184.32-184.32 184.32-99.84 0-184.32-84.48-184.32-184.32v-119.893c0-61.867 48.64-110.507 110.507-110.507s110.507 48.64 110.507 110.507v129.28c0 17.493-14.507 32-32 32s-32-14.507-32-32v-129.28c0-29.013-23.467-46.507-46.507-46.507-29.013 0-46.507 23.467-46.507 46.507v119.893c0 65.284 55.040 120.32 120.32 120.32s120.32-55.036 120.32-120.32v-262.827c0-218.878-177.92-396.798-396.8-396.798-107.093 0-206.506 41.387-280.746 116.907s-113.92 176.64-111.787 284.158v263.68c0 65.28 55.040 120.324 120.32 120.324s120.32-55.044 120.32-120.324v-119.893c0-29.013-23.467-46.507-46.507-46.507-29.013 0-46.507 23.467-46.507 46.507v124.587c0 17.493-14.507 32-32 32s-32-14.507-32-32v-124.587c0-61.867 48.64-110.507 110.507-110.507s110.507 48.64 110.507 110.507v119.893c0 99.84-84.48 184.324-184.32 184.324z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["headphone"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":410,"id":717,"name":"headphone","prevSize":32,"code":59938},"setIdx":2,"setId":2,"iconIdx":184},{"icon":{"paths":["M725.333 928h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-341.333c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v341.333c0 188.16-57.173 245.333-245.333 245.333zM298.667 160c-152.747 0-181.333 29.013-181.333 181.333v341.333c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-341.333c0-152.32-28.587-181.333-181.333-181.333h-426.667z","M810.667 373.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.667 544h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.667 714.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M362.685 513.702c-60.16 0-109.227-49.067-109.227-109.226s49.067-109.227 109.227-109.227c60.16 0 109.225 49.067 109.225 109.227s-49.065 109.226-109.225 109.226zM362.685 359.25c-24.747 0-45.227 20.48-45.227 45.227s20.48 45.226 45.227 45.226c24.747 0 45.227-20.48 45.227-45.226s-20.48-45.227-45.227-45.227z","M511.996 728.738c-16.213 0-30.293-12.373-32-29.013-4.693-46.080-41.813-83.2-88.32-87.467-19.627-1.707-39.253-1.707-58.88 0-46.507 4.267-83.627 40.96-88.32 87.467-1.707 17.493-17.493 30.72-34.987 28.587-17.493-1.707-30.293-17.493-28.587-34.987 7.68-76.8 68.693-137.813 145.92-144.64 23.467-2.133 47.36-2.133 70.827 0 76.8 7.253 138.24 68.267 145.92 144.64 1.707 17.493-11.093 33.28-28.587 34.987-0.853 0.427-2.133 0.427-2.987 0.427z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["personalcard"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":411,"id":716,"name":"personalcard","prevSize":32,"code":59724},"setIdx":2,"setId":2,"iconIdx":185},{"icon":{"paths":["M685.218 714.662c-0.427 0-0.853 0-1.707 0h-412.16c-112.213-7.68-162.56-93.867-162.56-170.667 0-67.413 38.828-142.078 123.308-164.265-22.187-92.587-1.707-179.202 58.453-242.349 69.973-73.387 181.76-102.398 278.613-72.531 87.893 26.88 149.76 98.558 172.8 197.971 76.373 18.347 137.387 76.375 161.707 156.589 26.88 87.892 2.133 177.918-64 235.518-41.387 38.4-96.427 59.733-154.453 59.733zM273.059 437.756c-68.693 5.547-99.413 57.173-99.413 106.24 0 49.493 31.146 101.547 100.693 106.667h410.026c0.427 0 0.853 0 1.28 0 41.813 0 81.92-15.36 112.213-43.52 56.32-49.067 60.16-119.467 45.227-169.387-15.36-49.919-57.6-106.24-131.84-115.626-14.080-1.707-25.173-12.373-27.733-26.453-14.507-87.467-61.867-147.625-132.693-169.385-72.96-22.187-160.426 0.427-213.332 55.893-51.627 54.187-63.574 129.707-33.707 213.333 5.973 16.64-2.559 34.985-19.199 40.958-3.84 0.853-7.254 1.707-11.521 1.28z","M512 842.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M512 1013.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 842.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M768 928h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 928h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-connection"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":412,"id":715,"name":"cloud-connection","prevSize":32,"code":59939},"setIdx":2,"setId":2,"iconIdx":186},{"icon":{"paths":["M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M668.625 415.997c-16.64 0-32-5.973-43.093-17.493-13.227-13.227-19.627-32.853-16.64-52.907l8.533-59.307c2.133-14.933 11.093-33.28 22.187-43.947l154.88-154.88c61.867-61.867 115.627-26.453 142.080 0 25.173 25.173 36.693 51.627 34.133 78.933-2.133 21.76-13.227 42.667-34.133 63.147l-154.88 154.88c-10.667 10.667-29.013 19.627-43.947 22.187l-59.307 8.533c-3.413 0.853-6.827 0.853-9.813 0.853zM839.292 133.117l-154.88 154.88c-1.28 1.28-3.413 5.973-3.84 8.107l-8.107 55.467 55.893-7.68c1.707-0.427 6.4-2.56 8.107-4.267l154.88-154.88c9.387-9.387 14.933-17.92 15.36-24.32 0.853-8.96-8.107-20.053-15.36-27.307-22.187-22.187-32.427-19.627-52.053 0z","M891.746 261.536c-2.987 0-5.973-0.427-8.533-1.28-57.173-16.213-102.827-61.867-119.040-119.040-4.693-17.067 5.12-34.56 22.187-39.253s34.56 5.12 39.253 22.187c10.24 35.84 38.827 64.853 75.093 75.093 17.067 4.693 26.88 22.613 22.187 39.253-4.693 13.653-17.493 23.040-31.147 23.040z","M113.891 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.533-44.373l210.347-141.227c46.080-30.72 109.653-27.307 151.466 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.227-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-31.573 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.6-18.347-78.507 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.079-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-209.92 141.227c-5.973 3.413-12.373 5.12-18.347 5.12z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":413,"id":714,"name":"gallery-edit","prevSize":32,"code":59725},"setIdx":2,"setId":2,"iconIdx":187},{"icon":{"paths":["M640 970.667h-256c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h256c188.16 0 245.333 57.173 245.333 245.333v426.667c0 188.16-57.173 245.333-245.333 245.333zM384 117.333c-152.747 0-181.333 29.013-181.333 181.333v426.667c0 152.32 28.587 181.333 181.333 181.333h256c152.747 0 181.333-29.013 181.333-181.333v-426.667c0-152.32-28.587-181.333-181.333-181.333h-256z","M597.333 266.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512.009 847.36c-54.187 0-98.133-43.947-98.133-98.133s43.947-98.133 98.133-98.133c54.187 0 98.133 43.947 98.133 98.133s-43.947 98.133-98.133 98.133zM512.009 714.667c-18.773 0-34.133 15.36-34.133 34.133s15.36 34.133 34.133 34.133c18.773 0 34.133-15.36 34.133-34.133s-15.36-34.133-34.133-34.133z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mobile"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":414,"id":713,"name":"mobile","prevSize":32,"code":59940},"setIdx":2,"setId":2,"iconIdx":188},{"icon":{"paths":["M264.109 333.225c-10.24 0-19.627-4.693-26.027-13.227-7.253-9.813-8.107-22.615-2.56-33.281 7.253-14.507 17.493-28.585 30.72-41.385l138.667-139.094c70.825-70.4 186.025-70.4 256.851 0l74.667 75.948c31.573 31.147 50.773 72.96 52.907 117.333 0.427 9.813-3.413 19.199-10.667 25.599s-17.067 9.386-26.453 7.68c-8.533-1.28-17.493-1.706-26.88-1.706h-426.665c-10.24 0-20.053 0.853-29.867 2.133-1.28 0-2.987 0-4.693 0zM335.362 266.665h382.291c-5.547-14.507-14.507-27.733-26.453-39.68l-75.093-75.948c-45.653-45.227-120.32-45.227-166.4 0l-114.345 115.628z","M213.333 1013.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM213.333 672c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 25.173 42.667 69.547 67.413 118.613 67.413s93.44-25.173 118.613-66.987c13.227-21.76 20.053-46.080 20.053-71.68 0-76.373-62.293-138.667-138.667-138.667z","M276.897 841.813h-127.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.507 32-32.427 32z","M213.333 907.093c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z","M725.355 970.667h-399.788c-13.653 0-25.6-8.533-30.293-20.907-4.693-12.8-0.853-26.88 9.387-35.413s19.627-19.627 26.453-31.573c13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667-39.68 0-77.653 17.067-104.107 47.36-8.96 9.813-23.040 13.653-35.413 8.96s-20.907-16.64-20.907-29.867v-186.88c0-131.413 81.067-226.56 206.933-242.346 11.52-1.707 24.747-2.987 38.4-2.987h426.668c10.24 0 23.467 0.427 37.12 2.56 125.867 14.507 208.213 110.080 208.213 242.773v213.333c0.853 146.773-97.707 245.333-244.48 245.333zM391.7 906.667h333.655c110.080 0 181.333-71.253 181.333-181.333v-213.333c0-99.84-58.453-168.534-153.173-179.628-10.24-1.707-19.2-1.706-28.16-1.706h-426.668c-10.24 0-20.053 0.853-29.867 2.133-93.867 11.947-151.467 80.214-151.467 179.2v120.32c29.013-15.787 62.293-24.32 96-24.32 111.787 0 202.667 90.88 202.667 202.667 0 33.707-8.533 66.987-24.32 96z","M938.667 736h-128c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":415,"id":712,"name":"wallet-add","prevSize":32,"code":59941},"setIdx":2,"setId":2,"iconIdx":189},{"icon":{"paths":["M511.996 696.742c-101.972 0-184.746-82.773-184.746-184.747s82.773-184.746 184.746-184.746c101.973 0 184.747 82.773 184.747 184.746s-82.773 184.747-184.747 184.747zM511.996 391.25c-66.56 0-120.746 54.186-120.746 120.746s54.186 120.747 120.746 120.747c66.56 0 120.747-54.187 120.747-120.747s-54.187-120.746-120.747-120.746z","M512.004 896.853c-160.428 0-311.894-93.867-416.001-256.853-45.227-70.4-45.227-185.173 0-256.001 104.533-162.987 256-256.853 416.001-256.853s311.467 93.867 415.573 256.853c45.227 70.401 45.227 185.174 0 256.001-104.107 162.987-255.573 256.853-415.573 256.853zM512.004 191.146c-137.814 0-269.654 82.773-361.814 227.413-32 49.921-32 136.961 0 186.881 92.16 144.64 224 227.413 361.814 227.413s269.653-82.773 361.813-227.413c32-49.92 32-136.96 0-186.881-92.16-144.64-224-227.413-361.813-227.413z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":416,"id":711,"name":"eye","prevSize":32,"code":59942},"setIdx":2,"setId":2,"iconIdx":190},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-49.92-36.693-98.133-77.653-143.787-122.453-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-102.4-87.040-151.893-22.187-52.907-33.28-104.107-33.28-152.32 0-33.28 5.973-64.853 17.493-94.293 11.947-30.293 31.147-58.453 57.173-82.773 32.853-32.427 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.907 23.893 40.533 45.653 60.16 65.707 25.173 24.747 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.787 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.627 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-1.28-2.56-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-9.387-3.84-13.227-7.68-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.48-17.493-42.667-37.973-69.547-64.427-20.907-21.333-41.813-43.947-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.12-12.8c-2.56-9.813-3.413-15.36-3.413-21.333 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.987-6.827-7.68-14.507-13.653-22.613l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-2.133-0.427-3.84 0-4.693 0.853z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":417,"id":710,"name":"call","prevSize":32,"code":59943},"setIdx":2,"setId":2,"iconIdx":191},{"icon":{"paths":["M511.979 416c-17.493 0-32-14.507-32-32v-221.44l-30.72 30.72c-12.373 12.373-32.855 12.373-45.229 0s-12.373-32.853 0-45.227l85.335-85.333c8.96-8.96 23.040-11.947 34.987-6.827 11.947 4.693 19.627 16.64 19.627 29.44v298.667c0 17.493-14.507 32-32 32z","M597.312 202.664c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M587.115 757.333h-150.613c-44.801 0-84.908-24.747-104.961-64.853l-49.92-99.84c-1.707-3.84-5.547-5.973-9.387-5.973h-187.733c-17.493 0-32-14.507-32-32s14.507-32 32-32h188.16c28.587 0 54.187 15.787 66.987 41.387l49.92 99.84c8.96 18.347 27.307 29.44 47.788 29.44h150.613c20.48 0 38.827-11.093 47.787-29.44l49.92-99.84c12.8-25.6 38.4-41.387 66.987-41.387h186.027c17.493 0 32 14.507 32 32s-14.507 32-32 32h-186.027c-4.267 0-7.68 2.133-9.387 5.973l-49.92 99.84c-21.333 40.107-61.44 64.853-106.24 64.853z","M640 970.662h-256c-231.68 0-330.667-98.987-330.667-330.667v-128c0-200.105 74.24-300.372 240.64-324.692 17.92-2.56 33.707 9.387 36.267 26.88s-9.387 33.707-26.88 36.267c-133.973 19.627-186.027 93.013-186.027 261.545v128c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-128c0-168.532-52.053-241.919-186.027-261.545-17.493-2.56-29.44-18.773-26.88-36.267s18.773-29.44 36.267-26.88c166.4 24.32 240.64 124.587 240.64 324.692v128c0 231.68-98.987 330.667-330.667 330.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-send"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":418,"id":709,"name":"direct-send","prevSize":32,"code":59726},"setIdx":2,"setId":2,"iconIdx":192},{"icon":{"paths":["M704 532.058c-17.493 0-32-14.507-32-32v-75.519c0-20.053-16.213-36.268-36.267-36.268h-315.733c-17.493 0-32-14.507-32-32s14.507-32 32-32h315.733c55.467 0 100.267 45.228 100.267 100.268v75.519c0 17.493-14.507 32-32 32z","M392.083 459.942c-8.107 0-16.213-2.991-22.613-9.391l-72.107-72.105c-12.373-12.373-12.373-32.853 0-45.226l72.107-72.107c12.373-12.373 32.853-12.373 45.226 0 12.375 12.373 12.375 32.853 0 45.227l-49.493 49.495 49.493 49.492c12.375 12.373 12.375 32.851 0 45.225-6.4 6.4-14.507 9.391-22.613 9.391z","M704 700.16h-315.733c-55.467 0-100.267-45.222-100.267-100.262v-75.524c0-17.493 14.507-32 32-32s32 14.507 32 32v75.524c0 20.053 16.214 36.262 36.267 36.262h315.733c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M631.893 771.836c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l49.493-49.493-49.493-49.493c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l72.107 72.107c12.373 12.373 12.373 32.853 0 45.227l-72.107 72.107c-5.973 6.4-14.507 9.387-22.613 9.387z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["repeat-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":419,"id":708,"name":"repeat-circle","prevSize":32,"code":59944},"setIdx":2,"setId":2,"iconIdx":193},{"icon":{"paths":["M512 971.938c-29.44 0-57.173-14.933-76.8-40.96l-64-85.333c-1.28-1.707-6.4-3.844-8.534-4.271h-21.333c-177.92 0-288-48.213-288-288v-213.332c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v213.332c0 188.587-99.413 288-288 288h-21.333c-3.413 0-6.4 1.711-8.533 4.271l-64 85.333c-19.627 26.027-47.36 40.96-76.8 40.96zM341.333 116.042c-152.747 0-224 71.253-224 224v213.332c0 192.853 66.133 224 224 224h21.333c21.76 0 46.506 12.373 59.733 29.867l64 85.333c14.933 19.627 36.267 19.627 51.2 0l64-85.333c14.080-18.773 36.267-29.867 59.733-29.867h21.333c152.747 0 224-71.253 224-224v-213.332c0-152.747-71.253-224-224-224h-341.333z","M341.31 573.854c-8.107 0-16.213-2.991-22.613-9.391l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227l85.333-85.331c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-62.72 62.722 62.72 62.716c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.391-22.613 9.391z","M682.645 573.854c-8.107 0-16.213-2.991-22.613-9.391-12.373-12.373-12.373-32.853 0-45.227l62.72-62.716-62.72-62.722c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.331c12.373 12.373 12.373 32.853 0 45.227l-85.333 85.333c-6.4 6.4-14.507 9.391-22.613 9.391z","M469.35 587.938c-4.267 0-8.533-0.858-12.8-2.564-16.213-6.827-23.893-25.6-16.64-42.24l85.333-199.251c6.827-16.213 25.596-23.894 42.236-16.641 16.213 6.827 23.898 25.6 16.644 42.24l-85.333 199.257c-5.12 11.947-17.067 19.2-29.44 19.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-programming"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":420,"id":707,"name":"message-programming","prevSize":32,"code":59945},"setIdx":2,"setId":2,"iconIdx":194},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M632.738 541.009c-17.493 0-32-14.507-32-32v-148.905h-148.907c-17.493 0-31.998-14.507-31.998-32s14.505-32 31.998-32h180.907c17.493 0 32 14.507 32 32v180.905c0 17.493-14.507 32-32 32z","M391.226 601.178c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l241.494-241.492c12.373-12.373 32.853-12.373 45.227 0s12.373 32.854 0 45.227l-241.495 241.492c-5.973 6.4-14.507 9.387-22.613 9.387z","M512.017 777.822c-90.025 0-180.479-14.507-266.239-43.093-16.64-5.547-25.6-23.893-20.053-40.533s23.894-26.027 40.534-20.053c158.72 52.907 333.225 52.907 491.945 0 16.64-5.547 34.987 3.413 40.533 20.053s-3.413 34.987-20.053 40.533c-86.187 29.013-176.64 43.093-266.667 43.093z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send-sqaure-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":421,"id":706,"name":"send-sqaure-2","prevSize":32,"code":59946},"setIdx":2,"setId":2,"iconIdx":195},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 265.81c-40.107 0-80.213-7.679-118.613-23.039-11.947-4.693-20.053-16.64-20.053-29.867v-128c0-10.667 5.12-20.48 14.080-26.453s20.053-7.254 29.867-3.414c61.013 24.32 128.427 24.32 189.44 0 9.813-3.84 20.907-2.559 29.867 3.414s14.080 15.786 14.080 26.453v128c0 13.227-8.107 24.747-20.053 29.867-38.4 15.36-78.507 23.039-118.613 23.039zM544 190.717c48.64 14.933 100.693 14.933 149.333 0v-61.865c-49.067 11.947-100.267 11.947-149.333 0v61.865z","M512 373.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M853.333 970.667h-682.667c-17.493 0-32-14.507-32-32v-469.333c0-103.253 56.747-160 160-160h426.667c103.253 0 160 56.747 160 160v469.333c0 17.493-14.507 32-32 32zM202.667 906.667h618.667v-437.333c0-67.413-28.587-96-96-96h-426.667c-67.413 0-96 28.587-96 96v437.333z","M828.591 544h-633.174c-17.493 0-32-14.507-32-32s14.507-32 32-32h633.174c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M372.916 512h-64v426.667h64v-426.667z","M543.582 512h-64v426.667h64v-426.667z","M714.249 512h-64v426.667h64v-426.667z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["courthouse"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":422,"id":705,"name":"courthouse","prevSize":32,"code":59947},"setIdx":2,"setId":2,"iconIdx":196},{"icon":{"paths":["M554.667 970.667h-85.333c-140.8 0-225.707-28.16-241.493-171.093-2.56-19.2-3.84-42.24-3.84-74.24v-426.667c0-32 1.28-55.040 4.267-75.52 15.36-141.653 100.267-169.813 241.067-169.813h85.333c140.8 0 225.707 28.16 241.493 171.093 2.56 19.2 3.84 42.24 3.84 74.24v426.667c0 32-1.28 55.040-4.267 75.52-15.36 141.653-100.267 169.813-241.067 169.813zM469.333 117.333c-141.227 0-168.107 28.587-177.493 113.92-2.56 18.347-3.84 38.4-3.84 67.413v426.667c0 29.013 1.28 49.067 3.413 66.133 9.387 86.613 36.693 115.2 177.92 115.2h85.333c141.227 0 168.107-28.587 177.493-113.92 2.56-17.92 3.84-38.4 3.84-67.413v-426.667c0-28.587-1.28-49.067-3.413-66.133-9.387-86.613-36.693-115.2-177.92-115.2h-85.333z","M241.92 828.591h-14.507c-131.84 0-174.080-42.24-174.080-174.507v-284.161c0-132.267 42.24-174.507 174.080-174.507h14.507c7.253 0 13.227 0 20.053 0.427 8.96 0.427 17.067 4.693 22.613 11.947s8.107 15.787 6.827 24.747c-2.133 17.067-3.413 37.12-3.413 66.133v426.668c0 29.013 1.28 49.067 3.413 66.133 1.28 8.96-1.28 17.92-6.827 24.747s-13.653 11.093-22.613 11.947c-6.827 0.427-12.8 0.427-20.053 0.427zM224.853 259.417c-93.44 0.427-107.52 15.36-107.52 110.507v284.161c0 95.147 14.080 110.080 107.52 110.507-0.427-11.52-0.853-24.32-0.853-39.253v-426.668c0-14.933 0.427-27.733 0.853-39.253z","M796.574 828.591h-14.507c-7.253 0-13.227 0-20.053-0.427-8.96-0.427-17.067-4.693-22.613-11.947-5.547-6.827-8.107-15.787-6.827-24.747 2.56-17.067 3.413-37.547 3.413-66.133v-426.668c0-28.587-1.28-49.067-3.413-66.133-1.28-8.96 1.28-17.92 6.827-24.747s13.653-11.093 22.613-11.947c6.827-0.427 12.8-0.427 20.053-0.427h14.507c131.84 0 174.080 42.24 174.080 174.507v284.161c0 132.267-42.24 174.507-174.080 174.507zM799.134 259.417c0.427 11.52 0.853 24.32 0.853 39.253v426.668c0 14.933-0.427 27.733-0.853 39.253 93.44-0.427 107.52-15.36 107.52-110.507v-284.161c0-95.147-14.080-110.080-107.52-110.507z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-horizontal-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":423,"id":704,"name":"slider-horizontal-1","prevSize":32,"code":59948},"setIdx":2,"setId":2,"iconIdx":197},{"icon":{"paths":["M896 224h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 437.333h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 650.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 864h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["textalign-justifyright"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":424,"id":703,"name":"textalign-justifyright","prevSize":32,"code":59949},"setIdx":2,"setId":2,"iconIdx":198},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-49.92-36.693-98.133-77.653-143.787-122.453-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-102.4-87.040-151.893-22.187-52.907-33.28-104.107-33.28-152.32 0-33.28 5.973-64.853 17.493-94.293 11.947-30.293 31.147-58.453 57.173-82.773 32.853-32.427 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.907 23.893 40.533 45.653 60.16 65.707 25.173 24.747 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.787 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.627 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-1.28-2.56-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-9.387-3.84-13.227-7.68-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.48-17.493-42.667-37.973-69.547-64.427-20.907-21.333-41.813-43.947-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.12-12.8c-2.56-9.813-3.413-15.36-3.413-21.333 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.987-6.827-7.68-14.507-13.653-22.613l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-2.133-0.427-3.84 0-4.693 0.853z","M896.009 364.8h-204.8c-17.493 0-32-14.507-32-32v-204.8c0-17.493 14.507-32 32-32s32 14.507 32 32v172.8h172.8c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-incoming"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":425,"id":702,"name":"call-incoming","prevSize":32,"code":59950},"setIdx":2,"setId":2,"iconIdx":199},{"icon":{"paths":["M938.662 590.933c-5.547 0-11.093-1.28-16.213-4.693l-106.667-64c-55.467-33.28-124.587-33.28-180.48 0-75.947 45.653-170.24 45.653-246.187 0-55.467-33.28-124.586-33.28-180.479 0l-106.667 64c-15.36 8.96-34.988 4.267-43.948-11.093s-4.266-34.987 11.094-43.947l106.667-64c75.947-45.655 170.241-45.655 246.188 0 55.466 33.28 124.586 33.28 180.48 0 75.947-45.655 170.24-45.655 246.187 0l106.667 64c15.36 8.96 20.053 28.587 11.093 43.947-6.4 10.24-17.067 15.787-27.733 15.787z","M298.672 292.268c-42.667 0-85.334-11.52-123.308-34.133l-106.667-64c-15.36-8.96-20.052-28.587-11.092-43.947 8.96-14.933 28.587-20.053 43.947-11.093l106.667 64c55.467 33.28 124.586 33.28 180.479 0 75.947-45.653 170.24-45.653 246.187 0 55.467 33.28 124.587 33.28 180.48 0l106.667-64c15.36-8.96 34.987-4.267 43.947 11.093 8.96 14.933 4.267 34.987-11.093 43.947l-106.667 64c-75.947 45.653-170.24 45.653-246.187 0-55.467-33.28-124.587-33.28-180.479 0-37.547 22.613-80.213 34.133-122.88 34.133z","M938.662 889.6c-5.547 0-11.093-1.28-16.213-4.693l-106.667-64c-55.467-33.28-124.587-33.28-180.48 0-75.947 45.653-170.24 45.653-246.187 0-55.467-33.28-124.586-33.28-180.479 0l-106.667 64c-15.36 8.96-34.988 4.267-43.948-11.093s-4.266-34.987 11.094-43.947l106.667-64c75.947-45.653 170.241-45.653 246.188 0 55.466 33.28 124.586 33.28 180.48 0 75.947-45.653 170.24-45.653 246.187 0l106.667 64c15.36 8.96 20.053 28.587 11.093 43.947-6.4 10.24-17.067 15.787-27.733 15.787z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wind-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":426,"id":701,"name":"wind-2","prevSize":32,"code":59951},"setIdx":2,"setId":2,"iconIdx":200},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M670.276 679.68c-5.547 0-11.093-1.28-16.213-4.693l-132.267-78.933c-32.853-19.627-57.173-62.72-57.173-100.693v-174.933c0-17.493 14.507-32 32-32s32 14.507 32 32v174.933c0 15.36 12.8 37.973 26.027 45.653l132.267 78.933c15.36 8.96 20.053 28.587 11.093 43.947-6.4 10.24-17.067 15.787-27.733 15.787z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clock"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":427,"id":700,"name":"clock","prevSize":32,"code":59952},"setIdx":2,"setId":2,"iconIdx":201},{"icon":{"paths":["M682.667 714.667h-341.333c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32h341.333c17.493 0 32 14.507 32 32v341.333c0 17.493-14.507 32-32 32zM373.333 650.667h277.333v-277.333h-277.333v277.333z","M213.333 970.667c-88.32 0-160-71.68-160-160s71.68-160 160-160h128c17.493 0 32 14.507 32 32v128c0 88.32-71.68 160-160 160zM213.333 714.667c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96v-96h-96z","M341.333 373.333h-128c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160v128c0 17.493-14.507 32-32 32zM213.333 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96h96v-96c0-52.907-43.093-96-96-96z","M810.667 373.333h-128c-17.493 0-32-14.507-32-32v-128c0-88.32 71.68-160 160-160s160 71.68 160 160c0 88.32-71.68 160-160 160zM714.667 309.333h96c52.907 0 96-43.093 96-96s-43.093-96-96-96c-52.907 0-96 43.093-96 96v96z","M810.667 970.667c-88.32 0-160-71.68-160-160v-128c0-17.493 14.507-32 32-32h128c88.32 0 160 71.68 160 160s-71.68 160-160 160zM714.667 714.667v96c0 52.907 43.093 96 96 96s96-43.093 96-96c0-52.907-43.093-96-96-96h-96z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["command"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":428,"id":699,"name":"command","prevSize":32,"code":59953},"setIdx":2,"setId":2,"iconIdx":202},{"icon":{"paths":["M938.667 309.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M256 309.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 458.667c-99.84 0-181.333-81.493-181.333-181.333s81.493-181.333 181.333-181.333c99.84 0 181.333 81.493 181.333 181.333s-81.493 181.333-181.333 181.333zM426.667 160c-64.853 0-117.333 52.48-117.333 117.333s52.48 117.333 117.333 117.333c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333z","M938.667 778.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 778.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 928c-99.84 0-181.333-81.493-181.333-181.333s81.493-181.333 181.333-181.333c99.84 0 181.333 81.493 181.333 181.333s-81.493 181.333-181.333 181.333zM597.333 629.333c-64.853 0-117.333 52.48-117.333 117.333s52.48 117.333 117.333 117.333c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-4"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":429,"id":698,"name":"setting-4","prevSize":32,"code":59954},"setIdx":2,"setId":2,"iconIdx":203},{"icon":{"paths":["M762.458 933.111c-13.227 0-26.453-3.413-38.4-10.667l-171.093-101.551c-17.92-0.427-35.84-1.702-52.907-4.262-11.52-1.707-21.333-9.391-25.6-20.484s-2.133-23.040 5.547-32c28.16-32.853 42.667-72.107 42.667-113.92 0-103.253-90.88-187.307-202.668-187.307-41.813 0-81.92 11.524-115.627 33.711-9.387 5.973-20.907 6.827-31.147 2.133-9.813-4.693-17.066-14.084-18.346-25.178-1.28-11.947-2.133-23.889-2.133-36.262 0-211.628 183.467-383.575 408.748-383.575s408.747 171.946 408.747 383.575c0 116.053-53.76 222.716-148.48 295.676l14.507 116.058c3.413 29.013-9.387 56.32-33.707 72.107-11.947 7.68-26.027 11.947-40.107 11.947zM561.071 756.467c5.973-0.427 11.947 1.284 17.067 4.698l178.773 106.24c4.693 2.987 8.533 1.707 11.093 0 2.133-1.28 5.547-4.693 4.693-10.667l-16.64-134.831c-1.28-11.947 3.84-23.462 13.227-30.289 87.040-61.013 136.96-154.031 136.96-255.151 0-176.212-154.453-319.571-344.747-319.571-183.041 0-333.228 133.122-344.321 300.375 32-12.373 66.56-19.201 102.4-19.201 147.201 0 266.668 112.637 266.668 251.304 0.427 37.547-8.533 73.813-25.173 107.093z","M195.404 970.658c-11.093 0-21.76-2.987-31.573-9.387-19.2-12.373-29.44-33.707-26.88-56.32l8.533-65.707c-57.6-46.933-91.733-116.48-91.733-189.44 0-83.2 43.52-160.853 116.48-207.36 43.947-28.586 96-43.945 150.186-43.945 147.201 0 266.668 112.638 266.668 251.305 0 56.32-20.48 111.787-58.027 155.733-48.213 58.453-120.321 92.587-199.681 95.147l-104.107 61.867c-9.387 5.547-19.627 8.107-29.867 8.107zM319.99 462.498c-41.813 0-81.92 11.52-115.627 33.707-54.613 34.987-87.040 92.16-87.040 153.6 0 59.307 29.014 113.493 80.214 148.48 9.813 6.827 14.933 18.347 13.653 30.293l-9.387 72.96 101.973-60.587c5.12-2.987 10.667-4.693 16.213-4.693 62.72 0 122.028-26.88 159.575-72.533 28.16-33.28 43.093-72.533 43.093-114.347 0-102.827-90.88-186.88-202.668-186.88z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["messages-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":430,"id":697,"name":"messages-2","prevSize":32,"code":59955},"setIdx":2,"setId":2,"iconIdx":204},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M128.427 971.106c-8.533 0-16.641-3.413-22.615-9.387s-9.385-14.080-9.385-22.613l-0.427-637.44c0-38.827 19.625-75.521 52.052-97.281l170.667-113.92c39.68-26.453 90.882-26.453 130.135 0l170.667 113.92c32.853 21.76 52.053 58.028 52.053 97.281l0.427 636.587c0 17.493-14.080 32-32 32l-511.573 0.853zM384 134.413c-10.24 0-20.48 2.985-29.44 8.958l-170.667 113.922c-14.933 9.813-23.893 26.452-23.893 44.372l0.427 605.44 448-0.853-0.427-604.587c0-17.92-8.96-34.561-23.467-43.948l-170.666-113.92c-8.96-6.4-19.627-9.385-29.867-9.385z","M852.501 971.093c-17.493 0-32-14.507-32-32v-171.093c0-17.493 14.507-32 32-32s32 14.507 32 32v171.093c0 17.493-14.080 32-32 32z","M853.333 800c-64.853 0-117.333-52.48-117.333-117.333v-85.333c0-64.853 52.48-117.333 117.333-117.333s117.333 52.48 117.333 117.333v85.333c0 64.853-52.48 117.333-117.333 117.333zM853.333 544c-29.44 0-53.333 23.893-53.333 53.333v85.333c0 29.44 23.893 53.333 53.333 53.333s53.333-23.893 53.333-53.333v-85.333c0-29.44-23.893-53.333-53.333-53.333z","M640 629.333h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 970.667c-17.493 0-32-14.507-32-32v-160c0-17.493 14.507-32 32-32s32 14.507 32 32v160c0 17.493-14.507 32-32 32z","M384 480c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM384 352c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["building-3"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":431,"id":696,"name":"building-3","prevSize":32,"code":59956},"setIdx":2,"setId":2,"iconIdx":205},{"icon":{"paths":["M725.333 885.333h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-21.333c0-17.493 14.507-32 32-32 40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667c-17.493 0-32-14.507-32-32v-21.333c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v42.667c0 17.493-14.507 32-32 32-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c17.493 0 32 14.507 32 32 0 188.16-57.173 245.333-245.333 245.333zM117.333 646.827c0.853 146.773 31.147 174.507 181.333 174.507h426.667c142.507 0 177.067-25.173 180.907-153.173-61.013-14.507-106.24-69.547-106.24-134.827s45.653-120.32 106.667-134.827v-14.507c0-152.32-29.013-181.333-181.333-181.333h-426.667c-150.187 0-180.48 27.733-181.333 174.507 61.013 14.507 106.667 69.547 106.667 134.827s-45.653 120.32-106.667 134.827z","M640.009 677.542c-23.893 0-43.093-19.2-43.093-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.347 42.667-42.24 42.667z","M384.010 464.209c-23.893 0-43.093-19.2-43.093-42.668s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.347 42.668-42.24 42.668z","M368.227 701.018c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l287.146-287.145c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-287.146 287.145c-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ticket-discount"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":432,"id":695,"name":"ticket-discount","prevSize":32,"code":59957},"setIdx":2,"setId":2,"iconIdx":206},{"icon":{"paths":["M635.733 970.667h-247.466c-37.973 0-86.614-20.053-113.067-46.933l-174.933-174.933c-26.88-26.88-46.934-75.52-46.934-113.067v-247.466c0-37.973 20.054-86.613 46.934-113.067l174.933-174.933c26.88-26.88 75.52-46.934 113.067-46.934h247.466c37.973 0 86.613 20.054 113.067 46.934l174.933 174.933c26.88 26.88 46.933 75.52 46.933 113.067v247.466c0 37.973-20.053 86.613-46.933 113.067l-174.933 174.933c-26.88 26.88-75.093 46.933-113.067 46.933zM388.267 117.333c-20.907 0-53.334 13.227-67.841 28.16l-174.933 174.934c-14.507 14.933-28.16 46.933-28.16 67.84v247.466c0 20.907 13.227 53.333 28.16 67.84l174.933 174.933c14.933 14.507 46.934 28.16 67.841 28.16h247.466c20.907 0 53.333-13.227 67.84-28.16l174.933-174.933c14.507-14.933 28.16-46.933 28.16-67.84v-247.466c0-20.907-13.227-53.333-28.16-67.84l-174.933-174.934c-14.933-14.507-46.933-28.16-67.84-28.16h-247.466z","M210.727 846.076c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l603.306-603.308c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-603.307 603.308c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forbidden"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":433,"id":694,"name":"forbidden","prevSize":32,"code":59958},"setIdx":2,"setId":2,"iconIdx":207},{"icon":{"paths":["M213.333 714.667c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M224 394.667c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667zM224 117.333c-58.88 0-106.667 47.787-106.667 106.667s47.787 106.667 106.667 106.667c58.88 0 106.667-47.787 106.667-106.667s-47.787-106.667-106.667-106.667z","M213.333 970.667c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM213.333 714.667c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M810.667 970.667c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 714.667c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M775.236 716.373c-13.227 0-25.6-8.107-30.293-21.333-31.147-89.6-115.627-149.76-210.773-149.76-0.427 0-0.427 0-0.853 0l-146.346 0.427c-0.427 0-0.427 0-0.853 0-93.44 0-174.933-63.147-198.4-153.6-4.267-17.067 5.973-34.56 23.040-38.827s34.56 5.974 38.827 23.040c16.213 62.293 72.107 105.813 136.533 105.813h0.427l146.346-0.427c0.427 0 0.853 0 1.28 0 122.027 0 230.827 77.227 270.933 192.853 5.973 16.64-2.987 34.987-19.627 40.533-3.413 0.427-6.827 1.28-10.24 1.28z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hierarchy"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":434,"id":693,"name":"hierarchy","prevSize":32,"code":59959},"setIdx":2,"setId":2,"iconIdx":208},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667 0 59.733-11.093 116.907-33.28 170.667-3.84 8.96-11.093 15.787-20.48 18.347-9.387 2.987-19.2 1.28-27.307-4.267-50.347-34.56-118.613-32-165.973 5.547-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 1.28 2.133 2.133 3.413 3.413 4.693 6.827 7.68 9.387 18.347 7.253 28.587s-9.387 18.347-19.2 22.187c-54.187 22.613-111.787 33.707-171.093 33.707zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c38.4 0 75.947-5.547 112.213-16.64-10.667-24.747-16.213-51.627-16.213-79.36 0-62.293 27.733-119.893 75.947-158.293 57.6-46.080 139.52-56.747 206.080-28.16 10.667-35.84 16.213-73.813 16.213-112.64 0.427-217.174-176.64-394.24-394.24-394.24z","M464.166 685.658c-16.64 0-32.427-3.84-46.080-11.947-31.573-18.347-49.919-55.467-49.919-102.4v-118.613c0-46.934 18.346-84.053 49.919-102.4 32-18.347 73.387-15.36 113.92 8.107l102.4 59.305c40.533 23.468 63.573 58.028 63.573 94.295s-23.040 71.253-63.573 94.293l-102.4 59.307c-23.040 13.227-46.080 20.053-67.84 20.053zM464.593 402.35c-5.547 0-10.24 1.281-14.507 3.414-11.52 6.827-17.92 23.893-17.92 46.933v118.613c0 23.040 6.4 40.533 17.92 46.933s29.44 3.84 49.92-8.107l102.4-59.307c20.053-11.52 31.573-26.027 31.573-39.253s-11.52-27.307-31.573-39.253l-102.4-59.308c-13.227-6.827-25.173-10.667-35.413-10.667z","M810.667 1013.333c-66.987 0-128.853-32.853-165.973-87.893-1.707-1.28-5.12-6.4-7.68-11.093-18.773-30.293-29.013-66.56-29.013-103.68 0-62.293 27.733-119.893 75.947-158.293 68.693-54.613 169.813-58.453 241.92-8.107 54.613 37.973 87.040 99.84 87.040 166.4 0 37.12-10.24 73.391-29.44 104.538-10.667 17.92-24.32 34.129-40.533 47.782-34.987 32.427-82.347 50.347-132.267 50.347zM810.667 672c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 1.28 2.133 2.133 3.418 3.413 4.698 27.733 40.533 69.973 62.716 115.627 62.716 33.707 0 66.133-12.373 90.88-34.56 11.093-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-45.227-22.187-87.889-59.733-113.489-23.893-16.64-51.2-25.178-79.36-25.178z","M856.337 887.044c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M765.060 888.316c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":435,"id":692,"name":"play-remove","prevSize":32,"code":59960},"setIdx":2,"setId":2,"iconIdx":209},{"icon":{"paths":["M682.667 970.667h-341.333c-146.773 0-245.333-98.56-245.333-245.333v-426.667c0-146.773 98.56-245.333 245.333-245.333h210.347c65.707 0 127.147 25.6 173.653 71.68l130.987 130.987c46.507 46.507 71.68 107.947 71.68 173.653v295.68c0 146.773-98.56 245.333-245.333 245.333zM341.333 117.333c-110.080 0-181.333 71.253-181.333 181.333v426.667c0 110.080 71.253 181.333 181.333 181.333h341.333c110.080 0 181.333-71.253 181.333-181.333v-295.68c0-48.213-18.773-93.867-53.333-128.427l-130.987-130.56c-34.133-34.133-79.787-53.333-128.427-53.333h-209.92z","M597.333 821.333h-170.667c-88.32 0-160-71.68-160-160v-128c0-88.32 71.68-160 160-160h170.667c88.32 0 160 71.68 160 160v128c0 88.32-71.68 160-160 160zM426.667 437.333c-52.907 0-96 43.093-96 96v128c0 52.907 43.093 96 96 96h170.667c52.907 0 96-43.093 96-96v-128c0-52.907-43.093-96-96-96h-170.667z","M512 821.333c-17.493 0-32-14.507-32-32v-384c0-17.493 14.507-32 32-32s32 14.507 32 32v384c0 17.493-14.507 32-32 32z","M704 629.333h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simcard"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":436,"id":691,"name":"simcard","prevSize":32,"code":59961},"setIdx":2,"setId":2,"iconIdx":210},{"icon":{"paths":["M190.707 519.258c-8.107 0-16.213-2.987-22.613-9.387l-51.627-51.627-51.627 51.627c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l74.24-74.239c12.373-12.373 32.853-12.373 45.227 0l74.24 74.239c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.387-22.613 9.387z","M907.132 642.987c-8.107 0-16.213-2.987-22.613-9.387l-74.24-74.24c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l51.627 51.627 51.627-51.627c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-74.24 74.24c-5.973 5.973-14.507 9.387-22.613 9.387z","M907.098 642.987c-17.493 0-32-14.507-32-32v-98.987c0-200.107-162.987-363.094-363.093-363.094-110.509 0-213.762 49.493-283.309 136.107-11.093 13.653-31.147 15.787-44.8 5.12-13.653-11.093-16.213-31.146-5.12-44.8 81.493-101.973 203.093-160 333.229-160 235.52 0 427.093 191.574 427.093 427.093v98.987c0 17.067-14.080 31.573-32 31.573z","M512.009 939.089c-235.518 0-427.092-191.573-427.092-427.093v-98.985c0-17.493 14.507-32 32-32s32 14.507 32 32v98.985c0 200.107 162.987 363.093 363.092 363.093 110.507 0 213.76-49.493 283.307-136.107 11.093-13.653 31.147-16.209 44.8-5.116s16.213 31.142 5.12 44.796c-81.493 101.973-203.093 160.427-333.227 160.427z","M570.88 544h-186.88c-17.493 0-32-14.507-32-32v-149.333c0-17.493 14.507-32 32-32h186.88c56.747 0 106.667 49.92 106.667 106.667 0 58.88-48.213 106.667-106.667 106.667zM416 480h154.453c23.467 0 42.667-19.2 42.667-42.667 0-19.2-19.2-42.667-42.667-42.667h-154.453v85.333z","M597.333 693.333h-213.333c-17.493 0-32-14.507-32-32v-149.333c0-17.493 14.507-32 32-32h213.333c64.853 0 117.333 47.787 117.333 106.667s-52.48 106.667-117.333 106.667zM416 629.333h181.333c29.44 0 53.333-19.2 53.333-42.667s-23.893-42.667-53.333-42.667h-181.333v85.333z","M503.501 768c-17.493 0-32-14.507-32-32v-74.667c0-17.493 14.507-32 32-32s32 14.507 32 32v74.667c0 17.493-14.507 32-32 32z","M503.501 394.667c-17.493 0-32-14.507-32-32v-74.667c0-17.493 14.507-32 32-32s32 14.507 32 32v74.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bitcoin-refresh"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":437,"id":690,"name":"bitcoin-refresh","prevSize":32,"code":59962},"setIdx":2,"setId":2,"iconIdx":211},{"icon":{"paths":["M725.333 970.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-170.667c0-153.6 81.921-210.773 150.615-232.107 27.733-8.96 59.732-13.227 94.719-13.227h426.667c34.987 0 66.987 4.694 95.147 13.654 68.267 20.907 150.187 78.506 150.187 231.68v170.667c0 155.733-89.6 245.333-245.333 245.333zM298.667 373.333c-28.16 0-53.761 3.413-75.521 10.667-71.253 21.76-105.812 77.653-105.812 170.667v170.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-170.667c0-93.013-34.56-148.907-105.387-170.667-22.187-7.253-47.787-10.667-75.947-10.667h-426.667z","M810.667 385.281c-3.413 0-6.4-0.428-9.813-1.708-21.76-6.827-47.36-10.667-75.52-10.667h-426.667c-28.16 0-53.761 3.413-75.521 10.667-9.813 2.987-20.479 1.28-28.586-4.693s-13.227-15.786-13.227-26.026v-54.188c0-64.853 52.48-117.333 117.333-117.333h426.667c64.853 0 117.333 52.48 117.333 117.333v54.615c0 10.24-4.693 19.626-13.227 26.026-5.547 3.84-11.947 5.974-18.773 5.974zM298.667 245.333c-29.44 0-53.333 23.893-53.333 53.333v14.508c16.64-2.56 34.56-3.841 53.333-3.841h426.667c18.773 0 36.693 1.281 53.333 3.841v-14.508c0-29.44-23.893-53.333-53.333-53.333h-426.667z","M682.667 245.333h-341.333c-17.493 0-32-14.507-32-32v-63.573c0-53.333 43.094-96.427 96.427-96.427h212.48c53.333 0 96.427 43.094 96.427 96.427v63.573c0 17.493-14.507 32-32 32zM373.333 181.333h277.333v-31.573c0-17.92-14.507-32.427-32.427-32.427h-212.48c-17.92 0-32.427 14.507-32.427 32.427v31.573z","M386.987 862.306c-48.64 0-88.32-39.68-88.32-88.32s39.68-88.32 88.32-88.32c48.64 0 88.32 39.68 88.32 88.32s-39.253 88.32-88.32 88.32zM386.987 749.239c-13.653 0-24.32 11.093-24.32 24.32s11.094 24.32 24.32 24.32c13.227 0 24.32-11.093 24.32-24.32s-10.667-24.32-24.32-24.32z","M443.75 805.538c-17.494 0-32-14.507-32-32v-227.413c0-36.693 23.040-66.56 58.454-76.373l113.062-30.72c36.267-9.813 59.311-0.427 72.111 9.387s27.733 29.013 27.733 66.56v220.587c0 17.493-14.507 32-32 32s-32-14.507-32-32v-220.587c0-10.667-2.133-14.933-2.987-15.787-0.853-0.427-5.973-1.28-16.213 1.28l-113.071 30.72c-9.813 2.56-11.089 8.96-11.089 14.507v227.413c0 18.347-14.507 32.427-32 32.427z","M594.321 824.307c-48.64 0-88.32-39.68-88.32-88.32s39.68-88.32 88.32-88.32c48.64 0 88.32 39.68 88.32 88.32s-39.68 88.32-88.32 88.32zM594.321 711.667c-13.653 0-24.32 11.093-24.32 24.32s11.093 24.32 24.32 24.32c13.227 0 24.32-11.093 24.32-24.32s-11.093-24.32-24.32-24.32z","M443.695 644.262c-14.080 0-26.882-9.387-30.722-23.467-4.693-17.067 5.548-34.56 22.615-39.253l206.933-56.32c17.067-4.693 34.556 5.547 39.249 22.613s-5.542 34.56-22.609 39.253l-206.938 56.32c-2.987 0.427-5.969 0.853-8.529 0.853z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-library-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":438,"id":689,"name":"music-library-2","prevSize":32,"code":59963},"setIdx":2,"setId":2,"iconIdx":212},{"icon":{"paths":["M597.333 531.2h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M490.667 928c-241.067 0-437.333-196.267-437.333-437.333s196.267-437.333 437.333-437.333c241.067 0 437.333 196.267 437.333 437.333s-196.267 437.333-437.333 437.333zM490.667 117.333c-206.080 0-373.333 167.68-373.333 373.333s167.253 373.333 373.333 373.333c206.080 0 373.333-167.68 373.333-373.333s-167.253-373.333-373.333-373.333z","M938.684 970.662c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-zoom-out-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":439,"id":688,"name":"search-zoom-out-1","prevSize":32,"code":59964},"setIdx":2,"setId":2,"iconIdx":213},{"icon":{"paths":["M399.787 970.667h-202.667c-98.133 0-143.787-45.653-143.787-143.787v-202.667c0-98.56 45.653-144.213 143.787-144.213h101.547c17.493 0 32 14.507 32 32v101.12c0 62.293 17.92 80.213 79.787 80.213h101.547c17.493 0 32 14.507 32 32v101.547c0 98.133-45.653 143.787-144.213 143.787zM197.12 544c-61.867 0-79.787 17.92-79.787 80.213v202.667c0 61.867 17.92 79.787 79.787 79.787h202.667c62.293 0 80.213-17.92 80.213-79.787v-69.547h-69.547c-98.133 0-143.787-45.653-143.787-144.213v-69.12h-69.547z","M613.12 757.333h-202.667c-98.133 0-143.787-45.653-143.787-144.213v-202.667c0-98.133 45.653-143.787 143.787-143.787h101.547c17.493 0 32 14.507 32 32v101.12c0 62.293 17.92 80.213 79.787 80.213h101.547c17.493 0 32 14.507 32 32v101.12c0 98.56-45.653 144.213-144.213 144.213zM410.453 330.667c-61.867 0-79.787 17.92-79.787 79.787v202.667c0 62.293 17.92 80.213 79.787 80.213h202.667c62.293 0 80.213-17.92 80.213-80.213v-69.12h-69.547c-98.133 0-143.787-45.653-143.787-144.213v-69.12h-69.547z","M826.453 544h-202.667c-98.133 0-143.787-45.653-143.787-144.213v-202.667c0-98.133 45.653-143.787 143.787-143.787h202.667c98.56 0 144.213 45.653 144.213 143.787v202.667c0 98.56-45.653 144.213-144.213 144.213zM623.787 117.333c-61.867 0-79.787 17.92-79.787 79.787v202.667c0 62.293 17.92 80.213 79.787 80.213h202.667c62.293 0 80.213-17.92 80.213-80.213v-202.667c0-61.867-17.92-79.787-80.213-79.787h-202.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":440,"id":687,"name":"square","prevSize":32,"code":59965},"setIdx":2,"setId":2,"iconIdx":214},{"icon":{"paths":["M750.929 962.564h-477.869c-77.654 0-148.48-59.733-161.28-136.533l-56.747-339.627c-8.96-52.907 16.64-120.746 58.88-154.453l295.68-236.802c57.175-46.080 147.197-45.653 204.797 0.427l295.684 236.375c41.813 33.707 67.413 101.546 58.88 154.453l-56.747 339.627c-12.8 75.52-84.907 136.533-161.28 136.533zM511.569 125.443c-22.613 0-45.231 6.825-61.871 20.052l-295.678 236.802c-24.32 19.627-40.96 63.147-35.84 93.867l56.747 339.627c7.68 44.8 52.479 82.773 98.133 82.773h477.869c45.653 0 90.449-37.973 98.129-83.2l56.747-339.627c5.12-30.72-11.942-74.667-35.836-93.867l-295.68-236.375c-17.067-13.227-39.68-20.052-62.72-20.052z","M512 693.333c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 480c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":441,"id":686,"name":"home-1","prevSize":32,"code":59966},"setIdx":2,"setId":2,"iconIdx":215},{"icon":{"paths":["M512 970.667c-223.573 0-405.333-181.76-405.333-405.333s181.76-405.333 405.333-405.333c223.573 0 405.333 181.76 405.333 405.333s-181.76 405.333-405.333 405.333zM512 224c-188.16 0-341.333 153.173-341.333 341.333s153.173 341.333 341.333 341.333c188.16 0 341.333-153.173 341.333-341.333s-153.173-341.333-341.333-341.333z","M512 586.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M640 117.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["timer-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":442,"id":685,"name":"timer-1","prevSize":32,"code":59967},"setIdx":2,"setId":2,"iconIdx":216},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-50.347-36.693-98.56-78.080-143.787-122.88-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-101.973-87.040-151.893-22.187-52.48-33.28-103.68-33.28-151.893 0-33.28 5.973-64.853 17.493-94.293 12.373-30.72 31.147-58.453 57.173-82.773 32.853-32 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.48 23.893 40.533 45.227 60.16 65.707 25.6 25.173 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.36 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.2 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-0.853-2.133-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-11.093-4.267-18.347-4.693-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.907-17.493-42.24-37.547-69.547-64.427-21.333-21.76-41.813-44.373-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.547-12.8c-2.56-9.387-3.413-14.933-3.413-20.907 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.56-7.253-7.253-14.507-13.227-23.040l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-1.707-0.427-3.413 0-4.693 0.853z","M725.35 372.050c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l62.72 62.72 148.053-147.627c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-170.667 170.667c-6.4 5.547-14.507 8.96-22.613 8.96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-received"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":443,"id":684,"name":"call-received","prevSize":32,"code":59968},"setIdx":2,"setId":2,"iconIdx":217},{"icon":{"paths":["M213.37 933.116c-31.573 0-62.72-11.947-86.613-35.84-23.040-23.040-35.84-53.76-35.84-86.613s12.8-63.573 35.84-86.613l554.668-554.668c47.787-47.787 125.44-47.787 173.227 0 23.040 23.040 35.84 53.76 35.84 86.613s-12.8 63.573-35.84 86.613l-554.668 554.668c-23.893 23.893-55.040 35.84-86.613 35.84zM768.038 197.542c-14.933 0-29.867 5.547-41.387 17.067l-554.668 554.668c-11.093 11.093-17.067 25.6-17.067 41.387s5.973 30.293 17.067 41.387c22.613 22.613 60.16 22.613 82.773 0l554.668-554.668c11.093-11.093 17.067-25.6 17.067-41.387s-5.973-30.293-17.067-41.387c-11.52-11.52-26.453-17.067-41.387-17.067z","M768.393 415.581c-8.107 0-16.213-2.987-22.613-9.387l-128-128c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l128 128c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M426.627 234.669c-2.133 0-3.84-0.427-5.973-0.853l-58.027-17.067-58.027 17.067c-7.68 2.133-15.787 0-20.907-5.547-5.547-5.547-7.68-13.227-5.547-20.907l17.067-58.027-17.067-58.027c-2.133-7.68 0-15.787 5.547-20.907 5.547-5.547 13.653-7.68 20.907-5.547l58.027 17.067 58.027-17.067c7.681-2.133 15.361 0 20.908 5.547s7.68 13.653 5.547 20.907l-17.067 58.027 17.067 58.027c2.133 7.68 0 15.787-5.547 20.907-3.84 4.267-9.387 6.4-14.935 6.4zM362.627 173.229c2.133 0 3.84 0.427 5.974 0.853l26.453 7.68-7.68-26.453c-1.28-3.84-1.28-8.107 0-11.947l7.68-26.453-26.453 7.68c-3.84 1.28-8.107 1.28-11.947 0l-26.453-7.68 7.68 26.453c1.28 3.84 1.28 8.107 0 11.947l-7.68 26.453 26.453-7.68c2.133-0.427 3.84-0.853 5.973-0.853z","M255.96 490.671c-2.133 0-3.84-0.427-5.973-0.853l-58.027-17.067-58.027 17.067c-7.68 2.133-15.36 0-20.907-5.547s-7.68-13.653-5.547-20.907l17.067-58.029-17.067-58.027c-2.133-7.68 0-15.787 5.547-20.907s13.653-7.68 20.907-5.547l58.027 17.067 58.027-17.067c7.253-2.133 15.36 0 20.906 5.547s7.68 13.653 5.547 20.907l-17.067 58.027 17.067 58.029c2.134 7.68 0 15.787-5.547 20.907-3.84 4.267-9.386 6.4-14.933 6.4zM191.96 429.231c2.133 0 3.84 0.427 5.973 0.853l26.454 7.68-7.68-26.455c-1.28-3.84-1.28-8.107 0-11.947l7.68-26.453-26.454 7.68c-3.84 1.28-8.107 1.28-11.947 0l-26.453-7.68 7.68 26.453c1.28 3.84 1.28 8.107 0 11.947l-7.68 26.455 26.453-7.68c2.133-0.427 3.84-0.853 5.973-0.853z","M895.962 704.004c-2.133 0-3.84-0.427-5.973-0.853l-58.027-17.067-58.027 17.067c-7.68 2.133-15.36 0-20.907-5.547s-7.68-13.653-5.547-20.907l17.067-58.027-17.067-58.027c-2.133-7.68 0-15.787 5.547-20.907s13.653-7.68 20.907-5.547l58.027 17.067 58.027-17.067c7.253-2.133 15.36 0 20.907 5.547s7.68 13.653 5.547 20.907l-17.067 58.027 17.067 58.027c2.133 7.68 0 15.787-5.547 20.907-3.84 4.267-9.387 6.4-14.933 6.4zM831.962 642.564c2.133 0 3.84 0.427 5.973 0.853l26.453 7.68-7.68-26.453c-1.28-3.84-1.28-8.107 0-11.947l7.68-26.453-26.453 7.68c-3.84 1.28-8.107 1.28-11.947 0l-26.453-7.68 7.68 26.453c1.28 3.84 1.28 8.107 0 11.947l-7.68 26.453 26.453-7.68c2.133-0.427 3.84-0.853 5.973-0.853z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["magicpen"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":444,"id":683,"name":"magicpen","prevSize":32,"code":59969},"setIdx":2,"setId":2,"iconIdx":218},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-217.6-177.067-394.667-394.667-394.667s-394.667 177.067-394.667 394.667c0 217.6 177.067 394.667 394.667 394.667 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384.009 928h-42.667c-17.493 0-32-14.507-32-32s13.654-31.573 31.147-32c-66.987-228.693-66.987-475.307 0-704-17.067-0.427-31.147-14.507-31.147-32s14.507-32 32-32h42.667c10.24 0 20.053 5.12 26.026 13.227 5.973 8.533 7.68 19.2 4.267 29.013-80.213 241.067-80.213 506.88 0 747.947 3.413 9.813 1.707 20.48-4.267 29.013s-15.786 12.8-26.026 12.8z","M702.31 544c-17.493 0-32-14.507-32-32 0-127.148-20.48-253.015-60.587-373.762-5.547-16.64 3.413-34.987 20.053-40.534s34.987 3.415 40.533 20.055c42.24 127.147 64 259.84 64 394.241 0 17.493-14.507 32-32 32z","M512 734.285c-119.467 0-237.653-17.067-352-50.773-0.427 17.067-14.507 31.147-32 31.147s-32-14.507-32-32v-42.667c0-10.24 5.12-20.053 13.227-26.027s19.2-7.68 29.013-4.267c120.747 40.107 246.614 60.587 373.76 60.587 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896.030 415.995c-3.413 0-6.827-0.426-10.24-1.706-241.067-80.213-506.881-80.213-747.948 0-16.64 5.547-34.987-3.415-40.534-20.055s3.413-34.988 20.053-40.534c254.293-84.907 534.188-84.907 788.055 0 16.64 5.547 25.6 23.894 20.053 40.534-3.413 13.227-16.213 21.76-29.44 21.76z","M779.076 970.658c-105.813 0-191.578-86.187-191.578-191.573s86.191-192 191.578-192c21.333 0 42.667 2.982 62.72 9.382 17.067 5.12 26.453 23.040 21.333 40.107s-23.040 26.453-40.107 21.333c-14.080-4.267-29.013-6.396-43.947-6.396-70.4 0-127.578 57.173-127.578 128s57.178 127.573 127.578 127.573c70.4 0 127.569-57.173 127.569-127.573 0-25.6-7.253-49.924-21.333-70.831-9.813-14.507-5.973-34.556 8.96-44.369 14.507-9.813 34.56-5.973 44.373 8.96 21.333 31.573 32.431 68.693 32.431 106.667-0.427 104.533-86.613 190.72-192 190.72z","M855.010 663.458c-8.96 0-17.92-3.84-24.32-11.093l-53.333-61.013c-11.52-13.227-10.24-33.707 2.987-45.227s33.28-10.24 45.227 2.987l53.333 61.013c11.52 13.227 10.24 33.707-2.987 45.227-5.973 5.547-13.227 8.107-20.907 8.107z","M792.768 708.702c-9.813 0-19.627-4.693-26.027-13.227-10.24-14.080-7.253-34.133 6.827-44.8l62.293-45.227c14.080-10.667 34.133-7.253 44.8 6.827 10.24 14.080 7.253 34.133-6.827 44.8l-62.293 45.227c-5.547 4.267-11.947 6.4-18.773 6.4z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["global-refresh"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":445,"id":682,"name":"global-refresh","prevSize":32,"code":59970},"setIdx":2,"setId":2,"iconIdx":219},{"icon":{"paths":["M828.587 501.333h-145.92c-17.493 0-32-14.507-32-32v-298.24c0-31.573 12.373-61.013 34.56-83.2s51.627-34.56 83.2-34.56h0.427c53.333 0.427 103.68 21.333 142.080 59.307 38.4 38.827 59.307 90.027 59.307 143.36v103.253c0.427 84.907-56.747 142.080-141.653 142.080zM714.667 437.333h113.92c49.493 0 78.080-28.587 78.080-78.080v-103.253c0-36.693-14.507-71.68-40.533-98.133-26.027-25.6-61.013-40.107-97.28-40.533 0 0 0 0-0.427 0-14.080 0-27.733 5.547-37.973 15.787s-15.787 23.467-15.787 37.973v266.24z","M384 995.413c-20.053 0-38.827-7.68-52.907-22.187l-70.827-71.253c-3.84-3.84-9.813-4.267-14.080-0.853l-73.387 54.613c-22.613 17.067-52.48 20.053-78.080 7.253s-41.387-38.4-41.387-66.987v-640c0-128.853 73.813-202.667 202.667-202.667h512c17.493 0 32 14.507 32 32s-14.507 32-32 32c-29.44 0-53.333 23.893-53.333 53.333v725.333c0 28.587-15.787 54.187-41.387 66.987s-55.467 10.24-78.080-6.827l-72.96-54.613c-4.267-3.413-10.24-2.56-13.653 0.853l-71.68 71.68c-14.080 13.653-32.853 21.333-52.907 21.333zM252.16 834.987c19.627 0 38.827 7.253 53.333 22.187l70.827 71.253c2.56 2.56 5.973 2.987 7.68 2.987s5.12-0.427 7.68-2.987l71.68-71.68c26.453-26.453 68.267-29.013 97.707-6.4l72.533 54.187c4.693 3.413 8.96 2.133 11.093 0.853s5.973-3.84 5.973-9.387v-725.333c0-19.2 4.693-37.547 12.8-53.333h-407.467c-94.72 0-138.667 43.947-138.667 138.667v640c0 5.973 3.84 8.533 5.973 9.813 2.56 1.28 6.827 2.133 11.093-1.28l72.96-54.613c13.227-9.813 29.013-14.933 44.8-14.933z","M512 587.085h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 416.417h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M254.75 427.085c-23.467 0-42.667-19.201-42.667-42.668s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.668-42.667 42.668z","M254.75 597.751c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-item"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":446,"id":681,"name":"receipt-item","prevSize":32,"code":59727},"setIdx":2,"setId":2,"iconIdx":220},{"icon":{"paths":["M660.894 885.756c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l213.76-213.76c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-213.76 213.76c-6.4 5.973-14.507 9.387-22.613 9.387z","M874.667 671.582h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M149.31 416.424c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l213.76-213.76c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-213.76 213.76c-5.973 5.973-14.507 9.387-22.613 9.387z","M874.667 416.417h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-swap-horizontal"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":447,"id":680,"name":"arrow-swap-horizontal","prevSize":32,"code":59971},"setIdx":2,"setId":2,"iconIdx":221},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M916.459 335.354h-808.959c-17.493 0-32-14.507-32-32s14.080-32 32-32h808.959c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M363.5 329.381c-17.493 0-32-14.507-32-32v-207.36c0-17.493 14.507-32 32-32s32 14.507 32 32v207.36c0 17.493-14.507 32-32 32z","M660.501 310.181c-17.493 0-32-14.507-32-32v-188.16c0-17.493 14.507-32 32-32s32 14.507 32 32v188.16c0 17.92-14.080 32-32 32z","M473.173 773.111c-15.36 0-29.867-3.84-43.093-11.093-29.013-17.067-46.080-51.2-46.080-94.293v-102.4c0-43.093 17.067-77.653 46.507-94.72s67.84-14.507 104.96 7.253l88.747 51.2c37.12 21.333 58.88 53.333 58.88 87.467s-21.76 66.133-59.307 87.467l-88.747 51.2c-20.48 11.947-41.813 17.92-61.867 17.92zM473.6 523.511c-4.267 0-8.107 0.853-11.093 2.56-8.96 5.12-14.507 19.627-14.507 39.253v102.4c0 19.2 5.547 33.707 14.507 39.253 8.96 5.12 24.32 2.56 40.96-7.253l88.747-51.2c16.64-9.813 26.88-21.76 26.88-32s-9.813-22.187-26.88-32l-88.747-51.2c-11.093-6.4-21.76-9.813-29.867-9.813z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-play"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":448,"id":679,"name":"video-play","prevSize":32,"code":59972},"setIdx":2,"setId":2,"iconIdx":222},{"icon":{"paths":["M768 458.667c-17.493 0-32-14.507-32-32v-85.333c0-134.4-37.973-224-224-224s-224 89.6-224 224v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-123.733 29.867-288 288-288s288 164.267 288 288v85.333c0 17.493-14.507 32-32 32z","M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-85.333c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v85.333c0 188.16-57.173 245.333-245.333 245.333zM298.667 458.667c-152.747 0-181.333 29.013-181.333 181.333v85.333c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-85.333c0-152.32-28.587-181.333-181.333-181.333h-426.667z","M341.333 725.329c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-9.813-5.12-14.080-8.96-7.68-8.107-12.374-18.773-12.374-30.293 0-5.547 1.28-11.093 3.413-16.213 2.133-5.547 5.121-9.813 8.961-14.080 4.267-3.84 8.533-6.827 14.080-8.96 15.36-6.827 34.56-2.987 46.506 8.96 3.84 4.267 6.828 8.96 8.961 14.080s3.413 10.667 3.413 16.213c0 11.093-4.694 22.187-12.374 30.293-8.107 7.68-19.2 12.373-30.293 12.373z","M512 725.329c-11.093 0-22.187-4.693-30.293-12.373-7.68-8.107-12.373-18.773-12.373-30.293 0-5.547 0.853-11.093 3.413-16.213 2.133-5.12 5.12-9.813 8.96-14.080 9.813-9.813 24.747-14.507 38.4-11.52 2.987 0.427 5.547 1.28 8.107 2.56 2.56 0.853 5.12 2.133 7.68 3.84 2.133 1.28 4.267 3.413 6.4 5.12 3.84 4.267 6.827 8.96 8.96 14.080s3.413 10.667 3.413 16.213c0 11.52-4.693 22.187-12.373 30.293-2.133 1.707-4.267 3.413-6.4 5.12-2.56 1.707-5.12 2.987-7.68 3.84-2.56 1.28-5.12 2.133-8.107 2.56-2.56 0.427-5.547 0.853-8.107 0.853z","M682.667 725.329c-11.52 0-22.187-4.693-30.293-12.373-3.84-4.267-6.827-8.96-8.96-14.080s-3.413-10.667-3.413-16.213c0-11.093 4.693-22.187 12.373-30.293 2.133-1.707 4.267-3.413 6.4-5.12 2.56-1.707 5.12-2.987 7.68-3.84 2.56-1.28 5.12-2.133 7.68-2.56 14.080-2.987 28.587 1.707 38.827 11.52 7.68 8.107 12.373 18.773 12.373 30.293 0 5.547-1.28 11.093-3.413 16.213-2.133 5.547-5.12 9.813-8.96 14.080-8.107 7.68-19.2 12.373-30.293 12.373z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":449,"id":678,"name":"lock-1","prevSize":32,"code":59973},"setIdx":2,"setId":2,"iconIdx":223},{"icon":{"paths":["M853.76 821.76c-8.107 0-16.213-2.987-22.613-9.387l-211.2-211.2c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l211.2 211.2c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M431.339 786.355c-31.148 0-61.015-12.373-82.775-34.56l-180.907-180.907c-45.653-45.653-45.653-120.32 0-165.975l301.655-301.652c45.653-45.653 120.32-45.653 165.973 0l180.907 180.906c22.187 22.187 34.56 51.627 34.56 82.773s-12.373 61.015-34.56 82.775l-301.653 301.649c-22.187 23.040-51.627 34.991-83.2 34.991zM552.085 133.127c-13.653 0-27.307 5.12-37.547 15.786l-301.655 301.655c-20.907 20.907-20.907 54.609 0 75.516l180.906 180.911c20.053 20.053 55.042 20.053 75.522 0l301.653-301.655c10.24-10.24 15.787-23.467 15.787-37.547s-5.547-27.734-15.787-37.547l-180.907-180.906c-10.667-11.093-24.32-16.213-37.973-16.213z","M341.333 928h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M581.547 671.565c-8.107 0-16.213-2.987-22.613-9.387l-301.653-301.651c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l301.653 301.651c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["judge"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":450,"id":677,"name":"judge","prevSize":32,"code":59974},"setIdx":2,"setId":2,"iconIdx":224},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c17.493 0 32 14.507 32 32s-14.507 32-32 32c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 253.013-205.653 458.667-458.667 458.667z","M588.809 467.196c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.852 0-45.225l349.867-349.867c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-349.867 349.865c-5.973 5.973-14.080 9.387-22.613 9.387z","M760.747 501.329h-206.080c-17.493 0-32-14.507-32-32v-206.079c0-17.493 14.507-32 32-32s32 14.507 32 32v174.079h174.080c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["frame"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":451,"id":676,"name":"frame","prevSize":32,"code":59975},"setIdx":2,"setId":2,"iconIdx":225},{"icon":{"paths":["M896 501.338h-768c-40.96 0-74.667-33.707-74.667-74.667v-141.652c0-29.013 20.052-58.453 46.932-69.12l384.001-153.599c16.213-6.4 39.253-6.4 55.467 0l384 153.599c26.88 10.667 46.933 40.533 46.933 69.12v141.652c0 40.96-33.707 74.667-74.667 74.667zM512 121.18c-1.707 0-3.413-0.002-4.267 0.425l-383.575 153.602c-2.56 1.28-6.825 6.826-6.825 9.812v141.652c0 5.973 4.693 10.667 10.667 10.667h768c5.973 0 10.667-4.693 10.667-10.667v-141.652c0-2.987-3.84-8.532-6.827-9.812l-384-153.602c-0.853-0.427-2.133-0.425-3.84-0.425z","M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32v-128c0-40.96 33.707-74.667 74.667-74.667h768c40.96 0 74.667 33.707 74.667 74.667v128c0 17.493-14.507 32-32 32zM117.333 906.667h789.333v-96c0-5.973-4.693-10.667-10.667-10.667h-768c-5.973 0-10.667 4.693-10.667 10.667v96z","M170.667 800c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M341.333 800c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M512 800c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M682.667 800c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M853.333 800c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M981.333 970.667h-938.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h938.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 394.667c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM512 266.667c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bank"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":452,"id":675,"name":"bank","prevSize":32,"code":59976},"setIdx":2,"setId":2,"iconIdx":226},{"icon":{"paths":["M629.333 501.333h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M511.987 971.093c-63.147 0-126.72-23.893-176.214-71.253-125.867-121.173-264.96-314.453-212.48-544.427 47.36-208.64 229.547-302.080 388.694-302.080 0 0 0 0 0.427 0 159.147 0 341.333 93.44 388.693 302.507 52.053 229.973-87.040 422.827-212.907 544-49.493 47.36-113.067 71.253-176.213 71.253zM511.987 117.333c-124.16 0-283.734 66.133-325.974 252.16-46.080 200.96 80.213 374.187 194.56 483.84 73.814 71.253 189.44 71.253 263.254 0 113.92-109.653 240.213-282.88 194.987-483.84-42.667-186.027-202.667-252.16-326.827-252.16z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["location-minus"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":453,"id":674,"name":"location-minus","prevSize":32,"code":59977},"setIdx":2,"setId":2,"iconIdx":227},{"icon":{"paths":["M512 714.667c-182.187 0-330.667-148.48-330.667-330.667s148.48-330.667 330.667-330.667c182.187 0 330.667 148.48 330.667 330.667s-148.48 330.667-330.667 330.667zM512 117.333c-147.2 0-266.667 119.467-266.667 266.667s119.467 266.667 266.667 266.667c147.2 0 266.667-119.467 266.667-266.667s-119.467-266.667-266.667-266.667z","M512 970.667c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v256c0 17.493-14.507 32-32 32z","M640 842.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["woman"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":454,"id":673,"name":"woman","prevSize":32,"code":59978},"setIdx":2,"setId":2,"iconIdx":228},{"icon":{"paths":["M896 970.667h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M364.379 968.96c-42.667 0-83.198-16.64-113.065-46.933l-149.76-149.76c-62.294-62.293-62.294-163.84 0-226.133l445.011-445.013c60.16-60.16 165.973-60.16 226.133 0l149.76 149.76c62.293 62.293 62.293 163.84 0 226.134l-445.009 445.013c-29.867 30.72-69.976 46.933-113.070 46.933zM146.78 727.467l149.76 149.76c36.267 36.267 99.84 36.267 135.682 0l445.009-445.013c37.547-37.547 37.547-98.134 0-135.68l-149.76-149.76c-35.84-35.84-99.413-36.267-135.68 0l-445.011 445.013c-37.547 37.12-37.547 98.133 0 135.68z","M634.475 752.205c-8.107 0-16.213-2.987-22.613-9.387l-330.665-330.665c-12.373-12.373-12.373-32.854 0-45.227s32.853-12.373 45.226 0l330.665 330.666c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M150.228 785.489c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.853 0-45.227l241.495-241.493c12.373-12.373 32.853-12.373 45.227 0 12.375 12.373 12.375 32.853 0 45.227l-241.495 241.493c-6.4 6.4-14.505 9.387-22.612 9.387z","M270.478 906.24c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.853 0-45.227l241.493-241.493c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-241.494 241.493c-5.973 5.973-14.078 9.387-22.612 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eraser-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":455,"id":672,"name":"eraser-1","prevSize":32,"code":59979},"setIdx":2,"setId":2,"iconIdx":229},{"icon":{"paths":["M445.009 783.782c-6.4 0-12.373-1.707-17.92-5.547-8.96-5.973-14.080-15.787-14.080-26.453 0-6.4-0.427-13.227-1.28-20.053-3.84-30.293-17.493-56.747-40.533-79.787s-51.627-37.547-82.347-41.387c-5.12-0.427-12.373-0.853-19.2-0.427-11.093 0.853-21.333-3.84-27.733-12.8-6.4-8.533-8.107-20.053-4.693-30.293 6.4-17.493 15.787-33.28 26.88-46.080l65.707-82.773c113.066-141.226 342.186-311.039 509.866-378.452 35.84-13.653 73.387-5.547 99.413 20.053 26.88 26.88 34.987 65.28 20.907 100.267-67.413 168.107-236.8 396.799-378.027 509.866l-84.053 67.413c-15.787 11.52-28.587 18.773-41.387 23.893-3.413 1.707-7.68 2.56-11.52 2.56zM321.703 552.102c35.84 9.387 67.84 28.16 94.72 55.040 26.88 26.453 44.8 57.173 53.76 91.307l72.107-58.027c133.973-107.093 294.827-324.266 358.4-483.839 6.4-15.787-2.56-26.88-6.827-30.72-2.987-2.987-14.080-12.373-31.147-5.973-158.72 64-375.893 224.853-483.413 358.826l-57.6 73.387z","M174.054 970.671c-32 0-62.72-12.8-85.76-35.84-26.453-26.453-39.253-63.147-34.987-100.693l11.52-104.96c11.093-104.107 96.427-181.333 202.24-183.467 8.107-0.427 18.773 0 28.587 0.853 46.507 5.973 87.893 26.88 121.173 60.16 32.854 32.853 52.481 72.107 58.454 116.053 1.28 9.387 2.133 19.627 2.133 28.587 0 56.32-21.76 108.8-61.014 148.48-32.853 32.427-75.093 52.48-122.88 58.453l-105.387 11.52c-4.693 0.427-9.387 0.853-14.080 0.853zM275.174 610.138c-1.707 0-3.84 0-5.547 0-64.427 1.28-132.693 45.227-141.227 126.293l-11.52 104.96c-2.133 17.92 4.267 35.413 16.64 48.213 12.373 12.373 29.867 18.773 47.36 16.64l104.96-11.52c32.853-4.267 62.293-17.92 84.48-40.107 27.307-27.307 42.667-64 42.667-103.253 0-6.4-0.427-13.227-1.28-20.053-3.84-30.293-17.493-56.747-40.533-79.787s-51.627-37.547-82.347-41.387c-3.413 0-8.533 0-13.653 0z","M607.565 649.395c-17.493 0-32-14.507-32-32 0-93.867-76.373-169.813-169.815-169.813-17.493 0-32-14.507-32-31.999 0-17.493 14.080-32 31.573-32 128.855 0 233.815 104.959 233.815 233.812 0.427 17.92-14.080 32-31.573 32z","M669.030 969.822c-39.68 0-79.36-18.773-117.333-56.747-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0c50.347 50.347 93.44 50.347 143.787 0l126.293-126.293c50.773-50.773 50.773-93.867 0-144.213l-31.573-31.147c-12.373-12.373-12.8-32.853-0.427-45.227 12.373-12.8 32.853-12.8 45.227-0.427l31.573 31.147c75.947 75.947 75.947 159.147 0 235.093l-126.293 126.293c-37.12 37.547-76.8 56.747-116.48 56.747z","M132.684 480.418c-8.107 0-16.64-2.987-22.613-9.387-75.094-75.521-75.094-159.148 0-234.668l126.293-126.293c75.093-75.094 159.573-75.094 234.668 0l31.573 31.573c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0l-32.001-31.573c-50.347-50.347-93.867-50.347-143.787 0l-126.293 126.293c-50.347 50.773-50.347 93.867 0 144.64 12.373 12.375 12.373 32.855 0 45.228-6.4 5.973-14.507 8.96-22.613 8.96z","M322.143 354.135c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l157.865-157.867c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-157.865 157.867c-6.4 6.4-14.507 9.387-22.613 9.387z","M732.143 701.022c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l126.293-126.293c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-126.293 126.293c-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["designtools"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":456,"id":671,"name":"designtools","prevSize":32,"code":59980},"setIdx":2,"setId":2,"iconIdx":230},{"icon":{"paths":["M554.667 629.333h-469.333c-17.493 0-32-14.507-32-32v-272.213c0-13.654 8.533-25.601 20.906-30.295 12.8-4.693 26.881-0.852 35.414 9.388 26.027 31.147 66.56 48.64 106.667 47.36 34.133-0.853 65.705-13.652 89.599-36.266 11.093-9.387 20.054-20.48 26.88-32.854 13.227-22.613 19.627-47.361 19.2-72.534-0.853-39.253-17.919-75.093-46.932-101.12-10.24-8.96-13.654-23.041-8.961-35.414s16.64-20.906 29.867-20.906h314.026c17.493 0 32 14.507 32 32v426.668c0 65.707-52.48 118.187-117.333 118.187zM117.333 565.333h437.333c29.44 0 53.333-23.893 53.333-53.333v-394.667h-215.893c14.933 27.733 23.040 58.88 23.893 91.307 0.853 37.12-8.534 73.813-27.307 105.813-10.24 18.346-24.32 35.84-39.68 48.64-34.133 32.427-81.067 51.626-130.987 52.906-35.413 1.28-70.399-7.68-100.266-23.893v173.227h-0.427z","M810.667 885.333h-42.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-170.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-42.667c-88.32 0-160-71.68-160-160v-128c0-17.493 14.507-32 32-32h469.333c29.44 0 53.333-23.893 53.333-53.333v-298.667c0-17.493 14.507-32 32-32h78.507c42.24 0 81.067 22.614 101.973 59.307l72.96 127.573c5.547 9.813 5.547 22.187 0 32s-16.213 15.787-27.733 15.787h-55.040c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h128c17.493 0 32 14.507 32 32v128c0 88.32-71.68 160-160 160zM795.733 821.333h14.933c52.907 0 96-43.093 96-96v-96h-96c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.28-74.667 74.667-74.667l-45.653-79.787c-9.387-16.64-27.307-26.88-46.507-26.88h-46.507v266.667c0 64.853-52.48 117.333-117.333 117.333h-437.333v96c0 52.907 43.093 96 96 96h14.932c14.080-49.067 59.308-85.333 113.068-85.333s98.987 36.267 113.067 85.333h115.627c14.080-49.067 59.307-85.333 113.067-85.333s98.56 36.267 112.64 85.333z","M341.333 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM341.333 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M682.667 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM682.667 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M938.667 629.333h-128c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.707-74.667 74.667-74.667h55.040c11.52 0 22.187 5.973 27.733 16.213l72.96 128c2.56 4.693 4.267 10.24 4.267 15.787v85.333c0 17.493-14.507 32-32 32zM810.667 416c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h96v-44.8l-59.733-104.533h-36.267z","M213.333 416c-111.787 0-202.667-90.88-202.667-202.667 0-62.293 27.735-119.894 75.948-158.294 35.84-28.587 81.065-44.372 126.719-44.372 111.787 0 202.667 90.88 202.667 202.667 0 58.027-25.173 113.493-69.12 151.893-37.12 32.853-84.48 50.773-133.547 50.773zM213.333 74.667c-31.573 0-61.441 10.665-86.615 30.719-32.853 26.027-52.052 65.708-52.052 107.948 0 76.373 62.293 138.667 138.667 138.667 33.28 0 65.708-12.373 91.734-34.56 29.867-26.453 46.932-64 46.932-104.107 0-76.373-62.293-138.667-138.667-138.667z","M170.662 288c-10.667 0-21.334-5.546-27.307-15.36-8.96-15.36-4.266-34.988 11.094-43.948l37.974-22.612v-46.081c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 11.093-5.972 21.76-15.359 27.307l-53.333 32c-5.973 3.413-11.521 4.693-17.068 4.693z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["truck-time"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":457,"id":670,"name":"truck-time","prevSize":32,"code":59981},"setIdx":2,"setId":2,"iconIdx":231},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M640 688.201h-209.92c-90.027 0-163.413-73.387-163.413-163.413s73.387-163.412 163.413-163.412h288.853c17.493 0 32 14.507 32 32s-14.507 32-32 32h-288.853c-54.613 0-99.413 44.372-99.413 99.412s44.373 99.413 99.413 99.413h209.92c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M658.394 491.511c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l44.373-44.372-44.373-44.373c-12.373-12.373-12.373-32.854 0-45.227s32.853-12.373 45.227 0l66.987 66.987c12.373 12.373 12.373 32.854 0 45.227l-66.987 66.985c-6.4 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forward-square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":458,"id":669,"name":"forward-square","prevSize":32,"code":59982},"setIdx":2,"setId":2,"iconIdx":232},{"icon":{"paths":["M934.417 459.959h-853.334c-17.493 0-32-14.507-32-32 0-17.495 14.507-32.001 32-32.001h853.334c17.493 0 32 14.507 32 32.001 0 17.493-14.080 32-32 32z","M488.977 907.947h-218.029c-169.813 0-221.865-51.2-221.865-219.307v-350.718c0-134.4 28.586-209.067 180.906-218.027 13.227-0.427 26.452-0.853 40.958-0.853h474.029c169.813 0 221.862 51.2 221.862 219.307v188.158c0 17.493-14.507 32-32 32s-32-14.507-32-32v-188.158c0-131.84-23.462-155.307-157.862-155.307h-474.029c-13.653 0-26.025 0.427-37.971 0.853-92.587 5.547-119.893 26.453-119.893 154.453v350.718c0 131.84 23.465 155.307 157.865 155.307h218.029c17.493 0 32 14.507 32 32s-14.507 31.573-32 31.573z","M763.75 971.959c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM763.75 630.626c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M809.417 849.067c-8.107 0-16.209-2.987-22.609-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.511 9.387-22.618 9.387z","M718.063 849.92c-8.107 0-16.218-2.987-22.618-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-5.973 6.4-14.076 9.387-22.609 9.387z","M422.417 715.959h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.494 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":459,"id":668,"name":"card-remove","prevSize":32,"code":59983},"setIdx":2,"setId":2,"iconIdx":233},{"icon":{"paths":["M238.504 968.538c-99.84 0-184.32-84.48-184.32-184.32v-262.831c-2.56-124.159 43.948-241.491 130.134-329.811 86.187-87.893 202.24-136.107 326.398-136.107 254.293 0 460.8 206.933 460.8 461.225v262.831c0 101.547-82.769 184.32-184.316 184.32s-184.324-82.773-184.324-184.32v-119.893c0-61.013 49.493-110.507 110.507-110.507s110.507 49.493 110.507 110.507v129.28c0 17.493-14.507 32-32 32s-32-14.507-32-32v-129.28c0-29.013-23.467-46.507-46.507-46.507-29.013 0-46.507 23.467-46.507 46.507v119.893c0 65.28 55.044 120.32 120.324 120.32s120.316-55.040 120.316-120.32v-262.831c0-218.878-177.92-397.225-396.8-397.225-107.092 0-206.504 41.386-280.744 116.906s-113.921 176.641-111.788 284.163v263.253c0 65.28 55.040 120.32 120.32 120.32s120.32-55.040 120.32-120.32v-119.893c0-29.013-23.466-46.511-46.506-46.511-29.013 0-46.507 23.471-46.507 46.511v124.582c0 17.493-14.507 32-32 32s-32-14.507-32-32v-124.582c0-61.867 48.64-110.511 110.507-110.511 61.013 0 110.506 49.498 110.506 110.511v119.893c0 101.973-82.773 184.747-184.32 184.747z","M562.334 506.022c-17.067 0-32.427-9.387-39.68-24.747l-61.867-123.307-17.92 33.279c-9.813 18.347-29.438 29.867-50.345 29.867h-31.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h27.306l33.707-62.294c8.106-14.507 23.039-22.186 39.679-23.466 16.64 0 31.573 9.814 39.253 24.32l61.013 122.026 14.507-29.44c9.813-19.627 29.013-31.573 51.2-31.573h34.56c17.493 0 32 14.507 32 32s-14.507 32-32 32h-30.293l-30.293 60.162c-7.68 15.787-22.613 25.173-39.68 25.173z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-play"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":460,"id":667,"name":"music-play","prevSize":32,"code":59984},"setIdx":2,"setId":2,"iconIdx":234},{"icon":{"paths":["M225.285 827.738c-2.56 0-4.693-0.427-7.253-0.853-17.067-3.84-28.16-21.333-23.893-38.4l24.32-104.96c3.413-13.653-3.413-37.12-13.653-47.36l-105.813-105.813c-52.907-52.907-48.64-98.133-41.387-120.321s30.293-61.44 103.68-73.813l136.107-22.613c12.8-2.56 31.147-16.213 36.693-27.733l75.52-150.613c34.132-68.693 78.932-78.507 102.399-78.507s68.267 10.24 102.4 78.507l75.093 150.187c2.56 5.12 8.107 11.093 14.507 16.213 14.080 10.667 16.64 31.147 5.547 44.8-10.667 14.080-30.72 16.64-44.8 5.547-10.24-7.68-23.893-20.907-32.427-37.973l-75.093-150.187c-13.227-26.88-30.293-43.093-45.227-43.093s-32 16.213-45.227 43.52l-75.519 150.187c-14.933 29.867-50.773 56.32-83.627 61.867l-135.68 22.613c-29.013 4.693-48.64 16.213-53.333 30.294s5.12 34.987 26.027 55.467l105.813 105.813c25.6 25.6 38.827 71.68 30.72 107.093l-24.32 104.96c-3.84 14.933-16.64 25.173-31.573 25.173z","M753.463 967.249c-22.613 0-51.627-7.253-87.893-28.587l-127.573-75.52c-13.227-7.68-38.827-7.68-51.627 0l-127.999 75.52c-14.933 8.96-34.987 3.84-43.947-11.093-8.96-15.36-3.84-34.987 11.093-43.947l127.572-75.52c33.28-19.627 83.627-19.627 116.907 0l127.573 75.52c37.12 22.187 60.587 22.187 69.547 15.787s15.36-29.013 5.973-70.827l-30.293-130.987c-8.107-35.413 5.12-81.067 30.72-107.093l105.813-105.813c20.907-20.907 30.293-41.387 26.027-55.467-4.693-14.080-24.32-25.6-53.333-30.293-17.493-2.987-29.013-19.2-26.453-36.693 2.987-17.493 19.2-29.013 36.693-26.453 73.813 12.373 96.853 51.627 103.68 73.813s11.093 67.413-41.387 120.32l-105.387 105.813c-10.24 10.24-16.64 33.28-13.653 47.36l30.293 130.987c19.627 85.333-10.667 122.453-30.293 136.96-10.667 7.68-27.733 16.213-52.053 16.213z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star-slash"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":461,"id":666,"name":"star-slash","prevSize":32,"code":59985},"setIdx":2,"setId":2,"iconIdx":235},{"icon":{"paths":["M810.667 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M512 586.667h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 757.333h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-status"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":462,"id":665,"name":"notification-status","prevSize":32,"code":59986},"setIdx":2,"setId":2,"iconIdx":236},{"icon":{"paths":["M635.733 970.667h-247.466c-37.973 0-86.614-20.053-113.067-46.933l-174.933-174.933c-26.88-26.88-46.934-75.52-46.934-113.067v-247.466c0-37.973 20.054-86.613 46.934-113.067l174.933-174.933c26.88-26.88 75.52-46.934 113.067-46.934h247.466c37.973 0 86.613 20.054 113.067 46.934l174.933 174.933c26.88 26.88 46.933 75.52 46.933 113.067v247.466c0 37.973-20.053 86.613-46.933 113.067l-174.933 174.933c-26.88 26.88-75.093 46.933-113.067 46.933zM388.267 117.333c-20.907 0-53.334 13.227-67.841 28.16l-174.933 174.934c-14.507 14.933-28.16 46.933-28.16 67.84v247.466c0 20.907 13.227 53.333 28.16 67.84l174.933 174.933c14.933 14.507 46.934 28.16 67.841 28.16h247.466c20.907 0 53.333-13.227 67.84-28.16l174.933-174.933c14.507-14.933 28.16-46.933 28.16-67.84v-247.466c0-20.907-13.227-53.333-28.16-67.84l-174.933-174.934c-14.933-14.507-46.933-28.16-67.84-28.16h-247.466z","M362.643 693.329c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l298.669-298.665c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-298.669 298.665c-6.4 6.4-14.507 9.387-22.613 9.387z","M661.312 693.329c-8.107 0-16.213-2.987-22.613-9.387l-298.669-298.665c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l298.669 298.665c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forbidden-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":463,"id":664,"name":"forbidden-2","prevSize":32,"code":59987},"setIdx":2,"setId":2,"iconIdx":237},{"icon":{"paths":["M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-85.333c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v85.333c0 188.16-57.173 245.333-245.333 245.333zM298.667 458.667c-152.747 0-181.333 29.013-181.333 181.333v85.333c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-85.333c0-152.32-28.587-181.333-181.333-181.333h-426.667z","M256 458.667c-17.493 0-32-14.507-32-32v-85.333c0-123.733 29.867-288 288-288 191.147 0 288 82.347 288 245.333 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-84.48-25.6-181.333-224-181.333-186.027 0-224 89.6-224 224v85.333c0 17.493-14.507 32-32 32z","M512 821.333c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 608c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["unlock"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":464,"id":663,"name":"unlock","prevSize":32,"code":59988},"setIdx":2,"setId":2,"iconIdx":238},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M639.979 437.76c-8.107 0-16.213-2.991-22.613-9.391l-105.387-105.384-105.389 105.384c-12.373 12.373-32.853 12.373-45.227 0-12.373-12.371-12.373-32.851 0-45.225l128.002-128c12.373-12.373 32.853-12.373 45.227 0l128 128c12.373 12.373 12.373 32.853 0 45.225-6.4 6.4-14.507 9.391-22.613 9.391z","M512 651.093c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32s32 14.507 32 32v341.333c0 17.92-14.507 32-32 32z","M512.017 777.822c-90.025 0-180.479-14.507-266.239-43.093-16.64-5.547-25.6-23.893-20.053-40.533s23.894-26.027 40.534-20.053c158.72 52.907 333.225 52.907 491.945 0 16.64-5.547 34.987 3.413 40.533 20.053s-3.413 34.987-20.053 40.533c-86.187 29.013-176.64 43.093-266.667 43.093z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":465,"id":662,"name":"send-square","prevSize":32,"code":59989},"setIdx":2,"setId":2,"iconIdx":239},{"icon":{"paths":["M426.227 970.667c-8.533 0-15.36-1.707-20.48-3.84-17.067-6.4-46.080-27.307-46.080-93.44v-104.107c0-17.493 14.507-32 32-32s32 14.507 32 32v104.107c0 21.333 3.84 30.72 5.547 33.28 1.28-1.707 10.24-5.973 24.32-22.187l322.987-366.933c11.947-13.653 13.653-22.187 13.653-23.893-0.853-0.427-8.533-4.693-26.453-4.693h-39.68c-17.493 0-32-14.507-32-32s14.507-32.002 32-32.002h39.68c57.173 0 77.653 26.882 84.907 42.668 7.253 16.213 13.653 49.067-23.893 92.16l-322.987 366.933c-30.293 34.987-56.747 43.947-75.52 43.947z","M391.704 649.382c-17.493 0-32-14.507-32-32v-18.347h-99.84c-57.173 0-77.653-26.88-84.907-42.667-7.253-16.213-13.653-49.067 23.893-92.16l322.988-366.933c43.52-49.493 78.933-46.080 96-39.68s46.080 27.307 46.080 93.44v226.56c0 17.493-14.507 32-32 32s-32-14.507-32-32v-227.413c0-21.333-3.84-30.72-5.547-33.28-1.28 1.707-10.24 5.973-24.32 22.187l-322.988 366.933c-11.947 13.653-13.653 22.187-13.653 23.893 0.853 0.427 8.533 4.693 26.453 4.693h131.84c17.493 0 32 14.507 32 32v50.347c0 17.92-14.507 32.427-32 32.427z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flash-slash"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":466,"id":661,"name":"flash-slash","prevSize":32,"code":59990},"setIdx":2,"setId":2,"iconIdx":240},{"icon":{"paths":["M644.267 817.058c-35.84 0-75.093-11.52-114.773-34.56l-197.547-113.92c-69.547-40.533-107.947-96-107.947-156.587s38.4-116.053 107.947-156.16l197.547-113.92c69.547-40.107 136.533-45.653 189.44-15.36 52.48 30.293 81.493 91.307 81.493 171.52v227.84c0 80.213-29.013 141.227-81.493 171.52-22.613 13.227-47.787 19.627-74.667 19.627zM644.267 271.351c-24.747 0-52.907 8.533-82.773 26.027l-197.547 113.92c-49.067 28.16-75.947 64-75.947 100.693s26.88 72.533 75.947 100.693l197.547 113.92c49.067 28.16 93.44 33.707 125.44 15.36s49.493-59.733 49.493-116.053v-227.84c0-56.32-17.493-97.707-49.493-116.053-12.8-7.253-27.307-10.667-42.667-10.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-left-1"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":467,"id":660,"name":"arrow-left-1","prevSize":32,"code":59991},"setIdx":2,"setId":2,"iconIdx":241},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c17.493 0 32 14.507 32 32s-14.507 32-32 32c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 253.013-205.653 458.667-458.667 458.667z","M554.645 501.333c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l349.867-349.867c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-349.867 349.867c-6.4 6.4-14.507 9.387-22.613 9.387z","M938.662 323.413c-17.493 0-32-14.507-32-32v-174.080h-174.080c-17.493 0-32-14.507-32-32s14.507-32 32-32h206.080c17.493 0 32 14.507 32 32v206.080c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["export-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":468,"id":659,"name":"export-2","prevSize":32,"code":59992},"setIdx":2,"setId":2,"iconIdx":242},{"icon":{"paths":["M384 970.667h-85.333c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h64c74.667 0 98.133 24.32 128 64l64 85.333c14.080 18.773 16.213 21.333 42.667 21.333h128c188.16 0 245.333 57.173 245.333 245.333v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-152.32-28.587-181.333-181.333-181.333h-128c-54.613 0-72.533-18.774-93.867-46.934l-64-85.333c-22.187-29.44-29.013-38.4-76.8-38.4h-64c-152.747 0-181.333 29.013-181.333 181.333v426.667c0 152.32 28.587 181.333 181.333 181.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M825.186 973.227c-0.427 0-0.858 0-1.284 0h-237.227c-71.253-5.12-107.093-59.733-107.093-111.787 0-41.813 23.467-85.76 68.693-103.68-9.387-53.333 4.271-102.827 39.684-139.947 43.52-45.653 113.489-64 174.076-45.653 52.907 16.213 90.88 58.027 106.667 116.053 44.8 13.653 80.218 49.067 94.724 97.28 17.067 55.893 1.276 113.067-40.964 149.76-25.6 24.32-60.582 37.973-97.276 37.973zM588.382 813.653c-32.427 2.987-44.373 27.307-44.373 47.787s11.947 45.227 45.227 47.787h235.098c20.48 1.707 40.96-7.68 56.32-21.333 27.733-24.32 29.436-58.88 22.182-83.627s-28.582-52.48-64.422-57.173c-14.080-1.707-25.178-12.373-27.738-26.453-9.387-57.6-41.813-78.933-66.987-87.040-37.547-11.52-81.92 0.427-108.8 28.587-18.347 19.2-36.267 53.76-16.213 108.8 5.973 16.64-2.56 34.987-19.2 40.96-3.84 1.28-7.68 1.707-11.093 1.707z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-cloud"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":469,"id":658,"name":"folder-cloud","prevSize":32,"code":59993},"setIdx":2,"setId":2,"iconIdx":243},{"icon":{"paths":["M554.645 501.333c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l349.867-349.867c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-349.867 349.867c-6.4 6.4-14.507 9.387-22.613 9.387z","M938.633 322.133c-17.493 0-32-14.507-32-32v-172.8h-172.8c-17.493 0-32-14.507-32-32s14.507-32 32-32h204.8c17.493 0 32 14.507 32 32v204.8c0 17.493-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-85.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 231.68-98.987 330.667-330.667 330.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["export-3"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":470,"id":657,"name":"export-3","prevSize":32,"code":59994},"setIdx":2,"setId":2,"iconIdx":244},{"icon":{"paths":["M599.006 970.667h-204.372c-69.12 0-131.84-26.88-177.067-76.373-45.227-49.067-66.987-113.92-61.013-182.613 14.507-174.933 168.96-317.013 344.745-317.013 161.707 0 314.453 129.707 341.333 288.853 12.8 75.947-5.973 147.627-52.053 202.24-46.933 54.613-114.773 84.907-191.573 84.907zM500.873 458.667c-142.932 0-268.799 116.053-280.745 258.56-4.267 50.773 11.52 98.133 44.373 133.973s78.933 55.467 129.707 55.467h204.372c57.6 0 108.373-22.187 142.080-61.867s47.36-93.44 37.973-150.613c-21.333-129.707-145.92-235.52-277.76-235.52z","M446.75 352c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-61.867 138.667-138.667 138.667zM446.75 138.667c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.28-74.667-74.667-74.667z","M738.167 403.198c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM738.167 232.531c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M896 573.867c-52.907 0-96-43.093-96-96 0-52.909 43.093-96.002 96-96.002s96 43.093 96 96.002c0 52.907-43.093 96-96 96zM896 445.867c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z","M169.417 488.533c-64.853 0-117.333-52.48-117.333-117.335 0-64.853 52.48-117.333 117.333-117.333s117.333 52.48 117.333 117.333c0 64.855-52.48 117.335-117.333 117.335zM169.417 317.865c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pet"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":471,"id":656,"name":"pet","prevSize":32,"code":59995},"setIdx":2,"setId":2,"iconIdx":245},{"icon":{"paths":["M682.667 970.667h-554.667c-40.96 0-74.667-33.707-74.667-74.667v-554.667c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v341.333c0 188.587-99.413 288-288 288zM341.333 117.333c-152.747 0-224 71.253-224 224v554.667c0 5.973 4.693 10.667 10.667 10.667h554.667c152.747 0 224-71.253 224-224v-341.333c0-152.747-71.253-224-224-224h-341.333z","M339.189 757.325c-20.053 0-38.4-7.253-52.053-20.48-16.213-16.213-23.468-39.253-19.628-64l11.947-84.48c2.56-18.347 14.081-41.813 27.308-55.040l221.438-221.44c75.947-75.947 142.080-41.813 183.893 0 32.853 32.853 47.787 67.413 44.373 101.973-2.56 28.16-17.493 54.613-44.373 81.92l-221.44 221.44c-13.227 13.227-36.267 24.747-55.040 27.733l-84.478 11.947c-3.84 0-8.107 0.427-11.947 0.427zM619.934 330.659c-15.787 0-29.867 10.24-46.080 26.027l-221.438 221.44c-3.413 3.413-8.533 14.080-9.387 18.773l-11.947 84.48c-0.427 4.267-0.001 8.107 1.706 9.813s5.547 2.133 9.814 1.707l84.479-11.947c5.12-0.853 15.36-5.973 18.773-9.387l221.44-221.44c16.213-16.213 24.747-30.293 26.027-43.093 1.28-14.507-7.253-31.573-26.027-50.347-18.773-17.92-33.707-26.027-47.36-26.027z","M657.89 536.734c-2.987 0-5.973-0.427-8.533-1.28-77.227-21.76-139.093-83.2-160.853-160.852-4.693-17.067 5.12-34.56 22.187-39.68 17.067-4.693 34.56 5.12 39.253 22.187 15.787 55.893 60.587 100.692 116.48 116.479 17.067 4.693 26.88 22.613 22.187 39.68-3.84 14.080-16.64 23.467-30.72 23.467z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-edit"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":472,"id":655,"name":"message-edit","prevSize":32,"code":59996},"setIdx":2,"setId":2,"iconIdx":246},{"icon":{"paths":["M341.333 970.662c-158.72 0-288-129.28-288-288 0-129.707 87.040-244.053 212.053-277.76 15.787-4.267 32 3.84 37.973 19.2 26.027 65.28 81.493 115.2 149.333 133.547 37.547 10.24 81.067 10.24 117.76 0 15.787-4.267 32.427 3.84 38.4 19.2 13.227 33.707 20.053 69.547 20.053 106.24 0 81.92-34.987 160-96 214.187-52.053 46.933-120.32 73.387-191.573 73.387zM256.853 474.876c-83.2 34.133-139.52 116.053-139.52 207.787 0 123.307 100.693 224 224 224 55.467 0 108.373-20.48 149.333-57.6 47.787-42.24 74.667-102.827 74.667-166.4 0-19.627-2.56-38.4-7.253-56.747-40.107 6.4-83.627 4.267-122.027-6.4-77.227-21.333-142.080-74.24-179.2-144.64z","M512 629.333c-26.453 0-52.053-3.413-75.947-10.24-86.613-23.893-158.72-87.893-192-171.947-13.227-33.28-20.053-69.12-20.053-105.813 0-158.72 129.28-288 288-288s288 129.28 288 288c0 36.693-6.827 72.533-20.053 106.24-33.28 83.627-104.96 148.053-192 171.947-23.893 6.4-49.493 9.813-75.947 9.813zM512 117.333c-123.307 0-224 100.693-224 224 0 28.587 5.12 56.32 15.787 82.347 26.027 65.28 81.493 115.2 149.333 133.547 37.547 10.24 81.067 10.24 117.76 0 67.84-18.347 123.733-68.693 149.333-133.547 10.24-26.027 15.787-53.76 15.787-82.347 0-123.307-100.693-224-224-224z","M682.667 970.675c-71.253 0-139.52-26.453-192-73.813-6.827-5.973-10.667-14.933-10.667-23.893s3.84-17.92 10.667-23.893c47.36-41.813 74.667-102.4 74.667-166.4 0-28.587-5.12-56.32-15.787-82.347-3.413-8.533-2.987-17.92 1.28-26.027s11.52-14.080 20.053-16.64c67.84-18.347 123.307-68.267 149.333-133.546 5.973-15.36 22.613-23.040 37.973-19.2 125.013 34.132 212.053 148.052 212.053 277.759 0.427 158.72-128.853 288-287.573 288zM559.787 869.982c36.267 23.893 78.507 36.693 122.88 36.693 123.307 0 224-100.693 224-224 0-91.733-56.32-173.653-139.52-207.787-31.573 60.16-84.48 107.947-147.627 133.547 6.4 23.893 9.813 49.067 9.813 74.24 0 69.12-24.747 135.68-69.547 187.307z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["colorfilter"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":473,"id":654,"name":"colorfilter","prevSize":32,"code":59997},"setIdx":2,"setId":2,"iconIdx":247},{"icon":{"paths":["M535.467 878.511c-33.707 0-70.827-11.947-107.947-35.413l-124.587-78.080c-8.533-5.12-18.347-8.107-28.16-8.107h-61.44c-103.253 0-160-56.747-160-160v-170.666c0-103.253 56.747-160 160-160h61.013c9.813 0 19.627-2.987 28.16-8.107l124.587-78.080c62.293-38.827 122.88-46.080 170.667-19.627s73.813 81.493 73.813 155.307v391.253c0 73.387-26.453 128.853-73.813 155.307-18.773 11.093-40.107 16.213-62.293 16.213zM213.333 330.671c-67.413 0-96 28.587-96 96v170.667c0 67.413 28.587 96 96 96h61.013c22.187 0 43.52 5.973 62.293 17.92l124.587 78.080c40.96 25.6 79.787 32.427 105.813 17.92s40.96-50.773 40.96-98.987v-392.106c0-48.64-14.933-84.907-40.96-98.987-26.027-14.507-64.853-8.107-105.813 17.92l-125.013 77.653c-18.347 11.947-40.107 17.92-61.867 17.92h-61.013z","M768.013 714.658c-6.827 0-13.227-2.133-19.2-6.4-14.080-10.667-17.067-30.72-6.4-44.8 66.987-89.173 66.987-213.76 0-302.934-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.68 44.8 6.4c83.627 111.788 83.627 267.948 0 379.734-6.4 8.533-15.787 12.8-25.6 12.8z","M846.097 821.325c-6.827 0-13.227-2.133-19.2-6.4-14.080-10.667-17.067-30.72-6.4-44.8 113.92-151.893 113.92-364.374 0-516.268-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.68 44.8 6.4c130.987 174.507 130.987 418.561 0 593.068-5.973 8.533-15.787 12.8-25.6 12.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-high"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":474,"id":653,"name":"volume-high","prevSize":32,"code":59998},"setIdx":2,"setId":2,"iconIdx":248},{"icon":{"paths":["M510.75 970.667c-252.587 0-458.667-205.653-458.667-458.667s206.080-458.667 458.667-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM510.75 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 736c-123.733 0-224-100.693-224-224s100.267-224 224-224c123.733 0 224 100.693 224 224s-100.267 224-224 224zM512 352c-88.32 0-160 71.68-160 160s71.68 160 160 160c88.32 0 160-71.68 160-160s-71.68-160-160-160z","M360.1 392.965c-8.107 0-16.64-2.987-22.613-8.96l-151.040-151.040c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l151.040 151.040c12.373 12.373 12.373 32.427 0 45.227-6.4 5.973-14.507 8.96-22.613 8.96z","M209.060 845.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l151.040-151.040c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-151.040 151.040c-5.973 6.4-14.507 9.387-22.613 9.387z","M812.352 845.662c-8.107 0-16.213-2.987-22.613-9.387l-151.040-151.040c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l151.040 151.040c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M661.726 392.954c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l151.040-151.040c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-151.040 151.467c-6.4 5.973-14.507 8.96-22.613 8.96z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lifebuoy"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":475,"id":652,"name":"lifebuoy","prevSize":32,"code":59999},"setIdx":2,"setId":2,"iconIdx":249},{"icon":{"paths":["M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M906.667 245.333h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M789.333 362.667c-17.493 0-32-14.507-32-32v-234.667c0-17.493 14.507-32 32-32s32 14.507 32 32v234.667c0 17.493-14.507 32-32 32z","M113.891 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.533-44.373l210.347-141.227c46.080-30.72 109.653-27.307 151.466 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.653-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-31.573 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.6-18.347-78.507 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.079-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-209.92 141.227c-5.973 3.413-12.373 5.12-18.347 5.12z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":476,"id":651,"name":"gallery-add","prevSize":32,"code":60000},"setIdx":2,"setId":2,"iconIdx":250},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M376.297 415.997c-36.267 0-72.533-13.653-100.267-41.387-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0c30.293 30.293 79.787 30.293 110.082 0 12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227c-27.733 27.307-64.002 41.387-100.269 41.387z","M647.714 415.997c-36.267 0-72.533-13.653-100.267-41.387-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0c30.293 30.293 79.787 30.293 110.080 0 12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227c-27.733 27.307-64 41.387-100.267 41.387z","M512 817.067c-123.733 0-224-100.693-224-224 0-38.827 31.573-70.4 70.4-70.4h307.2c38.827 0 70.4 31.573 70.4 70.4 0 123.307-100.267 224-224 224zM358.4 586.667c-3.413 0-6.4 2.987-6.4 6.4 0 88.32 71.68 160 160 160s160-71.68 160-160c0-3.413-2.987-6.4-6.4-6.4h-307.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji-normal"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":477,"id":650,"name":"emoji-normal","prevSize":32,"code":60001},"setIdx":2,"setId":2,"iconIdx":251},{"icon":{"paths":["M490.675 970.658c-33.707 0-65.705-17.493-87.891-47.36l-43.521-57.173c-8.96-11.947-20.906-18.773-33.706-19.627-12.373-0.853-25.599 5.12-36.266 15.787-36.693 39.253-72.535 58.027-106.242 57.173-23.040-0.853-43.093-11.093-58.453-29.867-1.707-2.133-3.413-5.12-4.693-8.107-16.64-35.84-24.32-84.48-24.32-157.44v-423.255c0-72.96 7.68-121.173 24.32-157.44 1.28-2.56 2.56-5.12 4.693-7.253 14.933-19.2 34.988-29.44 58.028-30.72 34.133-1.28 70.4 18.347 106.24 56.747 10.667 11.52 23.466 17.067 36.266 16.213s24.746-7.68 33.706-19.627l43.521-57.6c22.187-29.867 54.185-47.36 87.892-47.36s65.707 17.493 87.893 47.36l43.093 57.173c8.96 12.373 21.333 19.2 34.56 20.053 12.373 0.853 25.6-5.12 36.267-16.213 34.987-37.547 69.547-56.747 102.827-56.747 23.893 0 46.084 10.667 61.444 30.72 1.707 2.133 3.409 4.693 4.689 7.68 16.64 35.84 24.32 84.48 24.32 157.44v423.255c0 72.96-7.68 121.173-24.32 157.44-1.707 3.84-3.836 7.253-6.822 10.24-13.227 17.067-34.991 27.733-59.311 27.733-33.28 0-67.84-19.2-102.827-56.747-10.24-11.093-24.32-17.067-36.267-16.213-13.227 0.853-25.173 7.68-34.56 20.053l-43.093 57.173c-21.76 29.013-53.76 46.507-87.467 46.507zM323.424 782.071c1.707 0 3.84 0 5.547 0 31.573 1.707 61.012 18.347 81.065 45.227l43.519 57.6c20.907 28.16 52.48 28.16 73.387 0.427l43.093-57.173c20.48-27.307 50.351-43.52 81.924-45.227s63.142 11.52 86.182 36.267c31.573 33.707 50.773 36.267 55.893 36.267 3.413 0 6.404-0.853 9.391-3.413 11.947-26.88 17.062-67.413 17.062-128v-423.255c0-59.733-5.542-100.267-17.062-127.147-3.413-3.84-6.831-4.267-9.391-4.267-5.12 0-24.32 2.56-55.893 36.267-23.040 24.747-54.609 37.973-86.182 36.267-32-1.707-61.871-18.347-82.351-45.227l-43.089-57.173c-20.907-28.16-52.484-28.16-73.391 0l-43.519 58.027c-20.053 26.88-49.492 43.093-81.065 44.8s-63.148-11.52-86.188-35.84c-26.027-28.16-46.079-37.547-57.172-37.12-2.56 0-5.548 0.853-8.961 4.267-11.52 26.88-17.068 67.413-17.068 127.147v423.255c0 60.16 5.548 100.693 17.068 127.573 3.84 3.413 6.401 3.84 8.961 4.267 10.667 0.427 30.718-8.96 56.745-36.693 22.613-24.32 52.055-37.12 81.495-37.12z","M682.667 469.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 618.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":478,"id":649,"name":"receipt-2","prevSize":32,"code":60002},"setIdx":2,"setId":2,"iconIdx":252},{"icon":{"paths":["M618.667 690.769h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 800c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M221.854 446.289c-8.107 0-16.213-3.413-22.613-9.387-8.96-8.96-11.947-23.041-6.827-34.988l79.36-189.44c1.707-3.84 2.56-6.4 3.84-8.533 63.147-145.493 143.787-180.907 286.293-126.293 8.107 2.987 14.507 9.387 17.92 17.493s3.413 17.067 0 25.173l-125.013 290.133c-5.12 11.52-16.64 19.201-29.44 19.201h-121.6c-24.32 0-47.36 4.693-69.547 14.080-3.84 1.707-8.107 2.56-12.373 2.56zM452.681 117.328c-52.907 0-85.333 34.56-119.040 113.067-0.427 1.28-1.28 2.56-1.707 3.84l-55.893 132.693c9.387-0.853 18.347-1.28 27.733-1.28h100.267l102.827-238.933c-20.053-6.4-37.973-9.387-54.187-9.387z","M780.382 438.187c-2.987 0-6.4-0.427-9.387-1.28-15.787-4.693-33.28-7.253-51.2-7.253h-294.399c-10.667 0-20.907-5.546-26.88-14.506-5.547-8.96-6.827-20.48-2.56-30.293l123.732-287.147c6.4-15.36 25.173-25.6 40.96-20.48 5.12 1.707 9.813 3.84 14.933 5.973l100.693 42.24c58.88 24.32 98.133 49.92 123.733 80.64 5.12 5.973 9.387 12.373 13.227 18.773 4.693 7.253 8.96 16.213 11.947 25.173 1.28 2.987 3.413 8.533 4.693 14.507 11.947 40.107 5.973 90.027-19.627 154.027-5.12 11.946-17.067 19.626-29.867 19.626zM474.035 365.654h246.187c13.653 0 26.88 1.28 40.107 3.413 11.947-37.12 14.507-65.707 7.68-88.747-0.853-3.84-1.707-5.547-2.133-7.253-2.56-6.827-4.267-10.667-6.4-14.080-2.987-4.693-5.12-8.533-8.533-12.373-18.347-22.187-50.773-42.667-98.987-62.293l-84.48-35.413-93.44 216.747z","M678.4 970.658h-332.8c-11.947 0-23.040-0.853-34.133-2.133-149.76-10.24-235.093-95.573-245.333-247.040-1.28-9.387-2.133-20.907-2.133-32.427v-83.2c0-96 57.173-182.612 145.493-221.012 29.867-12.8 61.867-19.2 94.72-19.2h416.427c24.32 0 47.787 3.413 69.547 10.24 100.267 30.293 170.667 125.012 170.667 229.972v83.2c0 9.387-0.427 18.347-0.853 26.88-9.387 166.827-106.667 254.72-281.6 254.72zM303.787 429.645c-24.32 0-47.36 4.693-69.547 14.080-64.853 28.16-106.667 91.733-106.667 162.133v83.2c0 8.96 0.853 17.92 1.707 26.453 8.107 121.6 67.84 181.333 187.733 189.44 10.667 1.28 19.2 2.133 28.16 2.133h332.8c140.8 0 209.92-61.867 216.747-194.133 0.427-7.68 0.853-15.36 0.853-23.893v-83.2c0-77.227-51.627-146.347-125.013-168.96-15.787-4.693-33.28-7.253-51.2-7.253h-415.573z","M95.583 637.858c-17.493 0-32-14.507-32-32v-125.013c0-134.4 95.147-250.453 226.56-276.053 11.52-2.133 23.467 2.133 31.147 11.093 7.253 8.96 9.387 21.76 4.693 32.427l-74.667 178.347c-3.413 7.68-9.387 13.653-16.64 17.067-64.853 28.16-106.667 91.733-106.667 162.133-0.427 17.493-14.507 32-32.427 32zM238.943 290.978c-54.613 30.72-94.293 84.48-106.667 147.2 18.773-19.2 40.533-35.413 65.28-47.36l41.387-99.84z","M928.393 637.858c-17.493 0-32-14.507-32-32 0-77.227-51.627-146.347-125.013-168.96-8.533-2.56-15.787-8.533-19.627-16.641s-4.267-17.493-0.853-25.6c20.053-49.92 25.173-86.187 17.067-114.347-0.853-3.84-1.707-5.547-2.133-7.253-5.547-12.373-2.56-26.88 7.253-36.267s24.747-11.52 36.693-5.12c93.013 48.64 150.613 144.213 150.613 249.174v125.013c0 17.493-14.507 32-32 32zM821.299 387.831c26.88 12.373 50.773 29.867 70.827 50.774-8.107-41.814-28.16-79.788-57.6-109.654-2.133 17.92-6.4 37.547-13.227 58.88z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-add-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":479,"id":648,"name":"wallet-add-1","prevSize":32,"code":59728},"setIdx":2,"setId":2,"iconIdx":253},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512.047 706.564c-46.933 0-85.333-38.4-85.333-85.333v-68.267c-25.173-20.907-42.24-50.347-46.507-83.2-0.853-5.12-1.707-12.373-1.707-19.2 0-41.387 18.773-79.787 52.054-105.387s75.947-33.707 116.907-23.040c44.8 11.947 81.92 48.64 93.44 93.44 4.693 17.493 5.973 35.84 2.987 54.186-4.693 32.427-21.333 61.867-46.507 82.773v68.267c0 47.36-38.4 85.76-85.333 85.76zM511.62 381.444c-15.36 0-29.867 4.693-42.24 14.507-17.067 13.227-26.88 33.28-26.88 54.613 0 2.987 0 6.4 0.853 8.96 2.987 21.333 14.507 38.827 32.427 49.92l14.933 9.387v102.4c0 11.947 9.387 21.333 21.333 21.333s21.333-9.387 21.333-21.333v-102.4l14.933-9.387c17.493-11.093 29.44-28.587 32-48.64v-0.853c1.707-9.387 1.28-18.773-1.28-27.733-5.973-23.466-25.173-42.24-48.213-48.213-6.4-1.707-12.8-2.56-19.2-2.56z","M938.65 433.502h-326.4v64h326.4v-64z","M411.733 433.502h-326.4v64h326.4v-64z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["strongbox"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":480,"id":647,"name":"strongbox","prevSize":32,"code":60003},"setIdx":2,"setId":2,"iconIdx":254},{"icon":{"paths":["M517.542 970.671c-11.52 0-20.484-2.987-26.884-5.973-15.36-7.253-41.387-27.307-41.387-81.067v-275.2l-229.971 210.773c-12.8 11.947-33.281 11.093-45.228-2.133s-11.092-33.28 2.134-45.227l273.065-250.453v-19.2l-273.065-250.454c-13.227-11.947-14.081-32-2.134-45.227 11.947-12.8 32.428-14.080 45.228-2.133l229.971 210.773v-275.2c0-53.76 26.027-74.24 41.387-81.066 15.36-7.253 47.36-14.081 88.747 20.479l164.267 136.961c17.92 14.933 28.587 36.267 29.013 58.88s-8.96 44.372-26.453 60.159l-192 176.215 192 176.213c17.067 15.787 26.88 37.973 26.453 60.16-0.427 22.613-11.093 43.947-29.013 58.88l-164.267 136.96c-24.32 20.907-45.649 26.88-61.862 26.88zM513.271 561.071v322.56c0 15.787 3.413 22.613 5.12 23.467 0.427-0.427 8.107-2.133 20.053-11.947l164.267-136.96c3.84-3.413 5.973-7.253 5.973-11.52s-1.702-8.107-5.542-11.52l-189.871-174.080zM517.111 117.337c-0.427 0.427-3.84 7.68-3.84 23.040v322.56l189.871-174.081c3.84-3.413 5.542-7.253 5.542-11.52s-2.133-8.106-5.973-11.52l-164.693-136.961c-11.093-9.387-18.347-11.52-20.907-11.52z","M213.333 586.667c-40.96 0-74.667-33.707-74.667-74.667s33.707-74.667 74.667-74.667c40.96 0 74.667 33.707 74.667 74.667s-33.707 74.667-74.667 74.667zM213.333 501.333c-5.973 0-10.667 4.693-10.667 10.667 0 11.947 21.333 11.947 21.333 0 0-5.973-4.693-10.667-10.667-10.667z","M810.667 586.667c-40.96 0-74.667-33.707-74.667-74.667s33.707-74.667 74.667-74.667c40.96 0 74.667 33.707 74.667 74.667s-33.707 74.667-74.667 74.667zM810.667 501.333c-5.973 0-10.667 4.693-10.667 10.667 0 11.947 21.333 11.947 21.333 0 0-5.973-4.693-10.667-10.667-10.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bluetooth-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":481,"id":646,"name":"bluetooth-2","prevSize":32,"code":60004},"setIdx":2,"setId":2,"iconIdx":255},{"icon":{"paths":["M750.925 962.556h-477.865c-77.653 0-148.48-59.738-161.28-136.538l-56.746-339.622c-8.96-52.907 16.64-120.748 58.88-154.455l295.68-236.802c57.172-46.080 147.198-45.653 204.798 0.427l295.68 236.375c41.813 33.707 67.413 101.548 58.88 154.455l-56.747 339.622c-12.8 75.52-84.907 136.538-161.28 136.538zM511.565 125.431c-22.613 0-45.227 6.831-61.867 20.057l-295.679 236.797c-24.32 19.627-40.96 63.151-35.84 93.871l56.748 339.622c7.68 44.8 52.48 82.778 98.133 82.778h477.865c45.653 0 90.453-37.978 98.133-83.204l56.747-339.622c5.12-30.72-11.942-74.671-35.836-93.871l-295.684-236.37c-17.067-13.227-39.68-20.057-62.72-20.057z","M602.475 645.547c-8.107 0-15.787-2.987-22.187-8.96-41.387-39.68-95.142-39.68-136.956 0-12.8 12.373-32.857 11.947-45.23-0.853s-11.946-32.858 0.854-45.231c66.132-63.573 158.718-63.573 225.278 0 12.8 12.373 13.227 32.431 0.853 45.231-5.547 6.4-14.080 9.813-22.613 9.813z","M692.924 555.093c-8.107 0-16.213-2.982-22.187-8.956-20.053-19.627-42.667-35.418-66.56-46.938-59.733-28.587-125.013-28.587-184.321 0-23.893 11.52-46.080 27.311-66.56 46.938-12.373 12.373-32.853 12.373-45.227-0.427s-11.946-32.858 0.427-45.231c25.173-24.747 53.333-44.373 83.626-58.88 77.228-37.12 162.561-37.12 239.361 0 30.293 14.507 58.453 34.133 83.627 58.88 12.8 12.373 12.8 32.431 0.427 45.231-5.973 5.973-14.080 9.382-22.613 9.382z","M512.021 746.667c-11.093 0-21.76-4.267-30.293-12.373-16.64-16.64-16.64-43.516 0-60.156s43.947-16.64 60.587 0c16.64 16.64 16.64 43.516 0 60.156-8.533 8.107-19.2 12.373-30.293 12.373z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-wifi"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":482,"id":645,"name":"home-wifi","prevSize":32,"code":60005},"setIdx":2,"setId":2,"iconIdx":256},{"icon":{"paths":["M85.333 416c-17.493 0-32-14.507-32-32v-106.667c0-123.307 100.693-224 224-224h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-106.667c-88.32 0-160 71.68-160 160v106.667c0 17.493-14.507 32-32 32z","M938.667 416c-17.493 0-32-14.507-32-32v-106.667c0-88.32-71.68-160-160-160h-106.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h106.667c123.307 0 224 100.693 224 224v106.667c0 17.493-14.507 32-32 32z","M746.667 970.667h-64c-17.493 0-32-14.507-32-32s14.507-32 32-32h64c88.32 0 160-71.68 160-160v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 123.307-100.693 224-224 224z","M384 970.667h-106.667c-123.307 0-224-100.693-224-224v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 88.32 71.68 160 160 160h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize-21"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":483,"id":644,"name":"maximize-21","prevSize":32,"code":60006},"setIdx":2,"setId":2,"iconIdx":257},{"icon":{"paths":["M269.216 857.169c-24.32 0-48.213-6.4-70.4-19.2-44.373-25.6-70.4-70.827-70.4-122.027v-408.32c0-50.773 26.453-96.426 70.4-122.026 44.373-25.6 96.853-25.6 140.8 0l353.709 203.947c43.947 25.6 70.396 71.253 70.396 122.027s-26.449 96.427-70.396 122.027l-353.709 203.947c-22.187 13.227-46.080 19.627-70.4 19.627zM269.216 230.822c-13.227 0-26.453 3.413-38.4 10.24-23.893 14.080-38.4 38.827-38.4 66.56v408.32c0 27.733 14.506 52.48 38.4 66.56 23.893 13.653 52.906 14.080 76.8 0l353.709-203.947c23.893-14.080 38.396-38.827 38.396-66.56s-14.502-52.48-38.396-66.56l-353.709-203.947c-11.947-6.827-25.173-10.667-38.4-10.667z","M863.582 807.693c-17.493 0-32-14.507-32-32v-527.36c0-17.493 14.507-32 32-32s32 14.507 32 32v527.36c0 17.493-14.080 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["next"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":484,"id":643,"name":"next","prevSize":32,"code":60007},"setIdx":2,"setId":2,"iconIdx":258},{"icon":{"paths":["M365.643 683.524c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l279.468-279.464c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.226l-279.468 279.465c-6.4 6.4-14.507 9.387-22.613 9.387z","M383.147 474.022c-46.507 0-84.48-37.973-84.48-84.48s37.974-84.48 84.48-84.48c46.506 0 84.48 37.974 84.48 84.48s-37.973 84.48-84.48 84.48zM383.147 369.489c-11.093 0-20.48 8.96-20.48 20.48s8.96 20.479 20.48 20.479c11.52 0 20.479-8.959 20.479-20.479s-9.386-20.48-20.479-20.48z","M662.144 718.502c-46.507 0-84.476-37.973-84.476-84.48s37.969-84.48 84.476-84.48c46.507 0 84.484 37.973 84.484 84.48s-37.978 84.48-84.484 84.48zM662.144 613.969c-11.093 0-20.476 8.96-20.476 20.48s8.956 20.48 20.476 20.48c11.52 0 20.484-8.96 20.484-20.48s-8.964-20.48-20.484-20.48z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["percentage-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":485,"id":642,"name":"percentage-circle","prevSize":32,"code":60008},"setIdx":2,"setId":2,"iconIdx":259},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-85.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 231.68-98.987 330.667-330.667 330.667z","M362.639 754.778c-26.027 0-49.92-9.387-67.413-26.453-20.907-20.907-29.867-51.2-25.173-83.2l18.347-128.427c3.413-24.747 19.627-56.747 37.12-74.24l336.211-336.215c84.907-84.907 171.093-84.907 256 0 46.507 46.507 67.413 93.867 63.147 141.227-3.84 38.4-24.32 75.947-63.147 114.347l-336.213 336.215c-17.493 17.493-49.493 33.707-74.24 37.12l-128.425 18.347c-5.547 1.28-11.093 1.28-16.213 1.28zM706.957 151.469l-336.211 336.215c-8.107 8.107-17.493 26.88-19.2 37.973l-18.347 128.427c-1.707 12.373 0.853 22.613 7.253 29.013s16.64 8.96 29.013 7.253l128.425-18.347c11.093-1.707 30.293-11.093 37.973-19.2l336.213-336.215c27.733-27.733 42.24-52.48 44.373-75.52 2.56-27.733-11.947-57.173-44.373-90.027-68.267-68.267-115.2-49.067-165.12 0.427z","M846.916 419.404c-2.987 0-5.973-0.427-8.533-1.28-112.213-31.573-201.387-120.747-232.96-232.96-4.693-17.067 5.12-34.56 22.187-39.68 17.067-4.693 34.56 5.12 39.253 22.187 25.6 90.88 97.707 162.987 188.587 188.587 17.067 4.693 26.88 22.613 22.187 39.68-3.84 14.507-16.64 23.467-30.72 23.467z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["edit"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":486,"id":641,"name":"edit","prevSize":32,"code":60009},"setIdx":2,"setId":2,"iconIdx":260},{"icon":{"paths":["M698.419 971.52c-0.427 0-0.427 0-0.853 0-43.093-0.427-78.933-26.88-91.733-68.267l-78.933-253.867c-10.667-34.987-1.707-72.533 24.32-97.707 25.6-25.173 62.72-34.56 96.853-23.893l254.293 78.933c40.96 12.8 67.84 48.64 68.267 91.733 0.427 42.667-25.6 78.933-66.56 92.587l-69.547 23.467c-9.813 3.413-17.493 10.667-20.48 20.48l-23.893 69.973c-13.227 40.533-49.067 66.56-91.733 66.56zM619.059 587.52c-11.52 0-19.2 6.4-22.613 9.387-8.96 8.96-11.947 21.333-8.107 33.707l78.933 253.867c6.827 21.76 25.6 22.613 31.573 23.040 5.973 0 24.32-1.707 31.147-22.613l23.893-69.973c9.387-28.587 32.427-51.2 61.013-61.013l69.547-23.467c21.333-6.827 22.613-25.6 22.613-31.147s-1.707-24.32-23.040-31.147l-254.293-78.933c-4.267-1.28-7.68-1.707-10.667-1.707z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-217.6-177.067-394.667-394.667-394.667s-394.667 177.067-394.667 394.667c0 217.6 177.067 394.667 394.667 394.667 17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":487,"id":640,"name":"mouse-circle","prevSize":32,"code":60010},"setIdx":2,"setId":2,"iconIdx":261},{"icon":{"paths":["M379.733 817.058c-26.88 0-52.053-6.4-74.24-19.2-52.48-30.293-81.493-91.307-81.493-171.52v-228.267c0-80.213 29.013-141.227 81.493-171.52s119.467-24.747 189.44 15.36l197.547 113.92c69.547 40.107 107.947 95.573 107.947 156.16s-38.4 116.053-107.947 156.16l-197.547 113.92c-40.107 23.467-79.36 34.987-115.2 34.987zM379.733 271.351c-15.787 0-30.293 3.413-42.667 10.667-31.573 18.347-49.067 59.307-49.067 116.053v227.84c0 56.32 17.493 97.707 49.493 116.053s76.373 12.8 125.44-15.36l197.547-113.92c49.067-28.16 75.947-64 75.947-100.693s-26.88-72.533-75.947-100.693l-197.547-113.92c-30.293-17.493-58.453-26.027-83.2-26.027z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right-4"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":488,"id":639,"name":"arrow-right-4","prevSize":32,"code":60011},"setIdx":2,"setId":2,"iconIdx":262},{"icon":{"paths":["M511.991 429.653c-68.267 0-124.158-55.893-124.158-124.16s55.892-124.16 124.158-124.16c68.267 0 124.16 55.893 124.16 124.16s-55.893 124.16-124.16 124.16zM511.991 245.333c-33.28 0-60.16 26.88-60.16 60.16s26.88 60.16 60.16 60.16c33.28 0 60.16-26.88 60.16-60.16s-26.88-60.16-60.16-60.16z","M289.702 842.675c-68.267 0-124.16-55.893-124.16-124.16s55.893-124.16 124.16-124.16c68.267 0 124.16 55.893 124.16 124.16s-55.893 124.16-124.16 124.16zM289.702 658.355c-33.28 0-60.16 26.88-60.16 60.16s26.88 60.16 60.16 60.16c33.28 0 60.16-26.88 60.16-60.16s-27.307-60.16-60.16-60.16z","M734.285 842.675c-68.267 0-124.16-55.893-124.16-124.16s55.893-124.16 124.16-124.16c68.267 0 124.16 55.893 124.16 124.16s-55.467 124.16-124.16 124.16zM734.285 658.355c-33.28 0-60.16 26.88-60.16 60.16s26.88 60.16 60.16 60.16c33.28 0 60.16-26.88 60.16-60.16s-26.88-60.16-60.16-60.16z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["more-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":489,"id":638,"name":"more-2","prevSize":32,"code":60012},"setIdx":2,"setId":2,"iconIdx":263},{"icon":{"paths":["M589.265 703.142c-8.107 0-16.213-2.987-22.613-9.387l-151.038-151.040c-12.373-12.373-12.373-32.853 0-45.227 12.372-12.373 32.852-12.373 45.225 0l151.040 151.040c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M436.476 704.849c-8.107 0-16.212-2.987-22.612-9.387-12.373-12.373-12.373-32.853 0-45.227l151.039-151.040c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-151.040 151.040c-5.973 5.973-14.507 9.387-22.613 9.387z","M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h64c74.667 0 98.133 24.32 128 64l64 85.333c14.080 18.773 16.213 21.333 42.667 21.333h128c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 117.333c-152.32 0-181.333 29.013-181.333 181.333v426.667c0 152.32 29.013 181.333 181.333 181.333h426.667c152.32 0 181.333-29.013 181.333-181.333v-256c0-152.32-29.013-181.333-181.333-181.333h-128c-54.613 0-72.533-18.773-93.867-46.933l-64-85.333c-22.187-29.44-28.587-38.4-76.8-38.4h-64z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-cross"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":490,"id":637,"name":"folder-cross","prevSize":32,"code":60013},"setIdx":2,"setId":2,"iconIdx":264},{"icon":{"paths":["M511.945 825.591c-22.187 0-43.089-11.093-58.022-30.72l-38.828-51.627h-10.667c-115.627 0-192.427-32.853-192.427-192.427v-133.976c0-114.347 58.453-182.186 164.693-191.146 8.107-0.853 17.921-1.28 27.734-1.28h214.615c124.16 0 192.422 68.265 192.422 192.425v133.976c0 10.24-0.422 19.627-1.702 29.013-8.96 104.96-76.804 163.413-191.151 163.413h-10.667l-38.827 51.627c-14.080 19.627-34.987 30.72-57.173 30.72zM404.853 287.99c-7.253 0-14.507 0.426-21.333 1.28-74.667 6.4-107.52 45.653-107.52 127.573v133.976c0 110.080 32 128.427 128.427 128.427h13.227c17.068 0 36.268 9.382 46.935 23.036l40.529 54.191c2.56 3.413 5.12 5.12 6.4 5.12s3.844-1.707 6.404-5.12l40.102-53.76c11.093-14.933 28.587-23.467 46.933-23.467h13.227c81.92 0 121.178-32.858 127.578-106.244 0.853-8.107 1.28-14.933 1.28-22.613v-133.97c0-88.747-39.684-128.427-128.431-128.427h-213.758z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":491,"id":636,"name":"message-square","prevSize":32,"code":60014},"setIdx":2,"setId":2,"iconIdx":265},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512.009 640.422c-8.107 0-16.213-2.987-22.613-9.387l-150.615-150.613c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.372 45.227 0l128.002 128 128-128c12.373-12.372 32.853-12.372 45.227 0s12.373 32.853 0 45.227l-150.613 150.613c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-down"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":492,"id":635,"name":"arrow-circle-down","prevSize":32,"code":59729},"setIdx":2,"setId":2,"iconIdx":266},{"icon":{"paths":["M711.223 888.742c-0.853 0-1.28 0-1.707 0h-473.173c-125.44-8.96-181.76-105.813-181.76-191.573 0-76.8 44.8-162.133 142.080-185.6-42.667-163.838 38.4-278.611 133.973-332.798 110.933-63.147 276.053-63.573 376.32 58.027 0.853 1.28 1.707 2.56 2.56 3.84 29.867 37.973 50.773 83.627 62.72 136.533 52.48 11.52 97.707 39.68 133.12 81.491 80.64 95.147 96 260.693-19.2 362.24-47.787 43.947-109.653 67.84-174.933 67.84zM490.21 200.531c-45.227 0-90.027 12.373-127.573 33.707-103.253 58.88-138.24 168.107-93.867 292.691 3.413 9.813 2.133 20.907-3.84 29.013s-15.787 13.653-26.027 13.653c-82.773 5.973-119.893 68.267-119.893 127.573s37.12 121.6 119.893 128h471.040c49.493 0.427 97.28-17.92 133.547-51.2l0.427-0.427c86.613-75.947 73.813-200.96 12.8-273.067-29.867-35.413-69.547-57.173-115.2-63.147-14.080-1.707-25.173-12.371-27.307-26.451-8.96-52.907-27.733-97.28-55.893-132.267-0.853-0.853-1.28-2.133-2.133-2.987-45.227-52.907-105.813-75.093-165.973-75.093z","M309.753 587.098c-4.693 0-9.813-1.28-14.080-3.413-17.92-8.96-37.547-13.653-57.6-14.080-17.493-0.427-31.573-14.933-31.573-32.427 0.427-17.493 17.067-32 32.427-31.573 29.44 0.427 58.88 7.68 84.907 20.907 15.787 7.68 22.187 27.307 14.507 43.093-5.547 11.093-16.64 17.493-28.587 17.493z","M676.267 455.253c-11.947 0-23.040-6.4-28.587-17.92-8.107-15.788-1.28-34.988 14.507-43.094 26.453-13.227 55.893-20.48 84.907-20.907 17.067-0.427 32.427 13.653 32.427 31.573 0.427 17.493-13.653 32.428-31.573 32.428-19.627 0.427-39.68 5.12-57.6 14.080-4.693 2.56-9.387 3.84-14.080 3.84z","M881.067 511.147c-8.96 0-18.347-3.84-24.747-11.52-29.44-35.413-69.547-57.173-115.2-63.147-14.080-1.707-25.173-12.373-27.307-26.453-8.96-52.907-27.733-97.28-55.893-132.267-4.693-5.547-7.253-12.8-7.253-20.053 0-8.533 3.413-17.067 9.387-23.040 34.133-34.56 79.36-53.333 128-53.333 99.84 0 181.333 81.493 181.333 181.333 0 55.467-24.747 107.093-68.267 141.653-5.973 4.693-12.8 6.827-20.053 6.827zM772.693 377.173c40.96 8.96 78.080 28.16 108.8 56.32 15.36-20.053 23.893-44.8 23.893-70.827 0-64.853-52.48-117.333-117.333-117.333-22.187 0-43.52 5.973-61.867 17.92 21.76 32.853 37.12 71.253 46.507 113.92z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-sunny"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":493,"id":634,"name":"cloud-sunny","prevSize":32,"code":60015},"setIdx":2,"setId":2,"iconIdx":267},{"icon":{"paths":["M512 629.333c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M512 768.004c-2.56 0-5.547-0.427-8.533-0.853-2.56-0.427-5.12-1.28-7.68-2.56-2.56-0.853-5.12-2.133-7.68-3.84-2.133-1.707-4.267-3.413-6.4-5.12-7.68-8.107-12.373-19.2-12.373-30.293s4.693-22.187 12.373-30.293c2.133-1.707 4.267-3.413 6.4-5.12 2.56-1.707 5.12-2.987 7.68-3.84 2.56-1.28 5.12-2.133 7.68-2.56 5.547-1.28 11.52-1.28 16.64 0 2.987 0.427 5.547 1.28 8.107 2.56 2.56 0.853 5.12 2.133 7.68 3.84 2.133 1.707 4.267 3.413 6.4 5.12 7.68 8.107 12.373 19.2 12.373 30.293s-4.693 22.187-12.373 30.293c-2.133 1.707-4.267 3.413-6.4 5.12-2.56 1.707-5.12 2.987-7.68 3.84-2.56 1.28-5.12 2.133-8.107 2.56-2.56 0.427-5.547 0.853-8.107 0.853z","M770.581 945.498h-517.122c-83.2 0-146.773-30.293-179.2-84.907-32-54.613-27.733-125.013 12.8-197.973l258.56-465.067c42.667-76.8 101.548-119.040 166.402-119.040s123.733 42.24 166.4 119.040l258.56 465.494c40.533 72.96 45.227 142.933 12.8 197.973-32.427 54.187-96 84.48-179.2 84.48zM512.021 142.511c-40.107 0-79.36 30.72-110.508 86.187l-258.133 465.494c-29.013 52.053-33.707 99.84-13.653 134.4s64.427 53.333 124.16 53.333h517.122c59.733 0 103.68-18.773 124.16-53.333s15.36-81.92-13.653-134.4l-258.987-465.494c-31.147-55.467-70.4-86.187-110.507-86.187z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["danger"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":494,"id":633,"name":"danger","prevSize":32,"code":59730},"setIdx":2,"setId":2,"iconIdx":268},{"icon":{"paths":["M571.319 772.693c-8.107 0-16.213-2.987-22.613-9.387l-117.76-117.76c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l117.76 117.76c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M452.727 773.978c-8.107 0-16.213-2.987-22.613-9.387-12.374-12.373-12.374-32.853 0-45.227l117.76-117.76c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-117.76 117.76c-6.4 6.4-14.507 9.387-22.613 9.387z","M221.477 272.211c-8.107 0-16.64-3.413-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l154.88-154.88c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-154.88 154.88c-6.4 5.973-14.507 9.387-22.613 9.387z","M802.522 272.211c-8.107 0-16.213-2.987-22.613-9.387l-154.88-154.88c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l154.88 154.88c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.387-22.613 9.387z","M862.293 452.271c-2.987 0-5.973 0-8.96 0h-682.667c-29.867 0.427-64 0.427-88.747-24.32-19.627-19.2-28.587-49.067-28.587-93.013 0-117.333 85.76-117.333 126.72-117.333h663.893c40.96 0 126.72 0 126.72 117.333 0 44.373-8.96 73.813-28.587 93.013-22.187 22.187-52.053 24.32-79.787 24.32zM180.053 388.271h673.707c19.2 0.427 37.12 0.427 43.093-5.547 2.987-2.987 9.387-13.227 9.387-47.787 0-48.213-11.947-53.333-62.72-53.333h-663.467c-50.773 0-62.72 5.12-62.72 53.333 0 34.56 6.827 44.8 9.387 47.787 5.973 5.547 24.32 5.547 43.093 5.547h10.24z","M635.337 970.667h-257.279c-152.747 0-186.88-90.88-200.107-169.813l-60.16-369.067c-2.987-17.493 8.96-33.707 26.453-36.693s33.707 8.96 36.693 26.453l60.16 368.64c12.373 75.52 37.973 116.48 136.96 116.48h257.279c109.653 0 122.027-38.4 136.107-112.64l71.68-373.333c3.413-17.493 20.053-29.013 37.547-25.173 17.493 3.413 28.587 20.053 25.173 37.547l-71.68 373.333c-16.64 86.613-44.373 164.267-198.827 164.267z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-cross-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":495,"id":632,"name":"bag-cross-1","prevSize":32,"code":60016},"setIdx":2,"setId":2,"iconIdx":269},{"icon":{"paths":["M512 842.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM512 501.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M469.329 714.667c-10.667 0-21.333-5.547-27.307-15.36-8.96-15.36-4.267-34.987 11.093-43.947l32.427-19.627c3.413-2.133 5.12-5.547 5.12-8.96v-39.68c0-17.493 14.507-32 32-32s32 14.080 32 31.573v39.68c0 26.027-14.080 50.773-36.267 64l-32.853 19.627c-4.693 3.413-10.667 4.693-16.213 4.693z","M639.991 970.667h-255.999c-197.12 0-233.813-91.733-243.2-180.907l-32-255.573c-4.693-46.080-6.4-112.213 38.4-161.707 38.4-42.667 101.973-63.147 194.133-63.147h341.332c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 256.427c-9.387 89.173-46.080 180.907-243.2 180.907zM341.326 373.333c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 255.573c7.253 68.267 26.027 124.587 179.627 124.587h255.999c153.6 0 172.373-55.893 179.627-123.733l32-256.427c5.547-52.053-1.28-87.467-22.187-110.933-25.173-28.587-74.667-42.667-146.773-42.667h-341.332z","M704 368.215c-17.493 0-32-14.507-32-32v-58.88c0-44.8-19.2-88.32-52.48-118.613-33.707-30.72-77.653-44.8-123.307-40.533-76.8 7.253-144.213 85.76-144.213 167.68v41.387c0 17.493-14.507 32-32 32s-32-14.507-32-32v-41.813c0-114.773 92.587-220.587 202.24-231.253 64-5.973 125.44 14.080 172.373 57.173 46.507 42.24 73.387 102.827 73.387 165.973v58.88c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-timer"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":496,"id":631,"name":"bag-timer","prevSize":32,"code":60017},"setIdx":2,"setId":2,"iconIdx":270},{"icon":{"paths":["M759.040 970.667h-494.080c-116.907 0-211.627-95.147-211.627-212.053v-316.16c0-58.028 35.84-130.988 81.92-166.828l229.973-179.2c69.12-53.76 179.627-56.32 251.307-5.973l263.68 184.747c50.773 35.413 90.453 111.36 90.453 173.228v310.613c0 116.48-94.72 211.627-211.627 211.627zM404.48 146.772l-229.973 179.2c-30.293 23.893-57.173 78.080-57.173 116.481v316.16c0 81.493 66.133 148.053 147.627 148.053h494.080c81.493 0 147.627-66.133 147.627-147.627v-310.613c0-40.961-29.44-97.708-63.147-120.748l-263.68-184.747c-48.64-34.133-128.853-32.427-175.36 3.84z","M512 800c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":497,"id":630,"name":"home-2","prevSize":32,"code":60018},"setIdx":2,"setId":2,"iconIdx":271},{"icon":{"paths":["M512 394.667c-17.493 0-32-14.507-32-32v-234.667c0-17.493 14.507-32 32-32s32 14.507 32 32v234.667c0 17.493-14.507 32-32 32z","M512 928c-17.493 0-32-14.507-32-32v-234.667c0-17.493 14.507-32 32-32s32 14.507 32 32v234.667c0 17.493-14.507 32-32 32z","M597.333 160h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 928h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M382.726 469.329c-5.547 0-11.093-1.28-15.787-4.267l-203.093-117.332c-15.36-8.96-20.48-28.586-11.52-43.52 8.96-15.36 28.587-20.48 43.52-11.52l203.093 117.333c15.36 8.96 20.48 28.586 11.52 43.519-5.973 10.24-16.64 15.787-27.733 15.787z","M844.39 735.996c-5.547 0-11.093-1.28-15.787-4.267l-203.093-117.333c-15.36-8.96-20.48-28.587-11.52-43.52 8.96-15.36 28.587-20.48 43.52-11.52l203.093 117.333c15.36 8.96 20.48 28.587 11.52 43.52-5.973 10.24-16.64 15.787-27.733 15.787z","M136.966 425.811c-5.547 0-11.093-1.28-15.787-4.266-15.36-8.96-20.48-28.587-11.52-43.52l85.333-147.627c8.96-15.36 28.587-20.48 43.52-11.52 15.36 8.96 20.48 28.586 11.52 43.52l-85.333 147.627c-5.973 10.24-17.067 15.787-27.733 15.787z","M801.715 809.809c-5.547 0-11.093-1.28-15.787-4.267-15.36-8.96-20.48-28.587-11.52-43.52l85.333-147.627c8.96-15.36 28.587-20.48 43.52-11.52 15.36 8.96 20.48 28.587 11.52 43.52l-85.333 147.627c-5.547 10.24-16.64 15.787-27.733 15.787z","M512 693.333c-64.427 0-124.587-34.56-157.013-90.453-16.213-28.16-24.32-58.453-24.32-90.88s8.107-62.72 24.32-90.452c32.427-55.893 92.587-90.454 157.013-90.454s124.587 34.56 157.013 90.454c16.213 28.159 24.32 58.452 24.32 90.879s-8.107 62.72-24.32 90.453c-32.427 55.893-92.587 90.453-157.013 90.453zM512 394.668c-41.813 0-80.64 22.613-101.547 58.879-10.24 17.92-15.787 37.973-15.787 58.453s5.12 40.533 15.787 58.88c20.907 36.267 59.733 58.88 101.547 58.88s80.64-22.613 101.547-58.88c10.24-17.92 15.787-37.973 15.787-58.453s-5.12-40.533-15.787-58.88c-20.907-36.266-59.733-58.879-101.547-58.879z","M641.297 469.342c-11.093 0-21.76-5.547-27.733-16.213-8.96-15.36-3.413-34.988 11.52-43.521l203.093-117.333c15.36-8.96 34.987-3.414 43.52 11.519 8.96 15.36 3.413 34.987-11.52 43.52l-203.093 117.335c-4.693 3.413-10.24 4.693-15.787 4.693z","M179.632 736.009c-11.093 0-21.76-5.547-27.733-16.213-8.96-15.36-3.413-34.987 11.52-43.52l203.093-117.333c15.36-8.96 34.987-3.413 43.52 11.52 8.96 15.36 3.413 34.987-11.52 43.52l-203.093 117.333c-4.693 3.413-10.24 4.693-15.787 4.693z","M887.049 425.811c-11.093 0-21.76-5.546-27.733-16.213l-85.333-147.627c-8.96-15.36-3.413-34.987 11.52-43.52 15.36-8.96 34.987-3.413 43.52 11.52l85.333 147.627c8.96 15.36 3.413 34.986-11.52 43.52-4.693 3.413-10.24 4.693-15.787 4.693z","M222.298 809.809c-11.093 0-21.76-5.547-27.733-16.213l-85.333-147.627c-8.96-15.36-3.413-34.987 11.52-43.52 15.36-8.96 34.987-3.413 43.52 11.52l85.333 147.627c8.96 15.36 3.413 34.987-11.52 43.52-5.12 3.413-10.667 4.693-15.787 4.693z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sun"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":498,"id":629,"name":"sun","prevSize":32,"code":60019},"setIdx":2,"setId":2,"iconIdx":272},{"icon":{"paths":["M597.333 288h-170.667c-40.96 0-117.333 0-117.333-117.333s76.373-117.333 117.333-117.333h170.667c40.96 0 117.333 0 117.333 117.333 0 40.96 0 117.333-117.333 117.333zM426.667 117.333c-42.24 0-53.333 0-53.333 53.333s11.093 53.333 53.333 53.333h170.667c53.333 0 53.333-11.093 53.333-53.333 0-53.333-11.093-53.333-53.333-53.333h-170.667z","M597.333 970.675h-213.333c-239.787 0-288-110.080-288-288v-256c0-194.56 70.4-277.76 243.627-286.72 16.64-0.853 32.853 12.373 33.707 30.293s-12.8 32.427-30.293 33.28c-121.173 6.827-183.040 43.093-183.040 223.146v256c0 157.867 31.147 224 224 224h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896.038 671.996c-17.493 0-32-14.507-32-32v-213.332c0-180.053-61.867-216.32-183.040-223.147-17.493-0.853-31.147-16.213-30.293-33.707s16.213-31.147 33.707-30.293c173.227 9.387 243.627 92.587 243.627 286.72v213.332c0 17.92-14.507 32.427-32 32.427z","M640 842.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-96v96c0 17.493-14.507 32-32 32z","M896.021 970.667c-8.107 0-16.213-2.987-22.613-9.387l-254.293-254.293c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l254.293 254.293c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard-export"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":499,"id":628,"name":"clipboard-export","prevSize":32,"code":60020},"setIdx":2,"setId":2,"iconIdx":273},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cd"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":500,"id":627,"name":"cd","prevSize":32,"code":60021},"setIdx":2,"setId":2,"iconIdx":274},{"icon":{"paths":["M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h64c74.667 0 98.133 24.32 128 64l64 85.333c14.080 18.773 16.213 21.333 42.667 21.333h128c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 117.333c-152.747 0-181.333 29.013-181.333 181.333v426.667c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-256c0-152.32-28.587-181.333-181.333-181.333h-128c-54.613 0-72.533-18.773-93.867-46.933l-64-85.333c-22.187-29.44-29.013-38.4-76.8-38.4h-64z","M853.333 304.213c-17.493 0-32-14.507-32-32v-58.88c0-67.413-28.587-96-96-96h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c103.253 0 160 56.747 160 160v58.88c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":501,"id":626,"name":"folder-2","prevSize":32,"code":60022},"setIdx":2,"setId":2,"iconIdx":275},{"icon":{"paths":["M554.667 394.667h-469.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h469.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h291.84c17.493 0 32 14.507 32 32s-14.507 32-32 32h-291.84c-133.973 0-157.44 23.040-157.44 155.307v350.72c0 132.267 23.467 155.307 157.44 155.307h474.453c133.973 0 157.44-23.040 157.44-155.307v-203.947c0-17.493 14.507-32 32-32s32 14.507 32 32v203.947c0 168.107-51.627 219.307-221.44 219.307z","M858.453 277.333h-133.12c-17.493 0-32-14.507-32-32v-106.667c0-17.493 14.507-32 32-32h133.547c45.653 0 85.333 39.68 85.333 85.333-0.427 46.933-38.4 85.333-85.76 85.333zM757.333 213.333h101.547c11.947 0 21.333-9.387 21.333-21.333 0-9.387-10.24-21.333-21.333-21.333h-101.547v42.667z","M877.653 384h-152.32c-17.493 0-32-14.507-32-32v-106.667c0-17.493 14.507-32 32-32h152.32c51.2 0 93.013 38.4 93.013 85.333s-41.813 85.333-93.013 85.333zM757.333 320h120.32c15.787 0 29.013-9.813 29.013-21.333s-13.227-21.333-29.013-21.333h-120.32v42.667z","M800.418 437.333c-17.493 0-32-14.507-32-32v-53.333c0-17.493 14.507-32 32-32s32 14.507 32 32v53.333c0 17.92-14.080 32-32 32z","M800.418 170.667c-17.493 0-32-14.507-32-32v-53.333c0-17.493 14.507-32 32-32s32 14.507 32 32v53.333c0 17.493-14.080 32-32 32z","M776.107 170.667h-93.44c-17.493 0-32-14.507-32-32s14.507-32 32-32h93.44c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M776.107 384h-93.44c-17.493 0-32-14.507-32-32s14.507-32 32-32h93.44c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bitcoin-card"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":502,"id":625,"name":"bitcoin-card","prevSize":32,"code":60023},"setIdx":2,"setId":2,"iconIdx":276},{"icon":{"paths":["M753.498 967.258c-22.613 0-51.627-7.253-87.893-28.587l-127.573-75.52c-13.227-7.68-38.827-7.68-51.627 0l-127.999 75.52c-75.52 44.8-119.893 26.88-139.947 12.373-19.627-14.507-50.347-51.627-30.293-136.96l30.293-130.987c3.413-13.653-3.413-37.12-13.653-47.36l-105.813-105.813c-52.907-52.907-48.64-98.133-41.387-120.321 7.253-22.187 30.293-61.44 103.68-73.813l136.107-22.613c12.8-2.133 31.147-15.787 36.693-27.307l75.52-150.613c34.132-68.693 78.932-78.933 102.399-78.933s68.267 10.24 102.4 78.933l75.093 150.187c5.973 11.52 24.32 25.173 37.12 27.307l136.107 22.613c73.813 12.373 96.853 51.627 103.68 73.813 6.827 22.188 11.093 67.415-41.387 120.321l-105.813 106.24c-10.24 10.24-16.64 33.28-13.653 47.36l30.293 130.987c19.627 85.333-10.667 122.453-30.293 136.96-10.667 7.68-27.733 16.213-52.053 16.213zM512.004 793.178c20.907 0 41.813 5.12 58.453 14.933l127.573 75.52c37.12 22.187 60.587 22.187 69.547 15.787s15.36-29.013 5.973-70.827l-30.293-130.987c-8.107-35.413 5.12-81.067 30.72-107.093l105.813-105.813c20.907-20.907 30.293-41.387 26.027-55.467-4.693-14.081-24.32-25.601-53.333-30.295l-136.107-22.613c-32.853-5.547-68.693-32-83.627-61.867l-75.093-150.187c-13.653-27.307-30.72-43.52-45.653-43.52s-32 16.213-45.227 43.52l-75.519 150.187c-14.933 29.867-50.773 56.32-83.627 61.867l-135.68 22.613c-29.013 4.693-48.64 16.213-53.333 30.295-4.693 14.080 5.12 34.987 26.027 55.467l105.813 105.813c25.6 25.6 38.827 71.68 30.72 107.093l-30.293 130.987c-9.813 42.24-2.987 64.427 5.973 70.827s32 5.973 69.547-15.787l127.572-75.52c16.213-9.813 37.12-14.933 58.027-14.933z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":503,"id":624,"name":"star","prevSize":32,"code":60024},"setIdx":2,"setId":2,"iconIdx":277},{"icon":{"paths":["M512.017 971.089c-46.507 0-92.586-13.653-128.853-40.533l-183.468-136.96c-48.64-36.267-86.613-112.213-86.613-172.373v-317.438c0-65.707 48.214-135.68 110.081-158.72l212.906-79.787c42.24-15.787 108.8-15.787 151.040 0l212.907 79.787c61.867 23.040 110.080 93.013 110.080 158.72v317.012c0 60.587-37.973 136.107-86.613 172.373l-183.467 136.96c-35.413 27.307-81.493 40.96-128 40.96zM458.684 125.437l-212.906 79.787c-36.267 13.653-68.267 59.733-68.267 98.987v317.012c0 40.533 28.586 97.28 60.586 121.173l183.468 136.96c49.067 36.693 131.84 36.693 181.333 0l183.467-136.96c32.427-24.32 60.587-80.64 60.587-121.173v-317.438c0-38.827-32-84.907-68.267-98.987l-212.907-79.787c-29.013-10.24-78.507-10.24-107.093 0.427z","M512 693.333c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM512 352c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M469.329 565.333c-10.667 0-21.333-5.547-27.307-15.36-8.96-15.36-4.267-34.987 11.093-43.947l32.427-19.627c3.413-2.133 5.12-5.547 5.12-8.96v-39.68c0-17.493 14.507-32 32-32s32 14.080 32 31.573v39.68c0 26.027-14.080 50.773-36.267 64l-32.853 19.627c-4.693 3.413-10.667 4.693-16.213 4.693z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-time"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":504,"id":623,"name":"security-time","prevSize":32,"code":60025},"setIdx":2,"setId":2,"iconIdx":278},{"icon":{"paths":["M341.306 928c-1.28 0-2.56 0-3.413 0-17.493-2.133-30.293-17.92-28.16-35.413l85.333-767.999c2.133-17.493 17.92-29.867 35.415-28.16 17.493 2.133 30.293 17.92 28.16 35.413l-85.335 767.999c-2.133 16.213-15.787 28.16-32 28.16z","M597.308 928c-1.28 0-2.56 0-3.413 0-17.493-2.133-30.293-17.92-28.16-35.413l85.333-767.999c2.133-17.493 17.493-29.867 35.413-28.16 17.493 2.133 30.293 17.92 28.16 35.413l-85.333 767.999c-2.133 16.213-15.787 28.16-32 28.16z","M917.333 416h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M874.667 672h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hashtag"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":505,"id":622,"name":"hashtag","prevSize":32,"code":60026},"setIdx":2,"setId":2,"iconIdx":279},{"icon":{"paths":["M544.427 885.333c-34.56 0-71.68-11.947-110.080-35.84l-127.147-79.36c-8.96-5.547-18.773-8.533-29.013-8.533h-62.293c-104.96 0-162.56-57.6-162.56-162.56v-174.082c0-104.96 57.6-162.56 162.56-162.56h62.293c10.24 0 20.48-2.987 29.013-8.533l127.147-79.36c63.573-39.68 125.013-46.933 173.653-19.627 48.64 26.88 75.093 82.773 75.093 157.867v399.362c0 74.667-26.88 130.987-75.093 157.867-19.2 10.24-40.533 15.36-63.573 15.36zM215.893 326.398c-69.12 0-98.56 29.44-98.56 98.56v174.082c0 69.12 29.44 98.56 98.56 98.56h62.293c22.187 0 43.947 6.4 63.147 17.92l127.147 79.36c42.24 26.453 81.92 32.853 108.8 18.347 26.88-14.933 42.24-52.053 42.24-101.547v-399.362c0-49.92-15.36-87.040-42.24-101.547-26.88-14.933-66.56-8.107-108.8 18.347l-127.147 78.933c-19.2 11.947-40.96 18.347-63.147 18.347h-62.293z","M938.667 544h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M853.333 629.333c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-up"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":506,"id":621,"name":"volume-up","prevSize":32,"code":60027},"setIdx":2,"setId":2,"iconIdx":280},{"icon":{"paths":["M733.001 800c-72.96 0-160-27.733-160-160v-256c0-132.267 87.040-160 160-160s160 27.733 160 160v256c0 132.267-87.040 160-160 160zM733.001 288c-69.12 0-96 26.88-96 96v256c0 69.12 26.88 96 96 96s96-26.88 96-96v-256c0-69.12-26.88-96-96-96z","M291 800c-72.96 0-160-27.733-160-160v-256c0-132.267 87.040-160 160-160s160 27.733 160 160v256c0 132.267-87.040 160-160 160zM291 288c-69.12 0-96 26.88-96 96v256c0 69.12 26.88 96 96 96s96-26.88 96-96v-256c0-69.12-26.88-96-96-96z","M605.026 544h-186.026c-17.493 0-32-14.507-32-32s14.507-32 32-32h186.026c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M960 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M64 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["weight-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":507,"id":620,"name":"weight-1","prevSize":32,"code":60028},"setIdx":2,"setId":2,"iconIdx":281},{"icon":{"paths":["M638.75 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.56 330.667-330.667 330.667zM382.75 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M139.56 872.529c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l701.865-701.865c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-701.865 701.865c-5.973 6.4-14.080 9.387-22.613 9.387z","M685.248 800c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M789.333 693.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M448 352h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["computing"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":508,"id":619,"name":"computing","prevSize":32,"code":60029},"setIdx":2,"setId":2,"iconIdx":282},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-9"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":509,"id":618,"name":"grid-9","prevSize":32,"code":60030},"setIdx":2,"setId":2,"iconIdx":283},{"icon":{"paths":["M843.52 480h-172.373c-85.76 0-127.147-41.813-127.147-127.147v-172.373c0-85.76 41.813-127.147 127.147-127.147h172.373c85.76 0 127.147 41.813 127.147 127.147v172.373c0 85.333-41.813 127.147-127.147 127.147zM671.147 117.333c-50.347 0-63.147 12.8-63.147 63.147v172.373c0 50.347 12.8 63.147 63.147 63.147h172.373c50.347 0 63.147-12.8 63.147-63.147v-172.373c0-50.347-12.8-63.147-63.147-63.147h-172.373z","M352.853 480h-172.373c-85.76 0-127.147-37.973-127.147-116.48v-193.707c0-78.507 41.813-116.48 127.147-116.48h172.373c85.76 0 127.147 37.973 127.147 116.48v193.28c0 78.933-41.813 116.907-127.147 116.907zM180.48 117.333c-57.173 0-63.147 16.213-63.147 52.48v193.28c0 36.693 5.973 52.48 63.147 52.48h172.373c57.173 0 63.147-16.213 63.147-52.48v-193.28c0-36.693-5.973-52.48-63.147-52.48h-172.373z","M352.853 970.667h-172.373c-85.76 0-127.147-41.813-127.147-127.147v-172.373c0-85.76 41.813-127.147 127.147-127.147h172.373c85.76 0 127.147 41.813 127.147 127.147v172.373c0 85.333-41.813 127.147-127.147 127.147zM180.48 608c-50.347 0-63.147 12.8-63.147 63.147v172.373c0 50.347 12.8 63.147 63.147 63.147h172.373c50.347 0 63.147-12.8 63.147-63.147v-172.373c0-50.347-12.8-63.147-63.147-63.147h-172.373z","M896 693.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 864h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-equal"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":510,"id":617,"name":"element-equal","prevSize":32,"code":60031},"setIdx":2,"setId":2,"iconIdx":284},{"icon":{"paths":["M487.253 821.329h-116.48c-114.773 0-168.107-53.333-168.107-168.107v-116.48c0-114.347 53.333-167.68 168.107-167.68h116.48c114.347 0 168.107 53.333 168.107 168.107v116.48c-0.427 114.347-53.76 167.68-168.107 167.68zM370.773 433.062c-79.787 0-104.107 24.32-104.107 104.107v116.48c0 79.787 24.32 104.107 104.107 104.107h116.48c79.787 0 104.107-24.32 104.107-104.107v-116.48c0-79.787-24.32-104.107-104.107-104.107h-116.48z","M653.244 654.933h-30.293c-17.493 0-32-14.507-32-32v-86.187c0-79.787-24.32-104.107-104.107-104.107h-85.76c-17.493 0-32-14.507-32-32v-29.867c0-114.347 53.333-168.107 168.107-168.107h116.48c114.347 0 168.107 53.333 168.107 168.107v116.48c-0.427 114.347-53.76 167.68-168.533 167.68zM433.084 369.067h54.187c114.347 0 168.107 53.333 168.107 168.107v54.187c78.507-0.427 102.4-24.747 102.4-104.107v-116.48c0-79.787-24.32-104.107-104.107-104.107h-116.48c-79.36 0-103.68 23.893-104.107 102.4z","M640.009 970.675c-11.52 0-22.187-6.4-27.733-16.213-5.547-10.24-5.547-22.187 0.427-32.427l44.8-74.667c8.96-15.36 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.613-148.907 331.093-331.093 331.093z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.187 6.4 27.733 16.213 5.547 10.24 5.547 22.187-0.427 32.427l-44.8 74.667c-8.96 14.933-28.587 20.053-43.947 10.667-14.933-8.96-20.053-28.587-10.667-43.947l11.52-19.2c-118.187 27.733-206.080 133.547-206.080 259.84 0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["recovery-convert"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":511,"id":616,"name":"recovery-convert","prevSize":32,"code":60032},"setIdx":2,"setId":2,"iconIdx":285},{"icon":{"paths":["M85.333 416c-17.493 0-32-14.507-32-32v-106.667c0-123.733 100.693-224 224-224h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-106.667c-88.32 0-160 71.68-160 160v106.667c0 17.493-14.507 32-32 32z","M938.667 416c-17.493 0-32-14.507-32-32v-106.667c0-88.32-71.68-160-160-160h-106.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h106.667c123.307 0 224 100.267 224 224v106.667c0 17.493-14.507 32-32 32z","M746.667 970.667h-64c-17.493 0-32-14.507-32-32s14.507-32 32-32h64c88.32 0 160-71.68 160-160v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 123.733-100.693 224-224 224z","M384 970.667h-106.667c-123.307 0-224-100.267-224-224v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 88.32 71.68 160 160 160h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 480h-85.333c-60.16 0-96-35.84-96-96v-85.333c0-60.16 35.84-96 96-96h85.333c60.16 0 96 35.84 96 96v85.333c0 60.16-35.84 96-96 96zM298.667 266.667c-25.173 0-32 6.827-32 32v85.333c0 25.173 6.827 32 32 32h85.333c25.173 0 32-6.827 32-32v-85.333c0-25.173-6.827-32-32-32h-85.333z","M725.333 480h-85.333c-60.16 0-96-35.84-96-96v-85.333c0-60.16 35.84-96 96-96h85.333c60.16 0 96 35.84 96 96v85.333c0 60.16-35.84 96-96 96zM640 266.667c-25.173 0-32 6.827-32 32v85.333c0 25.173 6.827 32 32 32h85.333c25.173 0 32-6.827 32-32v-85.333c0-25.173-6.827-32-32-32h-85.333z","M384 821.333h-85.333c-60.16 0-96-35.84-96-96v-85.333c0-60.16 35.84-96 96-96h85.333c60.16 0 96 35.84 96 96v85.333c0 60.16-35.84 96-96 96zM298.667 608c-25.173 0-32 6.827-32 32v85.333c0 25.173 6.827 32 32 32h85.333c25.173 0 32-6.827 32-32v-85.333c0-25.173-6.827-32-32-32h-85.333z","M725.333 821.333h-85.333c-60.16 0-96-35.84-96-96v-85.333c0-60.16 35.84-96 96-96h85.333c60.16 0 96 35.84 96 96v85.333c0 60.16-35.84 96-96 96zM640 608c-25.173 0-32 6.827-32 32v85.333c0 25.173 6.827 32 32 32h85.333c25.173 0 32-6.827 32-32v-85.333c0-25.173-6.827-32-32-32h-85.333z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scan-barcode"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":512,"id":615,"name":"scan-barcode","prevSize":32,"code":60033},"setIdx":2,"setId":2,"iconIdx":286},{"icon":{"paths":["M571.742 743.258h-107.093c-69.975 0-126.722-58.88-126.722-131.413 0-17.493 14.507-32 32-32s32 14.507 32 32c0 37.12 28.162 67.413 62.722 67.413h107.093c27.733 0 50.773-24.747 50.773-54.613 0-37.12-13.227-44.373-34.987-52.053l-171.948-60.587c-33.28-11.52-78.080-36.267-78.080-112.641 0-65.707 51.627-118.613 114.775-118.613h107.093c69.973 0 126.72 58.88 126.72 131.413 0 17.494-14.507 32.001-32 32.001s-32-14.507-32-32.001c0-37.12-28.16-67.413-62.72-67.413h-107.093c-27.735 0-50.775 24.747-50.775 54.613 0 37.121 13.227 44.374 34.988 52.054l171.947 60.587c33.28 11.52 78.080 36.267 78.080 112.64-0.427 65.28-51.627 118.613-114.773 118.613z","M512 800c-17.493 0-32-14.507-32-32v-512c0-17.493 14.507-32 32-32s32 14.507 32 32v512c0 17.493-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dollar-square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":513,"id":614,"name":"dollar-square","prevSize":32,"code":60034},"setIdx":2,"setId":2,"iconIdx":287},{"icon":{"paths":["M759.893 941.222c-26.88 0-53.76-6.4-79.36-20.053l-494.507-260.267c-55.467-29.013-90.027-86.187-90.027-148.907s34.56-119.894 90.027-148.908l494.507-260.267c66.133-34.56 142.933-23.467 196.267 28.587s66.133 128.853 32.853 195.413l-69.12 138.241c-14.507 29.013-14.507 64 0 93.44l69.12 138.24c33.28 66.56 20.48 143.36-32.853 195.413-32.853 32.427-74.24 49.067-116.907 49.067zM759.467 146.768c-15.36 0-32 3.84-49.067 12.8l-494.507 260.267c-34.987 18.348-55.893 52.908-55.893 92.161s20.907 73.813 55.893 92.16l494.507 260.267c49.493 26.027 95.573 8.107 121.6-17.92 26.453-25.6 45.227-71.253 20.48-121.173l-69.12-138.24c-23.467-47.36-23.467-103.253 0-150.613l69.12-138.241c25.173-49.92 5.973-95.573-20.48-121.173-17.067-16.64-42.667-30.293-72.533-30.293z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-left"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":514,"id":613,"name":"direct-left","prevSize":32,"code":60035},"setIdx":2,"setId":2,"iconIdx":288},{"icon":{"paths":["M843.52 480h-172.373c-85.76 0-127.147-37.973-127.147-116.48v-193.707c0-78.507 41.813-116.48 127.147-116.48h172.373c85.76 0 127.147 37.973 127.147 116.48v193.28c0 78.933-41.813 116.907-127.147 116.907zM671.147 117.333c-57.173 0-63.147 16.213-63.147 52.48v193.28c0 36.693 5.973 52.48 63.147 52.48h172.373c57.173 0 63.147-16.213 63.147-52.48v-193.28c0-36.693-5.973-52.48-63.147-52.48h-172.373z","M843.52 970.667h-172.373c-85.76 0-127.147-41.813-127.147-127.147v-172.373c0-85.76 41.813-127.147 127.147-127.147h172.373c85.76 0 127.147 41.813 127.147 127.147v172.373c0 85.333-41.813 127.147-127.147 127.147zM671.147 608c-50.347 0-63.147 12.8-63.147 63.147v172.373c0 50.347 12.8 63.147 63.147 63.147h172.373c50.347 0 63.147-12.8 63.147-63.147v-172.373c0-50.347-12.8-63.147-63.147-63.147h-172.373z","M352.853 480h-172.373c-85.76 0-127.147-37.973-127.147-116.48v-193.707c0-78.507 41.813-116.48 127.147-116.48h172.373c85.76 0 127.147 37.973 127.147 116.48v193.28c0 78.933-41.813 116.907-127.147 116.907zM180.48 117.333c-57.173 0-63.147 16.213-63.147 52.48v193.28c0 36.693 5.973 52.48 63.147 52.48h172.373c57.173 0 63.147-16.213 63.147-52.48v-193.28c0-36.693-5.973-52.48-63.147-52.48h-172.373z","M352.853 970.667h-172.373c-85.76 0-127.147-41.813-127.147-127.147v-172.373c0-85.76 41.813-127.147 127.147-127.147h172.373c85.76 0 127.147 41.813 127.147 127.147v172.373c0 85.333-41.813 127.147-127.147 127.147zM180.48 608c-50.347 0-63.147 12.8-63.147 63.147v172.373c0 50.347 12.8 63.147 63.147 63.147h172.373c50.347 0 63.147-12.8 63.147-63.147v-172.373c0-50.347-12.8-63.147-63.147-63.147h-172.373z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-3"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":515,"id":612,"name":"element-3","prevSize":32,"code":60036},"setIdx":2,"setId":2,"iconIdx":289},{"icon":{"paths":["M512.009 970.671c-28.587 0-57.604-7.253-83.204-22.187l-253.438-146.347c-51.2-29.867-83.199-84.907-83.199-144.213v-291.84c0-59.307 31.999-114.347 83.199-144.213l253.438-146.346c51.2-29.867 114.778-29.867 166.404 0l253.44 146.346c51.2 29.867 83.196 84.907 83.196 144.213v291.84c0 59.307-31.996 114.347-83.196 144.213l-253.44 146.347c-25.6 14.933-54.613 22.187-83.2 22.187zM512.009 117.338c-17.493 0-35.418 4.693-51.204 13.653l-253.438 146.347c-31.573 18.347-51.199 52.054-51.199 88.747v291.84c0 36.267 19.626 70.4 51.199 88.747l253.438 146.347c31.573 18.347 70.831 18.347 102.404 0l253.44-146.347c31.573-18.347 51.196-52.053 51.196-88.747v-291.84c0-36.267-19.622-70.4-51.196-88.747l-253.44-146.347c-15.787-8.96-33.707-13.653-51.2-13.653z","M473.182 668.599c-15.36 0-29.867-3.84-43.093-11.093-29.439-17.067-46.505-51.627-46.505-94.72v-102.4c0-43.095 17.067-77.653 46.505-94.72 29.44-17.067 67.844-14.508 104.964 7.252l88.742 51.2c37.12 21.334 58.88 53.334 58.88 87.467s-21.333 65.707-58.88 87.467l-88.742 51.2c-20.48 12.373-41.818 18.347-61.871 18.347zM473.613 418.999c-4.267 0-8.111 0.853-11.098 2.56-8.96 5.12-14.507 19.627-14.507 39.253v102.4c0 19.2 5.547 33.707 14.507 39.253 8.96 5.12 24.32 2.56 40.96-7.253l88.747-51.2c16.64-9.813 26.453-21.76 26.453-32s-9.813-22.187-26.453-32l-88.747-51.2c-11.093-6.401-21.756-9.813-29.862-9.813z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-octagon"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":516,"id":611,"name":"video-octagon","prevSize":32,"code":60037},"setIdx":2,"setId":2,"iconIdx":290},{"icon":{"paths":["M896 416c-17.493 0-32-14.507-32-32v-224h-224c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32v256c0 17.493-14.507 32-32 32z","M384 928h-256c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v224h224c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M575.979 479.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.225l320-320c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-320 319.998c-6.4 6.4-14.507 9.387-22.613 9.387z","M127.977 927.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l320-320c12.375-12.373 32.855-12.373 45.229 0s12.373 32.853 0 45.227l-320.002 320c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize-4"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":517,"id":610,"name":"maximize-4","prevSize":32,"code":60038},"setIdx":2,"setId":2,"iconIdx":291},{"icon":{"paths":["M510.75 970.667c-252.587 0-458.667-205.653-458.667-458.667s206.080-458.667 458.667-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM510.75 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M511.979 724.48c-117.332 0-212.479-95.147-212.479-212.48s95.147-212.479 212.479-212.479c117.333 0 212.48 95.147 212.48 212.479s-95.147 212.48-212.48 212.48zM511.979 363.521c-81.92 0-148.479 66.559-148.479 148.479s66.559 148.48 148.479 148.48c81.92 0 148.48-66.56 148.48-148.48s-66.56-148.479-148.48-148.479z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["record-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":518,"id":609,"name":"record-circle","prevSize":32,"code":60039},"setIdx":2,"setId":2,"iconIdx":292},{"icon":{"paths":["M749.227 766.72h-474.453c-169.813 0-221.44-51.627-221.44-221.44v-270.507c0-169.813 51.627-221.44 221.44-221.44h66.56c17.493 0 32 14.507 32 32s-14.507 32-32 32h-66.56c-133.973 0-157.44 23.467-157.44 157.44v270.080c0 133.973 23.467 157.44 157.44 157.44h474.027c133.973 0 157.44-23.467 157.44-157.44v-37.973c0-17.493 14.507-32 32-32s32 14.507 32 32v37.973c0.427 170.24-51.2 221.867-221.013 221.867z","M512 970.667c-17.493 0-32-14.507-32-32v-203.947c0-17.493 14.507-32 32-32s32 14.507 32 32v203.947c0 17.493-14.507 32-32 32z","M938.667 586.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M704 970.667h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M762.018 431.787h-203.093c-66.987 0-110.507-43.52-110.507-110.506v-150.187c0-64.853 52.48-117.333 117.333-117.333h196.267c61.013 0 110.507 49.493 110.507 110.507v157.013c0 61.013-49.493 110.506-110.507 110.506zM565.751 117.76c-29.44 0-53.333 23.893-53.333 53.333v150.187c0 41.813 26.453 46.507 46.507 46.507h203.093c25.6 0 46.507-20.907 46.507-46.507v-157.013c0-25.6-20.907-46.507-46.507-46.507h-196.267z","M915.209 378.451c-13.653 0-27.733-4.693-41.387-14.507l-51.627-36.267c-8.533-5.973-13.653-15.787-13.653-26.027v-117.76c0-10.24 5.12-20.053 13.653-26.027l51.627-36.267c22.187-15.787 46.080-18.773 65.707-8.533s30.72 31.573 30.72 58.88v142.080c0 27.307-11.093 48.64-30.72 58.88-7.253 3.84-15.36 5.547-24.32 5.547zM872.542 285.011l34.133 23.893v-132.267l-34.133 23.893v84.48z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["monitor-recorder"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":519,"id":608,"name":"monitor-recorder","prevSize":32,"code":60040},"setIdx":2,"setId":2,"iconIdx":293},{"icon":{"paths":["M778.718 606.72c-8.107 0-16.64-3.413-22.613-9.387l-241.92-241.92c-10.667-10.667-12.373-26.88-4.267-39.68l75.52-119.469c20.48-32.853 52.48-52.905 89.173-57.172 40.533-4.693 83.627 11.947 116.907 45.227l135.68 135.68c32 32 47.787 74.667 43.093 117.334-4.267 37.12-23.893 69.116-54.613 88.742l-119.467 75.524c-5.547 3.413-11.52 5.12-17.493 5.12zM577.758 328.533l205.653 205.653 97.707-61.867c14.507-8.96 23.467-23.893 25.173-41.813 2.56-22.612-6.827-46.933-24.747-64.853l-135.68-135.68c-19.627-19.627-43.093-29.44-64.427-26.88-17.067 1.707-31.573 11.518-41.813 27.732l-61.867 97.708z","M282.842 970.667c-40.107 0-75.52-14.076-101.973-40.529-30.72-30.72-44.373-73.818-38.827-121.604l41.813-353.28c2.133-17.493 17.92-29.865 35.413-28.16 17.493 2.133 30.293 17.92 28.16 35.413l-41.813 353.28c-3.413 27.733 3.84 52.053 20.48 68.693s41.386 24.32 69.546 20.907l372.054-43.947c79.36-9.387 96.853-30.72 89.173-108.373l-10.24-177.067c-0.853-17.493 12.373-32.853 30.293-33.707 17.493-0.853 32.853 12.378 33.707 30.298l10.24 175.787c11.093 110.080-32.427 163.409-145.493 177.062l-372.053 43.947c-6.827 0.853-13.653 1.28-20.48 1.28z","M536.751 365.236c-0.853 0-1.28 0-2.133 0l-74.667-4.692c-17.493-1.28-31.147-16.213-29.867-34.133s16.213-31.147 34.133-29.867l74.667 4.692c17.493 1.28 31.147 16.213 29.867 34.133-1.28 16.64-15.36 29.867-32 29.867z","M225.31 918.618c-8.107 0-16.213-2.982-22.613-9.382-12.373-12.373-12.373-32.858 0-45.231l135.68-135.684c12.373-12.373 32.854-12.373 45.227 0s12.373 32.858 0 45.231l-135.68 135.684c-6.4 6.4-14.507 9.382-22.613 9.382z","M277.333 501.333c-25.173 0-49.493-4.267-72.107-11.947-49.493-16.64-92.16-50.773-119.467-96.426-21.333-34.987-32.426-75.094-32.426-115.628 0-69.12 30.72-132.692 84.48-174.932 39.253-31.573 88.747-49.068 139.52-49.068 123.733 0 224 100.693 224 224 0 20.053-2.987 40.959-8.533 60.159-5.547 19.627-13.227 37.549-23.893 55.469-12.373 20.48-27.307 37.972-44.8 52.906-40.107 35.84-92.16 55.467-146.773 55.467zM277.333 117.333c-36.267 0-71.68 12.374-99.84 34.987-38.4 30.293-60.16 75.52-60.16 125.013 0 28.587 8.106 57.173 23.040 82.346 19.627 32.427 49.92 57.173 85.333 68.694 51.627 18.347 113.494 6.827 156.588-31.147 12.373-10.667 23.040-23.467 32-37.547 7.68-12.8 13.226-25.6 17.066-39.68s5.973-28.587 5.973-42.667c0-88.32-71.68-160-160-160z","M278.167 381.026c-17.493 0-32-14.507-32-32v-143.36c0-17.493 14.507-32 32-32s32 14.507 32 32v143.36c0 17.92-14.507 32-32 32z","M348.193 309.333h-143.36c-17.493 0-32-14.507-32-32s14.507-32 32-32h143.36c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pen-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":520,"id":607,"name":"pen-add","prevSize":32,"code":60041},"setIdx":2,"setId":2,"iconIdx":294},{"icon":{"paths":["M512 768.427c-135.253 0-245.333-110.080-245.333-245.333 0-48.64 14.080-96 41.387-136.107 9.813-14.507 29.866-18.773 44.373-8.96s18.774 29.867 8.96 44.373c-20.053 29.867-30.294 64.853-30.294 100.693 0 99.84 81.493 181.333 181.334 181.333s181.333-81.493 181.333-181.333c0-99.84-81.493-181.333-181.333-181.333-21.333 0-41.813 2.987-61.867 8.96-16.64 5.12-34.56-4.267-40.107-21.333-5.12-17.067 4.267-34.987 21.333-40.107 26.027-8.107 52.907-11.947 80.64-11.947 135.253 0 245.333 110.080 245.333 245.333s-110.507 245.76-245.76 245.76z","M410.415 358.394c-7.253 0-14.933-2.56-20.906-7.68-13.227-11.52-14.507-32-2.987-45.227l71.253-81.493c11.52-13.227 32-14.933 45.227-2.987 13.227 11.52 14.507 32 2.987 45.226l-71.253 81.494c-6.827 6.827-15.36 10.667-24.32 10.667z","M493.218 418.988c-6.4 0-13.227-2.133-18.773-5.973l-82.775-60.587c-14.080-10.24-17.493-30.293-6.826-44.8 10.24-14.080 30.294-17.493 44.801-6.826l82.773 60.586c14.080 10.24 17.493 30.293 6.827 44.8-6.4 8.107-16.213 12.8-26.027 12.8z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["refresh-left-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":521,"id":606,"name":"refresh-left-square","prevSize":32,"code":60042},"setIdx":2,"setId":2,"iconIdx":295},{"icon":{"paths":["M874.667 650.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c25.173 0 30.72-3.84 31.147-3.84 0.853-2.56 0.853-17.493 0.853-28.16v-85.333c0-10.667 0-25.173-1.707-29.013-0.427 0.427-6.827-2.987-30.293-2.987-17.493 0-32-14.507-32-32s14.507-32 32-32c88.747 0 96 43.52 96 96v85.333c0 52.48-7.253 96-96 96z","M272.195 629.338c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.733-21.76-23.467-38.827 12.8-50.773 12.8-104.533 0-155.307-4.267-17.067 5.973-34.56 23.467-38.827 17.067-4.267 34.133 6.4 38.4 23.467 15.36 61.013 15.36 125.44 0 186.027-3.413 14.507-16.64 24.32-30.72 24.32z","M421.529 629.329c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.734-21.76-23.467-38.827 12.8-50.773 12.8-104.533 0-155.307-4.267-17.065 5.974-34.558 23.467-38.825 17.067-4.267 34.56 5.973 38.827 23.467 15.36 61.011 15.36 125.438 0 186.025-3.84 14.507-17.067 24.32-31.147 24.32z","M554.667 842.667h-256c-188.16 0-245.333-57.173-245.333-245.333v-170.667c0-188.16 57.173-245.333 245.333-245.333h256c188.16 0 245.333 57.173 245.333 245.333v170.667c0 188.16-57.173 245.333-245.333 245.333zM298.667 245.333c-152.32 0-181.333 29.013-181.333 181.333v170.667c0 152.32 29.013 181.333 181.333 181.333h256c152.32 0 181.333-29.013 181.333-181.333v-170.667c0-152.32-29.013-181.333-181.333-181.333h-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["battery-3full"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":522,"id":605,"name":"battery-3full","prevSize":32,"code":60043},"setIdx":2,"setId":2,"iconIdx":296},{"icon":{"paths":["M895.987 287.146c-0.853 0-2.133 0-3.413 0-225.707-22.613-450.987-31.147-674.135-8.533l-87.040 8.533c-17.92 1.707-33.707-11.093-35.413-29.013s11.093-33.28 28.587-34.987l87.040-8.533c226.988-23.040 456.961-14.080 687.361 8.533 17.493 1.707 30.293 17.493 28.587 34.987-1.28 16.64-15.36 29.013-31.573 29.013z","M362.698 244.053c-1.707 0-3.413 0-5.547-0.427-17.067-2.987-29.013-19.627-26.027-36.693l9.387-55.893c6.827-40.96 16.213-97.707 115.625-97.707h111.787c99.84 0 109.227 58.88 115.627 98.133l9.387 55.467c2.987 17.493-8.96 34.133-26.027 36.693-17.493 2.987-34.133-8.96-36.693-26.027l-9.387-55.467c-5.973-37.12-7.253-44.373-52.48-44.373h-111.787c-45.225 0-46.078 5.973-52.478 43.947l-9.813 55.467c-2.56 15.787-16.213 26.88-31.573 26.88z","M648.977 970.671h-273.92c-148.907 0-154.88-82.347-159.573-148.907l-27.733-429.655c-1.28-17.493 12.373-32.853 29.867-34.133 17.92-0.853 32.853 12.373 34.133 29.867l27.733 429.654c4.693 64.853 6.4 89.173 95.573 89.173h273.92c89.6 0 91.307-24.32 95.573-89.173l27.733-429.654c1.28-17.493 16.64-30.72 34.133-29.867 17.493 1.28 31.147 16.213 29.867 34.133l-27.733 429.655c-4.693 66.56-10.667 148.907-159.573 148.907z","M582.831 736h-142.080c-17.494 0-32.001-14.507-32.001-32s14.507-32 32.001-32h142.080c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 565.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":523,"id":604,"name":"trash","prevSize":32,"code":60044},"setIdx":2,"setId":2,"iconIdx":297},{"icon":{"paths":["M651.115 949.333h-278.188c-209.493 0-299.093-89.6-299.093-299.093v-5.547c0-189.44 74.667-280.745 241.92-296.532 17.067-1.28 33.28 11.52 34.987 29.013s-11.093 33.28-29.013 34.987c-133.973 12.373-183.893 75.519-183.893 232.959v5.547c0 173.653 61.44 235.093 235.093 235.093h278.188c173.653 0 235.093-61.44 235.093-235.093v-5.547c0-158.293-50.773-221.439-187.307-232.959-17.493-1.707-30.72-17.067-29.013-34.56s16.64-30.72 34.56-29.013c169.813 14.507 245.76 106.239 245.76 296.959v5.547c0 208.64-89.6 298.24-299.093 298.24z","M512 672.004c-17.493 0-32-14.507-32-32v-485.546c0-17.493 14.507-32 32-32s32 14.507 32 32v485.546c0 17.493-14.507 32-32 32z","M654.925 281.597c-8.107 0-16.213-2.987-22.613-9.387l-120.32-120.32-120.318 120.32c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l142.932-142.933c12.373-12.373 32.853-12.373 45.227 0l142.933 142.933c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["export-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":524,"id":603,"name":"export-1","prevSize":32,"code":60045},"setIdx":2,"setId":2,"iconIdx":298},{"icon":{"paths":["M639.97 881.92c-8.107 0-16.213-2.987-22.613-9.387l-278.187-278.187c-45.227-45.227-45.227-119.467 0-164.693l278.187-278.186c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-278.187 278.186c-20.48 20.48-20.48 53.76 0 74.24l278.187 278.187c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-left-2"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":525,"id":602,"name":"arrow-left-2","prevSize":32,"code":60046},"setIdx":2,"setId":2,"iconIdx":299},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M661.333 544h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M490.645 671.996c-8.107 0-16.213-2.987-22.613-9.387l-128.002-128c-12.373-12.373-12.373-32.853 0-45.227l128.002-127.998c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-105.389 105.385 105.389 105.387c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-left-3"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":526,"id":601,"name":"arrow-left-3","prevSize":32,"code":60047},"setIdx":2,"setId":2,"iconIdx":300},{"icon":{"paths":["M896 224h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M714.231 437.333h-404.481c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.055c17.493 0 32 14.507 32 32s-14.080 32-31.573 32z","M896 650.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M714.231 864h-404.481c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.055c17.493 0 32 14.507 32 32s-14.080 32-31.573 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["textalign-center"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":527,"id":600,"name":"textalign-center","prevSize":32,"code":60048},"setIdx":2,"setId":2,"iconIdx":301},{"icon":{"paths":["M896 224h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 437.333h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 650.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 864h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M337.92 458.667h-121.173c-65.707 0-99.413-33.28-99.413-99.413v-121.173c0-65.707 33.28-99.413 99.413-99.413h121.6c65.707 0 99.413 33.28 99.413 99.413v121.6c-0.427 65.707-33.707 98.987-99.84 98.987zM216.747 202.667c-30.293 0-35.413 5.12-35.413 35.413v121.6c0 30.293 5.12 35.413 35.413 35.413h121.6c30.293 0 35.413-5.12 35.413-35.413v-121.6c0-30.293-5.12-35.413-35.413-35.413h-121.6z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["firstline"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":528,"id":599,"name":"firstline","prevSize":32,"code":60049},"setIdx":2,"setId":2,"iconIdx":302},{"icon":{"paths":["M721.067 970.667h-418.133c-90.453 0-164.267-73.813-164.267-164.267v-588.8c0-90.453 73.814-164.267 164.267-164.267h418.133c90.453 0 164.267 73.814 164.267 164.267v588.8c0 90.453-73.813 164.267-164.267 164.267zM302.934 117.333c-55.040 0-100.267 44.8-100.267 100.267v588.8c0 55.040 44.8 100.267 100.267 100.267h418.133c55.040 0 100.267-44.8 100.267-100.267v-588.8c0-55.040-44.8-100.267-100.267-100.267h-418.133z","M789.333 586.667h-554.667c-52.907 0-96-43.093-96-96v-85.333c0-52.907 43.093-96 96-96h554.667c52.907 0 96 43.093 96 96v85.333c0 52.907-43.093 96-96 96zM234.667 373.333c-17.493 0-32 14.507-32 32v85.333c0 17.493 14.507 32 32 32h554.667c17.493 0 32-14.507 32-32v-85.333c0-17.493-14.507-32-32-32h-554.667z","M341.333 800.004c-14.080 0-27.733-5.547-37.547-15.787-2.56-2.133-4.693-5.12-6.826-8.107-1.707-2.56-3.413-5.973-4.693-8.96-1.707-3.413-2.56-6.827-3.414-10.24-0.427-3.413-0.853-6.827-0.853-10.24s0.427-6.827 0.853-10.24c0.853-3.413 1.707-6.827 3.414-10.24 1.28-2.987 2.987-6.4 4.693-8.96 2.133-2.987 4.266-5.973 6.826-8.107 19.627-20.053 55.040-20.053 75.093 0 2.56 2.133 4.693 5.12 6.826 8.107 1.707 2.56 3.413 5.973 4.693 8.96 1.707 3.413 2.56 6.827 3.414 10.24 0.427 3.413 0.853 6.827 0.853 10.24s-0.427 6.827-0.853 10.24c-0.853 3.413-1.707 6.827-3.414 10.24-1.28 2.987-2.987 6.4-4.693 8.96-2.133 2.987-4.266 5.973-6.826 8.107-9.813 10.24-23.467 15.787-37.547 15.787z","M682.667 800.004c-14.080 0-27.733-5.547-37.547-15.787-10.24-9.813-15.787-23.467-15.787-37.547s5.547-27.733 15.787-37.547c19.627-20.053 55.467-20.053 75.093 0 10.24 9.813 15.787 23.467 15.787 37.547s-5.547 27.733-15.787 37.547c-9.813 10.24-23.467 15.787-37.547 15.787z","M618.667 245.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bus"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":529,"id":598,"name":"bus","prevSize":32,"code":60050},"setIdx":2,"setId":2,"iconIdx":303},{"icon":{"paths":["M554.667 842.667h-256c-188.16 0-245.333-57.173-245.333-245.333v-170.667c0-188.16 57.173-245.333 245.333-245.333h256c188.16 0 245.333 57.173 245.333 245.333v170.667c0 188.16-57.173 245.333-245.333 245.333zM298.667 245.333c-152.747 0-181.333 29.013-181.333 181.333v170.667c0 152.32 28.587 181.333 181.333 181.333h256c152.747 0 181.333-29.013 181.333-181.333v-170.667c0-152.32-28.587-181.333-181.333-181.333h-256z","M874.667 650.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c25.173 0 30.72-3.84 31.147-3.84 0.853-2.56 0.853-17.493 0.853-28.16v-85.333c0-10.667 0-25.173-1.707-29.013-0.427 0.427-6.827-2.987-30.293-2.987-17.493 0-32-14.507-32-32s14.507-32 32-32c88.747 0 96 43.52 96 96v85.333c0 52.48-7.253 96-96 96z","M272.195 629.338c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.733-21.76-23.467-38.827 12.8-50.773 12.8-104.533 0-155.307-4.267-17.067 5.973-34.56 23.467-38.827 16.64-4.267 34.133 6.4 38.4 23.467 15.36 61.013 15.36 125.44 0 186.027-3.413 14.507-16.64 24.32-30.72 24.32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["battery-empty-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":530,"id":597,"name":"battery-empty-1","prevSize":32,"code":60051},"setIdx":2,"setId":2,"iconIdx":304},{"icon":{"paths":["M553.417 885.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M710.387 885.333c-0.427 0-1.28 0-1.707 0-17.493 0-32-14.507-31.573-32.427 0-17.493 14.507-31.573 32-31.573 0.427 0 1.28 0 1.707 0 48.64 0 95.147-17.92 130.987-51.2 66.133-58.027 70.827-140.8 52.907-199.253s-67.413-124.587-154.027-135.68c-14.080-1.707-25.173-12.373-27.733-26.453-17.067-101.973-72.107-172.373-154.88-197.973-86.187-26.453-185.599-0.427-247.892 64.853-60.587 63.574-74.667 151.893-39.68 249.6 5.973 16.64-2.56 34.987-19.2 40.96s-34.987-2.56-40.96-19.2c-43.093-119.893-23.467-234.666 53.76-315.306 78.933-82.347 204.799-115.2 313.172-81.493 99.413 30.72 169.813 112.64 194.987 226.133 87.040 19.627 156.587 85.333 184.32 176.213 30.293 98.987 2.56 200.533-71.253 265.387-48.64 43.52-110.507 67.413-174.933 67.413z","M237.657 885.333c-0.853 0-1.707 0-2.133 0-122.88-8.533-178.773-104.96-178.773-190.72s55.893-181.76 178.773-190.72c31.573-0.427 62.72 6.827 90.027 20.48 15.787 8.107 21.76 27.307 14.080 43.093-8.107 15.787-27.307 21.76-43.093 14.080-17.92-9.387-38.4-13.227-58.027-13.653-80.64 5.973-117.333 67.84-117.333 126.72s36.693 120.747 119.467 126.72c17.493 1.28 30.72 16.64 29.44 34.133-1.707 17.067-15.787 29.867-32.427 29.867z","M675.012 453.973c-11.52 0-23.040-6.4-28.587-17.92-8.107-15.788-1.707-34.988 14.507-43.095 26.027-13.227 55.467-20.48 84.48-20.907 16.64 0.853 32.427 13.653 32.427 31.573 0.427 17.493-13.653 32.428-31.573 32.428-19.627 0.427-39.253 5.12-57.173 14.080-4.267 2.987-9.387 3.84-14.080 3.84z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-minus"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":531,"id":596,"name":"cloud-minus","prevSize":32,"code":60052},"setIdx":2,"setId":2,"iconIdx":305},{"icon":{"paths":["M426.667 970.667h-42.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.722 394.667h-852.055c-17.493 0-32-14.507-32-32s14.507-32 32-32h852.055c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512.055 693.333h-425.389c-17.493 0-32-14.507-32-32s14.507-32 32-32h425.389c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M363.084 970.24c-17.493 0-32-14.507-32-32v-852.052c0-17.493 14.507-32 32-32s32 14.507 32 32v852.052c0 17.493-14.080 32-32 32z","M661.751 543.573c-17.493 0-32-14.507-32-32v-425.386c0-17.493 14.507-32 32-32s32 14.507 32 32v425.386c0 17.493-14.080 32-32 32z","M680.499 970.671c-23.040 0-45.653-8.533-63.573-26.027l-67.84-68.267c-34.56-34.56-34.56-91.311 0-126.724l81.493-81.062c12.373-12.373 32.853-12.373 45.227 0l149.333 149.333c5.973 5.973 9.387 14.076 9.387 22.609s-3.413 16.644-9.387 22.618l-81.067 81.067c-17.92 17.493-40.533 26.453-63.573 26.453zM652.766 736.858l-58.453 58.453c-9.813 9.813-9.813 26.453 0 36.267l67.413 67.836c9.813 9.813 26.453 9.813 36.267 0l58.88-58.449-104.107-104.107z","M802.142 872.525c-8.533 0-16.64-3.409-22.613-9.382l-149.333-149.333c-12.373-12.373-12.373-32.853 0-45.227l119.893-120.32c34.987-34.987 92.16-34.987 127.147 0l67.418 67.836c16.64 16.64 26.022 39.258 26.022 63.578s-9.382 46.507-26.022 63.573l-119.471 119.893c-6.4 6.4-14.507 9.382-23.040 9.382zM698.462 691.618l104.107 104.111 96.853-97.28c4.693-4.693 7.253-11.098 7.253-18.351 0-6.827-2.56-13.649-7.253-18.342l-67.413-67.84c-9.813-9.813-26.453-9.813-36.267 0l-97.28 97.702z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-eraser"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":532,"id":595,"name":"grid-eraser","prevSize":32,"code":60053},"setIdx":2,"setId":2,"iconIdx":306},{"icon":{"paths":["M675.81 970.667h-327.682c-114.347 0-166.4-42.667-189.44-78.080-33.707-52.053-32.427-123.307 3.84-206.080l163.413-371.2c-22.613-5.973-43.52-17.92-60.16-34.56-24.32-24.747-38.827-58.88-38.827-94.293 0-73.387 59.733-133.12 133.12-133.12h303.362c35.413 0 69.12 14.080 94.293 39.253 33.28 33.28 46.507 80.64 35.413 126.293s-48.64 81.92-94.72 95.147l162.987 372.907c35.84 82.347 37.12 153.6 2.987 205.653-23.040 35.413-75.093 78.080-188.587 78.080zM360.075 117.333c-37.973 0-69.12 31.147-69.12 69.12 0 18.347 7.68 36.267 20.053 49.067 12.8 12.8 30.72 20.053 49.067 20.053h12.8c10.667 0 20.907 5.547 26.88 14.507s6.827 20.48 2.56 30.293l-181.333 411.733c-26.88 61.44-30.293 113.067-8.96 145.493 26.453 40.533 88.32 49.067 135.68 49.067h327.682c46.933 0 108.373-8.533 135.253-49.067 21.333-32.853 18.347-84.053-8.107-145.067l-179.627-412.16c-4.267-9.813-3.413-21.333 2.56-30.293s15.787-14.507 26.88-14.507h6.827c34.133 0 64.853-21.76 72.107-52.053 5.973-24.32-0.853-48.213-18.347-65.707-13.227-13.227-30.72-20.48-49.067-20.48h-303.788z","M590.532 641.711c-28.16 0-58.453-3.84-88.747-14.080-121.175-40.533-246.189-36.267-247.469-36.267-17.067 2.56-32.427-13.227-33.28-30.72s13.227-32.427 30.72-33.28c5.547-0.427 138.24-4.693 270.082 39.253 110.933 37.12 219.733-33.28 221.013-34.133 14.507-9.813 34.56-5.547 44.373 8.96s5.973 34.56-8.96 44.373c-3.84 2.987-84.907 55.893-187.733 55.893z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["glass"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":533,"id":594,"name":"glass","prevSize":32,"code":60054},"setIdx":2,"setId":2,"iconIdx":307},{"icon":{"paths":["M352.853 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-674.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v674.133c0 81.92-41.813 121.6-127.147 121.6zM180.48 117.333c-54.187 0-63.147 14.507-63.147 57.6v674.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-674.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M843.52 586.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-290.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v290.133c0 81.92-41.813 121.6-127.147 121.6zM671.147 117.333c-54.187 0-63.147 14.507-63.147 57.6v290.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-290.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M843.52 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-76.8c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v76.8c0 81.92-41.813 121.6-127.147 121.6zM671.147 714.667c-54.187 0-63.147 14.507-63.147 57.6v76.8c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-76.8c0-43.093-8.96-57.6-63.147-57.6h-172.373z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":534,"id":593,"name":"element-2","prevSize":32,"code":60055},"setIdx":2,"setId":2,"iconIdx":308},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M593.937 688.201h-209.92c-17.493 0-32-14.507-32-32s14.507-32 32-32h209.92c54.613 0 99.413-44.373 99.413-99.413s-44.373-99.412-99.413-99.412h-288.854c-17.493 0-32-14.507-32-32s14.507-32 32-32h288.854c90.027 0 163.413 73.385 163.413 163.412s-73.387 163.413-163.413 163.413z","M365.63 491.511c-8.107 0-16.213-2.987-22.613-9.387l-66.987-66.985c-12.373-12.373-12.373-32.854 0-45.227l66.987-66.987c12.373-12.373 32.853-12.373 45.227 0s12.373 32.854 0 45.227l-44.373 44.373 44.373 44.372c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["back-square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":535,"id":592,"name":"back-square","prevSize":32,"code":60056},"setIdx":2,"setId":2,"iconIdx":309},{"icon":{"paths":["M810.667 928h-597.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h597.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 757.333c-182.187 0-330.667-148.48-330.667-330.667v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 147.2 119.467 266.667 266.667 266.667s266.667-119.467 266.667-266.667v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 182.187-148.48 330.667-330.667 330.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-underline"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":536,"id":591,"name":"text-underline","prevSize":32,"code":60057},"setIdx":2,"setId":2,"iconIdx":310},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M453.952 405.331c-8.107 0-16.213-2.987-22.613-9.387-30.295-30.293-79.789-30.293-110.082 0-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227c55.040-55.040 145.067-55.040 200.535 0 12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M570.061 405.331c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227 55.040-55.040 145.067-55.040 200.533 0 12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0c-30.293-30.293-79.787-30.293-110.080 0-5.973 6.4-14.080 9.387-22.613 9.387z","M665.6 787.2h-307.2c-38.827 0-70.4-31.573-70.4-70.4 0-123.307 100.267-224 224-224s224 100.693 224 224c0 38.827-31.573 70.4-70.4 70.4zM512 556.8c-88.32 0-160 71.68-160 160 0 3.413 2.987 6.4 6.4 6.4h307.2c3.413 0 6.4-2.987 6.4-6.4 0-88.32-71.68-160-160-160z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji-sad"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":537,"id":590,"name":"emoji-sad","prevSize":32,"code":60058},"setIdx":2,"setId":2,"iconIdx":311},{"icon":{"paths":["M384 757.333c-4.267 0-8.107-0.853-12.373-2.56-11.947-4.693-19.627-16.64-19.627-29.44v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v178.773l30.72-30.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 5.973-14.507 9.387-22.613 9.387z","M383.977 757.329c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-download"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":538,"id":589,"name":"document-download","prevSize":32,"code":60059},"setIdx":2,"setId":2,"iconIdx":312},{"icon":{"paths":["M828.587 501.333h-145.92c-17.493 0-32-14.507-32-32v-298.24c0-31.573 12.373-61.013 34.56-83.2s51.627-34.56 83.2-34.56h0.427c53.333 0.427 103.68 21.333 142.080 59.307 38.4 38.827 59.307 90.027 59.307 143.36v103.253c0.427 84.907-56.747 142.080-141.653 142.080zM714.667 437.333h113.92c49.493 0 78.080-28.587 78.080-78.080v-103.253c0-36.693-14.507-71.68-40.533-98.133-26.027-25.6-60.587-40.107-97.28-40.533 0 0 0 0-0.427 0-14.080 0-27.733 5.547-37.973 15.787s-15.787 23.467-15.787 37.973v266.24z","M383.99 995.413c-20.053 0-38.826-7.68-52.906-22.187l-70.828-71.253c-3.84-3.84-9.811-4.267-14.078-0.853l-72.961 54.613c-22.613 17.067-52.48 20.053-78.080 7.253s-41.385-38.4-41.385-66.987v-640c0-128.853 73.813-202.667 202.667-202.667h512.001c17.493 0 32 14.507 32 32s-14.507 32-32 32c-29.44 0-53.333 23.893-53.333 53.333v725.333c0 28.587-15.791 54.187-41.391 66.987-25.173 12.8-55.462 9.813-78.076-7.253l-72.96-54.613c-4.267-3.413-10.244-2.56-13.658 0.853l-71.676 71.68c-14.508 14.080-33.282 21.76-53.335 21.76zM252.148 834.987c19.627 0 38.827 7.253 53.333 22.187l70.828 71.253c2.56 2.56 5.973 2.987 7.68 2.987s5.12-0.427 7.68-2.987l71.678-71.68c26.453-26.453 68.271-29.013 97.711-6.4l72.529 54.187c4.693 3.413 8.96 2.133 11.093 0.853s5.978-3.84 5.978-9.387v-725.333c0-19.2 4.689-37.547 12.796-53.333h-407.464c-94.72 0-138.667 43.947-138.667 138.667v640c0 5.973 3.84 8.533 5.974 9.813 2.56 1.28 6.827 2.133 11.094-1.28l72.958-54.613c13.227-9.813 29.013-14.933 44.8-14.933z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":539,"id":588,"name":"receipt-1","prevSize":32,"code":59731},"setIdx":2,"setId":2,"iconIdx":313},{"icon":{"paths":["M384.853 842.675c-36.693 0-73.387-17.489-108.373-52.476l-171.093-171.093c-34.56-34.56-52.053-70.831-52.053-108.378 0-37.12 17.493-73.813 52.053-108.372l285.013-285.013c5.973-5.973 14.080-9.385 22.613-9.385s16.64 3.412 22.613 9.385l313.6 313.598c13.653 13.653 21.333 31.573 21.333 51.2 0 19.2-7.68 37.547-21.333 51.2l-256.853 256.858c-34.133 34.987-70.827 52.476-107.52 52.476zM413.44 185.609l-262.4 262.399c-22.187 22.187-33.28 43.52-33.28 63.147s11.093 40.96 33.28 62.72l171.093 171.093c44.8 44.8 81.067 44.8 125.867 0l256.853-256.853c2.56-2.56 2.987-8.96 0-11.947l-291.413-290.559z","M413.4 172.358c-8.107 0-16.213-2.985-22.613-9.385l-57.173-57.174c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l57.175 57.175c12.373 12.373 12.373 32.853 0 45.226-6.4 6.4-14.508 9.385-22.615 9.385z","M88.371 540.574c-17.067 0-31.147-13.227-32-30.72s12.8-32.427 30.72-33.28l645.547-28.16c17.493-0.853 32.427 12.796 33.28 30.716 0.853 17.493-12.8 32.431-30.72 33.284l-645.547 28.16c-0.427 0-0.853 0-1.28 0z","M682.667 970.667h-554.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h554.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M804.267 888.747c-61.013 0-110.933-49.916-110.933-110.929 0-61.867 72.96-143.787 87.467-160 11.947-13.227 34.987-13.227 46.933 0 14.507 15.787 87.467 97.702 87.467 159.569s-49.92 111.36-110.933 111.36zM804.267 689.924c-23.467 30.72-46.933 68.267-46.933 88.32 0 26.027 20.907 46.929 46.933 46.929s46.933-20.902 46.933-46.929c0-20.48-23.467-58.027-46.933-88.32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bucket"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":540,"id":587,"name":"bucket","prevSize":32,"code":60060},"setIdx":2,"setId":2,"iconIdx":314},{"icon":{"paths":["M213.333 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM213.333 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M810.667 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM810.667 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M512 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["more"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":541,"id":586,"name":"more","prevSize":32,"code":60061},"setIdx":2,"setId":2,"iconIdx":315},{"icon":{"paths":["M511.991 970.671c-10.24 0-20.476-1.28-30.289-4.267-221.442-61.013-381.869-267.951-381.869-492.378v-187.305c0-47.787 34.56-99.411 78.934-117.758l237.654-97.281c61.868-25.173 129.704-25.173 191.144 0l237.653 97.281c44.373 18.347 78.938 69.971 78.938 117.758v187.305c0 224-160.858 430.938-381.871 492.378-9.813 2.987-20.053 4.267-30.293 4.267zM511.991 117.336c-24.32 0-48.213 4.694-71.253 14.080l-237.651 97.279c-20.48 8.533-39.254 36.267-39.254 58.453v187.309c0 195.84 140.8 376.747 334.932 430.507 8.533 2.56 17.92 2.56 26.453 0 194.133-53.76 334.938-234.667 334.938-430.507v-187.309c0-22.187-18.778-49.92-39.258-58.453l-237.649-97.279c-23.040-9.387-46.938-14.080-71.258-14.080z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":542,"id":585,"name":"security","prevSize":32,"code":60062},"setIdx":2,"setId":2,"iconIdx":316},{"icon":{"paths":["M511.957 800c-60.587 0-116.052-38.4-156.159-107.947l-113.92-197.547c-40.533-69.547-45.653-136.533-15.36-189.013s91.307-81.493 171.52-81.493h227.839c80.213 0 141.227 29.013 171.52 81.493s24.747 119.893-15.36 189.44l-113.92 197.547c-40.107 69.12-95.573 107.52-156.16 107.52zM398.039 288c-56.747 0-97.707 17.493-116.053 49.493-18.773 32-13.227 76.373 14.933 125.013l113.92 197.547c28.159 49.067 63.999 75.947 100.692 75.947s72.533-26.88 100.693-75.947l113.92-197.547c28.16-49.067 33.707-93.44 15.36-125.44s-59.733-49.493-116.053-49.493h-227.412v0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-bottom"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":543,"id":584,"name":"arrow-bottom","prevSize":32,"code":60063},"setIdx":2,"setId":2,"iconIdx":317},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M938.667 544h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M352 949.333c-17.493 0-32-14.507-32-32v-405.333c0-17.493 14.507-32 32-32s32 14.507 32 32v405.333c0 17.493-14.507 32-32 32z","M672 970.667c-17.493 0-32-14.507-32-32v-426.667c0-17.493 14.507-32 32-32s32 14.507 32 32v426.667c0 17.493-14.507 32-32 32z","M352 544c-17.493 0-32-14.507-32-32v-426.667c0-17.493 14.507-32 32-32s32 14.507 32 32v426.667c0 17.493-14.507 32-32 32z","M672 544c-17.493 0-32-14.507-32-32v-403.625c0-17.493 14.507-32 32-32s32 14.507 32 32v403.625c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-8"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":544,"id":583,"name":"grid-8","prevSize":32,"code":60064},"setIdx":2,"setId":2,"iconIdx":318},{"icon":{"paths":["M725.333 970.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-213.333c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v213.333c0 155.733-89.6 245.333-245.333 245.333zM298.667 330.667c-122.027 0-181.333 59.307-181.333 181.333v213.333c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-213.333c0-122.027-59.307-181.333-181.333-181.333h-426.667z","M768 224h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 117.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M379.287 847.364c-49.92 0-90.453-40.533-90.453-90.453s40.533-90.453 90.453-90.453c49.919 0 90.452 40.533 90.452 90.453s-40.533 90.453-90.452 90.453zM379.287 730.458c-14.507 0-26.453 11.947-26.453 26.453s11.947 26.453 26.453 26.453c14.507 0 26.453-11.947 26.453-26.453s-11.946-26.453-26.453-26.453z","M437.751 788.911c-17.495 0-32.001-14.507-32.001-32v-235.093c0-37.547 23.468-67.84 59.308-77.653l116.907-32c37.12-10.24 60.582-0.425 73.382 9.815 12.8 9.811 28.164 29.865 28.164 67.838v228.267c0 17.493-14.507 32-32 32s-32-14.507-32-32v-228.267c0-11.947-2.56-16.64-3.413-17.067s-5.973-2.133-17.92 1.28l-116.484 32c-10.667 2.987-12.369 10.24-12.369 16.213v235.093c0.427 17.067-14.080 31.573-31.573 31.573z","M593.455 808.533c-49.92 0-90.453-40.533-90.453-90.453s40.533-90.453 90.453-90.453c49.92 0 90.453 40.533 90.453 90.453s-40.533 90.453-90.453 90.453zM593.455 691.627c-14.507 0-26.453 11.947-26.453 26.453s11.947 26.453 26.453 26.453c14.507 0 26.453-11.947 26.453-26.453s-11.947-26.453-26.453-26.453z","M437.777 622.084c-14.079 0-26.88-9.387-30.72-23.467-4.693-17.067 5.548-34.56 22.614-39.253l213.76-58.453c17.493-4.693 34.56 5.547 39.253 22.613s-5.547 34.56-22.613 39.253l-213.76 58.453c-2.987 0.427-5.547 0.853-8.533 0.853z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-playlist"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":545,"id":582,"name":"music-playlist","prevSize":32,"code":60065},"setIdx":2,"setId":2,"iconIdx":319},{"icon":{"paths":["M512 629.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M298.643 286.289c-8.107 0-16.213-2.987-22.613-9.387l-160-160c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l160 160c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M136.977 287.997c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l160-160c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-160 160c-5.973 6.4-14.507 9.387-22.613 9.387z","M640 458.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 714.667c-17.493 0-32-14.507-32-32v-341.76c0-180.48-61.44-217.173-183.040-223.573h-254.293c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c174.933 9.387 245.333 92.587 245.333 287.573v341.76c0 17.493-14.507 32-32 32z","M640 970.658h-256c-239.787 0-288-110.507-288-288.853v-297.388c0-17.493 14.507-32 32-32s32 14.507 32 32v297.388c0 158.72 31.147 224.853 224 224.853h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667c-4.267 0-8.107-0.853-12.373-2.56-11.947-5.12-19.627-16.64-19.627-29.44v-128c0-103.253 56.747-160 160-160h128c12.8 0 24.747 7.68 29.44 19.627s2.133 25.6-6.827 34.987l-256 256c-5.973 5.973-14.507 9.387-22.613 9.387zM768 714.667c-67.413 0-96 28.587-96 96v50.773l146.773-146.773h-50.773z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":546,"id":581,"name":"note-remove","prevSize":32,"code":60066},"setIdx":2,"setId":2,"iconIdx":320},{"icon":{"paths":["M566.178 992h-107.52c-29.867 0-56.748-12.804-74.668-34.564-15.787-19.627-21.76-44.796-16.213-68.689l17.493-77.227c3.413-14.507 16.213-24.751 31.147-24.751h192.001c14.933 0 27.733 10.244 31.147 24.751l17.493 77.227c5.547 25.6 0.427 50.347-15.36 69.973-17.493 20.907-44.8 33.28-75.52 33.28zM442.018 849.92l-11.947 52.48c-1.28 6.4 1.28 11.52 3.84 14.507 5.547 6.827 14.507 10.667 24.747 10.667h107.52c11.093 0 20.48-3.413 25.6-9.813 3.413-4.267 4.267-9.387 2.987-15.787l-11.947-52.48h-140.8v0.427z","M608.405 849.911c-8.96 0-17.493-3.413-23.893-10.667-11.52-13.227-10.667-33.284 2.56-45.231l73.813-65.707c29.44-26.027 28.16-32.422 6.4-59.729l-130.133-165.124c-7.253-8.96-15.787-14.080-24.747-14.080s-17.493 5.12-24.747 14.080l-130.132 165.124c-23.040 29.44-22.613 35.84 5.547 58.88l74.665 66.556c13.227 11.52 14.507 32.004 2.56 45.231s-31.998 14.502-45.225 2.556l-73.814-65.707c-53.76-43.947-58.453-90.88-14.080-147.2l130.132-165.116c19.2-24.32 46.507-38.403 75.093-38.403s55.893 14.083 75.093 38.403l130.133 165.116c43.947 55.467 39.68 99.84-14.080 147.2l-73.813 65.707c-6.4 5.547-14.080 8.111-21.333 8.111z","M512.418 614.404c-17.493 0-32-14.507-32-32v-107.947c0-17.493 14.507-32 32-32s32 14.507 32 32v107.947c0 17.92-14.507 32-32 32z","M511.979 268.375c-21.333 0-42.667-8.107-58.88-24.32l-33.279-33.278c-32.427-32.427-32.427-85.334 0-117.76l33.279-33.279c32.427-32.427 85.333-32.427 117.76 0l33.28 33.279c32.427 32.427 32.427 85.334 0 117.76l-33.28 33.278c-16.213 16.213-37.547 24.32-58.88 24.32zM511.979 99.416c-5.12 0-9.813 1.707-13.653 5.547l-33.28 33.278c-3.413 3.413-5.547 8.534-5.547 13.654s2.133 9.814 5.547 13.654l33.28 33.279c7.253 7.253 20.053 7.253 27.307 0l33.28-33.279c3.413-3.413 5.547-8.534 5.547-13.654s-2.133-9.814-5.547-13.654l-33.28-33.278c-3.84-3.413-8.533-5.547-13.653-5.547z","M876.8 599.898h-46.933c-46.080 0-83.2-37.551-83.2-83.204v-46.929c0-46.081 37.547-83.202 83.2-83.202h46.933c46.080 0 83.2 37.547 83.2 83.202v46.929c0 46.080-37.547 83.204-83.2 83.204zM829.867 450.564c-10.667 0-19.2 8.533-19.2 19.2v46.929c0 10.667 8.533 19.204 19.2 19.204h46.933c10.667 0 19.2-8.538 19.2-19.204v-46.929c0-10.667-8.533-19.2-19.2-19.2h-46.933z","M194.133 599.898h-46.933c-46.080 0-83.2-37.551-83.2-83.204v-46.929c0-46.081 37.547-83.202 83.2-83.202h46.933c46.080 0 83.2 37.547 83.2 83.202v46.929c0 46.080-37.547 83.204-83.2 83.204zM147.2 450.564c-10.667 0-19.2 8.533-19.2 19.2v46.929c0 10.667 8.533 19.204 19.2 19.204h46.933c10.667 0 19.2-8.538 19.2-19.204v-46.929c0-10.667-8.533-19.2-19.2-19.2h-46.933z","M791.027 462.942c-8.107 0-16.213-2.987-22.613-9.387l-226.133-226.132c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l226.133 226.133c12.373 12.373 12.373 32.852 0 45.226-6.4 6.4-14.507 9.387-22.613 9.387z","M232.977 462.942c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.852 0-45.226l226.134-226.133c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-226.134 226.132c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pen-tool"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":547,"id":580,"name":"pen-tool","prevSize":32,"code":60067},"setIdx":2,"setId":2,"iconIdx":321},{"icon":{"paths":["M725.286 537.165h-114.347c-46.507 0-82.773-36.267-82.773-82.773v-63.576c0-46.507 36.267-82.773 82.773-82.773h63.573c45.653 0 82.773 37.12 82.773 82.773v113.923c0 17.92-14.507 32.427-32 32.427zM610.94 372.042c-13.653 0-18.773 10.24-18.773 18.773v63.576c0 8.533 4.693 18.773 18.773 18.773h82.347v-81.923c0-10.24-8.533-18.773-18.773-18.773h-63.573v-0.427z","M636.16 715.938c-11.093 0-21.76-5.547-27.733-15.787-8.96-15.36-3.84-34.987 11.093-43.947 58.027-34.56 73.813-43.52 73.813-151.040 0-17.493 14.507-32 32-32s32 14.507 32 32c0 131.413-28.587 160.853-104.96 206.080-5.12 2.987-10.667 4.693-16.213 4.693z","M463.369 537.165h-114.346c-46.507 0-82.773-36.267-82.773-82.773v-63.576c0-46.507 36.266-82.773 82.773-82.773h63.574c45.652 0 82.772 37.12 82.772 82.773v113.923c0 17.92-14.080 32.427-32 32.427zM349.45 372.042c-13.653 0-18.773 10.24-18.773 18.773v63.576c0 8.533 4.693 18.773 18.773 18.773h82.345v-81.923c0-10.24-8.532-18.773-18.772-18.773h-63.573v-0.427z","M374.159 715.938c-11.093 0-21.76-5.547-27.734-15.787-8.96-15.36-3.84-34.987 11.094-43.947 58.027-34.56 73.812-43.52 73.812-151.040 0-17.493 14.507-32 32-32s32 14.507 32 32c0 131.413-28.587 160.853-104.959 206.080-5.12 2.987-10.666 4.693-16.213 4.693z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote-up-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":548,"id":579,"name":"quote-up-circle","prevSize":32,"code":60068},"setIdx":2,"setId":2,"iconIdx":322},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M640.009 682.667c-23.893 0-43.093-19.2-43.093-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.24 42.667z","M384.427 426.667c-23.893 0-43.094-19.2-43.094-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.24 42.667z","M383.978 672c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.858 0-45.231l256.002-255.998c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-256 256c-6.4 6.4-14.508 9.387-22.615 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discount-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":549,"id":578,"name":"discount-circle","prevSize":32,"code":60069},"setIdx":2,"setId":2,"iconIdx":323},{"icon":{"paths":["M512 544c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM512 117.333c-99.84 0-181.333 81.493-181.333 181.333s81.493 181.333 181.333 181.333c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.333-181.333-181.333z","M145.5 970.667c-17.493 0-32-14.507-32-32 0-182.187 178.774-330.667 398.508-330.667 17.493 0 32 14.507 32 32s-14.507 32-32 32c-184.321 0-334.508 119.467-334.508 266.667 0 17.493-14.507 32-32 32z","M776.533 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM776.533 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M938.645 970.667c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-search"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":550,"id":577,"name":"user-search","prevSize":32,"code":60070},"setIdx":2,"setId":2,"iconIdx":324},{"icon":{"paths":["M554.667 629.333h-469.333c-17.493 0-32-14.507-32-32v-341.333c0-111.787 90.88-202.667 202.667-202.667h384c17.493 0 32 14.507 32 32v426.667c0 64.853-52.48 117.333-117.333 117.333zM117.333 565.333h437.333c29.44 0 53.333-23.893 53.333-53.333v-394.667h-352c-76.373 0-138.667 62.293-138.667 138.667v309.333z","M810.667 885.333h-42.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-170.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-42.667c-88.32 0-160-71.68-160-160v-128c0-17.493 14.507-32 32-32h469.333c29.44 0 53.333-23.893 53.333-53.333v-298.667c0-17.493 14.507-32 32-32h78.507c42.24 0 81.067 22.614 101.973 59.307l72.96 127.573c5.547 9.813 5.547 22.187 0 32s-16.213 15.787-27.733 15.787h-55.040c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h128c17.493 0 32 14.507 32 32v128c0 88.32-71.68 160-160 160zM795.733 821.333h14.933c52.907 0 96-43.093 96-96v-96h-96c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.28-74.667 74.667-74.667l-45.653-79.787c-9.387-16.64-27.307-26.88-46.507-26.88h-46.507v266.667c0 64.853-52.48 117.333-117.333 117.333h-437.333v96c0 52.907 43.093 96 96 96h14.934c14.080-49.067 59.306-85.333 113.066-85.333s98.987 36.267 113.067 85.333h115.627c14.080-49.067 59.307-85.333 113.067-85.333s98.56 36.267 112.64 85.333z","M341.333 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM341.333 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M682.667 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM682.667 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M938.667 629.333h-128c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.707-74.667 74.667-74.667h55.040c11.52 0 22.187 5.973 27.733 16.213l72.96 128c2.56 4.693 4.267 10.24 4.267 15.787v85.333c0 17.493-14.507 32-32 32zM810.667 416c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h96v-44.8l-59.733-104.533h-36.267z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["truck"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":551,"id":576,"name":"truck","prevSize":32,"code":60071},"setIdx":2,"setId":2,"iconIdx":325},{"icon":{"paths":["M615.667 652.8h-213.334c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.334c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h64c74.667 0 98.133 24.32 128 64l64 85.333c14.080 18.773 16.213 21.333 42.667 21.333h128c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 117.333c-152.747 0-181.333 29.013-181.333 181.333v426.667c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-256c0-152.32-28.587-181.333-181.333-181.333h-128c-54.613 0-72.533-18.773-93.867-46.933l-64-85.333c-22.187-29.44-29.013-38.4-76.8-38.4h-64z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-minus"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":552,"id":575,"name":"folder-minus","prevSize":32,"code":60072},"setIdx":2,"setId":2,"iconIdx":326},{"icon":{"paths":["M318.305 825.178h-81.922c-125.44-8.96-181.758-105.387-181.758-191.147s56.318-182.613 179.625-191.147c17.493-1.707 32.853 11.947 34.133 29.867 1.28 17.493-11.945 32.853-29.865 34.133-82.773 5.973-119.893 68.267-119.893 127.573s37.12 121.6 119.893 127.573h79.787c17.493 0 32 14.507 32 32s-14.507 31.147-32 31.147z","M711.249 825.173c-0.853 0-1.28 0-2.133 0-17.493 0-33.707-14.507-33.707-32 0-18.347 13.653-32 31.573-32 52.48 0 99.413-18.347 136.107-51.2 66.56-58.027 70.827-141.653 52.907-200.533-17.92-58.453-67.84-125.44-154.88-136.107-14.080-1.707-25.173-12.373-27.733-26.453-17.067-102.4-72.107-173.227-155.733-198.827-86.187-26.88-186.88-0.427-249.601 65.28-61.013 63.573-75.093 152.747-39.68 250.88 5.973 16.64-2.558 34.987-19.198 40.96s-34.988-2.56-40.961-19.2c-43.093-120.32-23.466-235.52 53.76-316.587 78.933-82.773 205.652-115.627 314.452-82.347 99.84 30.72 170.24 113.067 195.84 227.413 87.040 19.627 157.013 85.76 184.747 177.067 30.293 99.413 2.987 201.813-71.68 266.667-47.36 42.667-109.227 66.987-174.080 66.987z","M512 950.613c-85.76 0-165.972-45.653-209.919-119.467-4.693-7.253-9.387-15.787-13.227-25.173-14.507-30.293-22.188-64.853-22.188-100.693 0-135.253 110.080-245.333 245.333-245.333s245.333 110.080 245.333 245.333c0 36.267-7.68 70.4-23.040 101.973-3.413 8.107-8.107 16.64-13.227 24.747-43.093 72.96-123.307 118.613-209.067 118.613zM512 523.947c-99.84 0-181.333 81.493-181.333 181.333 0 26.453 5.547 51.2 16.213 73.813 3.413 7.253 6.4 13.227 9.813 18.773 32.427 55.040 91.734 88.747 154.88 88.747s122.453-33.707 154.453-87.893c3.84-6.4 7.253-12.373 9.813-18.347 11.52-23.467 17.067-48.213 17.067-74.667 0.427-100.267-81.067-181.76-180.907-181.76z","M487.676 779.511c-8.107 0-16.213-2.987-22.613-9.387l-42.241-42.24c-12.373-12.373-12.373-32.853 0-45.227s32.854-12.373 45.228 0l20.48 20.48 68.267-63.147c13.227-11.947 33.28-11.093 45.227 1.707s11.093 33.28-1.707 45.227l-90.88 84.053c-6.4 5.547-14.080 8.533-21.76 8.533z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-add"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":553,"id":574,"name":"cloud-add","prevSize":32,"code":60073},"setIdx":2,"setId":2,"iconIdx":327},{"icon":{"paths":["M512.388 970.244c-26.88 0-53.333-8.96-74.24-26.88l-67.412-57.6c-6.827-5.973-23.893-11.947-32.853-11.947h-74.667c-63.147 0-114.347-51.2-114.347-114.347v-72.96c0-8.96-5.973-26.027-11.52-32.427l-58.027-68.267c-34.987-41.387-34.987-106.24 0-148.053l58.027-68.268c5.547-6.4 11.52-23.467 11.52-32.427v-72.533c0-63.147 51.2-114.347 114.347-114.347h73.813c8.96 0 25.6-6.4 32.853-12.373l67.412-57.6c41.813-35.413 107.093-35.413 148.907 0l67.413 57.6c6.827 5.973 24.32 11.947 33.28 11.947h72.533c63.147 0 114.347 51.2 114.347 114.347v72.533c0 8.96 6.4 25.6 12.373 32.853l57.6 67.415c35.84 42.24 35.413 107.52 0 148.907l-57.6 67.413c-5.973 7.253-11.947 23.893-11.947 32.853v72.533c0 63.147-51.2 114.347-114.347 114.347h-72.533c-8.96 0-25.6 6.4-33.28 12.373l-67.413 57.6c-20.907 18.347-47.787 27.307-74.24 27.307zM263.217 214.19c-27.733 0-50.347 22.613-50.347 50.347v72.533c0 24.32-11.093 55.040-26.88 73.813l-58.027 68.268c-14.507 17.493-14.507 48.213 0 65.28l57.6 67.84c15.36 17.493 26.88 49.493 26.88 73.813v72.96c0 27.733 22.613 50.347 50.347 50.347h74.24c23.893 0 55.467 11.52 74.24 27.307l67.838 58.027c17.493 14.933 47.787 14.933 65.707 0l67.413-57.6c19.2-16.213 50.347-27.307 74.24-27.307h72.533c27.733 0 50.347-22.613 50.347-50.347v-72.533c0-23.893 11.52-55.040 27.307-74.24l58.027-67.84c14.933-17.493 14.933-48.213 0-65.707l-57.6-67.415c-16.213-19.2-27.307-50.347-27.307-74.24v-72.96c0-27.733-22.613-50.347-50.347-50.347h-72.533c-24.32 0-55.893-11.52-74.667-27.307l-67.84-58.027c-17.493-14.933-47.787-14.933-65.707 0l-66.985 58.027c-19.2 15.787-50.347 27.307-74.667 27.307h-73.813z","M631.915 692.907l-119.893-270.080-119.891 270.080-58.88-26.027 149.331-335.786h58.88l149.333 335.786-58.88 26.027z","M586.667 599.898h-149.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h149.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["autobrightness"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":554,"id":573,"name":"autobrightness","prevSize":32,"code":60074},"setIdx":2,"setId":2,"iconIdx":328},{"icon":{"paths":["M719.748 813.231h-341.332c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.335 245.333-245.335h469.332c17.493 0 32 14.507 32 32s-14.507 32-32 32h-469.332c-99.84 0-181.333 81.495-181.333 181.335s81.493 181.333 181.333 181.333h341.332c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M749.645 493.222c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l86.613-86.614-86.613-86.613c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l109.227 109.227c12.373 12.373 12.373 32.853 0 45.227l-109.227 109.228c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["redo"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":555,"id":572,"name":"redo","prevSize":32,"code":60075},"setIdx":2,"setId":2,"iconIdx":329},{"icon":{"paths":["M597.333 970.667h-213.333c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v170.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-170.667c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.667 970.667c-4.267 0-8.107-0.853-12.373-2.56-11.947-5.12-19.627-16.64-19.627-29.44v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v178.773l30.72-30.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 5.973-14.507 9.387-22.613 9.387z","M810.645 970.662c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M379.722 703.578c-1.28 0-2.56 0-3.413 0-17.493-2.133-30.293-17.92-28.16-35.413l44.373-404.48c2.133-17.493 17.493-30.293 35.412-28.16 17.493 2.133 30.293 17.92 28.16 35.413l-44.798 404.053c-1.707 16.213-15.787 28.587-31.574 28.587z","M514.138 703.569c-1.28 0-2.56 0-3.413 0-17.493-2.133-30.293-17.92-28.16-35.413l44.8-404.055c2.133-17.493 17.92-30.293 35.413-28.16s30.293 17.92 28.16 35.413l-44.8 404.055c-1.707 15.787-15.787 28.16-32 28.16z","M682.637 433.916h-404.053c-17.493 0-32-14.506-32-31.999s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.507 31.999-32 31.999z","M660.053 568.751h-404.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hashtag-down"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":556,"id":571,"name":"hashtag-down","prevSize":32,"code":60076},"setIdx":2,"setId":2,"iconIdx":330},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512 554.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M682.667 554.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M341.333 554.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["more-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":557,"id":570,"name":"more-square","prevSize":32,"code":60077},"setIdx":2,"setId":2,"iconIdx":331},{"icon":{"paths":["M714.667 330.667h-405.333c-17.493 0-32-14.507-32-32v-85.333c0-109.227 50.773-160 160-160h149.333c109.227 0 160 50.773 160 160v85.333c0 17.493-14.507 32-32 32zM341.333 266.667h341.333v-53.333c0-72.533-23.467-96-96-96h-149.333c-72.533 0-96 23.467-96 96v53.333z","M554.667 970.667h-85.333c-103.253 0-160-56.747-160-160v-170.667c0-17.493 14.507-32 32-32h341.333c17.493 0 32 14.507 32 32v170.667c0 103.253-56.747 160-160 160zM373.333 672v138.667c0 67.413 28.587 96 96 96h85.333c67.413 0 96-28.587 96-96v-138.667h-277.333z","M768 800h-85.333c-17.493 0-32-14.507-32-32v-96h-277.333v96c0 17.493-14.507 32-32 32h-85.333c-103.253 0-160-56.747-160-160v-213.333c0-103.253 56.747-160 160-160h512c103.253 0 160 56.747 160 160v213.333c0 103.253-56.747 160-160 160zM714.667 736h53.333c67.413 0 96-28.587 96-96v-213.333c0-67.413-28.587-96-96-96h-512c-67.413 0-96 28.587-96 96v213.333c0 67.413 28.587 96 96 96h53.333v-96c0-17.493 14.507-32 32-32h341.333c17.493 0 32 14.507 32 32v96z","M725.333 672h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 501.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["printer"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":558,"id":569,"name":"printer","prevSize":32,"code":60078},"setIdx":2,"setId":2,"iconIdx":332},{"icon":{"paths":["M383.56 917.338c-70.827 0-142.080-26.88-196.267-81.067-107.947-108.373-107.947-284.16 0-392.107 12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227c-83.2 83.2-83.2 218.453 0 301.653s218.454 83.2 301.654 0c40.107-40.107 62.293-93.867 62.293-151.040 0-56.747-22.187-110.507-62.293-151.040-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0c52.48 52.48 81.067 122.027 81.067 196.267s-29.013 143.787-81.067 196.267c-53.76 54.187-124.587 81.067-195.84 81.067z","M813.658 604.169c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227 87.467-87.467 87.467-229.545 0-316.585-87.467-87.467-229.547-87.467-316.587 0-42.24 42.24-65.708 98.56-65.708 158.293 0 59.732 23.468 116.052 65.708 158.292 12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0c-54.188-54.187-84.481-126.72-84.481-203.519 0-76.8 29.867-149.333 84.481-203.52 112.213-112.213 294.827-112.213 407.467 0 112.213 112.213 112.213 295.252 0 407.465-6.4 5.973-14.933 8.96-23.040 8.96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":559,"id":568,"name":"link-2","prevSize":32,"code":60079},"setIdx":2,"setId":2,"iconIdx":333},{"icon":{"paths":["M735.561 970.667h-447.147c-119.467 0-195.413-71.253-202.24-190.293l-22.187-352c-3.413-53.333 14.933-104.533 51.627-143.36 36.267-38.827 87.467-61.013 140.373-61.013 13.653 0 26.88-8.107 33.28-20.907l30.72-61.013c25.173-49.92 88.32-88.747 143.36-88.747h97.707c55.040 0 117.76 38.827 142.933 88.32l30.72 62.293c6.4 11.947 19.2 20.053 33.28 20.053 52.907 0 104.107 22.187 140.373 61.013 36.693 39.253 55.040 90.027 51.627 143.36l-22.187 352.427c-7.68 120.747-81.493 189.867-202.24 189.867zM463.347 117.333c-31.573 0-71.68 24.747-86.187 53.333l-30.72 61.44c-17.92 34.56-52.48 55.893-90.453 55.893-35.84 0-69.12 14.507-93.867 40.533-24.32 26.027-36.693 60.16-34.133 95.573l22.187 352.427c5.12 86.187 51.627 130.133 138.24 130.133h447.147c86.187 0 132.693-43.947 138.24-130.133l22.187-352.427c2.133-35.413-9.813-69.547-34.133-95.573-24.747-26.027-58.027-40.533-93.867-40.533-37.973 0-72.533-21.333-90.453-55.040l-31.147-62.293c-14.080-28.16-54.187-52.907-85.76-52.907h-97.28v-0.427z","M576 373.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 800c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667zM512 522.667c-58.88 0-106.667 47.787-106.667 106.667s47.787 106.667 106.667 106.667c58.88 0 106.667-47.787 106.667-106.667s-47.787-106.667-106.667-106.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":560,"id":567,"name":"camera","prevSize":32,"code":60080},"setIdx":2,"setId":2,"iconIdx":334},{"icon":{"paths":["M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-426.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v426.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-426.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M789.333 394.667h-85.333c-64.853 0-117.333-52.48-117.333-117.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 29.44 23.893 53.333 53.333 53.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 586.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 757.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-text"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":561,"id":566,"name":"document-text","prevSize":32,"code":60081},"setIdx":2,"setId":2,"iconIdx":335},{"icon":{"paths":["M554.667 842.667h-256c-188.16 0-245.333-57.173-245.333-245.333v-170.667c0-188.16 57.173-245.333 245.333-245.333h256c188.16 0 245.333 57.173 245.333 245.333v170.667c0 188.16-57.173 245.333-245.333 245.333zM298.667 245.333c-152.747 0-181.333 29.013-181.333 181.333v170.667c0 152.32 28.587 181.333 181.333 181.333h256c152.747 0 181.333-29.013 181.333-181.333v-170.667c0-152.32-28.587-181.333-181.333-181.333h-256z","M874.667 650.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c25.173 0 30.72-3.84 31.147-3.84 0.853-2.56 0.853-17.493 0.853-28.16v-85.333c0-10.667 0-25.173-1.707-29.013 0.427 0.427-6.827-2.987-30.293-2.987-17.493 0-32-14.507-32-32s14.507-32 32-32c88.747 0 96 43.52 96 96v85.333c0 52.48-7.253 96-96 96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["battery-empty"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":562,"id":565,"name":"battery-empty","prevSize":32,"code":60082},"setIdx":2,"setId":2,"iconIdx":336},{"icon":{"paths":["M512 808.533c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.669 202.667-202.669c111.787 0 202.667 90.882 202.667 202.669s-90.88 202.667-202.667 202.667zM512 467.2c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M488.145 675.418c-13.653 0-27.307-5.12-37.547-15.36l-27.735-27.733c-12.373-12.373-12.373-32.853 0-45.227 12.375-12.373 32.855-12.373 45.228 0l20.48 20.48 68.693-63.147c12.8-11.947 33.28-11.093 45.227 1.707s11.093 33.28-1.707 45.227l-75.947 69.973c-10.667 9.387-23.467 14.080-36.693 14.080z","M682.675 970.667h-341.332c-197.12 0-233.813-91.733-243.2-180.907l-32-341.76c-4.693-44.8-5.973-110.933 38.4-160.426 38.4-42.667 101.973-63.147 194.133-63.147h426.665c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 340.907c-9.387 89.6-46.080 181.333-243.2 181.333zM298.676 288c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 341.76c7.253 67.413 25.6 123.307 179.627 123.307h341.332c153.6 0 172.373-55.893 179.627-123.733l32-340.907c5.547-53.333-1.28-88.746-22.187-111.786-25.173-28.16-74.667-42.24-146.773-42.24h-426.665z","M682.667 288c-17.493 0-32-14.507-32-32v-34.133c0-75.947 0-104.533-104.533-104.533h-68.267c-104.533 0-104.533 28.587-104.533 104.533v34.133c0 17.493-14.507 32-32 32s-32-14.507-32-32v-34.133c0-75.093 0-168.533 168.533-168.533h68.267c168.533 0 168.533 93.44 168.533 168.533v34.133c0 17.493-14.507 32-32 32z","M683.115 613.978c-14.507 0-27.307-9.813-31.147-24.32-4.267-17.067 5.973-34.56 23.040-38.827 83.2-20.907 160.427-57.173 229.547-107.52 14.080-10.24 34.133-7.253 44.8 7.253 10.24 14.080 7.253 34.133-7.253 44.8-75.947 55.040-160.427 94.72-251.733 117.76-2.133 0.427-4.693 0.853-7.253 0.853z","M341.364 615.249c-2.56 0-5.12-0.427-7.68-0.853-85.76-20.907-166.4-57.173-240.213-107.52-14.507-9.813-18.347-29.867-8.533-44.373s29.867-18.347 44.373-8.533c67.413 46.080 140.8 78.933 219.307 98.133 17.067 4.267 27.733 21.333 23.467 38.827-2.987 14.507-16.213 24.32-30.72 24.32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":563,"id":564,"name":"brifecase-tick","prevSize":32,"code":60083},"setIdx":2,"setId":2,"iconIdx":337},{"icon":{"paths":["M380.143 881.92c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l278.186-278.187c20.48-20.48 20.48-53.76 0-74.24l-278.186-278.186c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l278.186 278.186c21.76 21.76 34.133 51.2 34.133 82.347s-11.947 60.587-34.133 82.347l-278.186 278.187c-6.4 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right-3"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":564,"id":563,"name":"arrow-right-3","prevSize":32,"code":60084},"setIdx":2,"setId":2,"iconIdx":338},{"icon":{"paths":["M512.213 969.924c-252.488 0-457.713-205.222-457.713-457.711s205.226-457.713 457.713-457.713c252.489 0 457.711 205.226 457.711 457.713s-205.649 457.711-457.711 457.711zM512.213 118.367c-217.148 0-393.846 176.698-393.846 393.846s176.698 393.847 393.846 393.847c217.148 0 393.847-176.7 393.847-393.847s-176.7-393.846-393.847-393.846z","M610.116 552.67c-8.516 0-16.606-3.405-22.566-9.365l-348.289-349.14c-12.347-12.347-12.347-32.785 0-45.132s32.785-12.348 45.133 0l294.214 294.638 0.427-116.662c0-17.457 14.477-31.933 31.932-31.933 17.459-1.277 31.936 14.476 31.936 31.933l-0.427 193.731c0 12.774-7.663 24.695-19.588 29.376-4.258 1.707-8.512 2.556-12.77 2.556z","M762.155 884.339c-8.090 0-16.179-2.982-22.566-9.365l-294.212-294.643-0.427 116.663c0 17.459-14.477 31.936-31.933 31.936-17.457 0-31.933-14.477-31.933-31.936l0.426-193.728c0-12.774 7.664-24.695 19.586-29.38 11.922-5.107 25.547-2.129 34.916 6.814l348.288 349.141c12.348 12.348 12.348 32.785 0 45.133-5.538 6.383-14.054 9.365-22.144 9.365z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["convert"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":565,"id":562,"name":"convert","prevSize":32,"code":60085},"setIdx":2,"setId":2,"iconIdx":339},{"icon":{"paths":["M85.352 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.332-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.332 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z","M805.534 970.667c-23.893 0-49.493-7.253-75.093-21.333l-278.187-173.653c-14.933-9.387-19.627-29.013-10.24-43.947s29.013-19.627 43.947-10.24l276.907 172.8c23.893 13.227 47.787 16.213 63.147 7.253s24.32-31.147 24.32-60.587v-469.335c0-17.493 14.507-32 32-32s32 14.507 32 32v469.335c0 52.48-20.48 94.72-55.893 115.627-15.787 9.387-33.707 14.080-52.907 14.080z","M141.667 883.2c-17.493 0-32-14.507-32-32v-601.173c0-108.373 88.32-196.693 196.693-196.693h411.733c59.307 0 115.2 26.453 152.747 72.96 11.093 13.653 8.96 33.707-4.693 45.227-13.653 11.093-33.707 8.96-44.8-4.693-25.6-31.573-63.147-49.493-103.253-49.493h-411.733c-72.96 0-132.693 59.733-132.693 132.693v601.173c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-slash"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":566,"id":561,"name":"archive-slash","prevSize":32,"code":60086},"setIdx":2,"setId":2,"iconIdx":340},{"icon":{"paths":["M640 970.667h-256c-145.92 0-202.667-56.747-202.667-202.667v-512c0-145.92 56.747-202.667 202.667-202.667h256c145.92 0 202.667 56.747 202.667 202.667v512c0 145.92-56.747 202.667-202.667 202.667zM384 117.333c-110.080 0-138.667 28.587-138.667 138.667v512c0 110.080 28.587 138.667 138.667 138.667h256c110.080 0 138.667-28.587 138.667-138.667v-512c0-110.080-28.587-138.667-138.667-138.667h-256z","M512 800c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 544c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M512 416c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM512 288c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["speaker"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":567,"id":560,"name":"speaker","prevSize":32,"code":60087},"setIdx":2,"setId":2,"iconIdx":341},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667 0 59.733-11.093 116.907-33.28 170.667-3.84 8.96-11.093 15.787-20.48 18.347-9.387 2.987-19.2 1.28-27.307-4.267-50.347-34.56-118.187-32-165.973 5.547-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 1.28 2.133 2.133 3.413 3.413 4.693 6.827 7.68 9.387 18.347 7.253 28.587s-9.387 18.347-19.2 22.187c-54.187 22.613-111.787 33.707-171.093 33.707zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c38.4 0 75.947-5.547 112.213-16.64-10.667-24.747-16.213-51.627-16.213-79.36 0-62.293 27.733-119.893 75.947-158.293 58.027-46.080 139.52-56.747 206.080-28.16 10.667-35.84 16.213-73.813 16.213-112.64 0.427-217.174-176.64-394.24-394.24-394.24z","M464.166 685.658c-16.64 0-32.427-3.84-46.080-11.947-31.573-18.347-49.919-55.467-49.919-102.4v-118.613c0-46.934 18.346-84.053 49.919-102.4 32-18.347 73.387-15.36 113.92 8.107l102.4 59.305c40.533 23.468 63.573 58.028 63.573 94.295s-23.040 71.253-63.573 94.293l-102.4 59.307c-23.040 13.227-46.080 20.053-67.84 20.053zM464.593 402.35c-5.547 0-10.24 1.281-14.507 3.414-11.52 6.827-17.92 23.893-17.92 46.933v118.613c0 23.040 6.4 40.533 17.92 46.933s29.44 3.84 49.92-8.107l102.4-59.307c20.053-11.52 31.573-26.027 31.573-39.253s-11.52-27.307-31.573-39.253l-102.4-59.308c-13.227-6.827-25.173-10.667-35.413-10.667z","M810.667 1013.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.667 17.92-24.32 34.133-40.533 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM810.667 672c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 24.747 41.813 70.4 67.413 118.613 67.413 33.707 0 66.133-12.373 90.88-34.56 11.093-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667z","M874.658 841.813h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.667 907.093c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":568,"id":559,"name":"play-add","prevSize":32,"code":60088},"setIdx":2,"setId":2,"iconIdx":342},{"icon":{"paths":["M516.693 969.382h-265.387c-116.48 0-197.973-81.493-197.973-197.973v-331.52c0-116.479 81.493-197.972 197.973-197.972h163.413c52.053 0 103.253 21.333 139.947 58.027l101.973 101.547c37.12 37.119 58.027 87.892 58.027 139.946v229.973c0 116.48-81.493 197.973-197.973 197.973zM251.307 305.917c-81.493 0-133.973 52.48-133.973 133.972v331.52c0 81.493 52.48 133.973 133.973 133.973h265.387c81.493 0 133.973-52.48 133.973-133.973v-229.973c0-35.413-14.507-69.547-39.253-94.72l-101.973-101.546c-25.173-25.173-59.733-39.253-94.72-39.253h-163.413z","M772.693 779.947h-90.027c-17.493 0-32-14.507-32-32v-206.507c0-35.413-14.507-69.547-39.253-94.72l-101.973-101.548c-25.173-25.173-59.733-39.253-94.72-39.253h-73.387c-17.493 0-32-14.507-32-32v-23.893c0-116.48 81.493-197.973 197.973-197.973h163.413c52.053 0 103.253 21.333 139.947 58.027l101.973 101.973c37.547 37.547 58.027 87.040 58.027 139.947v229.975c0 116.48-81.493 197.973-197.973 197.973zM714.667 715.947h58.027c81.493 0 133.973-52.48 133.973-133.973v-229.975c0-35.84-14.080-69.547-39.253-94.72l-101.973-101.973c-24.747-24.747-59.307-39.253-94.72-39.253h-163.413c-78.507 0-130.56 49.067-133.973 125.867h41.387c52.053 0 103.253 21.333 139.947 58.027l101.973 101.547c37.12 37.121 58.027 87.895 58.027 139.948v174.507z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simcard-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":569,"id":558,"name":"simcard-2","prevSize":32,"code":60089},"setIdx":2,"setId":2,"iconIdx":343},{"icon":{"paths":["M756.907 970.658h-431.36c-13.653 0-25.6-8.533-30.293-20.907-4.693-12.8-0.853-26.884 9.387-35.418s19.627-19.622 26.453-31.569c13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667-31.573 0-61.44 10.662-86.613 30.716-9.813 7.68-22.613 8.964-33.707 3.844s-17.92-16.64-17.92-29.013v-186.453c0-106.241 86.187-192.428 192.427-192.428h489.813c106.24 0 192.427 86.187 192.427 192.428v61.44c0 17.493-14.507 32-32 32h-86.187c-14.933 0-28.587 5.547-38.4 15.787l-0.427 0.427c-11.947 11.52-17.493 27.302-16.213 43.516 2.56 28.16 29.44 50.773 60.16 50.773h81.067c17.493 0 32 14.507 32 32v50.773c0 106.24-86.187 192.431-192.427 192.431zM391.68 906.658h365.227c70.827 0 128.427-57.604 128.427-128.431v-18.773h-49.067c-64.427 0-119.040-47.787-124.16-109.227-3.413-34.987 9.387-69.542 34.987-94.716 22.187-22.613 52.053-34.987 84.053-34.987h54.187v-29.44c0-70.828-57.6-128.428-128.427-128.428h-489.813c-70.827 0-128.427 57.6-128.427 128.428v131.413c23.893-9.387 49.067-14.507 74.667-14.507 111.787 0 202.667 90.88 202.667 202.667 0 33.707-8.533 66.987-24.32 96z","M106.667 561.493c-17.493 0-32-14.507-32-32v-194.984c0-63.573 40.107-121.175 99.413-143.789l338.773-128c34.56-13.227 73.813-8.532 104.107 12.802 30.72 21.333 48.64 55.893 48.64 93.013v162.132c0 17.493-14.507 32-32 32s-32-14.507-32-32v-162.132c0-16.213-7.68-31.148-21.333-40.534s-29.867-11.52-45.227-5.547l-338.773 128c-34.56 13.227-58.027 46.935-58.027 84.055v194.984c0.427 17.92-14.080 32-31.573 32z","M836.288 759.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.76-22.187 51.627-34.56 83.627-34.56h88.747c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.48zM918.635 584.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.56 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M597.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 1013.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.24 17.92-24.32 34.133-40.533 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM213.333 672c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 25.173 42.667 69.547 67.413 118.613 67.413 33.707 0 66.133-12.373 90.88-34.56 11.093-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667z","M276.907 841.813h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M213.333 907.093c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["empty-wallet-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":570,"id":557,"name":"empty-wallet-add","prevSize":32,"code":60090},"setIdx":2,"setId":2,"iconIdx":344},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M409.567 673.276c-8.107 0-16.213-2.987-22.613-9.387l-106.24-106.24c-25.173-25.173-25.173-65.707 0-90.88l106.24-106.239c12.373-12.373 32.853-12.373 45.226 0s12.373 32.853 0 45.227l-106.239 106.239 106.239 106.667c12.373 12.373 12.373 32.853 0 45.227-6.399 5.973-14.506 9.387-22.612 9.387z","M614.391 673.289c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l106.24-106.667-106.24-106.668c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l106.24 106.242c25.173 25.173 25.173 65.707 0 90.88l-106.24 106.24c-5.973 6.4-14.507 9.813-22.613 9.813z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scroll"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":571,"id":556,"name":"scroll","prevSize":32,"code":60091},"setIdx":2,"setId":2,"iconIdx":345},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M451.392 664.751c-8.533 0-16.64-3.413-22.613-9.387l-120.749-120.747c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l98.135 98.133 219.307-219.307c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-241.92 241.92c-5.973 5.973-14.080 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tick-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":572,"id":555,"name":"tick-circle","prevSize":32,"code":60092},"setIdx":2,"setId":2,"iconIdx":346},{"icon":{"paths":["M725.342 896h-286.72c-69.119 0-135.252-29.44-181.332-80.213l-150.613-165.547c-71.68-78.507-71.68-197.12 0-276.053l150.613-165.547c46.080-51.2 112.213-80.64 181.332-80.64h286.72c135.253 0 245.333 110.080 245.333 245.333v277.333c0 135.253-110.080 245.333-245.333 245.333zM438.622 192c-50.772 0-99.839 21.76-133.972 59.307l-151.040 165.973c-49.067 54.187-49.067 135.68 0 189.867l150.613 165.547c34.133 37.547 83.2 59.307 133.972 59.307h287.147c99.84 0 181.333-81.493 181.333-181.333v-277.333c0-99.84-81.493-181.333-181.333-181.333h-286.72z","M682.667 649.387c-8.107 0-16.213-2.987-22.613-9.387l-210.773-211.2c-12.373-12.375-12.373-32.855 0-45.228s32.853-12.373 45.227 0l210.773 211.202c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M471.893 649.387c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l210.773-210.775c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.228l-210.773 210.773c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag-cross"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":573,"id":554,"name":"tag-cross","prevSize":32,"code":60093},"setIdx":2,"setId":2,"iconIdx":347},{"icon":{"paths":["M511.996 949.325c-34.987 0-69.973-11.093-98.987-32.853l-222.293-166.4c-41.387-31.147-66.133-80.64-66.133-132.267v-542.721h774.826v542.721c0 51.627-24.747 101.12-66.133 132.267l-222.293 166.4c-29.013 21.76-64 32.853-98.987 32.853zM188.583 138.657v478.721c0 31.573 15.359 61.867 40.532 81.067l222.293 166.4c35.84 26.88 85.76 26.88 121.6 0l222.293-166.4c25.173-19.2 40.533-49.493 40.533-81.067v-478.721h-647.252z","M938.667 138.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 373.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 586.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bill"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":574,"id":553,"name":"bill","prevSize":32,"code":60094},"setIdx":2,"setId":2,"iconIdx":348},{"icon":{"paths":["M482.603 768c-0.427 0-0.427 0-0.853 0-44.373-0.427-81.922-28.16-95.148-70.4l-83.2-267.947c-11.093-36.268-1.707-75.095 25.173-101.548 26.453-26.453 64.853-35.841 100.695-24.748l268.373 83.201c42.667 13.227 70.4 50.775 70.827 95.148s-26.453 81.92-68.693 96l-73.387 24.747c-11.093 3.84-19.2 11.947-23.040 22.613l-25.173 73.813c-14.080 42.24-51.627 69.12-95.573 69.12zM398.548 362.665c-12.8 0-21.333 6.827-25.173 10.667-9.813 9.813-13.227 23.893-8.96 37.12l83.202 267.948c7.253 23.467 28.16 25.6 34.56 25.6 5.12-0.427 26.88-1.707 34.56-25.173l25.173-73.813c9.813-29.44 33.707-53.333 63.147-63.147l73.387-24.747c0 0 0 0 0.427 0 23.467-7.68 25.173-28.587 25.173-34.56 0-6.4-2.133-27.307-25.6-34.56l-268.375-83.202c-4.267-1.707-8.107-2.133-11.52-2.133z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":575,"id":552,"name":"mouse-1","prevSize":32,"code":60095},"setIdx":2,"setId":2,"iconIdx":349},{"icon":{"paths":["M512.009 970.671c-28.587 0-57.6-7.253-83.2-22.187l-253.442-146.347c-51.2-29.867-83.2-84.907-83.2-144.213v-291.84c0-59.307 32-114.347 83.2-144.213l253.442-146.346c51.2-29.867 114.773-29.867 166.4 0l253.44 146.346c51.2 29.867 83.2 84.907 83.2 144.213v291.84c0 59.307-32 114.347-83.2 144.213l-253.44 146.347c-25.6 14.933-54.613 22.187-83.2 22.187zM512.009 117.338c-17.493 0-35.413 4.693-51.2 13.653l-253.442 146.347c-31.573 18.347-51.2 52.054-51.2 88.747v291.84c0 36.267 19.627 70.4 51.2 88.747l253.442 146.347c31.573 18.347 70.827 18.347 102.4 0l253.44-146.347c31.573-18.347 51.2-52.053 51.2-88.747v-291.84c0-36.267-19.627-70.4-51.2-88.747l-253.44-146.347c-15.787-8.96-33.707-13.653-51.2-13.653z","M511.996 501.338c-72.533 0-131.412-58.884-131.412-131.416 0-72.533 58.879-131.411 131.412-131.411s131.413 58.878 131.413 131.411c0 72.532-58.88 131.416-131.413 131.416zM511.996 302.511c-37.12 0-67.413 30.291-67.413 67.411s30.293 67.416 67.413 67.416c37.12 0 67.413-30.296 67.413-67.416s-30.293-67.411-67.413-67.411z","M682.667 742.831c-17.493 0-32-14.507-32-32 0-58.88-62.293-107.093-138.667-107.093s-138.667 48.213-138.667 107.093c0 17.493-14.507 32-32 32s-32-14.507-32-32c0-94.293 90.88-171.093 202.667-171.093s202.667 76.8 202.667 171.093c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-octagon"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":576,"id":551,"name":"user-octagon","prevSize":32,"code":60096},"setIdx":2,"setId":2,"iconIdx":350},{"icon":{"paths":["M661.308 618.671h-512.002c-9.813 0-18.773-4.267-24.747-11.947-5.973-7.253-8.533-17.493-6.4-26.88l36.266-172.8c11.947-56.32 37.547-113.919 138.667-113.919h224.855c101.12 0 126.72 57.599 138.667 113.919l36.267 172.8c2.133 9.387-0.427 19.2-6.4 26.88-6.4 7.68-15.36 11.947-25.173 11.947zM188.559 554.671h433.068l-28.16-134.4c-8.96-43.093-19.627-63.146-75.947-63.146h-224.855c-56.32 0-66.987 20.052-75.947 63.146l-28.16 134.4z","M660.045 970.667h-60.16c-57.6 0-69.547-35.413-75.52-54.613l-6.4-19.2c-7.68-21.76-7.68-21.76-30.293-21.76h-163.838c-23.040 0-23.466 0.853-30.293 21.76l-6.4 19.2c-6.4 19.2-18.347 55.040-75.947 55.040h-60.16c-27.733 0-53.76-11.52-72.533-32-17.92-19.627-26.88-46.507-24.32-72.96l17.92-194.987c5.547-60.587 25.173-116.48 129.28-116.48h408.318c104.107 0 123.738 55.893 129.284 116.48l17.92 194.987c2.56 26.453-6.404 52.907-24.324 72.96-18.773 20.053-44.8 31.573-72.533 31.573zM588.791 905.813c0.853 0 4.267 0.853 11.093 0.853h60.16c9.813 0 18.773-3.84 25.173-11.093 5.973-6.827 8.96-14.933 8.107-23.893l-17.92-194.987c-3.84-40.107-5.547-58.453-65.707-58.453h-408.318c-60.16 0-61.867 18.347-65.707 58.453l-17.92 194.987c-0.853 8.96 2.133 17.493 8.107 23.893 6.4 7.253 15.36 11.093 25.173 11.093h60.16c9.387 0 11.947-1.28 12.374-1.28 0-0.427 1.706-5.547 2.986-9.387l6.4-19.2c8.533-26.027 21.76-65.707 91.307-65.707h163.838c68.693 0 81.498 37.547 90.884 65.28l6.822 19.627c0.427 3.413 1.707 8.107 2.987 9.813z","M149.333 522.667h-32c-17.493 0-32-14.507-32-32s14.507-32 32-32h32c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M693.333 522.667h-32c-17.493 0-32-14.507-32-32s14.507-32 32-32h32c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M309.333 746.667h-96c-17.493 0-32-14.507-32-32s14.507-32 32-32h96c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 746.667h-96c-17.493 0-32-14.507-32-32s14.507-32 32-32h96c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M798.34 404.907c-4.267 0-8.533-0.853-12.8-2.56-16.213-7.253-23.467-26.026-16.64-42.24 8.107-18.347 3.413-45.228-11.52-67.414-14.933-22.613-37.547-37.546-58.453-36.693h-0.427c-17.493 0-31.573-14.080-32-31.573 0-17.92 14.080-32 31.573-32.427 43.947-0.853 85.333 24.321 112.213 64.854 27.307 40.96 33.707 90.027 17.067 128.427-4.693 12.373-16.64 19.625-29.013 19.625z","M930.991 447.151c-2.987 0-5.547-0.427-8.533-1.28-17.067-4.693-26.88-22.186-22.187-39.253 16.213-58.027 2.56-127.148-36.267-185.174s-97.707-96.854-157.867-104.107c-17.493-2.133-29.867-17.92-27.733-35.414s18.347-30.292 35.413-27.732c78.080 9.387 154.027 58.879 203.093 132.266s65.707 162.134 44.8 238.081c-3.84 13.227-16.64 22.613-30.72 22.613z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["smart-car"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":577,"id":550,"name":"smart-car","prevSize":32,"code":60097},"setIdx":2,"setId":2,"iconIdx":351},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M587.102 757.333h-150.613c-46.932 0-84.052-23.040-104.959-64.853l-37.973-76.373c-8.96-18.347-27.307-29.44-47.787-29.44h-160.853c-17.493 0-32-14.507-32-32s14.933-32 32.427-32h160.427c44.8 0 84.907 24.747 104.96 64.853l37.973 76.373c9.813 19.627 25.6 29.44 47.785 29.44h150.613c20.48 0 38.827-11.093 47.787-29.44l37.973-76.373c20.053-40.107 60.16-64.853 104.96-64.853h159.573c17.493 0 32 14.507 32 32s-14.507 32-32 32h-159.573c-20.48 0-38.827 11.093-47.787 29.44l-37.973 76.373c-20.053 40.107-60.16 64.853-104.96 64.853z","M583.258 330.667h-142.080c-17.921 0-32.428-14.507-32.428-32s14.507-32 32.001-32h142.080c17.493 0 32 14.507 32 32s-14.080 32-31.573 32z","M618.667 458.667h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":578,"id":549,"name":"direct","prevSize":32,"code":60098},"setIdx":2,"setId":2,"iconIdx":352},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v298.667c0 155.733-89.6 245.333-245.333 245.333zM298.667 181.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-298.667c0-122.027-59.307-181.333-181.333-181.333h-426.667z","M256 714.667c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32s32 14.507 32 32v341.333c0 17.493-14.507 32-32 32z","M384 544c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M384 714.667c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.493-14.507 32-32 32z","M640 416c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.493-14.507 32-32 32z","M512 714.667c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32s32 14.507 32 32v341.333c0 17.493-14.507 32-32 32z","M640 714.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M768 714.667c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32s32 14.507 32 32v341.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["barcode"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":579,"id":548,"name":"barcode","prevSize":32,"code":60099},"setIdx":2,"setId":2,"iconIdx":353},{"icon":{"paths":["M874.667 970.667h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.645 778.662c-8.107 0-16.213-2.987-22.613-9.387l-597.335-597.332c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l597.335 597.332c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M213.333 619.52c-17.493 0-32-14.507-32-32v-438.187c0-17.493 14.507-32 32-32h438.187c17.493 0 32 14.507 32 32s-14.507 32-32 32h-406.187v406.187c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":580,"id":547,"name":"send","prevSize":32,"code":60100},"setIdx":2,"setId":2,"iconIdx":354},{"icon":{"paths":["M616.939 846.084c-9.813 0-19.627-2.133-28.587-6.827-2.133-1.28-4.267-2.56-5.973-4.267l-71.253-60.587-69.973 60.587c-2.133 1.707-4.267 2.987-6.4 4.267-16.639 8.107-35.412 8.96-52.052 1.707-17.067-7.253-29.867-21.333-35.84-38.827l-13.653-40.96c-7.253-21.333-0.853-48.213 14.933-64.427l71.253-69.973-0.427-61.867-128.427 55.040c-21.333 8.96-43.52 8.107-60.587-3.413-16.64-10.667-26.453-30.72-26.453-53.76v-39.68c0-33.28 23.040-68.693 53.76-81.92l161.707-69.546v-81.493c0-41.813 27.732-87.040 64.852-104.96 18.347-8.96 39.253-8.96 57.6 0 37.12 19.2 64.853 64.427 64.853 104.96v81.493l161.707 69.546c30.72 12.8 53.76 48.213 53.76 81.92v39.68c0 23.040-9.813 43.093-27.307 54.187s-39.253 12.373-60.587 3.413l-128-55.040v62.72l69.547 69.547c15.787 15.787 22.187 43.093 14.933 64.427l-13.653 40.533c-5.973 17.493-18.773 31.573-35.84 38.4-7.68 3.413-15.787 5.12-23.893 5.12zM511.979 711.258c14.507 0 28.587 4.693 40.107 13.653l66.133 56.32 11.52-39.68-69.547-69.12c-11.093-10.667-18.347-28.587-18.347-44.373v-78.933c0-19.2 8.107-35.84 22.613-45.653s33.28-11.093 51.2-3.413l141.653 60.587 0.427-37.547c0-8.107-7.68-20.053-14.933-23.040l-168.533-72.533c-18.347-7.679-32-28.159-32-49.066v-88.32c0-16.64-14.507-40.107-29.44-47.787-15.36 7.68-29.867 30.72-29.867 47.787v88.32c0 20.053-13.227 40.96-32 49.066l-168.105 72.533c-7.253 2.987-15.36 15.36-15.36 23.040v37.547l141.227-60.16c17.493-7.68 35.839-6.827 50.772 2.987s23.467 26.453 23.467 46.080v78.933c0 15.36-7.253 33.28-18.347 44.373l-71.679 70.4 13.653 37.547 64.425-54.613c11.947-9.813 26.453-14.933 40.96-14.933zM599.445 368.645l0.427 0.427c0-0.427-0.427-0.427-0.427-0.427z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airplane-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":581,"id":546,"name":"airplane-square","prevSize":32,"code":60101},"setIdx":2,"setId":2,"iconIdx":355},{"icon":{"paths":["M512 544c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM512 117.333c-99.84 0-181.333 81.493-181.333 181.333s81.493 181.333 181.333 181.333c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.333-181.333-181.333z","M674.97 970.662c-16.213 0-31.573-5.973-42.667-17.067-13.227-13.227-19.2-32.427-16.213-52.48l8.107-57.6c2.133-14.933 11.093-32.427 21.76-43.52l151.040-151.040c60.587-60.587 113.92-26.027 139.947 0 22.187 22.187 33.707 46.080 33.707 69.973 0 24.32-11.093 46.933-33.707 69.547l-151.044 151.040c-10.667 10.667-28.582 19.627-43.516 21.76l-57.604 8.102c-3.413 0.853-6.396 1.284-9.809 1.284zM866.543 679.249c-7.68 0-14.507 5.12-24.32 14.933l-151.040 151.040c-1.28 1.28-3.413 5.547-3.413 7.253l-7.68 53.333 53.333-7.68c1.707-0.427 5.969-2.56 7.249-3.84l151.044-151.040c6.827-6.827 14.933-16.64 14.933-24.32 0-6.4-5.12-15.36-14.933-24.747-10.24-10.24-17.92-14.933-25.173-14.933z","M892.612 820.045c-2.987 0-5.973-0.422-8.533-1.276-56.32-15.787-101.12-60.587-116.907-116.907-4.693-17.067 5.12-34.56 22.187-39.253s34.56 5.12 39.253 22.187c9.813 34.987 37.547 62.72 72.533 72.533 17.067 4.693 26.88 22.613 22.187 39.253-3.84 14.080-16.64 23.462-30.72 23.462z","M145.5 970.667c-17.493 0-32-14.507-32-32 0-182.187 178.774-330.667 398.508-330.667 46.507 0 92.587 6.827 135.68 19.627 17.067 5.12 26.453 23.040 21.333 39.68-5.12 17.067-23.040 26.453-39.68 21.333-37.547-11.093-76.8-17.067-117.333-17.067-184.321 0-334.508 119.467-334.508 266.667 0 17.92-14.507 32.427-32 32.427z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":582,"id":545,"name":"user-edit","prevSize":32,"code":60102},"setIdx":2,"setId":2,"iconIdx":356},{"icon":{"paths":["M85.333 416c-17.493 0-32-14.507-32-32v-106.667c0-123.307 100.693-224 224-224h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-106.667c-88.32 0-160 71.68-160 160v106.667c0 17.493-14.507 32-32 32z","M938.667 416c-17.493 0-32-14.507-32-32v-106.667c0-88.32-71.68-160-160-160h-106.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h106.667c123.307 0 224 100.693 224 224v106.667c0 17.493-14.507 32-32 32z","M746.667 970.667h-64c-17.493 0-32-14.507-32-32s14.507-32 32-32h64c88.32 0 160-71.68 160-160v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 123.307-100.693 224-224 224z","M384 970.667h-106.667c-123.307 0-224-100.693-224-224v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 88.32 71.68 160 160 160h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 629.333c-17.493 0-32-14.507-32-32v-53.333h-448v53.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v53.333h448v-53.333c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M597.333 800h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h53.333v-448h-53.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-53.333v448h53.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":583,"id":544,"name":"maximize-1","prevSize":32,"code":60103},"setIdx":2,"setId":2,"iconIdx":357},{"icon":{"paths":["M938.667 970.667h-725.333c-88.32 0-160-71.68-160-160v-725.333c0-17.493 14.507-32 32-32s32 14.507 32 32v725.333c0 52.907 43.093 96 96 96h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.326 757.325c-7.253 0-14.933-2.56-20.907-7.68-13.227-11.52-14.933-31.573-3.413-45.227l195.84-228.693c21.333-24.747 52.052-39.68 84.479-40.96 32.427-0.853 64.427 11.093 87.467 34.133l40.533 40.533c10.667 10.667 24.747 15.787 39.68 15.787 14.933-0.427 28.587-7.253 38.4-18.773l195.84-228.692c11.52-13.227 31.573-14.934 45.227-3.414 13.227 11.52 14.933 31.573 3.413 45.227l-195.84 228.693c-21.333 24.747-52.053 39.68-84.48 40.96-32.427 0.853-64.427-11.093-87.467-34.133l-40.107-40.533c-10.667-10.667-24.747-16.213-39.68-15.787s-28.587 7.253-38.4 18.773l-195.839 228.693c-6.827 7.253-15.787 11.093-24.747 11.093z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["diagram"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":584,"id":543,"name":"diagram","prevSize":32,"code":60104},"setIdx":2,"setId":2,"iconIdx":358},{"icon":{"paths":["M512 448.849c-17.493 0-32-14.507-32-31.998v-142.080c0-17.493 14.507-32 32-32s32 14.507 32 32v142.080c0 17.918-14.507 31.998-32 31.998z","M512.849 868.275c-110.081 0-219.735-17.493-324.268-52.48-38.827-12.8-68.267-40.533-81.067-75.52s-8.533-75.093 12.373-110.080l54.187-90.453c11.947-20.053 22.613-57.6 22.613-81.067v-89.599c0-174.507 141.653-316.16 316.161-316.16 174.507 0 316.16 141.653 316.16 316.16v89.599c0 23.040 10.667 61.013 22.613 81.067l54.187 90.453c20.053 33.28 23.467 72.96 10.24 109.227s-42.24 64-78.933 76.373c-104.533 35.413-214.187 52.48-324.267 52.48zM512.849 117.343c-139.095 0-252.161 113.067-252.161 252.16v89.599c0 34.56-13.653 84.48-31.573 113.92l-54.187 90.88c-11.093 18.347-13.653 37.973-7.253 55.040s20.907 29.867 41.387 36.693c196.267 65.28 412.161 65.28 608.428 0 18.347-5.973 32.427-19.627 38.827-37.547 6.827-17.92 4.693-37.547-5.12-54.187l-54.187-90.453c-17.92-29.44-31.573-79.36-31.573-113.92v-89.599c-0.427-139.52-113.493-252.587-252.587-252.587z","M511.996 977.058c-45.653 0-90.452-18.773-122.879-51.2s-51.2-77.227-51.2-122.88h64c0 29.013 11.947 57.173 32.426 77.653s48.64 32.427 77.653 32.427c60.587 0 110.080-49.493 110.080-110.080h64c0 96-78.080 174.080-174.080 174.080z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-bing"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":585,"id":542,"name":"notification-bing","prevSize":32,"code":59732},"setIdx":2,"setId":2,"iconIdx":359},{"icon":{"paths":["M694.588 942.933h-162.133c-23.893 0-75.947-7.253-103.68-34.987l-129.281-99.84 39.253-50.773 132.268 102.4c10.667 10.24 37.547 18.773 61.44 18.773h162.133c38.4 0 79.787-30.72 88.32-65.28l103.253-313.6c6.827-18.773 5.547-35.84-3.413-48.213-9.387-13.227-26.453-20.907-47.36-20.907h-170.667c-22.187 0-42.667-9.387-56.747-25.6-14.507-16.64-20.907-38.827-17.493-61.867l21.333-136.96c5.12-23.893-11.093-50.773-34.133-58.453-20.907-7.68-47.787 3.413-57.173 17.067l-174.934 260.267-52.907-35.413 174.934-260.267c26.88-40.107 85.76-59.307 131.84-41.813 53.333 17.493 87.467 76.373 75.52 130.987l-20.907 134.4c-0.427 2.987-0.427 7.253 2.56 10.667 2.133 2.133 5.12 3.413 8.533 3.413h170.667c41.813 0 78.080 17.493 99.413 47.787 20.907 29.44 25.173 68.267 11.52 105.814l-101.973 310.613c-15.787 61.867-81.493 111.787-150.187 111.787z","M229.583 895.996h-42.667c-78.933 0-117.333-37.12-117.333-113.067v-418.133c0-75.947 38.4-113.067 117.333-113.067h42.667c78.933 0 117.333 37.12 117.333 113.067v418.133c0 75.947-38.4 113.067-117.333 113.067zM186.917 315.729c-46.507 0-53.333 11.093-53.333 49.067v418.133c0 37.973 6.827 49.067 53.333 49.067h42.667c46.507 0 53.333-11.093 53.333-49.067v-418.133c0-37.973-6.827-49.067-53.333-49.067h-42.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":586,"id":541,"name":"like-1","prevSize":32,"code":60105},"setIdx":2,"setId":2,"iconIdx":360},{"icon":{"paths":["M460.395 647.253c-8.533 0-16.64-3.413-22.613-9.387l-103.251-103.253c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l80.638 80.64 183.467-183.465c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.225l-206.080 206.080c-5.973 5.973-14.080 9.387-22.613 9.387z","M512.038 970.667c-26.88 0-53.76-8.96-74.667-26.88l-67.415-58.027c-6.827-5.973-23.893-11.947-32.853-11.947h-73.387c-63.147 0-114.347-51.2-114.347-114.347v-72.96c0-8.96-5.973-25.6-11.947-32.427l-57.6-67.84c-34.987-41.387-34.987-106.667 0-148.053l57.6-67.84c5.973-6.827 11.947-23.467 11.947-32.427v-73.387c0-63.147 51.2-114.347 114.347-114.347h73.813c8.96 0 26.027-6.4 32.853-11.947l67.415-58.027c41.813-35.84 107.093-35.84 148.907 0l67.413 58.027c6.827 5.973 23.893 11.947 32.853 11.947h72.533c63.147 0 114.347 51.2 114.347 114.347v72.533c0 8.96 6.4 26.027 12.373 32.853l58.027 67.413c35.84 41.813 35.84 107.093 0 148.907l-58.027 67.413c-5.973 6.827-12.373 23.893-12.373 32.853v72.533c0 63.147-51.2 114.347-114.347 114.347h-72.533c-8.96 0-26.027 6.4-32.853 11.947l-67.413 58.027c-20.907 18.347-47.787 27.307-74.667 27.307zM263.717 214.187c-27.733 0-50.347 22.613-50.347 50.347v72.96c0 24.32-11.52 55.467-27.307 73.813l-57.6 67.84c-14.933 17.493-14.933 47.787 0 65.28l57.6 67.84c15.787 18.773 27.307 49.493 27.307 73.813v72.96c0 27.733 22.613 50.347 50.347 50.347h73.813c24.747 0 55.893 11.52 74.667 27.733l67.415 58.027c17.493 14.933 48.213 14.933 65.707 0l67.413-58.027c18.773-15.787 49.92-27.733 74.667-27.733h72.533c27.733 0 50.347-22.613 50.347-50.347v-72.533c0-24.747 11.52-55.893 27.733-74.667l58.027-67.413c14.933-17.493 14.933-48.213 0-65.707l-58.027-67.413c-16.213-18.773-27.733-49.92-27.733-74.667v-72.107c0-27.733-22.613-50.347-50.347-50.347h-72.533c-24.747 0-55.893-11.52-74.667-27.733l-67.413-58.027c-17.493-14.933-48.213-14.933-65.707 0l-67.415 58.453c-18.773 15.787-50.347 27.307-74.667 27.307h-73.813z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["verify"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":587,"id":540,"name":"verify","prevSize":32,"code":59733},"setIdx":2,"setId":2,"iconIdx":361},{"icon":{"paths":["M462.507 577.715h-64c-49.067 0-88.747-40.96-88.747-91.733 0-17.493 14.507-32 32-32s32 14.507 32 32c0 15.36 11.093 27.733 24.747 27.733h64c9.813 0 17.493-8.96 17.493-20.053 0-14.933-2.56-15.787-12.373-19.2l-102.827-35.84c-37.12-12.8-55.467-38.827-55.467-79.36 0-46.080 36.693-84.053 81.493-84.053h64c49.067 0 88.747 40.96 88.747 91.733 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-15.36-11.093-27.733-24.747-27.733h-64c-9.813 0-17.493 8.96-17.493 20.053 0 14.933 2.56 15.787 12.373 19.2l102.827 35.84c37.12 13.227 55.040 39.253 55.040 79.36 0.427 46.507-36.267 84.053-81.067 84.053z","M426.667 611.844c-17.493 0-32-14.507-32-32v-31.573c0-17.493 14.507-32 32-32s32 14.507 32 32v31.573c0 17.92-14.507 32-32 32z","M426.667 338.78c-17.493 0-32-14.507-32-32v-33.28c0-17.493 14.507-32 32-32s32 14.507 32 32v33.28c0 17.493-14.507 32-32 32z","M426.24 798.729c-205.653 0-372.907-167.253-372.907-372.905 0-205.653 167.253-372.907 372.907-372.907s372.907 167.253 372.907 372.907c0 205.652-167.68 372.905-372.907 372.905zM426.24 117.343c-170.24 0-308.907 138.667-308.907 308.907 0 170.239 138.667 308.479 308.907 308.479s308.907-138.667 308.907-308.905c0-170.24-138.667-308.48-308.907-308.48z","M726.144 969.378c-78.933 0-153.173-38.4-198.827-103.253-10.24-14.507-6.827-34.56 7.68-44.8s34.56-6.827 44.8 7.68c33.707 47.787 88.32 75.947 146.347 75.947 98.987 0 179.2-80.213 179.2-179.2 0-57.6-28.16-112.213-75.093-145.92-14.507-10.24-17.493-30.293-7.253-44.8s30.293-17.493 44.8-7.253c63.573 45.653 101.547 119.467 101.547 197.973 0 134.827-108.8 243.627-243.2 243.627z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["coin"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":588,"id":539,"name":"coin","prevSize":32,"code":60106},"setIdx":2,"setId":2,"iconIdx":362},{"icon":{"paths":["M759.488 370.346h-494.932c-9.813 0-18.774-4.265-24.747-11.945s-8.533-17.493-6.4-26.88l34.986-167.255c11.52-55.040 36.694-110.932 134.827-110.932h217.598c98.56 0 123.733 56.319 134.827 110.932l34.987 167.255c2.133 9.387-0.427 19.2-6.4 26.88s-14.933 11.945-24.747 11.945zM303.809 306.346h415.999l-26.88-128.427c-8.533-40.96-18.347-60.159-72.533-60.159h-217.598c-53.76 0-64 19.199-72.533 60.159l-26.454 128.427z","M758.199 710.4h-58.027c-56.32 0-67.84-34.987-74.24-53.76l-6.4-18.773c-6.827-20.48-6.827-20.484-28.587-20.484h-158.293c-21.759 0-21.759 0.431-28.585 20.484l-6.4 18.773c-6.4 18.773-17.92 53.76-74.24 53.76h-58.027c-26.88 0-52.907-11.524-70.827-31.151-17.493-19.2-26.453-45.227-23.893-71.253l17.494-188.157c5.547-58.88 24.746-113.495 126.293-113.495h394.665c101.547 0 120.747 54.615 126.293 113.495l17.493 188.584c2.56 26.027-6.4 52.053-23.893 71.253-17.92 19.627-43.947 30.724-70.827 30.724zM690.359 645.973c0.853 0 4.267 0.427 9.813 0.427h58.027c8.96 0 17.493-3.418 23.467-10.244 5.547-5.973 8.107-14.076 7.68-22.182l-17.493-188.591c-3.413-37.973-5.12-55.466-62.293-55.466h-394.665c-57.173 0-58.88 17.493-62.294 55.466l-17.493 188.591c-0.853 8.107 1.707 16.209 7.68 22.182 5.973 6.4 14.507 10.244 23.467 10.244h58.027c8.533 0 11.093-1.284 11.52-1.284-0.427 0 0.853-5.12 2.133-8.533l6.4-18.773c8.107-23.893 21.333-64.427 89.172-64.427h158.293c61.867 0 77.653 30.298 88.747 63.578l6.4 19.196c0.853 3.84 2.133 8.111 3.413 9.818-0.427 0 0 0 0 0z","M264.563 277.333h-31.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h31.147c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M790.647 277.333h-31.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h31.147c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M419.014 494.084h-93.014c-17.493 0-32-14.507-32-32s14.507-32 32-32h93.014c17.492 0 31.999 14.507 31.999 32s-14.080 32-31.999 32z","M697.596 494.084h-93.013c-17.493 0-32-14.507-32-32s14.507-32 32-32h93.013c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 800c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.493-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.493-14.507 32-32 32z","M85.337 970.671c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.733-21.76-23.467-38.827l42.667-170.667c4.267-17.067 21.333-27.733 38.826-23.467 17.067 4.267 27.733 21.76 23.467 38.827l-42.667 170.667c-3.84 14.507-16.64 24.32-31.147 24.32z","M938.697 970.662c-14.507 0-27.307-9.813-31.147-24.32l-42.667-170.667c-4.267-17.067 5.973-34.56 23.467-38.827 17.067-4.267 34.56 5.973 38.827 23.467l42.667 170.667c4.267 17.067-5.973 34.56-23.467 38.827-2.56 0.427-5.12 0.853-7.68 0.853z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["driving"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":589,"id":538,"name":"driving","prevSize":32,"code":60107},"setIdx":2,"setId":2,"iconIdx":363},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M298.688 410.881c-11.52 0-23.040-6.4-28.587-17.493-8.107-15.787-1.707-34.987 14.080-43.093 142.506-71.253 312.746-71.253 455.253 0 15.787 8.107 22.187 27.307 14.507 43.093-8.107 15.787-26.88 22.187-43.093 14.507-124.587-62.293-273.493-62.293-398.080 0-4.267 2.133-9.387 2.987-14.080 2.987z","M512 727.049c-17.493 0-32-14.507-32-32v-356.694c0-17.493 14.507-32 32-32s32 14.507 32 32v357.121c0 17.493-14.507 31.573-32 31.573z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-block"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":590,"id":537,"name":"text-block","prevSize":32,"code":60108},"setIdx":2,"setId":2,"iconIdx":364},{"icon":{"paths":["M512.849 875.942c-99.415 0-198.828-15.787-293.121-47.36-35.84-12.373-63.147-37.547-75.093-70.4-12.373-32.853-8.107-69.12 11.52-101.547l49.067-81.493c10.24-17.067 19.627-51.2 19.627-71.253v-123.306c0-158.72 129.28-288 288.001-288 158.72 0 288 129.28 288 288v123.306c0 19.627 9.387 54.187 19.627 71.68l48.64 81.067c18.347 30.72 21.76 67.84 9.387 101.547s-39.253 59.307-72.96 70.4c-93.867 31.573-193.28 47.36-292.693 47.36zM512.849 156.583c-123.308 0-224.001 100.267-224.001 224v123.306c0 31.147-12.8 77.227-28.587 104.107l-49.067 81.493c-9.387 15.787-11.947 32.427-6.4 46.507 5.12 14.507 17.92 25.6 35.413 31.573 178.347 59.733 367.361 59.733 545.708 0 15.36-5.12 27.307-16.64 32.853-32s4.267-32-4.267-46.080l-49.067-81.493c-16.213-27.733-28.587-73.387-28.587-104.533v-122.879c0-123.733-100.267-224-224-224z","M592.196 168.114c-2.987 0-5.973-0.427-8.96-1.28-12.373-3.413-24.32-5.973-35.84-7.68-36.267-4.693-71.253-2.133-104.107 7.68-11.947 3.84-24.745 0-32.852-8.96s-10.667-21.76-5.973-33.28c17.493-44.8 60.159-74.24 108.799-74.24s91.307 29.013 108.8 74.24c4.267 11.52 2.133 24.32-5.973 33.28-6.4 6.827-15.36 10.24-23.893 10.24z","M512.832 973.231c-42.24 0-83.2-17.067-113.065-46.933-29.867-29.867-46.933-70.827-46.933-113.067h64c0 25.173 10.239 49.92 28.159 67.84s42.667 28.16 67.84 28.16c52.907 0 96-43.093 96-96h64c0 88.32-71.68 160-160 160z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":591,"id":536,"name":"notification","prevSize":32,"code":59734},"setIdx":2,"setId":2,"iconIdx":365},{"icon":{"paths":["M466.381 970.667c-20.48 0-40.959-5.12-59.732-15.36-37.973-21.333-60.588-59.307-60.588-102.4v-228.267c0-21.76-14.081-53.76-27.308-70.4l-162.132-170.239c-26.88-26.88-47.787-73.814-47.787-108.374v-98.985c0-68.693 52.054-122.455 118.188-122.455h569.173c65.28 0 118.187 52.908 118.187 118.188v94.72c0 44.8-26.88 96.426-52.48 121.599-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227c15.787-15.787 33.707-51.199 33.707-76.372v-94.72c0-29.867-24.32-54.188-54.187-54.188h-569.173c-30.293 0-54.188 25.601-54.188 58.455v98.985c0 15.787 12.8 46.934 29.44 63.574l164.268 172.798c21.76 26.88 43.091 72.107 43.091 112.64v228.267c0 28.16 19.201 41.813 27.735 46.507 18.347 10.24 40.107 9.813 57.173-0.427l59.733-38.4c14.933-9.387 34.56-5.12 44.373 9.813 9.387 14.933 5.12 34.56-9.387 44.373l-60.16 38.827c-19.2 11.093-40.96 17.067-62.72 17.067z","M584.137 805.973c-16.213 0-31.573-5.973-42.667-17.067-13.227-13.227-19.2-32.427-16.213-52.48l8.107-57.6c2.133-14.933 11.093-32.427 21.76-43.093l151.036-151.040c20.48-20.48 40.538-31.147 62.298-33.28 26.453-2.56 52.907 8.533 77.653 33.28s35.836 50.773 33.276 77.653c-2.133 21.333-13.222 41.813-33.276 62.293l-151.044 151.040c-10.667 10.667-28.582 19.627-43.516 21.76l-57.604 8.107c-3.413 0.427-6.396 0.427-9.809 0.427zM775.71 514.56c-0.427 0-0.853 0-1.28 0-5.973 0.427-14.084 5.547-23.044 14.933l-151.036 151.040c-1.28 1.28-3.413 5.547-3.413 7.253l-7.68 53.333 53.333-7.68c1.707-0.427 5.969-2.56 7.249-3.84l151.044-151.040c8.96-8.96 14.507-17.067 14.933-23.040 0.853-8.533-7.68-18.773-14.933-26.027-6.827-6.827-16.64-14.933-25.173-14.933z","M801.694 655.36c-2.987 0-5.969-0.427-8.529-1.28-56.32-15.787-101.124-60.587-116.911-116.907-4.693-17.067 5.12-34.56 22.187-39.68 17.067-4.693 34.56 5.12 39.253 22.187 9.813 34.987 37.547 62.72 72.533 72.533 17.067 4.693 26.884 22.613 22.191 39.68-3.84 14.507-16.644 23.467-30.724 23.467z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-edit"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":592,"id":535,"name":"filter-edit","prevSize":32,"code":59735},"setIdx":2,"setId":2,"iconIdx":366},{"icon":{"paths":["M466.381 970.667c-20.48 0-40.961-5.12-59.734-15.787-37.973-21.333-60.587-59.307-60.587-102.4v-228.267c0-21.76-14.080-53.76-27.307-70.4l-162.133-170.24c-26.88-26.88-47.787-73.812-47.787-108.372v-98.987c0-68.693 52.053-122.453 118.187-122.453h568.748c65.28 0 118.187 52.908 118.187 118.188v94.719c0 44.8-26.88 96.426-52.48 121.599-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227c15.787-15.787 33.707-51.199 33.707-76.372v-94.719c0-29.867-24.32-54.188-54.187-54.188h-568.321c-30.293 0-54.187 25.6-54.187 58.453v98.987c0 15.787 12.8 46.933 29.44 63.573l164.267 172.8c21.76 26.88 43.093 72.107 43.093 112.64v228.267c0 28.16 19.201 41.813 27.734 46.507 18.347 10.24 40.107 9.813 57.173-0.427l59.733-38.4c14.933-9.387 34.56-5.12 44.373 9.813 9.387 14.933 5.12 34.56-9.813 44.373l-60.16 38.827c-19.2 11.52-40.96 17.493-62.72 17.493z","M720.166 864c-81.92 0-159.147-43.52-200.96-113.92-22.187-35.84-33.707-77.653-33.707-120.747 0-129.28 105.387-234.667 234.667-234.667s234.667 105.387 234.667 234.667c0 43.093-11.947 84.907-34.133 121.173-41.387 69.973-118.187 113.493-200.533 113.493zM720.166 458.667c-94.293 0-170.667 76.373-170.667 170.667 0 31.147 8.533 61.44 24.747 87.467 30.72 51.627 86.613 83.2 145.92 83.2 60.587 0 115.2-30.72 145.92-82.773 16.213-26.453 24.747-56.747 24.747-87.893 0-94.293-76.373-170.667-170.667-170.667z","M774.404 714.236c-8.107 0-16.213-2.987-22.613-9.387l-107.093-107.093c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l107.093 107.093c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M666.475 715.52c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l107.093-107.093c12.373-12.373 32.853-12.373 45.227 0s12.373 32.849 0 45.222l-107.093 107.098c-6.4 6.4-14.507 9.387-22.613 9.387z","M466.381 970.667c-20.48 0-40.961-5.12-59.308-15.36-37.973-21.333-60.587-59.733-60.587-102.827v-228.267c0-21.333-14.080-53.76-27.733-70.4l-162.133-170.24c-26.88-27.733-47.787-74.239-47.787-108.372v-99.414c0-68.693 52.053-122.453 118.187-122.453h569.174c65.28 0 118.187 52.908 118.187 118.188v94.719c0 44.8-26.453 95.148-52.053 121.602l-76.8 67.839c-7.68 6.827-18.773 9.387-28.587 7.253-11.52-2.987-23.893-4.267-36.693-4.267-94.293 0-170.667 76.373-170.667 170.667 0 31.147 8.533 61.44 24.747 87.893 13.653 22.613 32 41.387 53.333 54.613 9.387 5.973 15.36 16.213 15.36 27.307v14.507c0 33.707-20.48 81.067-54.613 101.12l-58.88 37.973c-19.2 11.947-41.387 17.92-63.147 17.92zM227.447 117.333c-30.293 0-54.187 25.6-54.187 58.453v99.414c0 15.36 12.8 46.933 29.867 64l164.267 172.8c21.76 26.88 43.52 72.533 43.52 112.64v228.267c0 28.16 19.628 42.24 27.734 46.933 18.347 10.24 40.107 9.813 56.747-0.427l59.733-38.4c11.52-6.827 23.040-28.587 23.893-43.947-23.467-17.493-43.947-40.107-59.307-65.707-22.187-36.267-34.133-78.080-34.133-120.747 0-129.28 105.387-234.665 234.667-234.665 11.947 0 23.893 0.853 34.987 2.56l63.147-55.893c14.507-14.933 32.427-50.348 32.427-75.521v-94.721c0-29.867-24.32-54.185-54.187-54.185h-569.174v-0.854z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":593,"id":534,"name":"filter-remove","prevSize":32,"code":59736},"setIdx":2,"setId":2,"iconIdx":367},{"icon":{"paths":["M512 373.333c-4.267 0-8.107-0.853-12.373-2.56-11.947-4.693-19.627-16.64-19.627-29.44v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v178.773l30.72-30.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 5.973-14.507 9.387-22.613 9.387z","M511.979 373.331c-8.107 0-16.213-2.987-22.613-9.387l-85.335-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.855-12.373 45.229 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M682.667 970.667h-341.333c-245.333 0-245.333-130.133-245.333-245.333v-42.667c0-95.147 0-202.667 202.667-202.667 50.773 0 69.547 12.373 96 32 1.28 1.28 2.987 2.133 4.267 3.84l43.52 46.080c36.693 38.827 103.253 38.827 139.947 0l43.52-46.080c1.28-1.28 2.56-2.56 4.267-3.84 26.453-20.053 45.227-32 96-32 202.667 0 202.667 107.52 202.667 202.667v42.667c-0.853 162.987-83.2 245.333-246.187 245.333zM298.667 544c-138.667 0-138.667 43.52-138.667 138.667v42.667c0 116.907 0 181.333 181.333 181.333h341.333c127.147 0 181.333-54.187 181.333-181.333v-42.667c0-95.147 0-138.667-138.667-138.667-30.72 0-37.12 3.84-55.467 17.493l-41.387 43.947c-30.72 32.427-72.107 50.347-116.48 50.347s-85.76-17.92-116.48-50.347l-41.387-43.947c-18.347-13.653-24.747-17.493-55.467-17.493z","M213.333 544c-17.493 0-32-14.507-32-32v-170.668c0-82.773 0-185.6 157.013-200.533 17.493-1.707 33.28 11.093 34.987 29.013 1.707 17.493-11.093 33.28-29.013 34.987-98.987 8.96-98.987 49.067-98.987 136.533v170.668c0 17.493-14.507 32-32 32z","M810.641 544.009c-17.493 0-32-14.507-32-32v-170.666c0-87.467 0-127.573-98.987-136.96-17.493-1.707-30.293-17.493-28.587-34.987s17.067-30.72 34.987-28.587c157.013 14.933 157.013 117.76 157.013 200.533v170.666c-0.427 17.493-14.933 32-32.427 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directbox-receive"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":594,"id":533,"name":"directbox-receive","prevSize":32,"code":59737},"setIdx":2,"setId":2,"iconIdx":368},{"icon":{"paths":["M597.333 885.333h-170.667c-206.080 0-373.333-167.68-373.333-373.333s167.253-373.333 373.333-373.333h170.667c206.080 0 373.333 167.68 373.333 373.333s-167.253 373.333-373.333 373.333zM426.667 202.667c-170.667 0-309.333 138.667-309.333 309.333s138.667 309.333 309.333 309.333h170.667c170.667 0 309.333-138.667 309.333-309.333s-138.667-309.333-309.333-309.333h-170.667z","M426.667 714.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM426.667 373.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-off-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":595,"id":532,"name":"toggle-off-circle","prevSize":32,"code":60109},"setIdx":2,"setId":2,"iconIdx":369},{"icon":{"paths":["M855.467 783.364c-19.627 0-39.68-5.12-57.6-15.787l-270.507-156.16c-12.373-7.253-22.187-15.787-29.44-25.173-4.693-5.547-7.253-12.8-7.253-20.053v-109.227c0-7.253 2.56-14.507 7.253-20.053 7.68-9.387 17.493-17.921 29.44-24.748l270.933-156.587c35.84-20.907 78.933-20.907 115.2 0s57.6 58.026 57.6 99.84v312.322c0 41.813-21.333 78.933-57.6 99.84-18.347 10.667-38.4 15.787-58.027 15.787zM554.24 552.964c1.707 1.28 3.413 2.56 5.12 3.413l270.080 155.733c16.213 9.387 35.413 9.387 51.2 0 16.213-9.387 25.6-26.027 25.6-44.373v-312.322c0-18.347-9.387-34.985-25.6-44.372s-34.987-9.387-51.2 0l-270.507 156.161c-1.707 0.853-3.413 2.133-4.693 3.413v82.347z","M439.040 783.364c-19.626 0-39.68-5.12-57.6-15.787l-270.506-156.16c-35.84-20.907-57.6-58.027-57.6-99.84s21.334-78.933 57.6-99.842l270.506-156.16c35.84-20.907 78.933-20.907 115.2 0s57.6 58.026 57.6 99.84v312.322c0 41.813-21.333 78.933-57.6 99.84-17.92 10.667-37.973 15.787-57.6 15.787zM439.040 304.643c-8.96 0-17.493 2.132-25.6 6.826l-270.506 156.162c-16.213 9.387-25.6 26.027-25.6 44.373s9.387 34.987 25.6 44.373l270.506 156.16c16.213 9.387 35.413 9.387 51.2 0 16.213-9.387 25.6-25.6 25.6-44.373v-312.322c0-18.347-9.387-34.987-25.6-44.373-8.107-4.693-16.64-6.826-25.6-6.826z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["backward"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":596,"id":531,"name":"backward","prevSize":32,"code":60110},"setIdx":2,"setId":2,"iconIdx":370},{"icon":{"paths":["M335.787 907.947c-33.707 0-65.707-8.107-93.867-24.32-66.56-38.4-103.253-116.48-103.253-219.307v-304.214c0-103.253 36.693-180.907 103.253-219.307s152.32-31.147 241.92 20.48l263.253 151.893c89.173 51.627 138.667 122.454 138.667 199.254s-49.067 147.627-138.667 199.253l-263.253 151.893c-51.627 29.44-101.973 44.373-148.053 44.373zM335.787 180.053c-23.040 0-43.52 5.12-61.867 15.787-46.080 26.453-71.253 84.907-71.253 164.267v303.787c0 79.36 25.173 137.387 71.253 164.267s109.227 19.2 177.92-20.48l263.253-151.893c68.693-39.68 106.667-90.453 106.667-143.787s-37.973-104.107-106.667-143.787l-263.253-151.893c-41.813-23.893-81.067-36.267-116.053-36.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":597,"id":530,"name":"play","prevSize":32,"code":59738},"setIdx":2,"setId":2,"iconIdx":371},{"icon":{"paths":["M404.050 651.942c-8.107 0-16.213-2.987-22.613-9.387-34.987-34.987-54.187-81.493-54.187-130.56 0-101.972 82.773-184.746 184.746-184.746 49.067 0 95.573 19.2 130.56 54.187 5.973 5.973 9.387 14.080 9.387 22.613s-3.413 16.64-9.387 22.613l-215.892 215.892c-6.4 6.4-14.507 9.387-22.613 9.387zM511.996 391.25c-66.56 0-120.746 54.186-120.746 120.746 0 21.333 5.547 41.813 15.787 59.733l164.692-164.692c-17.92-10.24-38.4-15.787-59.733-15.787z","M238.927 789.76c-7.253 0-14.933-2.56-20.907-7.68-45.653-38.827-86.613-86.613-121.6-142.080-45.227-70.4-45.227-185.173 0-256.001 104.107-162.987 255.573-256.853 415.572-256.853 93.867 0 186.453 32.427 267.52 93.44 14.080 10.667 17.067 30.72 6.4 44.8s-30.72 17.067-44.8 6.4c-69.973-52.907-149.333-80.64-229.12-80.64-137.812 0-269.652 82.773-361.812 227.413-32 49.921-32 136.961 0 186.881s68.693 93.013 109.227 128c13.227 11.52 14.933 31.573 3.413 45.227-5.973 7.253-14.933 11.093-23.893 11.093z","M512.026 896.853c-56.747 0-112.215-11.52-165.549-34.133-16.213-6.827-23.893-25.6-17.067-41.813s25.6-23.893 41.813-17.067c45.227 19.2 92.589 29.013 140.375 29.013 137.813 0 269.653-82.773 361.813-227.413 32-49.92 32-136.96 0-186.88-13.227-20.907-27.738-40.96-43.093-59.733-11.093-13.653-8.96-33.707 4.693-45.227 13.653-11.093 33.702-9.387 45.227 4.693 16.64 20.48 32.853 42.667 47.36 65.707 45.227 70.4 45.227 185.173 0 256-104.107 162.987-255.573 256.853-415.573 256.853z","M541.423 694.191c-14.933 0-28.587-10.667-31.573-26.027-3.413-17.493 8.107-34.133 25.6-37.12 46.933-8.533 86.187-47.787 94.72-94.72 3.413-17.493 20.053-28.587 37.547-25.6 17.493 3.413 29.013 20.053 25.6 37.547-13.653 73.813-72.533 132.267-145.92 145.92-2.133-0.427-3.84 0-5.973 0z","M85.31 970.667c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l318.72-318.72c12.373-12.373 32.853-12.373 45.227 0 12.375 12.373 12.375 32.853 0 45.227l-318.72 318.72c-6.4 6.4-14.507 9.387-22.613 9.387z","M619.977 436.049c-8.107 0-16.213-2.987-22.613-9.385-12.373-12.373-12.373-32.853 0-45.227l318.72-318.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-318.72 318.72c-6.4 6.398-14.507 9.385-22.613 9.385z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":598,"id":529,"name":"eye-slash","prevSize":32,"code":60111},"setIdx":2,"setId":2,"iconIdx":372},{"icon":{"paths":["M788.083 970.667h-170.667c-103.253 0-160-56.747-160-160v-597.333c0-103.253 56.747-160 160-160h170.667c103.253 0 160 56.747 160 160v597.333c0 103.253-57.173 160-160 160zM617.417 117.333c-67.413 0-96 28.587-96 96v597.333c0 67.413 28.587 96 96 96h170.667c67.413 0 96-28.587 96-96v-597.333c0-67.413-28.587-96-96-96h-170.667z","M702.75 288h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M660.083 800h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M702.758 629.342c-0.427 0-0.427 0 0 0l-213.76-2.133c-17.493 0-32-14.507-31.573-32.427 0-17.493 14.507-31.573 32-31.573 0 0 0 0 0.427 0l213.333 2.133c17.493 0 32 14.507 31.573 32.427-0.427 17.493-14.507 31.573-32 31.573z","M617.417 458.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M234.21 969.387c-38.827 0-75.52-23.893-100.693-65.707l-34.987-58.027c-12.8-21.333-22.613-56.32-22.613-81.067v-553.387c0-87.040 70.827-157.867 157.867-157.867s157.867 70.827 157.867 157.867v552.96c0 24.747-9.813 59.733-22.613 81.067l-34.987 58.027c-24.32 42.24-61.013 66.133-99.84 66.133zM234.21 117.333c-51.627 0-93.867 42.24-93.867 93.867v552.96c0 13.227 6.4 36.693 13.227 48.213l34.987 58.027c13.227 22.187 29.867 34.56 45.653 34.56s32.427-12.8 45.653-34.56l34.987-58.027c6.827-11.52 13.227-34.987 13.227-48.213v-552.96c0-51.627-42.24-93.867-93.867-93.867z","M360.077 330.667h-252.16c-17.493 0-32-14.507-32-32s14.507-32 32-32h252.16c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ruler&pen"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":599,"id":528,"name":"rulerpen","prevSize":32,"code":60112},"setIdx":2,"setId":2,"iconIdx":373},{"icon":{"paths":["M682.667 970.667h-554.667c-40.96 0-74.667-33.707-74.667-74.667v-554.667c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v341.333c0 188.587-99.413 288-288 288zM341.333 117.333c-152.747 0-224 71.253-224 224v554.667c0 5.973 4.693 10.667 10.667 10.667h554.667c152.747 0 224-71.253 224-224v-341.333c0-152.747-71.253-224-224-224h-341.333z","M661.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 693.333c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-add-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":600,"id":527,"name":"message-add-1","prevSize":32,"code":59739},"setIdx":2,"setId":2,"iconIdx":374},{"icon":{"paths":["M275.19 362.67c-2.56 0-5.12-0.428-7.68-0.854-8.107-2.133-15.36-7.252-19.627-14.505l-66.56-109.227c-16.213-26.453-21.334-58.028-13.654-88.748 7.253-30.293 26.027-56.32 52.907-72.534 26.453-16.213 58.027-21.334 88.747-13.654 30.72 7.253 56.32 26.026 72.533 52.906l66.561 109.229c9.387 14.933 4.267 34.559-10.667 43.945l-145.921 88.748c-5.12 2.987-10.667 4.692-16.64 4.692zM281.164 123.738c-9.813 0-19.2 2.56-27.307 7.68-11.947 7.253-20.48 19.198-23.893 32.852-3.414 14.080-1.28 28.16 5.973 40.107l49.92 81.922 91.307-55.469-49.92-81.919c-7.253-11.947-19.2-20.48-32.853-23.893-4.693-0.853-8.96-1.278-13.227-1.278z","M487.228 964.693c-12.8 0-25.6-1.707-37.973-5.547-37.548-11.093-67.842-36.689-85.335-72.956l-87.467-178.347c-46.507-94.72-13.653-207.36 76.374-262.4l134.828-81.921c90.027-55.040 205.653-32.427 268.373 52.48l118.187 159.571c23.893 32.427 32.853 71.253 25.6 109.227s-30.293 70.831-64.853 91.738l-274.347 166.822c-23.040 14.080-48.213 21.333-73.387 21.333zM593.041 397.656c-24.747 0-49.493 6.826-72.533 20.479l-134.829 81.918c-61.867 37.547-84.053 114.773-52.48 179.627l87.467 178.347c9.815 19.627 26.028 33.707 46.082 39.68s41.387 2.564 59.733-8.529l274.347-166.831c18.773-11.52 31.147-29.009 35.413-49.489 3.84-20.48-0.853-41.387-14.080-58.88l-118.187-159.573c-26.88-37.121-68.267-56.748-110.933-56.748z","M327.697 530.342c-2.56 0-5.12-0.427-7.68-0.853-8.107-2.133-15.36-7.253-19.627-14.507l-88.746-145.918c-9.387-14.933-4.267-34.561 10.667-43.948l218.452-133.12c14.933-8.96 34.987-4.267 43.947 10.667l88.747 145.919c4.267 7.253 5.973 15.787 3.84 24.32-2.133 8.107-7.253 15.361-14.507 19.628l-218.452 133.118c-5.12 3.413-11.094 4.693-16.641 4.693zM282.898 363.518l55.466 91.305 163.84-99.838-55.467-91.308-163.839 99.841z","M680.934 864.849c-10.667 0-21.333-5.551-27.307-15.364l-70.4-115.622c-9.387-14.933-4.267-34.56 10.667-43.947 14.933-8.96 34.987-4.267 43.947 10.667l70.4 115.627c9.387 14.933 4.267 34.556-10.667 43.942-5.12 2.987-11.093 4.698-16.64 4.698z","M571.767 931.409c-10.667 0-21.333-5.547-27.307-15.36l-70.4-115.627c-9.387-14.933-4.267-34.56 10.667-43.947 14.933-8.96 34.987-4.267 43.947 10.667l70.4 115.627c9.387 14.933 4.267 34.56-10.667 43.947-5.12 2.987-11.093 4.693-16.64 4.693z","M790.187 798.298c-10.667 0-21.333-5.551-27.307-15.364l-70.4-115.622c-9.387-14.933-4.267-34.564 10.667-43.951 14.933-8.96 34.987-4.267 43.947 10.667l70.4 115.631c9.387 14.933 4.267 34.556-10.667 43.942-5.12 2.987-10.667 4.698-16.64 4.698z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["broom"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":601,"id":526,"name":"broom","prevSize":32,"code":60113},"setIdx":2,"setId":2,"iconIdx":375},{"icon":{"paths":["M725.333 897.711h-426.667c-135.253 0-245.333-110.080-245.333-245.333v-408.747c0-55.467 25.6-74.667 40.96-81.067s46.933-11.093 86.187 28.16l110.507 110.507c4.267 4.267 11.093 4.267 14.933 0l153.173-153.173c28.16-28.16 77.653-28.16 105.387 0l153.173 153.173c4.267 4.267 11.093 4.267 14.933 0l110.507-110.507c39.253-39.253 70.827-34.133 86.187-28.16 15.36 6.4 40.96 25.173 40.96 81.067v409.173c0.427 146.347-98.133 244.907-244.907 244.907zM119.893 223.578c-1.28 3.413-2.56 9.813-2.56 20.053v409.173c0 99.84 81.493 181.333 181.333 181.333h426.667c110.080 0 181.333-71.253 181.333-181.333v-409.173c0-10.24-1.28-16.213-2.56-19.627-3.413 1.707-8.533 5.12-15.787 12.373l-110.507 110.507c-28.16 28.16-77.653 28.16-105.387 0l-153.173-153.173c-4.267-4.267-11.093-4.267-14.933 0l-152.747 152.747c-28.16 28.16-77.653 28.16-105.387 0l-110.507-110.507c-7.253-7.253-12.8-10.667-15.787-12.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["crown"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":602,"id":525,"name":"crown","prevSize":32,"code":60114},"setIdx":2,"setId":2,"iconIdx":376},{"icon":{"paths":["M661.333 480h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 952.316c-14.507 0-29.013-4.262-41.387-12.369l-181.76-121.178h-160.853c-146.773 0-245.333-98.56-245.333-245.333v-255.998c0-146.773 98.56-245.333 245.333-245.333h426.667c146.773 0 245.333 98.56 245.333 245.333v255.998c0 135.68-84.48 230.404-213.333 243.631v60.582c0 27.733-14.933 52.907-39.253 65.707-11.093 5.973-23.467 8.96-35.413 8.96zM298.667 135.677c-110.080 0-181.333 71.253-181.333 181.333v255.999c0 110.080 71.253 181.333 181.333 181.333h170.667c6.4 0 12.373 1.707 17.92 5.547l189.867 126.298c4.693 2.987 8.96 1.707 11.093 0.427s5.547-3.844 5.547-9.391v-90.88c0-17.493 14.507-32 32-32 110.080 0 181.333-71.253 181.333-181.333v-255.999c0-110.080-71.253-181.333-181.333-181.333h-427.093z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":603,"id":524,"name":"message-2","prevSize":32,"code":60115},"setIdx":2,"setId":2,"iconIdx":377},{"icon":{"paths":["M631.893 729.596c-0.427 0-0.853 0-1.28 0h-284.587c-84.48-5.973-122.026-70.396-122.026-128 0-48.213 26.454-101.116 83.2-120.742-12.8-64 2.987-123.734 45.227-168.107 50.773-53.333 132.266-74.24 202.24-52.906 62.293 19.2 107.093 69.12 124.587 138.667 53.333 14.933 95.573 56.747 113.067 113.493 19.627 64.853 1.707 131.413-46.933 173.653-30.72 28.16-71.253 43.942-113.493 43.942zM347.307 537.596c-43.52 3.84-59.307 36.693-59.307 64 0 27.733 15.787 61.018 60.16 64h282.453c27.733 0 52.053-9.382 71.68-27.729 35.84-31.147 37.973-75.947 28.587-107.52s-36.267-67.418-82.773-72.964c-14.080-1.707-25.173-12.373-27.733-26.453-9.387-56.745-39.68-95.569-84.907-109.649-46.507-14.507-103.253 0.425-136.96 35.839-33.28 34.56-40.533 83.624-21.333 137.81 5.973 16.64-2.56 34.991-19.2 40.964-3.413 1.28-8.96 2.133-10.667 1.702z","M384 970.667c-182.187 0-330.667-148.48-330.667-330.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 126.293 87.893 232.107 206.080 259.84l-11.52-19.2c-8.96-15.36-4.266-34.987 11.094-43.947 14.933-8.96 34.987-4.267 43.947 11.093l44.799 74.667c5.973 9.813 5.974 22.187 0.427 32-5.973 9.813-16.64 16.213-28.16 16.213z","M938.684 416c-17.493 0-32-14.507-32-32 0-126.293-87.893-232.108-206.080-259.841l11.52 19.201c8.96 15.36 4.267 34.988-11.093 43.948-14.933 8.96-34.987 4.267-43.947-11.094l-44.8-74.667c-5.973-9.813-5.973-22.187-0.427-32 5.547-10.24 16.213-16.213 27.733-16.213 182.187 0 330.667 148.48 330.667 330.667 0.427 17.493-14.080 32-31.573 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-change"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":604,"id":523,"name":"cloud-change","prevSize":32,"code":60116},"setIdx":2,"setId":2,"iconIdx":378},{"icon":{"paths":["M511.97 969.378c-252.16 0-457.387-205.227-457.387-457.387s205.227-457.387 457.387-457.387c113.067 0 221.44 41.813 305.067 117.333 96.853 85.76 152.32 209.92 152.32 340.054s-55.467 254.293-152.747 340.48c-83.2 75.52-191.573 116.907-304.64 116.907zM511.97 118.604c-217.173 0-393.387 176.64-393.387 393.387s176.64 393.387 393.387 393.387c97.28 0 190.293-35.84 262.4-101.12 83.627-74.24 131.413-180.48 131.413-292.693s-47.787-218.454-130.987-292.267c-72.533-64.853-165.547-100.693-262.827-100.693z","M445.41 806.822c-15.787 0-32.427-3.413-48.64-9.813-116.907-46.933-192.853-159.147-192.853-285.013s75.52-238.080 192.853-285.014c37.12-14.933 74.667-12.8 102.827 5.973 27.307 18.347 42.667 50.773 43.52 91.307v375.467c-0.427 40.533-15.787 73.387-43.52 91.307-15.787 10.667-34.56 15.787-54.187 15.787zM445.41 281.169c-7.68 0-16.213 1.707-24.747 5.12-93.013 37.12-152.747 125.867-152.747 225.707s59.733 188.587 152.747 225.707c17.067 6.827 33.28 6.827 43.52 0.427 11.947-8.107 14.507-25.6 14.933-38.827v-374.614c0-12.8-2.987-30.72-14.933-38.827-5.12-2.987-11.52-4.693-18.773-4.693z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mask"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":605,"id":522,"name":"mask","prevSize":32,"code":60117},"setIdx":2,"setId":2,"iconIdx":379},{"icon":{"paths":["M426.24 971.947c-25.6 0-49.92-12.8-66.56-35.413l-51.199-68.267c0 0.427-2.134-0.853-2.987-0.853h-15.786c-145.92 0-236.374-39.68-236.374-236.373v-170.667c0-179.626 109.654-226.56 201.814-234.666 10.24-1.28 22.187-1.707 34.56-1.707h273.066c154.453 0 236.373 81.92 236.373 236.373v170.667c0 12.373-0.427 24.32-2.133 35.84-7.68 90.88-54.613 200.533-234.24 200.533h-17.067l-52.907 69.12c-16.64 22.613-40.96 35.413-66.56 35.413zM289.707 288c-9.813 0-19.2 0.427-28.16 1.28-98.987 8.533-144.213 62.72-144.213 171.093v170.667c0 146.347 45.227 172.373 172.374 172.373h17.066c19.2 0 40.96 10.667 52.906 26.027l51.2 68.693c9.387 12.8 21.333 12.8 30.72 0l51.2-68.267c12.373-16.64 32-26.453 52.907-26.453h17.067c108.373 0 162.56-45.653 170.667-142.933 1.28-10.24 1.707-19.627 1.707-29.44v-170.667c0-119.040-53.333-172.373-172.373-172.373h-273.066z","M426.25 605.436c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.465 0 42.665 19.2 42.665 42.667s-18.773 42.667-42.665 42.667z","M562.752 605.436c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M290.167 605.436c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M765.423 695.040c-8.533 0-17.067-3.413-23.040-9.813-6.827-6.827-9.809-16.64-8.529-26.027 1.28-8.96 1.702-18.347 1.702-28.16v-170.667c0-119.040-53.329-172.373-172.369-172.373h-273.070c-9.813 0-19.199 0.427-28.159 1.28-9.387 1.28-19.201-2.134-26.028-8.534-6.827-6.827-10.667-16.212-9.814-25.599 7.68-92.16 55.040-201.814 234.665-201.814h273.071c154.453 0 236.369 81.92 236.369 236.374v170.666c0 179.627-109.649 226.56-201.809 234.667-1.28 0-2.138 0-2.991 0zM295.239 224h267.517c154.453 0 236.378 81.92 236.378 236.373v165.12c72.533-17.92 106.667-71.253 106.667-165.12v-170.666c0-119.040-53.338-172.374-172.378-172.374h-273.062c-93.869 0-146.775 34.133-165.122 106.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["messages"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":606,"id":521,"name":"messages","prevSize":32,"code":59740},"setIdx":2,"setId":2,"iconIdx":380},{"icon":{"paths":["M756.907 970.658h-431.36c-13.653 0-25.6-8.533-30.293-20.907-4.693-12.8-0.853-26.884 9.387-35.418s19.627-19.622 26.453-31.569c13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667-31.573 0-61.44 10.662-86.613 30.716-9.813 7.68-22.613 8.964-33.707 3.844s-17.92-16.64-17.92-29.013v-186.453c0-106.241 86.187-192.428 192.427-192.428h489.813c106.24 0 192.427 86.187 192.427 192.428v61.44c0 17.493-14.507 32-32 32h-86.187c-14.933 0-28.587 5.547-38.4 15.787l-0.427 0.427c-11.947 11.52-17.493 27.302-16.213 43.516 2.56 28.16 29.44 50.773 60.16 50.773h81.067c17.493 0 32 14.507 32 32v50.773c0 106.24-86.187 192.431-192.427 192.431zM391.68 906.658h365.227c70.827 0 128.427-57.604 128.427-128.431v-18.773h-49.067c-64.427 0-119.040-47.787-124.16-109.227-3.413-34.987 9.387-69.542 34.987-94.716 22.187-22.613 52.053-34.987 84.053-34.987h54.187v-29.44c0-70.828-57.6-128.428-128.427-128.428h-489.813c-70.827 0-128.427 57.6-128.427 128.428v131.413c23.893-9.387 49.067-14.507 74.667-14.507 111.787 0 202.667 90.88 202.667 202.667 0 33.707-8.533 66.987-24.32 96z","M106.667 561.493c-17.493 0-32-14.507-32-32v-194.984c0-63.573 40.107-121.175 99.413-143.789l338.773-128c34.987-13.227 73.813-8.532 104.107 12.802 30.72 21.333 48.64 55.893 48.64 93.013v162.132c0 17.493-14.507 32-32 32s-32-14.507-32-32v-162.132c0-16.213-7.68-31.148-21.333-40.534s-29.867-11.52-45.227-5.547l-338.773 128c-34.56 13.227-58.027 46.935-58.027 84.055v194.984c0.427 17.92-14.080 32-31.573 32z","M836.288 759.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.76-22.187 51.627-34.56 83.627-34.56h88.747c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.48zM918.635 584.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.56 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M597.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 1013.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.24 17.92-24.32 34.133-40.533 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM213.333 672c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 25.173 42.667 69.547 67.413 118.613 67.413 33.707 0 66.133-12.373 90.88-34.56 11.093-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667z","M259.003 887.044c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M167.727 888.316c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["empty-wallet-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":607,"id":520,"name":"empty-wallet-remove","prevSize":32,"code":60118},"setIdx":2,"setId":2,"iconIdx":381},{"icon":{"paths":["M795.767 381.867c-84.907 0-153.6-69.12-153.6-153.6 0-34.56 11.52-67.413 32.853-94.72 0.853-1.28 2.133-2.133 2.987-3.413 29.013-35.413 71.68-55.467 117.76-55.467 84.48 0 153.6 69.12 153.6 153.6 0 47.36-21.333 91.307-58.88 120.747-27.307 21.333-60.16 32.853-94.72 32.853zM723.234 175.787c-11.093 15.36-17.067 33.28-17.067 52.48 0 49.493 40.107 89.6 89.6 89.6 20.053 0 39.253-6.827 55.040-19.2 21.76-17.067 34.56-42.667 34.56-70.4 0-49.493-40.107-89.6-89.6-89.6-27.733 0-53.333 12.373-69.973 34.133-0.853 1.28-1.707 2.133-2.56 2.987z","M228.267 381.867c-34.56 0-67.413-11.52-94.72-32.853-37.547-29.44-58.88-73.387-58.88-120.747 0-84.48 69.12-153.6 153.6-153.6 47.36 0 91.307 21.333 120.747 58.88 21.333 27.307 32.853 60.16 32.853 94.72 0 84.48-69.12 153.6-153.6 153.6zM228.267 138.667c-49.493 0-89.6 40.107-89.6 89.6 0 27.733 12.373 53.333 34.56 70.4 15.787 12.373 34.987 19.2 55.040 19.2 49.493 0 89.6-40.107 89.6-89.6 0-20.053-6.827-39.253-19.2-55.040-17.067-22.187-42.667-34.56-70.4-34.56z","M795.767 949.325c-46.080 0-88.747-20.053-117.76-55.467-1.28-0.853-2.133-2.133-2.987-3.413-21.333-27.307-32.853-60.16-32.853-94.72 0-84.907 69.12-153.6 153.6-153.6 34.56 0 67.413 11.52 94.72 32.853 1.28 0.853 2.133 2.133 3.413 2.987 35.413 29.013 55.467 71.68 55.467 117.76 0 84.48-69.12 153.6-153.6 153.6zM723.234 848.205c0.853 0.853 1.707 1.707 2.56 2.987 16.64 21.76 42.24 34.133 69.973 34.133 49.493 0 89.6-40.107 89.6-89.6 0-27.733-12.373-53.333-34.133-69.973-1.28-0.853-2.133-1.707-2.987-2.56-15.36-11.093-33.28-17.067-52.48-17.067-49.493 0-89.6 40.107-89.6 89.6 0 19.2 5.973 37.12 17.067 52.48z","M228.267 949.325c-84.48 0-153.6-69.12-153.6-153.6 0-46.080 20.053-88.747 55.467-117.76 0.853-1.28 2.133-2.133 3.413-2.987 27.307-21.333 60.16-32.853 94.72-32.853 84.907 0 153.6 69.12 153.6 153.6 0 34.56-11.52 67.413-32.853 94.72-29.44 37.547-73.387 58.88-120.747 58.88zM175.787 723.191c-0.853 0.853-1.707 1.707-2.987 2.56-21.76 16.64-34.133 42.24-34.133 69.973 0 49.493 40.107 89.6 89.6 89.6 27.733 0 53.333-12.373 70.4-34.56 12.373-15.787 19.2-34.987 19.2-55.040 0-49.493-40.107-89.6-89.6-89.6-19.2 0-37.12 5.973-52.48 17.067z","M512 949.333c-70.827 0-141.227-17.493-203.093-50.347-8.533-4.267-14.080-12.373-16.213-21.76s0-18.773 5.973-26.453c12.373-15.787 19.2-34.987 19.2-55.040 0-49.493-40.107-89.6-89.6-89.6-20.053 0-39.253 6.827-55.040 19.2-7.253 5.973-17.067 8.107-26.453 5.973s-17.067-7.68-21.76-16.213c-33.28-62.72-50.347-130.987-50.347-203.093 0-70.827 17.493-141.227 50.347-203.093 4.267-8.533 12.373-14.080 21.76-16.213s18.773 0.427 26.453 5.973c15.787 12.373 34.987 19.2 55.040 19.2 49.493 0 89.6-40.107 89.6-89.6 0-20.053-6.827-39.253-19.2-55.040-5.973-7.253-8.107-17.067-5.973-26.453s7.68-17.067 16.213-21.76c61.867-32.853 132.267-50.347 203.093-50.347 72.107 0 140.373 17.067 203.093 50.347 8.533 4.267 14.080 12.373 16.213 21.76s-0.427 18.773-5.973 26.453c-12.373 15.787-19.2 34.987-19.2 55.040 0 49.493 40.107 89.6 89.6 89.6 20.053 0 39.253-6.827 55.040-19.2 7.253-5.973 17.067-8.107 26.453-5.973s17.067 7.68 21.76 16.213c32.853 61.867 50.347 132.267 50.347 203.093 0 72.107-17.067 140.373-50.347 203.093-4.267 8.533-12.373 14.080-21.76 16.213s-18.773-0.427-26.453-5.973c-15.787-12.373-34.987-19.2-55.040-19.2-49.493 0-89.6 40.107-89.6 89.6 0 20.053 6.827 39.253 19.2 55.040 5.973 7.253 8.107 17.067 5.973 26.453s-7.68 17.067-16.213 21.76c-62.72 33.28-130.987 50.347-203.093 50.347zM369.067 856.747c90.453 37.973 196.267 37.547 285.44 0-8.533-19.2-12.8-39.68-12.8-61.013 0-84.907 69.12-153.6 153.6-153.6 21.333 0 41.813 4.267 61.013 12.8 18.773-44.8 28.587-92.587 28.587-142.933 0-49.067-9.813-98.133-28.587-142.933-19.2 8.533-39.68 12.8-61.013 12.8-84.907 0-153.6-69.12-153.6-153.6 0-21.333 4.267-41.813 12.8-61.013-89.173-37.547-195.413-37.547-285.44 0 8.533 19.2 12.8 39.68 12.8 61.013 0 84.907-69.12 153.6-153.6 153.6-21.333 0-41.813-4.267-61.013-12.8-18.773 44.8-28.587 93.867-28.587 142.933 0 49.92 9.387 97.707 28.587 142.933 19.2-8.533 39.68-12.8 61.013-12.8 84.907 0 153.6 69.12 153.6 153.6 0 21.333-4.267 41.813-12.8 61.013z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["format-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":608,"id":519,"name":"format-circle","prevSize":32,"code":60119},"setIdx":2,"setId":2,"iconIdx":382},{"icon":{"paths":["M511.987 971.093c-63.147 0-126.72-23.893-176.214-71.253-125.867-121.173-264.96-314.453-212.48-544.427 47.36-208.64 229.547-302.080 388.694-302.080 0 0 0 0 0.427 0 159.147 0 341.333 93.44 388.693 302.507 52.053 229.973-87.040 422.827-212.907 544-49.493 47.36-113.067 71.253-176.213 71.253zM511.987 117.333c-124.16 0-283.734 66.133-325.974 252.16-46.080 200.96 80.213 374.187 194.56 483.84 73.814 71.253 189.44 71.253 263.254 0 113.92-109.653 240.213-282.88 194.987-483.84-42.667-186.027-202.667-252.16-326.827-252.16z","M597.355 584.956c-8.107 0-16.213-2.987-22.613-9.387l-168.961-168.958c-12.373-12.373-12.373-32.853 0-45.227s32.855-12.373 45.228 0l168.96 168.958c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M426.643 586.667c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l168.962-168.961c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-168.96 168.961c-6.4 6.4-14.507 9.387-22.615 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["location-cross"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":609,"id":518,"name":"location-cross","prevSize":32,"code":60120},"setIdx":2,"setId":2,"iconIdx":383},{"icon":{"paths":["M511.974 567.462c-5.547 0-11.093-1.28-16.213-4.267l-376.748-218.027c-15.36-8.96-20.481-28.588-11.521-43.948s28.16-20.481 43.947-11.521l360.536 208.642 358.396-207.361c15.36-8.96 34.987-3.412 43.947 11.521 8.96 15.36 3.418 34.985-11.516 43.945l-374.187 216.748c-5.547 2.56-11.093 4.267-16.64 4.267z","M512 954.027c-17.493 0-32-14.507-32-32v-386.987c0-17.493 14.507-32 32-32s32 14.507 32 32v386.987c0 17.493-14.507 32-32 32z","M512.026 970.667c-37.547 0-74.667-8.107-104.106-24.32l-227.84-126.72c-61.867-34.133-110.080-116.48-110.080-187.307v-241.068c0-70.827 48.213-152.745 110.080-187.305l227.84-126.294c58.453-32.427 149.76-32.427 208.213 0l227.84 126.719c61.867 34.133 110.080 116.481 110.080 187.308v241.067c0 70.827-48.213 152.747-110.080 187.307l-227.84 126.293c-29.44 16.213-66.56 24.32-104.107 24.32zM512.026 117.333c-26.88 0-53.333 5.547-72.96 16.214l-227.839 126.719c-40.96 23.040-77.227 84.054-77.227 131.414v241.067c0 46.933 36.267 108.373 77.227 131.413l227.839 126.72c38.827 21.76 107.093 21.76 145.92 0l227.84-126.72c40.96-23.040 77.227-84.053 77.227-131.413v-241.067c0-46.933-36.267-108.374-77.227-131.414l-227.84-126.719c-19.627-10.667-46.080-16.214-72.96-16.214z","M725.385 596.907c-17.493 0-32-14.507-32-32v-137.382l-389.122-224.428c-15.36-8.96-20.481-28.588-11.521-43.521 8.96-15.36 28.161-20.481 43.521-11.521l404.908 233.815c9.813 5.547 16.213 16.212 16.213 27.732v156.163c0 16.64-14.507 31.142-32 31.142z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":610,"id":517,"name":"box","prevSize":32,"code":60121},"setIdx":2,"setId":2,"iconIdx":384},{"icon":{"paths":["M511.974 567.462c-5.547 0-11.093-1.28-16.213-4.267l-376.748-218.027c-15.36-8.96-20.481-28.588-11.521-43.948s28.16-20.481 43.947-11.521l360.536 208.642 358.396-207.361c15.36-8.96 34.987-3.412 43.947 11.521 8.96 15.36 3.418 34.985-11.516 43.945l-374.187 216.748c-5.547 2.56-11.093 4.267-16.64 4.267z","M512 954.027c-17.493 0-32-14.507-32-32v-386.987c0-17.493 14.507-32 32-32s32 14.507 32 32v386.987c0 17.493-14.507 32-32 32z","M511.953 970.667c-38.827 0-75.947-8.96-104.107-24.747l-227.84-126.293c-61.867-34.133-110.506-116.48-110.506-187.307v-241.495c0-70.827 48.64-152.745 110.506-187.305l227.84-126.294c58.027-32.427 149.333-32.427 207.787 0l227.84 126.294c61.867 34.133 110.507 116.478 110.507 187.305v156.161c0 17.493-14.507 32-32 32s-32-14.507-32-32v-156.161c0-46.933-36.267-108.371-77.227-130.985l-227.84-126.294c-38.827-21.76-106.667-21.76-145.493 0l-227.84 126.294c-41.387 23.040-77.226 84.051-77.226 130.985v241.495c0 46.933 36.266 108.373 77.226 130.987l227.84 126.293c37.547 20.907 108.373 20.907 145.493 0 15.36-8.533 34.987-2.987 43.52 12.373s2.987 34.987-12.373 43.52c-28.16 16.213-65.28 25.173-104.107 25.173z","M819.2 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM819.2 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M981.312 970.667c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box-search"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":611,"id":516,"name":"box-search","prevSize":32,"code":60122},"setIdx":2,"setId":2,"iconIdx":385},{"icon":{"paths":["M661.333 672c-7.68 0-16.213-0.427-24.32-0.853-15.787-0.853-28.587-13.653-29.867-29.44-9.387-119.040-106.24-215.467-224.854-224.854-15.787-1.28-28.587-14.079-29.44-29.866-0.427-8.107-0.853-16.214-0.853-24.32 0-170.667 138.667-309.333 309.333-309.333s309.333 138.667 309.333 309.333c0 170.667-138.667 309.333-309.333 309.333zM416 356.693c127.147 22.187 229.12 124.16 251.307 251.307 132.693-3.413 239.36-111.787 239.36-245.333 0-135.253-110.080-245.333-245.333-245.333-133.12 0-241.92 106.666-245.333 239.36z","M362.667 970.667c-170.667 0-309.333-138.667-309.333-309.333s138.667-309.333 309.333-309.333c7.68 0 16.214 0.426 24.32 0.853 150.613 11.947 272.64 133.974 284.16 283.734 0.427 8.533 0.853 16.64 0.853 24.747 0 170.667-138.667 309.333-309.333 309.333zM362.667 416c-135.253 0-245.333 110.080-245.333 245.333s110.080 245.333 245.333 245.333c135.253 0 245.333-110.080 245.333-245.333 0-6.827-0.427-13.653-0.853-20.053-9.387-118.187-105.813-215.040-224.854-224.427-5.973-0.427-12.8-0.853-19.626-0.853z","M128 313.173c-9.813 0-19.2-1.707-28.587-5.547-28.16-11.52-46.080-38.826-46.080-69.12v-110.507c0-40.96 33.707-74.667 74.667-74.667h110.507c30.293 0 57.173 17.92 69.12 46.080 11.52 28.16 5.12 60.16-16.213 81.493l-110.507 110.507c-14.507 14.080-33.28 21.76-52.906 21.76zM128 117.333c-5.973 0-10.667 4.693-10.667 10.667v110.507c0 6.4 4.266 8.96 6.4 9.814 2.56 0.853 7.254 2.132 11.521-2.134l110.507-110.507c4.267-4.267 3.413-8.96 2.133-11.52s-3.84-6.4-9.814-6.4h-110.080v-0.427z","M895.949 970.671h-110.507c-30.293 0-57.169-17.92-69.116-46.080-11.52-28.16-5.12-60.16 16.213-81.493l110.507-110.507c21.333-21.333 53.333-27.733 81.493-16.213s46.076 38.827 46.076 69.12v110.507c0 40.96-33.707 74.667-74.667 74.667zM895.522 774.831c-2.133 0-4.693 0.853-7.253 3.413l-110.502 110.502c-4.267 4.267-3.418 8.964-2.138 11.524s3.84 6.4 9.813 6.4h110.507c5.973 0 10.667-4.693 10.667-10.667v-110.507c0-6.4-4.267-8.96-6.4-9.813-1.28-0.427-2.987-0.853-4.693-0.853z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trade"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":612,"id":515,"name":"trade","prevSize":32,"code":60123},"setIdx":2,"setId":2,"iconIdx":386},{"icon":{"paths":["M511.991 970.671c-25.6 0-50.773-5.973-71.253-17.493l-201.815-116.48c-83.627-56.32-89.173-66.56-89.173-154.88v-211.627c0-88.322 5.547-98.562 87.467-153.602l203.948-117.76c40.533-23.467 101.547-23.467 142.080 0l201.813 116.48c83.627 56.32 89.173 66.56 89.173 154.882v211.627c0 88.32-5.547 98.56-87.467 153.6l-203.947 117.76c-20.053 11.947-45.653 17.493-70.827 17.493zM511.991 245.336c-14.507 0-29.013 2.987-39.253 8.96l-201.815 116.48c-57.173 38.827-57.173 38.827-57.173 99.415v211.627c0 60.587 0 60.587 59.307 100.693l200.108 115.2c20.48 11.947 57.6 11.947 78.080 0l201.813-116.48c57.173-38.827 57.173-38.827 57.173-99.413v-211.627c0-60.588 0-60.588-59.307-100.695l-200.107-115.2c-9.813-5.973-24.32-8.96-38.827-8.96z","M746.667 357.547c-17.493 0-32-14.507-32-32v-112.213c0-67.413-28.587-96-96-96h-213.333c-67.413 0-96 28.587-96 96v109.227c0 17.493-14.507 32-32 32s-32-14.080-32-32v-109.227c0-103.253 56.747-160 160-160h213.333c103.253 0 160 56.747 160 160v112.213c0 17.493-14.507 32-32 32z","M581.555 752.218c-8.96 0-18.347-1.707-27.733-5.547l-41.813-16.213-41.813 16.64c-22.613 8.96-45.652 6.827-62.718-5.547s-26.027-33.707-24.747-58.027l2.56-44.8-28.587-34.56c-15.36-19.2-20.48-41.387-13.653-61.867 6.4-20.053 23.893-35.413 47.36-41.387l43.518-11.093 24.32-37.973c26.027-40.959 81.92-40.959 107.947 0l24.32 37.973 43.52 11.093c23.467 5.973 40.96 21.333 47.36 41.387s1.28 42.667-14.080 61.44l-28.587 34.56 2.56 44.8c1.28 24.32-7.68 45.227-24.747 58.027-10.24 7.253-22.187 11.093-34.987 11.093zM406.197 563.204l28.585 34.56c9.813 11.52 15.36 29.867 14.507 44.8l-2.56 44.8 41.813-16.64c14.080-5.547 32.853-5.547 46.933 0l41.813 16.64-2.56-44.8c-0.853-14.933 4.693-32.853 14.507-44.8l28.587-34.56-43.52-11.093c-14.507-3.84-29.867-14.933-37.973-27.307l-23.893-37.547-24.32 37.547c-8.107 12.8-23.467 23.893-37.973 27.733l-43.945 10.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["award"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":613,"id":514,"name":"award","prevSize":32,"code":60124},"setIdx":2,"setId":2,"iconIdx":387},{"icon":{"paths":["M510.69 970.662c-26.027 0-52.907-2.133-80.213-6.827-187.732-32-340.906-185.6-372.052-374.187-24.747-149.76 21.76-296.106 128-402.346s252.586-152.32 401.919-128c188.16 31.147 342.187 183.893 374.187 371.626 6.827 41.387 8.533 81.92 5.12 120.32v0.427c-0.853 9.813-2.56 19.2-5.12 28.587-2.987 10.667-11.093 18.773-21.333 22.187s-21.76 0.853-30.293-5.973c-40.107-33.707-91.307-52.48-144.213-52.48-123.733 0-224 100.693-224 224 0 52.907 18.773 104.107 52.48 144.213 7.253 8.533 9.387 19.627 5.973 30.293s-11.52 18.347-22.187 21.333c-9.387 2.56-18.773 4.267-28.587 5.12-12.8 1.28-26.027 1.707-39.68 1.707zM510.69 117.329c-104.532 0-203.519 40.533-278.612 115.627-91.307 91.307-131.413 217.6-110.080 346.453 26.88 161.707 157.867 293.973 319.572 321.28 25.6 4.267 49.92 6.827 73.387 5.973-23.040-42.24-35.413-90.027-35.413-138.667 0-158.72 129.28-288 288-288 48.64 0 96.427 12.373 138.667 35.413 0.427-23.467-1.707-47.787-5.973-73.387-27.307-161.28-159.573-292.693-321.28-319.146-23.467-3.84-46.080-5.547-68.267-5.547z","M570.91 964.693c-9.387 0-18.347-3.84-24.32-11.52-43.52-51.627-67.84-117.333-67.84-185.173 0-158.72 129.28-288 288-288 67.84 0 133.547 23.893 185.173 67.84 9.813 8.107 13.653 21.333 10.24 33.28-7.68 26.453-21.333 49.493-40.96 69.12l-272.213 272.213c-19.627 19.627-43.093 33.28-69.12 40.96-2.987 0.853-5.973 1.28-8.96 1.28zM766.75 544c-123.733 0-224 100.693-224 224 0 45.227 13.653 89.173 38.827 125.867 8.107-4.267 15.36-9.813 22.187-16.64l272.213-272.213c6.827-6.827 12.373-14.080 16.64-22.187-36.693-25.173-80.64-38.827-125.867-38.827z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sticker"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":614,"id":513,"name":"sticker","prevSize":32,"code":60125},"setIdx":2,"setId":2,"iconIdx":388},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 10.667 0 21.333-0.853 31.573-1.28 13.653-10.667 24.747-23.893 28.16s-26.88-1.707-34.56-13.227c-0.427-0.427-2.987-3.413-3.413-4.267-29.44-33.707-72.533-52.907-118.187-52.907-43.52 0-84.48 17.067-114.773 48.213-29.013 29.867-45.227 69.547-45.227 111.787 0 28.587 8.107 57.173 23.040 82.347 8.107 13.653 18.347 25.6 29.867 35.84l5.12 4.693c9.813 8.107 14.507 22.187 10.667 34.56s-14.080 21.76-26.88 23.040c-9.813 0.853-20.907 0.853-31.573 0.853zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h214.613c-0.427-0.427-0.853-1.28-1.28-1.707-21.333-35.413-32.427-75.093-32.427-115.627 0-58.88 22.613-114.347 63.147-156.16 41.813-43.093 100.693-67.84 160.853-67.84 42.24 0 82.773 11.52 117.333 33.28v-214.613c0-196.693-69.973-266.667-266.667-266.667h-255.573z","M916.459 335.354h-808.959c-17.493 0-32-14.507-32-32s14.507-32 32-32h808.959c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M363.5 329.38c-17.493 0-32-14.507-32-32v-207.36c0-17.493 14.507-32 32-32s32 14.507 32 32v207.36c0 17.493-14.507 32-32 32z","M660.501 310.182c-17.493 0-32-14.507-32-32v-188.162c0-17.493 14.507-32 32-32s32 14.507 32 32v188.162c0 17.92-14.080 32-32 32z","M789.325 1013.333c-50.347 0-99.413-17.067-137.813-48.64-1.28-0.853-2.56-1.707-3.413-2.56-3.84-3.413-6.4-5.12-8.533-7.68-14.933-12.8-29.44-29.867-41.387-49.493-21.333-35.413-32.427-75.093-32.427-115.627 0-58.88 22.613-114.347 63.147-156.16 41.813-43.093 100.693-67.84 160.853-67.84 64.427 0 125.013 27.307 166.827 75.093 2.133 1.707 5.547 5.973 8.533 10.24 30.72 37.12 49.067 87.040 49.067 138.667 0 18.773-2.133 36.267-6.4 52.907-5.12 21.333-13.653 42.24-25.6 62.293-41.387 67.413-114.773 108.8-192.853 108.8zM686.498 910.933c0.853 0.853 2.133 1.28 2.987 2.133 28.16 23.467 62.293 35.84 99.84 35.84 55.893 0 107.947-29.867 136.96-77.653 8.533-14.080 14.507-29.44 18.347-45.227 2.987-11.947 4.693-23.893 4.693-37.12 0-36.693-12.8-72.107-36.267-100.267-0.427-0.427-5.12-5.973-5.547-6.827-29.44-33.707-72.533-52.907-118.187-52.907-43.52 0-84.48 17.067-114.773 48.213-29.013 29.867-45.227 69.547-45.227 111.787 0 28.587 8.107 57.173 23.040 82.347 8.107 13.653 18.347 25.6 29.867 35.84l4.267 3.84z","M840.525 871.689c-8.107 0-16.213-2.987-22.613-9.387l-101.547-101.547c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l101.547 101.547c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.387-22.613 9.387z","M738.142 872.525c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l101.547-101.547c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-101.547 101.547c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":615,"id":512,"name":"video-remove","prevSize":32,"code":60126},"setIdx":2,"setId":2,"iconIdx":389},{"icon":{"paths":["M645.116 970.667h-266.241c-171.947 0-274.773-33.707-293.547-206.507-3.413-24.747-5.12-54.187-5.12-92.16v-320c0-36.693 1.707-66.987 5.12-92.587 19.627-173.227 118.187-206.080 293.973-206.080h266.668c175.787 0 274.773 32.853 293.547 206.933 4.267 28.587 5.12 61.013 5.12 91.733v320c0 37.12-1.707 66.56-5.12 93.013-19.627 172.8-118.613 205.653-294.4 205.653zM378.875 117.333c-181.333 0-218.027 39.253-230.4 149.76-3.413 23.467-4.693 51.2-4.693 84.907v320c0 34.987 1.707 61.44 4.693 84.053 12.373 111.36 48.64 150.613 230.4 150.613h266.241c181.333 0 218.027-39.253 230.4-149.333 2.987-23.467 4.693-51.2 4.693-85.333v-320c0-28.16-0.427-58.027-4.267-83.627-12.373-111.787-48.64-151.040-230.4-151.040h-266.668z","M905.809 412.583h-174.933c-17.493 0-32-14.507-32-32s14.507-32 32-32h174.933c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M293.1 412.583h-174.933c-17.493 0-32-14.507-32-32s14.507-32 32-32h174.933c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M643.418 500.058h-262.826c-32 0-62.72-12.8-84.907-35.84-22.187-21.333-34.56-51.626-34.56-83.626 0-65.707 53.76-119.467 119.467-119.467h262.399c32 0 62.72 13.227 84.907 35.84 22.187 21.76 34.987 51.627 34.987 83.627 0 65.706-53.76 119.466-119.467 119.466zM380.592 325.125c-30.72 0-55.467 24.747-55.467 55.467 0 14.933 5.547 28.587 15.787 38.4 10.667 11.092 24.747 17.066 39.68 17.066h262.826c30.72 0 55.467-24.746 55.467-55.466 0-14.507-5.973-28.16-16.213-38.4-10.667-11.093-24.747-17.067-39.68-17.067h-262.399z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airpod"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":616,"id":511,"name":"airpod","prevSize":32,"code":60127},"setIdx":2,"setId":2,"iconIdx":390},{"icon":{"paths":["M512 973.227c-29.44 0-57.173-14.933-76.8-40.96l-64-85.333c-1.28-1.707-6.4-3.84-8.533-4.267h-21.333c-177.92 0-288-48.213-288-288v-213.333c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v213.333c0 188.587-99.413 288-288 288h-21.333c-3.413 0-6.4 1.707-8.533 4.267l-64 85.333c-19.627 26.027-47.36 40.96-76.8 40.96zM341.333 117.333c-152.747 0-224 71.253-224 224v213.333c0 192.853 66.133 224 224 224h21.333c21.76 0 46.507 12.373 59.733 29.867l64 85.333c14.933 19.627 36.267 19.627 51.2 0l64-85.333c14.080-18.773 36.267-29.867 59.733-29.867h21.333c152.747 0 224-71.253 224-224v-213.333c0-152.747-71.253-224-224-224h-341.333z","M512 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M682.667 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M341.333 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":617,"id":510,"name":"message","prevSize":32,"code":60128},"setIdx":2,"setId":2,"iconIdx":391},{"icon":{"paths":["M486.4 970.667h-162.133c-187.307 0-270.933-83.627-270.933-270.933v-162.133c0-187.307 83.627-270.933 270.933-270.933h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-152.747 0-206.933 54.187-206.933 206.933v162.133c0 152.747 54.187 206.933 206.933 206.933h162.133c152.747 0 206.933-54.187 206.933-206.933v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 187.307-83.627 270.933-270.933 270.933z","M725.316 603.733h-136.533c-119.893 0-168.533-48.64-168.533-168.533v-136.534c0-12.8 7.68-24.747 19.626-29.44 11.947-5.12 25.6-2.133 34.987 6.827l273.067 273.067c8.96 8.96 11.947 23.040 6.827 34.987-4.693 11.947-16.64 19.627-29.44 19.627zM484.25 375.893v59.307c0 84.907 19.627 104.533 104.533 104.533h59.307l-163.84-163.84z","M665.583 117.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M298.667 245.333c-17.493 0-32-14.507-32-32 0-88.32 71.68-160 160-160h111.787c17.493 0 32 14.507 32 32s-14.507 32-32 32h-111.787c-52.907 0-96 43.093-96 96 0 17.493-14.507 32-32 32z","M818.752 757.333c-17.493 0-32-14.507-32-32s14.507-32 32-32c48.64 0 87.893-39.68 87.893-87.893v-264.107c0-17.493 14.507-32 32-32s32 14.507 32 32v264.107c0 83.627-68.267 151.893-151.893 151.893z","M938.667 373.333h-128c-113.493 0-160-46.507-160-160v-128c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l256 256c8.96 8.96 11.947 23.040 6.827 34.987-4.693 11.947-16.64 19.627-29.44 19.627zM714.667 162.56v50.773c0 78.080 17.92 96 96 96h50.773l-146.773-146.773z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-copy"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":618,"id":509,"name":"document-copy","prevSize":32,"code":60129},"setIdx":2,"setId":2,"iconIdx":392},{"icon":{"paths":["M790.605 1013.333c-6.4 0-12.373-0.853-17.92-2.133-56.32-15.36-107.093-49.067-143.36-95.147-38.827-48.213-60.16-107.093-60.16-166.4v-93.44c0-30.72 20.48-61.867 49.067-73.813l119.040-48.64c34.987-13.653 72.96-13.653 107.52 0l119.471 48.64c28.587 11.947 49.493 43.093 49.493 73.813v93.44c0 119.040-85.333 229.12-202.667 261.547-7.253 1.28-14.084 2.133-20.484 2.133zM791.036 586.667c-10.24 0-20.484 1.707-30.298 5.973l-118.187 48.64c-4.267 1.707-9.387 9.813-9.387 14.933v93.44c0 44.8 16.218 89.6 46.084 126.72 28.16 35.84 66.987 61.867 109.227 73.387 1.28 0.427 3.836 0.427 5.969-0.427 87.467-24.32 154.453-110.080 154.453-199.68v-93.44c0-5.12-5.116-12.8-9.809-14.933l-118.613-48.64c-9.387-3.84-19.2-5.973-29.44-5.973z","M654.528 928h-390.829c-74.24 0-142.507-57.604-154.88-130.564l-53.759-322.129c-8.96-50.773 16.212-116.052 56.319-148.479l280.747-224.427c55.042-44.373 141.228-43.946 196.268 0.427l280.747 224c40.533 32.427 65.28 97.706 56.32 148.479l-18.347 110.507c-1.707 9.387-7.68 17.92-16.213 22.613s-18.773 5.547-27.733 1.707l-42.667-17.493c-18.773-7.68-40.111-7.68-59.738 0l-118.182 48.64c-4.267 1.707-9.387 9.813-9.387 14.933v93.436c0 44.8 16.213 89.604 46.080 126.724 7.68 9.387 9.387 22.609 3.84 33.702-5.12 10.667-16.213 17.924-28.587 17.924zM489.835 133.119c-20.907 0-42.24 6.403-57.6 18.776l-280.749 224.422c-22.187 17.92-37.973 59.736-33.28 87.896l53.76 322.133c7.253 41.813 49.066 77.227 91.733 77.227h332.802c-17.92-36.267-27.307-75.52-27.307-114.773v-93.44c0-30.72 20.48-61.867 49.067-73.813l119.040-48.64c34.987-13.653 72.956-13.653 107.516 0l5.978 2.56 11.947-70.827c4.693-28.16-11.093-69.976-33.28-87.896l-280.751-224c-16.213-13.227-37.542-19.625-58.876-19.625z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["safe-home"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":619,"id":508,"name":"safe-home","prevSize":32,"code":60130},"setIdx":2,"setId":2,"iconIdx":393},{"icon":{"paths":["M512 224h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 437.333h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 650.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 864h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["textalign-justifyleft"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":620,"id":507,"name":"textalign-justifyleft","prevSize":32,"code":60131},"setIdx":2,"setId":2,"iconIdx":394},{"icon":{"paths":["M512 973.227c-29.44 0-57.173-14.933-76.8-40.96l-64-85.333c-1.28-1.707-6.4-4.267-8.96-4.267h-20.907c-177.92 0-288-48.213-288-288v-213.333c0-188.587 99.413-288 288-288h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-152.747 0-224 71.253-224 224v213.333c0 192.853 66.133 224 224 224h21.333c21.76 0 46.507 12.373 59.733 29.867l64 85.333c14.933 19.627 36.267 19.627 51.2 0l64-85.333c14.080-18.773 36.267-29.867 59.733-29.867h21.333c152.747 0 224-71.253 224-224v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 188.587-99.413 288-288 288h-21.333c-3.413 0-6.4 1.707-8.533 4.267l-64 85.333c-19.627 26.027-47.36 40.96-76.8 40.96z","M512 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M682.667 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M341.333 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M768.017 330.666c-36.693 0-123.307-43.52-149.76-123.307-10.667-31.573-8.107-67.84 6.827-96.427 13.227-25.6 35.413-44.373 62.72-52.907 27.733-8.533 57.173-4.693 80.213 9.387 23.040-14.080 52.48-17.92 80.64-9.387 27.307 8.533 49.493 27.307 62.72 52.907 14.933 28.587 17.493 64.853 6.827 96.427-26.88 81.067-117.333 123.307-150.187 123.307zM678.844 186.88c17.92 53.76 78.933 78.507 90.027 79.787 12.373-1.28 72.107-29.013 88.747-79.36 5.12-15.36 3.84-33.707-2.987-46.933-5.547-10.667-13.653-17.493-24.747-20.907-11.947-4.267-28.16-2.133-35.413 8.533-5.973 8.533-15.36 13.653-25.6 14.080-10.24 0-20.053-4.693-26.453-12.8-8.96-11.52-24.747-13.227-36.267-9.813-11.093 3.413-19.2 10.24-24.747 20.907-6.4 13.227-7.68 31.147-2.56 46.507z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-favorite"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":621,"id":506,"name":"message-favorite","prevSize":32,"code":60132},"setIdx":2,"setId":2,"iconIdx":395},{"icon":{"paths":["M511.979 826.458c-76.373 0-152.749-29.013-211.202-87.467-116.48-116.48-116.48-305.92 0-422.402 116.48-116.48 305.922-116.48 422.402 0 116.48 116.482 116.48 305.922 0 422.402-58.453 58.453-134.827 87.467-211.2 87.467zM511.979 293.123c-60.16 0-120.322 23.040-165.975 68.693-91.307 91.735-91.307 240.215 0 331.948 91.735 91.733 240.642 91.307 331.949 0 91.307-91.733 91.307-240.213 0-331.948-45.653-45.653-105.813-68.693-165.973-68.693z","M351.96 955.302c-3.84 0-8.107-0.853-11.947-2.133-96-38.4-173.654-106.24-225.707-195.84-50.347-87.467-70.4-186.453-57.173-287.147 2.133-17.493 18.347-29.867 35.84-27.733s29.866 18.347 27.733 35.84c-11.093 86.187 5.975 171.52 49.068 246.613 44.373 76.8 111.359 135.253 193.706 168.107 16.213 6.827 24.32 25.169 17.92 41.809-4.693 12.8-17.067 20.484-29.44 20.484z","M249.583 223.141c-9.387 0-18.773-4.266-25.173-12.372-11.093-14.080-8.533-34.133 5.547-44.8 81.493-63.573 178.773-97.281 282.026-97.281 100.693 0 196.693 32.428 277.333 93.868 14.080 10.667 16.64 30.719 5.973 44.799s-30.72 16.641-44.8 5.974c-69.12-52.907-151.467-80.641-238.507-80.641-88.746 0-172.8 29.015-242.773 83.628-5.973 4.693-12.8 6.825-19.626 6.825z","M672.030 955.311c-12.8 0-24.747-7.68-29.867-20.053-6.4-16.213 1.28-34.987 17.92-41.813 82.347-33.28 149.333-91.307 193.707-168.107 43.52-75.093 60.587-160.427 49.067-246.613-2.133-17.493 10.24-33.707 27.733-35.84 17.067-2.133 33.707 10.24 35.84 27.733 12.8 100.267-6.827 199.68-57.173 287.147-51.627 89.6-129.707 157.013-225.707 195.84-3.413 0.853-7.253 1.707-11.52 1.707z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["story"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":622,"id":505,"name":"story","prevSize":32,"code":60133},"setIdx":2,"setId":2,"iconIdx":396},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M414.295 761.173c-12.373 0-21.759-4.262-27.306-8.529-11.52-7.68-29.014-27.311-17.92-71.258l32.854-132.693-39.254-9.813c-39.68-9.813-48.64-34.987-50.346-45.227s-2.56-37.116 30.72-60.582l221.011-153.176c37.12-25.6 61.44-16.214 72.96-8.534s29.013 27.309 17.92 71.255l-32.853 132.695 39.253 9.809c39.68 9.813 48.64 34.987 50.347 45.653s2.56 37.12-30.72 60.587l-221.013 153.173c-18.347 12.373-33.28 16.64-45.652 16.64zM388.695 479.573l59.736 14.938c17.067 4.267 27.729 21.756 23.462 38.822l-37.547 151.044 200.964-139.52-59.738-14.933c-17.067-4.267-27.733-21.764-23.467-38.831l37.551-151.040-200.963 139.52z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flash-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":623,"id":504,"name":"flash-circle","prevSize":32,"code":60134},"setIdx":2,"setId":2,"iconIdx":397},{"icon":{"paths":["M468.083 970.667c-158.72 0-288-129.28-288-288v-256c0-182.187 148.48-330.667 330.667-330.667s330.667 148.48 330.667 330.667v234.667c0 99.84-81.493 181.333-181.333 181.333s-181.333-81.493-181.333-181.333v-149.333c0-17.493 14.507-32 32-32s32 14.507 32 32v149.333c0 64.853 52.48 117.333 117.333 117.333s117.333-52.48 117.333-117.333v-234.667c0-147.2-119.467-266.667-266.667-266.667s-266.667 119.467-266.667 266.667v256c0 123.307 100.267 224 224 224 17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paperclip"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":624,"id":503,"name":"paperclip","prevSize":32,"code":60135},"setIdx":2,"setId":2,"iconIdx":398},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M618.667 544h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M533.312 671.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l105.387-105.387-105.387-105.385c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l128 127.998c12.373 12.373 12.373 32.853 0 45.227l-128 128c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":625,"id":502,"name":"arrow-right-2","prevSize":32,"code":60136},"setIdx":2,"setId":2,"iconIdx":399},{"icon":{"paths":["M712.55 841.813h-401.066c-31.573 0-63.573-22.613-74.24-52.053l-176.64-494.508c-21.76-62.293-5.973-90.88 11.093-103.68s49.067-20.48 102.827 17.92l166.4 119.040c5.12 2.987 9.813 4.267 13.227 3.413 3.84-1.28 6.827-4.693 8.96-10.667l75.092-200.107c22.613-59.733 55.893-68.693 73.813-68.693s51.2 8.96 73.813 68.693l75.093 200.107c2.133 5.547 5.12 9.387 8.96 10.667s8.533 0 13.227-3.84l156.16-111.36c57.173-40.96 90.453-32.853 108.8-19.627 17.92 13.653 34.56 43.947 11.093 110.080l-172.373 482.561c-10.667 29.44-42.667 52.053-74.24 52.053zM114.365 247.892c0.853 5.973 2.56 14.507 6.827 25.6l176.64 494.508c1.707 4.267 9.387 9.813 13.653 9.813h401.066c4.693 0 12.373-5.547 13.653-9.813l172.373-482.134c5.973-16.213 7.68-27.307 8.107-33.707-6.4 2.133-16.213 6.827-30.293 17.067l-156.16 111.36c-21.333 14.933-46.507 19.627-69.12 12.8s-40.96-24.747-50.347-49.067l-75.093-200.107c-5.547-14.933-10.667-22.187-13.653-25.6-2.987 3.413-8.107 10.667-13.653 25.173l-75.092 200.107c-8.96 24.32-27.307 42.24-50.347 49.067-22.613 6.827-48.213 2.133-69.12-12.8l-166.4-119.040c-9.813-6.827-17.493-11.093-23.040-13.227z","M746.667 970.667h-469.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h469.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 629.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["crown-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":626,"id":501,"name":"crown-1","prevSize":32,"code":60137},"setIdx":2,"setId":2,"iconIdx":400},{"icon":{"paths":["M754.756 857.182c-24.32 0-48.213-6.4-70.4-19.2l-353.707-203.947c-43.947-25.6-70.4-71.253-70.4-122.027s26.453-96.427 70.4-122.027l353.707-203.948c43.947-25.6 96.427-25.6 140.8 0s70.4 70.827 70.4 122.027v408.321c0 50.773-26.453 96.427-70.4 122.027-22.187 12.373-46.080 18.773-70.4 18.773zM754.756 230.834c-13.227 0-26.453 3.413-38.4 10.24l-353.707 203.948c-23.893 14.080-38.4 38.827-38.4 66.56s14.506 52.48 38.4 66.56l353.707 203.947c23.893 14.080 52.907 14.080 76.8 0s38.4-38.827 38.4-66.56v-408.321c0-27.733-14.507-52.48-38.4-66.56-11.947-5.973-25.173-9.814-38.4-9.814z","M160.417 807.671c-17.493 0-32-14.507-32-32v-527.359c0-17.493 14.507-32 32-32s32 14.507 32 32v527.359c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["previous"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":627,"id":500,"name":"previous","prevSize":32,"code":60138},"setIdx":2,"setId":2,"iconIdx":401},{"icon":{"paths":["M684.8 878.511c-33.707 0-70.827-11.947-107.947-35.413l-124.587-78.080c-8.533-5.12-18.347-8.107-28.16-8.107h-61.44c-103.253 0-160-56.747-160-160v-170.666c0-103.253 56.747-160 160-160h61.013c9.813 0 19.627-2.987 28.16-8.107l124.587-78.080c62.293-38.827 122.88-46.080 170.667-19.627s73.813 81.493 73.813 155.307v391.253c0 73.387-26.453 128.853-73.813 155.307-18.773 11.093-40.107 16.213-62.293 16.213zM362.667 330.671c-67.413 0-96 28.587-96 96v170.667c0 67.413 28.587 96 96 96h61.013c22.187 0 43.52 5.973 62.293 17.92l124.587 78.080c41.387 25.6 79.787 32.427 105.813 17.92s40.96-50.773 40.96-98.987v-392.106c0-48.64-14.933-84.907-40.96-98.987-26.027-14.507-64.427-8.107-105.813 17.92l-124.587 78.080c-18.773 11.52-40.107 17.92-62.293 17.92h-61.013v-0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-mute"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":628,"id":499,"name":"volume-mute","prevSize":32,"code":60139},"setIdx":2,"setId":2,"iconIdx":402},{"icon":{"paths":["M512 522.671c-18.773 0-37.547-4.693-54.613-13.653l-277.76-149.76c-25.173-13.653-40.96-40.533-40.96-70.4s15.787-56.747 40.96-70.4l277.76-149.76c34.133-18.347 75.093-18.347 108.8 0l277.76 149.76c25.173 13.653 40.96 40.533 40.96 70.4s-15.787 56.747-40.96 70.4l-277.76 149.76c-16.64 9.387-35.413 13.653-54.187 13.653zM512 118.618c-8.107 0-16.64 2.133-24.32 6.4l-277.333 149.333c-7.253 3.84-7.68 11.947-7.68 14.507s0.427 10.667 7.68 14.080l277.76 149.76c15.36 8.107 32.853 8.107 48.213 0l277.76-149.76c6.827-3.84 7.68-11.947 7.68-14.080 0-2.56-0.427-10.667-7.68-14.080l-277.76-149.76c-7.68-4.267-16.213-6.4-24.32-6.4z","M417.28 969.387c-11.947 0-24.32-2.987-35.413-8.533l-258.56-128.853c-43.093-21.76-69.973-65.28-69.973-113.493v-244.053c0-27.733 14.080-52.906 37.547-67.413 23.893-14.507 52.48-15.787 77.227-3.413l258.56 128.853c43.093 21.76 69.973 64.853 69.973 113.493v244.053c0 27.733-14.080 52.907-37.547 67.413-12.8 8.107-27.307 11.947-41.813 11.947zM132.693 459.093c-3.413 0-6.4 1.28-8.107 2.133-2.56 1.707-7.253 5.547-7.253 13.227v244.053c0 23.893 13.227 45.653 34.56 56.32l258.133 129.28c6.827 3.413 12.373 0.853 14.933-0.427 2.56-1.707 7.253-5.547 7.253-13.227v-244.053c0-23.893-13.227-45.653-34.56-56.32l-258.133-129.28c-2.56-1.28-4.693-1.707-6.827-1.707z","M606.694 969.387c-14.507 0-29.013-3.84-41.813-11.947-23.467-14.507-37.547-39.68-37.547-67.413v-244.053c0-48.213 26.88-91.733 69.973-113.493l258.133-129.28c24.747-12.373 53.76-11.093 77.227 3.413s37.547 39.68 37.547 67.413v244.053c0 48.213-26.88 91.733-69.973 113.493l-258.133 129.28c-11.093 5.973-23.467 8.533-35.413 8.533zM891.281 459.093c-2.133 0-4.267 0.427-6.827 1.707l-258.133 129.28c-21.333 10.667-34.56 32-34.56 56.32v244.053c0 7.68 4.693 11.52 7.253 13.227s8.107 3.84 14.933 0.427l258.133-129.28c21.333-10.667 34.56-32.427 34.56-56.32v-244.053c0-7.68-4.693-11.52-7.253-13.227-1.707-0.853-4.693-2.133-8.107-2.133z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dcube"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":629,"id":498,"name":"dcube","prevSize":32,"code":60140},"setIdx":2,"setId":2,"iconIdx":403},{"icon":{"paths":["M426.667 970.667h-42.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.722 394.667h-852.055c-17.493 0-32-14.507-32-32s14.507-32 32-32h852.055c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512.055 693.333h-425.389c-17.493 0-32-14.507-32-32s14.507-32 32-32h425.389c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M363.084 970.24c-17.493 0-32-14.507-32-32v-852.052c0-17.493 14.507-32 32-32s32 14.507 32 32v852.052c0 17.493-14.080 32-32 32z","M661.751 543.573c-17.493 0-32-14.507-32-32v-425.386c0-17.493 14.507-32 32-32s32 14.507 32 32v425.386c0 17.493-14.080 32-32 32z","M870.383 765.867c-17.493 0-32-14.507-32-32v-34.133c0-47.787-10.667-70.4-70.4-70.4s-70.4 22.613-70.4 70.4v34.133c0 17.493-14.507 32-32 32s-32-14.507-32-32v-34.133c0-89.173 45.227-134.4 134.4-134.4s134.4 45.227 134.4 134.4v34.133c0 17.493-14.507 32-32 32z","M853.333 970.675h-170.667c-85.333 0-117.333-32-117.333-117.333v-34.133c0-85.333 32-117.333 117.333-117.333h170.667c85.333 0 117.333 32 117.333 117.333v34.133c0 85.333-32 117.333-117.333 117.333zM682.667 765.875c-50.773 0-53.333 2.56-53.333 53.333v34.133c0 50.347 2.987 53.333 53.333 53.333h170.667c50.347 0 53.333-2.987 53.333-53.333v-34.133c0-50.773-2.56-53.333-53.333-53.333h-170.667z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-lock"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":630,"id":497,"name":"grid-lock","prevSize":32,"code":60141},"setIdx":2,"setId":2,"iconIdx":404},{"icon":{"paths":["M512.009 965.538c-28.587 0-57.6-6.4-80.213-19.627l-234.665-135.253c-95.573-64.427-101.547-74.24-101.547-175.36v-246.613c0-101.12 5.547-110.933 99.413-174.507l236.372-136.533c44.8-26.027 115.2-26.027 160 0l235.52 135.68c95.573 64.427 101.547 74.24 101.547 175.36v246.187c0 101.12-5.547 110.933-99.413 174.507l-236.373 136.533c-23.040 13.227-52.053 19.627-80.64 19.627zM512.009 122.445c-17.92 0-35.413 3.413-47.787 10.667l-234.665 135.68c-69.547 46.933-69.547 46.933-69.547 119.893v246.187c0 72.96 0 72.96 71.253 121.173l232.959 134.4c25.173 14.507 70.827 14.507 96 0l234.667-135.68c69.12-46.933 69.12-46.933 69.12-119.893v-246.187c0-72.96 0-72.96-71.253-121.173l-232.96-134.4c-12.373-7.253-29.867-10.667-47.787-10.667z","M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":631,"id":496,"name":"setting","prevSize":32,"code":60142},"setIdx":2,"setId":2,"iconIdx":405},{"icon":{"paths":["M512 973.227c-29.44 0-57.173-14.933-76.8-40.96l-64-85.333c-1.28-1.707-6.4-3.84-8.533-4.267h-21.333c-177.92 0-288-48.213-288-288v-213.333c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v213.333c0 188.587-99.413 288-288 288h-21.333c-3.413 0-6.4 1.707-8.533 4.267l-64 85.333c-19.627 26.027-47.36 40.96-76.8 40.96zM341.333 117.333c-152.747 0-224 71.253-224 224v213.333c0 192.853 66.133 224 224 224h21.333c21.76 0 46.507 12.373 59.733 29.867l64 85.333c14.933 19.627 36.267 19.627 51.2 0l64-85.333c14.080-18.773 36.267-29.867 59.733-29.867h21.333c152.747 0 224-71.253 224-224v-213.333c0-152.747-71.253-224-224-224h-341.333z","M725.333 373.333h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M554.667 586.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-text"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":632,"id":495,"name":"message-text","prevSize":32,"code":60143},"setIdx":2,"setId":2,"iconIdx":406},{"icon":{"paths":["M733.884 970.662c-130.56 0-236.8-106.24-236.8-236.8s106.24-236.8 236.8-236.8c130.56 0 236.8 106.24 236.8 236.8s-106.24 236.8-236.8 236.8zM733.884 561.062c-95.147 0-172.8 77.653-172.8 172.8s77.653 172.8 172.8 172.8c95.147 0 172.8-77.653 172.8-172.8s-77.653-172.8-172.8-172.8z","M810.257 768.427h-153.173c-17.493 0-32-14.507-32-32s14.507-32 32-32h153.173c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M733.833 846.933c-17.493 0-32-14.507-32-32v-153.173c0-17.493 14.507-32 32-32s32 14.507 32 32v153.173c0 17.493-14.507 32-32 32z","M512 923.738c-13.227 0-26.453-1.707-37.12-5.547-109.227-37.12-421.547-218.027-421.547-547.412 0-149.333 120.747-270.508 269.227-270.508 71.253 0 139.52 28.588 189.44 78.508 49.92-49.92 118.613-78.508 189.44-78.508 148.48 0 269.227 121.174 269.227 270.508 0 83.199-20.053 162.986-59.733 237.652-4.693 8.96-13.653 15.36-23.893 16.64-10.667 1.28-20.48-2.133-27.733-9.813-33.28-34.987-78.080-54.613-125.867-54.613-95.147 0-172.8 77.653-172.8 172.8 0 42.24 15.787 83.2 44.373 115.2 6.827 7.68 9.387 17.92 7.253 27.733s-8.96 18.347-17.92 22.613c-17.067 7.68-32.427 14.080-46.507 18.773-9.813 4.267-22.613 5.973-35.84 5.973zM322.56 164.271c-113.067 0-205.227 92.588-205.227 206.508 0 291.839 280.32 453.119 378.453 486.826 7.68 2.987 24.32 2.56 32 0 1.28-0.427 2.56-0.853 3.84-1.28-22.187-36.693-34.56-78.933-34.56-122.453 0-130.56 106.24-236.8 236.8-236.8 50.347 0 98.133 15.787 138.24 44.373 23.040-54.613 34.56-111.787 34.56-170.666 0-113.92-92.16-206.508-205.227-206.508-64 0-125.44 30.722-163.84 82.349-11.947 16.213-39.253 16.213-51.2 0-38.4-51.627-99.84-82.349-163.84-82.349z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-add"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":633,"id":494,"name":"heart-add","prevSize":32,"code":60144},"setIdx":2,"setId":2,"iconIdx":407},{"icon":{"paths":["M614.387 646.404h-204.804c-17.493 0-32-14.507-32-32v-204.8c0-17.493 14.507-32 32-32h204.804c17.493 0 32 14.507 32 32v204.8c0 17.493-14.507 32-32 32zM441.583 582.404h140.804v-140.8h-140.804v140.8z","M332.8 799.996c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8h76.8c17.494 0 32.001 14.507 32.001 32v76.8c0 60.16-48.64 108.8-108.8 108.8zM332.8 646.396c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.8 44.8 44.8c24.747 0 44.8-20.053 44.8-44.8v-44.8h-44.8z","M409.599 441.6h-76.8c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8c60.16 0 108.8 48.64 108.8 108.8v76.801c0 17.493-14.507 32-32.001 32zM332.8 288c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.801 44.8 44.801h44.8v-44.801c0-24.747-20.053-44.8-44.8-44.8z","M691.217 441.6h-76.8c-17.493 0-32-14.507-32-32v-76.801c0-60.16 48.64-108.8 108.8-108.8s108.8 48.64 108.8 108.8c0 60.16-48.64 108.8-108.8 108.8zM646.417 377.6h44.8c24.747 0 44.8-20.054 44.8-44.801s-20.053-44.8-44.8-44.8c-24.747 0-44.8 20.053-44.8 44.8v44.801z","M691.217 799.996c-60.16 0-108.8-48.64-108.8-108.8v-76.8c0-17.493 14.507-32 32-32h76.8c60.16 0 108.8 48.64 108.8 108.8s-48.64 108.8-108.8 108.8zM646.417 646.396v44.8c0 24.747 20.053 44.8 44.8 44.8s44.8-20.053 44.8-44.8c0-24.747-20.053-44.8-44.8-44.8h-44.8z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["command-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":634,"id":493,"name":"command-square","prevSize":32,"code":60145},"setIdx":2,"setId":2,"iconIdx":408},{"icon":{"paths":["M384 970.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.667 586.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z","M825.173 970.679c-0.427 0-0.853 0-0.853 0h-237.227c-71.253-5.12-107.093-59.733-107.093-111.787 0-41.813 23.467-85.76 68.693-103.68-9.387-53.333 4.267-102.827 39.68-139.947 43.52-45.653 113.493-64 174.080-45.227 52.907 16.213 90.88 58.027 106.667 116.053 44.8 13.653 80.213 49.067 94.72 97.28 17.067 55.893 1.28 113.067-40.96 149.76-26.027 23.893-61.013 37.547-97.707 37.547zM588.373 811.106c-32.427 2.987-44.373 27.307-44.373 47.787s11.947 45.227 45.227 47.787h235.093c21.76-1.28 40.96-7.68 56.32-21.333 27.733-24.32 29.867-58.88 22.187-83.627s-28.587-52.48-64.427-57.173c-14.080-1.707-25.173-12.373-27.733-26.453-9.387-57.6-41.813-78.933-66.987-86.613-37.12-11.52-81.92 0-108.8 28.587-18.347 19.2-36.267 53.76-16.213 108.8 5.973 16.64-2.56 34.987-19.2 40.96-3.84 0.853-7.68 1.28-11.093 1.28z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-cloud"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":635,"id":492,"name":"document-cloud","prevSize":32,"code":60146},"setIdx":2,"setId":2,"iconIdx":409},{"icon":{"paths":["M533.342 629.333h-106.667c-17.492 0-31.998-14.507-31.998-32s14.507-32 31.998-32h106.667c111.787 0 202.667-90.88 202.667-202.667s-90.88-202.667-202.667-202.667h-213.332c-111.787 0-202.667 90.88-202.667 202.667 0 46.933 16.64 92.587 46.506 128.853 11.093 13.653 9.387 33.707-4.267 45.227-13.653 11.093-33.706 9.387-45.226-4.267-39.68-47.787-61.44-107.947-61.44-169.813 0-147.2 119.467-266.667 266.667-266.667h213.332c147.2 0 266.667 119.467 266.667 266.667s-119.040 266.667-266.24 266.667z","M704 928h-213.333c-147.2 0-266.667-119.467-266.667-266.667s119.467-266.667 266.667-266.667h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-106.667c-111.787 0-202.667 90.88-202.667 202.667s90.88 202.667 202.667 202.667h213.333c111.787 0 202.667-90.88 202.667-202.667 0-46.933-16.64-92.587-46.507-128.853-11.093-13.653-9.387-33.707 4.267-45.227s33.707-9.387 45.227 4.267c39.68 47.787 61.44 107.947 61.44 169.813-0.427 147.2-119.893 266.667-267.093 266.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":636,"id":491,"name":"link-1","prevSize":32,"code":60147},"setIdx":2,"setId":2,"iconIdx":410},{"icon":{"paths":["M512 416c-4.267 0-8.107-0.853-12.373-2.56-11.947-4.693-19.627-16.64-19.627-29.44v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v221.44l30.72-30.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 5.973-14.080 9.387-22.613 9.387z","M511.979 415.997c-8.107 0-16.213-2.987-22.613-9.387l-85.335-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.855-12.373 45.229 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M587.115 757.333h-150.613c-44.801 0-84.908-24.747-104.961-64.853l-49.92-99.84c-1.707-3.84-5.547-5.973-9.387-5.973h-187.733c-17.493 0-32-14.507-32-32s14.507-32 32-32h188.16c28.587 0 54.187 15.787 66.987 41.387l49.92 99.84c8.96 18.347 27.307 29.44 47.788 29.44h150.613c20.48 0 38.827-11.093 47.787-29.44l49.92-99.84c12.8-25.6 38.4-41.387 66.987-41.387h186.027c17.493 0 32 14.507 32 32s-14.507 32-32 32h-186.027c-4.267 0-7.68 2.133-9.387 5.973l-49.92 99.84c-21.333 40.107-61.44 64.853-106.24 64.853z","M640 970.662h-256c-231.68 0-330.667-98.987-330.667-330.667v-170.667c0-200.105 74.24-300.372 240.64-324.692 17.92-2.56 33.707 9.387 36.267 26.88s-9.387 33.707-26.88 36.267c-133.973 19.627-186.027 93.013-186.027 261.545v170.667c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-170.667c0-168.532-52.053-241.919-186.027-261.545-17.493-2.56-29.44-18.773-26.88-36.267s18.773-29.44 36.267-26.88c166.4 24.32 240.64 124.587 240.64 324.692v170.667c0 231.68-98.987 330.667-330.667 330.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-inbox"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":637,"id":490,"name":"direct-inbox","prevSize":32,"code":60148},"setIdx":2,"setId":2,"iconIdx":411},{"icon":{"paths":["M450.551 968.947c-46.081 0-92.588-13.227-128.428-40.107l-182.613-136.533c-48.213-35.84-85.76-111.36-85.76-171.947v-316.159c0-65.28 47.787-134.827 109.227-157.867l212.48-79.786c42.24-15.787 108.375-15.787 150.615 0l212.053 79.786c49.92 18.773 92.16 68.694 105.813 124.16 2.133 9.387 0 19.627-5.973 27.307s-15.36 12.372-25.173 12.372l-337.493 0.427c-54.188 3.413-67.415 12.374-67.415 91.307v231.678c0 81.493 10.667 91.733 93.441 91.733h252.587c13.227 0 25.173 8.107 29.867 20.48s1.28 26.453-8.533 35.413c-4.693 3.84-8.533 7.68-13.227 11.093l-182.613 136.96c-36.693 26.453-82.773 39.68-128.853 39.68zM450.551 119.029c-19.2 0-38.828 2.56-52.908 8.107l-212.48 79.787c-35.84 13.653-67.84 59.306-67.84 98.132v316.159c0 40.107 28.16 96.427 60.16 120.32l182.613 136.533c49.067 36.267 131.415 36.267 180.481 0l118.187-88.32h-157.867c-117.761 0-157.441-39.253-157.441-155.733v-231.679c0-90.88 21.76-148.479 129.708-155.306l27.733-0.427h262.4c-12.8-18.347-29.867-32.853-47.787-39.68l-212.053-79.787c-14.507-5.547-33.707-8.107-52.907-8.107z","M938.701 510.707h-563.201c-17.493 0-32-14.507-32-32s14.507-32 32-32h563.201c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M813.261 789.333h-312.32c-117.761 0-157.441-39.253-157.441-155.733v-231.678c0-90.88 21.76-148.48 129.708-155.307l27.733-0.427h312.32c117.76 0 157.44 39.254 157.44 155.734v236.798c-0.853 112.64-40.533 150.613-157.44 150.613zM500.941 310.188l-26.027 0.427c-54.188 3.413-67.414 12.374-67.414 91.307v231.678c0 81.493 10.667 91.733 93.441 91.733h312.32c81.493 0 92.587-10.667 93.44-86.613v-236.372c0-81.493-10.667-91.733-93.44-91.733h-312.32v-0.427z","M539.755 683.085h-57.173c-17.493 0-32-14.507-32-32s14.507-32 32-32h57.173c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M768.853 683.085h-139.52c-17.493 0-32-14.507-32-32s14.507-32 32-32h139.52c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-card"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":638,"id":489,"name":"security-card","prevSize":32,"code":60149},"setIdx":2,"setId":2,"iconIdx":412},{"icon":{"paths":["M710.379 885.333c-0.427 0-1.28 0-1.707 0-17.493 0-32-14.507-31.573-32.427 0-17.493 14.933-33.28 32.427-31.573 49.493 0 96.427-17.92 132.693-51.2 66.133-58.027 70.827-140.8 52.907-199.253s-67.84-124.587-154.027-135.68c-14.080-1.707-25.173-12.373-27.733-26.453-16.64-101.973-72.107-172.373-154.88-197.973-86.187-26.453-185.6-0.427-247.894 64.853-60.587 63.574-74.667 151.893-39.68 249.6 5.973 16.64-2.56 34.987-19.2 40.96s-34.987-2.56-40.96-19.2c-43.093-119.893-23.467-234.666 53.76-315.306 78.933-82.347 204.374-115.2 313.174-81.493 99.413 30.72 169.813 112.64 194.987 226.133 87.040 19.627 156.587 85.333 184.32 176.213 30.293 98.987 2.987 200.533-71.253 265.387-49.067 43.52-110.933 67.413-175.36 67.413z","M237.657 885.338c-0.853 0-1.707 0-2.133 0-122.88-8.533-178.773-104.96-178.773-190.72s55.893-181.76 178.773-190.72c32.427 0.427 62.72 6.827 90.027 20.48 15.787 8.107 21.76 27.307 14.080 43.093-8.107 15.787-27.307 21.76-43.093 14.080-17.92-9.387-38.4-13.653-58.027-13.653-80.64 5.973-117.333 67.84-117.333 126.72s36.693 120.747 119.040 126.72c17.493 1.28 30.72 16.64 29.867 34.133-1.707 17.067-15.787 29.867-32.427 29.867z","M675.012 453.973c-11.947 0-23.040-6.4-28.587-17.92-8.107-15.788-1.707-34.988 14.507-43.095 26.027-13.227 55.467-20.48 84.48-20.907h0.427c17.493 0 31.573 14.080 32 31.573s-13.653 32.428-31.573 32.428c-19.627 0.427-39.253 5.12-57.173 14.080-4.693 2.987-9.387 3.84-14.080 3.84z","M452.723 965.116c-5.547 0-11.52-0.853-17.067-2.987-18.772-7.253-31.145-24.747-31.145-44.8v-67.413h-10.667c-32 0-43.52-18.773-47.36-26.453-3.413-8.533-9.387-29.867 11.52-53.333l104.532-119.040c13.227-14.933 34.133-20.48 52.907-13.227s31.147 24.747 31.147 44.8v67.413h10.667c31.573 0 43.52 18.773 47.36 26.453s9.813 29.013-11.093 52.907l-104.533 119.040c-9.813 10.667-23.040 16.64-36.267 16.64zM429.257 785.489h7.253c17.493 0 32 14.507 32 32v56.747l52.907-60.16h-7.253c-17.493 0-32-14.507-32-32v-56.747l-52.907 60.16z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-lightning"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":639,"id":488,"name":"cloud-lightning","prevSize":32,"code":60150},"setIdx":2,"setId":2,"iconIdx":413},{"icon":{"paths":["M85.333 416c-17.493 0-32-14.507-32-32v-106.667c0-123.733 100.693-224 224-224h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-106.667c-88.32 0-160 71.68-160 160v106.667c0 17.493-14.507 32-32 32z","M938.667 416c-17.493 0-32-14.507-32-32v-106.667c0-88.32-71.68-160-160-160h-106.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h106.667c123.307 0 224 100.267 224 224v106.667c0 17.493-14.507 32-32 32z","M746.667 970.667h-64c-17.493 0-32-14.507-32-32s14.507-32 32-32h64c88.32 0 160-71.68 160-160v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 123.733-100.693 224-224 224z","M384 970.667h-106.667c-123.307 0-224-100.267-224-224v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 88.32 71.68 160 160 160h106.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 778.667h-170.667c-103.253 0-160-56.747-160-160v-213.333c0-103.253 56.747-160 160-160h170.667c103.253 0 160 56.747 160 160v213.333c0 103.253-56.747 160-160 160zM426.667 309.333c-67.413 0-96 28.587-96 96v213.333c0 67.413 28.587 96 96 96h170.667c67.413 0 96-28.587 96-96v-213.333c0-67.413-28.587-96-96-96h-170.667z","M810.667 544h-597.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h597.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scan"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":640,"id":487,"name":"scan","prevSize":32,"code":60151},"setIdx":2,"setId":2,"iconIdx":414},{"icon":{"paths":["M508.582 970.667c-252.586 0-458.666-205.653-458.666-458.667s206.080-458.667 458.666-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM508.582 117.333c-217.599 0-394.666 177.067-394.666 394.667s177.067 394.667 394.666 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M679.249 544h-341.332c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.332c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-cirlce"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":641,"id":486,"name":"minus-cirlce","prevSize":32,"code":60152},"setIdx":2,"setId":2,"iconIdx":415},{"icon":{"paths":["M776.96 658.773h-529.92c-43.947 0-82.773-17.92-106.667-49.067s-30.72-73.387-19.2-115.627l93.867-344.747c14.507-53.76 69.973-96 125.867-96h341.76c55.893 0 110.933 42.24 125.867 96l93.867 344.747c11.52 42.24 4.693 84.48-19.2 115.627s-62.293 49.067-106.24 49.067zM340.907 117.333c-26.88 0-57.173 23.040-64 49.067l-93.867 344.747c-6.4 23.040-3.413 44.373 8.533 60.16s31.573 23.893 55.467 23.893h529.92c23.893 0 43.947-8.533 55.467-23.893s14.933-36.693 8.533-60.16l-93.867-344.747c-7.253-26.027-37.12-49.067-64-49.067h-342.186z","M512 970.667c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M682.667 970.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lamp"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":642,"id":485,"name":"lamp","prevSize":32,"code":60153},"setIdx":2,"setId":2,"iconIdx":416},{"icon":{"paths":["M490.667 928c-241.067 0-437.333-196.267-437.333-437.333s196.267-437.333 437.333-437.333c17.493 0 32 14.507 32 32s-14.507 32-32 32c-206.080 0-373.333 167.68-373.333 373.333s167.253 373.333 373.333 373.333c206.080 0 373.333-167.68 373.333-373.333 0-17.493 14.507-32 32-32s32 14.507 32 32c0 241.067-196.267 437.333-437.333 437.333z","M938.684 970.662c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M746.662 407.037c-39.253 0-130.56-47.787-158.72-135.68-19.2-60.16 2.987-139.093 72.533-161.707 29.867-9.813 61.013-5.12 85.76 10.667 24.32-15.787 56.32-20.053 86.187-10.667 69.547 22.613 92.16 101.547 72.533 161.707-27.733 89.6-123.733 135.68-158.293 135.68zM648.956 252.157c19.627 61.867 86.187 90.027 98.133 91.307 13.653-1.28 78.933-32.853 96.853-90.88 9.813-31.147 0-71.253-31.147-81.493-13.227-4.267-31.147-1.707-39.68 10.667-5.973 8.96-15.36 14.080-26.027 14.507-9.387 0.427-20.48-4.693-26.453-13.227-9.813-14.080-27.733-16.213-40.533-12.373-30.72 10.24-40.96 50.347-31.147 81.493z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-favorite-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":643,"id":484,"name":"search-favorite-1","prevSize":32,"code":60154},"setIdx":2,"setId":2,"iconIdx":417},{"icon":{"paths":["M682.667 970.667h-341.333c-146.773 0-245.333-98.56-245.333-245.333v-426.667c0-146.773 98.56-245.333 245.333-245.333h210.347c65.707 0 127.147 25.6 173.653 71.68l130.987 130.987c46.507 46.080 71.68 107.947 71.68 173.653v295.68c0 146.773-98.56 245.333-245.333 245.333zM341.333 117.333c-110.080 0-181.333 71.253-181.333 181.333v426.667c0 110.080 71.253 181.333 181.333 181.333h341.333c110.080 0 181.333-71.253 181.333-181.333v-295.68c0-48.64-18.773-93.866-53.333-128l-130.987-130.987c-34.133-34.133-79.787-52.906-128.427-52.906h-209.92v-0.427z","M405.31 800c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.858 0-45.231l85.333-85.333c12.373-12.373 32.853-12.373 45.229 0 12.373 12.373 12.373 32.858 0 45.231l-62.722 62.72 62.722 62.716c12.373 12.373 12.373 32.858 0 45.231-6.402 6.4-14.509 9.387-22.615 9.387z","M618.645 800c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l62.72-62.716-62.72-62.72c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.858 0 45.231l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simcard-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":644,"id":483,"name":"simcard-1","prevSize":32,"code":60155},"setIdx":2,"setId":2,"iconIdx":418},{"icon":{"paths":["M426.264 970.662c-8.533 0-15.36-1.707-20.48-3.84-17.067-6.4-46.080-27.307-46.080-93.44v-275.2h-99.84c-57.173 0-77.653-26.88-84.907-42.667-7.253-16.213-13.653-49.067 23.893-92.16l322.988-366.934c43.52-49.493 78.933-46.080 96-39.68s46.080 27.307 46.080 93.44v275.2h99.84c57.173 0 77.653 26.881 84.907 42.668 7.253 16.213 13.653 49.067-23.893 92.16l-322.987 366.933c-30.293 34.56-56.747 43.52-75.521 43.52zM594.372 116.902c-1.28 1.707-10.24 5.973-24.32 22.187l-322.988 366.934c-11.947 13.653-13.653 22.187-13.653 23.893 0.853 0.427 8.533 4.693 26.453 4.693h131.84c17.493 0 32 14.507 32 32v307.2c0 21.333 3.841 30.72 5.548 33.28 1.28-1.707 10.24-5.973 24.32-22.187l322.987-366.933c11.947-13.653 13.653-22.187 13.653-23.893-0.853-0.427-8.533-4.693-26.453-4.693h-131.84c-17.493 0-32-14.507-32-32v-307.201c0.427-21.333-3.84-30.293-5.547-33.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flash-1"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":645,"id":482,"name":"flash-1","prevSize":32,"code":59741},"setIdx":2,"setId":2,"iconIdx":419},{"icon":{"paths":["M809.417 970.667h-597.333c-160 0-160-88.747-160-160v-42.667c0-40.96 33.707-74.667 74.667-74.667h768c40.96 0 74.667 33.707 74.667 74.667v42.667c0 71.253 0 160-160 160zM126.75 757.333c-5.973 0-10.667 4.693-10.667 10.667v42.667c0 69.973 0 96 96 96h597.333c96 0 96-26.027 96-96v-42.667c0-5.973-4.693-10.667-10.667-10.667h-768z","M884.032 757.333h-744.532c-17.493 0-32-14.507-32-32v-170.667c0-174.933 124.16-328.533 294.827-364.8 25.172-5.547 51.625-8.533 78.505-8.533h61.867c27.307 0 53.76 2.987 78.933 8.533 170.667 36.693 294.4 190.293 294.4 364.8v170.667c0 17.493-14.080 32-32 32zM171.5 693.333h680.532v-138.667c0-144.64-102.4-271.787-244.053-302.507-20.907-4.693-42.667-6.827-65.28-6.827h-61.867c-22.187 0-43.947 2.133-64.852 6.827-141.653 30.293-244.48 157.44-244.48 302.507v138.667z","M409.173 253.013c-14.080 0-26.88-9.387-30.72-23.467-3.413-12.373-5.12-24.747-5.12-37.547 0-76.373 62.293-138.667 138.667-138.667s138.667 62.293 138.667 138.667c0 12.8-1.707 25.173-5.12 37.547-4.267 16.213-20.48 26.453-37.547 22.613-20.907-4.693-42.667-6.827-65.28-6.827h-61.867c-22.187 0-43.947 2.133-64.853 6.827-2.133 0.427-4.267 0.853-6.827 0.853zM480.853 181.333h61.867c14.507 0 29.44 0.853 43.52 2.56-3.84-37.547-35.84-66.56-74.24-66.56s-69.973 29.013-74.24 66.56c14.507-1.707 28.587-2.56 43.093-2.56z","M640 501.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["reserve"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":646,"id":481,"name":"reserve","prevSize":32,"code":60156},"setIdx":2,"setId":2,"iconIdx":420},{"icon":{"paths":["M554.667 629.333h-469.333c-17.493 0-32-14.507-32-32v-272.213c0-13.654 8.533-25.601 20.906-30.295 12.8-4.693 26.881-0.852 35.414 9.388 26.027 31.147 66.56 48.64 106.667 47.36 34.133-0.853 65.705-13.652 89.599-36.266 11.093-9.387 20.054-20.48 26.88-32.854 13.227-22.613 19.627-47.361 19.2-72.534-0.853-39.253-17.919-75.093-46.932-101.12-10.24-8.96-13.654-23.041-8.961-35.414s16.64-20.906 29.867-20.906h314.026c17.493 0 32 14.507 32 32v426.668c0 65.707-52.48 118.187-117.333 118.187zM117.333 565.333h437.333c29.44 0 53.333-23.893 53.333-53.333v-394.667h-215.893c14.933 27.733 23.040 58.88 23.893 91.307 0.853 37.12-8.534 73.813-27.307 105.813-10.24 18.346-24.32 35.84-39.68 48.64-34.133 32.427-81.067 51.626-130.987 52.906-35.84 1.28-70.399-7.68-100.266-23.893v173.227h-0.427z","M810.667 885.333h-42.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-170.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-42.667c-88.32 0-160-71.68-160-160v-128c0-17.493 14.507-32 32-32h469.333c29.44 0 53.333-23.893 53.333-53.333v-298.667c0-17.493 14.507-32 32-32h78.507c42.24 0 81.067 22.614 101.973 59.307l72.96 127.573c5.547 9.813 5.547 22.187 0 32s-16.213 15.787-27.733 15.787h-55.040c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h128c17.493 0 32 14.507 32 32v128c0 88.32-71.68 160-160 160zM795.733 821.333h14.933c52.907 0 96-43.093 96-96v-96h-96c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.28-74.667 74.667-74.667l-45.653-79.787c-9.387-16.64-27.307-26.88-46.507-26.88h-46.507v266.667c0 64.853-52.48 117.333-117.333 117.333h-437.333v96c0 52.907 43.093 96 96 96h14.932c14.080-49.067 59.308-85.333 113.068-85.333s98.987 36.267 113.067 85.333h115.627c14.080-49.067 59.307-85.333 113.067-85.333s98.56 36.267 112.64 85.333z","M341.333 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM341.333 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M682.667 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM682.667 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M938.667 629.333h-128c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.707-74.667 74.667-74.667h55.040c11.52 0 22.187 5.973 27.733 16.213l72.96 128c2.56 4.693 4.267 10.24 4.267 15.787v85.333c0 17.493-14.507 32-32 32zM810.667 416c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h96v-44.8l-59.733-104.533h-36.267z","M212.89 416c-58.88 0-114.347-25.601-151.893-70.401-5.973-6.4-12.372-15.36-17.919-23.893-20.054-30.293-31.147-66.133-32-103.68-1.707-62.293 24.747-120.747 72.534-160.427 36.267-29.867 79.785-46.079 125.865-46.932 50.347 0.427 100.695 17.067 138.242 50.773 42.667 37.547 67.413 90.027 68.692 147.2 0.854 37.12-8.534 73.813-27.307 105.813-10.24 18.346-24.32 35.84-39.68 48.64-34.133 32.427-81.067 51.626-130.987 52.906-2.133 0-3.84 0-5.547 0zM212.89 74.667c-0.853 0-1.707 0-2.56 0-31.147 0.427-61.014 11.947-86.188 32.427-32.427 26.88-50.345 66.987-49.492 109.227 0.853 25.6 8.107 49.92 21.76 69.974 3.84 5.973 7.679 11.518 12.372 16.638 27.307 32.427 67.841 49.494 107.521 48.64 34.133-0.853 65.706-13.652 89.599-36.266 11.093-9.387 20.053-20.48 26.88-32.854 13.227-22.613 19.628-47.361 19.201-72.534-0.853-39.253-17.919-75.093-46.932-101.12-25.6-21.76-58.028-34.133-92.161-34.133z","M189.82 287.997c-8.107 0-15.788-2.988-22.188-8.961l-43.094-40.958c-12.8-12.373-13.225-32.426-0.852-45.226s32.427-13.228 45.227-0.854l20.906 20.052 66.987-64.852c12.8-12.373 32.853-11.948 45.227 0.852s11.946 32.856-0.854 45.229l-89.175 86.185c-6.4 5.547-14.505 8.534-22.185 8.534z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["truck-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":647,"id":480,"name":"truck-tick","prevSize":32,"code":60157},"setIdx":2,"setId":2,"iconIdx":421},{"icon":{"paths":["M650.24 394.667h-564.907c-17.493 0-32-14.507-32-32s14.507-32 32-32h564.907c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M311.040 736h-55.040c-17.493 0-32-14.507-32-32s14.507-32 32-32h55.040c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M618.667 736h-149.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h149.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.248 906.671h-408.748c-17.493 0-32-14.507-32-32s14.507-32 32-32h408.748c133.973 0 157.44-23.040 157.44-155.307v-393.385c0-17.493 14.507-32 32-32s32 14.507 32 32v392.958c0 168.533-51.627 219.733-221.44 219.733z","M158.293 891.307c-3.84 0-8.107-0.853-11.947-2.133-77.227-30.72-93.013-102.827-93.013-201.813v-350.72c0-168.107 51.627-219.307 221.44-219.307h474.027c48.64 0 84.48 3.84 112.64 12.373 17.067 5.12 26.453 22.613 21.76 39.68-5.12 17.067-23.040 26.453-39.68 21.76-22.187-6.4-52.053-9.387-94.72-9.387h-474.027c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 101.973 18.347 128.853 52.907 142.507 16.64 6.4 24.32 25.173 17.92 41.387-5.12 12.373-17.067 20.053-29.867 20.053z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":648,"id":479,"name":"card-slash","prevSize":32,"code":60158},"setIdx":2,"setId":2,"iconIdx":422},{"icon":{"paths":["M512 842.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M512 1013.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 842.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M768 928h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 928h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M661.333 714.667h-298.667c-137.387 0-181.333-43.947-181.333-181.333v-298.667c0-137.387 43.947-181.333 181.333-181.333h44.8c56.747 0 75.094 19.2 97.28 48.64l44.8 59.735c8.533 11.093 8.533 11.094 22.187 11.094h89.6c137.387 0 181.333 43.947 181.333 181.333v179.198c0 137.387-43.947 181.333-181.333 181.333zM362.667 117.333c-101.973 0-117.333 15.36-117.333 117.333v298.667c0 101.973 15.36 117.333 117.333 117.333h298.667c101.973 0 117.333-15.36 117.333-117.333v-179.198c0-101.973-15.36-117.333-117.333-117.333h-89.6c-42.24 0-57.6-15.791-72.96-36.271l-45.227-60.156c-14.933-20.053-17.067-23.042-46.080-23.042h-44.8z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-connection"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":649,"id":478,"name":"folder-connection","prevSize":32,"code":60159},"setIdx":2,"setId":2,"iconIdx":423},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M362.667 618.662c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-9.813-5.12-14.080-8.96-7.68-8.107-12.374-19.2-12.374-30.293s4.694-22.187 12.374-30.293c4.267-3.84 8.96-6.827 14.080-8.96 10.24-4.267 22.187-4.267 32.427 0 5.12 2.133 9.813 5.12 14.080 8.96 1.707 2.133 3.84 4.267 5.12 6.4 1.707 2.56 2.988 5.12 3.841 7.68 1.28 2.56 2.133 5.12 2.56 7.68 0.427 2.987 0.853 5.973 0.853 8.533 0 11.093-4.694 22.187-12.374 30.293-4.267 3.84-8.96 6.827-14.080 8.96s-10.667 3.413-16.213 3.413z","M512 618.662c-5.547 0-11.093-1.276-16.213-3.409-5.547-2.133-9.813-5.124-14.080-8.964-7.68-8.107-12.373-19.2-12.373-30.293 0-2.56 0.427-5.547 0.853-8.533 0.427-2.56 1.28-5.12 2.56-7.68 0.853-2.56 2.133-5.12 3.84-7.68 1.707-2.133 3.413-4.262 5.12-6.396 15.787-15.787 44.373-15.787 60.587 0 1.707 2.133 3.413 4.262 5.12 6.396 1.707 2.56 2.987 5.12 3.84 7.68 1.28 2.56 2.133 5.12 2.56 7.68 0.427 2.987 0.853 5.973 0.853 8.533 0 11.093-4.693 22.187-12.373 30.293-8.107 7.68-18.773 12.373-30.293 12.373z","M362.667 767.996c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-14.080-8.96c-7.68-8.107-12.374-19.2-12.374-30.293 0-2.56 0.426-5.547 0.853-8.107 0.427-2.987 1.28-5.547 2.56-8.107 0.853-2.56 2.134-5.12 3.841-7.68 1.28-2.133 3.413-4.267 5.12-6.4 4.267-3.84 8.96-6.827 14.080-8.96 10.24-4.267 22.187-4.267 32.427 0 5.12 2.133 9.813 5.12 14.080 8.96 1.707 2.133 3.84 4.267 5.12 6.4 1.707 2.56 2.988 5.12 3.841 7.68 1.28 2.56 2.133 5.12 2.56 8.107 0.427 2.56 0.853 5.547 0.853 8.107 0 11.093-4.694 22.187-12.374 30.293-4.267 3.84-8.96 6.827-14.080 8.96s-10.667 3.413-16.213 3.413z","M874.667 419.833h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M674.97 971.951c-16.213 0-31.573-5.973-42.667-17.067-13.227-13.227-19.2-32.427-16.213-52.48l8.107-57.6c2.133-14.933 11.093-32.853 21.76-43.52l151.040-151.040c20.48-20.48 40.533-31.147 62.293-33.28 26.88-2.56 52.907 8.533 77.653 33.28 26.027 26.027 61.013 78.933 0 139.947l-151.040 151.040c-10.667 10.667-28.587 19.627-43.52 21.76l-57.604 8.107c-3.413 0.427-6.396 0.853-9.809 0.853zM866.543 680.538c-0.427 0-0.853 0-1.28 0-5.973 0.427-14.080 5.973-23.040 14.933l-151.040 151.040c-1.28 1.28-3.413 5.547-3.413 7.253l-7.68 53.333 53.333-7.68c1.707-0.427 5.969-2.56 7.249-3.84l151.044-151.040c18.773-18.773 21.333-28.16 0-49.493-6.827-6.4-16.64-14.507-25.173-14.507z","M892.612 821.329c-2.987 0-5.973-0.427-8.533-1.28-56.32-15.787-101.12-60.587-116.907-116.907-4.693-17.067 5.12-34.56 22.187-39.68 17.067-4.693 34.56 5.12 39.68 22.187 9.813 34.987 37.547 62.72 72.533 72.533 17.067 4.693 26.88 22.613 22.187 39.68-4.267 14.080-17.067 23.467-31.147 23.467z","M512 970.667h-170.667c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v149.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-149.333c0-122.027-59.307-181.333-181.333-181.333h-341.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":650,"id":477,"name":"calendar-edit","prevSize":32,"code":60160},"setIdx":2,"setId":2,"iconIdx":424},{"icon":{"paths":["M640 970.667h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v41.813c0 17.493-14.507 32-32 32s-32-14.507-32-32v-41.813c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667z","M554.645 501.342c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l159.573-160h-94.293c-17.493 0-32-14.507-32-32s14.080-32 32-32h171.093c12.8 0 24.747 7.68 29.44 19.627 5.12 11.947 2.133 25.6-6.827 34.987l-213.76 214.612c-6.4 6.4-14.507 9.387-22.613 9.387z","M768.418 458.249c-17.493 0-32-14.507-32-32v-171.52c0-17.493 14.507-32 32-32s32 14.507 32 32v171.093c0 17.92-14.507 32.426-32 32.426z","M334.933 970.667h-115.2c-113.493 0-166.4-52.907-166.4-166.4v-115.2c0-113.493 52.907-166.4 166.4-166.4h115.2c113.493 0 166.4 52.907 166.4 166.4v115.2c0 113.493-52.907 166.4-166.4 166.4zM219.733 586.667c-78.507 0-102.4 23.893-102.4 102.4v115.2c0 78.507 23.893 102.4 102.4 102.4h115.2c78.507 0 102.4-23.893 102.4-102.4v-115.2c0-78.507-23.893-102.4-102.4-102.4h-115.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":651,"id":476,"name":"maximize-2","prevSize":32,"code":60161},"setIdx":2,"setId":2,"iconIdx":425},{"icon":{"paths":["M783.394 970.662h-544.852c-64.853 0-124.16-32.853-158.293-88.32s-37.12-122.88-8.107-181.333l73.387-147.2c23.893-47.787 62.293-77.653 105.387-82.347s87.040 16.64 120.32 58.027l9.387 11.947c18.773 23.040 40.533 35.413 61.865 33.28 21.333-1.707 40.96-17.067 55.467-43.093l80.64-145.492c33.28-60.16 77.653-91.307 125.867-89.173 47.787 2.56 88.747 38.4 116.053 101.547l133.547 311.892c24.747 57.6 18.773 123.307-15.787 175.787-34.133 53.333-92.16 84.48-154.88 84.48zM262.863 535.462c-1.707 0-3.413 0-5.12 0.427-21.333 2.133-40.96 19.2-55.040 46.933l-73.387 147.2c-19.2 37.973-17.067 82.773 5.12 119.040s61.44 58.027 104.107 58.027h544.425c41.813 0 78.933-20.053 101.973-55.040s26.88-76.8 10.24-115.2l-133.547-311.892c-16.213-38.4-38.827-61.867-60.587-62.72-20.053-1.28-46.080 20.053-66.56 56.32l-80.64 145.492c-24.747 44.373-63.573 72.107-105.813 75.947-42.238 3.413-85.332-17.067-117.332-57.173l-9.387-11.947c-17.92-23.467-38.4-35.413-58.453-35.413z","M297.417 373.333c-87.893 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM297.417 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["image"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":652,"id":475,"name":"image","prevSize":32,"code":60162},"setIdx":2,"setId":2,"iconIdx":426},{"icon":{"paths":["M806.4 853.333h-503.467c-81.92 0-121.6-41.813-121.6-127.147v-44.373c0-85.333 39.68-127.147 121.6-127.147h503.467c17.493 0 32 14.507 32 32s-14.507 32-32 32h-503.467c-43.093 0-57.6 8.96-57.6 63.147v44.373c0 54.187 14.507 63.147 57.6 63.147h503.467c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M806.4 490.667h-290.133c-81.92 0-121.6-41.813-121.6-127.147v-44.373c0-85.76 39.68-127.147 121.6-127.147h290.133c17.493 0 32 14.507 32 32s-14.507 32-32 32h-290.133c-43.093 0-57.6 8.96-57.6 63.147v44.373c0 54.187 14.507 63.147 57.6 63.147h290.133c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.667 970.249c-17.493 0-32-14.507-32-32v-853.332c0-17.493 14.507-32 32-32s32 14.507 32 32v853.332c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-right"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":653,"id":474,"name":"align-right","prevSize":32,"code":60163},"setIdx":2,"setId":2,"iconIdx":427},{"icon":{"paths":["M910.076 337.911c-17.493 0-32-14.507-32-32v-77.653c0-31.147-25.173-56.32-56.32-56.32h-619.519c-31.147 0-56.32 25.173-56.32 56.32v78.080c0 17.493-14.507 32-32 32s-32-14.506-32-32.426v-77.653c0-66.56 54.187-120.32 120.32-120.32h619.519c66.56 0 120.32 54.187 120.32 120.32v78.080c0 17.493-14.080 31.574-32 31.574z","M512 916.049c-17.493 0-32-14.507-32-32v-708.695c0-17.493 14.507-32 32-32s32 14.507 32 32v708.695c0 17.92-14.507 32-32 32z","M680.128 916.062h-336.211c-17.493 0-32-14.507-32-32s14.507-32 32-32h336.211c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":654,"id":473,"name":"text","prevSize":32,"code":60164},"setIdx":2,"setId":2,"iconIdx":428},{"icon":{"paths":["M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M768 373.333c-4.267 0-8.107-0.853-12.373-2.56-11.947-4.693-19.627-16.64-19.627-29.44v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v178.773l30.72-30.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 5.973-14.080 9.387-22.613 9.387z","M767.979 373.331c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M113.952 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.96-44.373l210.347-141.227c46.080-31.147 109.653-27.307 151.465 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.227-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-31.573 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.6-18.347-78.933 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.078-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-210.347 141.227c-5.547 3.413-11.947 5.12-17.92 5.12z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-import"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":655,"id":472,"name":"gallery-import","prevSize":32,"code":60165},"setIdx":2,"setId":2,"iconIdx":429},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M597.333 757.333h-170.667c-88.32 0-160-71.68-160-160v-170.667c0-88.32 71.68-160 160-160h170.667c88.32 0 160 71.68 160 160v170.667c0 88.32-71.68 160-160 160zM426.667 330.667c-52.907 0-96 43.093-96 96v170.667c0 52.907 43.093 96 96 96h170.667c52.907 0 96-43.093 96-96v-170.667c0-52.907-43.093-96-96-96h-170.667z","M512 757.333c-17.493 0-32-14.507-32-32v-426.667c0-17.493 14.507-32 32-32s32 14.507 32 32v426.667c0 17.493-14.507 32-32 32z","M725.333 544h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hashtag-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":656,"id":471,"name":"hashtag-1","prevSize":32,"code":60166},"setIdx":2,"setId":2,"iconIdx":430},{"icon":{"paths":["M431.373 774.404h-161.706c-17.493 0-32-14.507-32-32v-218.449c0-44.373 36.266-80.644 80.64-80.644h113.067c17.493 0 32 14.507 32 32v266.667c0 17.92-14.507 32.427-32 32.427zM301.667 710.404h97.706v-202.667h-81.066c-8.96 0-16.64 7.253-16.64 16.64v186.027z","M592.623 774.404h-161.707c-17.493 0-32-14.507-32-32v-412.16c0-44.373 36.266-80.64 80.64-80.64h64.853c44.373 0 80.64 36.267 80.64 80.64v412.16c-0.427 17.493-14.507 32-32.427 32zM463.343 710.404h97.707v-380.16c0-8.96-7.253-16.64-16.64-16.64h-64.853c-8.96 0-16.64 7.254-16.64 16.64v380.16h0.427z","M754.372 774.404h-161.707c-17.493 0-32-14.507-32-32v-194.133c0-17.493 14.507-32 32-32h113.067c44.373 0 80.64 36.267 80.64 80.64v145.493c0 17.493-14.080 32-32 32zM624.666 710.404h97.707v-113.493c0-8.96-7.253-16.64-16.64-16.64h-81.067v130.133z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":657,"id":470,"name":"chart-square","prevSize":32,"code":59742},"setIdx":2,"setId":2,"iconIdx":431},{"icon":{"paths":["M704.009 778.667h-64.427c-17.493 0-32-14.507-32-32s14.507-32 32-32h64.427c111.787 0 202.667-90.88 202.667-202.667s-90.88-202.667-202.667-202.667h-64c-17.493 0-32-14.507-32-32s14.080-32 32-32h64c147.2 0 266.667 119.467 266.667 266.667s-119.467 266.667-266.667 266.667z","M384 778.667h-64c-147.2 0-266.667-119.467-266.667-266.667s119.467-266.667 266.667-266.667h64c17.493 0 32 14.507 32 32s-14.507 32-32 32h-64c-111.787 0-202.667 90.88-202.667 202.667s90.88 202.667 202.667 202.667h64c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 544h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link-21"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":658,"id":469,"name":"link-21","prevSize":32,"code":59743},"setIdx":2,"setId":2,"iconIdx":432},{"icon":{"paths":["M710.387 885.333c-0.427 0-1.28 0-1.707 0-17.493 0-32-14.507-31.573-32.427 0-17.493 14.507-31.573 32-31.573 0.427 0 1.28 0 1.707 0 48.64 0 95.147-17.92 130.987-51.2 66.133-58.027 70.827-140.8 52.907-199.253s-67.413-124.587-154.027-135.68c-14.080-1.707-25.173-12.373-27.733-26.453-17.067-101.973-72.107-172.373-154.88-197.973-86.187-26.453-185.599-0.427-247.892 64.853-60.587 63.574-74.667 151.893-39.68 249.6 5.973 16.64-2.56 34.987-19.2 40.96s-34.987-2.56-40.96-19.2c-43.093-119.893-23.467-234.666 53.76-315.306 78.507-82.347 204.372-115.2 313.172-81.493 99.413 30.72 169.813 112.64 194.987 226.133 87.040 19.627 156.587 85.333 184.32 176.213 30.293 98.987 2.56 200.533-71.253 265.387-48.64 43.52-110.507 67.413-174.933 67.413z","M237.657 885.333c-0.853 0-1.707 0-2.133 0-122.88-8.533-178.773-104.96-178.773-190.72s55.893-181.76 178.773-190.72c32-0.427 62.72 6.827 90.027 20.48 15.787 8.107 21.76 27.307 14.080 43.093-8.107 15.787-27.307 21.76-43.093 14.080-17.92-9.387-38.827-13.227-58.027-13.653-80.64 5.973-117.333 67.84-117.333 126.72s36.693 120.747 119.467 126.72c17.493 1.28 30.72 16.64 29.44 34.133-1.707 17.067-15.787 29.867-32.427 29.867z","M675.012 453.973c-11.52 0-23.040-6.4-28.587-17.92-8.107-15.788-1.707-34.988 14.507-43.095 26.027-13.227 55.467-20.48 84.48-20.907 16.64 0.853 32.427 13.653 32.427 31.573 0.427 17.493-13.653 32.428-31.573 32.428-19.627 0.427-39.253 5.12-57.173 14.080-4.267 2.987-9.387 3.84-14.080 3.84z","M407.893 945.493c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l120.747-120.747c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-120.747 120.747c-6.4 6.4-14.507 9.387-22.613 9.387z","M528.64 945.493c-8.107 0-16.213-2.987-22.613-9.387l-120.747-120.747c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l120.747 120.747c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-cross"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":659,"id":468,"name":"cloud-cross","prevSize":32,"code":60167},"setIdx":2,"setId":2,"iconIdx":433},{"icon":{"paths":["M620.8 956.587c-14.080 0-27.307-9.387-31.147-23.893-4.693-17.067 5.547-34.56 23.040-39.253 173.227-45.653 293.973-202.667 293.973-381.867 0-217.6-177.067-394.667-394.667-394.667-184.747 0-305.92 107.947-362.667 173.227h125.44c17.493 0 32 14.507 32 32s-14.080 32.427-32 32.427h-189.013c-2.133 0-5.973-0.427-8.96-1.28-3.84-1.28-7.253-2.987-10.24-5.12-3.84-2.56-6.827-5.973-8.96-9.813s-3.84-8.533-4.267-13.227c0-1.28 0-2.133 0-3.413v-193.707c0-17.493 14.507-32 32-32s32 14.507 32 32v101.973c69.547-74.667 200.533-176.64 394.667-176.64 253.013 0 458.667 205.653 458.667 458.667 0 208.213-140.373 390.827-341.76 443.733-2.56 0.427-5.547 0.853-8.107 0.853z","M481.707 969.813c-0.853 0-1.707-0.427-2.133-0.427-46.080-2.987-91.307-13.227-133.973-29.867-12.373-4.693-20.907-17.067-20.48-30.293 0-3.84 0.853-7.68 2.133-11.093 6.4-16.213 25.6-24.32 41.387-18.347 37.12 14.507 75.947 23.040 115.2 26.027 16.64 0.853 29.867 15.36 29.867 32.427l-0.427 1.707c-0.853 16.64-14.933 29.867-31.573 29.867zM246.613 878.080c-7.253 0-14.080-2.56-20.053-6.827-35.84-29.013-67.413-62.72-93.013-100.267-3.84-5.547-5.973-11.52-5.973-17.92 0-10.667 5.12-20.48 14.080-26.453 14.080-9.813 34.56-5.973 44.373 7.68 0 0.427 0 0.427 0 0.427 0.427 0.427 0.853 1.28 1.28 1.707 22.187 32 49.067 60.587 79.36 84.48 7.253 5.973 11.947 14.933 11.947 24.747 0 7.253-2.133 14.507-6.827 20.48-6.4 7.68-15.36 11.947-25.173 11.947zM104.107 669.867c-14.080 0-26.453-8.96-30.293-22.187-13.653-43.947-20.48-89.6-20.48-135.68v-0.427c0.427-17.493 14.507-31.573 32-31.573s32 14.507 32 32c0 40.107 5.973 79.36 17.493 116.48 0.853 3.413 1.28 6.4 1.28 9.813 0 13.653-8.96 26.027-22.613 30.293-2.987 0.853-5.973 1.28-9.387 1.28z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["refresh"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":660,"id":467,"name":"refresh","prevSize":32,"code":60168},"setIdx":2,"setId":2,"iconIdx":434},{"icon":{"paths":["M701.901 646.4c-17.493 0-32-14.507-32-32v-251.733c0-5.973-4.693-10.667-10.667-10.667h-123.733c-17.493 0-32-14.507-32-32s14.507-32 32-32h123.733c40.96 0 74.667 33.707 74.667 74.667v251.733c0 17.493-14.507 32-32 32z","M599.467 416.007c-7.253 0-14.507-2.56-20.48-7.254l-76.8-64c-7.253-5.973-11.52-14.933-11.52-24.746s4.267-18.346 11.52-24.746l76.8-64c13.653-11.093 33.707-9.388 45.227 4.265s9.387 33.707-4.267 45.227l-47.36 39.254 47.36 39.254c13.653 11.52 15.36 31.573 4.267 45.226-6.4 7.68-15.787 11.52-24.747 11.52z","M322.167 646.409c-17.493 0-32-14.507-32-32v-179.2c0-17.493 14.507-32 32-32s32 14.507 32 32v179.2c0 17.493-14.507 32-32 32z","M328.534 454.4c-63.573 0-115.2-51.626-115.2-115.2s51.627-115.2 115.2-115.2c63.573 0 115.2 51.627 115.2 115.2s-51.626 115.2-115.2 115.2zM328.534 288c-28.16 0-51.2 23.040-51.2 51.2s23.040 51.199 51.2 51.199c28.16 0 51.2-23.039 51.2-51.199s-23.040-51.2-51.2-51.2z","M322.133 799.996c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8c60.16 0 108.8 48.64 108.8 108.8s-48.64 108.8-108.8 108.8zM322.133 646.396c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.8 44.8 44.8c24.747 0 44.8-20.053 44.8-44.8s-20.053-44.8-44.8-44.8z","M701.884 799.996c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8c60.16 0 108.8 48.64 108.8 108.8s-48.64 108.8-108.8 108.8zM701.884 646.396c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.8 44.8 44.8c24.747 0 44.8-20.053 44.8-44.8s-20.053-44.8-44.8-44.8z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hierarchy-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":661,"id":466,"name":"hierarchy-square","prevSize":32,"code":60169},"setIdx":2,"setId":2,"iconIdx":435},{"icon":{"paths":["M810.675 970.667c-59.733 0-115.627-26.027-154.027-71.68-0.427-0.853-2.987-2.987-5.12-6.4-4.693-4.693-10.24-13.227-14.933-21.333-18.773-30.293-29.013-66.133-29.013-103.68 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 49.493 0 95.147 17.067 131.84 49.067 5.12 3.413 11.093 9.813 16.64 15.787 34.56 37.973 53.76 86.613 53.76 137.387 0 37.12-10.24 73.387-29.44 104.533-10.24 17.92-24.32 34.133-40.533 47.787-34.56 33.28-81.92 51.2-131.84 51.2zM810.675 629.333c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 3.413 5.973 6.827 10.667 10.667 15.36 0.853 0.853 3.413 3.413 5.547 6.827 23.467 27.733 61.867 45.653 102.4 45.653 33.707 0 66.133-12.373 90.88-34.56 11.093-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-34.56-13.227-68.267-37.12-94.293-2.987-3.413-6.4-6.827-9.813-9.387-26.88-23.893-58.027-35.413-91.733-35.413z","M874.24 799.147h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M810.667 864.427c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z","M511.97 567.462c-5.547 0-11.093-1.28-16.213-4.267l-376.745-218.027c-15.36-8.96-20.48-28.588-11.52-43.948s28.586-20.481 43.52-11.521l360.536 208.642 358.396-207.361c15.36-8.96 34.991-3.412 43.524 11.521 8.96 15.36 3.409 34.985-11.524 43.945l-374.187 216.748c-4.693 2.56-10.24 4.267-15.787 4.267z","M512 954.018c-17.493 0-32-14.507-32-32v-386.987c0-17.493 14.507-32 32-32s32 14.507 32 32v386.987c0 17.493-14.507 32-32 32z","M511.953 970.662c-37.547 0-75.093-8.107-104.107-24.747l-227.84-126.293c-61.867-34.133-110.506-116.48-110.506-187.307v-241.493c0-70.827 48.64-152.745 110.506-187.305l227.84-126.294c58.027-32.853 149.333-32.853 207.787 0l227.84 126.294c61.867 34.133 110.507 116.478 110.507 187.305v241.493c0 4.267 0 7.68-0.853 11.947-2.133 11.093-10.24 20.48-20.907 23.893-10.667 3.84-22.613 1.28-31.573-5.973-49.067-42.667-125.013-44.373-176.64-2.987-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 3.413 5.973 6.827 10.667 10.667 15.36 6.4 7.253 8.96 17.067 7.253 26.453s-7.68 17.493-16.213 22.187l-78.080 43.093c-29.013 17.067-66.133 25.173-103.68 25.173zM511.953 117.33c-26.453 0-53.333 5.547-72.533 16.214l-227.84 126.294c-41.387 22.613-77.227 84.051-77.227 130.985v241.493c0 46.933 36.267 108.373 77.227 130.987l227.84 126.293c38.827 21.76 106.667 21.76 145.493 0l47.787-26.453c-15.787-28.587-24.32-61.867-24.32-96 0-62.293 27.733-119.893 75.947-158.293 58.027-46.507 141.227-56.32 206.080-28.587v-190.292c0-46.933-36.267-108.374-77.227-130.987l-227.84-126.294c-20.053-9.813-46.933-15.36-73.387-15.36z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":662,"id":465,"name":"box-add","prevSize":32,"code":59744},"setIdx":2,"setId":2,"iconIdx":436},{"icon":{"paths":["M332.833 646.409c-17.493 0-32-14.507-32-32v-179.2c0-17.493 14.507-32 32-32s32 14.507 32 32v179.2c0 17.493-14.507 32-32 32z","M339.2 454.4c-63.573 0-115.2-51.626-115.2-115.2s51.627-115.2 115.2-115.2c63.573 0 115.2 51.627 115.2 115.2s-51.626 115.2-115.2 115.2zM339.2 288c-28.16 0-51.2 23.040-51.2 51.2s23.040 51.199 51.2 51.199c28.16 0 51.2-23.039 51.2-51.199s-23.040-51.2-51.2-51.2z","M332.8 799.996c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8c60.16 0 108.8 48.64 108.8 108.8s-48.64 108.8-108.8 108.8zM332.8 646.396c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.8 44.8 44.8c24.747 0 44.8-20.053 44.8-44.8s-20.053-44.8-44.8-44.8z","M691.217 799.996c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8c60.16 0 108.8 48.64 108.8 108.8s-48.64 108.8-108.8 108.8zM691.217 646.396c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.8 44.8 44.8c24.747 0 44.8-20.053 44.8-44.8s-20.053-44.8-44.8-44.8z","M669.85 647.253c-13.227 0-25.6-8.107-30.293-21.333-17.067-48.64-62.72-81.067-114.347-81.067h-0.427l-88.32 0.427c-61.868 0-116.052-41.813-131.412-101.547-4.267-17.068 5.972-34.562 23.039-38.829 16.64-4.267 34.559 5.974 38.825 23.042 8.107 31.573 36.694 53.76 69.548 53.76 0 0 0 0 0.427 0l87.893-0.427c0.427 0 0.427 0 0.853 0 78.507 0 148.907 49.92 174.933 124.16 5.973 16.64-2.987 34.987-19.627 40.96-3.84 0.427-7.68 0.853-11.093 0.853z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hierarchy-square-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":663,"id":464,"name":"hierarchy-square-2","prevSize":32,"code":60170},"setIdx":2,"setId":2,"iconIdx":437},{"icon":{"paths":["M342.187 864h-44.373c-85.76 0-127.147-39.68-127.147-121.6v-460.8c0-81.92 41.813-121.6 127.147-121.6h44.373c85.333 0 127.147 39.68 127.147 121.6v460.8c0 81.92-41.813 121.6-127.147 121.6zM297.813 224c-54.187 0-63.147 14.507-63.147 57.6v460.8c0 43.093 8.96 57.6 63.147 57.6h44.373c54.187 0 63.147-14.507 63.147-57.6v-460.8c0-43.093-8.96-57.6-63.147-57.6h-44.373z","M704.853 778.667h-44.373c-85.76 0-127.147-39.68-127.147-121.6v-290.133c0-81.92 41.813-121.6 127.147-121.6h44.373c85.76 0 127.147 39.68 127.147 121.6v290.133c0 81.92-41.813 121.6-127.147 121.6zM660.48 309.333c-54.187 0-63.147 14.507-63.147 57.6v290.133c0 43.093 8.96 57.6 63.147 57.6h44.373c54.187 0 63.147-14.507 63.147-57.6v-290.133c0-43.093-8.96-57.6-63.147-57.6h-44.373z","M187.733 544h-102.4c-17.493 0-32-14.507-32-32s14.080-32 32-32h102.4c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M554.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.701 544h-115.2c-17.493 0-32-14.507-32-32s14.507-32 32-32h115.2c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-horizontally"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":664,"id":463,"name":"align-horizontally","prevSize":32,"code":59745},"setIdx":2,"setId":2,"iconIdx":438},{"icon":{"paths":["M332.833 620.804c-17.493 0-32-14.507-32-32v-179.2c0-17.493 14.507-32 32-32s32 14.507 32 32v179.2c0 17.493-14.507 32-32 32z","M339.2 800.004c-63.573 0-115.2-51.627-115.2-115.2s51.627-115.2 115.2-115.2c63.573 0 115.2 51.627 115.2 115.2s-51.626 115.2-115.2 115.2zM339.2 633.604c-28.16 0-51.2 23.040-51.2 51.2s23.040 51.2 51.2 51.2c28.16 0 51.2-23.040 51.2-51.2s-23.040-51.2-51.2-51.2z","M332.8 441.6c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8c60.16 0 108.8 48.64 108.8 108.8s-48.64 108.8-108.8 108.8zM332.8 288c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.801 44.8 44.801c24.747 0 44.8-20.054 44.8-44.801s-20.053-44.8-44.8-44.8z","M691.217 441.6c-60.16 0-108.8-48.64-108.8-108.8s48.64-108.8 108.8-108.8c60.16 0 108.8 48.64 108.8 108.8s-48.64 108.8-108.8 108.8zM691.217 288c-24.747 0-44.8 20.053-44.8 44.8s20.053 44.801 44.8 44.801c24.747 0 44.8-20.054 44.8-44.801s-20.053-44.8-44.8-44.8z","M336.196 620.804c-2.56 0-5.547-0.427-8.107-0.853-17.067-4.267-27.306-21.76-23.039-38.827 15.36-60.16 69.545-101.547 131.412-101.547h0.427l88.32 0.427c51.627 0 97.28-32.427 114.347-81.065 5.973-16.64 24.32-25.6 40.533-19.626 16.64 5.973 25.6 23.893 19.627 40.96-26.027 74.665-96 124.585-175.36 124.158l-87.893-0.427c0 0 0 0-0.427 0-32.855 0-61.439 22.187-69.546 53.76-2.987 13.653-16.214 23.040-30.294 23.040z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hierarchy-square-3"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":665,"id":462,"name":"hierarchy-square-3","prevSize":32,"code":60171},"setIdx":2,"setId":2,"iconIdx":439},{"icon":{"paths":["M719.347 453.973c-8.107 0-16.213-2.987-22.613-9.387l-129.702-129.705c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l129.707 129.706c12.373 12.373 12.373 32.852 0 45.226-6.4 5.973-14.511 9.387-22.618 9.387z","M589.666 763.725c-17.493 0-32-14.507-32-32v-439.892c0-17.493 14.507-32 32-32s32 14.507 32 32v439.892c0 17.92-14.507 32-32 32z","M434.351 763.725c-8.107 0-16.214-2.987-22.614-9.387l-129.707-129.707c-12.373-12.373-12.373-32.853 0-45.227s32.855-12.373 45.228 0l129.706 129.707c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M434.334 763.725c-17.494 0-32-14.507-32-32v-439.892c0-17.493 14.507-32 32-32s32 14.507 32 32v439.892c0 17.92-14.080 32-32 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrange-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":666,"id":461,"name":"arrange-circle","prevSize":32,"code":60172},"setIdx":2,"setId":2,"iconIdx":440},{"icon":{"paths":["M789.333 544c-17.493 0-32-14.507-32-32 0-135.253-110.080-245.333-245.333-245.333s-245.333 110.080-245.333 245.333c0 17.493-14.507 32-32 32s-32-14.507-32-32c0-170.667 138.667-309.333 309.333-309.333s309.333 138.667 309.333 309.333c0 17.493-14.507 32-32 32z","M938.667 554.667h-3.413c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 44.373 19.2 44.373 42.667s-17.493 42.667-40.96 42.667zM88.748 554.667h-3.414c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 44.372 19.2 44.372 42.667s-17.492 42.667-40.958 42.667zM811.093 255.573c-11.093 0-21.76-4.266-30.293-12.372-16.64-16.64-16.64-43.52 0-60.16l5.547-5.547c16.64-16.64 43.52-16.64 60.16 0s16.64 43.52 0 60.16l-5.547 5.547c-8.107 8.107-18.773 12.372-29.867 12.372zM212.906 255.573c-11.093 0-21.758-4.266-30.292-12.372l-5.547-5.547c-16.64-16.64-16.64-43.52 0-60.16s43.519-16.64 60.159 0l5.547 5.547c16.64 16.64 16.64 43.52 0 60.16-8.107 8.107-19.2 12.372-29.867 12.372zM512 129.707c-23.467 0-42.667-17.494-42.667-40.961v-3.413c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667c0 23.467-19.2 44.374-42.667 44.374z","M853.333 672h-682.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h682.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 800h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 928h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sun-fog"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":667,"id":460,"name":"sun-fog","prevSize":32,"code":60173},"setIdx":2,"setId":2,"iconIdx":441},{"icon":{"paths":["M221.477 272.211c-8.107 0-16.64-3.413-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l154.88-154.88c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-154.88 154.88c-6.4 5.973-14.507 9.387-22.613 9.387z","M802.522 272.211c-8.107 0-16.213-2.987-22.613-9.387l-154.88-154.88c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l154.88 154.88c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.387-22.613 9.387z","M862.293 452.271c-2.987 0-5.973 0-8.96 0h-682.667c-29.867 0.427-64 0.427-88.747-24.32-19.627-19.2-28.587-49.067-28.587-93.013 0-117.333 85.76-117.333 126.72-117.333h663.893c40.96 0 126.72 0 126.72 117.333 0 44.373-8.96 73.813-28.587 93.013-22.187 22.187-52.053 24.32-79.787 24.32zM180.053 388.271h673.707c19.2 0.427 37.12 0.427 43.093-5.547 2.987-2.987 9.387-13.227 9.387-47.787 0-48.213-11.947-53.333-62.72-53.333h-663.467c-50.773 0-62.72 5.12-62.72 53.333 0 34.56 6.827 44.8 9.387 47.787 5.973 5.547 24.32 5.547 43.093 5.547h10.24z","M416.417 780.8c-17.493 0-32-14.507-32-32v-151.467c0-17.493 14.507-32 32-32 17.495 0 32.001 14.507 32.001 32v151.467c0 17.92-14.507 32-32.001 32z","M612.668 780.8c-17.493 0-32-14.507-32-32v-151.467c0-17.493 14.507-32 32-32s32 14.507 32 32v151.467c0 17.92-14.507 32-32 32z","M635.337 970.667h-257.279c-152.747 0-186.88-90.88-200.107-169.813l-60.16-369.067c-2.987-17.493 8.96-33.707 26.453-36.693s33.707 8.96 36.693 26.453l60.16 368.64c12.373 75.52 37.973 116.48 136.96 116.48h257.279c109.653 0 122.027-38.4 136.107-112.64l71.68-373.333c3.413-17.493 20.053-29.013 37.547-25.173 17.493 3.413 28.587 20.053 25.173 37.547l-71.68 373.333c-16.64 86.613-44.373 164.267-198.827 164.267z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":668,"id":459,"name":"bag","prevSize":32,"code":60174},"setIdx":2,"setId":2,"iconIdx":442},{"icon":{"paths":["M843.52 586.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-290.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v290.133c0 81.92-41.813 121.6-127.147 121.6zM671.147 117.333c-54.187 0-63.147 14.507-63.147 57.6v290.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-290.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M843.52 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-76.8c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v76.8c0 81.92-41.813 121.6-127.147 121.6zM671.147 714.667c-54.187 0-63.147 14.507-63.147 57.6v76.8c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-76.8c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M352.853 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-290.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v290.133c0 81.92-41.813 121.6-127.147 121.6zM180.48 501.333c-54.187 0-63.147 14.507-63.147 57.6v290.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-290.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M352.853 373.333h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-76.8c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v76.8c0 81.92-41.813 121.6-127.147 121.6zM180.48 117.333c-54.187 0-63.147 14.507-63.147 57.6v76.8c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-76.8c0-43.093-8.96-57.6-63.147-57.6h-172.373z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-4"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":669,"id":458,"name":"element-4","prevSize":32,"code":60175},"setIdx":2,"setId":2,"iconIdx":443},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M255.977 799.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l512.002-511.998c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-512.002 511.998c-6.4 6.4-14.507 9.387-22.613 9.387z","M768 458.667c-17.493 0-32-14.507-32-32v-138.667h-138.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M426.667 800h-170.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v138.667h138.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize-3"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":670,"id":457,"name":"maximize-3","prevSize":32,"code":60176},"setIdx":2,"setId":2,"iconIdx":444},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-49.92-36.693-98.133-77.653-143.787-122.453-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-102.4-87.040-151.893-22.187-52.907-33.28-104.107-33.28-152.32 0-33.28 5.973-64.853 17.493-94.293 11.947-30.293 31.147-58.453 57.173-82.773 32.853-32.427 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.907 23.893 40.533 45.653 60.16 65.707 25.173 24.747 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.787 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.627 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-1.28-2.56-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-9.387-3.84-13.227-7.68-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.48-17.493-42.667-37.973-69.547-64.427-20.907-21.333-41.813-43.947-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.12-12.8c-2.56-9.813-3.413-15.36-3.413-21.333 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.987-6.827-7.68-14.507-13.653-22.613l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-2.133-0.427-3.84 0-4.693 0.853z","M789.333 416c-17.493 0-32-14.507-32-32 0-15.36-15.36-47.36-40.96-74.667-25.173-26.88-52.907-42.667-76.373-42.667-17.493 0-32-14.507-32-32s14.507-32 32-32c41.387 0 84.907 22.187 122.88 62.72 35.413 37.973 58.453 84.48 58.453 118.613 0 17.493-14.507 32-32 32z","M938.667 416c-17.493 0-32-14.507-32-32 0-147.2-119.467-266.667-266.667-266.667-17.493 0-32-14.507-32-32s14.507-32 32-32c182.187 0 330.667 148.48 330.667 330.667 0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-calling"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":671,"id":456,"name":"call-calling","prevSize":32,"code":60177},"setIdx":2,"setId":2,"iconIdx":445},{"icon":{"paths":["M512 842.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM512 501.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M488.145 705.707c-13.653 0-27.307-5.12-37.547-15.787l-27.735-27.733c-12.373-12.373-12.373-32.853 0-45.227 12.375-12.373 32.855-12.373 45.228 0l20.48 20.48 68.693-63.147c12.8-11.947 33.28-11.093 45.227 1.707s11.093 33.28-1.707 45.227l-75.947 69.973c-10.667 9.813-23.893 14.507-36.693 14.507z","M639.991 970.667h-255.999c-197.12 0-233.813-91.733-243.2-180.907l-32-255.573c-4.693-46.080-6.4-112.213 38.4-161.707 38.4-42.667 101.973-63.147 194.133-63.147h341.332c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 256.427c-9.387 89.173-46.080 180.907-243.2 180.907zM341.326 373.333c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 255.573c7.253 68.267 26.027 124.587 179.627 124.587h255.999c153.6 0 172.373-55.893 179.627-123.733l32-256.427c5.547-52.053-1.28-87.467-22.187-110.933-25.173-28.587-74.667-42.667-146.773-42.667h-341.332z","M704 368.215c-17.493 0-32-14.507-32-32v-58.88c0-44.8-19.2-88.32-52.48-118.613-33.707-30.72-77.653-44.8-123.307-40.533-76.8 7.253-144.213 85.76-144.213 167.68v41.387c0 17.493-14.507 32-32 32s-32-14.507-32-32v-41.813c0-114.773 92.587-220.587 202.24-231.253 64-5.973 125.44 14.080 172.373 57.173 46.507 42.24 73.387 102.827 73.387 165.973v58.88c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-tick-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":672,"id":455,"name":"bag-tick-2","prevSize":32,"code":60178},"setIdx":2,"setId":2,"iconIdx":446},{"icon":{"paths":["M828.587 501.333h-145.92c-17.493 0-32-14.507-32-32v-298.24c0-31.573 12.373-61.013 34.56-83.2s51.627-34.56 83.2-34.56h0.427c53.333 0.427 103.68 21.333 142.080 59.307 38.4 38.827 59.307 90.027 59.307 143.36v103.253c0.427 84.907-56.747 142.080-141.653 142.080zM714.667 437.333h113.92c49.493 0 78.080-28.587 78.080-78.080v-103.253c0-36.693-14.507-71.68-40.533-98.133-26.027-25.6-61.013-40.107-97.28-40.533 0 0 0 0-0.427 0-14.080 0-27.733 5.547-37.973 15.787s-15.787 23.467-15.787 37.973v266.24z","M383.99 995.413c-20.053 0.853-38.827-7.68-52.907-22.187l-70.826-71.253c-3.84-3.84-9.813-4.267-14.080-0.853l-72.96 54.613c-22.613 17.067-52.48 20.053-78.080 7.253s-41.387-38.4-41.387-66.987v-640c0-128.853 73.813-202.667 202.667-202.667h512.001c17.493 0 32 14.507 32 32s-14.507 32-32 32c-29.44 0-53.333 23.893-53.333 53.333v725.333c0 28.587-15.787 54.187-41.387 66.987s-55.467 10.24-78.080-6.827l-72.96-54.613c-4.267-3.413-10.24-2.56-13.653 0.853l-71.68 71.68c-14.508 13.653-33.281 21.333-53.335 21.333zM252.15 834.987c19.627 0 38.827 7.253 53.333 22.187l70.827 71.253c2.56 2.56 5.973 2.987 7.68 2.987 0-0.853 5.12-0.427 7.68-2.987l71.682-71.68c26.453-26.453 68.267-29.013 97.707-6.4l72.533 54.187c4.693 3.413 8.96 2.133 11.093 0.853s5.973-3.84 5.973-9.387v-725.333c0-19.2 4.693-37.547 12.8-53.333h-407.468c-94.72 0-138.667 43.947-138.667 138.667v640c0 5.973 3.84 8.533 5.973 9.813 2.56 1.28 6.826 2.133 11.093-1.28l72.96-54.613c13.227-9.813 29.013-14.933 44.8-14.933z","M501.333 458.667h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 576c-17.493 0-32-14.507-32-32v-234.667c0-17.493 14.507-32 32-32s32 14.507 32 32v234.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-add"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":673,"id":454,"name":"receipt-add","prevSize":32,"code":59746},"setIdx":2,"setId":2,"iconIdx":447},{"icon":{"paths":["M473.6 970.667h-179.2c-166.827 0-241.067-74.24-241.067-241.067v-179.2c0-166.827 74.24-241.067 241.067-241.067h179.2c166.827 0 241.067 74.24 241.067 241.067v179.2c0 166.827-74.24 241.067-241.067 241.067zM294.4 373.333c-132.267 0-177.067 44.8-177.067 177.067v179.2c0 132.267 44.8 177.067 177.067 177.067h179.2c132.267 0 177.067-44.8 177.067-177.067v-179.2c0-132.267-44.8-177.067-177.067-177.067h-179.2z","M729.6 714.667h-46.933c-17.493 0-32-14.507-32-32v-132.267c0-132.267-44.8-177.067-177.067-177.067h-132.267c-17.493 0-32-14.507-32-32v-46.933c0-166.827 74.24-241.067 241.067-241.067h179.2c166.827 0 241.067 74.24 241.067 241.067v179.2c0 166.827-74.24 241.067-241.067 241.067zM714.667 650.667h14.933c132.267 0 177.067-44.8 177.067-177.067v-179.2c0-132.267-44.8-177.067-177.067-177.067h-179.2c-132.267 0-177.067 44.8-177.067 177.067v14.933h100.267c166.827 0 241.067 74.24 241.067 241.067v100.267z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":674,"id":453,"name":"copy","prevSize":32,"code":60179},"setIdx":2,"setId":2,"iconIdx":448},{"icon":{"paths":["M661.333 842.667h-298.667c-116.907 0-181.333-64.427-181.333-181.333v-298.667c0-116.907 64.427-181.333 181.333-181.333h298.667c116.907 0 181.333 64.427 181.333 181.333v298.667c0 116.907-64.427 181.333-181.333 181.333zM362.667 245.333c-82.347 0-117.333 34.987-117.333 117.333v298.667c0 82.347 34.987 117.333 117.333 117.333h298.667c82.347 0 117.333-34.987 117.333-117.333v-298.667c0-82.347-34.987-117.333-117.333-117.333h-298.667z","M682.667 117.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 970.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 629.333c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.92-14.507 32-32 32z","M640 629.333c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.92-14.080 32-32 32z","M384 629.333c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["watch-status"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":675,"id":452,"name":"watch-status","prevSize":32,"code":60180},"setIdx":2,"setId":2,"iconIdx":449},{"icon":{"paths":["M794.035 285.006c-17.493 0-32-14.507-32-32v-64.427c0-25.6-20.907-46.933-46.933-46.933h-551.679c-25.6 0-46.933 20.907-46.933 46.933v64.427c0 17.493-14.507 32-32 32s-31.573-14.507-31.573-32v-64.427c0-61.013 49.92-110.933 110.933-110.933h551.252c61.013 0 110.933 49.493 110.933 110.933v64.427c0 17.493-14.507 32-32 32z","M439.501 804.258c-17.494 0-32.001-14.507-32.001-32v-630.612c0-17.493 14.507-32 32.001-32s32 14.507 32 32v630.612c0 17.92-14.507 32-32 32z","M532.497 804.271h-238.080c-17.493 0-32-14.507-32-32s14.507-32 32-32h238.080c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M939.081 563.204c-17.493 0-32-14.507-32-32v-34.133c0-13.227-11.093-24.32-24.32-24.32h-299.093c-17.493 0-32-14.507-32-32s14.507-32.001 32-32.001h299.093c48.64 0 88.32 39.681 88.32 88.321v34.133c0 17.92-14.080 32-32 32z","M686.084 946.351c-17.493 0-32-14.507-32-32v-450.56c0-17.493 14.507-32 32-32s32 14.507 32 32v450.56c0 17.493-14.507 32-32 32z","M777.365 946.355h-182.613c-17.493 0-32-14.507-32-32s14.507-32 32-32h182.613c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["smallcaps"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":676,"id":451,"name":"smallcaps","prevSize":32,"code":60181},"setIdx":2,"setId":2,"iconIdx":450},{"icon":{"paths":["M615.642 802.991c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l236.373-236.373-236.373-236.372c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l258.987 258.986c12.373 12.373 12.373 32.853 0 45.227l-258.987 258.987c-6.4 6.4-14.507 9.387-22.613 9.387z","M867.413 544h-718.080c-17.493 0-32-14.507-32-32s14.507-32 32-32h718.080c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":677,"id":450,"name":"arrow-right-1","prevSize":32,"code":60182},"setIdx":2,"setId":2,"iconIdx":451},{"icon":{"paths":["M741.555 885.333h-276.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h276.053c130.56 0 161.28-21.333 164.693-137.387-56.32-14.507-98.133-65.707-98.133-126.293 0-61.013 41.813-112.64 98.56-127.147v-11.095c0-140.373-24.747-165.12-165.12-165.12h-240.213v257.708c0 17.493-14.507 32-32 32s-32-14.507-32-32v-289.708c0-17.493 14.507-32 32-32h272.213c175.787 0 229.12 53.333 229.12 229.12v39.255c0 17.493-14.507 32-32 32-36.693 0-66.56 29.867-66.56 66.987 0 36.693 29.867 66.56 66.56 66.56 17.493 0 32 14.507 32 32 0 175.787-53.333 229.12-229.12 229.12z","M469.35 885.342h-118.185c-86.187 0-130.56-64.853-171.093-162.133l-8.107-19.627c-2.987-7.68-2.987-16.64 0.427-24.32s9.813-14.080 17.493-17.067c17.067-6.827 30.293-20.053 37.547-36.693 7.253-17.067 7.253-35.84 0-52.907-14.080-35.84-54.613-52.48-90.453-38.4-8.107 3.413-16.64 2.987-24.747-0.427-7.68-3.413-14.080-9.813-17.067-17.493l-7.253-18.347c-68.267-165.972-38.4-237.226 127.573-305.919l112.64-46.080c16.213-6.827 34.987 1.28 41.813 17.493l129.278 313.172c1.707 3.84 2.56 8.107 2.56 12.373v108.373c0 17.493-14.507 32-32 32s-32-14.507-32-32v-102.4l-115.198-277.759-82.773 34.133c-131.413 54.187-147.2 87.467-95.573 215.466 59.307-8.533 119.040 23.467 142.507 81.067 13.653 32.853 13.653 69.12-0.427 101.973-9.387 22.613-24.747 41.813-44.373 55.893 40.96 96.427 70.827 115.627 108.8 115.627h86.185v-96c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0.427 17.493-14.080 32-31.573 32z","M348.587 885.333h-7.253c-17.493 0-32-14.507-32-32s14.507-32 32-32h7.253c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ticket-expired"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":678,"id":449,"name":"ticket-expired","prevSize":32,"code":60183},"setIdx":2,"setId":2,"iconIdx":452},{"icon":{"paths":["M512 842.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM512 501.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M557.67 719.356c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M466.308 720.64c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 5.973-14.507 9.387-22.613 9.387z","M639.991 970.667h-255.999c-197.12 0-233.813-91.733-243.2-180.907l-32-255.573c-4.693-46.080-6.4-112.213 38.4-161.707 38.4-42.667 101.973-63.147 194.133-63.147h341.332c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 256.427c-9.387 89.173-46.080 180.907-243.2 180.907zM341.326 373.333c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 255.573c7.253 68.267 26.027 124.587 179.627 124.587h255.999c153.6 0 172.373-55.893 179.627-123.733l32-256.427c5.547-52.053-1.28-87.467-22.187-110.933-25.173-28.587-74.667-42.667-146.773-42.667h-341.332z","M704 368.215c-17.493 0-32-14.507-32-32v-58.88c0-44.8-19.2-88.32-52.48-118.613-33.707-30.72-77.653-44.8-123.307-40.533-76.8 7.253-144.213 85.76-144.213 167.68v41.387c0 17.493-14.507 32-32 32s-32-14.507-32-32v-41.813c0-114.773 92.587-220.587 202.24-231.253 64-5.973 125.44 14.080 172.373 57.173 46.507 42.24 73.387 102.827 73.387 165.973v58.88c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-cross"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":679,"id":448,"name":"bag-cross","prevSize":32,"code":60184},"setIdx":2,"setId":2,"iconIdx":453},{"icon":{"paths":["M183.043 527.778c-13.227 0-25.599-8.107-30.292-21.333-43.093-120.318-23.466-235.944 53.76-316.584 78.933-82.773 205.227-115.628 314.452-81.921 99.84 30.72 170.24 113.066 195.84 227.413 76.8 17.493 141.227 71.253 174.080 148.052 6.827 16.213-0.427 34.991-16.64 42.244-16.213 6.827-34.987-0.431-42.24-16.644-27.733-64-81.067-105.385-146.773-113.918-14.080-1.707-25.173-12.373-27.733-26.453-17.067-102.4-72.533-173.227-155.733-198.827-86.186-26.453-186.454-0.427-249.174 64.853-61.013 63.573-75.093 152.747-40.107 250.878 5.973 16.64-2.558 34.987-19.198 40.96-2.987 0.427-6.829 1.28-10.242 1.28z","M620.352 413.013c-11.947 0-23.040-6.399-28.587-17.919-8.107-15.787-1.28-34.987 14.507-43.094 26.88-13.227 55.467-20.48 84.907-20.906 18.347 0.853 32.427 13.653 32.427 31.573 0.427 17.493-13.658 32.427-31.578 32.427-20.053 0.427-39.249 5.12-57.596 14.080-4.693 2.987-9.387 3.84-14.080 3.84z","M853.333 673.28h-682.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h682.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 801.28h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 929.28h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-fog"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":680,"id":447,"name":"cloud-fog","prevSize":32,"code":60185},"setIdx":2,"setId":2,"iconIdx":454},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 586.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M512 725.329c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-14.080-8.96c-3.84-4.267-6.827-8.533-8.96-14.080-2.133-5.12-3.413-10.667-3.413-16.213s1.28-11.093 3.413-16.213c2.133-5.12 5.12-9.813 8.96-14.080 4.267-3.84 8.96-6.827 14.080-8.96 10.24-4.267 22.187-4.267 32.427 0 5.12 2.133 9.813 5.12 14.080 8.96 3.84 4.267 6.827 8.96 8.96 14.080s3.413 10.667 3.413 16.213c0 5.547-1.28 11.093-3.413 16.213-2.133 5.547-5.12 9.813-8.96 14.080-4.267 3.84-8.96 6.827-14.080 8.96s-10.667 3.413-16.213 3.413z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["info-circle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":681,"id":446,"name":"info-circle","prevSize":32,"code":60186},"setIdx":2,"setId":2,"iconIdx":455},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M413.013 715.947h-63.573c-45.653 0-82.773-37.12-82.773-82.773v-113.924c0-17.493 14.507-32 32-32h114.347c46.507 0 82.773 36.267 82.773 82.773v63.573c-0.427 45.653-36.693 82.351-82.773 82.351zM330.667 550.822v81.924c0 10.24 8.533 18.773 18.773 18.773h63.573c13.653 0 18.773-10.24 18.773-18.773v-63.573c0-8.533-4.693-18.773-18.773-18.773h-82.347v0.422z","M298.667 550.835c-17.493 0-32-14.507-32-32 0-131.412 28.587-160.85 104.96-206.077 14.933-8.96 34.987-3.84 43.947 11.094s3.84 34.985-11.093 43.945c-58.027 34.56-73.813 43.519-73.813 151.038 0 17.92-14.507 32-32 32z","M674.513 715.947h-63.573c-45.653 0-82.773-37.12-82.773-82.773v-113.924c0-17.493 14.507-32 32-32h114.347c46.507 0 82.773 36.267 82.773 82.773v63.573c0 45.653-36.267 82.351-82.773 82.351zM592.593 550.822v81.924c0 10.24 8.533 18.773 18.773 18.773h63.573c13.653 0 18.773-10.24 18.773-18.773v-63.573c0-8.533-4.693-18.773-18.773-18.773h-82.347v0.422z","M560.666 550.835c-17.493 0-32-14.507-32-32 0-131.412 28.587-160.85 104.96-206.077 15.36-8.96 34.987-3.84 43.947 11.094s3.84 34.985-11.093 43.945c-58.027 34.56-73.813 43.519-73.813 151.038 0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote-down-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":682,"id":445,"name":"quote-down-square","prevSize":32,"code":60187},"setIdx":2,"setId":2,"iconIdx":456},{"icon":{"paths":["M768.013 337.494c-1.28 0-2.133 0-3.413 0h-2.133c-80.64-2.56-140.8-64.854-140.8-141.654 0-78.507 64-142.080 142.080-142.080s142.080 64 142.080 142.080c-0.427 77.227-60.587 139.52-137.387 142.080 0-0.427 0-0.426-0.427-0.426zM763.746 117.334c-43.093 0-78.080 34.987-78.080 78.080 0 42.24 32.853 76.373 75.093 78.080 0.427-0.427 3.84-0.427 7.68 0 41.387-2.133 73.387-36.267 73.813-78.080 0-43.093-34.987-78.080-78.507-78.080z","M768.448 651.951c-16.64 0-33.28-1.28-49.92-4.267-17.493-2.987-29.013-19.627-26.027-37.12s19.627-29.013 37.12-26.027c52.48 8.96 107.947-0.849 145.067-25.596 20.053-13.227 30.72-29.871 30.72-46.511s-11.093-32.853-30.72-46.080c-37.12-24.747-93.44-34.56-146.347-25.173-17.493 3.413-34.133-8.533-37.12-26.025-2.987-17.493 8.533-34.133 26.027-37.12 69.547-12.373 141.653 0.853 192.853 34.986 37.547 25.172 59.307 61.012 59.307 99.412 0 37.973-21.333 74.244-59.307 99.844-38.827 25.6-89.173 39.676-141.653 39.676z","M254.74 337.493c-0.427 0-0.853 0-0.853 0-76.8-2.56-136.96-64.853-137.387-141.653 0-78.507 64-142.507 142.080-142.507s142.080 64 142.080 142.080c0 77.227-60.16 139.52-136.96 142.080l-8.96-32 2.987 32c-0.853 0-2.133 0-2.987 0zM259.007 273.493c2.56 0 4.693 0 7.253 0.427 37.973-1.707 71.253-35.84 71.253-78.080 0-43.093-34.987-78.080-78.080-78.080s-78.080 34.987-78.080 78.080c0 41.813 32.427 75.52 73.813 78.080 0.427-0.427 2.133-0.427 3.84-0.427z","M254.293 651.951c-52.48 0-102.827-14.076-141.653-39.676-37.547-25.173-59.307-61.444-59.307-99.844 0-37.973 21.76-74.24 59.307-99.412 51.2-34.133 123.307-47.36 192.853-34.986 17.493 2.987 29.013 19.627 26.027 37.12-2.987 17.491-19.627 29.438-37.12 26.025-52.907-9.387-108.8 0.427-146.347 25.173-20.053 13.227-30.72 29.44-30.72 46.080s11.093 33.284 30.72 46.511c37.12 24.747 92.587 34.556 145.067 25.596 17.493-2.987 34.133 8.96 37.12 26.027 2.987 17.493-8.533 34.133-26.027 37.12-16.64 2.987-33.28 4.267-49.92 4.267z","M512.013 656.213c-1.28 0-2.133 0-3.413 0h-2.133c-80.64-2.56-140.8-64.853-140.8-141.653 0-78.507 64-142.081 142.080-142.081s142.080 64.001 142.080 142.081c-0.427 77.227-60.587 139.52-137.387 142.080 0-0.427 0-0.427-0.427-0.427zM507.746 436.053c-43.093 0-78.080 34.987-78.080 78.080 0 42.24 32.853 76.373 75.093 78.080 0.427-0.427 3.84-0.427 7.68 0 41.387-2.133 73.387-36.267 73.813-78.080 0-42.667-34.987-78.080-78.507-78.080z","M511.97 971.093c-51.2 0-102.4-13.227-142.080-40.107-37.547-25.173-59.307-61.013-59.307-99.413 0-37.973 21.333-74.667 59.307-99.84 79.787-52.907 204.8-52.907 284.16 0 37.547 25.173 59.307 61.013 59.307 99.413 0 37.973-21.333 74.667-59.307 99.84-39.68 26.453-90.88 40.107-142.080 40.107zM405.303 785.493c-20.053 13.227-30.72 29.867-30.72 46.507s11.093 32.853 30.72 46.080c57.6 38.827 155.307 38.827 212.907 0 20.053-13.227 30.72-29.867 30.72-46.507s-11.093-32.853-30.72-46.080c-57.173-38.827-154.88-38.4-212.907 0z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["people"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":683,"id":444,"name":"people","prevSize":32,"code":60188},"setIdx":2,"setId":2,"iconIdx":457},{"icon":{"paths":["M938.667 269.229h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32 0 17.92-14.507 32-32 32z","M843.938 480h-236.8c-93.44 0-126.72-32.853-126.72-125.867v-174.933c0-93.013 33.28-125.867 126.72-125.867h236.8c93.44 0 126.72 32.853 126.72 125.867v175.36c0 92.587-33.28 125.44-126.72 125.44zM606.711 117.333c-58.027 0-62.72 4.693-62.72 61.867v175.36c0 57.173 4.693 61.867 62.72 61.867h236.796c58.027 0 62.72-4.693 62.72-61.867v-175.36c0-57.173-4.693-61.867-62.72-61.867h-236.796z","M512 759.898h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32 0 17.92-14.507 32-32 32z","M417.269 970.667h-236.799c-93.44 0-126.72-32.853-126.72-125.867v-174.933c0-93.013 33.28-125.867 126.72-125.867h236.799c93.442 0 126.722 32.853 126.722 125.867v175.36c0 92.587-33.28 125.44-126.722 125.44zM180.043 608c-58.027 0-62.72 4.693-62.72 61.867v175.36c0 57.173 4.693 61.867 62.72 61.867h236.799c58.025 0 62.718-4.693 62.718-61.867v-175.36c0-57.173-4.693-61.867-62.718-61.867h-236.799z","M640.009 970.675c-11.52 0-22.187-6.4-27.733-16.213-5.547-10.24-5.547-22.187 0.427-32.427l44.8-74.667c8.96-14.933 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.613-148.907 331.093-331.093 331.093z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.186 6.4 27.733 16.213 5.547 10.24 5.548 22.187-0.426 32.427l-44.8 74.667c-8.96 14.933-28.587 20.053-43.947 11.093s-20.054-28.587-11.094-43.947l11.521-19.2c-117.76 27.733-206.081 133.547-206.081 259.84 0.427 17.067-14.080 31.573-31.573 31.573z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["convert-card"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":684,"id":443,"name":"convert-card","prevSize":32,"code":60189},"setIdx":2,"setId":2,"iconIdx":458},{"icon":{"paths":["M512 942.080c-12.8 0-25.6-2.987-36.267-8.96-79.787-43.52-220.16-89.6-308.053-101.12l-12.373-1.707c-55.893-6.827-101.973-59.307-101.973-116.053v-515.413c0-33.707 13.227-64.427 37.547-86.613s55.893-32.853 89.173-29.867c93.867 7.253 235.52 54.187 315.733 104.533l10.24 5.973c2.987 1.707 9.387 1.707 11.947 0.427l6.827-4.267c80.213-50.347 221.867-98.133 316.16-106.24 0.853 0 4.267 0 5.12 0 31.147-2.987 63.147 8.107 87.040 30.293 24.32 22.187 37.547 52.907 37.547 86.613v514.986c0 57.173-46.080 109.227-102.4 116.053l-14.080 1.707c-87.893 11.52-228.693 58.027-306.773 101.12-10.24 5.973-22.613 8.533-35.413 8.533zM169.813 145.92c-13.653 0-26.027 4.693-35.84 13.653-10.667 9.813-16.64 23.893-16.64 39.253v515.413c0 25.173 21.76 49.493 46.080 52.907l12.8 1.707c96 12.8 243.2 61.013 328.533 107.52 3.84 1.707 9.387 2.133 11.52 1.28 85.333-47.36 233.387-96 329.813-108.8l14.507-1.707c24.32-2.987 46.080-27.733 46.080-52.907v-514.986c0-15.787-5.973-29.44-16.64-39.68-11.093-9.813-25.173-14.507-40.96-13.653-0.853 0-4.267 0-5.12 0-81.493 7.253-212.907 51.2-284.587 96l-6.827 4.693c-23.467 14.507-56.747 14.507-79.36 0.427l-10.24-5.973c-72.96-44.8-204.373-88.32-288-95.147-1.707 0-3.413 0-5.12 0z","M512 906.24c-17.493 0-32-14.507-32-32v-640c0-17.493 14.507-32 32-32s32 14.507 32 32v640c0 17.92-14.507 32-32 32z","M330.667 394.24h-96c-17.493 0-32-14.507-32-32s14.507-32 32-32h96c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M362.667 522.24h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":685,"id":442,"name":"book-1","prevSize":32,"code":60190},"setIdx":2,"setId":2,"iconIdx":459},{"icon":{"paths":["M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-426.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v426.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-426.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M789.333 394.667h-85.333c-64.853 0-117.333-52.48-117.333-117.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 29.44 23.893 53.333 53.333 53.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.643 757.333c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.858 0-45.231l85.333-85.333c12.373-12.373 32.855-12.373 45.229 0s12.373 32.858 0 45.231l-62.722 62.72 62.722 62.716c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.615 9.387z","M597.312 757.333c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l62.72-62.716-62.72-62.72c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.858 0 45.231l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-code"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":686,"id":441,"name":"document-code","prevSize":32,"code":60191},"setIdx":2,"setId":2,"iconIdx":460},{"icon":{"paths":["M816.64 864c-8.107 0-16.213-2.987-22.613-8.96-12.8-12.373-12.8-32.427-0.427-45.227 72.96-74.24 113.067-172.373 113.067-276.48 0-217.6-177.067-394.667-394.667-394.667s-394.667 177.067-394.667 394.667c0 103.68 39.68 201.387 112.213 275.627 12.373 12.8 11.947 32.853-0.427 45.227-12.8 12.373-32.853 11.947-45.227-0.427-84.053-86.187-130.56-200.107-130.56-320.427 0-253.013 205.653-458.667 458.667-458.667s458.667 205.653 458.667 458.667c0 120.747-46.507 235.093-131.413 321.28-5.973 6.4-14.507 9.387-22.613 9.387z","M511.953 949.333c-96.853 0-175.786-78.933-175.786-175.787s78.933-176.213 175.786-176.213c96.853 0 175.787 78.933 175.787 175.787s-78.933 176.213-175.787 176.213zM511.953 661.333c-61.867 0-111.786 50.347-111.786 111.787s50.346 111.787 111.786 111.787c61.44 0 111.787-50.347 111.787-111.787s-49.92-111.787-111.787-111.787z","M682.667 544h-32c-35.413 0-64-28.587-64-64v-32c0-52.907 43.093-96 96-96s96 43.093 96 96c0 52.907-43.093 96-96 96zM682.667 416c-17.493 0-32 14.507-32 32v32h32c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["speedometer"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":687,"id":440,"name":"speedometer","prevSize":32,"code":60192},"setIdx":2,"setId":2,"iconIdx":461},{"icon":{"paths":["M554.658 629.333h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c29.44 0 53.333-23.893 53.333-53.333v-394.667h-352.001c-50.347 0-96.428 27.306-121.175 71.252-8.533 15.36-28.158 20.908-43.518 12.375s-20.908-28.161-12.375-43.521c35.84-64 103.681-104.107 177.068-104.107h384.001c17.493 0 32 14.507 32 32v426.667c0 64.853-52.48 117.333-117.333 117.333z","M810.667 885.333h-42.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-170.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333s-53.333 23.893-53.333 53.333c0 17.493-14.507 32-32 32h-42.667c-88.32 0-160-71.68-160-160 0-17.493 14.507-32 32-32s32 14.507 32 32c0 52.907 43.093 96 96 96h14.932c14.080-49.067 59.308-85.333 113.068-85.333s98.987 36.267 113.067 85.333h115.627c14.080-49.067 59.307-85.333 113.067-85.333s98.987 36.267 113.067 85.333h14.507c52.907 0 96-43.093 96-96v-96h-96c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.28-74.667 74.667-74.667l-45.653-79.787c-9.387-16.64-27.307-26.88-46.507-26.88h-46.507v266.667c0 64.853-52.48 117.333-117.333 117.333h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c29.44 0 53.333-23.893 53.333-53.333v-298.667c0-17.493 14.507-32 32-32h78.507c42.24 0 81.067 22.614 101.973 59.307l72.96 127.573c5.547 9.813 5.547 22.187 0 32s-16.213 15.787-27.733 15.787h-55.040c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h128c17.493 0 32 14.507 32 32v128c0 88.32-71.68 160-160 160z","M341.333 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM341.333 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M682.667 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM682.667 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M938.667 629.333h-128c-40.96 0-74.667-33.707-74.667-74.667v-128c0-40.96 33.707-74.667 74.667-74.667h55.040c11.52 0 22.187 5.973 27.733 16.213l72.96 128c2.56 4.693 4.267 10.24 4.267 15.787v85.333c0 17.493-14.507 32-32 32zM810.667 416c-5.973 0-10.667 4.693-10.667 10.667v128c0 5.973 4.693 10.667 10.667 10.667h96v-44.8l-59.733-104.533h-36.267z","M341.333 373.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M256 501.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M170.667 629.333h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["truck-fast"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":688,"id":439,"name":"truck-fast","prevSize":32,"code":60193},"setIdx":2,"setId":2,"iconIdx":462},{"icon":{"paths":["M768 544h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 800c-17.493 0-32-14.507-32-32v-512c0-17.493 14.507-32 32-32s32 14.507 32 32v512c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":689,"id":438,"name":"add","prevSize":32,"code":59747},"setIdx":2,"setId":2,"iconIdx":463},{"icon":{"paths":["M512 544c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM512 117.333c-99.84 0-181.333 81.493-181.333 181.333s81.493 181.333 181.333 181.333c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.333-181.333-181.333z","M145.5 970.667c-17.493 0-32-14.507-32-32 0-182.187 178.773-330.667 398.508-330.667 43.093 0 85.329 5.547 126.289 17.067 17.067 4.693 26.884 22.187 22.191 39.253s-22.191 26.88-39.253 22.187c-34.987-9.813-71.68-14.507-109.227-14.507-184.322 0-334.508 119.467-334.508 266.667 0 17.493-14.507 32-32 32z","M768 970.667c-50.347 0-98.133-18.773-135.253-52.48-14.933-12.8-28.16-28.587-38.4-46.080-18.773-30.72-29.013-66.987-29.013-104.107 0-53.333 20.48-103.253 57.173-141.227 38.4-39.68 90.027-61.44 145.493-61.44 58.027 0 113.067 24.747 150.613 67.413 33.28 37.12 52.053 84.907 52.053 135.253 0 16.213-2.133 32.427-6.4 47.787-4.267 19.2-12.373 39.253-23.467 56.747-35.413 60.587-101.973 98.133-172.8 98.133zM768 629.333c-37.973 0-72.96 14.933-99.413 41.813-25.173 26.027-39.253 60.16-39.253 96.853 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.787 22.613 26.027 31.573 25.6 23.467 58.453 36.267 92.587 36.267 48.213 0 93.867-25.6 118.613-66.987 7.253-11.947 12.8-25.6 15.787-38.827 2.987-11.093 4.267-21.76 4.267-32.853 0-34.133-12.8-66.987-35.84-92.587-25.6-29.867-63.147-46.507-102.827-46.507z","M831.991 799.147h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 864.427c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":690,"id":437,"name":"user-add","prevSize":32,"code":60194},"setIdx":2,"setId":2,"iconIdx":464},{"icon":{"paths":["M638.75 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.56 330.667-330.667 330.667zM382.75 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M938.667 693.333h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512.038 503.889c-8.107 0-16.213-2.987-22.613-9.387l-109.228-109.225c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l86.615 86.613 86.613-86.613c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-109.227 109.225c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sidebar-bottom"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":691,"id":436,"name":"sidebar-bottom","prevSize":32,"code":60195},"setIdx":2,"setId":2,"iconIdx":465},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M375.882 778.671c-2.987 0-6.4 0-9.387-0.853l-50.773-6.827c-30.72-4.267-57.6-30.72-62.293-62.293l-7.253-51.627c-2.987-20.48 5.547-46.507 20.48-61.867l97.28-97.28c-14.507-69.12 6.4-140.801 57.173-191.148 81.492-81.493 214.612-81.493 296.105 0 39.68 39.68 61.44 92.16 61.44 148.055 0 55.893-21.76 108.8-61.44 148.053-50.773 50.347-122.453 71.253-191.147 56.747l-97.707 97.28c-12.372 13.227-33.278 21.76-52.478 21.76zM569.161 309.336c-37.12 0-74.667 14.080-102.827 42.667-38.4 38.4-52.052 94.295-36.267 146.348 3.413 11.52 0.427 23.467-8.105 32l-110.080 110.080c-0.853 1.28-2.56 5.973-2.56 7.68l7.253 51.2c0.427 2.56 5.12 7.253 7.68 7.68l51.2 7.253c2.133-0.427 6.4-1.28 7.68-2.56l110.505-110.507c8.533-8.533 20.907-11.093 32-7.68 51.627 16.213 107.52 2.56 145.92-35.84 27.307-27.307 42.667-64 42.667-102.827 0-38.828-14.933-75.521-42.667-102.828-27.733-28.16-65.28-42.667-102.4-42.667z","M445.837 726.618c-8.107 0-16.213-2.987-22.613-9.387l-36.693-36.693c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l36.693 36.693c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M570.842 503.471c-5.973 0-11.52-0.853-16.64-2.987s-9.813-5.547-13.653-9.387c-8.107-8.107-12.8-18.773-12.8-30.293 0-11.093 4.693-22.187 12.8-29.867 9.813-10.239 24.747-14.932 38.4-11.946 2.56 0.853 5.547 1.28 8.107 2.56s5.12 2.56 7.253 3.84c2.133 1.706 4.693 3.412 6.4 5.546 8.107 7.68 12.8 18.773 12.8 29.867 0 5.973-1.28 11.093-3.413 16.64-2.133 5.12-5.12 9.813-9.387 13.653-8.107 8.107-18.773 12.373-29.867 12.373z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["key-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":692,"id":435,"name":"key-square","prevSize":32,"code":60196},"setIdx":2,"setId":2,"iconIdx":466},{"icon":{"paths":["M341.31 629.333c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.858 0-45.231l85.333-85.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-62.72 62.72 62.72 62.716c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.613 9.387z","M682.645 629.333c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l62.72-62.716-62.72-62.72c-12.373-12.373-12.373-32.856 0-45.229s32.853-12.373 45.227 0l85.333 85.332c12.373 12.373 12.373 32.858 0 45.231l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M469.338 643.418c-4.267 0-8.533-0.853-12.373-2.56-16.213-6.827-23.893-25.6-16.64-42.24l85.333-199.256c6.827-16.213 25.6-23.894 41.813-16.641 16.213 6.827 23.893 25.603 16.64 42.243l-85.333 199.254c-5.12 11.947-17.067 19.2-29.44 19.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["code-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":693,"id":434,"name":"code-circle","prevSize":32,"code":60197},"setIdx":2,"setId":2,"iconIdx":467},{"icon":{"paths":["M210.328 970.667c-17.92 0-34.56-4.267-49.493-12.8-32.853-19.2-51.627-58.027-51.627-106.24v-601.6c0-108.373 88.32-196.693 196.693-196.693h411.735c108.373 0 196.693 88.32 196.693 196.693v601.173c0 48.213-18.773 87.040-51.627 106.24s-75.947 17.067-118.187-6.4l-208.213-115.627c-12.373-6.827-36.693-6.827-49.067 0l-208.215 115.627c-23.040 12.8-46.507 19.627-68.693 19.627zM306.328 117.333c-72.96 0-132.693 59.733-132.693 132.693v601.173c0 25.173 7.253 43.947 20.053 51.2s32.853 5.12 54.613-7.253l208.215-115.627c31.573-17.493 79.36-17.493 110.933 0l208.213 115.627c21.76 12.373 41.813 14.933 54.613 7.253s20.053-26.453 20.053-51.2v-601.173c0-72.96-59.733-132.693-132.693-132.693h-411.308z","M473.186 565.329c-8.107 0-16.213-2.987-22.613-9.387l-64.001-64c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.228 0l41.387 41.387 148.053-148.052c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-170.667 170.665c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-tick"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":694,"id":433,"name":"archive-tick","prevSize":32,"code":60198},"setIdx":2,"setId":2,"iconIdx":468},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M512 437.333h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.667 650.667h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-3"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":695,"id":432,"name":"grid-3","prevSize":32,"code":60199},"setIdx":2,"setId":2,"iconIdx":469},{"icon":{"paths":["M618.667 486.396h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 595.627c-17.493 0-32-14.507-32-32v-213.335c0-17.493 14.507-32 32-32s32 14.507 32 32v213.335c0 17.493-14.507 32-32 32z","M813.666 970.667c-21.76 0-45.653-6.4-68.693-19.627l-208.213-115.627c-12.373-6.827-36.693-6.827-49.067 0l-208.213 115.627c-42.24 23.467-85.333 26.027-118.187 6.4-32.853-19.2-51.627-58.027-51.627-106.24v-601.173c0-108.373 88.32-196.693 196.693-196.693h411.733c108.373 0 196.693 88.32 196.693 196.693v601.173c0 48.213-18.773 87.040-51.627 106.24-14.933 8.96-32 13.227-49.493 13.227zM512.013 766.293c20.053 0 39.68 4.267 55.467 13.227l208.213 115.627c21.76 12.373 41.813 14.933 54.613 7.253s20.053-26.027 20.053-51.2v-601.173c0-72.96-59.733-132.693-132.693-132.693h-411.306c-72.96 0-132.693 59.733-132.693 132.693v601.173c0 25.173 7.253 43.947 20.053 51.2s32.853 5.12 54.613-7.253l208.213-115.627c15.787-8.96 35.413-13.227 55.467-13.227z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-add"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":696,"id":431,"name":"archive-add","prevSize":32,"code":60200},"setIdx":2,"setId":2,"iconIdx":470},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M458.227 694.622c-8.107 0-16.213-2.987-22.613-9.387-12.374-12.373-12.374-32.853 0-45.227l128-128-128-128.002c-12.374-12.373-12.374-32.853 0-45.227s32.853-12.373 45.227 0l150.613 150.615c12.373 12.373 12.373 32.853 0 45.227l-150.613 150.613c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-right"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":697,"id":430,"name":"arrow-circle-right","prevSize":32,"code":60201},"setIdx":2,"setId":2,"iconIdx":471},{"icon":{"paths":["M640 970.667h-256c-117.333 0-202.667-85.333-202.667-202.667v-512c0-117.333 85.333-202.667 202.667-202.667h256c117.333 0 202.667 85.333 202.667 202.667v512c0 117.333-85.333 202.667-202.667 202.667zM384 117.333c-96 0-138.667 69.547-138.667 138.667v512c0 69.12 42.667 138.667 138.667 138.667h256c96 0 138.667-69.547 138.667-138.667v-512c0-69.12-42.667-138.667-138.667-138.667h-256z","M810.667 715.093h-597.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h597.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M85.333 885.333c-17.493 0-32-14.507-32-32v-682.667c0-17.493 14.507-32 32-32s32 14.507 32 32v682.667c0 17.493-14.507 32-32 32z","M938.667 885.333c-17.493 0-32-14.507-32-32v-682.667c0-17.493 14.507-32 32-32s32 14.507 32 32v682.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":698,"id":429,"name":"slider","prevSize":32,"code":60202},"setIdx":2,"setId":2,"iconIdx":472},{"icon":{"paths":["M213.333 1013.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM213.333 672c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 25.173 42.667 69.547 67.413 118.613 67.413s93.44-25.173 118.613-66.987c13.227-21.76 20.053-46.080 20.053-71.68 0-76.373-62.293-138.667-138.667-138.667z","M188.967 884.911c-8.107 0-16.213-2.987-22.613-9.387l-42.24-42.24c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l20.48 20.484 68.267-63.151c12.8-11.947 33.28-11.089 45.227 1.711s11.093 33.28-1.707 45.227l-90.88 84.049c-6.4 5.547-14.080 8.538-21.76 8.538z","M264.108 333.225c-10.24 0-19.626-4.693-26.026-13.227-7.253-9.813-8.107-22.615-2.56-33.281 7.253-14.507 17.493-28.585 30.72-41.385l138.667-139.094c70.825-70.4 186.025-70.4 256.851 0l74.667 75.948c31.573 31.147 50.773 72.96 52.907 117.333 0.427 9.813-3.413 19.199-10.667 25.599s-17.067 9.386-26.453 7.68c-8.533-1.28-17.493-1.706-26.88-1.706h-426.665c-10.24 0-20.053 0.853-29.867 2.133-1.28 0-2.987 0-4.694 0zM335.362 266.665h382.291c-5.547-14.507-14.507-27.733-26.453-39.68l-75.093-75.948c-45.653-45.227-120.32-45.227-166.4 0l-114.345 115.628z","M725.355 970.667h-399.788c-13.653 0-25.6-8.533-30.293-20.907-4.693-12.8-0.853-26.88 9.387-35.413s19.627-19.627 26.453-31.573c13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667-39.68 0-77.653 17.067-104.107 47.36-8.96 9.813-23.040 13.653-35.413 8.96s-20.907-16.64-20.907-29.867v-186.88c0-131.413 81.067-226.56 206.933-242.346 11.52-1.707 24.747-2.987 38.4-2.987h426.668c10.24 0 23.467 0.427 37.12 2.56 125.867 14.507 208.213 110.080 208.213 242.773v213.333c0.853 146.773-97.707 245.333-244.48 245.333zM391.7 906.667h333.655c110.080 0 181.333-71.253 181.333-181.333v-213.333c0-99.84-58.453-168.534-153.173-179.628-10.24-1.707-19.2-1.706-28.16-1.706h-426.668c-10.24 0-20.053 0.853-29.867 2.133-93.867 11.947-151.467 80.214-151.467 179.2v120.32c29.013-15.787 62.293-24.32 96-24.32 111.787 0 202.667 90.88 202.667 202.667 0 33.707-8.533 66.987-24.32 96z","M938.667 736h-128c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-check"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":699,"id":428,"name":"wallet-check","prevSize":32,"code":60203},"setIdx":2,"setId":2,"iconIdx":473},{"icon":{"paths":["M804.267 501.333h-115.2c-113.493 0-166.4-52.907-166.4-166.4v-115.201c0-113.493 52.907-166.4 166.4-166.4h115.2c113.493 0 166.4 52.906 166.4 166.4v115.201c0 113.493-52.907 166.4-166.4 166.4zM689.067 117.333c-78.507 0-102.4 23.893-102.4 102.4v115.201c0 78.507 23.893 102.4 102.4 102.4h115.2c78.507 0 102.4-23.893 102.4-102.4v-115.201c0-78.507-23.893-102.4-102.4-102.4h-115.2z","M334.933 970.667h-115.2c-113.493 0-166.4-52.907-166.4-166.4v-115.2c0-113.493 52.907-166.4 166.4-166.4h115.2c113.493 0 166.4 52.907 166.4 166.4v115.2c0 113.493-52.907 166.4-166.4 166.4zM219.733 586.667c-78.507 0-102.4 23.893-102.4 102.4v115.2c0 78.507 23.893 102.4 102.4 102.4h115.2c78.507 0 102.4-23.893 102.4-102.4v-115.2c0-78.507-23.893-102.4-102.4-102.4h-115.2z","M581.167 773.551h-111.787c-17.493 0-32-14.507-32-32v-52.48c0-78.507-23.894-102.4-102.4-102.4h-52.48c-17.493 0-32-14.507-32-32v-111.787c0-133.119 59.307-192.426 192.427-192.426h111.787c17.493 0 32 14.507 32 32v52.48c0 78.507 23.893 102.399 102.4 102.399h52.48c17.493 0 32 14.507 32 32v111.787c0 133.12-59.307 192.427-192.427 192.427zM501.38 709.551h79.787c97.28 0 128.427-31.147 128.427-128.427v-79.787h-20.48c-113.493 0-166.4-52.907-166.4-166.399v-20.48h-79.787c-97.28 0-128.427 31.147-128.427 128.426v79.787h20.48c113.494 0 166.4 52.907 166.4 166.4v20.48z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["backward-item"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":700,"id":427,"name":"backward-item","prevSize":32,"code":60204},"setIdx":2,"setId":2,"iconIdx":474},{"icon":{"paths":["M682.667 970.667h-341.333c-245.333 0-245.333-130.133-245.333-245.333v-42.667c0-95.147 0-202.667 202.667-202.667 50.773 0 69.547 12.373 96 32 1.28 1.28 2.987 2.133 4.267 3.84l43.52 46.080c36.693 38.827 103.253 38.827 139.947 0l43.52-46.080c1.28-1.28 2.56-2.56 4.267-3.84 26.453-20.053 45.227-32 96-32 202.667 0 202.667 107.52 202.667 202.667v42.667c-0.853 162.987-83.2 245.333-246.187 245.333zM298.667 544c-138.667 0-138.667 43.52-138.667 138.667v42.667c0 116.907 0 181.333 181.333 181.333h341.333c127.147 0 181.333-54.187 181.333-181.333v-42.667c0-95.147 0-138.667-138.667-138.667-30.72 0-37.12 3.84-55.467 17.493l-41.387 43.947c-30.72 32.427-72.107 50.347-116.48 50.347s-85.76-17.92-116.48-50.347l-41.387-43.947c-18.347-13.653-24.747-17.493-55.467-17.493z","M810.667 544c-17.493 0-32-14.507-32-32v-256c0-95.147 0-138.667-138.667-138.667h-256c-138.667 0-138.667 43.52-138.667 138.667v256c0 17.493-14.507 32-32 32s-32-14.507-32-32v-256c0-95.147 0-202.667 202.667-202.667h256c202.667 0 202.667 107.52 202.667 202.667v256c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directbox-default"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":701,"id":426,"name":"directbox-default","prevSize":32,"code":60205},"setIdx":2,"setId":2,"iconIdx":475},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 10.667 0 21.333-0.853 31.573-1.28 13.653-10.667 24.747-23.893 28.16s-26.88-1.707-34.56-13.227c-1.28-1.28-3.84-4.267-5.547-6.4-30.72-32.853-72.533-50.773-116.48-50.773-43.52 0-84.48 17.067-114.773 48.213-29.013 29.867-45.227 69.547-45.227 111.787 0 28.587 8.107 57.173 23.040 82.347 7.68 12.8 17.067 24.747 27.733 34.133 1.707 1.28 2.987 2.56 3.84 3.413l3.413 2.987c9.813 8.107 14.507 22.187 10.667 34.56s-14.080 21.76-26.88 23.040c-9.387 0.853-20.48 0.853-31.147 0.853zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h214.613c-0.427-0.853-0.853-1.28-1.28-2.133-20.907-34.987-32.427-75.093-32.427-115.2 0-58.88 22.613-114.347 63.147-156.16 41.813-43.093 100.693-67.84 160.853-67.84 41.813 0 82.773 11.52 117.333 33.28v-214.613c0-196.693-69.973-266.667-266.667-266.667h-255.573z","M916.459 335.354h-808.959c-17.493 0-32-14.507-32-32s14.507-32 32-32h808.959c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M363.5 329.38c-17.493 0-32-14.507-32-32v-207.36c0-17.493 14.507-32 32-32s32 14.507 32 32v207.36c0 17.493-14.507 32-32 32z","M660.501 310.182c-17.493 0-32-14.507-32-32v-188.162c0-17.493 14.507-32 32-32s32 14.507 32 32v188.162c0 17.92-14.080 32-32 32z","M789.325 1013.333c-50.347 0-99.413-17.067-137.813-48.64-1.28-0.853-2.56-1.707-3.413-2.56-2.987-2.56-5.12-4.267-6.827-5.973-0.853-0.427-1.28-0.853-1.707-1.707-15.787-14.080-30.293-31.147-41.387-49.92-20.907-34.987-32.427-75.093-32.427-115.2 0-58.88 22.613-114.347 63.147-156.16 41.813-43.093 100.693-67.84 160.853-67.84 63.147 0 123.307 26.453 165.12 72.96 0.427 0.427 1.28 1.28 1.707 2.133 2.987 2.987 5.973 6.827 8.107 10.24 30.72 37.12 49.067 87.040 49.067 138.667 0 18.773-2.133 36.267-6.4 52.907-5.12 21.333-13.653 42.24-25.6 62.293-40.96 67.413-114.347 108.8-192.427 108.8zM686.498 910.933c1.28 0.853 2.133 1.28 2.987 2.133 28.16 23.467 62.293 35.84 99.84 35.84 55.893 0 107.947-29.867 136.96-77.653 8.533-14.080 14.507-29.44 18.347-45.227 2.987-11.947 4.693-23.893 4.693-37.12 0-36.693-12.8-72.107-36.267-100.267l-3.84-5.12c-1.28-1.28-2.56-2.56-3.413-4.267-30.72-32.427-72.533-50.347-116.48-50.347-43.52 0-84.48 17.067-114.773 48.213-29.013 29.867-45.227 69.547-45.227 111.787 0 28.587 8.107 57.173 23.040 82.347 7.68 12.8 17.067 24.747 27.733 34.133 1.707 1.28 2.987 2.56 3.84 3.413l2.56 2.133z","M861.026 820.48h-143.36c-17.493 0-32-14.507-32-32s14.507-32 32-32h143.36c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M789.333 893.858c-17.493 0-32-14.507-32-32v-143.36c0-17.493 14.507-32 32-32s32 14.507 32 32v143.36c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":702,"id":425,"name":"video-add","prevSize":32,"code":60206},"setIdx":2,"setId":2,"iconIdx":476},{"icon":{"paths":["M938.667 394.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h474.027c169.813 0 221.44 51.2 221.44 219.307v350.293c0.427 168.533-51.2 219.733-221.013 219.733zM274.773 181.333c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 132.267 23.467 155.307 157.44 155.307h474.027c133.973 0 157.44-23.040 157.44-155.307v-350.293c0-132.267-23.467-155.307-157.44-155.307h-474.027z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":703,"id":424,"name":"card","prevSize":32,"code":60207},"setIdx":2,"setId":2,"iconIdx":477},{"icon":{"paths":["M661.333 842.667h-298.667c-116.907 0-181.333-64.427-181.333-181.333v-298.667c0-116.907 64.427-181.333 181.333-181.333h298.667c116.907 0 181.333 64.427 181.333 181.333v298.667c0 116.907-64.427 181.333-181.333 181.333zM362.667 245.333c-82.347 0-117.333 34.987-117.333 117.333v298.667c0 82.347 34.987 117.333 117.333 117.333h298.667c82.347 0 117.333-34.987 117.333-117.333v-298.667c0-82.347-34.987-117.333-117.333-117.333h-298.667z","M682.667 117.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 970.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 565.333h-128c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v96h96c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["watch"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":704,"id":423,"name":"watch","prevSize":32,"code":60208},"setIdx":2,"setId":2,"iconIdx":478},{"icon":{"paths":["M682.667 970.667h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c122.027 0 181.333-59.307 181.333-181.333v-426.667c0-122.027-59.307-181.333-181.333-181.333h-341.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-298.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v426.667c0 155.733-89.6 245.333-245.333 245.333z","M789.333 394.667h-85.333c-64.853 0-117.333-52.48-117.333-117.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 29.44 23.893 53.333 53.333 53.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M170.643 928c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.858 0-45.231l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.858 0 45.231l-62.72 62.72 62.72 62.716c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.613 9.387z","M298.643 928c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l62.72-62.716-62.72-62.72c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.858 0 45.231l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-code-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":705,"id":422,"name":"document-code-2","prevSize":32,"code":60209},"setIdx":2,"setId":2,"iconIdx":479},{"icon":{"paths":["M562.377 797.862c-49.92 0-92.16-30.72-107.947-78.080l-29.866-88.32c-4.693-15.36-16.64-26.88-31.147-31.573l-88.747-29.867c-47.787-16.213-78.507-59.307-77.653-109.653s32.427-92.585 80.64-107.518l321.279-99.841c40.533-12.373 84.48-1.706 114.347 28.588s40.533 73.813 28.16 114.346l-99.84 321.705c-14.933 48.213-57.173 79.787-107.947 80.64-0.427-0.427-0.853-0.427-1.28-0.427zM662.217 311.464c-5.12 0-9.813 0.854-14.933 2.134l-321.706 100.266c-26.027 8.107-35.413 29.439-35.413 47.359-0.427 17.493 8.533 39.68 34.133 48.213l88.747 29.44c34.132 11.093 61.012 37.973 72.106 72.533l29.44 87.893c8.533 25.6 28.587 33.707 48.213 34.56 17.493 0 39.253-9.387 47.36-35.413l99.84-321.705c5.547-17.92 0.853-36.693-12.373-49.92-9.813-10.24-22.187-15.36-35.413-15.36z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["route-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":706,"id":421,"name":"route-square","prevSize":32,"code":60210},"setIdx":2,"setId":2,"iconIdx":480},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v170.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-170.667c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.645 970.667c-17.493 0-32-14.507-32-32v-178.773l-30.72 30.72c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l85.333-85.333c8.96-8.96 23.040-11.947 34.987-6.827s19.627 16.64 19.627 29.44v256c0 17.493-14.507 32-32 32z","M895.979 799.996c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M379.722 703.578c-1.28 0-2.56 0-3.413 0-17.493-2.133-30.293-17.92-28.16-35.413l44.373-404.48c2.133-17.493 17.92-30.293 35.412-28.16 17.493 2.133 30.293 17.92 28.16 35.413l-44.798 404.053c-1.707 16.213-15.787 28.587-31.574 28.587z","M514.138 703.569c-1.28 0-2.56 0-3.413 0-17.493-2.133-30.293-17.92-28.16-35.413l44.8-404.055c2.133-17.493 17.92-30.293 35.413-28.16s30.293 17.92 28.16 35.413l-44.8 404.055c-1.707 15.787-15.787 28.16-32 28.16z","M682.637 433.916h-404.053c-17.493 0-32-14.506-32-31.999s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.507 31.999-32 31.999z","M660.053 568.751h-404.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hashtag-up"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":707,"id":420,"name":"hashtag-up","prevSize":32,"code":60211},"setIdx":2,"setId":2,"iconIdx":481},{"icon":{"paths":["M814.545 537.169c-6.827 0-13.653-2.133-19.627-6.827-171.947-132.693-394.24-132.693-566.186 0-14.080 10.667-34.133 8.107-44.8-5.547-10.667-14.080-8.107-34.133 5.547-44.8 195.84-151.467 448.853-151.467 644.266 0 14.080 10.667 16.64 30.72 5.547 44.8-5.547 8.107-14.933 12.373-24.747 12.373z","M938.688 388.689c-6.827 0-13.653-2.132-19.627-6.825-247.467-191.147-567.039-191.147-814.079 0-14.080 10.667-34.134 8.106-44.8-5.547-10.667-14.080-8.107-34.134 5.546-44.801 270.933-209.493 621.226-209.493 892.586 0 14.080 10.667 16.64 30.721 5.547 44.801-5.973 8.107-15.787 12.372-25.173 12.372z","M734.276 692.907c-6.827 0-13.653-2.133-19.627-6.827-122.88-95.147-282.027-95.147-405.334 0-14.080 10.667-34.133 8.107-44.8-5.547-10.667-14.080-8.107-34.133 5.547-44.8 146.773-113.493 336.641-113.493 483.414 0 14.080 10.667 16.64 30.72 5.547 44.8-5.973 8.107-15.36 12.373-24.747 12.373z","M622.899 849.067c-6.827 0-13.653-2.133-19.627-6.827-55.467-43.093-127.573-43.093-183.040 0-14.080 10.667-34.134 8.107-44.8-5.547-10.667-14.080-8.107-34.133 5.546-44.8 79.361-61.44 181.761-61.44 261.121 0 14.080 10.667 16.64 30.72 5.547 44.8-5.547 7.68-14.933 12.373-24.747 12.373z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":708,"id":419,"name":"wifi","prevSize":32,"code":60212},"setIdx":2,"setId":2,"iconIdx":482},{"icon":{"paths":["M511.991 970.667c-49.92 0-96.428-19.2-131.415-54.187l-272.641-272.64c-34.987-34.987-54.186-81.92-54.186-131.413s19.199-96.427 54.186-131.414l272.641-272.64c34.987-34.987 81.921-54.185 131.415-54.185s96.422 19.198 131.409 54.185l272.644 272.64c34.987 34.987 54.182 81.92 54.182 131.414s-19.196 96.427-54.182 131.413l-272.644 272.64c-34.987 34.987-81.489 54.187-131.409 54.187zM511.991 117.333c-32.853 0-63.573 12.801-86.188 35.414l-272.641 272.638c-23.040 23.041-35.412 53.761-35.412 86.188s12.799 63.573 35.412 86.187l272.641 272.64c45.655 45.653 126.717 45.653 172.37 0l272.644-272.64c23.040-23.040 35.409-53.333 35.409-86.187s-12.796-63.573-35.409-86.188l-272.644-272.638c-22.613-22.613-53.329-35.414-86.182-35.414z","M757.312 789.333c-8.107 0-16.213-2.987-22.613-9.387l-490.669-490.667c-12.373-12.373-12.373-32.856 0-45.229s32.853-12.373 45.227 0l490.669 490.665c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.613 9.387z","M266.643 789.333c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l490.669-490.665c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-490.669 490.667c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["main-component"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":709,"id":418,"name":"main-component","prevSize":32,"code":60213},"setIdx":2,"setId":2,"iconIdx":483},{"icon":{"paths":["M810.667 458.667h-85.333c-103.253 0-160-56.747-160-160v-85.333c0-103.253 56.747-160 160-160h85.333c103.253 0 160 56.747 160 160v85.333c0 103.253-56.747 160-160 160zM725.333 117.333c-67.413 0-96 28.587-96 96v85.333c0 67.413 28.587 96 96 96h85.333c67.413 0 96-28.587 96-96v-85.333c0-67.413-28.587-96-96-96h-85.333z","M298.667 970.667h-85.333c-103.253 0-160-56.747-160-160v-85.333c0-103.253 56.747-160 160-160h85.333c103.253 0 160 56.747 160 160v85.333c0 103.253-56.747 160-160 160zM213.333 629.333c-67.413 0-96 28.587-96 96v85.333c0 67.413 28.587 96 96 96h85.333c67.413 0 96-28.587 96-96v-85.333c0-67.413-28.587-96-96-96h-85.333z","M256 458.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM256 117.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M768 970.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM768 629.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["category-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":710,"id":417,"name":"category-2","prevSize":32,"code":60214},"setIdx":2,"setId":2,"iconIdx":484},{"icon":{"paths":["M756.885 970.675h-430.932c-13.227 0-25.173-8.102-29.867-20.902s-1.28-26.458 8.96-35.418c29.867-26.453 47.36-64.427 47.36-104.107 0-76.373-62.293-138.667-138.667-138.667-31.573 0-61.44 10.671-86.613 30.724-9.813 7.68-22.613 8.956-33.706 3.836s-17.92-16.64-17.92-29.013v-186.453c0-106.238 86.187-192.425 192.427-192.425h489.812c106.24 0 192.427 86.187 192.427 192.425v61.44c0 17.493-14.507 32-32 32h-86.187c-14.933 0-28.587 5.547-38.4 15.787l-0.427 0.431c-11.947 11.52-17.493 27.307-16.213 43.52 2.56 28.16 29.44 50.773 60.16 50.773h81.067c17.493 0 32 14.507 32 32v50.769c-0.853 107.093-87.040 193.28-193.28 193.28zM391.66 906.675h365.226c70.827 0 128.427-57.6 128.427-128.427v-18.773h-49.067c-64.427 0-119.040-47.787-124.16-109.227-3.413-34.987 9.387-69.542 34.987-94.716 22.187-22.613 52.053-34.987 84.053-34.987h54.187v-29.44c0-70.829-57.6-128.429-128.427-128.429h-489.812c-70.827 0-128.426 57.6-128.426 128.429v131.413c23.893-9.387 49.067-14.511 74.667-14.511 111.787 0 202.667 90.88 202.667 202.667 0 33.707-8.534 66.987-24.32 96z","M106.667 523.106c-17.493 0-32-14.507-32-32v-156.585c0-63.573 39.68-121.602 98.987-143.789l338.773-128c34.987-12.8 74.24-8.105 104.533 13.229s48.64 55.893 48.64 92.586v162.133c0 17.493-14.507 32-32 32s-32-14.507-32-32v-162.133c0-16.213-7.68-30.72-20.907-40.107-13.653-9.387-30.293-11.521-45.653-5.974l-338.773 128c-34.987 13.227-57.6 46.081-57.6 84.055v156.585c0 17.493-14.507 32-32 32z","M836.288 759.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.76-22.187 51.627-34.56 83.627-34.56h88.747c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.48zM918.635 584.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.56 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M597.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 1013.333c-111.787 0-202.667-90.88-202.667-202.667 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 58.027-25.173 113.493-68.693 151.893-37.547 32.853-84.907 50.773-133.973 50.773zM213.333 672c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 76.373 62.293 138.667 138.667 138.667 33.28 0 65.706-12.373 91.733-34.56 29.867-26.453 46.934-64 46.934-104.107 0-76.373-62.293-138.667-138.667-138.667z","M170.662 885.333c-10.667 0-21.333-5.547-27.307-15.36-8.96-15.36-4.267-34.987 11.093-43.947l37.973-22.613v-46.080c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 11.093-5.973 21.76-15.36 27.307l-53.333 32c-5.547 3.413-11.52 4.693-17.067 4.693z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["empty-wallet-time"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":711,"id":416,"name":"empty-wallet-time","prevSize":32,"code":60215},"setIdx":2,"setId":2,"iconIdx":485},{"icon":{"paths":["M512.017 971.089c-46.507 0-92.587-13.653-128.854-40.533l-183.467-136.96c-48.64-36.267-86.613-111.787-86.613-172.373v-317.438c0-65.707 48.213-135.68 110.080-158.72l212.907-79.787c42.24-15.787 108.8-15.787 151.040 0l213.333 79.787c61.867 23.040 110.080 93.013 110.080 158.72v317.012c0 60.587-37.973 136.107-86.613 172.373l-183.467 136.96c-35.84 27.307-81.92 40.96-128.427 40.96zM458.684 125.437l-212.907 79.787c-36.693 13.653-68.693 59.733-68.693 98.987v317.012c0 40.533 28.587 97.28 60.587 121.173l183.467 136.96c49.067 36.693 132.267 36.693 181.334 0l183.467-136.96c32.427-24.32 60.587-81.067 60.587-121.173v-317.438c0-38.827-32-84.907-68.693-98.987l-212.907-79.787c-28.16-10.24-77.653-10.24-106.24 0.427z","M512 565.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 394.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M512 693.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["frame-4"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":712,"id":415,"name":"frame-4","prevSize":32,"code":60216},"setIdx":2,"setId":2,"iconIdx":486},{"icon":{"paths":["M144.213 889.6c-8.96 0-18.347-3.84-24.32-11.52-45.653-53.333-66.56-129.28-66.56-238.080v-256c0-231.68 98.987-330.667 330.667-330.667h256c101.973 0 176.64 19.2 229.547 58.88 14.080 10.667 17.067 30.72 6.4 44.8s-30.72 17.067-44.8 6.4c-41.387-31.147-103.68-46.080-191.147-46.080h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 91.733 16.64 156.16 51.2 197.12 11.52 13.653 9.813 33.707-3.84 45.227-5.973 4.693-13.227 7.253-20.48 7.253z","M639.957 970.675h-255.999c-33.707 0-64-2.133-91.733-5.973-17.493-2.56-29.44-18.773-26.88-36.267s19.2-29.44 36.267-26.88c24.32 3.413 52.053 5.547 82.347 5.547h255.999c196.693 0 266.667-69.973 266.667-266.667v-256.428c0-14.080-0.427-28.16-1.28-40.96-1.28-17.493 12.373-32.853 29.867-34.133 18.347-0.853 32.853 12.373 34.133 29.867 0.853 14.507 1.28 29.44 1.28 45.227v256.001c0 231.68-98.987 330.667-330.667 330.667z","M341.333 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM341.333 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z","M511.185 743.676c-16.64 0-33.28-6.4-45.653-18.773s-12.373-32.853 0-45.227c12.373-12.373 32.853-12.373 45.227 0 0.427 0.427 0.853 0.427 1.28 0l214.613-215.040c44.373-44.375 121.6-44.375 165.547 0l69.547 69.547c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0l-69.547-69.547c-20.053-20.053-55.040-20.053-75.093 0l-214.613 215.040c-12.8 12.373-29.44 18.773-46.080 18.773z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":713,"id":414,"name":"gallery-slash","prevSize":32,"code":60217},"setIdx":2,"setId":2,"iconIdx":487},{"icon":{"paths":["M511.983 666.876c-56.32 0-102.4-46.080-102.4-102.4v-105.387c0-56.32 46.080-102.402 102.4-102.402s102.4 46.081 102.4 102.402v105.387c0 56.747-46.080 102.4-102.4 102.4zM511.983 421.114c-20.907 0-38.4 17.068-38.4 38.401v105.387c0 21.333 17.067 38.4 38.4 38.4s38.4-17.067 38.4-38.4v-105.387c0-21.333-17.493-38.401-38.4-38.401z","M512 802.982c-135.253 0-245.333-110.080-245.333-245.333v-91.307c0-135.252 110.080-245.332 245.333-245.332 126.293 0 231.253 94.722 244.053 220.163 1.707 17.493-11.093 33.276-28.587 34.982-17.493 2.133-33.28-11.093-34.987-28.587-9.387-92.585-87.040-162.559-180.48-162.559-99.84 0-181.333 81.493-181.333 181.332v91.307c0 99.84 81.493 181.333 181.333 181.333 93.867 0 173.227-73.387 180.907-166.827 1.28-17.493 16.64-30.72 34.56-29.44 17.493 1.28 30.72 16.644 29.44 34.564-10.24 126.72-117.76 225.702-244.907 225.702z","M938.667 416c-17.493 0-32-14.507-32-32v-85.333c0-110.080-71.253-181.333-181.333-181.333h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c146.773 0 245.333 98.56 245.333 245.333v85.333c0 17.493-14.507 32-32 32z","M85.333 416c-17.493 0-32-14.507-32-32v-85.333c0-146.773 98.56-245.333 245.333-245.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-85.333c-110.080 0-181.333 71.253-181.333 181.333v85.333c0 17.493-14.507 32-32 32z","M725.333 970.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c110.080 0 181.333-71.253 181.333-181.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 146.773-98.56 245.333-245.333 245.333z","M384 970.667h-85.333c-146.773 0-245.333-98.56-245.333-245.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 110.080 71.253 181.333 181.333 181.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["finger-scan"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":714,"id":413,"name":"finger-scan","prevSize":32,"code":60218},"setIdx":2,"setId":2,"iconIdx":488},{"icon":{"paths":["M341.333 714.667h-109.653c-114.773 0-178.347-63.147-178.347-178.347v-304.64c0-114.773 63.147-178.347 178.347-178.347h194.987c114.773 0 178.347 63.147 178.347 178.347 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-80.213-34.133-114.347-114.347-114.347h-194.987c-80.213 0-114.347 34.133-114.347 114.347v304.64c0 80.213 34.133 114.347 114.347 114.347h109.653c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M792.333 970.667h-194.987c-114.773 0-178.346-63.147-178.346-178.347v-304.64c0-114.773 63.146-178.347 178.346-178.347h194.987c114.773 0 178.347 63.147 178.347 178.347v304.64c0 115.2-63.147 178.347-178.347 178.347zM597.346 373.333c-80.213 0-114.347 34.133-114.347 114.347v304.64c0 80.213 34.133 114.347 114.347 114.347h194.987c80.213 0 114.347-34.133 114.347-114.347v-304.64c0-80.213-34.133-114.347-114.347-114.347h-194.987z","M773.585 672h-138.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h138.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M704 741.542c-17.493 0-32-14.507-32-32v-138.667c0-17.493 14.507-32 32-32s32 14.507 32 32v138.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["additem"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":715,"id":412,"name":"additem","prevSize":32,"code":60219},"setIdx":2,"setId":2,"iconIdx":489},{"icon":{"paths":["M362.667 544c-17.493 0-32-14.507-32-32v-203.948c0-17.493 14.507-32 32-32s32 14.507 32 32v203.948c0 17.493-14.507 32-32 32z","M362.667 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M661.333 970.667c-17.493 0-32-14.507-32-32v-630.615c0-17.493 14.507-32 32-32s32 14.507 32 32v630.615c0 17.493-14.507 32-32 32z","M354.109 334.932h-96c-12.373 0-23.039-6.826-28.586-17.92s-4.266-23.892 2.987-33.706c8.107-10.667 12.799-24.321 12.799-38.401v-38.398c0-13.653-4.692-27.308-12.799-38.401-7.253-9.813-8.534-22.612-2.987-33.706 5.547-10.667 16.639-17.922 28.586-17.922h96c60.16 0 108.799 48.642 108.799 108.802 0 29.44-11.52 56.747-32.427 77.227-19.625 20.907-46.932 32.425-76.372 32.425zM306.749 270.932h47.359c11.947 0 23.040-4.693 31.147-12.8 8.96-8.533 13.654-19.627 13.654-32 0-24.747-20.054-44.8-44.801-44.8h-47.359c1.707 8.533 2.56 17.066 2.56 25.599v38.401c0 8.533-0.853 17.066-2.56 25.599z","M181.323 373.338c-28.16 0-65.707-8.961-104.96-43.948-13.227-11.947-22.613-33.279-22.613-52.052v-99.841c0-16.64 7.68-36.267 18.773-47.787 39.68-41.387 80.64-50.347 107.947-50.773 0.427 0 0.853 0 1.28 0 33.707 0 66.986 13.653 90.453 37.547 4.267 4.267 8.534 9.388 12.374 14.508 15.787 20.907 24.746 48.212 24.746 75.945v38.401c0 27.733-8.96 55.040-25.6 76.8-21.333 28.587-54.187 46.933-89.6 50.346-3.84 0.427-8.532 0.854-12.799 0.854zM181.323 142.938c-0.427 0-0.426 0-0.853 0-21.76 0.427-43.095 11.095-62.295 31.148 0 0-0.852 2.985-0.852 4.265v99.414c0 0.853 1.279 3.84 2.132 5.12 21.76 19.2 45.654 29.013 68.267 26.453 17.92-1.707 33.708-10.668 44.801-25.174 8.107-10.667 12.8-24.319 12.8-38.399v-38.401c0-13.653-4.693-27.305-12.8-38.399-2.133-3.413-4.268-5.122-5.974-7.255-11.947-11.947-28.16-18.773-45.226-18.773z","M765.884 334.932h-96c-29.44 0-56.747-11.518-77.227-32.425-20.053-19.627-31.573-46.935-31.573-76.375 0-60.16 48.64-108.8 108.8-108.8h96c11.947 0 23.040 6.826 28.587 17.919 5.547 10.667 4.267 23.895-2.987 33.708-8.107 10.667-12.8 24.319-12.8 38.399v38.401c0 14.080 4.693 27.305 12.8 38.398 7.253 9.813 8.533 22.615 2.987 33.708-5.12 10.24-16.213 17.065-28.587 17.065zM669.884 181.333c-24.747 0-44.8 20.053-44.8 44.8 0 11.947 4.693 23.042 12.8 31.148 8.533 8.96 19.627 13.651 32 13.651h47.36c-1.707-8.533-2.56-17.066-2.56-25.599v-38.401c0-8.533 0.853-17.066 2.56-25.599h-47.36z","M842.675 373.328c-4.693 0-8.96-0.427-13.227-0.427-35.413-3.413-67.84-21.76-89.6-50.346-16.64-21.76-25.6-49.066-25.6-76.8v-38.401c0-27.733 8.96-55.039 25.6-76.799 2.987-4.267 7.253-9.387 11.52-13.654 23.893-23.893 56.751-37.547 90.458-37.547 0.427 0 0.853 0 1.28 0 27.307 0.427 68.267 9.387 107.947 50.774 11.093 11.52 18.773 31.146 18.773 47.786v99.841c0 18.773-9.387 40.105-22.613 51.625-38.827 34.987-76.378 43.948-104.538 43.948zM842.675 142.927c-17.067 0-33.707 6.827-45.227 18.774-1.707 1.707-3.409 3.84-5.116 5.974-8.96 11.947-13.658 25.599-13.658 39.252v38.401c0 14.080 4.693 27.308 12.8 38.401 11.093 14.507 26.884 23.466 44.804 25.599 22.613 2.56 46.507-7.254 69.547-27.308 0 0 0.853-2.985 1.28-4.265v-99.414c0-0.853-1.284-3.839-1.711-4.692-18.347-19.2-39.68-29.868-61.44-29.868-0.853-0.853-0.853-0.854-1.28-0.854z","M362.667 842.667c-52.907 0-96-43.093-96-96v-170.667c0-52.907 43.093-96 96-96s96 43.093 96 96v170.667c0 52.907-43.093 96-96 96zM362.667 544c-17.493 0-32 14.507-32 32v170.667c0 17.493 14.507 32 32 32s32-14.507 32-32v-170.667c0-17.493-14.507-32-32-32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["headphones"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":716,"id":411,"name":"headphones","prevSize":32,"code":60220},"setIdx":2,"setId":2,"iconIdx":490},{"icon":{"paths":["M235.084 277.333c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667h0.427c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-43.093 42.667z","M789.751 832c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667h0.427c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-43.093 42.667z","M233.417 416c-99.84 0-181.333-81.493-181.333-181.333s81.493-181.333 181.333-181.333c99.84 0 181.333 81.493 181.333 181.333s-81.067 181.333-181.333 181.333zM233.417 117.333c-64.853 0-117.333 52.48-117.333 117.333s52.48 117.333 117.333 117.333c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333z","M852.083 970.667h-128c-64.853 0-117.333-52.48-117.333-117.333v-128c0-64.853 52.48-117.333 117.333-117.333h128c64.853 0 117.333 52.48 117.333 117.333v128c0 64.853-52.48 117.333-117.333 117.333zM724.083 672c-29.44 0-53.333 23.893-53.333 53.333v128c0 29.44 23.893 53.333 53.333 53.333h128c29.44 0 53.333-23.893 53.333-53.333v-128c0-29.44-23.893-53.333-53.333-53.333h-128z","M511.979 842.667h-114.349c-49.493 0-92.587-29.867-109.653-75.947-17.493-46.080-4.693-96.853 32.427-129.707l340.909-298.24c20.48-17.92 20.907-42.24 14.933-58.88-6.4-16.64-22.613-34.56-49.92-34.56h-114.347c-17.493 0-32-14.507-32-32s14.507-32 32-32h114.347c49.493 0 92.587 29.867 109.653 75.947 17.493 46.080 4.693 96.853-32.427 129.707l-340.909 298.24c-20.48 17.92-20.907 42.24-14.933 58.88 6.4 16.64 22.613 34.56 49.92 34.56h114.349c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["routing-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":717,"id":410,"name":"routing-2","prevSize":32,"code":60221},"setIdx":2,"setId":2,"iconIdx":491},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M384.010 928h-42.667c-17.493 0-32-14.507-32-32s13.653-31.573 31.147-32c-66.987-228.693-66.987-475.307 0-704-17.493-0.427-31.147-14.507-31.147-32s14.507-32 32-32h42.667c10.24 0 20.053 5.12 26.027 13.227 5.973 8.533 7.68 19.2 4.267 29.013-80.213 241.067-80.213 506.453 0 747.947 3.413 9.813 1.707 20.48-4.267 29.013-5.973 7.68-15.787 12.8-26.027 12.8z","M640.017 928.009c-3.413 0-6.827-0.427-10.24-1.707-16.64-5.547-26.027-23.893-20.053-40.533 80.213-241.067 80.213-506.454 0-747.948-5.547-16.64 3.413-34.987 20.053-40.533 17.067-5.547 34.987 3.413 40.533 20.053 84.907 254.293 84.907 534.188 0 788.054-4.267 14.080-17.067 22.613-30.293 22.613z","M512 733.858c-119.040 0-237.653-16.64-352-50.347-0.427 17.067-14.507 31.147-32 31.147s-32-14.507-32-32v-42.667c0-10.24 5.12-20.053 13.227-26.027 8.533-5.973 19.2-7.68 29.013-4.267 241.067 80.213 506.88 80.213 747.947 0 9.813-3.413 20.48-1.707 29.013 4.267s13.227 15.787 13.227 26.027v42.667c0 17.493-14.507 32-32 32s-31.573-13.653-32-31.147c-114.773 33.707-233.387 50.347-352.427 50.347z","M895.991 415.994c-3.413 0-6.827-0.427-10.24-1.707-241.067-80.213-506.881-80.213-747.948 0-17.067 5.547-34.987-3.413-40.533-20.053-5.12-17.067 3.84-34.987 20.48-40.533 254.293-84.907 534.188-84.907 788.054 0 16.64 5.547 26.027 23.893 20.053 40.533-3.84 13.227-16.64 21.76-29.867 21.76z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["global"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":718,"id":409,"name":"global","prevSize":32,"code":59748},"setIdx":2,"setId":2,"iconIdx":492},{"icon":{"paths":["M560.209 970.671c-11.52 0-20.484-2.987-26.884-5.973-15.36-7.253-41.387-27.307-41.387-81.067v-275.2l-229.971 210.773c-12.8 11.947-33.281 11.093-45.228-2.133s-11.092-33.28 2.134-45.227l273.065-250.453v-19.2l-273.065-250.454c-13.227-11.947-14.081-32-2.134-45.227 11.947-12.8 32.428-14.080 45.228-2.133l229.971 210.773v-275.2c0-53.76 26.027-74.24 41.387-81.066 15.36-7.253 47.36-14.081 88.747 20.479l164.267 136.961c17.92 14.933 28.587 36.267 29.013 58.88s-8.96 44.372-26.453 60.159l-192 176.215 192 176.213c17.067 15.787 26.88 37.973 26.453 60.16-0.427 22.613-11.093 43.947-29.013 58.88l-164.267 136.96c-24.32 20.907-45.649 26.88-61.862 26.88zM555.938 561.071v322.56c0 15.787 3.413 22.613 5.12 23.467 0.427-0.427 8.107-2.133 20.053-11.947l164.267-136.96c3.84-3.413 5.973-7.253 5.973-11.52s-1.702-8.107-5.542-11.52l-189.871-174.080zM559.778 117.337c-0.427 0.427-3.84 7.68-3.84 23.040v322.56l189.871-174.081c3.84-3.413 5.542-7.253 5.542-11.52s-2.133-8.106-5.973-11.52l-164.693-136.961c-11.093-9.387-18.347-11.52-20.907-11.52z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bluetooth"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":719,"id":408,"name":"bluetooth","prevSize":32,"code":59749},"setIdx":2,"setId":2,"iconIdx":493},{"icon":{"paths":["M602.061 751.36c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l129.707-129.707c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-129.707 129.707c-5.973 5.973-14.080 9.387-22.613 9.387z","M731.725 621.658h-439.892c-17.493 0-32-14.507-32-32s14.507-32 32-32h439.892c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M292.227 466.351c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.854 0-45.227l129.706-129.707c12.373-12.373 32.856-12.373 45.229 0s12.373 32.855 0 45.228l-129.708 129.706c-6.4 6.4-14.507 9.387-22.613 9.387z","M731.725 466.342h-439.892c-17.493 0-32-14.507-32-32 0-17.492 14.507-31.999 32-31.999h439.892c17.493 0 32 14.507 32 31.999 0 17.493-14.080 32-32 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrange-circle-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":720,"id":407,"name":"arrange-circle-2","prevSize":32,"code":60222},"setIdx":2,"setId":2,"iconIdx":494},{"icon":{"paths":["M511.991 927.991c-62.72 0-119.891-34.56-148.905-90.027l-260.267-494.506c-34.987-66.133-23.467-142.933 28.587-196.267s128.853-66.133 195.413-32.853l138.238 69.12c29.013 14.507 64 14.507 93.44 0l138.24-69.12c66.987-33.28 143.787-20.48 195.84 32.853s63.573 130.133 28.587 196.267l-260.267 494.506c-29.013 55.467-86.187 90.027-148.907 90.027zM250.874 159.992c-30.293 0-56.747 14.507-73.813 32-25.6 26.453-43.947 72.107-17.92 121.6l260.267 494.506c18.345 34.987 52.905 55.893 92.158 55.893s73.813-20.907 92.16-55.893l260.267-494.506c26.027-49.493 8.107-95.573-17.92-121.6-25.6-26.027-70.827-45.227-121.173-20.48l-138.24 69.12c-47.36 23.467-103.253 23.467-150.613 0l-137.811-69.12c-16.213-8.107-32.427-11.52-47.36-11.52z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-down"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":721,"id":406,"name":"direct-down","prevSize":32,"code":60223},"setIdx":2,"setId":2,"iconIdx":495},{"icon":{"paths":["M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-426.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v426.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-426.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M384 474.027c-7.253 0-14.507-1.28-21.333-4.267-19.627-8.533-32-27.733-32-48.64v-335.787c0-17.493 14.507-32 32-32h298.667c17.493 0 32 14.507 32 32v335.36c0 21.334-12.373 40.534-32 48.64-19.2 8.533-41.813 4.693-57.6-9.813l-91.733-84.054-91.734 84.48c-10.24 9.387-23.039 14.080-36.266 14.080zM512 307.628c12.8 0 26.027 4.692 36.267 14.078l81.067 74.667v-279.039h-234.667v279.039l81.067-74.667c10.24-9.387 23.467-14.078 36.267-14.078z","M746.667 629.333h-181.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h181.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M746.667 800h-362.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h362.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-book"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":722,"id":405,"name":"archive-book","prevSize":32,"code":59750},"setIdx":2,"setId":2,"iconIdx":496},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 970.667h-768c-17.493 0-32-14.507-32-32v-682.667c0-128.853 73.813-202.667 202.667-202.667h426.667c128.853 0 202.667 73.813 202.667 202.667v682.667c0 17.493-14.507 32-32 32zM160 906.667h704v-650.667c0-94.72-43.947-138.667-138.667-138.667h-426.667c-94.72 0-138.667 43.947-138.667 138.667v650.667z","M640 970.667h-256c-17.493 0-32-14.507-32-32v-258.56c0-39.68 32.427-72.107 72.107-72.107h176.213c39.68 0 72.107 32.427 72.107 72.107v258.56c-0.427 17.493-14.933 32-32.427 32zM416 906.667h192v-226.56c0-4.267-3.413-8.107-8.107-8.107h-176.214c-4.267 0-8.106 3.413-8.106 8.107v226.56h0.426z","M512 501.333c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M618.667 394.667h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hospital"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":723,"id":404,"name":"hospital","prevSize":32,"code":60224},"setIdx":2,"setId":2,"iconIdx":497},{"icon":{"paths":["M720.166 864c-81.92 0-159.147-43.52-200.96-113.92-22.187-35.84-33.707-77.653-33.707-120.747 0-129.28 105.387-234.667 234.667-234.667s234.667 105.387 234.667 234.667c0 43.093-11.947 84.907-34.133 121.173-41.387 69.973-118.187 113.493-200.533 113.493zM720.166 458.667c-94.293 0-170.667 76.373-170.667 170.667 0 31.147 8.533 61.44 24.747 87.467 30.72 51.627 86.613 83.2 145.92 83.2 60.587 0 115.2-30.72 145.92-82.773 16.213-26.453 24.747-56.747 24.747-87.893 0-94.293-76.373-170.667-170.667-170.667z","M796.134 660.48h-151.467c-17.493 0-32-14.507-32-32s14.507-32 32-32h151.467c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M720.166 737.707c-17.493 0-32-14.507-32-32v-151.040c0-17.493 14.507-32 32-32s32 14.507 32 32v151.467c0 17.493-14.080 31.573-32 31.573z","M466.381 970.667c-20.48 0-40.961-5.12-59.308-15.36-37.973-21.333-60.587-59.733-60.587-102.827v-228.267c0-21.333-14.080-53.76-27.733-70.4l-162.133-170.24c-26.88-27.733-47.787-74.239-47.787-108.372v-99.414c0-68.693 52.053-122.453 118.187-122.453h569.174c65.28 0 118.187 52.908 118.187 118.188v94.719c0 44.8-26.453 95.148-52.053 121.602l-76.8 67.839c-7.68 6.827-18.347 9.387-28.587 7.253-11.52-2.987-23.893-4.267-36.693-4.267-94.293 0-170.667 76.373-170.667 170.667 0 31.147 8.533 61.44 24.747 87.893 13.653 22.613 32 41.387 53.333 54.613 9.387 5.973 15.36 16.213 15.36 27.307v14.507c0 33.707-20.48 81.067-54.613 101.12l-58.88 37.973c-19.2 11.947-41.387 17.92-63.147 17.92zM227.447 117.333c-30.293 0-54.187 25.6-54.187 58.453v99.414c0 15.36 12.8 46.933 29.867 64l164.267 172.8c21.76 26.88 43.52 72.533 43.52 112.64v228.267c0 28.16 19.628 42.24 27.734 46.933 18.347 10.24 40.107 9.813 56.747-0.427l59.733-38.4c11.52-6.827 23.040-28.587 23.893-43.947-23.467-17.493-43.947-40.107-59.307-65.707-22.187-36.267-34.133-78.080-34.133-120.747 0-129.28 105.387-234.665 234.667-234.665 11.947 0 23.893 0.853 34.987 2.56l63.147-55.893c14.507-14.933 32.427-50.348 32.427-75.521v-94.721c0-29.867-24.32-54.185-54.187-54.185h-569.174v-0.854z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-add"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":724,"id":403,"name":"filter-add","prevSize":32,"code":59751},"setIdx":2,"setId":2,"iconIdx":498},{"icon":{"paths":["M320.018 650.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l136.532-136.533c6.827-6.827 15.787-10.24 25.6-9.387 9.387 0.853 17.92 5.973 23.467 14.080l46.507 69.973 151.467-151.465c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.225l-179.2 179.2c-6.827 6.827-15.787 10.24-25.6 9.387-9.387-0.853-17.92-5.973-23.467-14.080l-46.507-69.973-108.799 108.8c-6.4 6.4-14.507 9.387-22.613 9.387z","M704 522.667c-17.493 0-32-14.507-32-32v-53.333h-53.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trend-up"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":725,"id":402,"name":"trend-up","prevSize":32,"code":60225},"setIdx":2,"setId":2,"iconIdx":499},{"icon":{"paths":["M725.333 928h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c110.080 0 181.333-71.253 181.333-181.333v-341.333c0-110.080-71.253-181.333-181.333-181.333h-426.667c-110.080 0-181.333 71.253-181.333 181.333v42.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-42.667c0-146.773 98.56-245.333 245.333-245.333h426.667c146.773 0 245.333 98.56 245.333 245.333v341.333c0 146.773-98.56 245.333-245.333 245.333z","M524.382 898.56c-15.787 0-29.44-11.947-31.573-27.733-23.467-182.613-156.588-316.16-339.628-339.627-17.493-2.133-29.866-18.351-27.733-35.844s18.346-29.862 35.84-27.729c212.48 27.307 367.788 182.187 394.668 394.667 2.133 17.493-10.24 33.702-27.733 35.836-0.853 0.427-2.56 0.431-3.84 0.431z","M381.007 944.218c-15.787 0-29.44-11.947-31.573-27.733-16.64-130.133-111.787-225.284-241.92-241.924-17.493-2.133-29.867-18.342-27.734-35.836s18.347-29.867 35.84-27.733c160 20.48 276.48 137.387 296.96 296.96 2.133 17.493-10.24 33.702-27.733 35.836-1.28 0.427-2.56 0.431-3.84 0.431z","M218.889 971.516c-15.787 0-29.44-11.947-31.573-27.733-7.253-57.6-49.493-99.84-107.093-107.093-17.493-2.133-29.867-18.347-27.734-35.84s18.348-29.867 35.841-27.733c86.187 11.093 151.466 76.373 162.56 162.56 2.133 17.493-10.24 33.707-27.734 35.84-1.28 0-2.56 0-4.266 0z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mirroring-screen"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":726,"id":401,"name":"mirroring-screen","prevSize":32,"code":60226},"setIdx":2,"setId":2,"iconIdx":500},{"icon":{"paths":["M511.979 586.24c-33.28 0-64.853-12.8-89.175-36.693-31.147-31.147-43.52-75.947-33.28-119.893 10.667-44.8 46.508-80.64 91.308-91.307 43.52-10.667 88.32 1.708 119.893 33.281s43.52 75.946 33.28 119.892c-10.667 44.8-46.507 80.64-91.307 91.307-10.24 2.133-20.48 3.413-30.72 3.413zM511.979 398.508c-5.12 0-10.667 0.852-15.787 2.132-21.333 5.12-38.827 22.612-43.947 43.946-5.547 22.187 0.427 43.947 16.213 59.307 15.787 15.787 37.12 21.333 59.733 16.213 21.333-5.12 38.827-22.613 43.947-43.947 5.547-22.187-0.427-43.947-16.213-59.306-11.947-11.947-27.307-18.346-43.947-18.346z","M256.852 766.72c-7.68 0-15.787-2.987-21.76-8.533-82.773-76.8-130.133-185.173-130.133-297.813 0-224.428 182.613-407.040 407.042-407.040 224.427 0 407.036 182.612 407.036 407.040 0 113.493-45.649 218.453-128.422 296.533-12.8 11.947-33.28 11.52-45.227-1.28s-11.52-33.28 1.28-45.227c69.973-65.707 108.369-154.027 108.369-249.6 0-189.014-154.022-343.040-343.036-343.040-189.015 0-343.042 154.026-343.042 343.040 0 96.427 38.826 185.173 109.653 250.88 12.8 11.947 13.654 32.427 1.707 45.227-6.4 6.4-14.933 9.813-23.467 9.813z","M682.645 652.8c-7.68 0-15.787-2.987-21.76-8.533-12.8-11.947-13.653-32.427-1.28-45.227 35.413-37.547 55.040-87.040 55.040-138.24 0-111.785-90.88-202.237-202.24-202.237s-202.239 90.88-202.239 202.237c0 51.627 19.626 100.693 55.040 138.24 11.947 12.8 11.52 33.28-1.28 45.227s-33.28 11.524-45.227-1.276c-46.507-49.493-72.533-114.351-72.533-182.191 0-146.771 119.466-266.237 266.239-266.237s266.24 119.466 266.24 266.237c0 67.84-25.6 132.698-72.533 182.191-6.4 6.4-14.933 9.809-23.467 9.809z","M573.427 970.671h-122.453c-48.64 0-91.734-27.307-112.641-70.827s-15.36-94.293 14.933-132.267l61.44-76.373c23.894-29.867 59.307-46.933 97.707-46.933s73.813 17.067 97.707 46.933l61.44 76.373c30.293 37.973 36.267 88.747 14.933 132.267-21.76 43.52-64.853 70.827-113.067 70.827zM464.201 730.884l-61.44 76.373c-14.933 18.773-17.92 43.093-7.253 64.427 10.24 21.76 31.146 34.56 55.040 34.56h122.453c23.893 0 44.8-12.8 55.040-34.56s7.68-45.653-7.253-64.427l-61.44-76.373c-23.040-29.013-71.68-29.013-95.147 0z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airdrop"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":727,"id":400,"name":"airdrop","prevSize":32,"code":60227},"setIdx":2,"setId":2,"iconIdx":501},{"icon":{"paths":["M692.932 967.253c-18.347 0-41.387-5.547-69.973-22.613l-95.573-56.747c-7.253-4.267-23.467-4.267-30.72 0l-95.573 56.747c-60.587 35.84-97.28 20.907-113.493 8.96s-41.812-42.667-26.026-110.933l22.613-98.56c1.707-7.68-2.56-22.187-8.107-28.16l-79.36-79.36c-42.667-42.667-39.253-79.787-33.28-98.56s24.747-50.773 84.053-61.013l101.974-17.067c7.253-1.28 18.774-9.813 21.76-16.213l56.319-112.64c27.733-55.040 64.427-63.573 84.053-63.573s56.32 8.106 84.053 63.573l56.32 112.64c3.413 6.4 14.933 14.933 21.76 16.213l101.973 17.067c59.307 9.813 78.080 42.24 84.053 61.013s9.387 55.893-33.28 98.56l-79.36 79.36c-5.547 5.547-9.813 20.48-8.107 28.16l22.613 98.133c15.787 68.693-9.387 98.987-26.027 110.933-7.68 6.827-22.187 14.080-42.667 14.080zM512.026 820.907c17.067 0 34.133 3.84 47.787 11.947l95.573 56.747c25.173 14.933 40.107 14.933 43.093 12.373 3.413-2.56 7.68-16.64 1.28-44.8l-22.613-98.133c-6.827-29.013 4.267-66.56 25.173-87.467l79.36-79.36c15.787-15.787 19.2-28.16 17.493-33.707s-11.52-13.653-33.707-17.067l-101.973-17.067c-27.307-4.693-56.32-26.027-68.693-50.773l-56.32-112.639c-9.813-19.2-20.48-28.16-26.88-28.16s-17.067 8.533-26.88 28.16l-56.32 112.639c-12.372 24.747-41.386 46.080-68.693 50.773l-101.972 17.067c-22.187 3.84-32 11.52-33.707 17.067s1.707 17.92 17.493 33.707l79.36 79.36c20.907 20.907 32 58.88 25.173 87.467l-22.613 98.56c-6.4 28.587-2.133 42.667 1.28 44.8 3.413 2.56 18.347 2.56 43.094-12.373l95.572-56.747c14.507-8.107 31.573-12.373 48.64-12.373z","M256 416c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M768 416c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M512 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ranking"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":728,"id":399,"name":"ranking","prevSize":32,"code":60228},"setIdx":2,"setId":2,"iconIdx":502},{"icon":{"paths":["M810.667 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":729,"id":398,"name":"notification-1","prevSize":32,"code":60229},"setIdx":2,"setId":2,"iconIdx":503},{"icon":{"paths":["M756.915 970.667h-233.813c-17.493 0-32-14.507-32-32s14.507-32 32-32h233.813c70.827 0 128.427-57.6 128.427-128.427v-18.773h-49.067c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.76-22.187 51.627-34.56 83.627-34.56h54.187v-29.44c0-70.826-57.6-128.427-128.427-128.427h-489.812c-70.827 0-128.427 57.6-128.427 128.427v73.813c0 17.493-14.507 32-32 32s-32-14.507-32-32v-73.813c0-106.24 86.187-192.427 192.427-192.427h489.812c106.24 0 192.427 86.187 192.427 192.427v61.44c0 17.493-14.507 32-32 32h-86.187c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.56 28.16 29.44 50.773 60.16 50.773h81.067c17.493 0 32 14.507 32 32v50.773c0.427 106.24-85.76 192.427-192 192.427z","M106.667 561.493c-17.493 0-32-14.507-32-32v-194.984c0-63.573 40.107-121.175 99.413-143.789l338.773-128c34.987-13.227 73.813-8.532 104.107 12.802 30.72 21.333 48.64 55.893 48.64 93.013v162.132c0 17.493-14.507 32-32 32s-32-14.507-32-32v-162.132c0-16.213-7.68-31.148-21.333-40.534s-29.867-11.52-45.227-5.547l-338.773 128c-34.56 13.227-58.027 46.935-58.027 84.055v194.984c0.427 17.92-14.080 32-31.574 32z","M836.288 759.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.76-22.187 51.627-34.56 83.627-34.56h88.747c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.48zM918.635 584.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.56 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M597.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M405.333 840.107c-17.493 0-32-14.507-32-32v-54.613c0-9.387-7.68-17.493-17.493-17.493h-227.84c-17.493 0-32-14.507-32-32s14.507-32 32-32h227.84c44.8 0 81.493 36.693 81.493 81.493v54.613c0 17.493-14.507 32-32 32z","M180.030 788.041c-8.107 0-16.213-2.987-22.613-9.387l-52.053-52.049c-12.373-12.373-12.373-32.858 0-45.231l52.053-52.053c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-29.44 29.44 29.44 29.44c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M405.333 961.271h-227.84c-44.8 0-81.493-36.693-81.493-81.493v-54.613c0-17.493 14.507-32 32-32s32 14.507 32 32v54.613c0 9.387 7.68 17.493 17.493 17.493h227.84c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M353.31 1013.333c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l29.44-29.436-29.44-29.44c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l52.053 52.053c12.373 12.373 12.373 32.853 0 45.227l-52.053 52.053c-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["empty-wallet-change"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":730,"id":397,"name":"empty-wallet-change","prevSize":32,"code":60230},"setIdx":2,"setId":2,"iconIdx":504},{"icon":{"paths":["M470.187 864h-150.187c-32 0-55.467-1.28-75.52-4.267-142.080-15.787-169.813-100.267-169.813-241.067v-213.333c0-140.8 28.16-225.707 171.093-241.493 18.773-2.56 42.24-3.84 74.24-3.84h147.627c17.493 0 32 14.507 32 32s-14.507 32-32 32h-147.627c-29.013 0-49.493 1.28-66.133 3.413-86.613 9.387-115.2 36.693-115.2 177.92v213.333c0 141.227 28.587 168.107 113.92 177.92 17.92 2.56 38.4 3.413 67.413 3.413h150.187c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M703.979 864h-63.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h63.147c29.013 0 49.493-1.28 66.133-3.413 86.613-9.387 115.2-36.693 115.2-177.92v-213.333c0-141.227-28.587-168.107-113.92-177.92-17.92-2.56-38.4-3.413-67.413-3.413h-63.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h63.147c32 0 55.467 1.28 75.52 4.267 142.080 15.787 169.813 100.267 169.813 241.067v213.333c0 140.8-28.16 225.707-171.093 241.493-18.773 2.56-42.24 3.84-74.24 3.84z","M640 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M341.333 693.333c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":731,"id":396,"name":"check","prevSize":32,"code":60231},"setIdx":2,"setId":2,"iconIdx":505},{"icon":{"paths":["M298.667 626.773c-17.493 0-32-14.507-32-32v-136.96c0-17.493 14.507-32.001 32-32.001s32 14.508 32 32.001v136.96c0 17.92-14.507 32-32 32z","M725.333 626.773c-17.493 0-32-14.507-32-32v-136.96c0-17.493 14.507-32.001 32-32.001s32 14.508 32 32.001v136.96c0 17.92-14.507 32-32 32z","M554.667 970.667h-170.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v170.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-170.667c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M750.093 928.009c-8.533 0-16.64-3.413-22.613-9.387l-67.413-66.987c-12.373-12.373-12.8-32.853 0-45.227 12.373-12.373 32.853-12.8 45.227 0l43.093 42.667 123.733-144.64c11.52-13.653 31.573-14.933 45.227-3.413 13.227 11.52 14.933 31.573 3.413 45.227l-145.92 170.667c-5.973 6.827-14.080 10.667-23.040 11.093-0.853 0-1.28 0-1.707 0z","M512 608c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-success"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":732,"id":395,"name":"chart-success","prevSize":32,"code":60232},"setIdx":2,"setId":2,"iconIdx":506},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M672 416h-320c-17.493 0-32-14.507-32-32s14.507-32 32-32h320c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M672 672h-320c-17.493 0-32-14.507-32-32s14.507-32 32-32h320c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":733,"id":394,"name":"document","prevSize":32,"code":60233},"setIdx":2,"setId":2,"iconIdx":507},{"icon":{"paths":["M553.378 783.356c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.387-22.613 9.387z","M462.059 784.64c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-5.973 5.973-14.080 9.387-22.613 9.387z","M318.263 825.178h-81.92c-125.44-8.96-181.76-105.387-181.76-191.573s56.32-182.613 179.627-191.147c17.067-1.707 32.853 11.947 34.133 29.867s-11.947 32.853-29.867 34.133c-82.773 5.973-119.893 68.267-119.893 127.573s37.12 121.6 119.893 127.573h79.787c17.493 0 32 14.507 32 32s-14.507 31.573-32 31.573z","M711.249 825.173c-0.853 0-1.28 0-2.133 0-17.493 0-33.707-14.507-33.707-32 0-18.347 14.080-32 31.573-32 52.907 0 99.413-18.347 136.107-51.2 66.56-58.027 70.827-141.653 52.907-200.533-17.92-58.453-67.84-125.44-154.88-136.107-14.080-1.707-25.173-12.373-27.733-26.453-17.067-102.4-72.107-173.227-155.733-198.827-86.613-26.88-186.879-0.427-249.599 65.28-61.013 63.573-75.093 152.747-39.68 250.88 5.973 16.64-2.56 34.987-19.2 40.96s-34.987-2.56-40.96-19.2c-43.093-120.32-23.467-235.52 53.76-316.587 78.933-82.773 205.652-115.627 314.452-82.347 99.84 30.72 170.24 113.067 195.84 227.413 87.467 19.627 157.013 85.76 184.747 177.067 30.293 99.413 2.987 201.813-71.253 266.667-47.787 42.667-109.653 66.987-174.507 66.987z","M512 950.613c-85.76 0-165.973-45.653-209.92-119.467-4.693-7.253-9.387-16.213-13.227-25.173-14.507-30.293-22.187-64.427-22.187-100.693 0-135.253 110.080-245.333 245.333-245.333s245.333 110.080 245.333 245.333c0 36.267-7.68 70.4-22.613 101.973-3.413 8.107-8.107 16.64-13.227 24.747-43.52 72.96-123.733 118.613-209.493 118.613zM512 523.947c-99.84 0-181.333 81.493-181.333 181.333 0 26.453 5.547 51.627 16.213 73.813 3.413 7.253 6.4 13.227 9.813 18.773 32.427 55.040 91.733 88.747 154.88 88.747s122.453-33.707 154.453-87.893c3.84-6.4 6.827-11.947 9.813-18.347 11.52-23.467 17.067-48.213 17.067-75.093 0.427-99.84-81.067-181.333-180.907-181.333z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":734,"id":393,"name":"cloud-remove","prevSize":32,"code":60234},"setIdx":2,"setId":2,"iconIdx":508},{"icon":{"paths":["M896 970.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M238.932 842.662h-68.266c-40.96 0-74.667-33.707-74.667-74.667v-367.788c0-40.96 33.707-74.667 74.667-74.667h68.266c40.96 0 74.667 33.707 74.667 74.667v367.788c0 40.96-33.707 74.667-74.667 74.667zM170.667 389.114c-5.973 0-10.667 4.693-10.667 10.667v368.215c0 5.973 4.693 10.667 10.667 10.667h68.266c5.973 0 10.667-4.693 10.667-10.667v-367.788c0-5.973-4.693-10.667-10.667-10.667h-68.266v-0.427z","M546.142 842.662h-68.267c-40.96 0-74.667-33.707-74.667-74.667v-503.892c0-40.96 33.707-74.667 74.667-74.667h68.267c40.96 0 74.667 33.707 74.667 74.667v503.892c0 40.96-33.707 74.667-74.667 74.667zM477.875 253.437c-5.973 0-10.667 4.693-10.667 10.667v503.892c0 5.973 4.693 10.667 10.667 10.667h68.267c5.973 0 10.667-4.693 10.667-10.667v-503.892c0-5.973-4.693-10.667-10.667-10.667h-68.267z","M853.35 842.667h-68.267c-40.96 0-74.667-33.707-74.667-74.667v-640c0-40.96 33.707-74.667 74.667-74.667h68.267c40.96 0 74.667 33.707 74.667 74.667v640c0 40.96-33.707 74.667-74.667 74.667zM785.084 117.333c-5.973 0-10.667 4.693-10.667 10.667v640c0 5.973 4.693 10.667 10.667 10.667h68.267c5.973 0 10.667-4.693 10.667-10.667v-640c0-5.973-4.693-10.667-10.667-10.667h-68.267z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-21"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":735,"id":392,"name":"chart-21","prevSize":32,"code":60235},"setIdx":2,"setId":2,"iconIdx":509},{"icon":{"paths":["M537.6 772.689c-9.387 0-16.64-2.56-20.907-4.267-9.387-4.267-30.716-18.347-30.716-57.173v-113.92l-98.136 90.027c-12.8 11.947-33.28 11.093-45.227-2.133s-11.094-33.28 2.133-45.227l139.945-128.427-139.945-128.425c-13.227-11.947-14.080-32-2.133-45.227 11.947-12.8 32.427-14.080 45.227-2.134l98.136 90.027v-113.493c0-38.4 21.329-52.48 30.716-57.173 8.96-4.267 33.707-11.52 63.573 12.8l87.893 73.387c12.8 10.667 20.48 26.453 20.907 42.667s-6.4 32.426-18.773 43.519l-90.88 83.2 90.88 83.2c12.373 11.52 19.2 27.307 18.773 43.52s-8.107 32-20.907 42.667l-87.893 73.387c-16.213 15.36-31.147 19.2-42.667 19.2zM550.4 572.156v124.587l71.258-59.307-71.258-65.28zM550.4 327.251v124.585l71.258-65.279-71.258-59.306z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bluetooth-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":736,"id":391,"name":"bluetooth-circle","prevSize":32,"code":60236},"setIdx":2,"setId":2,"iconIdx":510},{"icon":{"paths":["M874.667 650.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c25.173 0 30.72-3.84 31.147-3.84 0.853-2.56 0.853-17.493 0.853-28.16v-85.333c0-10.667 0-25.173-1.707-29.013-0.427 0.427-6.827-2.987-30.293-2.987-17.493 0-32-14.507-32-32s14.507-32 32-32c88.747 0 96 43.52 96 96v85.333c0 52.48-7.253 96-96 96z","M272.195 629.338c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.733-21.76-23.467-38.827 12.8-50.773 12.8-104.533 0-155.307-4.267-17.067 5.973-34.56 23.467-38.827 17.067-4.267 34.133 6.4 38.4 23.467 15.36 61.013 15.36 125.44 0 186.027-3.413 14.507-16.64 24.32-30.72 24.32z","M421.529 629.329c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.734-21.76-23.467-38.827 12.8-50.773 12.8-104.533 0-155.307-4.267-17.065 5.974-34.558 23.467-38.825 17.067-4.267 34.56 5.973 38.827 23.467 15.36 61.011 15.36 125.438 0 186.025-3.84 14.507-17.067 24.32-31.147 24.32z","M570.863 629.329c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.733-21.76-23.467-38.827 12.8-50.773 12.8-104.533 0-155.307-4.267-17.065 5.973-34.558 23.467-38.825 17.067-4.267 34.56 5.973 38.827 23.467 15.36 61.011 15.36 125.438 0 186.025-3.84 14.507-17.067 24.32-31.147 24.32z","M554.667 842.667h-256c-188.16 0-245.333-57.173-245.333-245.333v-170.667c0-188.16 57.173-245.333 245.333-245.333h256c188.16 0 245.333 57.173 245.333 245.333v170.667c0 188.16-57.173 245.333-245.333 245.333zM298.667 245.333c-152.32 0-181.333 29.013-181.333 181.333v170.667c0 152.32 29.013 181.333 181.333 181.333h256c152.32 0 181.333-29.013 181.333-181.333v-170.667c0-152.32-29.013-181.333-181.333-181.333h-256z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["battery-full"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":737,"id":390,"name":"battery-full","prevSize":32,"code":59752},"setIdx":2,"setId":2,"iconIdx":511},{"icon":{"paths":["M298.667 458.667h-85.333c-103.253 0-160-56.747-160-160v-85.333c0-103.253 56.747-160 160-160h85.333c103.253 0 160 56.747 160 160v85.333c0 103.253-56.747 160-160 160zM213.333 117.333c-67.413 0-96 28.587-96 96v85.333c0 67.413 28.587 96 96 96h85.333c67.413 0 96-28.587 96-96v-85.333c0-67.413-28.587-96-96-96h-85.333z","M810.667 458.667h-85.333c-103.253 0-160-56.747-160-160v-85.333c0-103.253 56.747-160 160-160h85.333c103.253 0 160 56.747 160 160v85.333c0 103.253-56.747 160-160 160zM725.333 117.333c-67.413 0-96 28.587-96 96v85.333c0 67.413 28.587 96 96 96h85.333c67.413 0 96-28.587 96-96v-85.333c0-67.413-28.587-96-96-96h-85.333z","M810.667 970.667h-85.333c-103.253 0-160-56.747-160-160v-85.333c0-103.253 56.747-160 160-160h85.333c103.253 0 160 56.747 160 160v85.333c0 103.253-56.747 160-160 160zM725.333 629.333c-67.413 0-96 28.587-96 96v85.333c0 67.413 28.587 96 96 96h85.333c67.413 0 96-28.587 96-96v-85.333c0-67.413-28.587-96-96-96h-85.333z","M298.667 970.667h-85.333c-103.253 0-160-56.747-160-160v-85.333c0-103.253 56.747-160 160-160h85.333c103.253 0 160 56.747 160 160v85.333c0 103.253-56.747 160-160 160zM213.333 629.333c-67.413 0-96 28.587-96 96v85.333c0 67.413 28.587 96 96 96h85.333c67.413 0 96-28.587 96-96v-85.333c0-67.413-28.587-96-96-96h-85.333z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["category"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":738,"id":389,"name":"category","prevSize":32,"code":60237},"setIdx":2,"setId":2,"iconIdx":512},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M640 501.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 672h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667h-256c-239.787 0-288-113.067-288-295.68v-263.253c0-202.24 68.267-284.587 243.627-294.4h343.040c177.067 9.813 245.333 92.16 245.333 294.4v270.933c0 17.493-14.507 32-32 32s-32-14.507-32-32v-270.933c0-186.027-61.867-223.573-183.040-230.4h-339.627c-119.467 6.827-181.333 44.373-181.333 230.4v263.253c0 163.413 31.147 231.68 224 231.68h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667c-4.267 0-8.107-0.853-12.373-2.56-11.947-5.12-19.627-16.64-19.627-29.44v-128c0-103.253 56.747-160 160-160h128c12.8 0 24.747 7.68 29.44 19.627 5.12 11.947 2.133 25.6-6.827 34.987l-256 256c-5.973 5.973-14.080 9.387-22.613 9.387zM768 714.667c-67.413 0-96 28.587-96 96v50.773l146.773-146.773h-50.773z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stickynote"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":739,"id":388,"name":"stickynote","prevSize":32,"code":59753},"setIdx":2,"setId":2,"iconIdx":513},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 10.24 0 20.907-0.853 30.72-1.28 12.8-10.24 23.893-22.613 27.733s-26.027-0.427-34.133-10.667c-30.293-37.12-75.093-58.453-123.733-58.453-36.267 0-71.68 12.373-99.84 34.987-38.4 30.293-60.16 75.52-60.16 125.013 0 48.213 21.333 93.44 58.453 123.733 10.24 8.107 14.080 21.76 10.667 34.133-3.84 12.373-14.507 21.333-27.733 22.613-9.813 0.853-20.48 0.853-30.72 0.853zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h214.187c-21.333-34.56-32.853-75.093-32.853-117.333 0-69.12 30.72-132.693 84.48-174.933 71.68-58.027 180.48-63.147 256.853-16.213v-214.187c0-196.693-69.973-266.667-266.667-266.667h-256z","M916.463 335.354h-808.963c-17.493 0-32-14.507-32-32s14.507-32 32-32h808.963c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M363.5 329.38c-17.493 0-32-14.507-32-32v-207.36c0-17.493 14.507-32 32-32s32 14.507 32 32v207.36c0 17.493-14.507 32-32 32z","M660.501 310.182c-17.493 0-32-14.507-32-32v-188.162c0-17.493 14.507-32 32-32s32 14.507 32 32v188.162c0 17.92-14.080 32-32 32z","M789.333 1013.333c-52.053 0-102.4-17.92-142.080-50.773-52.053-42.24-81.92-105.387-81.92-173.227 0-69.12 30.72-132.693 84.48-174.933 39.253-31.573 88.747-49.067 139.52-49.067 67.84 0 130.987 29.867 173.227 82.347 32.427 39.253 50.773 89.6 50.773 141.653 0 63.573-27.733 125.013-75.947 168.107-41.813 36.267-94.293 55.893-148.053 55.893zM789.333 629.333c-36.267 0-71.68 12.373-99.84 34.987-38.4 30.293-60.16 75.52-60.16 125.013 0 48.213 21.333 93.44 58.453 123.733 58.027 48.213 148.053 47.787 207.36-3.84 34.133-30.72 54.187-74.667 54.187-119.893 0-37.12-12.8-72.96-36.267-101.12-30.293-37.547-75.52-58.88-123.733-58.88z","M741.495 869.542c-10.667 0-21.333-5.547-27.307-15.36-8.96-15.36-4.267-34.987 11.093-43.947l44.373-26.453v-53.76c0-17.493 14.507-32 32-32s32 14.507 32 32v72.107c0 11.093-5.973 21.76-15.36 27.307l-60.16 35.84c-5.547 2.56-11.093 4.267-16.64 4.267z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-time"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":740,"id":387,"name":"video-time","prevSize":32,"code":59754},"setIdx":2,"setId":2,"iconIdx":514},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M938.667 544h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":741,"id":386,"name":"grid-2","prevSize":32,"code":60238},"setIdx":2,"setId":2,"iconIdx":515},{"icon":{"paths":["M369.92 970.667h-284.587c-17.493 0-32-14.507-32-32v-256c0-64.853 52.48-117.333 117.333-117.333h199.253c17.493 0 32 14.507 32 32v341.333c0 17.493-14.507 32-32 32zM117.333 906.667h220.587v-277.333h-167.253c-29.44 0-53.333 23.893-53.333 53.333v224z","M654.089 970.667h-284.588c-17.493 0-32-14.507-32-32v-426.667c0-64.853 52.48-117.333 117.335-117.333h113.92c64.853 0 117.333 52.48 117.333 117.333v426.667c0 17.493-14.080 32-32 32zM401.926 906.667h220.589v-394.667c0-29.44-23.893-53.333-53.333-53.333h-113.92c-29.442 0-53.335 23.893-53.335 53.333v394.667z","M938.671 970.667h-284.587c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32h199.253c64.853 0 117.333 52.48 117.333 117.333v128c0 17.493-14.507 32-32 32zM686.084 906.667h220.587v-96c0-29.44-23.893-53.333-53.333-53.333h-167.253v149.333z","M584.486 356.266c-10.24 0-23.040-2.988-37.547-11.521l-34.987-20.906-34.56 20.48c-34.987 20.907-58.026 8.533-66.559 2.56s-26.88-24.747-17.92-64l8.107-35.414-29.013-29.013c-17.92-17.92-24.32-39.253-17.92-58.88s23.893-33.28 48.64-37.547l37.12-6.4 20.907-41.812c23.040-45.653 78.933-45.653 101.547 0l20.907 41.812 37.12 6.4c24.747 4.267 42.667 17.92 48.64 37.547 6.4 19.627-0.427 40.96-17.92 58.88l-29.013 29.013 8.107 35.414c8.96 39.68-9.387 58.027-17.92 64.427-3.84 3.413-13.653 8.96-27.733 8.96zM511.953 259.412c10.24 0 20.48 2.561 29.013 7.681l23.893 14.080-5.12-23.040c-4.267-17.92 2.133-39.68 15.36-52.906l21.76-21.76-26.88-4.693c-17.067-2.987-33.707-15.36-41.387-30.72l-16.64-32-16.213 32c-7.68 15.36-24.32 27.733-41.387 30.72l-26.88 4.267 21.76 21.759c13.227 13.227 19.2 34.988 15.36 52.908l-5.12 23.039 23.893-14.080c8.107-5.12 18.347-7.254 28.587-7.254z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ranking-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":742,"id":385,"name":"ranking-1","prevSize":32,"code":60239},"setIdx":2,"setId":2,"iconIdx":516},{"icon":{"paths":["M512 928c-229.547 0-416-186.453-416-416s186.453-416 416-416c229.547 0 416 186.453 416 416s-186.453 416-416 416zM512 160c-194.133 0-352 157.867-352 352s157.867 352 352 352c194.133 0 352-157.867 352-352s-157.867-352-352-352z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["record"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":743,"id":384,"name":"record","prevSize":32,"code":60240},"setIdx":2,"setId":2,"iconIdx":517},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M298.667 949.333c-17.493 0-32-14.507-32-32v-810.667c0-17.493 14.507-32 32-32s32 14.507 32 32v810.667c0 17.493-14.507 32-32 32z","M489.408 748.813c-52.907 0-95.575-43.093-95.575-95.573s43.095-95.573 95.575-95.573c52.48 0 95.573 43.093 95.573 95.573s-43.093 95.573-95.573 95.573zM489.408 621.239c-17.493 0-31.573 14.080-31.573 31.573s14.080 31.573 31.573 31.573c17.493 0 31.573-14.080 31.573-31.573s-14.507-31.573-31.573-31.573z","M552.998 685.227c-17.493 0-32-14.507-32-32v-256.427c0-39.253 24.747-71.679 62.72-81.919l127.147-34.56c39.253-10.667 64-0.427 77.653 10.24 19.627 14.933 29.867 39.253 29.867 72.107v248.746c0 17.493-14.507 32-32 32s-32-14.507-32-32v-248.746c0-14.080-2.987-20.053-4.693-20.906-2.133-1.707-9.387-2.559-21.76 0.854l-127.147 34.56c-10.24 2.987-15.36 9.386-15.36 20.479v256.426c-0.427 16.64-14.933 31.147-32.427 31.147z","M722.325 706.146c-52.907 0-95.573-43.093-95.573-95.573 0-52.907 43.093-95.573 95.573-95.573s95.573 43.093 95.573 95.573c0.427 52.907-42.667 95.573-95.573 95.573zM722.325 578.999c-17.493 0-31.573 14.080-31.573 31.573s14.080 31.573 31.573 31.573c17.493 0 31.573-14.080 31.573-31.573s-14.080-31.573-31.573-31.573z","M552.943 503.036c-14.080 0-26.88-9.387-30.72-23.467-4.693-17.067 5.547-34.56 22.613-39.253l233.387-63.572c17.067-4.693 34.56 5.545 39.253 22.612s-5.547 34.564-22.613 39.257l-233.387 63.569c-2.987 0.427-5.973 0.853-8.533 0.853z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-dashboard"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":744,"id":383,"name":"music-dashboard","prevSize":32,"code":60241},"setIdx":2,"setId":2,"iconIdx":518},{"icon":{"paths":["M234.667 458.667c-99.84 0-181.333-81.493-181.333-181.333s81.493-181.333 181.333-181.333c99.84 0 181.333 81.493 181.333 181.333s-81.493 181.333-181.333 181.333zM234.667 160c-64.853 0-117.333 52.48-117.333 117.333s52.48 117.333 117.333 117.333c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333z","M234.667 928c-99.84 0-181.333-81.493-181.333-181.333s81.493-181.333 181.333-181.333c99.84 0 181.333 81.493 181.333 181.333s-81.493 181.333-181.333 181.333zM234.667 629.333c-64.853 0-117.333 52.48-117.333 117.333s52.48 117.333 117.333 117.333c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333z","M369.095 713.826c-9.813 0-19.2-4.267-25.6-12.8-10.667-14.080-7.679-34.133 6.401-44.8l569.601-425.815c14.080-10.667 34.133-7.68 44.8 6.4s7.68 34.133-6.4 44.8l-569.601 425.815c-5.547 4.267-12.374 6.4-19.2 6.4z","M938.697 798.72c-6.827 0-13.227-2.133-19.2-6.4l-569.601-425.812c-14.080-10.667-17.068-30.72-6.401-44.8s30.721-17.067 44.801-6.4l569.601 425.812c14.080 10.667 17.067 30.72 6.4 44.8-6.4 8.107-15.787 12.8-25.6 12.8z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scissor-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":745,"id":382,"name":"scissor-1","prevSize":32,"code":60242},"setIdx":2,"setId":2,"iconIdx":519},{"icon":{"paths":["M512 544c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM512 117.333c-99.84 0-181.333 81.493-181.333 181.333s81.493 181.333 181.333 181.333c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.333-181.333-181.333z","M145.5 970.667c-17.493 0-32-14.507-32-32 0-182.187 178.773-330.667 398.508-330.667 43.093 0 85.329 5.547 126.289 17.067 17.067 4.693 26.884 22.187 22.191 39.253s-22.191 26.88-39.253 22.187c-34.987-9.813-71.68-14.507-109.227-14.507-184.322 0-334.508 119.467-334.508 266.667 0 17.493-14.507 32-32 32z","M768 970.667c-50.347 0-98.133-18.773-135.253-52.48-14.933-12.8-28.16-28.587-38.4-46.080-18.773-30.72-29.013-66.987-29.013-104.107 0-53.333 20.48-103.253 57.173-141.227 38.4-39.68 90.027-61.44 145.493-61.44 58.027 0 113.067 24.747 150.613 67.413 33.28 37.12 52.053 84.907 52.053 135.253 0 16.213-2.133 32.427-6.4 47.787-4.267 19.2-12.373 39.253-23.467 56.747-35.413 60.587-101.973 98.133-172.8 98.133zM768 629.333c-37.973 0-72.96 14.933-99.413 41.813-25.173 26.027-39.253 60.16-39.253 96.853 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.787 22.613 26.027 31.573 25.6 23.467 58.453 36.267 92.587 36.267 48.213 0 93.867-25.6 118.613-66.987 7.253-11.947 12.8-25.6 15.787-38.827 2.987-11.093 4.267-21.76 4.267-32.853 0-34.133-12.8-66.987-35.84-92.587-25.6-29.867-63.147-46.507-102.827-46.507z","M721.894 844.796c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 6.4-14.507 9.387-22.613 9.387z","M813.252 845.649c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":746,"id":381,"name":"user-remove","prevSize":32,"code":60243},"setIdx":2,"setId":2,"iconIdx":520},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M632.738 601.178h-180.907c-17.493 0-31.998-14.507-31.998-32s14.505-32 31.998-32h148.907v-148.907c0-17.493 14.507-32 32-32s32 14.507 32 32v180.907c0 17.92-14.507 32-32 32z","M632.721 601.178c-8.107 0-16.213-2.987-22.613-9.387l-241.494-241.492c-12.373-12.373-12.373-32.854 0-45.227s32.853-12.373 45.226 0l241.495 241.492c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M512.017 777.822c-90.025 0-180.479-14.507-266.239-43.093-16.64-5.547-25.6-23.893-20.053-40.533s23.894-26.027 40.534-20.053c158.72 52.907 333.225 52.907 491.945 0 16.64-5.547 34.987 3.413 40.533 20.053s-3.413 34.987-20.053 40.533c-86.187 29.013-176.64 43.093-266.667 43.093z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receive-square-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":747,"id":380,"name":"receive-square-2","prevSize":32,"code":60244},"setIdx":2,"setId":2,"iconIdx":521},{"icon":{"paths":["M744.538 970.675c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893l-18.773-14.080c-14.080-10.667-16.64-30.72-5.973-44.8s30.72-16.64 44.8-5.973l17.92 13.227c46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-0.853-2.133-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-11.093-4.267-18.347-4.693-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8-0.853-0.427-5.12-2.133-5.973-2.56-0.427-0.427-5.12-2.133-5.547-2.56-9.387-4.693-19.627-11.52-31.573-20.053-14.080-10.24-17.493-30.293-7.253-44.8s30.293-17.493 44.8-7.253c8.96 6.4 17.067 11.52 23.893 15.36l-0.427 2.56 31.147-31.147c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.36 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 12.373-61.44 18.773-95.147 18.773zM595.204 640.435l-6.827 29.013 11.52-29.867c-1.707-0.427-3.84 0-4.693 0.853z","M318.72 735.573c-8.107 0-16.64-2.987-22.613-9.387-44.8-45.227-86.187-93.44-122.027-143.36-36.693-51.2-66.133-101.973-87.040-151.893-22.613-52.48-33.707-103.68-33.707-151.893 0-33.28 5.973-64.853 17.493-94.293 12.373-30.72 31.147-58.453 57.173-82.773 32.853-32 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.48 23.893 40.533 45.227 60.16 65.707 12.373 12.8 12.373 32.853-0.427 45.227s-32.853 12.373-45.227-0.427c-20.907-21.333-41.387-43.947-63.147-69.12-20.053-23.467-34.56-43.52-43.52-60.16-0.853-1.707-1.707-3.413-2.133-5.12l-2.987-7.253c-2.56-9.387-3.413-14.933-3.413-20.907 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-3.413-8.107-8.107-15.36-14.080-23.893l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227s-13.653-4.693-21.333-4.693c-23.467 0-45.227 10.24-66.133 30.72-19.2 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M85.352 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.332-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.332 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-slash"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":748,"id":379,"name":"call-slash","prevSize":32,"code":60245},"setIdx":2,"setId":2,"iconIdx":522},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":749,"id":378,"name":"document-1","prevSize":32,"code":59755},"setIdx":2,"setId":2,"iconIdx":523},{"icon":{"paths":["M614.4 885.333h-204.8c-187.307 0-270.933-83.627-270.933-270.933v-204.8c0-187.307 83.627-270.933 270.933-270.933h204.8c187.307 0 270.933 83.627 270.933 270.933v204.8c0 187.307-83.627 270.933-270.933 270.933zM409.6 202.667c-152.747 0-206.933 54.187-206.933 206.933v204.8c0 152.747 54.187 206.933 206.933 206.933h204.8c152.747 0 206.933-54.187 206.933-206.933v-204.8c0-152.747-54.187-206.933-206.933-206.933h-204.8z","M576 757.333h-128c-123.733 0-181.333-57.6-181.333-181.333v-128c0-123.733 57.6-181.333 181.333-181.333h128c123.733 0 181.333 57.6 181.333 181.333v128c0 123.733-57.6 181.333-181.333 181.333zM448 330.667c-88.747 0-117.333 28.587-117.333 117.333v128c0 88.747 28.587 117.333 117.333 117.333h128c88.747 0 117.333-28.587 117.333-117.333v-128c0-88.747-28.587-117.333-117.333-117.333h-128z","M341.75 202.667c-17.92 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M682.667 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M938.667 373.333h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M938.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M938.667 714.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M682.667 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512.418 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M341.75 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M170.667 373.333h-85.333c-17.493 0-32-14.080-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M170.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M170.667 714.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cpu"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":750,"id":377,"name":"cpu","prevSize":32,"code":60246},"setIdx":2,"setId":2,"iconIdx":524},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z","M401.894 808.538c-37.12 0-123.307-45.227-149.76-128-18.347-57.173 2.987-131.84 69.12-153.173 27.733-8.96 57.173-5.12 80.64 9.387 23.040-14.507 52.908-18.347 81.068-9.387 66.133 21.333 87.467 96 69.12 153.173-26.88 84.48-117.333 128-150.188 128zM312.72 661.338c17.92 55.893 78.507 82.347 89.6 83.2 11.947-1.28 71.681-30.72 88.321-83.2 8.96-28.16 0-64-27.733-72.96-11.52-3.84-27.307-1.707-34.56 9.387-5.974 8.96-15.361 14.080-26.028 14.507-11.52 0-20.48-4.693-26.453-13.227-8.96-12.373-24.32-14.080-35.413-10.24-27.307 8.533-36.693 44.373-27.733 72.533z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-favorite"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":751,"id":376,"name":"document-favorite","prevSize":32,"code":59756},"setIdx":2,"setId":2,"iconIdx":525},{"icon":{"paths":["M725.333 906.667h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c122.027 0 181.333-59.307 181.333-181.333v-298.667c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v298.667c0 155.733-89.6 245.333-245.333 245.333z","M511.949 549.12c-35.84 0-72.107-11.093-99.84-33.707l-133.547-106.668c-13.653-11.093-16.213-31.147-5.12-44.8s31.146-16.213 44.8-5.12l133.547 106.668c32.427 26.027 87.467 26.027 119.893 0l133.547-106.668c13.653-11.093 34.133-8.96 44.8 5.12 11.093 13.653 8.96 34.133-5.12 44.8l-133.547 106.668c-27.307 22.613-63.573 33.707-99.413 33.707z","M341.333 736h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 565.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms-tracking"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":752,"id":375,"name":"sms-tracking","prevSize":32,"code":59757},"setIdx":2,"setId":2,"iconIdx":526},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M359.237 762.014c-54.613 0-98.987-44.373-98.987-98.987s44.374-98.987 98.987-98.987c54.613 0 98.986 44.373 98.986 98.987s-44.372 98.987-98.986 98.987zM359.237 628.041c-19.2 0-34.987 15.787-34.987 34.987s15.787 34.987 34.987 34.987c19.2 0 34.987-15.787 34.987-34.987s-15.787-34.987-34.987-34.987z","M426.25 695.044c-17.493 0-32-14.507-32-32v-270.080c0-40.96 25.601-74.242 64.856-84.909l133.973-36.693c40.533-11.093 66.133-0.427 80.213 10.24 20.48 15.787 30.716 40.535 30.716 74.242v261.973c0 17.493-14.507 32-32 32s-32-14.507-32-32v-261.973c0-14.080-2.987-21.762-5.547-23.469-2.133-1.707-9.813-3.413-24.747 0.427l-133.969 36.693c-11.947 3.413-17.498 10.668-17.498 23.042v270.080c0 17.92-14.507 32.427-31.999 32.427z","M604.988 717.222c-54.613 0-98.987-44.373-98.987-98.987s44.373-98.987 98.987-98.987c54.613 0 98.987 44.373 98.987 98.987s-44.373 98.987-98.987 98.987zM604.988 583.249c-19.2 0-34.987 15.787-34.987 34.987s15.787 34.987 34.987 34.987c19.2 0 34.987-15.787 34.987-34.987s-15.787-34.987-34.987-34.987z","M426.192 503.053c-14.080 0-26.879-9.387-30.719-23.467-4.693-17.067 5.545-34.556 22.612-39.249l245.761-66.989c17.493-4.693 34.56 5.548 39.253 22.615s-5.547 34.561-22.613 39.254l-245.76 66.987c-2.987 0.427-5.973 0.849-8.534 0.849z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":753,"id":374,"name":"music-square","prevSize":32,"code":60247},"setIdx":2,"setId":2,"iconIdx":527},{"icon":{"paths":["M810.667 757.333h-597.333c-103.253 0-160-56.747-160-160v-170.667c0-103.253 56.747-160 160-160h597.333c103.253 0 160 56.747 160 160v170.667c0 103.253-56.747 160-160 160zM213.333 330.667c-67.413 0-96 28.587-96 96v170.667c0 67.413 28.587 96 96 96h597.333c67.413 0 96-28.587 96-96v-170.667c0-67.413-28.587-96-96-96h-597.333z","M768 544c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M256 501.333c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M426.667 544c-17.92 0-32-14.507-32-32.427l2.133-213.333c0-17.493 14.507-31.573 32-31.573 0 0 0 0 0.427 0 17.493 0 32 14.507 31.573 32.427l-2.133 213.333c0 17.493-14.507 31.573-32 31.573z","M597.333 458.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ruler"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":754,"id":373,"name":"ruler","prevSize":32,"code":60248},"setIdx":2,"setId":2,"iconIdx":528},{"icon":{"paths":["M661.325 672c-7.68 0-16.213-0.427-23.893-0.853-15.787-0.853-28.591-13.653-29.871-29.44-9.387-119.040-106.236-215.467-224.851-224.854-15.787-1.28-28.587-14.079-29.44-29.866-0.427-7.68-0.852-16.213-0.852-23.893 0-170.667 138.668-309.333 309.335-309.333s309.333 138.667 309.333 309.333c0 170.666-139.093 308.906-309.76 308.906zM415.99 356.693c127.148 22.613 229.122 124.16 251.308 251.307 132.693-3.413 239.36-111.787 239.36-245.333 0-135.253-110.080-245.333-245.333-245.333-133.12 0-241.922 106.666-245.335 239.36z","M362.667 970.667c-170.667 0-309.333-138.667-309.333-309.333s138.667-309.333 309.333-309.333c7.68 0 16.213 0.426 23.893 0.853 150.613 11.947 272.64 133.974 284.16 283.734 0.427 8.533 0.853 17.067 0.853 24.747 0.427 170.667-138.24 309.333-308.907 309.333zM362.667 416c-135.253 0-245.333 110.080-245.333 245.333s110.080 245.333 245.333 245.333c135.253 0 245.333-110.080 245.333-245.333 0-6.827-0.427-13.653-0.853-20.48-9.387-118.187-106.24-215.040-224.854-224.426-5.973 0-12.8-0.427-19.626-0.427z","M362.667 800c-11.52 0-22.613-6.4-28.16-16.64l-33.28-60.587-60.586-33.28c-10.24-5.547-16.64-16.213-16.64-28.16s6.4-22.613 16.64-28.16l60.586-33.28 33.28-60.587c11.093-20.48 44.8-20.48 56.32 0l33.28 60.587 60.587 33.28c10.24 5.547 16.64 16.213 16.64 28.16s-6.4 22.613-16.64 28.16l-60.587 33.28-33.28 60.587c-5.547 10.24-16.64 16.64-28.16 16.64zM322.56 661.333l17.493 9.813c5.547 2.987 9.813 7.253 12.8 12.8l9.814 17.493 9.814-17.493c2.987-5.547 7.253-9.813 12.8-12.8l17.493-9.813-17.493-9.813c-5.547-2.987-9.813-7.253-12.8-12.8l-9.814-17.493-9.814 17.493c-2.987 5.547-7.253 9.813-12.8 12.8l-17.493 9.813z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["buy-crypto"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":755,"id":372,"name":"buy-crypto","prevSize":32,"code":60249},"setIdx":2,"setId":2,"iconIdx":529},{"icon":{"paths":["M512 970.667c-17.493 0-32-14.507-32-32v-810.667c0-17.493 14.507-32 32-32s32 14.507 32 32v810.667c0 17.493-14.507 32-32 32z","M652.826 258.133c-8.107 0-16.213-2.985-22.613-9.385l-118.187-118.188-118.185 118.188c-12.373 12.373-32.854 12.373-45.227 0s-12.373-32.853 0-45.227l140.799-140.802c5.973-5.973 14.080-9.385 22.613-9.385s16.64 3.412 22.613 9.385l140.8 140.802c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.385-22.613 9.385z","M213.31 330.667c-8.107 0-16.213-2.985-22.613-9.385l-62.72-62.721-62.72 62.721c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.856 0-45.229l85.333-85.333c5.973-5.973 14.080-9.385 22.613-9.385s16.64 3.412 22.613 9.385l85.333 85.333c12.373 12.373 12.373 32.856 0 45.229-6.4 6.4-14.507 9.385-22.613 9.385z","M981.312 330.667c-8.107 0-16.213-2.985-22.613-9.385l-62.72-62.721-62.72 62.721c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.856 0-45.229l85.333-85.333c5.973-5.973 14.080-9.385 22.613-9.385s16.64 3.412 22.613 9.385l85.333 85.333c12.373 12.373 12.373 32.856 0 45.229-6.4 6.4-14.507 9.385-22.613 9.385z","M640 757.338h-256c-188.587 0-288-99.413-288-288v-211.629c0-17.493 14.507-32 32-32s32 14.507 32 32v211.629c0 152.747 71.253 224 224 224h256c152.747 0 224-71.253 224-224v-211.629c0-17.493 14.507-32 32-32s32 14.507 32 32v211.629c0 188.587-99.413 288-288 288z","M640 885.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gemini-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":756,"id":371,"name":"gemini-2","prevSize":32,"code":60250},"setIdx":2,"setId":2,"iconIdx":530},{"icon":{"paths":["M682.658 952.316c-14.507 0-28.587-4.262-40.96-12.369l-181.76-121.178h-80.641c-9.813 0-19.201-4.689-25.175-12.369-5.973-8.107-8.105-18.351-5.545-27.738 2.56-10.24 3.84-20.48 3.84-31.573 0-34.133-12.8-66.982-35.84-92.582-26.027-29.44-63.147-46.084-102.827-46.084-37.973 0-72.961 14.933-99.414 41.813-8.107 8.533-20.48 11.52-31.573 8.533-11.093-3.413-20.053-12.373-22.613-23.893-4.267-18.773-6.4-39.253-6.4-61.44v-255.998c0-146.773 98.56-245.333 245.333-245.333h426.668c146.773 0 245.333 98.56 245.333 245.333v255.998c0 71.253-23.467 132.693-68.267 177.493-37.547 37.547-87.467 60.164-145.067 66.138v60.582c0 27.733-15.364 52.907-39.684 66.133-11.52 5.547-23.462 8.533-35.409 8.533zM415.99 754.342h53.335c6.4 0 12.373 1.707 17.92 5.547l189.867 126.724c4.693 2.987 8.533 1.702 10.667 0.422s5.973-3.84 5.973-9.813v-90.88c0-17.493 14.507-32 32-32 54.187 0 99.84-17.062 131.84-49.062 32.427-32.427 49.493-78.084 49.493-132.271v-255.999c0-110.080-71.253-181.333-181.333-181.333h-426.668c-110.080 0-181.333 71.253-181.333 181.333v250.879c29.013-15.787 61.867-23.893 96-23.893 58.027 0 113.066 24.751 150.613 67.418 33.28 37.12 52.054 84.902 52.054 135.249-0.427 2.56-0.427 5.12-0.427 7.68z","M213.333 949.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.667 17.92-24.32 34.133-40.534 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM213.333 608c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 24.747 41.813 70.4 67.413 118.613 67.413 33.707 0 66.133-12.373 90.88-34.56 11.094-9.387 20.48-20.48 27.306-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667z","M188.966 820.911c-8.107 0-16.213-2.987-22.613-9.387l-42.24-42.24c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.226 0l20.48 20.484 68.266-63.151c12.8-11.947 33.28-11.089 45.227 1.711s11.094 33.28-1.706 45.227l-90.88 84.049c-6.4 5.547-14.080 8.538-21.76 8.538z","M661.333 480h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":757,"id":370,"name":"message-tick","prevSize":32,"code":60251},"setIdx":2,"setId":2,"iconIdx":531},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M661.333 448c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM661.333 320c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z","M362.667 448c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM362.667 320c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z","M512 829.867c-123.733 0-224-100.693-224-224 0-38.827 31.573-70.4 70.4-70.4h307.2c38.827 0 70.4 31.573 70.4 70.4 0 123.307-100.267 224-224 224zM358.4 599.467c-3.413 0-6.4 2.987-6.4 6.4 0 88.32 71.68 160 160 160s160-71.68 160-160c0-3.413-2.987-6.4-6.4-6.4h-307.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji-happy"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":758,"id":369,"name":"emoji-happy","prevSize":32,"code":60252},"setIdx":2,"setId":2,"iconIdx":532},{"icon":{"paths":["M626.782 970.671c-18.773 0-38.4-5.547-58.453-16.213l-167.679-93.44c-8.107-4.267-25.6-4.267-33.707 0l-167.68 93.44c-36.267 20.053-72.96 21.76-101.547 5.12-28.16-16.64-44.8-49.92-44.8-90.88v-484.692c0-90.88 73.813-164.692 164.693-164.692h331.945c90.88 0 164.693 73.812 164.693 164.692v484.692c0 40.96-16.213 74.24-44.8 90.88-12.373 7.253-26.88 11.093-42.667 11.093zM384.010 793.604c17.067 0 33.707 3.84 47.785 11.52l168.107 93.44c15.36 8.533 29.44 10.667 37.973 5.547 8.107-4.693 13.227-18.347 13.227-35.84v-484.693c0-55.467-45.227-100.692-100.693-100.692h-332.372c-55.467 0-100.693 45.226-100.693 100.692v484.693c0 17.493 5.12 31.147 13.227 35.84s22.613 2.56 37.973-5.973l167.68-93.44c13.653-7.253 30.72-11.093 47.787-11.093z","M323.81 604.16c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l120.747-120.747c12.373-12.372 32.853-12.372 45.227 0s12.373 32.853 0 45.227l-120.747 120.747c-6.4 6.4-14.507 9.387-22.613 9.387z","M444.139 604.16c-8.107 0-16.213-2.987-22.612-9.387l-120.747-120.747c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.372 45.227 0l120.745 120.747c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M882.773 805.111c-18.773 0-38.4-5.551-58.453-16.218l-157.44-87.893c-10.24-5.547-16.213-16.209-16.213-27.729v-289.282c0-55.467-45.227-100.693-100.693-100.693h-208.64c-17.493 0-32-14.507-32-32v-32.854c0-90.88 73.813-164.692 164.693-164.692h331.947c90.88 0 164.693 73.812 164.693 164.692v484.695c0 40.96-16.213 74.236-44.8 90.876-12.8 7.253-27.307 11.098-43.093 11.098zM714.667 654.067l141.227 78.933c15.36 8.533 29.44 10.671 37.973 5.551 8.107-4.693 13.227-18.347 13.227-35.84v-484.696c0-55.467-45.227-100.692-100.693-100.692h-331.947c-55.467 0-100.693 45.226-100.693 100.692v0.854h176.64c90.88 0 164.693 73.813 164.693 164.693v270.505h-0.427z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":759,"id":368,"name":"save-remove","prevSize":32,"code":59758},"setIdx":2,"setId":2,"iconIdx":533},{"icon":{"paths":["M140.81 970.671c-15.36 0-30.294-3.84-43.094-11.52-28.587-16.64-44.8-49.92-44.8-91.307v-484.692c0-90.88 73.813-164.694 164.693-164.694h331.946c90.88 0 164.693 73.814 164.693 164.694v484.692c0 41.387-16.213 74.24-44.8 91.307-28.587 16.64-65.28 14.933-101.547-5.12l-167.678-93.44c-8.107-4.693-25.175-4.693-33.281 0l-167.68 93.44c-19.627 11.093-39.68 16.64-58.453 16.64zM218.036 282.886c-55.467 0-100.693 45.226-100.693 100.692v484.693c0 17.493 5.12 31.147 13.227 35.84s22.614 2.56 37.974-5.973l167.68-93.44c27.307-14.933 68.266-14.933 95.571 0l167.68 93.44c15.36 8.533 29.44 10.667 37.973 5.973 8.107-4.693 13.227-18.347 13.227-35.84v-484.693c0-55.467-45.222-100.692-100.689-100.692h-331.95z","M626.773 970.671c-18.773 0-38.4-5.547-58.453-16.213l-167.68-93.44c-8.107-4.267-25.601-4.267-33.708 0l-167.253 93.44c-36.267 20.053-73.387 21.76-101.547 5.12-28.587-16.64-44.8-49.92-44.8-90.88v-484.692c0-90.88 73.813-164.692 164.693-164.692h331.947c90.88 0 164.693 73.812 164.693 164.692v484.692c0 40.96-16.213 74.24-44.8 90.88-12.8 7.253-27.307 11.093-43.093 11.093zM384 793.604c17.067 0 33.707 3.84 47.787 11.52l167.68 93.44c15.36 8.533 29.867 10.667 37.973 5.547 8.107-4.693 13.227-18.347 13.227-35.84v-484.693c0-55.467-45.227-100.692-100.693-100.692h-331.947c-55.467 0-100.693 45.226-100.693 100.692v484.693c0 17.493 5.12 31.147 13.227 35.84s22.614 2.56 37.974-5.973l167.68-93.44c13.654-7.253 30.72-11.093 47.787-11.093z","M882.773 805.111c-18.773 0-38.4-5.551-58.453-16.218l-157.44-87.893c-10.24-5.547-16.213-16.209-16.213-27.729v-289.282c0-55.467-45.227-100.693-100.693-100.693h-208.64c-17.493 0-32-14.507-32-32v-32.854c0-90.88 73.813-164.692 164.693-164.692h331.947c90.88 0 164.693 73.812 164.693 164.692v484.695c0 40.96-16.213 74.236-44.8 90.876-12.8 7.253-27.307 11.098-43.093 11.098zM714.667 654.067l140.8 78.933c15.36 8.533 29.44 10.671 37.973 5.551s13.227-18.347 13.227-35.84v-484.696c0-55.467-45.227-100.692-100.693-100.692h-331.947c-55.467 0-100.693 45.226-100.693 100.692v0.854h176.64c90.88 0 164.693 73.813 164.693 164.693v270.505z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":760,"id":367,"name":"save-2","prevSize":32,"code":59759},"setIdx":2,"setId":2,"iconIdx":534},{"icon":{"paths":["M778.718 606.72c-8.107 0-16.64-3.413-22.613-9.387l-241.92-241.92c-10.667-10.667-12.373-26.88-4.267-39.68l75.52-119.469c20.48-32.853 52.48-52.905 89.173-57.172 40.533-4.693 83.627 11.947 116.907 45.227l135.68 135.68c32 32 47.787 74.667 43.093 117.334-4.267 37.12-23.893 69.116-54.613 88.742l-119.467 75.524c-5.547 3.413-11.52 5.12-17.493 5.12zM577.758 328.533l205.653 205.653 97.707-61.867c14.507-8.96 23.467-23.893 25.173-41.813 2.56-22.612-6.827-46.933-24.747-64.853l-135.68-135.68c-19.627-19.627-43.093-29.44-64.427-26.88-17.067 1.707-31.573 11.518-41.813 27.732l-61.867 97.708z","M282.842 970.667c-40.107 0-75.52-14.076-101.973-40.529-30.72-30.72-44.373-73.818-38.827-121.604l41.813-353.28c2.133-17.493 17.493-29.865 35.413-28.16 17.493 2.133 30.293 17.92 28.16 35.413l-41.813 353.28c-3.413 27.733 3.84 52.053 20.48 68.693s41.386 24.32 69.546 20.907l372.054-43.947c79.36-9.387 96.853-30.72 89.173-108.373l-10.24-177.067c-0.853-17.493 12.373-32.853 30.293-33.707 17.493-0.853 32.853 12.378 33.707 30.298l10.24 175.787c11.093 110.080-32.427 163.409-145.493 177.062l-372.053 43.947c-6.827 0.853-13.653 1.28-20.48 1.28z","M536.751 365.234c-0.853 0-1.28 0-2.133 0l-74.667-4.693c-17.493-1.28-31.147-16.213-29.867-34.133 1.28-17.493 16.213-31.147 34.133-29.867l74.667 4.693c17.493 1.28 31.147 16.212 29.867 34.132-1.28 16.64-15.36 29.868-32 29.868z","M225.31 918.618c-8.107 0-16.213-2.982-22.613-9.382-12.373-12.373-12.373-32.858 0-45.231l135.68-135.684c12.373-12.373 32.854-12.373 45.227 0s12.373 32.858 0 45.231l-135.68 135.684c-6.4 6.4-14.507 9.382-22.613 9.382z","M277.333 501.333c-25.173 0-49.493-4.267-72.107-11.947-49.493-16.64-92.16-50.773-119.467-96.426-21.333-34.987-32.426-75.094-32.426-115.628 0-69.12 30.72-132.692 84.48-174.932 39.253-31.573 88.747-49.068 139.52-49.068 123.733 0 224 100.693 224 224 0 20.053-2.987 40.959-8.533 60.159-5.547 19.627-13.227 37.549-23.893 55.469-12.373 20.48-27.307 37.972-44.8 52.906-40.107 35.84-92.16 55.467-146.773 55.467zM277.333 117.333c-36.267 0-71.68 12.374-99.84 34.987-38.4 30.293-60.16 75.52-60.16 125.013 0 28.587 8.106 57.173 23.040 82.346 19.627 32.427 49.92 57.173 85.333 68.694 51.627 18.347 113.494 6.827 156.588-31.147 12.373-10.667 23.040-23.467 32-37.547 7.68-12.8 13.226-25.6 17.066-39.68s5.973-28.587 5.973-42.667c0-88.32-71.68-160-160-160z","M328.524 359.689c-8.107 0-16.213-2.985-22.613-9.385l-101.547-101.547c-12.373-12.373-12.373-32.853 0-45.227s32.854-12.373 45.227 0l101.546 101.547c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.385-22.613 9.385z","M226.143 360.525c-8.107 0-16.213-2.988-22.613-9.388-12.373-12.373-12.373-32.853 0-45.227l101.546-101.547c12.373-12.373 32.854-12.373 45.228 0s12.373 32.853 0 45.226l-101.547 101.547c-6.4 6.4-14.507 9.388-22.613 9.388z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pen-close"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":761,"id":366,"name":"pen-close","prevSize":32,"code":60253},"setIdx":2,"setId":2,"iconIdx":535},{"icon":{"paths":["M849.067 970.667h-674.133c-81.92 0-121.6-41.813-121.6-127.147v-172.373c0-85.76 39.68-127.147 121.6-127.147h674.133c81.92 0 121.6 41.813 121.6 127.147v172.373c0 85.333-39.68 127.147-121.6 127.147zM174.933 608c-43.093 0-57.6 8.96-57.6 63.147v172.373c0 54.187 14.507 63.147 57.6 63.147h674.133c43.093 0 57.6-8.96 57.6-63.147v-172.373c0-54.187-14.507-63.147-57.6-63.147h-674.133z","M849.067 480h-674.133c-81.92 0-121.6-41.813-121.6-127.147v-172.373c0-85.76 39.68-127.147 121.6-127.147h674.133c81.92 0 121.6 41.813 121.6 127.147v172.373c0 85.333-39.68 127.147-121.6 127.147zM174.933 117.333c-43.093 0-57.6 8.96-57.6 63.147v172.373c0 54.187 14.507 63.147 57.6 63.147h674.133c43.093 0 57.6-8.96 57.6-63.147v-172.373c0-54.187-14.507-63.147-57.6-63.147h-674.133z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["row-vertical"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":762,"id":365,"name":"row-vertical","prevSize":32,"code":60254},"setIdx":2,"setId":2,"iconIdx":536},{"icon":{"paths":["M384.020 757.333c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-8.96-8.96-11.947-23.040-6.827-34.987s16.64-19.627 29.44-19.627h256.001c17.493 0 32 14.507 32 32s-14.507 32-32 32h-178.774l30.72 30.72c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M298.643 671.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-previous"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":763,"id":364,"name":"document-previous","prevSize":32,"code":60255},"setIdx":2,"setId":2,"iconIdx":537},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M565.756 694.622c-8.107 0-16.213-2.987-22.613-9.387l-150.612-150.613c-12.373-12.373-12.373-32.853 0-45.227l150.612-150.615c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-128 128.002 128 128c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-left"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":764,"id":363,"name":"arrow-circle-left","prevSize":32,"code":60256},"setIdx":2,"setId":2,"iconIdx":538},{"icon":{"paths":["M576 394.667h-490.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h490.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h301.227c17.493 0 32 14.507 32 32s-14.507 32-32 32h-301.227c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 132.267 23.467 155.307 157.44 155.307h474.027c133.973 0 157.44-23.040 157.44-155.307v-174.080c0-17.493 14.507-32 32-32s32 14.507 32 32v174.080c0.427 168.533-51.2 219.733-221.013 219.733z","M738.56 381.45c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l165.973-165.973c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-165.973 165.973c-6.4 6.4-14.507 9.387-22.613 9.387z","M904.115 381.45c-8.107 0-16.213-2.987-22.613-9.387l-165.973-165.973c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l165.973 165.973c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-remove-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":765,"id":362,"name":"card-remove-1","prevSize":32,"code":60257},"setIdx":2,"setId":2,"iconIdx":539},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M157.875 938.654h-64l2.133-513.28c0-36.267 16.64-69.972 45.227-92.159l298.667-232.534c42.24-32.853 101.547-32.853 144.213 0l298.667 232.107c28.16 22.187 45.227 56.746 45.227 92.586v513.28h-64v-512.852c0-16.213-7.68-32-20.48-42.24l-298.667-232.107c-19.2-14.933-46.080-14.933-65.707 0l-298.667 232.534c-12.8 9.813-20.48 25.599-20.48 41.812l-2.133 512.852z","M725.333 970.667h-426.667c-17.493 0-32-14.507-32-32v-405.333c0-52.907 43.093-96 96-96h298.667c52.907 0 96 43.093 96 96v405.333c0 17.493-14.507 32-32 32zM330.667 906.667h362.667v-373.333c0-17.493-14.507-32-32-32h-298.667c-17.493 0-32 14.507-32 32v373.333z","M426.667 789.333c-17.493 0-32-14.507-32-32v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 17.493-14.507 32-32 32z","M576 352h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["house-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":766,"id":361,"name":"house-2","prevSize":32,"code":60258},"setIdx":2,"setId":2,"iconIdx":540},{"icon":{"paths":["M469.333 885.333c-229.547 0-416-186.453-416-416s186.453-416 416-416c229.547 0 416 186.453 416 416s-186.453 416-416 416zM469.333 117.333c-194.133 0-352 157.867-352 352s157.867 352 352 352c194.133 0 352-157.867 352-352s-157.867-352-352-352z","M860.164 972.373c-3.413 0-6.827-0.427-9.813-0.853-20.053-2.56-56.32-16.213-76.8-77.227-10.667-32-6.827-64 10.667-88.32s46.933-37.973 80.64-37.973c43.52 0 77.653 16.64 93.013 46.080s11.093 66.987-13.227 103.253c-30.293 45.653-63.147 55.040-84.48 55.040zM834.564 874.24c7.253 22.187 17.493 33.28 24.32 34.133s19.627-7.253 32.853-26.453c12.373-18.347 13.227-31.573 10.24-37.547s-14.933-12.373-37.12-12.373c-13.227 0-23.040 4.267-28.587 11.52-5.12 7.253-5.973 18.347-1.707 30.72z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-normal"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":767,"id":360,"name":"search-normal","prevSize":32,"code":60259},"setIdx":2,"setId":2,"iconIdx":541},{"icon":{"paths":["M627.2 928h-230.4c-210.773 0-300.8-90.027-300.8-300.8v-230.4c0-210.773 90.027-300.8 300.8-300.8h230.4c210.773 0 300.8 90.027 300.8 300.8v230.4c0 210.773-90.027 300.8-300.8 300.8zM396.8 160c-174.933 0-236.8 61.867-236.8 236.8v230.4c0 174.933 61.867 236.8 236.8 236.8h230.4c174.933 0 236.8-61.867 236.8-236.8v-230.4c0-174.933-61.867-236.8-236.8-236.8h-230.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stop"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":768,"id":359,"name":"stop","prevSize":32,"code":60260},"setIdx":2,"setId":2,"iconIdx":542},{"icon":{"paths":["M472.29 775.258c-7.253 0-14.080-1.28-21.333-3.84-23.467-8.96-38.825-30.72-38.825-55.893v-140.8h-41.813c-23.893 0-44.8-13.653-54.613-34.987-9.813-21.76-5.973-46.080 9.813-64l181.758-206.506c16.64-18.773 42.24-25.173 65.707-16.213s38.827 30.72 38.827 55.893v140.799h42.24c23.893 0 44.8 13.653 54.613 34.987 9.813 21.76 5.973 46.080-9.813 64l-181.76 206.507c-11.947 12.8-28.16 20.053-44.8 20.053zM379.705 510.724h64.425c17.493 0 32 14.507 32 32v161.28l168.107-190.72h-64.427c-17.493 0-32-14.507-32-32v-161.279l-168.105 190.719z","M510.75 970.667c-252.587 0-458.667-205.653-458.667-458.667s206.080-458.667 458.667-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM510.75 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flash-circle-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":769,"id":358,"name":"flash-circle-1","prevSize":32,"code":60261},"setIdx":2,"setId":2,"iconIdx":543},{"icon":{"paths":["M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-426.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v426.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-426.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M693.333 501.333h-362.667c-58.88 0-106.667-47.787-106.667-106.667v-106.667c0-58.88 47.787-106.667 106.667-106.667h362.667c58.88 0 106.667 47.787 106.667 106.667v106.667c0 58.88-47.787 106.667-106.667 106.667zM330.667 245.333c-23.467 0-42.667 19.2-42.667 42.667v106.667c0 23.467 19.2 42.667 42.667 42.667h362.667c23.467 0 42.667-19.2 42.667-42.667v-106.667c0-23.467-19.2-42.667-42.667-42.667h-362.667z","M341.31 782.080c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l98.133-98.133c12.372-12.373 32.852-12.373 45.225 0s12.373 32.853 0 45.227l-98.131 98.133c-6.4 6.4-14.507 9.387-22.613 9.387z","M440.734 783.36c-8.107 0-16.213-2.987-22.613-9.387l-98.132-98.133c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.226 0l98.132 98.133c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M704.427 696.751c-23.467 0-43.093-19.2-43.093-42.667s18.773-42.667 42.24-42.667h0.853c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M618.249 788.907c-23.467 0-42.667-18.773-42.667-42.24v-0.853c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667c0 23.467-19.2 43.093-42.667 43.093z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gameboy"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":770,"id":357,"name":"gameboy","prevSize":32,"code":60262},"setIdx":2,"setId":2,"iconIdx":544},{"icon":{"paths":["M607.117 687.364h-84.48c-19.627 0-48.213-5.973-64.853-22.613l-65.707-50.773 39.253-50.773 68.693 53.333c5.12 3.84 14.507 6.4 22.613 6.4h84.48c12.8 0 28.16-11.093 31.147-22.187l53.76-164.267c1.28-3.413 2.56-8.107 0.427-11.52-1.707-2.56-6.4-4.266-11.947-4.266h-88.747c-15.787 0-30.72-6.824-41.387-18.771-10.24-11.947-14.933-28.162-12.8-44.375l11.093-71.255c1.28-5.547-2.56-11.945-7.253-13.651-3.84-1.28-10.24 0.851-11.947 2.985l-90.88 135.255-53.333-35.839 90.88-135.255c17.92-26.88 55.893-39.254 86.613-27.734 34.56 11.52 56.747 49.92 49.067 85.76l-8.96 58.453h77.653c26.88 0 50.347 11.52 64.427 31.573 13.653 19.627 16.64 44.8 8.107 69.12l-52.907 161.28c-9.813 37.973-50.773 69.12-93.013 69.12z","M365.227 663.040h-22.187c-66.56 0-76.373-46.507-76.373-74.24v-217.175c0-27.733 9.813-74.24 76.373-74.24h22.187c66.56 0 76.373 46.506 76.373 74.24v217.175c0 27.733-9.813 74.24-76.373 74.24zM331.947 598.613c1.28 0 4.693 0.427 11.093 0.427h22.187c6.827 0 10.667-0.853 11.947-1.28 0-0.853 0.427-3.413 0.427-8.96v-217.175c0-5.547-0.427-8.532-0.854-9.385-0.853 0-4.267-0.427-11.52-0.427h-22.187c-6.827 0-10.667 0.855-11.947 1.281 0 0.853-0.426 3.412-0.426 8.958v217.179c0 5.547 0.427 8.529 0.853 9.809 0-0.427 0.427-0.427 0.427-0.427z","M512 970.667c-29.867 0-60.16-11.52-82.773-34.133l-72.96-72.107c-18.347-17.92-42.241-27.733-67.841-27.733h-32.426c-88.32 0-160-71.253-160-158.72v-465.494c0-87.467 71.68-158.719 160-158.719h512c88.32 0 160 71.252 160 158.719v465.494c0 87.467-71.68 158.72-160 158.72h-32.427c-25.6 0-49.92 9.813-67.84 27.733l-72.96 72.107c-22.613 22.613-52.907 34.133-82.773 34.133zM256 117.333c-52.907 0-96 42.665-96 94.719v465.495c0 52.48 43.093 94.72 96 94.72h32.426c42.667 0 82.774 16.636 113.067 46.502l72.96 72.111c20.907 20.48 54.613 20.48 75.52 0l72.96-72.111c30.293-29.867 70.4-46.502 113.067-46.502h32c52.907 0 96-42.667 96-94.72v-465.495c0-52.48-43.093-94.719-96-94.719h-512z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-tag"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":771,"id":356,"name":"like-tag","prevSize":32,"code":60263},"setIdx":2,"setId":2,"iconIdx":545},{"icon":{"paths":["M853.333 245.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 373.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M490.667 928c-241.067 0-437.333-196.267-437.333-437.333s196.267-437.333 437.333-437.333c17.493 0 32 14.507 32 32s-14.507 32-32 32c-206.080 0-373.333 167.68-373.333 373.333s167.253 373.333 373.333 373.333c206.080 0 373.333-167.68 373.333-373.333 0-17.493 14.507-32 32-32s32 14.507 32 32c0 241.067-196.267 437.333-437.333 437.333z","M938.684 970.662c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-status-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":772,"id":355,"name":"search-status-1","prevSize":32,"code":60264},"setIdx":2,"setId":2,"iconIdx":546},{"icon":{"paths":["M512 864c-194.133 0-352-157.867-352-352s157.867-352 352-352c194.133 0 352 157.867 352 352s-157.867 352-352 352zM512 224c-158.72 0-288 129.28-288 288s129.28 288 288 288c158.72 0 288-129.28 288-288s-129.28-288-288-288z","M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M512 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M170.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M938.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gps"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":773,"id":354,"name":"gps","prevSize":32,"code":60265},"setIdx":2,"setId":2,"iconIdx":547},{"icon":{"paths":["M778.718 606.72c-8.107 0-16.64-3.413-22.613-9.387l-241.92-241.92c-10.667-10.667-12.373-26.88-4.267-39.68l75.52-119.469c20.48-32.853 52.48-52.905 89.173-57.172 40.533-4.693 83.627 11.947 116.907 45.227l135.68 135.68c32 32 47.787 74.667 43.093 117.334-4.267 37.12-23.893 69.116-54.613 88.742l-119.467 75.524c-5.547 3.413-11.52 5.12-17.493 5.12zM577.758 328.533l205.653 205.653 97.707-61.867c14.507-8.96 23.467-23.893 25.173-41.813 2.56-22.612-6.827-46.933-24.747-64.853l-135.68-135.68c-19.627-19.627-43.093-29.44-64.427-26.88-17.067 1.707-31.573 11.518-41.813 27.732l-61.867 97.708z","M282.842 970.667c-40.107 0-75.521-14.076-101.974-40.529-30.72-30.72-44.373-73.818-38.827-121.604l41.814-353.28c2.133-17.493 17.921-29.865 35.414-28.16 17.493 2.133 30.292 17.92 28.159 35.413l-41.812 353.28c-3.413 27.733 3.839 52.053 20.479 68.693s41.387 24.32 69.547 20.907l372.053-43.947c79.36-9.387 96.853-30.72 89.173-108.373l-10.24-177.067c-0.853-17.493 12.373-32.853 30.293-33.707 17.493-0.853 32.853 12.378 33.707 30.298l10.24 175.787c11.093 110.080-32.427 163.409-145.493 177.062l-372.053 43.947c-6.827 0.853-13.652 1.28-20.479 1.28z","M536.751 365.236c-0.853 0-1.28 0-2.133 0l-74.667-4.692c-17.493-1.28-31.147-16.213-29.867-34.133s16.213-31.147 34.133-29.867l74.667 4.692c17.493 1.28 31.147 16.213 29.867 34.133-1.28 16.64-15.36 29.867-32 29.867z","M225.31 918.618c-8.107 0-16.213-2.982-22.613-9.382-12.373-12.373-12.373-32.858 0-45.231l135.68-135.684c12.373-12.373 32.853-12.373 45.226 0s12.373 32.858 0 45.231l-135.68 135.684c-6.4 6.4-14.507 9.382-22.613 9.382z","M277.333 501.333c-25.173 0-49.493-4.267-72.107-11.947-49.493-16.64-92.16-50.773-119.466-96.426-21.333-34.987-32.427-75.094-32.427-115.628 0-69.12 30.72-132.692 84.48-174.932 39.253-31.573 88.746-49.068 139.52-49.068 123.733 0 224 100.693 224 224 0 20.053-2.987 40.959-8.533 60.159-5.547 19.627-13.227 37.549-23.893 55.469-12.373 20.48-27.307 37.972-44.8 52.906-40.107 35.84-92.16 55.467-146.773 55.467zM277.333 117.333c-36.267 0-71.68 12.374-99.84 34.987-38.4 30.293-60.16 75.52-60.16 125.013 0 28.587 8.107 57.173 23.040 82.346 19.627 32.427 49.92 57.173 85.333 68.694 52.053 18.347 113.492 6.827 156.586-31.147 12.373-10.667 23.040-23.467 32-37.547 7.68-12.8 13.227-25.6 17.067-39.68s5.973-28.587 5.973-42.667c0-88.32-71.68-160-160-160z","M348.194 309.333h-143.361c-17.493 0-32-14.507-32-32s14.507-32 32-32h143.361c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pen-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":774,"id":353,"name":"pen-remove","prevSize":32,"code":60266},"setIdx":2,"setId":2,"iconIdx":548},{"icon":{"paths":["M219.75 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M697.617 714.667h-477.867c-17.493 0-32-14.507-32-32s14.507-32 32-32h477.867c46.507 0 68.267-12.373 72.533-23.040s-2.133-34.56-35.413-67.413l-51.2-51.2c-20.907-18.347-33.707-46.080-34.987-76.8-1.28-32.427 11.52-64.427 34.987-87.893l51.2-51.2c31.573-31.573 41.387-57.173 36.693-68.267s-29.013-22.187-73.813-22.187h-477.867c-17.92 0-32-14.507-32-32s14.507-32 32-32h477.867c93.44 0 123.307 38.827 133.12 61.867 9.387 23.040 15.787 71.68-50.773 138.24l-51.2 51.2c-10.667 10.667-16.64 25.6-16.213 40.533 0.427 12.8 5.547 24.32 14.507 32.427l52.907 52.48c65.28 65.28 58.88 113.92 49.493 137.387-9.813 22.613-40.107 61.867-131.84 61.867z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flag"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":775,"id":352,"name":"flag","prevSize":32,"code":60267},"setIdx":2,"setId":2,"iconIdx":549},{"icon":{"paths":["M512.439 725.333c-36.267 0-72.96-9.387-101.546-27.733l-256.853-167.68c-47.787-31.147-76.373-83.627-76.373-140.799 0-57.173 28.587-109.653 76.373-140.8l257.28-167.253c57.173-37.12 146.346-37.12 203.093 0.427l255.573 167.68c47.36 31.147 75.947 83.627 75.947 140.373 0 56.745-28.587 109.225-75.947 140.372l-255.573 167.68c-28.587 18.773-65.28 27.733-101.973 27.733zM512.439 117.335c-24.32 0-48.64 5.547-66.133 17.493l-256.853 167.253c-29.867 19.627-47.36 51.2-47.36 87.040s17.067 67.412 47.36 87.039l256.853 167.68c35.413 23.040 97.707 23.040 133.12 0l255.573-167.68c29.867-19.627 46.933-51.199 46.933-87.039s-17.067-67.413-46.933-87.040l-255.573-167.68c-17.92-11.093-42.24-17.067-66.987-17.067z","M511.966 970.671c-18.773 0-37.973-2.56-53.333-7.68l-136.107-45.227c-64.427-21.333-115.2-91.733-114.773-159.573l0.427-200.107c0-17.493 14.507-32 32-32s32 14.507 32 32l-0.427 200.107c0 40.107 33.28 86.187 71.253 98.987l136.107 45.227c17.067 5.547 48.64 5.547 65.707 0l136.107-45.227c37.973-12.8 71.253-58.88 71.253-98.56v-197.973c0-17.493 14.507-32 32-32s32 14.507 32 32v197.973c0 67.84-50.347 137.813-114.773 159.573l-136.107 45.227c-15.36 4.693-34.56 7.253-53.333 7.253z","M913.084 672c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v256c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["teacher"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":776,"id":351,"name":"teacher","prevSize":32,"code":60268},"setIdx":2,"setId":2,"iconIdx":550},{"icon":{"paths":["M640.009 970.667c-11.52 0-22.187-6.4-27.733-16.213s-5.547-22.187 0.427-32l44.8-74.667c8.96-15.36 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.187-148.907 330.667-331.093 330.667z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.186 6.4 27.733 16.213s5.547 22.187-0.426 32l-44.8 74.667c-8.96 15.36-28.587 20.054-43.947 11.094s-20.053-28.588-11.093-43.948l11.52-19.201c-117.76 27.733-206.080 133.548-206.080 259.841 0.427 17.493-14.080 32-31.574 32z","M754.364 319.994c-5.547 0-11.093-1.279-16.213-4.265l-169.387-98.135c-15.36-8.96-20.48-28.585-11.52-43.945s28.587-20.481 43.52-11.521l153.6 88.748 152.32-88.32c15.36-8.96 34.987-3.412 43.52 11.521 8.96 15.36 3.413 34.985-11.52 43.945l-168.533 97.281c-4.693 2.987-10.24 4.692-15.787 4.692z","M754.334 493.645c-17.493 0-32-14.507-32-32v-174.082c0-17.493 14.507-32 32-32s32 14.507 32 32v174.082c0 17.92-14.507 32-32 32z","M754.321 501.329c-19.627 0-39.68-4.267-55.467-13.227l-102.4-56.747c-33.28-18.345-58.453-61.437-58.453-99.41v-108.375c0-38.4 25.173-81.065 58.88-99.838l102.4-56.748c31.573-17.493 78.933-17.493 110.933 0l102.4 56.748c33.28 18.347 58.453 61.438 58.453 99.411v108.375c0 38.4-25.173 81.065-58.453 99.411l-102.4 56.747c-16.64 9.387-36.267 13.653-55.893 13.653zM730.001 122.451l-102.4 56.748c-12.8 7.253-25.6 29.011-25.6 43.518v108.375c0 14.933 12.8 36.694 25.6 43.521l102.4 57.17c12.373 6.827 36.267 6.827 48.64 0l102.4-56.746c12.8-7.253 25.6-29.012 25.6-43.518v-108.375c0-14.933-12.8-36.691-25.6-43.518l-102.4-56.748c-12.373-7.253-36.693-7.254-48.64-0.427z","M269.696 789.329c-5.547 0-11.094-1.28-16.214-4.267l-169.387-98.138c-15.36-8.96-20.48-28.582-11.52-43.942s28.587-20.48 43.52-11.52l153.6 88.747 152.32-88.32c15.36-8.96 34.987-3.413 43.52 11.52 8.96 15.36 3.413 34.987-11.52 43.947l-168.534 97.28c-4.693 2.987-10.24 4.693-15.786 4.693z","M269.667 962.978c-17.493 0-32-14.507-32-32v-174.084c0-17.493 14.507-32 32-32s32 14.507 32 32v174.084c0 17.92-14.080 32-32 32z","M269.654 970.662c-19.627 0-39.68-4.267-55.467-13.227l-102.4-56.747c-33.28-18.347-58.453-61.436-58.453-99.409v-108.378c0-38.4 25.173-81.067 58.453-99.413l102.4-56.742c31.573-17.493 79.36-17.493 110.933 0l102.4 56.742c33.28 18.347 58.453 61.44 58.453 99.413v108.378c0 38.4-25.173 81.062-58.88 99.836l-102.4 56.751c-15.36 8.533-34.986 12.796-55.040 12.796zM245.333 591.782l-102.4 56.751c-12.8 7.253-25.6 29.009-25.6 43.516v108.378c0 14.933 12.8 36.693 25.6 43.52l102.4 56.742c12.373 6.827 36.267 6.827 48.64 0l102.4-56.742c12.8-7.253 25.6-29.013 25.6-43.52v-108.378c0-14.933-12.8-36.689-25.6-43.516l-102.4-57.178c-11.947-6.4-36.267-6.4-48.64 0.427z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["convert-3d-cube"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":777,"id":350,"name":"convert-3d-cube","prevSize":32,"code":60269},"setIdx":2,"setId":2,"iconIdx":551},{"icon":{"paths":["M512 714.667c-17.067 0-34.133-1.28-50.347-4.267-90.453-13.227-172.8-65.28-224.853-142.507-36.267-54.613-55.467-118.187-55.467-183.893 0-182.187 148.48-330.667 330.667-330.667s330.667 148.48 330.667 330.667c0 65.707-19.2 129.28-55.467 183.893-52.48 77.653-134.827 129.28-226.133 142.933-14.933 2.56-32 3.84-49.067 3.84zM512 117.333c-147.2 0-266.667 119.467-266.667 266.667 0 53.333 15.36 104.533 44.373 148.053 42.24 62.293 108.373 104.107 181.76 114.773 27.307 4.693 54.187 4.693 79.36 0 74.667-10.667 140.8-52.907 183.040-115.2 29.013-43.52 44.373-94.72 44.373-148.054 0.427-146.773-119.040-266.24-266.24-266.24z","M276.025 963.84c-5.973 0-11.52-0.853-17.493-2.133-27.733-6.4-49.067-27.733-55.467-55.467l-14.933-62.72c-0.853-3.84-3.84-6.827-8.107-8.107l-70.4-16.64c-26.453-6.4-47.36-26.027-54.613-52.053s0-54.187 19.2-73.387l166.4-166.4c6.827-6.827 16.213-10.24 25.6-9.387s17.92 5.973 23.467 14.080c42.24 62.293 108.373 104.533 182.185 115.2 27.307 4.693 54.187 4.693 79.36 0 74.667-10.667 140.8-52.907 183.040-115.2 5.12-8.107 14.080-13.227 23.467-14.080s18.773 2.56 25.6 9.387l166.4 166.4c19.2 19.2 26.453 47.36 19.2 73.387s-28.587 46.080-54.613 52.053l-70.4 16.64c-3.84 0.853-6.827 3.84-8.107 8.107l-14.933 62.72c-6.4 27.733-27.733 49.067-55.467 55.467-27.733 6.827-56.32-2.987-74.24-24.747l-179.2-206.080-179.199 206.507c-14.507 17.067-34.987 26.453-56.747 26.453zM259.811 598.613l-140.373 140.373c-3.84 3.84-3.413 8.107-2.56 10.667 0.427 2.133 2.56 6.4 7.68 7.253l70.4 16.64c27.733 6.4 49.067 27.733 55.467 55.467l14.933 62.72c1.28 5.547 5.547 7.253 8.107 8.107 2.56 0.427 6.827 0.853 10.667-3.413l163.412-188.16c-72.532-14.080-139.092-52.907-187.732-109.653zM576.397 707.84l163.413 187.733c3.84 4.693 8.533 4.693 11.093 3.84 2.56-0.427 6.4-2.56 8.107-8.107l14.933-62.72c6.4-27.733 27.733-49.067 55.467-55.467l70.4-16.64c5.12-1.28 7.253-5.12 7.68-7.253 0.853-2.133 1.28-6.827-2.56-10.667l-140.373-140.373c-49.067 56.747-115.2 95.573-188.16 109.653z","M592.687 549.973c-11.093 0-24.32-2.987-40.107-12.373l-40.533-24.32-40.533 23.893c-37.12 22.187-61.439 9.387-70.399 2.987s-28.16-25.6-18.347-67.84l10.24-43.947-34.133-31.574c-18.773-18.773-25.6-41.386-19.2-61.866s25.173-34.988 51.627-39.254l45.652-7.68 21.76-47.787c12.373-24.32 31.573-37.974 53.333-37.974s41.387 14.081 53.333 38.401l25.173 50.347 42.24 5.12c26.027 4.267 44.8 18.773 51.627 39.253 6.4 20.48-0.427 43.094-19.2 61.867l-35.413 35.413 11.093 39.68c9.813 42.24-9.387 61.44-18.347 67.84-4.693 3.84-14.933 9.813-29.867 9.813zM410.074 357.974l29.439 29.439c13.653 13.653 20.48 36.694 16.213 55.467l-8.107 34.133 34.133-20.053c18.347-10.667 43.093-10.667 61.013 0l34.133 20.053-7.68-34.133c-4.267-19.2 2.133-41.814 15.787-55.467l29.44-29.439-37.12-6.401c-17.92-2.987-35.84-16.212-43.947-32.426l-21.333-41.814-21.333 42.667c-7.68 15.787-25.6 29.44-43.52 32.427l-37.119 5.547z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["medal-star"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":778,"id":349,"name":"medal-star","prevSize":32,"code":60270},"setIdx":2,"setId":2,"iconIdx":552},{"icon":{"paths":["M488.977 617.809c-83.627 0-151.894-68.267-151.894-151.893 0-83.628 68.267-151.895 151.894-151.895s151.893 68.267 151.893 151.895c0 83.627-68.267 151.893-151.893 151.893zM488.977 378.448c-48.213 0-87.894 39.253-87.894 87.895 0 48.64 39.254 87.893 87.894 87.893s87.893-39.253 87.893-87.893c0-48.641-39.253-87.895-87.893-87.895z","M710.379 893.867c-17.493 0-32-14.507-32-32 0-81.92-84.907-148.48-189.44-148.48-104.532 0-189.439 66.56-189.439 148.48 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-116.907 113.493-212.48 253.439-212.48 139.947 0 253.44 95.147 253.44 212.48 0 17.493-14.507 32-32 32z","M490.667 970.667c-241.067 0-437.333-196.267-437.333-437.333s196.267-437.333 437.333-437.333c59.307 0 116.48 11.52 170.24 34.133 15.36 6.4 23.040 23.466 17.92 39.252-4.693 14.080-6.827 29.015-6.827 43.948 0 25.173 6.827 49.919 20.053 71.252 6.827 11.947 15.787 22.613 26.027 31.573 37.12 33.707 92.16 44.376 135.253 29.016 15.787-5.973 33.707 2.132 40.107 17.919 23.040 54.187 34.56 111.786 34.56 170.666 0 240.64-196.267 436.907-437.333 436.907zM490.667 160c-205.653 0-373.333 167.253-373.333 373.333s167.68 373.333 373.333 373.333c205.653 0 373.333-167.253 373.333-373.333 0-40.96-6.827-81.493-19.627-120.32-58.88 10.24-123.307-8.105-168.533-49.492-14.933-12.8-28.16-28.588-38.4-46.081-18.773-30.72-29.013-66.987-29.013-104.107 0-11.52 0.853-22.612 2.987-33.706-38.827-13.227-79.36-19.628-120.747-19.628z","M810.667 416c-50.347 0-98.133-18.772-135.253-52.479-14.933-12.8-28.16-28.588-38.4-46.081-18.773-30.72-29.013-66.987-29.013-104.107 0-21.76 3.413-43.093 10.24-63.573 9.387-29.013 25.6-55.894 47.36-77.654 38.4-39.253 90.027-61.44 145.493-61.44 58.027 0 113.067 24.747 150.613 67.414 33.28 37.12 52.053 84.906 52.053 135.252 0 16.213-2.133 32.426-6.4 47.787-4.267 19.2-12.373 39.254-23.467 56.747-24.747 41.813-64 72.96-110.080 87.466-19.2 7.253-40.533 10.667-63.147 10.667zM810.667 74.667c-37.973 0-73.387 14.932-99.413 41.812-14.933 15.36-25.6 32.853-32 52.906-4.693 14.080-6.827 29.015-6.827 43.948 0 25.173 6.827 49.919 20.053 71.252 6.827 11.947 15.787 22.613 26.027 31.573 37.12 33.707 92.16 44.376 135.253 29.016 32.427-10.24 58.88-31.575 75.947-60.162 7.68-12.373 12.8-25.599 15.787-38.825 2.987-11.093 4.267-21.761 4.267-32.854 0-34.133-12.8-66.986-35.84-92.586-26.027-29.44-63.573-46.081-103.253-46.081z","M874.24 244.479h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M810.667 309.76c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-cirlce-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":779,"id":348,"name":"user-cirlce-add","prevSize":32,"code":60271},"setIdx":2,"setId":2,"iconIdx":553},{"icon":{"paths":["M512.021 970.667c-208.212 0-377.6-169.387-377.6-377.6-1.28-244.48 231.68-448 331.946-524.373 26.88-20.48 64.427-20.48 91.307 0 100.267 77.653 333.227 283.733 331.947 524.8 0 207.787-169.387 377.173-377.6 377.173zM512.021 117.333c-2.133 0-4.693 0.853-6.827 2.56-72.107 55.040-307.626 251.733-306.346 473.173 0 173.227 140.8 313.6 313.599 313.6 172.8 0 313.6-140.373 313.6-313.173 1.28-218.453-234.667-417.707-307.2-473.6-2.56-1.707-4.693-2.56-6.827-2.56z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["icon"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":780,"id":347,"name":"icon","prevSize":32,"code":60272},"setIdx":2,"setId":2,"iconIdx":554},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M891.281 970.667c-17.493 0-32-14.507-32-32v-384c0-52.907-49.493-96-110.080-96h-474.455c-60.587 0-110.080 43.093-110.080 96v384c0 17.493-14.507 32-32 32s-32-14.507-32-32v-384c0-88.32 78.080-160 174.080-160h474.028c96 0 174.080 71.68 174.080 160v384c0.427 17.493-14.080 32-31.573 32z","M786.795 458.667c-17.493 0-32-14.507-32-32v-120.747c0-33.28-32-60.587-70.827-60.587h-343.465c-39.253 0-70.827 27.307-70.827 60.587v120.747c0 17.493-14.507 32-32 32s-32.427-14.507-32.427-32v-120.747c0-68.693 60.587-124.587 134.827-124.587h343.465c74.24 0 134.827 55.893 134.827 124.587v120.747c0.427 17.493-14.080 32-31.573 32z","M739.443 757.333c-49.493 0-89.6-40.107-89.6-89.6v-13.227c0-14.080-11.52-25.6-25.6-25.6s-25.6 11.52-25.6 25.6v13.227c0 49.493-40.107 89.6-89.6 89.6s-89.601-40.107-89.601-89.6v-13.227c0-14.080-11.52-25.6-25.6-25.6s-25.6 11.52-25.6 25.6v13.227c0 49.493-40.107 89.6-89.6 89.6s-89.6-40.107-89.6-89.6v-14.080c0-13.653-11.093-25.173-25.173-25.6h-15.787c-17.493-0.427-32-14.933-31.573-32.427s14.507-31.573 32-31.573h16.213c48.64 0.853 88.32 40.96 88.32 89.6v14.080c0 14.080 11.52 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-13.227c0-49.493 40.107-89.6 89.6-89.6s89.601 40.107 89.601 89.6v13.227c0 14.080 11.52 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-13.227c0-49.493 40.107-89.6 89.6-89.6s89.6 40.107 89.6 89.6v13.227c0 14.080 11.52 25.6 25.6 25.6s25.6-11.52 25.6-25.6v-13.227c0-49.493 40.107-89.6 89.6-89.6h19.2c17.493 0 32 14.507 32 32s-14.507 32-32 32h-19.2c-14.080 0-25.6 11.52-25.6 25.6v13.227c0 49.493-40.107 89.6-89.6 89.6z","M341.333 245.333c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cake"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":781,"id":346,"name":"cake","prevSize":32,"code":60273},"setIdx":2,"setId":2,"iconIdx":555},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v298.667c0 155.733-89.6 245.333-245.333 245.333zM298.667 181.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-298.667c0-122.027-59.307-181.333-181.333-181.333h-426.667z","M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M192 458.667c-17.493 0-32-14.507-32-32v-64c0-76.373 62.293-138.667 138.667-138.667h64c17.493 0 32 14.507 32 32s-14.507 32-32 32h-64c-40.96 0-74.667 33.707-74.667 74.667v64c0 17.493-14.507 32-32 32z","M832 458.667c-17.493 0-32-14.507-32-32v-64c0-40.96-33.707-74.667-74.667-74.667h-64c-17.493 0-32-14.507-32-32s14.507-32 32-32h64c76.373 0 138.667 62.293 138.667 138.667v64c0 17.493-14.507 32-32 32z","M362.667 800h-64c-76.373 0-138.667-62.293-138.667-138.667v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 40.96 33.707 74.667 74.667 74.667h64c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 800h-64c-17.493 0-32-14.507-32-32s14.507-32 32-32h64c40.96 0 74.667-33.707 74.667-74.667v-64c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 76.373-62.293 138.667-138.667 138.667z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-4"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":782,"id":345,"name":"money-4","prevSize":32,"code":60274},"setIdx":2,"setId":2,"iconIdx":556},{"icon":{"paths":["M294.011 672c-11.947 0-23.040-6.4-28.587-17.493-8.107-15.787-1.707-34.987 14.507-43.093 37.12-18.347 68.693-46.507 91.307-80.64 7.68-11.52 7.68-26.027 0-37.547-23.040-34.133-54.613-62.293-91.307-80.639-16.213-7.68-22.613-26.88-14.507-43.093 7.68-15.787 26.88-22.187 42.667-14.080 46.933 23.467 87.040 58.88 116.053 102.399 21.761 32.853 21.761 75.52 0 108.373-29.013 43.52-69.12 78.933-116.053 102.4-4.267 2.133-9.387 3.413-14.080 3.413z","M725.333 672h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["code"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":783,"id":344,"name":"code","prevSize":32,"code":60275},"setIdx":2,"setId":2,"iconIdx":557},{"icon":{"paths":["M578.987 954.884c-9.813 0-19.627-1.707-29.013-5.12-32-11.947-52.48-41.813-52.48-75.947v-275.2h-99.841c-32.427 0-60.587-18.347-73.814-47.787s-8.107-62.72 13.227-87.040l322.988-366.935c22.613-25.6 57.6-34.56 89.6-22.187 32 11.947 52.476 41.813 52.476 75.947v275.2h99.844c32.427 0 60.587 18.348 73.813 47.788s8.107 62.72-13.227 87.040l-322.987 366.933c-15.787 17.92-37.973 27.307-60.587 27.307zM720.213 133.123c-3.84 0-8.533 1.28-12.373 5.973l-322.989 367.362c-6.827 7.68-4.266 15.36-2.986 18.347s5.547 10.24 15.787 10.24h131.841c17.493 0 32 14.507 32 32v307.2c0 10.667 7.68 14.933 11.093 16.213s11.942 3.413 18.769-4.693l322.991-367.36c6.827-7.68 4.267-15.36 2.987-18.347s-5.547-10.24-15.787-10.24h-131.84c-17.493 0-32-14.507-32-32v-307.202c0-10.667-7.68-14.933-11.093-16.213-1.28-0.853-3.84-1.28-6.4-1.28z","M362.667 202.667h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M320 885.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M192 544h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flash"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":784,"id":343,"name":"flash","prevSize":32,"code":59760},"setIdx":2,"setId":2,"iconIdx":558},{"icon":{"paths":["M744.546 738.129c-71.68 0-137.818-33.707-180.911-93.013-10.24-14.080-7.253-34.133 6.827-44.8s34.138-7.253 44.804 6.827c31.147 42.24 78.080 66.56 129.28 66.56 89.173 0 162.129-72.533 162.129-162.133 0-89.599-72.529-162.132-162.129-162.132-60.587 0-117.764 32.425-148.911 84.052l-113.067 188.16c-42.667 71.253-120.745 115.204-203.518 115.204-124.587 0-226.134-101.551-226.134-226.138s101.548-226.132 226.134-226.132c71.68 0 137.813 33.706 180.905 93.013 10.24 14.080 7.253 34.135-6.827 44.802-14.507 10.242-34.131 7.251-44.798-6.828-31.147-42.24-78.080-66.56-129.28-66.56-89.173 0-162.134 72.533-162.134 162.132s72.534 162.138 162.134 162.138c60.587 0 117.76-32.431 148.905-84.058l113.067-188.157c42.667-71.253 120.751-115.2 203.524-115.2 124.587 0 226.129 101.546 226.129 226.131 0 124.587-101.542 226.133-226.129 226.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["unlimited"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":785,"id":342,"name":"unlimited","prevSize":32,"code":59761},"setIdx":2,"setId":2,"iconIdx":559},{"icon":{"paths":["M579.413 970.667h-314.453c-116.907 0-211.627-95.147-211.627-211.627v-312.32c0-116.906 95.147-211.626 211.627-211.626h314.453c116.907 0 211.627 95.147 211.627 211.626v312.32c0 116.48-95.147 211.627-211.627 211.627zM264.96 299.094c-81.493 0-147.627 66.133-147.627 147.626v312.32c0 81.493 66.133 147.627 147.627 147.627h314.453c81.493 0 147.627-66.133 147.627-147.627v-312.32c0-81.493-66.133-147.626-147.627-147.626h-314.453z","M234.667 202.667c-17.493 0-32-14.507-32-32v-74.667c0-17.493 14.507-32 32-32s32 14.507 32 32v74.667c0 17.493-14.507 32-32 32z","M405.333 202.667c-17.493 0-32-14.507-32-32v-74.667c0-17.493 14.507-32 32-32s32 14.507 32 32v74.667c0 17.493-14.507 32-32 32z","M576 202.667c-17.493 0-32-14.507-32-32v-74.667c0-17.493 14.507-32 32-32s32 14.507 32 32v74.667c0 17.493-14.507 32-32 32z","M759.002 773.12c-17.493 0-32-14.507-32-32v-359.255c0-17.493 14.507-32 32-32 116.907 0 211.627 95.149 211.627 211.629s-95.147 211.627-211.627 211.627zM791.002 417.278v288.429c66.133-14.507 115.627-73.813 115.627-144.213s-49.493-129.707-115.627-144.215z","M747.093 544h-661.76c-17.493 0-32-14.507-32-32s14.507-32 32-32h661.76c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["coffee"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":786,"id":341,"name":"coffee","prevSize":32,"code":60276},"setIdx":2,"setId":2,"iconIdx":560},{"icon":{"paths":["M526.042 910.502c-46.507 0-93.013-17.493-128.428-52.907-70.827-70.827-70.827-185.6 0-256.427l105.815-105.387c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-105.813 105.387c-45.655 45.653-45.655 120.32 0 165.973 45.653 45.653 120.32 45.653 165.973 0l165.973-165.973c50.347-50.347 78.080-117.333 78.080-188.587 0-71.255-27.733-138.242-78.080-188.588-104.107-104.107-273.067-104.107-377.175 0l-180.907 180.908c-42.24 42.24-65.707 98.56-65.707 158.293s23.467 116.053 65.707 158.293c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0c-54.187-54.613-84.48-126.72-84.48-203.52s29.867-149.333 84.48-203.522l180.907-180.907c128.855-128.853 338.775-128.853 467.628 0 62.293 62.293 96.853 145.493 96.853 233.815 0 88.32-34.56 171.52-96.853 233.813l-165.973 165.973c-35.413 35.413-81.493 52.907-128 52.907z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paperclip-2"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":787,"id":340,"name":"paperclip-2","prevSize":32,"code":60277},"setIdx":2,"setId":2,"iconIdx":561},{"icon":{"paths":["M452.655 738.56c-25.173 0-50.348-11.524-73.814-34.991l-101.974-101.973c-46.933-46.933-46.933-100.689 0-147.196l170.242-170.244c5.973-5.973 14.080-9.385 22.613-9.385s16.64 3.412 22.613 9.385l187.307 187.306c10.667 10.667 16.213 24.747 16.213 39.68s-5.973 29.018-16.64 39.684l-153.173 153.169c-23.040 22.613-48.213 34.564-73.387 34.564zM469.722 351.57l-147.628 147.63c-7.253 7.253-16.212 18.342-16.212 28.582s8.959 20.911 16.212 28.591l101.974 101.973c7.255 7.253 18.348 16.213 28.588 16.213s20.907-8.96 28.587-16.213l147.627-147.631-159.147-159.145z","M469.777 338.34c-8.107 0-16.213-2.985-22.613-9.385l-34.134-34.135c-12.373-12.373-12.373-32.853 0-45.227s32.854-12.373 45.227 0l34.133 34.135c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.385-22.613 9.385z","M275.621 558.071c-17.067 0-31.147-13.222-32-30.716s12.8-32.427 30.72-33.28l385.281-16.64c17.493-1.28 32.427 12.8 33.28 30.72s-12.8 32.422-30.72 33.276l-385.281 16.64c-0.427 0-0.853 0-1.28 0z","M702.767 765.875c-43.52 0-78.933-35.413-78.933-78.933 0-40.533 42.667-90.027 55.467-104.107 11.947-13.227 34.987-13.227 46.933 0 12.8 14.080 55.467 63.573 55.467 104.107 0.427 43.52-34.987 78.933-78.933 78.933zM702.767 656.222c-8.96 13.227-14.933 25.173-14.933 30.72 0 8.107 6.827 14.933 14.933 14.933s14.933-6.827 14.933-14.933c0.427-5.547-5.973-17.493-14.933-30.72z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bucket-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":788,"id":339,"name":"bucket-circle","prevSize":32,"code":60278},"setIdx":2,"setId":2,"iconIdx":562},{"icon":{"paths":["M407.021 711.258c-17.493 0-32-14.507-32-32v-144.64l-8.107 8.96c-11.947 13.227-32 14.080-45.227 2.56-13.227-11.947-14.080-32-2.56-45.227l64-71.253c8.96-9.814 23.040-13.228 35.413-8.535 12.372 4.693 20.478 16.641 20.478 29.868v228.267c0 17.92-14.078 32-31.998 32z","M427.52 222.717c-7.255 0-14.081-2.132-20.055-7.252-13.653-11.093-15.786-31.146-5.12-44.8l84.481-105.385c11.093-13.653 31.147-15.789 44.8-5.123s15.787 31.149 5.12 44.802l-84.48 105.385c-5.973 8.107-15.36 12.372-24.747 12.372z","M511.974 970.658c-226.56 0-411.308-184.324-411.308-411.311 0-88.32 28.587-173.225 83.2-245.759 10.667-14.080 30.72-17.065 44.8-6.398s17.068 30.72 6.401 44.8c-46.080 61.44-70.401 133.117-70.401 207.357 0 191.573 155.734 347.311 347.308 347.311s347.307-155.738 347.307-347.311c0-191.572-155.733-347.305-347.307-347.305-24.747 0-49.92 2.988-77.227 9.388-17.067 3.84-34.56-6.827-38.4-23.893s6.827-34.561 23.893-38.401c32-7.253 62.293-11.094 91.733-11.094 226.56 0 411.307 184.32 411.307 411.305 0 226.987-184.747 411.311-411.307 411.311z","M597.333 711.266c-64.853 0-117.333-52.48-117.333-117.333v-57.6c0-64.853 52.48-117.333 117.333-117.333s117.333 52.48 117.333 117.333v57.6c0 64.853-52.48 117.333-117.333 117.333zM597.333 483.426c-29.44 0-53.333 23.893-53.333 53.333v57.6c0 29.44 23.893 53.333 53.333 53.333s53.333-23.893 53.333-53.333v-57.6c0-29.44-23.893-53.333-53.333-53.333z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["backward-10-seconds"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":789,"id":338,"name":"backward-10-seconds","prevSize":32,"code":60279},"setIdx":2,"setId":2,"iconIdx":563},{"icon":{"paths":["M221.854 446.289c-8.107 0-16.64-3.413-22.613-9.387-8.96-9.387-11.947-23.041-6.827-34.988l79.36-189.44c1.707-3.84 2.56-6.4 3.84-8.533 63.147-145.493 143.787-180.907 286.293-126.293 8.107 2.987 14.507 9.387 17.92 17.493s3.413 17.067 0 25.173l-125.013 290.133c-5.12 11.947-16.64 19.201-29.44 19.201h-121.6c-24.32 0-47.36 4.693-69.547 14.080-3.84 1.707-8.107 2.56-12.373 2.56zM452.681 117.328c-52.907 0-85.333 34.56-119.040 113.067-0.427 1.28-1.28 2.56-1.707 3.84l-55.893 132.693c9.387-0.853 18.347-1.28 27.733-1.28h100.267l102.827-238.933c-20.053-6.4-37.973-9.387-54.187-9.387z","M780.382 438.195c-2.987 0-6.4-0.427-9.387-1.28-16.213-4.693-33.28-7.253-51.2-7.253h-294.399c-10.667 0-20.907-5.545-26.88-14.505-5.547-8.96-6.827-20.48-2.56-30.293l123.732-287.147c6.4-15.36 25.173-26.027 40.96-20.48 5.12 1.707 9.813 3.84 14.933 5.973l100.693 42.24c58.88 24.32 98.133 49.92 123.733 80.64 5.12 5.973 9.387 12.373 13.653 19.2 4.693 7.253 8.96 15.787 11.947 24.747 1.28 2.987 3.413 8.533 4.693 14.507 11.947 40.533 5.973 90.027-19.627 154.027-5.547 11.945-17.493 19.625-30.293 19.625zM474.035 365.664h246.187c13.653 0 26.88 1.28 40.107 3.413 11.947-37.12 14.507-65.707 7.68-88.747-0.853-3.84-1.707-5.547-2.133-7.253-2.56-6.827-4.267-10.667-6.4-14.080-2.987-4.693-5.12-8.533-8.533-12.373-18.347-22.187-50.773-42.667-99.413-62.72l-84.053-34.987-93.44 216.747z","M678.4 970.658h-332.8c-11.947 0-23.040-0.853-34.133-2.133-149.76-9.813-235.093-95.573-245.333-247.040-1.28-9.387-2.133-20.907-2.133-32.427v-83.2c0-96 57.173-182.612 145.493-221.012 30.293-12.8 61.867-19.2 94.72-19.2h416.427c24.32 0 47.787 3.413 69.547 10.24 100.267 30.293 170.667 125.012 170.667 229.972v83.2c0 9.387-0.427 18.347-0.853 26.88-9.387 166.827-106.667 254.72-281.6 254.72zM303.787 429.645c-24.32 0-47.36 4.693-69.547 14.080-64.853 28.16-106.667 91.733-106.667 162.133v83.2c0 8.96 0.853 17.92 1.707 26.453 8.107 121.6 67.84 181.333 187.733 189.44 10.667 1.28 19.2 2.133 28.16 2.133h332.8c140.8 0 209.92-61.867 216.747-194.133 0.427-7.68 0.853-15.36 0.853-23.893v-83.2c0-77.227-51.627-146.347-125.013-168.96-16.213-4.693-33.28-7.253-51.2-7.253h-415.573z","M95.583 637.858c-17.493 0-32-14.507-32-32v-125.013c0-134.4 95.147-250.453 226.56-276.053 11.52-2.133 23.467 2.133 31.147 11.093 7.253 8.96 9.387 21.76 4.693 32.427l-74.667 178.347c-3.413 7.68-9.387 13.653-16.64 17.067-64.853 28.16-106.667 91.733-106.667 162.133-0.427 17.493-14.507 32-32.427 32zM238.943 290.978c-54.613 30.72-94.293 84.48-106.667 147.2 18.773-19.2 40.533-35.413 65.28-47.36l41.387-99.84z","M928.393 637.858c-17.493 0-32-14.507-32-32 0-77.227-51.627-146.347-125.013-168.96-8.533-2.56-15.787-8.533-19.627-16.641s-4.267-17.493-0.853-25.6c20.053-49.92 25.173-86.187 17.067-114.347-0.853-3.84-1.707-5.547-2.133-7.253-5.547-12.373-2.56-26.88 7.253-36.267s24.747-11.52 36.693-5.12c93.013 48.64 150.613 144.213 150.613 249.174v125.013c0 17.493-14.507 32-32 32zM821.299 387.831c26.88 12.373 50.773 29.867 70.827 50.774-8.107-41.814-28.16-79.788-57.6-109.654-2.133 17.92-6.4 37.547-13.227 58.88z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":790,"id":337,"name":"wallet","prevSize":32,"code":60280},"setIdx":2,"setId":2,"iconIdx":564},{"icon":{"paths":["M512.017 762.88c-10.667 0-21.76-3.84-30.293-11.52l-110.078-96.427c-41.387-36.267-46.933-98.56-12.373-141.653 34.987-43.52 97.278-51.627 142.078-17.92l10.667 8.107 11.093-8.533c44.8-33.707 107.093-25.6 142.080 17.92 34.56 43.093 29.013 105.387-12.373 141.653l-110.080 96.427c-8.96 8.107-20.053 11.947-30.72 11.947zM413.459 606.72l98.558 86.187 98.56-86.187c15.787-13.653 17.92-37.12 4.693-53.333-13.227-16.64-36.693-19.627-53.76-6.827l-30.293 22.613c-11.52 8.533-26.88 8.533-38.4 0l-30.293-22.613c-16.64-12.8-40.532-9.813-53.758 6.827-12.8 16.213-10.667 39.68 4.693 53.333z","M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-426.667c0-188.16 57.173-245.333 245.333-245.333h64c74.667 0 98.133 24.32 128 64l64 85.333c14.080 18.773 16.213 21.333 42.667 21.333h128c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 117.333c-152.747 0-181.333 29.013-181.333 181.333v426.667c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-256c0-152.32-28.587-181.333-181.333-181.333h-128c-54.613 0-72.533-18.773-93.867-46.933l-64-85.333c-22.187-29.44-29.013-38.4-76.8-38.4h-64z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-favorite"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":791,"id":336,"name":"folder-favorite","prevSize":32,"code":60281},"setIdx":2,"setId":2,"iconIdx":565},{"icon":{"paths":["M512 544c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM512 117.333c-99.84 0-181.333 81.493-181.333 181.333s81.493 181.333 181.333 181.333c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.333-181.333-181.333z","M145.5 970.667c-17.493 0-32-14.507-32-32 0-182.187 178.774-330.667 398.508-330.667 43.093 0 85.333 5.547 126.293 17.067 17.067 4.693 26.88 22.187 22.187 39.253s-22.187 26.88-39.253 22.187c-34.987-9.813-71.68-14.507-109.227-14.507-184.321 0-334.508 119.467-334.508 266.667 0 17.493-14.507 32-32 32z","M768 970.667c-50.347 0-98.133-18.773-135.253-52.48-14.933-12.8-28.16-28.587-38.4-46.080-18.773-30.72-29.013-66.987-29.013-104.107 0-53.333 20.48-103.253 57.173-141.227 38.4-39.68 90.027-61.44 145.493-61.44 58.027 0 113.067 24.747 150.613 67.413 33.28 37.12 52.053 84.907 52.053 135.253 0 16.213-2.133 32.427-6.4 47.787-4.267 19.2-12.373 39.253-23.467 56.747-35.413 60.587-101.973 98.133-172.8 98.133zM768 629.333c-37.973 0-72.96 14.933-99.413 41.813-25.173 26.027-39.253 60.16-39.253 96.853 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.787 22.613 26.027 31.573 25.6 23.467 58.453 36.267 92.587 36.267 48.213 0 93.867-25.6 118.613-66.987 7.253-11.947 12.8-25.6 15.787-38.827 2.987-11.093 4.267-21.76 4.267-32.853 0-34.133-12.8-66.987-35.84-92.587-25.6-29.867-63.147-46.507-102.827-46.507z","M831.991 799.147h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-minus"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":792,"id":335,"name":"user-minus","prevSize":32,"code":60282},"setIdx":2,"setId":2,"iconIdx":566},{"icon":{"paths":["M512 970.667c-223.573 0-405.333-181.76-405.333-405.333s181.76-405.333 405.333-405.333c223.573 0 405.333 181.76 405.333 405.333 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-188.16-153.173-341.333-341.333-341.333s-341.333 153.173-341.333 341.333c0 188.16 153.173 341.333 341.333 341.333 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 586.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M640 117.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.667 928c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M682.667 928c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["timer-pause"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":793,"id":334,"name":"timer-pause","prevSize":32,"code":59762},"setIdx":2,"setId":2,"iconIdx":567},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M359.252 497.058c-62.72 0-113.919-51.2-113.919-113.92s51.199-114.347 113.919-114.347c62.72 0 113.921 51.2 113.921 114.347s-50.774 113.92-113.921 113.92zM359.252 332.791c-27.733 0-49.919 22.613-49.919 50.347s22.612 49.92 49.919 49.92c27.307 0 49.922-22.613 49.922-49.92s-22.189-50.347-49.922-50.347z","M359.252 755.204c-62.72 0-113.919-51.2-113.919-114.347s51.199-113.92 113.919-113.92c62.72 0 113.921 51.2 113.921 113.92s-50.774 114.347-113.921 114.347zM359.252 590.938c-27.733 0-49.919 22.613-49.919 49.92s22.612 50.347 49.919 50.347c27.307 0 49.922-22.613 49.922-50.347s-22.189-49.92-49.922-49.92z","M433.51 637.44c-9.813 0-19.199-4.267-25.599-12.8-10.667-14.080-7.679-34.133 6.401-44.8l313.172-234.241c14.080-10.667 34.133-7.68 44.8 6.4s7.68 34.133-6.4 44.8l-313.173 234.241c-5.973 4.267-12.373 6.4-19.2 6.4z","M746.684 683.938c-6.827 0-13.227-2.133-19.2-6.4l-313.172-234.24c-14.080-10.667-17.068-30.719-6.401-44.799s30.719-17.066 44.799-6.4l313.173 234.239c14.080 10.667 17.067 30.72 6.4 44.8-6.4 8.533-15.787 12.8-25.6 12.8z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scissor"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":794,"id":333,"name":"scissor","prevSize":32,"code":60283},"setIdx":2,"setId":2,"iconIdx":568},{"icon":{"paths":["M260.693 778.671c-7.68 0-15.787-2.987-21.76-8.533-84.48-79.36-185.599-212.907-185.599-399.359 0-149.333 120.747-270.508 269.227-270.508 72.107 0 139.52 28.161 189.44 78.508 49.92-50.347 117.333-78.508 189.44-78.508 53.76 0 105.813 16.214 150.613 46.080 14.507 9.813 18.347 29.866 8.533 44.372s-29.867 18.347-44.373 8.534c-33.707-23.040-73.387-35.411-114.347-35.411-64.853 0-125.013 30.293-163.84 82.773-11.947 16.213-39.253 16.213-51.2 0-39.253-52.48-98.986-82.773-163.84-82.773-113.067 0-205.227 92.585-205.227 206.505 0 163.84 90.027 282.026 165.547 352.853 12.8 11.947 13.652 32.427 1.706 45.227-7.253 6.827-15.787 10.24-24.32 10.24z","M511.974 923.738c-13.227 0-26.027-1.707-36.693-5.547-32-11.093-69.972-29.013-106.666-50.773-15.36-8.96-20.054-28.591-11.094-43.951 8.96-14.933 28.585-20.053 43.945-11.093 33.281 19.627 66.988 35.84 94.721 45.227 7.68 2.56 24.32 2.56 32 0 98.133-33.707 378.88-195.413 378.88-487.251 0-21.333-3.413-42.241-9.387-62.295-5.12-17.067 3.84-34.984 20.907-40.104s34.987 4.266 40.107 20.906c8.107 26.453 12.373 53.759 12.373 81.492 0 293.545-258.987 491.522-421.973 547.415-11.093 4.267-23.893 5.973-37.12 5.973z","M85.311 970.667c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.858 0-45.231l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-853.333 853.333c-6.4 6.4-14.508 9.387-22.615 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-slash"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":795,"id":332,"name":"heart-slash","prevSize":32,"code":60284},"setIdx":2,"setId":2,"iconIdx":569},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M938.637 394.667h-852.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h852.053c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.637 693.333h-852.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h852.053c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M363.084 970.231c-17.493 0-32-14.507-32-32v-852.481c0-17.493 14.507-32 32-32s32 14.507 32 32v852.055c0 17.92-14.080 32.427-32 32.427z","M661.751 970.231c-17.493 0-32-14.507-32-32v-852.481c0-17.493 14.507-32 32-32s32 14.507 32 32v852.055c0 17.92-14.080 32.427-32 32.427z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":796,"id":331,"name":"grid-1","prevSize":32,"code":60285},"setIdx":2,"setId":2,"iconIdx":570},{"icon":{"paths":["M407.917 800c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s31.998 14.507 31.998 32v213.333c0 17.493-14.505 32-31.998 32z","M512 693.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M377.601 973.235c-105.387 0-174.933-23.040-218.453-72.533-50.347-56.747-58.454-141.653-60.16-217.173l-5.546-263.254c-4.267-201.813 62.72-285.867 237.653-299.093l343.039-6.827c0.853 0 1.28 0 1.707 0 175.36 5.973 245.333 87.040 249.6 289.28l5.12 263.254c1.707 75.52-3.413 160.853-51.2 219.307-43.52 53.333-116.907 79.36-230.827 81.92l-256 5.12c-5.12 0-10.24 0-14.933 0zM674.133 177.928l-340.053 6.827c-119.467 9.387-180.48 47.787-176.64 234.24l5.546 263.254c1.707 90.453 14.933 143.36 43.947 176.213 32.427 36.693 90.88 52.907 184.747 50.773l255.999-5.12c93.44-1.707 151.467-20.48 182.613-58.453 27.733-33.707 38.827-87.040 36.693-177.493l-5.12-263.254c-4.267-186.027-66.56-222.72-187.733-226.987z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":797,"id":330,"name":"note-add","prevSize":32,"code":59763},"setIdx":2,"setId":2,"iconIdx":571},{"icon":{"paths":["M149.333 800c-17.493 0-32-14.507-32-32v-469.333c0-188.16 57.173-245.333 245.333-245.333h298.667c188.16 0 245.333 57.173 245.333 245.333v426.667c0 6.827 0 13.227-0.427 20.053-1.28 17.493-17.067 31.147-34.133 29.867-17.493-1.28-31.147-16.64-29.867-34.133 0.427-5.12 0.427-10.667 0.427-15.787v-426.667c0-152.32-28.587-181.333-181.333-181.333h-298.667c-152.747 0-181.333 29.013-181.333 181.333v469.333c0 17.493-14.507 32-32 32z","M725.333 970.667h-426.667c-99.84 0-181.333-81.493-181.333-181.333v-27.733c0-84.907 69.12-153.6 153.6-153.6h603.733c17.493 0 32 14.507 32 32v149.333c0 99.84-81.493 181.333-181.333 181.333zM270.933 672c-49.493 0-89.6 40.107-89.6 89.6v27.733c0 64.853 52.48 117.333 117.333 117.333h426.667c64.853 0 117.333-52.48 117.333-117.333v-117.333h-571.733z","M682.667 330.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M554.667 480h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":798,"id":329,"name":"book","prevSize":32,"code":60286},"setIdx":2,"setId":2,"iconIdx":572},{"icon":{"paths":["M426.667 970.667h-42.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.718 394.667h-852.051c-17.493 0-32-14.507-32-32s14.507-32 32-32h852.051c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512.051 693.333h-425.385c-17.493 0-32-14.507-32-32s14.507-32 32-32h425.385c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M363.084 970.24c-17.493 0-32-14.507-32-32v-852.052c0-17.493 14.507-32 32-32s32 14.507 32 32v852.052c0 17.493-14.080 32-32 32z","M661.751 543.573c-17.493 0-32-14.507-32-32v-425.386c0-17.493 14.507-32 32-32s32 14.507 32 32v425.386c0 17.493-14.080 32-32 32z","M629.807 970.675c-17.92 0-34.133-6.404-46.080-18.351-14.507-14.080-20.907-34.982-17.493-56.742l9.813-67.84c2.133-16.213 11.947-35.84 23.893-47.787l177.067-177.067c23.040-23.040 45.653-34.987 69.547-37.547 29.44-2.987 58.88 9.813 86.613 37.547s40.533 56.747 37.547 86.613c-2.133 23.893-14.507 46.507-37.547 69.547l-177.071 177.062c-11.52 11.52-31.147 21.338-47.787 23.898l-67.409 9.813c-3.84 0.427-7.68 0.853-11.093 0.853zM854.234 629.342c-0.427 0-1.284 0-1.711 0-8.533 0.853-18.769 7.249-30.716 19.196l-177.067 177.071c-2.133 2.133-5.124 8.533-5.551 11.52l-9.809 67.836 69.547-7.676c2.987-0.427 9.387-3.84 11.52-5.547l177.067-177.067c11.947-11.947 18.347-22.187 19.2-30.72 0.853-9.813-5.547-21.338-19.2-34.991-12.8-13.227-23.893-19.622-33.28-19.622z","M884.907 794.031c-2.987 0-5.547-0.427-8.533-1.28-64-17.92-115.2-69.12-133.12-133.12-4.693-17.067 5.124-34.556 22.191-39.249 17.493-4.693 34.556 5.12 39.249 22.187 11.947 42.667 46.084 76.796 88.751 88.742 17.067 4.693 26.88 22.618 22.187 39.258-3.84 14.507-17.071 23.462-30.724 23.462z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":799,"id":328,"name":"grid-edit","prevSize":32,"code":60287},"setIdx":2,"setId":2,"iconIdx":573},{"icon":{"paths":["M712.068 970.667h-400.212c-177.92 0-232.107-54.187-232.107-232.107v-19.627c0-17.493 14.507-32 32-32 37.547 0 68.267-30.72 68.267-68.267s-30.72-68.267-68.267-68.267c-17.493 0-32-14.507-32-32v-19.627c0-177.92 54.187-232.107 232.107-232.107h400.212c177.92 0 232.107 54.187 232.107 232.107v40.107c0 17.493-14.507 32-32 32-37.547 0-68.267 30.72-68.267 68.267s30.72 67.84 68.267 67.84c17.493 0 32 14.507 32 32-0.427 177.493-54.613 231.68-232.107 231.68zM144.177 747.093c0.853 135.68 27.733 159.573 168.107 159.573h400.212c133.12 0 163.84-21.76 167.68-139.947-57.173-14.507-99.84-66.133-99.84-128s42.667-113.92 100.267-128.427v-11.947c0-142.933-25.173-168.107-168.107-168.107h-400.638c-139.947 0-166.827 24.32-168.107 159.573 57.6 14.507 100.267 66.56 100.267 128.427s-42.667 114.347-99.84 128.853z","M426.667 437.333c-17.493 0-32-14.507-32-32v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 17.493-14.507 32-32 32z","M426.667 721.911c-17.493 0-32-14.507-32-32v-142.080c0-17.493 14.507-32 32-32s32 14.507 32 32v142.080c0 17.493-14.507 32-32 32z","M426.667 970.667c-17.493 0-32-14.507-32-32v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 17.493-14.507 32-32 32z","M696.755 330.673h-387.841c-12.8 0-24.747-7.68-29.44-19.627s-2.133-26.027 6.827-34.987l125.013-125.013c115.201-115.2 185.601-115.2 300.375 0l25.6 25.6c5.973 5.973 9.387 14.080 9.387 22.613s-3.413 16.64-9.387 22.613c-17.067 17.067-21.76 42.24-11.947 64 4.693 9.813 3.84 21.333-2.133 30.72-5.547 8.533-15.787 14.080-26.453 14.080zM386.141 266.673h270.081c-0.853-22.613 4.693-45.227 16.213-64.853l-5.547-5.547c-89.173-89.173-120.747-89.173-209.92 0l-70.828 70.4z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ticket-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":800,"id":327,"name":"ticket-2","prevSize":32,"code":60288},"setIdx":2,"setId":2,"iconIdx":574},{"icon":{"paths":["M896 544c-17.493 0-32-14.507-32-32v-352h-352c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32v384c0 17.493-14.507 32-32 32z","M127.978 928c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.858 0-45.231l768.002-767.998c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-768 768c-6.4 6.4-14.508 9.387-22.615 9.387z","M742.404 774.404c-8.107 0-16.218-2.991-22.618-9.391l-460.798-460.798c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l460.798 460.798c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.502 9.391-22.609 9.391z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sagittarius"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":801,"id":326,"name":"sagittarius","prevSize":32,"code":60289},"setIdx":2,"setId":2,"iconIdx":575},{"icon":{"paths":["M512.853 701.867h-256.853c-153.6 0-202.667-49.067-202.667-202.667v-243.2c0-153.6 49.067-202.667 202.667-202.667h426.667c153.6 0 202.667 49.067 202.667 202.667v76.372c0 8.96-3.84 17.92-10.667 23.893s-15.787 8.962-25.173 7.682c-9.387-1.28-20.48-1.708-32.427-1.708h-182.613c-73.813 0-89.6 15.788-89.6 89.6v218.027c0 17.493-14.507 32-32 32zM256 117.333c-119.040 0-138.667 19.627-138.667 138.667v243.2c0 119.040 19.627 138.667 138.667 138.667h224.853v-186.027c0-109.225 44.373-153.6 153.6-153.6h182.613c1.28 0 2.987 0 4.267 0v-42.24c0-119.040-19.627-138.667-138.667-138.667h-426.667z","M384 885.329c-17.493 0-32-14.507-32-32v-183.462c0-17.493 14.507-32 32-32s32 14.507 32 32v183.462c0 17.493-14.507 32-32 32z","M512 539.729h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512.009 885.333h-258.133c-17.493 0-32-14.507-32-32s14.507-32 32-32h258.133c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M853.312 332.372c-10.667-1.28-23.040-2.133-36.267-2.133h-182.613c-91.307 0-121.6 30.295-121.6 121.6v365.227c0 91.307 30.293 121.6 121.6 121.6h182.613c91.307 0 121.6-30.293 121.6-121.6v-365.227c0-78.079-22.187-111.361-85.333-119.468zM725.743 451.84c25.173 0 45.649 20.48 45.649 45.653s-20.476 45.653-45.649 45.653c-25.173 0-45.658-20.48-45.658-45.653s20.484-45.653 45.658-45.653zM725.743 817.067c-50.347 0-91.311-40.96-91.311-91.307 0-20.907 7.253-40.533 19.2-55.893 16.64-21.333 42.671-35.413 72.111-35.413 23.040 0 43.942 8.533 59.729 22.187 19.2 17.067 31.573 41.813 31.573 69.12 0 50.347-40.956 91.307-91.302 91.307z","M725.764 849.071c-67.84 0-123.307-55.467-123.307-123.307 0-27.307 9.387-54.187 26.027-75.52 23.467-30.293 59.307-47.787 97.28-47.787 29.44 0 58.453 10.667 80.64 29.867 27.307 24.32 42.667 58.027 42.667 93.44 0 67.84-55.467 123.307-123.307 123.307zM725.764 666.458c-18.347 0-35.413 8.533-46.933 23.040-8.107 10.24-12.373 23.040-12.373 36.267 0 32.853 26.453 59.307 59.307 59.307s59.307-26.453 59.307-59.307c0-17.067-7.68-33.28-20.907-45.227-10.24-8.96-24.32-14.080-38.4-14.080z","M725.739 575.147c-42.667 0-77.653-34.987-77.653-77.653s34.987-77.649 77.653-77.649c42.667 0 77.649 34.983 77.649 77.649s-34.982 77.653-77.649 77.653zM725.739 483.844c-7.68 0-13.653 5.969-13.653 13.649s5.973 13.653 13.653 13.653c7.68 0 13.649-5.973 13.649-13.653s-5.969-13.649-13.649-13.649z"],"attrs":[{},{},{},{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"10","strokeWidth":64},{},{}],"isMulticolor":false,"isMulticolor2":true,"grid":0,"tags":["devices-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{"s":0},{},{}]}},"attrs":[{},{},{},{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"10","strokeWidth":64},{},{}],"properties":{"order":802,"id":325,"name":"devices-1","prevSize":32,"code":60290},"setIdx":2,"setId":2,"iconIdx":576},{"icon":{"paths":["M725.333 970.667h-426.667c-146.773 0-245.333-98.56-245.333-245.333v-298.667c0-146.773 98.56-245.333 245.333-245.333h426.667c146.773 0 245.333 98.56 245.333 245.333v298.667c0 146.773-98.56 245.333-245.333 245.333zM298.667 245.333c-110.080 0-181.333 71.253-181.333 181.333v298.667c0 110.080 71.253 181.333 181.333 181.333h426.667c110.080 0 181.333-71.253 181.333-181.333v-298.667c0-110.080-71.253-181.333-181.333-181.333h-426.667z","M298.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M362.667 714.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM362.667 501.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M789.333 501.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 672h-21.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h21.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M789.333 672h-21.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h21.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["radio"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":803,"id":324,"name":"radio","prevSize":32,"code":60291},"setIdx":2,"setId":2,"iconIdx":577},{"icon":{"paths":["M650.261 950.187h-5.547c-189.44 0-280.747-74.667-296.533-241.92-1.707-17.493 11.093-33.28 29.013-34.987 17.493-1.707 33.28 11.52 34.987 29.013 12.373 133.973 75.52 183.893 232.96 183.893h5.547c173.653 0 235.093-61.44 235.093-235.093v-278.188c0-173.653-61.44-235.093-235.093-235.093h-5.547c-158.293 0-221.44 50.773-232.96 187.307-2.133 17.493-16.64 30.72-34.987 29.013-17.92-1.28-30.72-17.067-29.44-34.56 14.507-169.813 106.24-245.76 296.96-245.76h5.547c209.493 0 299.093 89.6 299.093 299.093v278.188c0 209.493-89.6 299.093-299.093 299.093z","M634.88 544h-549.547c-17.493 0-32-14.507-32-32s14.507-32 32-32h549.547c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M539.725 686.938c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l120.32-120.32-120.32-120.32c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l142.933 142.934c12.373 12.373 12.373 32.853 0 45.227l-142.933 142.933c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["login"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":804,"id":323,"name":"login","prevSize":32,"code":60292},"setIdx":2,"setId":2,"iconIdx":578},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M209.060 842.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l597.332-597.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-597.332 597.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slash"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":805,"id":322,"name":"slash","prevSize":32,"code":59764},"setIdx":2,"setId":2,"iconIdx":579},{"icon":{"paths":["M166.827 733.009c-8.107 0-16.213-2.987-22.613-9.387-58.453-58.88-90.88-136.533-90.88-218.88 0-171.092 138.667-310.186 309.333-310.186l258.987 0.854-46.507-44.375c-12.8-12.373-13.227-32.426-0.853-45.226s32.427-13.225 45.227-0.852l104.107 99.838c9.387 8.96 12.373 23.040 7.68 34.987s-16.64 20.055-29.867 20.055l-339.2-0.854c-135.253 0-245.333 110.508-245.333 246.19 0 65.28 25.599 127.142 72.106 173.649 12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.080 8.96-22.186 8.96z","M426.662 928c-8.107 0-15.787-2.991-22.187-8.964l-104.107-99.836c-9.387-8.96-12.373-23.040-7.68-34.987s16.64-20.058 29.867-20.058l339.2 0.858c135.253 0 245.333-110.511 245.333-246.191 0-65.28-25.6-127.142-72.107-173.649-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0c58.453 58.88 90.88 136.529 90.88 218.876 0 171.093-138.667 310.191-309.333 310.191l-258.987-0.858 46.507 44.378c12.8 12.373 13.227 32.427 0.853 45.227-6.827 6.827-14.933 10.24-23.467 10.24z","M640 544h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["repeate-music"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":806,"id":321,"name":"repeate-music","prevSize":32,"code":60293},"setIdx":2,"setId":2,"iconIdx":580},{"icon":{"paths":["M501.333 970.667h-192c-177.067 0-256-78.933-256-256v-192c0-177.067 78.933-256 256-256h192c177.067 0 256 78.933 256 256v192c0 177.067-78.933 256-256 256zM309.333 330.667c-141.653 0-192 50.347-192 192v192c0 141.653 50.347 192 192 192h192c141.653 0 192-50.347 192-192v-192c0-141.653-50.347-192-192-192h-192z","M938.684 416c-17.493 0-32-14.507-32-32 0-126.293-87.893-232.107-206.080-259.84l11.52 19.2c8.96 15.36 4.267 34.987-11.093 43.947s-34.987 4.267-43.947-11.093l-44.8-74.667c-5.973-9.813-5.973-22.187-0.427-32 5.973-9.813 16.64-16.213 28.16-16.213 182.187 0 330.667 148.48 330.667 330.667 0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rotate-left-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":807,"id":320,"name":"rotate-left-1","prevSize":32,"code":60294},"setIdx":2,"setId":2,"iconIdx":581},{"icon":{"paths":["M573.001 672.009h-385.28c-47.787 0-91.307-24.742-115.627-66.129s-25.173-90.884-2.133-133.124l192.427-350.292c23.893-43.52 67.84-69.547 117.76-69.547s93.866 26.027 117.76 69.547l192.853 350.292c23.040 41.813 22.187 91.738-2.133 133.124s-67.84 66.129-115.627 66.129zM380.148 117.344c-26.027 0-49.067 13.654-61.44 36.267l-192.427 350.291c-11.947 22.187-11.52 47.787 0.853 69.547 12.8 21.76 35.413 34.56 60.587 34.56h385.28c25.173 0 47.787-12.8 60.587-34.56s13.227-47.36 0.853-69.547l-192.853-350.291c-12.373-22.613-35.413-36.267-61.44-36.267z","M661.333 970.667c-170.667 0-309.333-138.667-309.333-309.333 0-7.68 0.427-15.36 0.853-23.040 0.853-17.067 14.933-30.293 32-30.293h188.16c25.173 0 47.787-12.8 60.587-34.56s13.227-47.36 0.853-69.547l-54.613-99.413c-5.12-8.96-5.12-19.628-0.853-29.014s12.8-15.786 22.613-17.92c19.2-3.84 39.253-5.547 59.733-5.547 170.667 0 309.333 138.667 309.333 309.333s-138.667 309.333-309.333 309.333zM416.427 672c5.547 130.56 113.493 234.667 244.907 234.667 135.253 0 245.333-110.080 245.333-245.333s-110.080-245.333-245.333-245.333c-0.853 0-1.28 0-2.133 0l31.573 57.173c23.040 41.813 22.187 91.733-2.133 133.12s-67.413 66.133-115.627 66.133h-156.587v-0.427z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shapes"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":808,"id":319,"name":"shapes","prevSize":32,"code":60295},"setIdx":2,"setId":2,"iconIdx":582},{"icon":{"paths":["M874.667 650.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c25.173 0 30.72-3.84 31.147-3.84 0.853-2.56 0.853-17.493 0.853-28.16v-85.333c0-10.667 0-25.173-1.707-29.013-0.427 0.427-6.827-2.987-30.293-2.987-17.493 0-32-14.507-32-32s14.507-32 32-32c88.747 0 96 43.52 96 96v85.333c0 52.48-7.253 96-96 96z","M426.705 714.667c-7.252 0-14.932-2.56-20.905-7.68-13.227-11.52-14.933-31.573-3.413-45.227l88.745-103.68c1.28-3.84 0-7.253-0.853-8.96-1.28-2.133-3.84-5.12-9.387-5.12h-98.132c-26.88 0-51.2-14.080-64.853-37.12s-13.653-51.2 0-74.667l83.2-110.079c10.667-14.080 30.718-17.067 44.798-6.4s17.067 30.72 6.4 44.8l-80.638 106.665c-0.427 1.28 1.28 5.12 2.133 7.253 1.28 2.133 3.84 5.12 9.387 5.12h98.132c26.88 0 51.2 14.080 64.853 37.12s13.653 51.2 0 74.667c-0.853 1.707-2.133 3.413-3.413 4.693l-91.307 106.667c-6.827 8.107-15.787 11.947-24.747 11.947z","M298.667 842.667c-188.16 0-245.333-57.173-245.333-245.333v-170.667c0-188.16 57.173-245.333 245.333-245.333 17.493 0 32 14.507 32 32s-14.507 32-32 32c-152.32 0-181.333 29.013-181.333 181.333v170.667c0 152.32 29.013 181.333 181.333 181.333 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M554.667 842.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c152.32 0 181.333-29.013 181.333-181.333v-170.667c0-152.32-29.013-181.333-181.333-181.333-17.493 0-32-14.507-32-32s14.507-32 32-32c188.16 0 245.333 57.173 245.333 245.333v170.667c0 188.16-57.173 245.333-245.333 245.333z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["battery-charging"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":809,"id":318,"name":"battery-charging","prevSize":32,"code":60296},"setIdx":2,"setId":2,"iconIdx":583},{"icon":{"paths":["M661.333 970.667h-298.667c-158.293 0-245.333-87.040-245.333-245.333v-426.667c0-158.293 87.040-245.333 245.333-245.333h298.667c155.733 0 245.333 89.6 245.333 245.333v42.667c0 40.96-33.707 74.667-74.667 74.667-5.973 0-10.667 4.693-10.667 10.667v92.587c0 14.080 5.547 27.733 15.787 37.547l35.413 35.413c22.187 22.187 34.56 51.627 34.56 82.773v50.347c-0.427 155.733-90.027 245.333-245.76 245.333zM362.667 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h298.667c120.32 0 181.333-61.013 181.333-181.333v-49.92c0-14.080-5.547-27.733-15.787-37.547l-35.413-35.413c-22.187-22.187-34.56-51.627-34.56-82.773v-93.013c0-40.96 33.707-74.667 74.667-74.667 5.973 0 10.667-4.693 10.667-10.667v-42.667c0-120.32-61.013-181.333-181.333-181.333h-298.24z","M683.115 969.387c-17.493 0-32-14.080-32-31.573l-1.28-127.573c0-29.44-24.32-52.907-53.333-52.907h-170.668c-14.080 0-27.733 5.547-37.973 15.787-9.813 9.813-15.36 23.467-15.36 37.547l0.427 126.72c0 17.493-14.080 32-32 32-17.493 0-32-14.080-32-32l-0.427-126.72c0-31.573 11.947-61.013 34.133-83.2s51.627-34.56 83.2-34.56h171.095c64.427 0 116.907 52.48 117.333 116.48l1.28 127.147c0 18.347-14.507 32.853-32.427 32.853 0.427 0 0 0 0 0z","M381.426 243.202h-0.426c-17.92-0.427-32-14.933-31.574-32.853l2.133-123.307c0.427-17.493 14.507-31.573 32-31.573h0.427c17.493 0.427 31.573 14.933 31.573 32.427l-2.133 123.733c-0.427 17.493-14.507 31.573-32 31.573z","M509.457 243.203h-0.427c-17.493-0.427-31.573-14.933-31.573-32.427l2.133-123.307c0.427-17.493 14.507-31.573 32-31.573h0.427c17.493 0.427 31.573 14.933 31.573 32.427l-2.133 123.307c-0.427 17.493-14.507 31.573-32 31.573z","M637.457 241.921h-0.427c-17.493-0.427-31.573-14.933-31.573-32.427l2.133-123.307c0.427-17.493 14.507-31.573 32-31.573h0.427c17.493 0.427 31.573 14.933 31.573 32.427l-2.133 123.307c-0.427 17.493-14.507 31.573-32 31.573z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ram-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":810,"id":317,"name":"ram-2","prevSize":32,"code":60297},"setIdx":2,"setId":2,"iconIdx":584},{"icon":{"paths":["M682.658 952.316c-14.507 0-28.587-4.262-40.96-12.369l-181.76-121.178h-80.641c-9.813 0-19.201-4.689-25.175-12.369-5.973-8.107-8.105-18.351-5.545-27.738 2.56-10.24 3.84-20.48 3.84-31.573 0-34.133-12.8-66.982-35.84-92.582-26.027-29.44-63.147-46.084-102.827-46.084-37.973 0-72.961 14.933-99.414 41.813-8.107 8.533-20.48 11.52-31.573 8.533-11.093-3.413-20.053-12.373-22.613-23.893-4.267-18.773-6.4-39.253-6.4-61.44v-255.998c0-146.773 98.56-245.333 245.333-245.333h426.668c146.773 0 245.333 98.56 245.333 245.333v255.998c0 71.253-23.467 132.693-68.267 177.493-37.547 37.547-87.467 60.164-145.067 66.138v60.582c0 27.733-15.364 52.907-39.684 66.133-11.52 5.547-23.462 8.533-35.409 8.533zM415.99 754.342h53.335c6.4 0 12.373 1.707 17.92 5.547l189.867 126.724c4.693 2.987 8.533 1.702 10.667 0.422s5.973-3.84 5.973-9.813v-90.88c0-17.493 14.507-32 32-32 54.187 0 99.84-17.062 131.84-49.062 32.427-32.427 49.493-78.084 49.493-132.271v-255.999c0-110.080-71.253-181.333-181.333-181.333h-426.668c-110.080 0-181.333 71.253-181.333 181.333v250.879c29.013-15.787 61.867-23.893 96-23.893 58.027 0 113.066 24.751 150.613 67.418 33.28 37.12 52.054 84.902 52.054 135.249-0.427 2.56-0.427 5.12-0.427 7.68z","M213.333 949.333c-111.787 0-202.667-90.88-202.667-202.667 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 58.027-25.173 113.493-69.12 151.893-37.12 32.853-84.48 50.773-133.547 50.773zM213.333 608c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 76.373 62.293 138.667 138.667 138.667 33.28 0 65.706-12.373 91.733-34.56 29.867-26.453 46.934-64 46.934-104.107 0-76.373-62.293-138.667-138.667-138.667z","M170.662 821.333c-10.667 0-21.334-5.547-27.307-15.36-8.96-15.36-4.266-34.987 11.094-43.947l37.974-22.613v-46.080c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 11.093-5.974 21.76-15.36 27.307l-53.333 32c-5.973 3.413-11.52 4.693-17.067 4.693z","M661.333 480h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-time"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":811,"id":316,"name":"message-time","prevSize":32,"code":60298},"setIdx":2,"setId":2,"iconIdx":585},{"icon":{"paths":["M768.021 456.956c-6.827 0-13.653-2.133-19.627-6.827-143.787-110.932-329.386-110.932-472.746 0-14.080 10.667-34.133 8.107-44.8-5.547-10.667-14.080-8.107-34.133 5.547-44.8 167.253-129.28 383.572-129.28 551.252 0 14.080 10.667 16.64 30.72 5.547 44.8-5.973 8.107-15.787 12.373-25.173 12.373z","M699.75 588.8c-6.827 0-13.653-2.133-19.627-6.827-102.4-78.933-234.24-78.933-336.641 0-14.080 10.667-34.134 8.107-44.8-5.547-10.667-14.080-8.107-34.133 5.547-44.8 125.868-97.28 288.855-97.28 414.722 0 14.080 10.667 16.64 30.72 5.547 44.8-5.547 8.107-14.933 12.373-24.747 12.373z","M605.85 720.636c-6.827 0-13.653-2.133-19.627-6.827-45.227-34.987-103.68-34.987-148.907 0-14.081 10.667-34.134 8.107-44.801-5.547-10.667-14.080-8.107-34.133 5.547-44.8 67.841-52.48 159.148-52.48 226.988 0 14.080 10.667 16.64 30.72 5.547 44.8-5.547 8.107-14.933 12.373-24.747 12.373z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":812,"id":315,"name":"wifi-square","prevSize":32,"code":60299},"setIdx":2,"setId":2,"iconIdx":586},{"icon":{"paths":["M341.333 952.316c-11.947 0-24.321-2.987-35.414-8.96-24.32-12.8-39.252-38.4-39.252-65.707v-60.582c-128.853-13.227-213.333-107.951-213.333-243.631v-255.998c0-146.773 98.56-245.333 245.333-245.333h426.667c146.773 0 245.333 98.56 245.333 245.333v255.998c0 146.773-98.56 245.333-245.333 245.333h-160.853l-181.761 121.178c-12.373 8.107-26.879 12.369-41.385 12.369zM298.667 135.677c-110.080 0-181.333 71.253-181.333 181.333v256.003c0 110.080 71.253 181.333 181.333 181.333 17.493 0 32 14.507 32 32v90.88c0 5.547 3.413 8.107 5.547 9.387s6.4 2.56 11.094-0.427l189.866-126.293c5.12-3.413 11.52-5.547 17.92-5.547h170.667c110.080 0 181.333-71.253 181.333-181.333v-256.003c0-110.080-71.253-181.333-181.333-181.333h-427.093z","M511.991 516.689c-17.493 0-32-14.507-32-32v-8.96c0-49.493 36.267-73.814 49.92-83.2 15.787-10.667 20.907-17.92 20.907-29.013 0-21.333-17.493-38.828-38.827-38.828s-38.827 17.495-38.827 38.828c0 17.493-14.507 32-32 32-17.492 0-31.998-14.507-31.998-32 0-56.747 46.078-102.828 102.825-102.828s102.827 46.082 102.827 102.828c0 48.64-35.84 72.96-49.067 81.92-16.64 11.093-21.76 18.347-21.76 30.293v8.96c0 17.92-14.507 32-32 32z","M512 622.938c-17.92 0-32-14.507-32-32s14.507-32 32-32c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-question"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":813,"id":314,"name":"message-question","prevSize":32,"code":60300},"setIdx":2,"setId":2,"iconIdx":587},{"icon":{"paths":["M512 970.667c-29.867 0-60.16-11.52-82.773-34.133l-72.961-72.107c-17.92-17.92-42.665-27.733-67.839-27.733h-32.427c-88.32 0-160-71.253-160-158.72v-465.92c0-87.467 71.68-158.72 160-158.72h512c88.32 0 160 71.253 160 158.72v465.493c0 87.467-71.68 158.72-160 158.72h-32.427c-25.173 0-49.92 10.24-67.84 27.733l-72.96 72.107c-22.613 23.040-52.907 34.56-82.773 34.56zM256 117.333c-52.907 0-96 42.667-96 94.72v465.493c0 52.48 43.093 94.72 96 94.72h32.427c42.24 0 83.198 17.067 113.065 46.507l72.961 72.107c20.907 20.48 54.613 20.48 75.52 0l72.96-72.107c29.867-29.44 70.827-46.507 113.067-46.507h32c52.907 0 96-42.667 96-94.72v-465.493c0-52.48-43.093-94.72-96-94.72h-512z","M515.021 413.869c-0.853 0-2.133 0-2.987 0-1.28 0-2.987 0-4.267 0-62.293-2.133-110.934-52.48-110.934-115.2 0-63.573 51.628-115.2 115.201-115.2s115.2 51.627 115.2 115.2c-0.427 62.72-49.067 113.067-111.36 115.2 0 0-0.427 0-0.853 0zM512.034 247.469c-28.16 0-51.2 23.040-51.2 51.2 0 27.733 21.76 50.347 49.067 51.2 0-0.427 2.56-0.427 5.547 0 26.88-1.707 47.787-23.893 47.787-51.2 0-28.16-23.040-51.2-51.2-51.2z","M512 712.538c-48.64 0-97.279-12.8-135.252-37.973-35.84-23.893-56.748-58.453-56.748-95.147s20.481-71.68 56.748-95.573c75.946-50.347 194.559-50.347 270.079 0 35.84 23.893 56.747 58.88 56.747 95.147 0 36.693-20.48 71.253-56.747 95.573-37.547 25.6-86.187 37.973-134.827 37.973zM412.159 537.178c-18.347 12.373-28.159 27.307-28.159 42.24s10.239 29.867 28.159 42.24c54.188 36.267 145.068 36.267 199.255 0 18.347-12.373 28.587-27.307 28.16-42.24 0-14.933-10.24-29.867-28.16-42.24-53.76-36.267-145.067-36.267-199.255 0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag-user"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":814,"id":313,"name":"tag-user","prevSize":32,"code":60301},"setIdx":2,"setId":2,"iconIdx":588},{"icon":{"paths":["M167.643 709.551c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l509.865-509.866c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-509.865 510.292c-5.973 5.973-14.507 8.96-22.613 8.96z","M473.562 811.947c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l51.2-51.2c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-51.2 51.2c-5.973 5.973-14.080 9.387-22.613 9.387z","M588.395 697.178c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l101.973-101.973c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-101.973 101.973c-5.973 5.973-14.507 9.387-22.613 9.387z","M473.638 970.662c-41.813 0-83.627-25.6-134.4-76.373l-209.493-209.493c-101.973-101.973-101.547-167.68 1.28-270.506l283.307-283.307c102.827-102.826 168.534-103.253 270.507-1.28l209.493 209.493c101.973 101.973 101.547 167.68-1.28 270.506l-283.307 283.307c-51.627 51.627-93.867 77.653-136.107 77.653zM550.438 117.329c-22.187 0-50.347 18.347-90.88 58.88l-283.307 283.306c-40.533 40.533-58.88 68.693-58.88 90.453 0 22.187 17.067 49.067 57.6 89.6l209.493 209.493c40.533 40.533 66.987 57.6 89.174 57.6 0 0 0 0 0.427 0 22.187 0 49.92-18.347 90.453-58.88l283.307-283.307c40.533-40.533 58.88-68.693 58.88-90.453 0-22.187-17.067-49.066-57.6-89.6l-209.493-209.493c-40.107-40.533-66.987-57.6-89.173-57.6z","M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-pos"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":815,"id":312,"name":"card-pos","prevSize":32,"code":60302},"setIdx":2,"setId":2,"iconIdx":589},{"icon":{"paths":["M256 635.311c-17.493 0-32-14.507-32-32v-183.040c0-17.493 14.507-32 32-32s32 14.507 32 32v183.040c0 17.92-14.507 32-32 32z","M384 696.307c-17.493 0-32-14.507-32-32v-304.64c0-17.493 14.507-32 32-32s32 14.507 32 32v304.64c0 17.92-14.507 32-32 32z","M512 757.333c-17.493 0-32-14.507-32-32v-426.667c0-17.493 14.507-32 32-32s32 14.507 32 32v426.667c0 17.493-14.507 32-32 32z","M640 696.307c-17.493 0-32-14.507-32-32v-304.64c0-17.493 14.507-32 32-32s32 14.507 32 32v304.64c0 17.92-14.507 32-32 32z","M768 635.311c-17.493 0-32-14.507-32-32v-183.040c0-17.493 14.507-32 32-32s32 14.507 32 32v183.040c0 17.92-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["voice-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":816,"id":311,"name":"voice-square","prevSize":32,"code":60303},"setIdx":2,"setId":2,"iconIdx":590},{"icon":{"paths":["M511.962 567.471c-5.547 0-11.093-1.28-16.213-4.267l-376.746-218.027c-14.933-8.96-20.48-28.587-11.52-43.947s28.587-20.48 43.947-11.52l360.533 208.64 358.4-207.36c15.36-8.96 34.987-3.413 43.947 11.52 8.96 15.36 3.413 34.987-11.52 43.947l-374.187 216.747c-5.547 2.56-11.093 4.267-16.64 4.267z","M512 954.027c-17.493 0-32-14.507-32-32v-386.987c0-17.493 14.507-32 32-32s32 14.507 32 32v386.987c0 17.493-14.507 32-32 32z","M512.026 970.667c-37.547 0-74.667-8.107-104.105-24.32l-227.84-126.72c-61.867-34.133-110.080-116.48-110.080-187.307v-241.067c0-70.827 48.213-152.747 110.080-187.307l227.84-126.293c58.452-32.427 149.759-32.427 208.212 0l227.84 126.72c61.867 34.133 110.080 116.48 110.080 187.307v241.067c0 70.827-48.213 152.747-110.080 187.307l-227.84 126.293c-29.44 16.213-66.56 24.32-104.107 24.32zM512.026 117.333c-26.88 0-53.333 5.547-72.96 16.213l-227.839 126.72c-40.96 22.613-77.226 84.053-77.226 130.987v241.067c0 46.933 36.266 108.373 77.226 131.413l227.839 126.72c38.827 21.76 107.093 21.76 145.92 0l227.84-126.72c40.96-23.040 77.227-84.053 77.227-131.413v-241.067c0-46.933-36.267-108.373-77.227-131.413l-227.84-126.72c-19.627-10.24-46.080-15.787-72.96-15.787z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":817,"id":310,"name":"box-1","prevSize":32,"code":60304},"setIdx":2,"setId":2,"iconIdx":591},{"icon":{"paths":["M338.762 651.102c-3.84 0-7.254-0.427-11.094-2.133-34.56-12.8-63.573-37.973-81.92-70.827-42.667-76.8-16.213-177.068 58.454-223.575l99.84-61.868c36.692-22.613 79.785-29.439 120.745-18.772s75.52 37.546 96.427 75.092c42.667 76.8 16.213 177.068-58.453 223.575l-11.093 8.107c-14.507 10.24-34.56 6.827-44.8-7.253-10.24-14.507-6.827-34.56 7.253-44.8l13.227-9.387c47.787-29.867 64-91.733 37.973-139.095-12.373-22.187-32.427-37.974-56.32-44.374s-49.067-2.133-70.827 11.094l-99.839 61.866c-46.080 28.588-62.293 90.455-36.266 138.242 10.667 19.2 27.733 34.133 48.213 41.813 16.64 5.973 25.173 24.32 18.773 40.96-4.693 13.227-17.066 21.333-30.293 21.333z","M540.16 753.071c-12.8 0-26.027-1.707-38.827-5.12-40.96-10.667-75.521-37.547-96.001-75.093-42.667-76.8-16.214-177.067 58.455-223.573l11.093-8.107c14.507-10.24 34.56-6.827 44.8 7.253 10.24 14.507 6.827 34.56-7.253 44.8l-13.227 9.387c-47.787 29.867-64 91.733-37.973 139.093 12.373 22.187 32.427 37.973 56.32 44.373s49.067 2.133 70.827-11.093l99.84-61.867c46.080-28.587 62.293-90.453 36.267-138.24-10.667-19.2-27.733-34.133-48.213-41.813-16.64-5.973-25.173-24.32-18.773-40.96 5.973-16.64 24.32-25.173 40.96-18.773 34.56 12.8 63.573 37.974 81.92 70.826 42.667 76.8 16.213 177.067-58.453 223.573l-99.84 61.867c-25.173 15.36-53.333 23.467-81.92 23.467z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link-circle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":818,"id":309,"name":"link-circle","prevSize":32,"code":60305},"setIdx":2,"setId":2,"iconIdx":592},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v298.667c0 155.733-89.6 245.333-245.333 245.333zM298.667 181.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-298.667c0-122.027-59.307-181.333-181.333-181.333h-426.667z","M511.949 549.12c-35.84 0-72.107-11.093-99.84-33.707l-133.547-106.668c-13.653-11.093-16.213-31.147-5.12-44.8s31.147-16.213 44.8-5.12l133.546 106.668c32.427 26.027 87.467 26.027 119.893 0l133.547-106.668c13.653-11.093 34.133-8.96 44.8 5.12 11.093 13.653 8.96 34.133-5.12 44.8l-133.547 106.668c-27.307 22.613-63.573 33.707-99.413 33.707z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":819,"id":308,"name":"sms","prevSize":32,"code":60306},"setIdx":2,"setId":2,"iconIdx":593},{"icon":{"paths":["M512 970.667c-33.707 0-65.707-17.067-87.893-47.36l-43.093-57.6c-8.96-11.947-20.907-18.773-33.707-19.627s-25.6 5.12-35.84 15.787l-24.32-21.333 23.467 21.76c-61.867 65.707-108.8 60.587-131.413 51.627-23.040-8.96-61.867-38.4-61.867-133.12v-480.427c0-189.44 54.613-247.040 233.387-247.040h322.133c178.773 0 233.387 57.6 233.387 247.040v480.427c0 94.293-38.827 123.733-61.867 133.12-22.613 8.96-69.547 14.080-131.413-51.627-10.24-11.093-23.467-16.64-36.267-15.787s-25.173 7.68-34.133 19.627l-43.093 57.6c-21.76 29.867-53.76 46.933-87.467 46.933zM344.747 782.080c1.707 0 3.84 0 5.547 0 31.573 1.707 61.44 18.347 81.493 45.227l43.52 57.6c20.907 27.733 52.907 27.733 73.813 0l43.093-57.6c20.053-26.88 49.92-43.52 81.92-45.227s63.147 11.52 86.187 36.267c32.427 34.56 53.333 38.827 61.013 35.84 10.24-4.267 21.333-29.013 21.333-73.387v-480.427c0-154.027-26.88-183.040-169.387-183.040h-322.56c-142.507 0-169.387 29.013-169.387 183.040v480.427c0 44.8 11.093 69.547 21.333 73.387 7.68 2.987 28.587-1.28 61.013-35.84 22.187-23.467 51.2-36.267 81.067-36.267z","M640 597.333c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M384 384c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M368.227 620.791c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l287.146-287.148c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-287.146 287.148c-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-disscount"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":820,"id":307,"name":"receipt-disscount","prevSize":32,"code":60307},"setIdx":2,"setId":2,"iconIdx":594},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M448 714.667c-76.373 0-138.667-62.293-138.667-138.667 0-147.2 119.467-266.667 266.667-266.667 76.373 0 138.667 62.293 138.667 138.667 0 147.2-119.467 266.667-266.667 266.667zM576 373.333c-111.787 0-202.667 90.88-202.667 202.667 0 40.96 33.707 74.667 74.667 74.667 111.787 0 202.667-90.88 202.667-202.667 0-40.96-33.707-74.667-74.667-74.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discover"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":821,"id":306,"name":"discover","prevSize":32,"code":60308},"setIdx":2,"setId":2,"iconIdx":595},{"icon":{"paths":["M682.667 544h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 714.667c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32s32 14.507 32 32v341.333c0 17.493-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":822,"id":305,"name":"add-square","prevSize":32,"code":59765},"setIdx":2,"setId":2,"iconIdx":596},{"icon":{"paths":["M711.223 888.747c-0.853 0-1.28 0-1.707 0h-473.173c-125.44-8.96-181.76-105.813-181.76-191.573 0-76.8 44.8-162.133 142.080-185.6-26.88-107.52-3.413-208.213 67.413-281.173 80.213-82.773 207.787-114.773 316.587-79.36 16.64 5.547 26.027 23.467 20.48 40.107s-23.467 26.027-40.107 20.48c-86.613-27.733-187.733-2.56-251.307 63.573-61.867 64-76.373 153.173-40.96 251.733 3.413 9.813 2.133 20.907-3.84 29.013s-15.787 13.653-26.027 13.653c-82.773 5.973-119.893 68.267-119.893 127.573s37.12 121.6 119.893 128h471.040c48.64 0.427 97.28-17.92 133.547-51.2 49.067-43.093 70.4-105.813 59.733-172.373-2.987-17.493 8.96-33.707 26.453-36.693s33.707 8.96 36.693 26.453c14.507 87.893-15.787 174.080-79.787 230.4-47.787 42.667-110.080 66.987-175.36 66.987z","M309.753 587.098c-4.693 0-9.813-1.28-14.080-3.413-17.92-8.96-37.547-13.653-57.6-14.080-17.493-0.427-31.573-14.933-31.573-32.427 0.427-17.493 17.067-32 32.427-31.573 29.44 0.427 58.88 7.68 84.907 20.907 15.787 7.68 22.187 27.307 14.507 43.093-5.547 11.093-16.64 17.493-28.587 17.493z","M788.083 544c-99.84 0-181.333-81.493-181.333-181.333 0-46.933 17.92-91.307 50.347-124.587 0.853-1.28 1.707-2.133 2.56-2.987 34.133-34.56 79.36-53.333 128-53.333 99.84 0 181.333 81.493 181.333 181.333 0 55.467-24.747 107.093-68.267 141.653-31.147 25.173-71.253 39.253-112.64 39.253zM708.297 277.334c-0.853 1.28-1.707 2.133-2.987 3.413-22.187 21.76-34.56 51.2-34.56 82.347 0 64.853 52.48 117.333 117.333 117.333 26.453 0 52.48-8.96 72.96-25.6 28.587-22.613 44.373-55.893 44.373-91.733 0-64.853-52.48-117.333-117.333-117.333-30.293-0.427-58.453 11.093-79.787 31.573z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-notif"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":823,"id":304,"name":"cloud-notif","prevSize":32,"code":60309},"setIdx":2,"setId":2,"iconIdx":597},{"icon":{"paths":["M789.333 864h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M704 949.333c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M518.857 495.787c-1.28 0-2.133 0-3.413 0-2.133-0.427-5.12-0.427-7.68 0-123.734-3.84-217.174-101.12-217.174-221.013-0.427-58.88 22.613-114.347 64.427-156.16s97.281-65.28 156.588-65.28c122.027 0 221.44 99.413 221.44 221.44 0 119.893-93.44 216.747-212.907 221.013-0.427 0-0.853 0-1.28 0zM511.603 117.333c-42.24 0-81.493 16.64-111.361 46.080-29.44 29.867-45.653 69.12-45.653 110.933 0 85.333 66.56 154.453 151.468 157.013 2.56-0.427 8.107-0.427 13.653 0 84.053-3.84 149.333-72.533 149.333-157.013 0-86.187-70.827-157.013-157.44-157.013z","M511.582 962.556c-87.042 0-169.388-22.613-231.682-64.427-59.307-39.68-91.733-93.867-91.733-152.32s32.853-112.213 91.733-151.467c127.573-85.333 334.935-85.333 462.508 0 14.507 9.813 18.773 29.867 8.96 44.373-9.813 14.933-29.867 18.773-44.373 8.96-106.24-70.827-285.442-70.827-391.682 0-40.96 27.307-63.147 61.867-63.147 98.133s22.187 71.68 63.147 98.987c51.627 34.56 121.175 53.333 195.842 53.333 17.493 0 32 14.507 32 32s-14.080 32.427-31.573 32.427z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-add"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":824,"id":303,"name":"profile-add","prevSize":32,"code":60310},"setIdx":2,"setId":2,"iconIdx":598},{"icon":{"paths":["M512.017 971.089c-46.507 0-92.587-13.653-128.854-40.533l-183.467-136.96c-48.64-36.267-86.613-112.213-86.613-172.373v-317.438c0-65.707 48.213-135.68 110.080-158.72l212.907-79.787c42.24-15.787 108.8-15.787 151.040 0l212.907 79.787c61.867 23.040 110.080 93.013 110.080 158.72v317.012c0 60.587-37.973 136.107-86.613 172.373l-183.467 136.96c-35.413 27.307-81.493 40.96-128 40.96zM458.684 125.437l-212.907 79.787c-36.267 13.653-68.267 59.733-68.267 98.987v317.012c0 40.533 28.587 97.28 60.587 121.173l183.467 136.96c49.067 36.693 131.84 36.693 181.334 0l183.467-136.96c32.427-24.32 60.587-80.64 60.587-121.173v-317.438c0-38.827-32-84.907-68.267-98.987l-212.907-79.787c-29.013-10.24-78.507-10.24-107.093 0.427z","M603.725 605.436c-8.107 0-16.213-2.987-22.613-9.387l-181.332-181.334c-12.373-12.373-12.373-32.853 0-45.227s32.852-12.373 45.225 0l181.333 181.334c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M420.227 607.142c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l181.335-181.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-181.333 181.332c-5.973 6.4-14.507 9.387-22.615 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-cross"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":825,"id":302,"name":"shield-cross","prevSize":32,"code":60311},"setIdx":2,"setId":2,"iconIdx":599},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M426.667 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M938.667 544h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-5"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":826,"id":301,"name":"grid-5","prevSize":32,"code":60312},"setIdx":2,"setId":2,"iconIdx":600},{"icon":{"paths":["M674.564 861.013c-11.093 0-22.613-0.427-34.987-1.707-22.187-1.707-47.36-5.973-73.387-12.373l-71.68-17.067c-196.695-46.507-261.121-150.613-215.041-346.88l41.813-178.773c9.387-40.533 20.48-73.386 34.133-100.693 73.388-151.467 213.761-137.814 313.601-114.347l71.253 16.64c99.84 23.467 162.987 60.587 198.4 117.334 34.987 56.747 40.533 129.706 17.067 229.546l-41.813 178.347c-36.693 156.16-113.067 229.973-239.36 229.973zM559.791 138.667c-71.253 0-116.48 29.44-146.775 92.587-11.093 23.040-20.907 51.626-29.44 87.466l-41.813 178.773c-37.973 161.28 5.973 231.68 167.255 270.080l71.68 17.067c23.040 5.547 44.8 8.96 64.427 10.667 116.053 11.52 173.653-39.253 206.080-178.773l41.813-178.347c19.2-82.346 16.64-139.946-8.96-181.333s-75.947-69.546-158.72-88.746l-71.253-16.64c-35.413-8.533-66.987-12.8-94.293-12.8z","M355.374 949.329c-109.653 0-179.627-65.707-224.427-204.373l-54.613-168.533c-60.586-187.732-6.4-293.545 180.48-354.132l67.413-21.76c22.187-6.827 38.827-11.52 53.76-14.080 12.373-2.56 24.32 2.133 31.574 11.947s8.533 22.613 3.413 33.707c-11.093 22.613-20.907 51.2-29.014 87.040l-41.813 178.772c-37.973 161.28 5.973 231.68 167.254 270.080l71.68 17.067c23.040 5.547 44.8 8.96 64.427 10.667 13.653 1.28 24.747 10.667 28.587 23.893 3.413 13.227-1.707 26.88-12.8 34.56-28.16 19.2-63.573 35.413-108.373 49.92l-67.413 22.187c-49.067 15.36-91.735 23.040-130.135 23.040zM331.907 265.384l-55.040 17.92c-152.32 49.067-188.587 120.747-139.52 273.492l54.613 168.533c49.493 152.32 121.174 189.013 273.495 139.947l67.413-22.187c2.56-0.853 4.693-1.707 7.253-2.56l-45.227-10.667c-196.694-46.507-261.121-150.613-215.041-346.88l41.813-178.772c2.987-13.653 6.4-26.88 10.24-38.827z","M746.214 448.427c-2.56 0-5.12-0.427-8.107-0.853l-206.933-52.479c-17.067-4.267-27.307-21.76-23.040-38.827s21.76-27.307 38.827-23.040l206.933 52.48c17.067 4.267 27.307 21.76 23.040 38.827-3.413 14.079-16.64 23.892-30.72 23.892z","M621.193 592.636c-2.56 0-5.12-0.427-8.107-0.853l-124.16-31.573c-17.067-4.267-27.307-21.76-23.040-38.827s21.76-27.307 38.827-23.040l124.16 31.573c17.067 4.267 27.307 21.76 23.040 38.827-3.413 14.507-16.213 23.893-30.72 23.893z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":827,"id":300,"name":"note-2","prevSize":32,"code":60313},"setIdx":2,"setId":2,"iconIdx":601},{"icon":{"paths":["M512 970.675c-253.013 0-458.667-205.653-458.667-458.667 0-80.213 20.906-159.144 61.013-228.691 8.96-15.36 28.161-20.481 43.521-11.948l369.92 212.479c15.36 8.96 20.48 28.16 11.947 43.52-8.96 15.36-28.16 20.484-43.52 11.951l-341.333-195.843c-24.747 52.48-37.547 109.652-37.547 168.105 0 217.6 177.067 394.667 394.667 394.667s394.667-177.067 394.667-394.667c0-217.599-177.067-394.665-394.667-394.665-86.187 0-168.106 27.307-236.8 78.934-14.080 10.667-34.134 7.68-44.801-6.4s-7.68-34.133 6.4-44.8c79.787-59.733 174.934-91.735 275.2-91.735 253.013 0 458.667 205.653 458.667 458.665 0 253.013-205.653 459.093-458.667 459.093z","M512 800c-158.72 0-288-129.28-288-288 0-51.2 13.653-101.974 39.68-145.92 8.96-15.36 28.587-20.48 43.947-11.52s20.481 28.587 11.521 43.947c-20.053 34.133-30.72 73.387-30.72 113.493 0 123.733 100.693 224 224 224s224-100.267 224-224c0-123.733-100.693-224-224-224-33.28 0-65.28 7.253-95.574 21.333-16.213 7.253-34.987 0.427-42.667-15.36-7.68-16.213-0.853-34.987 15.36-42.667 38.4-17.92 79.787-27.307 122.453-27.307 158.72 0 288 129.28 288 288s-129.28 288-288 288z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["radar-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":828,"id":299,"name":"radar-2","prevSize":32,"code":60314},"setIdx":2,"setId":2,"iconIdx":602},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-217.6-177.067-394.667-394.667-394.667s-394.667 177.067-394.667 394.667c0 217.6 177.067 394.667 394.667 394.667 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384.010 928h-42.667c-17.493 0-32-14.507-32-32s13.653-31.573 31.146-32c-66.987-228.693-66.987-475.307 0-704-17.067-0.427-31.146-14.507-31.146-32s14.507-32 32-32h42.667c10.24 0 20.053 5.12 26.027 13.227 5.973 8.533 7.68 19.2 4.267 29.013-80.213 241.067-80.213 506.88 0 747.947 3.413 9.813 1.706 20.48-4.267 29.013s-15.787 12.8-26.027 12.8z","M702.31 544c-17.493 0-32-14.507-32-32 0-127.148-20.48-253.015-60.587-373.762-5.547-16.64 3.413-34.987 20.053-40.534s34.987 3.415 40.533 20.055c42.24 127.147 64 259.84 64 394.241 0 17.493-14.507 32-32 32z","M512 734.285c-119.467 0-237.653-17.067-352-50.773-0.427 17.067-14.507 31.147-32 31.147s-32-14.507-32-32v-42.667c0-10.24 5.12-20.053 13.227-26.027s19.2-7.68 29.014-4.267c120.747 40.107 246.613 60.587 373.76 60.587 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896.030 415.995c-3.413 0-6.827-0.426-10.24-1.706-241.067-80.213-506.882-80.213-747.948 0-16.64 5.547-34.986-3.415-40.533-20.055s3.413-34.988 20.053-40.534c254.293-84.907 534.188-84.907 788.055 0 16.64 5.547 25.6 23.894 20.053 40.534-3.413 13.227-16.213 21.76-29.44 21.76z","M674.97 970.658c-16.213 0-31.573-5.973-42.667-17.067-13.227-13.227-19.2-32.427-16.213-52.48l8.107-57.596c2.133-14.933 11.093-32.858 21.76-43.524l151.040-151.036c20.48-20.48 40.533-31.151 62.293-33.284 26.88-2.56 52.907 8.538 77.653 33.284s35.84 50.773 33.28 77.653c-2.133 21.333-13.227 41.809-33.28 62.289l-151.040 151.044c-10.667 10.667-28.16 19.622-43.093 21.756l-57.6 8.107c-3.84 0.427-6.827 0.853-10.24 0.853zM866.543 679.245c-0.427 0-0.853 0-1.28 0-5.973 0.427-14.080 5.551-23.040 14.938l-151.040 151.036c-1.28 1.28-3.413 5.547-3.413 7.253l-7.68 53.333 53.333-7.68c1.707-0.427 5.973-2.556 7.253-3.836l151.040-151.044c8.96-8.96 14.507-17.067 14.933-23.040 0.853-8.533-7.68-18.769-14.933-26.022-6.827-6.827-16.64-14.938-25.173-14.938z","M892.612 820.045c-2.987 0-5.973-0.422-8.533-1.276-56.32-15.787-101.12-60.587-116.907-116.907-4.693-17.067 5.12-34.56 22.187-39.253s34.56 5.12 39.68 22.187c9.813 34.987 37.547 62.72 72.533 72.533 17.067 4.693 26.88 22.613 22.187 39.253-4.267 14.080-17.067 23.462-31.147 23.462z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["global-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":829,"id":298,"name":"global-edit","prevSize":32,"code":60315},"setIdx":2,"setId":2,"iconIdx":603},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M113.952 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.96-44.373l210.347-141.227c46.080-31.147 109.653-27.307 151.465 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.227-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-31.573 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.6-18.347-78.933 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.078-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-210.347 141.227c-5.547 3.413-11.947 5.12-17.92 5.12z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":830,"id":297,"name":"gallery","prevSize":32,"code":60316},"setIdx":2,"setId":2,"iconIdx":604},{"icon":{"paths":["M759.040 970.249h-494.080c-116.907 0-211.627-95.147-211.627-212.053v-316.16c0-58.026 35.84-130.986 81.92-166.826l229.973-179.2c69.12-53.76 179.627-56.32 251.307-5.973l263.68 184.747c50.773 35.413 90.453 111.36 90.453 173.226v310.613c0 116.48-94.72 211.627-211.627 211.627zM404.48 146.356l-229.973 179.2c-30.293 23.893-57.173 78.080-57.173 116.48v316.16c0 81.493 66.133 148.053 147.627 148.053h494.080c81.493 0 147.627-66.133 147.627-147.627v-310.613c0-40.96-29.44-97.706-63.147-120.746l-263.68-184.747c-48.64-34.133-128.853-32.427-175.36 3.84z","M576 800h-128c-88.32 0-160-71.68-160-160v-128c0-88.32 71.68-160 160-160h128c88.32 0 160 71.68 160 160v128c0 88.32-71.68 160-160 160zM448 416c-52.907 0-96 43.093-96 96v128c0 52.907 43.093 96 96 96h128c52.907 0 96-43.093 96-96v-128c0-52.907-43.093-96-96-96h-128z","M512 800c-17.493 0-32-14.507-32-32v-384c0-17.493 14.507-32 32-32s32 14.507 32 32v384c0 17.493-14.507 32-32 32z","M704 608h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-hashtag"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":831,"id":296,"name":"home-hashtag","prevSize":32,"code":60317},"setIdx":2,"setId":2,"iconIdx":605},{"icon":{"paths":["M773.111 928c-25.6 0-51.627-5.973-76.373-18.347l-138.24-69.12c-29.013-14.507-64-14.507-93.44 0l-138.238 69.12c-66.56 33.28-143.36 20.48-195.413-32.853s-63.573-130.133-28.587-196.267l260.267-494.507c29.013-55.467 86.185-90.027 148.905-90.027s119.893 34.56 148.907 90.027l260.267 494.507c34.56 66.133 23.467 142.933-28.587 196.267-32.853 33.707-75.52 51.2-119.467 51.2zM511.991 765.44c26.027 0 51.627 5.973 75.093 17.493l138.24 69.12c49.92 25.173 95.573 5.973 121.173-20.48s43.947-72.107 17.92-121.6l-260.267-494.507c-18.347-34.56-52.907-55.467-92.16-55.467s-73.813 20.907-92.158 55.893l-260.267 494.507c-26.027 49.493-8.107 95.573 17.92 121.6s71.253 45.227 121.173 20.48l138.238-69.12c23.467-11.947 49.067-17.92 75.093-17.92z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-up"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":832,"id":295,"name":"direct-up","prevSize":32,"code":60318},"setIdx":2,"setId":2,"iconIdx":606},{"icon":{"paths":["M506.871 639.578c-8.107 0-16.213-2.987-22.613-9.387l-109.228-109.227c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l86.615 86.613 86.613-86.613c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-109.227 109.227c-6.4 6.4-14.507 9.387-22.613 9.387z","M506.918 636.587c-17.493 0-32-14.507-32-32v-433.92c0-17.493 14.507-32 32-32s32 14.507 32 32v433.92c0 17.493-14.507 32-32 32z","M512 893.009c-219.733 0-373.333-153.6-373.333-373.333 0-17.493 14.507-32 32-32s32 14.507 32 32c0 182.187 127.147 309.333 309.333 309.333s309.333-127.147 309.333-309.333c0-17.493 14.507-32 32-32s32 14.507 32 32c0 219.733-153.6 373.333-373.333 373.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["import"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":833,"id":294,"name":"import","prevSize":32,"code":60319},"setIdx":2,"setId":2,"iconIdx":607},{"icon":{"paths":["M500.083 970.667h-192c-177.067 0-256-78.933-256-256v-192c0-177.067 78.933-256 256-256h192c177.067 0 256 78.933 256 256v192c0 177.067-78.933 256-256 256zM308.083 330.667c-141.653 0-192 50.347-192 192v192c0 141.653 50.347 192 192 192h192c141.653 0 192-50.347 192-192v-192c0-141.653-50.347-192-192-192h-192z","M773.15 586.667h-49.067c-17.493 0-32-14.507-32-32v-32c0-141.653-50.347-192-192-192h-32c-17.493 0-32-14.507-32-32v-49.067c0-135.68 60.587-196.267 196.267-196.267h140.8c135.68 0 196.267 60.587 196.267 196.267v140.8c0 135.68-60.587 196.267-196.267 196.267zM756.083 522.667h17.067c100.267 0 132.267-32 132.267-132.267v-140.8c0-100.267-32-132.267-132.267-132.267h-140.8c-100.267 0-132.267 32-132.267 132.267v17.067c177.067 0 256 78.933 256 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["size"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":834,"id":293,"name":"size","prevSize":32,"code":60320},"setIdx":2,"setId":2,"iconIdx":608},{"icon":{"paths":["M674.564 861.013c-11.093 0-22.613-0.427-34.987-1.707-22.187-1.707-47.36-5.973-73.387-12.373l-71.68-17.067c-196.695-46.507-261.121-150.613-215.041-346.88l41.813-178.773c9.387-40.533 20.48-73.386 34.133-100.693 73.388-151.467 213.761-137.814 313.601-114.347l71.253 16.64c99.84 23.467 162.987 60.587 198.4 117.334 34.987 56.747 40.533 129.706 17.067 229.546l-41.813 178.347c-36.693 156.16-113.067 229.973-239.36 229.973zM559.791 138.667c-71.253 0-116.48 29.44-146.775 92.587-11.093 23.040-20.907 51.626-29.44 87.466l-41.813 178.773c-37.973 161.28 5.973 231.68 167.255 270.080l71.68 17.067c23.040 5.547 44.8 8.96 64.427 10.667 115.627 11.52 173.653-39.253 206.080-178.773l41.813-178.347c19.2-82.346 16.64-139.946-8.96-181.333s-75.947-69.546-158.72-88.746l-71.253-16.64c-35.413-8.533-66.987-12.8-94.293-12.8z","M355.374 949.329c-109.653 0-179.627-65.707-224.427-204.373l-54.613-168.533c-60.586-187.732-6.4-293.545 180.48-354.132l67.413-21.76c22.187-6.827 38.827-11.52 53.76-14.080 11.947-2.56 24.32 2.133 31.574 11.947s8.533 22.613 3.413 33.707c-11.093 22.613-20.907 51.2-29.014 87.040l-41.813 178.772c-37.973 161.28 5.973 231.68 167.254 270.080l71.68 17.067c23.040 5.547 44.8 8.96 64.427 10.667 13.653 1.28 24.747 10.667 28.587 23.893 3.413 13.227-1.707 26.88-12.8 34.56-28.16 19.2-63.573 35.413-108.373 49.92l-67.413 22.187c-49.067 15.36-91.735 23.040-130.135 23.040zM331.907 265.384l-55.040 17.92c-152.32 49.067-188.587 120.747-139.52 273.492l54.613 168.533c49.493 152.32 121.174 189.013 273.495 139.947l67.413-22.187c2.56-0.853 4.693-1.707 7.253-2.56l-45.227-10.667c-196.694-46.507-261.121-150.613-215.041-346.88l41.813-178.772c2.987-13.653 6.4-26.88 10.24-38.827z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":835,"id":292,"name":"note","prevSize":32,"code":60321},"setIdx":2,"setId":2,"iconIdx":609},{"icon":{"paths":["M352.853 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-674.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v674.133c0 81.92-41.813 121.6-127.147 121.6zM180.48 117.333c-54.187 0-63.147 14.507-63.147 57.6v674.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-674.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M843.52 480h-172.373c-85.76 0-127.147-37.973-127.147-116.48v-193.707c0-78.507 41.813-116.48 127.147-116.48h172.373c85.76 0 127.147 37.973 127.147 116.48v193.28c0 78.933-41.813 116.907-127.147 116.907zM671.147 117.333c-57.173 0-63.147 16.213-63.147 52.48v193.28c0 36.693 5.973 52.48 63.147 52.48h172.373c57.173 0 63.147-16.213 63.147-52.48v-193.28c0-36.693-5.973-52.48-63.147-52.48h-172.373z","M843.52 970.667h-172.373c-85.76 0-127.147-41.813-127.147-127.147v-172.373c0-85.76 41.813-127.147 127.147-127.147h172.373c85.76 0 127.147 41.813 127.147 127.147v172.373c0 85.333-41.813 127.147-127.147 127.147zM671.147 608c-50.347 0-63.147 12.8-63.147 63.147v172.373c0 50.347 12.8 63.147 63.147 63.147h172.373c50.347 0 63.147-12.8 63.147-63.147v-172.373c0-50.347-12.8-63.147-63.147-63.147h-172.373z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["frame-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":836,"id":291,"name":"frame-2","prevSize":32,"code":60322},"setIdx":2,"setId":2,"iconIdx":610},{"icon":{"paths":["M742.4 853.333h-460.8c-81.92 0-121.6-41.813-121.6-127.147v-44.373c0-85.333 39.68-127.147 121.6-127.147h460.8c81.92 0 121.6 41.813 121.6 127.147v44.373c0 85.333-39.68 127.147-121.6 127.147zM281.6 618.667c-43.093 0-57.6 8.96-57.6 63.147v44.373c0 54.187 14.507 63.147 57.6 63.147h460.8c43.093 0 57.6-8.96 57.6-63.147v-44.373c0-54.187-14.507-63.147-57.6-63.147h-460.8z","M657.067 490.667h-290.133c-81.92 0-121.6-41.813-121.6-127.147v-44.373c0-85.76 39.68-127.147 121.6-127.147h290.133c81.92 0 121.6 41.813 121.6 127.147v44.373c0 85.333-39.68 127.147-121.6 127.147zM366.933 256c-43.093 0-57.6 8.96-57.6 63.147v44.373c0 54.187 14.507 63.147 57.6 63.147h290.133c43.093 0 57.6-8.96 57.6-63.147v-44.373c0-54.187-14.507-63.147-57.6-63.147h-290.133z","M512 970.671c-17.493 0-32-14.507-32-32v-102.4c0-17.493 14.507-32 32-32s32 14.507 32 32v102.4c0 17.493-14.507 32-32 32z","M512 586.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 232.107c-17.493 0-32-14.507-32-32v-114.773c0-17.493 14.507-32 32-32s32 14.080 32 32v114.773c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-vertically"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":837,"id":290,"name":"align-vertically","prevSize":32,"code":60323},"setIdx":2,"setId":2,"iconIdx":611},{"icon":{"paths":["M352.853 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-674.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v674.133c0 81.92-41.813 121.6-127.147 121.6zM180.48 117.333c-54.187 0-63.147 14.507-63.147 57.6v674.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-674.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M843.52 672h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-375.467c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v375.467c0 81.92-41.813 121.6-127.147 121.6zM671.147 117.333c-54.187 0-63.147 14.507-63.147 57.6v375.467c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-375.467c0-43.093-8.96-57.6-63.147-57.6h-172.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["kanban"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":838,"id":289,"name":"kanban","prevSize":32,"code":60324},"setIdx":2,"setId":2,"iconIdx":612},{"icon":{"paths":["M628.075 970.667h-229.971c-27.307 0-51.201-1.707-72.961-4.693-17.493-2.56-29.868-18.773-27.308-36.267s18.348-30.293 36.268-27.307c18.773 2.56 39.68 3.84 63.573 3.84h229.975c174.507 0 236.369-61.867 236.369-236.373v-191.573c0-17.493 14.507-32 32-32s32 14.507 32 32v191.573c0.427 210.773-89.6 300.8-299.947 300.8z","M129.667 694.187c-17.493 0-32-14.507-32-32v-183.467c0-17.493 14.507-32 32-32s32 14.507 32 32v183.467c0 17.493-14.507 32-32 32z","M513.293 544c-46.933 0-89.601-18.347-119.895-52.053s-44.373-77.654-39.68-124.587l28.588-285.011c1.707-16.213 15.36-29.015 32-29.015h199.252c16.64 0 30.293 12.375 32 29.015l28.587 285.011c4.693 46.933-9.387 90.88-39.68 124.587-31.573 33.707-74.24 52.053-121.173 52.053zM442.466 117.333l-25.599 256.427c-2.987 28.587 5.546 55.466 23.466 75.093 36.267 40.107 108.8 40.107 145.067 0 17.92-20.053 26.453-46.933 23.467-75.093l-25.6-256.427h-140.8z","M782.059 544c-86.613 0-163.84-69.973-172.8-156.161l-29.867-299.094c-0.853-8.96 2.133-17.918 8.107-24.745s14.507-10.667 23.893-10.667h130.133c125.44 0 183.893 52.48 201.387 181.333l11.947 118.615c5.12 50.347-10.24 98.136-43.093 134.403s-78.933 56.316-129.707 56.316zM646.805 117.333l26.453 264.104c5.547 53.332 55.467 98.563 108.8 98.563 32.427 0 61.44-12.369 82.347-34.982 20.48-22.615 29.867-52.909 26.88-85.335l-11.947-117.333c-13.227-96.427-44.373-125.015-137.813-125.015h-94.72z","M241.932 544c-50.773 0-96.852-20.049-129.706-56.316s-48.214-84.056-43.094-134.403l11.948-117.333c17.92-130.133 76.372-182.615 201.812-182.615h130.133c8.96 0 17.494 3.84 23.894 10.667 5.973 6.827 8.96 15.785 8.107 24.745l-29.868 299.094c-9.387 86.188-87.040 156.161-173.227 156.161zM282.466 117.333c-93.44 0-124.586 28.158-138.24 125.865l-11.521 116.057c-3.413 32.427 6.4 62.72 26.88 85.332 20.48 22.613 49.92 34.987 82.346 34.987 53.76 0 103.68-45.222 108.8-98.558l26.456-264.109h-94.722v0.427z","M213.333 1013.333c-59.733 0-115.626-26.031-154.026-71.684-0.427-0.427-2.134-2.129-3.414-4.262-6.4-7.68-11.947-15.36-16.214-23.467-18.773-30.293-29.013-66.133-29.013-103.68 0-62.293 27.735-119.893 75.948-158.293 8.533-6.827 17.919-13.227 28.159-18.773 29.44-16.64 64-26.027 98.56-26.027 49.493 0 95.148 17.067 131.841 49.067 4.693 3.413 11.091 9.813 16.638 15.787 34.56 37.973 53.76 86.613 53.76 137.387 0 37.12-10.24 73.387-29.44 104.533-9.387 16.213-20.906 30.293-33.706 41.387-2.56 2.56-5.12 5.124-8.107 7.258-33.707 32.853-81.067 50.769-130.987 50.769zM105.812 897.707c1.28 1.28 3.413 3.409 5.12 6.396 23.467 27.733 61.868 45.658 102.401 45.658 33.707 0 66.133-12.373 90.88-34.56 1.28-1.707 2.987-3.413 5.12-4.693 8.533-7.253 15.788-16.644 22.615-27.738 13.227-21.76 20.479-46.076 20.479-71.676 0-34.56-13.227-68.267-37.12-94.293-2.987-3.413-5.975-6.827-9.815-9.387-46.080-39.68-109.226-45.649-159.573-17.062-6.827 3.84-12.8 7.676-18.346 12.369-33.28 26.453-52.479 65.707-52.479 108.373 0 25.173 6.825 49.924 20.052 71.258 3.413 5.973 6.827 10.662 10.667 14.929-0.427 0 0 0 0 0.427z","M277.323 841.813h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shop-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":839,"id":288,"name":"shop-remove","prevSize":32,"code":60325},"setIdx":2,"setId":2,"iconIdx":613},{"icon":{"paths":["M459.085 698.445c-17.92 0-34.558-4.267-49.492-12.8-34.133-19.627-53.76-59.733-53.76-110.507v-126.293c0-50.346 19.627-90.88 53.76-110.507 34.132-19.627 78.505-16.64 122.452 8.96l109.653 63.146c43.52 25.173 68.693 62.293 68.693 101.547s-25.173 76.373-68.693 101.547l-109.653 63.147c-24.747 14.507-49.92 21.76-72.96 21.76zM459.511 389.539c-6.827 0-12.8 1.28-17.493 4.266-13.653 8.107-21.758 28.16-21.758 55.040v126.293c0 26.88 7.678 46.933 21.758 55.040 13.653 8.107 34.987 4.693 58.453-8.96l109.653-63.147c23.467-13.653 36.693-30.293 36.693-46.080s-13.227-32.853-36.693-46.080l-109.653-63.147c-15.36-8.96-29.44-13.226-40.96-13.226z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":840,"id":287,"name":"video-circle","prevSize":32,"code":60326},"setIdx":2,"setId":2,"iconIdx":614},{"icon":{"paths":["M512.017 971.089c-46.507 0-92.587-13.653-128.854-40.533l-183.467-136.96c-48.64-36.267-86.613-112.213-86.613-172.373v-317.438c0-65.707 48.213-135.68 110.080-158.72l212.907-79.787c42.24-15.787 108.8-15.787 151.040 0l212.907 79.787c61.867 23.040 110.080 93.013 110.080 158.72v317.012c0 60.587-37.973 136.107-86.613 172.373l-183.467 136.96c-35.413 27.307-81.493 40.96-128 40.96zM458.684 125.437l-212.907 79.787c-36.267 13.653-68.267 59.733-68.267 98.987v317.012c0 40.533 28.587 97.28 60.587 121.173l183.467 136.96c49.067 36.693 131.84 36.693 181.334 0l183.467-136.96c32.427-24.32 60.587-80.64 60.587-121.173v-317.438c0-38.827-32-84.907-68.267-98.987l-212.907-79.787c-29.013-10.24-78.507-10.24-107.093 0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":841,"id":286,"name":"shield","prevSize":32,"code":60327},"setIdx":2,"setId":2,"iconIdx":615},{"icon":{"paths":["M384.040 757.329c-4.693 0-9.813-1.28-14.080-3.413-32.853-16.64-61.013-41.387-81.493-72.107-17.067-25.6-17.067-58.453 0-84.053 20.48-30.72 48.64-55.467 81.493-71.68 15.787-8.107 34.987-1.28 43.093 14.507s1.707 34.987-14.507 43.093c-23.040 11.52-42.667 29.013-56.747 50.347-2.56 3.84-2.56 8.96 0 13.227 14.080 21.333 33.707 38.827 56.747 50.347 15.787 8.107 22.187 27.307 14.507 43.093-5.973 10.24-17.493 16.64-29.013 16.64z","M648.926 757.329c-11.947 0-23.040-6.4-28.587-17.493-8.107-15.787-1.707-34.987 14.507-43.093 23.040-11.52 42.667-29.013 56.747-50.347 2.56-3.84 2.56-8.96 0-13.227-14.080-21.333-33.707-38.827-56.747-50.347-15.787-8.107-22.187-27.307-14.507-43.093 8.107-15.787 27.307-22.187 43.093-14.507 32.853 16.64 61.013 41.387 81.493 72.107 17.067 25.6 17.067 58.453 0 84.053-20.48 30.72-48.64 55.467-81.493 71.68-5.12 2.987-9.813 4.267-14.507 4.267z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M95.167 373.76c-17.493 0-32-14.507-32-32s14.080-32 32-32l820.055-0.427c17.493 0 32 14.507 32 32s-14.080 32-32 32l-820.055 0.427z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["code-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":842,"id":285,"name":"code-1","prevSize":32,"code":60328},"setIdx":2,"setId":2,"iconIdx":616},{"icon":{"paths":["M810.667 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M418.577 782.089c-39.253 0-130.56-47.787-158.72-135.68-19.2-60.16 2.987-139.093 72.533-161.707 29.867-9.813 61.013-5.12 85.76 10.667 24.32-15.787 56.32-20.48 86.186-10.667 69.547 22.613 92.16 101.547 72.533 161.707-27.733 89.6-123.307 135.68-158.293 135.68zM320.871 627.209c19.627 61.867 86.187 90.027 98.133 91.307 13.653-1.28 78.933-32.853 96.853-90.88 9.813-31.147 0-71.253-31.147-81.493-13.227-4.267-31.147-1.707-39.68 10.667-5.973 8.96-15.36 14.080-26.026 14.507-10.24 0-20.48-4.693-26.453-13.227-10.24-14.080-28.16-16.213-40.533-11.947-30.72 9.813-40.96 49.92-31.147 81.067z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-favorite"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":843,"id":284,"name":"notification-favorite","prevSize":32,"code":60329},"setIdx":2,"setId":2,"iconIdx":617},{"icon":{"paths":["M653.227 640.853c-24.747 0-51.627-8.107-78.507-24.747l-56.32-34.133c-2.56-1.707-10.24-1.707-12.8 0l-56.32 34.133c-46.080 28.16-91.307 32.427-127.573 11.947-35.413-20.053-55.040-60.16-55.040-112.64v-300.8c0-104.107 56.747-161.28 160-161.28h170.667c103.253 0 160 57.173 160 161.28v300.8c0 52.907-19.627 93.013-55.040 112.64-14.933 8.533-31.573 12.8-49.067 12.8zM512 516.693c14.080 0 28.16 3.413 39.68 10.24l56.32 34.133c25.173 15.36 48.213 19.2 62.72 11.093 14.080-8.107 22.187-29.013 22.187-57.173v-300.373c0-68.267-28.587-97.28-96-97.28h-170.667c-67.413 0-96 29.013-96 97.28v300.8c0 28.16 8.107 49.067 22.187 57.173 14.507 8.107 37.547 4.267 62.72-11.093l56.32-34.133c12.373-7.253 26.453-10.667 40.533-10.667z","M640 970.667h-256c-231.68 0-330.667-99.84-330.667-333.653v-129.28c0-198.826 71.68-299.52 232.107-326.4 17.067-2.987 33.707 8.96 36.693 26.453s-8.96 33.707-26.453 36.693c-128.427 21.333-178.773 95.147-178.773 263.253v129.28c0 196.693 72.107 269.653 266.667 269.653h256c194.56 0 266.667-72.96 266.667-269.653v-129.28c0-170.666-52.053-244.48-186.027-264.533-17.493-2.56-29.44-18.773-26.88-36.267s18.773-29.44 36.267-26.88c166.4 24.747 240.64 125.44 240.64 327.68v129.28c0.427 233.813-98.56 333.653-330.24 333.653z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bookmark-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":844,"id":283,"name":"bookmark-2","prevSize":32,"code":60330},"setIdx":2,"setId":2,"iconIdx":618},{"icon":{"paths":["M528.239 721.933h-97.707c-17.493 0-32-14.507-32-32s14.507-32 32-32h97.707c18.347 0 33.28-14.933 33.28-33.28s-14.933-33.28-33.28-33.28h-97.707c-10.24 0-20.052-5.12-26.026-13.227s-7.68-19.2-4.267-29.013l32.426-97.707c4.267-13.227 16.64-21.76 30.293-21.76h130.56c17.493 0 32 14.507 32 32s-14.507 32-32 32h-107.52l-11.093 33.707h53.333c53.76 0 97.28 43.52 97.28 97.28s-43.52 97.28-97.28 97.28z","M427.52 222.717c-7.255 0-14.081-2.132-20.055-7.252-13.653-11.093-15.786-31.146-5.12-44.8l84.481-105.385c11.093-13.653 31.147-15.789 44.8-5.123 13.653 11.093 15.787 31.149 5.12 44.802l-84.48 105.385c-5.973 8.107-15.36 12.372-24.747 12.372z","M511.974 970.658c-226.56 0-411.308-184.324-411.308-411.311 0-88.32 28.587-173.225 83.2-245.759 10.667-14.080 30.72-17.065 44.8-6.398s17.068 30.72 6.401 44.8c-46.080 61.44-70.401 133.117-70.401 207.357 0 191.573 155.734 347.311 347.308 347.311s347.307-155.738 347.307-347.311c0-191.572-155.733-347.305-347.307-347.305-24.747 0-49.92 2.988-77.227 9.388-17.067 3.84-34.56-6.827-38.4-23.893s6.827-34.561 23.893-38.401c32-7.253 62.293-11.094 91.733-11.094 226.56 0 411.307 184.32 411.307 411.305 0 226.987-184.747 411.311-411.307 411.311z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["backward-5-seconds"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":845,"id":282,"name":"backward-5-seconds","prevSize":32,"code":60331},"setIdx":2,"setId":2,"iconIdx":619},{"icon":{"paths":["M896 224h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M895.97 437.333h-404.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 650.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M895.97 864h-404.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["textalign-right"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":846,"id":281,"name":"textalign-right","prevSize":32,"code":60332},"setIdx":2,"setId":2,"iconIdx":620},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M725.333 746.667h-132.267c-12.8 0-24.32-7.253-29.44-19.2s-2.987-25.173 5.547-34.56l69.12-76.373c28.587-32 44.8-72.533 44.8-114.347 0-42.667-17.493-82.773-49.493-113.067s-76.373-47.787-121.6-47.787c-45.227 0-89.599 17.493-121.599 47.787s-49.495 70.4-49.495 113.067c0 41.813 15.786 82.347 44.8 114.347l69.121 76.373c8.533 9.387 10.667 23.040 5.547 34.56s-16.64 19.2-29.44 19.2h-132.267c-17.493 0-32-14.507-32-32s14.507-32 32-32h60.159l-20.906-23.040c-39.253-43.52-61.013-99.413-61.013-157.44 0-59.307 25.174-117.759 69.547-159.572 44.373-42.24 103.253-65.281 165.547-65.281s121.173 23.041 165.547 65.281c43.947 41.813 69.547 100.265 69.547 159.572 0 57.6-21.76 113.493-61.013 157.44l-20.907 23.040h60.16c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["omega-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":847,"id":280,"name":"omega-square","prevSize":32,"code":60333},"setIdx":2,"setId":2,"iconIdx":621},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M391.226 664.751c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l241.494-241.493c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-241.495 241.493c-5.973 6.4-14.507 9.387-22.613 9.387z","M632.721 664.751c-8.107 0-16.213-2.987-22.613-9.387l-241.494-241.493c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.226 0l241.495 241.493c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["close-circle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":848,"id":279,"name":"close-circle","prevSize":32,"code":59766},"setIdx":2,"setId":2,"iconIdx":622},{"icon":{"paths":["M821.751 838.4c-17.493 0-32-14.507-32-32v-503.467c0-43.093-8.96-57.6-63.147-57.6h-44.373c-54.187 0-63.147 14.507-63.147 57.6v503.467c0 17.493-14.507 32-32 32s-32-14.507-32-32v-503.467c0-81.92 41.813-121.6 127.147-121.6h44.373c85.76 0 127.147 39.68 127.147 121.6v503.467c0 17.493-14.507 32-32 32z","M459.085 838.4c-17.493 0-32-14.507-32-32v-290.133c0-43.093-8.961-57.6-63.148-57.6h-44.373c-54.187 0-63.147 14.507-63.147 57.6v290.133c0 17.493-14.507 32-32 32s-32-14.507-32-32v-290.133c0-81.92 41.813-121.6 127.147-121.6h44.373c85.761 0 127.148 39.68 127.148 121.6v290.133c0 17.493-14.507 32-32 32z","M938.667 842.667h-853.333c-17.493 0-32-14.507-32-32s14.080-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["frame-3"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":849,"id":278,"name":"frame-3","prevSize":32,"code":60334},"setIdx":2,"setId":2,"iconIdx":623},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M768 650.667c-17.493 0-32-14.507-32-32 0-29.44-23.893-53.333-53.333-53.333h-341.333c-29.44 0-53.333 23.893-53.333 53.333 0 17.493-14.507 32-32 32s-32-14.507-32-32v-288c0-64.853 52.48-117.333 117.333-117.333h341.333c64.853 0 117.333 52.48 117.333 117.333v288c0 17.493-14.507 32-32 32zM341.333 501.333h341.333c19.2 0 37.547 4.693 53.333 12.8v-183.467c0-29.44-23.893-53.333-53.333-53.333h-341.333c-29.44 0-53.333 23.893-53.333 53.333v183.467c15.787-8.107 34.133-12.8 53.333-12.8z","M810.667 704h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M256 704h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 629.333c-17.493 0-32-14.507-32-32v-128c0-29.44-23.893-53.333-53.333-53.333h-341.333c-29.44 0-53.333 23.893-53.333 53.333v128c0 17.493-14.507 32-32 32s-32-14.507-32-32v-128c0-64.853 52.48-117.333 117.333-117.333h341.333c64.853 0 117.333 52.48 117.333 117.333v128c0 17.493-14.507 32-32 32z","M512 810.667c-65.28 0-120.319-45.653-134.825-106.667h-121.175c-17.493 0-32-14.507-32-32v-53.333c0-64.853 52.48-117.333 117.333-117.333h341.333c64.853 0 117.333 52.48 117.333 117.333v53.333c0 17.493-14.507 32-32 32h-121.173c-14.507 61.013-69.547 106.667-134.827 106.667zM288 640h117.333c17.493 0 32 14.507 32 32 0 40.96 33.707 74.667 74.667 74.667s74.667-33.707 74.667-74.667c0-17.493 14.507-32 32-32h117.333v-21.333c0-29.44-23.893-53.333-53.333-53.333h-341.333c-29.44 0-53.333 23.893-53.333 53.333v21.333z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":850,"id":277,"name":"archive","prevSize":32,"code":60335},"setIdx":2,"setId":2,"iconIdx":624},{"icon":{"paths":["M278.185 693.756c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l130.133-130.133c12.373-12.373 32.853-12.373 45.228 0 12.373 12.373 12.373 32.853 0 45.227l-130.135 130.133c-6.4 5.973-14.507 9.387-22.613 9.387z","M409.61 695.036c-8.107 0-16.213-2.987-22.613-9.387l-130.133-130.133c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l130.132 130.133c12.373 12.373 12.373 32.853 0 45.227-6.399 6.4-14.505 9.387-22.612 9.387z","M577.719 640c-23.467 0-43.093-19.2-43.093-42.667s18.773-42.667 42.24-42.667h0.853c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M745.801 640c-23.467 0-43.093-19.2-43.093-42.667s18.773-42.667 42.24-42.667h0.853c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M661.333 724.053c-23.467 0-42.667-18.773-42.667-42.24v-0.853c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667c0 23.467-18.773 43.093-42.667 43.093z","M661.333 555.947c-23.467 0-42.667-18.773-42.667-42.24v-0.853c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667c0 23.467-18.773 43.093-42.667 43.093z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-85.333c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v85.333c0 231.68-98.987 330.667-330.667 330.667zM384 288c-196.693 0-266.667 69.973-266.667 266.667v85.333c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-85.333c0-196.693-69.973-266.667-266.667-266.667h-256z","M554.249 288h-42.667c-40.96 0-74.667-33.707-74.667-74.667s33.28-74.667 74.24-74.667c6.827 0 11.52-4.693 11.947-10.667l0.427-43.093c0.427-17.493 14.507-31.573 32-31.573h0.427c17.493 0.427 32 14.933 31.573 32.427l-0.427 43.093c-0.427 40.533-34.133 73.813-74.667 73.813-6.827 0-11.093 4.693-11.093 10.667s4.693 10.667 10.667 10.667h42.667c17.493 0 32 14.507 32 32s-14.933 32-32.427 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["game"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":851,"id":276,"name":"game","prevSize":32,"code":60336},"setIdx":2,"setId":2,"iconIdx":625},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v362.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 181.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-362.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M682.667 501.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 714.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-text"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":852,"id":275,"name":"note-text","prevSize":32,"code":60337},"setIdx":2,"setId":2,"iconIdx":626},{"icon":{"paths":["M581.167 773.542h-137.813c-133.547 0-192.854-59.307-192.854-192.853v-137.813c0-133.548 59.307-192.855 192.854-192.855h137.813c133.547 0 192.853 59.308 192.853 192.855v137.813c-0.427 133.547-59.733 192.853-192.853 192.853zM442.927 314.448c-97.707 0-128.853 31.148-128.853 128.855v137.813c0 97.707 31.147 128.853 128.853 128.853h137.813c97.707 0 128.853-31.147 128.853-128.853v-137.813c0-97.707-31.147-128.855-128.853-128.855h-137.813z","M777.835 576.853h-36.267c-17.493 0-32-14.507-32-32v-101.547c0-97.706-31.147-128.853-128.853-128.853h-101.547c-17.493 0-32-14.507-32-32v-36.267c0-133.547 59.307-192.853 192.853-192.853h137.813c133.547 0 192.853 59.306 192.853 192.853v137.814c0 133.547-59.307 192.853-192.853 192.853zM773.568 512.853h4.267c97.707 0 128.853-31.147 128.853-128.853v-137.814c0-97.707-31.147-128.853-128.853-128.853h-137.813c-97.707 0-128.853 31.146-128.853 128.853v4.267h69.547c133.547 0 192.853 59.307 192.853 192.853v69.547z","M384 970.667h-137.813c-133.547 0-192.853-59.307-192.853-192.853v-137.813c0-133.547 59.307-192.853 192.853-192.853h36.267c17.493 0 32 14.507 32 32v101.547c0 97.707 31.147 128.853 128.853 128.853h101.547c17.493 0 32 14.507 32 32v36.267c0 133.547-59.307 192.853-192.853 192.853zM246.187 511.147c-97.707 0-128.853 31.147-128.853 128.853v137.813c0 97.707 31.147 128.853 128.853 128.853h137.813c97.707 0 128.853-31.147 128.853-128.853v-4.267h-69.547c-133.547 0-192.853-59.307-192.853-192.853v-69.547h-4.267z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forward-item"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":853,"id":274,"name":"forward-item","prevSize":32,"code":60338},"setIdx":2,"setId":2,"iconIdx":627},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-217.6-177.067-394.667-394.667-394.667s-394.667 177.067-394.667 394.667c0 217.6 177.067 394.667 394.667 394.667 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384.010 928h-42.667c-17.493 0-32-14.507-32-32s13.653-31.573 31.146-32c-66.987-228.693-66.987-475.307 0-704-17.067-0.427-31.146-14.507-31.146-32s14.507-32 32-32h42.667c10.24 0 20.053 5.12 26.027 13.227 5.973 8.533 7.68 19.2 4.267 29.013-80.213 241.067-80.213 506.88 0 747.947 3.413 9.813 1.706 20.48-4.267 29.013s-15.787 12.8-26.027 12.8z","M702.31 544c-17.493 0-32-14.507-32-32 0-127.148-20.48-253.015-60.587-373.762-5.547-16.64 3.413-34.987 20.053-40.534s34.987 3.415 40.533 20.055c42.24 127.147 64 259.84 64 394.241 0 17.493-14.507 32-32 32z","M512 734.285c-119.467 0-237.653-17.067-352-50.773-0.427 17.067-14.507 31.147-32 31.147s-32-14.507-32-32v-42.667c0-10.24 5.12-20.053 13.227-26.027 8.533-5.973 19.2-7.68 29.014-4.267 120.747 40.107 246.613 60.587 373.76 60.587 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896.030 415.995c-3.413 0-6.827-0.426-10.24-1.706-241.067-80.213-506.882-80.213-747.948 0-16.64 5.547-34.986-3.415-40.533-20.055s3.413-34.988 20.053-40.534c254.293-84.907 534.188-84.907 788.055 0 16.64 5.547 25.6 23.894 20.053 40.534-3.413 13.227-16.213 21.76-29.44 21.76z","M776.533 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM776.533 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M938.645 970.667c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["global-search"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":854,"id":273,"name":"global-search","prevSize":32,"code":59767},"setIdx":2,"setId":2,"iconIdx":628},{"icon":{"paths":["M511.991 942.080c-12.8 0-25.6-2.987-36.267-8.96-79.788-43.52-219.735-89.6-307.628-101.12l-12.372-1.707c-55.893-6.827-101.974-59.307-101.974-116.053v-515.414c0-33.707 13.227-64.425 37.547-86.612s55.892-32.854 89.172-29.867c93.44 7.68 235.094 54.614 315.309 104.534l10.236 5.974c2.987 1.28 9.391 1.707 11.951 0l6.822-4.268c28.587-17.92 64.427-35.414 103.68-51.2 9.813-3.84 20.907-2.56 29.867 3.414s14.084 15.787 14.084 26.453v114.346l35.413-23.466c10.667-7.253 24.742-7.253 35.409 0l35.418 23.466v-162.985c0-15.36 11.089-28.589 26.022-31.575 12.373-2.133 24.751-3.839 35.844-4.692 0.853 0 4.267 0 5.12 0 31.147-2.56 63.142 8.108 87.036 30.294 24.32 22.187 37.547 52.905 37.547 86.612v514.987c0 57.173-46.076 109.227-102.396 116.053l-14.080 1.707c-87.893 11.52-228.693 58.027-306.773 101.12-9.387 5.973-22.187 8.96-34.987 8.96zM169.802 145.493c-13.653 0-26.025 4.693-35.839 13.654-10.667 9.813-16.64 23.893-16.64 39.68v515.414c0 25.173 21.76 49.493 46.080 52.907l12.8 1.707c96 12.8 243.2 61.013 328.535 107.947 3.84 1.707 9.382 2.133 11.516 1.28 85.76-47.36 233.391-96 329.818-108.8l14.502-1.707c24.32-2.987 46.084-27.733 46.084-52.907v-514.986c0-15.787-5.978-29.44-16.644-39.68-10.667-9.813-25.596-14.507-40.956-13.653-1.28 0-5.12 0-5.973 0v194.987c0 11.947-6.404 22.612-17.071 28.159s-23.036 5.121-32.849-1.706l-67.413-44.8-67.418 44.8c-9.813 6.4-22.187 7.252-32.853 1.706-10.24-5.547-17.062-16.212-17.062-28.159v-125.013c-18.347 8.96-34.991 17.92-49.498 26.453l-6.822 4.265c-23.467 14.507-56.747 14.507-79.36 0.427l-10.24-6.398c-72.108-45.227-203.523-88.749-287.149-95.575-2.133 0-3.84 0-5.547 0z","M512 906.249c-17.493 0-32-14.507-32-32v-639.999c0-17.493 14.507-32 32-32s32 14.507 32 32v639.999c0 17.92-14.507 32-32 32z","M810.667 373.333c-6.4 0-12.373-1.707-17.92-5.547l-67.413-44.799-67.413 44.799c-9.813 6.4-22.187 7.252-32.853 1.706-10.24-5.547-17.067-16.212-17.067-28.159v-174.081c0-13.227 8.107-24.747 20.053-29.867 58.88-23.467 123.307-41.813 177.493-50.346 9.387-1.707 18.773 1.282 26.027 7.255s11.093 14.934 11.093 24.32v222.719c0 11.947-6.4 22.612-17.067 28.159-4.693 2.56-9.813 3.841-14.933 3.841zM725.333 252.585c5.973 0 12.373 1.707 17.92 5.547l35.413 23.466v-124.159c-34.133 7.68-71.253 18.773-106.667 32v92.159l35.413-23.466c5.547-3.84 11.947-5.547 17.92-5.547z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book-saved"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":855,"id":272,"name":"book-saved","prevSize":32,"code":59768},"setIdx":2,"setId":2,"iconIdx":629},{"icon":{"paths":["M535.467 878.511c-33.707 0-70.827-11.947-107.947-35.413l-124.587-78.080c-8.533-5.12-18.347-8.107-28.16-8.107h-61.44c-103.253 0-160-56.747-160-160v-170.666c0-103.253 56.747-160 160-160h61.013c9.813 0 19.627-2.987 28.16-8.107l124.587-78.080c62.293-38.827 122.88-46.080 170.667-19.627s73.813 81.493 73.813 155.307v391.253c0 73.387-26.453 128.853-73.813 155.307-18.773 11.093-40.107 16.213-62.293 16.213zM213.333 330.671c-67.413 0-96 28.587-96 96v170.667c0 67.413 28.587 96 96 96h61.013c22.187 0 43.52 5.973 62.293 17.92l124.587 78.080c41.387 25.6 79.787 32.427 105.813 17.92s40.96-50.773 40.96-98.987v-392.106c0-48.64-14.933-84.907-40.96-98.987-26.027-14.507-64.853-8.107-105.813 17.92l-125.013 77.653c-18.347 11.947-40.107 17.92-61.867 17.92h-61.013z","M938.688 627.622c-8.107 0-16.213-2.987-22.613-9.387l-168.96-168.96c-12.373-12.373-12.373-32.852 0-45.225s32.853-12.373 45.227 0l168.96 168.958c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M767.979 629.333c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l168.96-168.961c12.373-12.373 32.853-12.373 45.227 0s12.373 32.854 0 45.228l-168.96 168.96c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-cross"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":856,"id":271,"name":"volume-cross","prevSize":32,"code":60339},"setIdx":2,"setId":2,"iconIdx":630},{"icon":{"paths":["M293.542 806.404c-17.493 0-32-14.507-32-32v-88.32c0-17.493 14.507-32 32-32s32 14.507 32 32v88.32c0 17.92-14.507 32-32 32z","M512 806.4c-17.493 0-32-14.507-32-32v-177.067c0-17.493 14.507-32 32-32s32 14.507 32 32v177.067c0 17.92-14.507 32-32 32z","M730.458 806.409c-17.493 0-32-14.507-32-32v-265.387c0-17.493 14.507-32 32-32s32 14.507 32 32v265.387c0 17.92-14.080 32-32 32z","M293.529 562.342c-14.507 0-27.307-9.813-31.147-24.32-4.267-17.067 5.973-34.56 23.467-38.827 157.014-39.253 295.254-125.012 400.641-247.466l19.627-23.040c11.52-13.227 31.573-14.933 45.227-3.413 13.227 11.52 14.933 31.573 3.413 45.227l-19.627 23.040c-113.92 133.12-264.107 225.706-433.921 267.946-2.56 0.853-5.12 0.853-7.68 0.853z","M730.47 406.191c-17.493 0-32-14.507-32-32v-92.587h-93.013c-17.493 0-32-14.507-32-32s14.507-32 32-32h125.013c17.493 0 32 14.507 32 32v125.013c0 17.493-14.080 31.573-32 31.573z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-up"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":857,"id":270,"name":"status-up","prevSize":32,"code":60340},"setIdx":2,"setId":2,"iconIdx":631},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M384 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-4"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":858,"id":269,"name":"grid-4","prevSize":32,"code":60341},"setIdx":2,"setId":2,"iconIdx":632},{"icon":{"paths":["M210.346 845.653c-8.533 0-16.639-3.413-22.612-9.387-86.613-86.613-134.401-201.813-134.401-324.267 0-253.013 205.653-458.667 458.667-458.667 122.453 0 237.653 47.787 324.267 134.4 5.973 5.973 9.387 14.080 9.387 22.613s-3.413 16.64-9.387 22.613l-603.306 603.307c-5.973 5.973-14.081 9.387-22.615 9.387zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667 0 94.72 33.28 184.32 93.867 255.573l556.373-556.373c-71.253-60.587-160.853-93.867-255.573-93.867z","M511.987 970.671c-122.454 0-237.652-47.787-324.266-134.4-5.973-5.973-9.388-14.080-9.388-22.613s3.415-16.64 9.388-22.613l603.306-603.306c12.373-12.373 32.853-12.373 45.227 0 86.613 86.613 134.4 201.813 134.4 324.266 0 253.013-205.653 458.667-458.667 458.667zM256.414 812.804c71.253 60.587 160.853 93.867 255.573 93.867 217.6 0 394.667-177.067 394.667-394.667 0-94.719-33.28-184.319-93.867-255.572l-556.373 556.372z","M572.139 966.409c-8.107 0-16.213-2.987-22.613-9.387l-241.495-241.493c-12.373-12.373-12.373-32.853 0-45.227s32.856-12.373 45.229 0l241.493 241.493c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M762.475 854.618c-8.107 0-16.213-2.987-22.613-9.387l-280.747-280.747c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l280.747 280.747c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M901.099 692.058c-8.107 0-16.209-2.987-22.609-9.387l-268.378-268.373c-12.373-12.373-12.373-32.853 0-45.226s32.853-12.373 45.227 0l268.378 268.372c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.084 9.387-22.618 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mask-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":859,"id":268,"name":"mask-1","prevSize":32,"code":60342},"setIdx":2,"setId":2,"iconIdx":633},{"icon":{"paths":["M512.038 544h-303.788c-17.493 0-32-14.507-32-32v-320c0-64.853 52.48-117.333 117.333-117.333h218.455c129.28 0 234.667 105.387 234.667 234.667s-105.387 234.667-234.667 234.667zM239.823 480h272.215c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667h-218.455c-29.44 0-53.333 23.893-53.333 53.333v288h-0.427z","M613.585 949.333h-320.002c-64.853 0-117.333-52.48-117.333-117.333v-320c0-17.493 14.507-32 32-32h405.335c129.28 0 234.667 105.387 234.667 234.667s-105.387 234.667-234.667 234.667zM239.823 544v288c0 29.44 23.893 53.333 53.333 53.333h320.002c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667h-373.335z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-bold"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":860,"id":267,"name":"text-bold","prevSize":32,"code":60343},"setIdx":2,"setId":2,"iconIdx":634},{"icon":{"paths":["M710.379 885.333c-0.427 0-1.28 0-1.707 0-17.493 0-32-14.507-31.573-32.427 0-17.493 15.787-33.28 32.427-31.573 46.933 0 96.427-17.92 132.693-51.2 66.133-58.027 70.827-140.8 52.907-199.253s-67.84-124.587-154.027-135.68c-14.080-1.707-25.173-12.373-27.733-26.453-16.64-101.973-72.107-172.373-154.88-197.973-86.187-26.453-185.6-0.427-247.894 64.853-60.587 63.574-74.667 151.893-39.68 249.6 5.973 16.64-2.56 34.987-19.2 40.96s-34.987-2.56-40.96-19.2c-43.093-119.893-23.467-234.666 53.76-315.306 78.933-82.347 204.374-115.2 313.174-81.493 99.413 30.72 169.813 112.64 194.987 226.133 87.040 19.627 156.587 85.333 184.32 176.213 30.293 98.987 2.987 200.533-71.253 265.387-49.067 43.52-110.933 67.413-175.36 67.413z","M237.657 885.338c-0.853 0-1.707 0-2.133 0-122.88-8.533-178.773-104.96-178.773-190.72s55.893-181.76 178.773-190.72c32.427 0.427 62.72 6.827 90.027 20.48 15.787 8.107 21.76 27.307 14.080 43.093-8.107 15.787-27.307 21.76-43.093 14.080-17.92-9.387-37.973-13.653-58.027-13.653-80.64 5.973-117.333 67.84-117.333 126.72s36.693 120.747 119.040 126.72c17.493 1.28 30.72 16.64 29.867 34.133-1.707 17.067-15.787 29.867-32.427 29.867z","M675.012 453.973c-11.947 0-23.040-6.4-28.587-17.92-8.107-15.788-1.707-34.988 14.507-43.095 26.027-13.227 55.467-20.48 84.48-20.907h0.427c17.493 0 31.573 14.080 32 31.573s-13.653 32.428-31.573 32.428c-19.627 0.427-39.253 5.12-57.173 14.080-4.693 2.987-9.387 3.84-14.080 3.84z","M553.835 810.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M383.167 810.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M468.501 938.667c-23.893 0-42.668-19.2-42.668-42.667s19.201-42.667 42.668-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-snow"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":861,"id":266,"name":"cloud-snow","prevSize":32,"code":60344},"setIdx":2,"setId":2,"iconIdx":635},{"icon":{"paths":["M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 231.68-98.987 330.667-330.667 330.667z","M808.085 356.691c-37.12 0-124.16-45.653-151.040-128.853-18.347-57.6 2.987-133.12 69.547-154.453 28.16-8.96 57.6-5.12 81.067 9.387 23.040-14.507 53.333-18.773 81.92-9.387 66.56 21.333 87.893 96.853 69.547 154.453-26.88 84.907-118.187 128.853-151.040 128.853zM718.059 208.211c18.347 56.747 79.787 83.2 90.88 84.48 12.373-1.28 72.533-31.147 89.173-84.48 8.96-28.587 0-64.853-28.16-74.24-11.947-3.84-27.733-1.707-34.987 9.387-5.973 8.96-15.787 14.507-26.027 14.507-9.813 0-20.48-4.693-26.453-13.227-8.96-12.373-24.747-14.080-35.84-10.667-28.587 9.387-37.547 45.653-28.587 74.24z","M113.952 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.96-44.373l210.347-141.227c46.080-31.147 109.653-27.307 151.465 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.227-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-31.573 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.6-18.347-78.933 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.078-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-210.347 141.227c-5.547 3.413-11.947 5.12-17.92 5.12z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-favorite"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":862,"id":265,"name":"gallery-favorite","prevSize":32,"code":60345},"setIdx":2,"setId":2,"iconIdx":636},{"icon":{"paths":["M352.853 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-674.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v674.133c0 81.92-41.813 121.6-127.147 121.6zM180.48 117.333c-54.187 0-63.147 14.507-63.147 57.6v674.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-674.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z","M843.52 970.667h-172.373c-85.76 0-127.147-39.68-127.147-121.6v-674.133c0-81.92 41.813-121.6 127.147-121.6h172.373c85.76 0 127.147 39.68 127.147 121.6v674.133c0 81.92-41.813 121.6-127.147 121.6zM671.147 117.333c-54.187 0-63.147 14.507-63.147 57.6v674.133c0 43.093 8.96 57.6 63.147 57.6h172.373c54.187 0 63.147-14.507 63.147-57.6v-674.133c0-43.093-8.96-57.6-63.147-57.6h-172.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["row-horizontal"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":863,"id":264,"name":"row-horizontal","prevSize":32,"code":60346},"setIdx":2,"setId":2,"iconIdx":637},{"icon":{"paths":["M512 736c-123.307 0-224-100.267-224-224s100.693-224 224-224c123.307 0 224 100.267 224 224s-100.693 224-224 224zM512 352c-88.32 0-160 71.68-160 160s71.68 160 160 160c88.32 0 160-71.68 160-160s-71.68-160-160-160z","M298.667 544h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.667 544h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["settings"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":864,"id":263,"name":"settings","prevSize":32,"code":60347},"setIdx":2,"setId":2,"iconIdx":638},{"icon":{"paths":["M682.667 544h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":865,"id":262,"name":"minus-square","prevSize":32,"code":60348},"setIdx":2,"setId":2,"iconIdx":639},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M511.979 651.093c-8.107 0-16.213-2.991-22.613-9.391l-128.002-128c-12.373-12.373-12.373-32.849 0-45.222s32.853-12.373 45.227 0l105.389 105.387 105.387-105.387c12.373-12.373 32.853-12.373 45.227 0s12.373 32.849 0 45.222l-128 128c-6.4 6.4-14.507 9.391-22.613 9.391z","M512 651.085c-17.493 0-32-14.507-32-32v-341.335c0-17.493 14.507-32 32-32s32 14.507 32 32v341.335c0 17.92-14.507 32-32 32z","M512.017 777.822c-90.025 0-180.479-14.507-266.239-43.093-16.64-5.547-25.6-23.893-20.053-40.533s23.467-26.027 40.533-20.053c158.72 52.907 333.225 52.907 491.945 0 16.64-5.547 34.987 3.413 40.533 20.053s-3.413 34.987-20.053 40.533c-86.187 29.013-176.64 43.093-266.667 43.093z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receive-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":866,"id":261,"name":"receive-square","prevSize":32,"code":60349},"setIdx":2,"setId":2,"iconIdx":640},{"icon":{"paths":["M810.667 714.667c-17.493 0-32-14.507-32-32v-405.333c0-29.44-23.893-53.333-53.333-53.333h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c64.853 0 117.333 52.48 117.333 117.333v405.333c0 17.493-14.507 32-32 32z","M597.333 330.664c-7.253 0-14.507-2.559-20.48-7.252l-128-106.667c-7.253-5.973-11.52-14.934-11.52-24.748s4.267-18.348 11.52-24.748l128-106.667c13.653-11.52 33.707-9.385 45.227 4.268s9.387 33.707-4.267 45.227l-98.56 81.919 98.56 81.919c13.653 11.52 15.36 31.573 4.267 45.227-6.4 7.68-15.787 11.521-24.747 11.521z","M810.667 970.667c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 714.667c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M533.333 864h-234.667c-64.853 0-117.333-52.48-117.333-117.333v-405.333c0-17.493 14.507-32 32-32s32 14.507 32 32v405.333c0 29.44 23.893 53.333 53.333 53.333h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.705 970.654c-8.96 0-18.346-3.84-24.746-11.52-11.52-13.653-9.388-33.707 4.265-45.227l98.56-81.92-98.56-81.92c-13.653-11.52-15.359-31.573-4.265-45.227 11.52-13.653 31.572-15.36 45.226-4.267l128 106.667c7.253 5.973 11.52 14.933 11.52 24.747s-4.267 18.347-11.52 24.747l-128 106.667c-5.973 4.693-13.227 7.253-20.48 7.253z","M213.333 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM213.333 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["programming-arrows"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":867,"id":260,"name":"programming-arrows","prevSize":32,"code":60350},"setIdx":2,"setId":2,"iconIdx":641},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M362.667 618.662c-11.093 0-22.187-4.693-30.293-12.373-7.68-8.107-12.373-18.773-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213s5.12-9.809 8.96-14.076c15.787-15.787 44.373-15.787 60.587 0 7.68 8.107 12.373 19.196 12.373 30.289 0 2.56-0.427 5.551-0.853 8.538-0.427 2.56-1.28 5.116-2.56 7.676-0.853 2.56-2.133 5.12-3.84 7.68-1.707 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.293 12.373z","M512 618.671c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-9.813-5.12-14.080-8.96-7.68-8.107-12.373-18.773-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213s5.12-9.813 8.96-14.080c4.267-3.84 8.533-6.827 14.080-8.96 15.787-6.4 34.56-2.987 46.507 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 2.56-0.427 5.547-0.853 8.533-0.427 2.56-1.28 5.12-2.56 7.68-0.853 2.56-2.133 5.12-3.84 7.68-1.28 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.293 12.373z","M362.667 768c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-10.24-5.12-14.080-8.96s-6.827-8.533-8.96-14.080c-2.133-5.12-3.413-10.667-3.413-16.213s1.28-11.093 3.413-16.213c2.133-5.547 5.12-10.24 8.96-14.080s8.533-6.827 14.080-8.96c10.24-4.267 22.187-4.693 32.427 0 5.547 2.133 10.24 5.12 14.080 8.96s6.827 8.533 8.96 14.080c2.133 5.12 3.413 10.667 3.413 16.213s-1.28 11.093-3.413 16.213c-2.133 5.547-5.12 10.24-8.96 14.080s-8.533 6.827-14.080 8.96c-5.12 2.133-10.667 3.413-16.213 3.413z","M874.667 419.833h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 1013.333c-49.92 0-97.28-17.92-133.547-50.773-15.36-12.8-29.013-29.013-40.107-47.787-18.773-30.72-29.013-66.987-29.013-104.107 0-111.787 90.88-202.667 202.667-202.667 58.027 0 113.493 25.173 151.893 68.693 32.853 37.547 50.773 84.907 50.773 133.973 0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM768 672c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 7.253 12.8 16.64 23.467 26.88 32.427 25.6 23.040 57.6 34.987 91.733 34.987 49.067 0 93.44-25.173 118.613-66.987 13.227-21.76 20.053-46.080 20.053-71.68 0-33.28-12.373-65.707-34.56-91.733-26.453-29.867-64.427-46.933-104.107-46.933z","M743.676 884.907c-8.107 0-16.213-2.987-22.613-9.387l-42.24-42.24c-12.373-12.373-12.373-32.849 0-45.222s32.853-12.373 45.227 0l20.48 20.48 68.267-63.147c12.8-11.947 33.28-11.093 45.227 1.707s11.093 33.28-1.707 45.227l-90.88 84.053c-6.4 5.547-14.080 8.529-21.76 8.529z","M655.787 970.667h-314.453c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v335.36c0 13.227-8.107 25.173-20.907 29.867-12.373 4.693-26.453 1.28-35.413-8.96-26.453-29.867-64.427-46.933-104.107-46.933-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 7.253 12.8 16.64 23.467 26.88 32.427 10.24 8.533 14.080 22.613 9.387 35.413-3.84 12.373-15.787 20.907-29.44 20.907zM341.333 181.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h248.32c-15.787-29.013-24.32-61.867-24.32-96 0-111.787 90.88-202.667 202.667-202.667 33.707 0 66.987 8.533 96 24.32v-269.653c0-122.027-59.307-181.333-181.333-181.333h-341.333z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":868,"id":259,"name":"calendar-tick","prevSize":32,"code":59769},"setIdx":2,"setId":2,"iconIdx":642},{"icon":{"paths":["M615.654 721.933h-97.702c-17.493 0-32-14.507-32-32s14.507-32 32-32h97.702c18.347 0 33.284-14.933 33.284-33.28s-14.938-33.28-33.284-33.28h-97.702c-10.24 0-20.053-5.12-26.027-13.227s-7.684-19.2-4.271-29.013l32.427-97.707c4.267-13.227 16.644-21.76 30.298-21.76h130.56c17.493 0 32 14.507 32 32s-14.507 32-32 32h-107.524l-11.093 33.707h53.333c53.76 0 97.284 43.52 97.284 97.28s-43.951 97.28-97.284 97.28z","M407.021 721.911c-17.493 0-32-14.507-32-32v-144.636l-8.107 9.382c-11.947 13.227-32 14.080-45.227 2.56-13.227-11.947-14.080-32-2.56-45.227l64-71.253c8.96-9.813 23.041-13.227 35.414-8.533 12.375 4.693 20.477 16.64 20.477 29.867v228.267c0 17.493-14.078 31.573-31.998 31.573z","M427.52 222.717c-7.253 0-14.081-2.132-20.055-7.252-13.653-11.093-15.786-31.146-5.12-44.8l84.481-105.385c11.093-13.653 31.147-15.789 44.8-5.123s15.787 31.149 5.12 44.802l-84.48 105.385c-5.973 8.107-15.36 12.372-24.747 12.372z","M511.974 970.658c-226.56 0-411.308-184.324-411.308-411.311 0-88.32 28.587-173.225 83.2-245.759 10.667-14.080 30.72-17.065 44.8-6.398s17.068 30.72 6.401 44.8c-46.080 61.44-70.401 133.117-70.401 207.357 0 191.573 155.734 347.311 347.308 347.311s347.307-155.738 347.307-347.311c0-191.572-155.733-347.305-347.307-347.305-24.747 0-49.92 2.988-77.227 9.388-17.494 3.84-34.561-6.827-38.401-23.893s6.827-34.561 23.893-38.401c32.001-7.253 62.295-11.094 91.735-11.094 226.56 0 411.307 184.32 411.307 411.305 0 226.987-184.747 411.311-411.307 411.311z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["backward-15-seconds"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":869,"id":258,"name":"backward-15-seconds","prevSize":32,"code":60351},"setIdx":2,"setId":2,"iconIdx":643},{"icon":{"paths":["M256 384c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M426.667 384c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M256 800c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M426.667 800c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M768 341.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 757.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.667 544h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["driver-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":870,"id":257,"name":"driver-2","prevSize":32,"code":60352},"setIdx":2,"setId":2,"iconIdx":644},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M608 970.667h-192c-17.493 0-32-14.507-32-32v-768c0-73.387 40.533-117.333 108.8-117.333h38.4c68.267 0 108.8 43.947 108.8 117.333v768c0 17.493-14.507 32-32 32zM448 906.667h128v-736c0-49.067-23.040-53.333-44.8-53.333h-38.4c-21.76 0-44.8 4.267-44.8 53.333v736z","M298.667 970.667h-170.667c-17.493 0-32-14.507-32-32v-512c0-73.387 37.547-117.333 100.267-117.333h34.133c62.72 0 100.267 43.947 100.267 117.333v512c0 17.493-14.507 32-32 32zM160 906.667h106.667v-480c0-53.333-23.467-53.333-36.267-53.333h-34.133c-12.8 0-36.267 0-36.267 53.333v480z","M896 970.667h-170.667c-17.493 0-32-14.507-32-32v-298.667c0-73.387 37.547-117.333 100.267-117.333h34.133c62.72 0 100.267 43.947 100.267 117.333v298.667c0 17.493-14.507 32-32 32zM757.333 906.667h106.667v-266.667c0-53.333-23.467-53.333-36.267-53.333h-34.133c-12.8 0-36.267 0-36.267 53.333v266.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":871,"id":256,"name":"chart-1","prevSize":32,"code":60353},"setIdx":2,"setId":2,"iconIdx":645},{"icon":{"paths":["M613.538 970.667h-203.095c-161.28 0-288-101.547-322.987-258.987l-17.492-79.36c-11.947-54.613 19.199-113.493 70.826-134.4l295.681-118.614c48.64-19.2 102.4-19.2 151.040 0l295.68 118.614c52.053 20.907 83.2 79.787 70.827 134.4l-17.493 79.36c-34.987 157.44-161.707 258.987-322.987 258.987zM511.991 428.8c-17.493 0-34.987 3.413-52.053 9.813l-295.681 118.613c-22.613 8.96-37.547 37.547-32.427 61.013l17.494 79.36c28.587 128.853 128.426 208.64 260.692 208.64h203.095c132.267 0 232.107-79.787 260.693-208.64l17.493-79.36c5.12-23.467-9.813-52.053-32.427-61.013l-295.68-118.613c-16.213-6.4-33.707-9.813-51.2-9.813z","M512 970.667c-17.493 0-32-14.507-32-32v-512c0-17.493 14.507-32 32-32s32 14.507 32 32v512c0 17.493-14.507 32-32 32z","M810.675 535.467c-3.84 0-8.107-0.853-11.947-2.133l-235.093-94.293c-33.28-13.226-69.973-13.226-103.68 0l-235.092 94.293c-9.813 3.84-20.906 2.56-29.866-3.413s-14.081-15.787-14.081-26.453v-162.133c0-88.32 71.68-160 160-160h341.332c88.32 0 160 71.68 160 160v162.133c0 10.667-5.12 20.48-14.080 26.453-5.12 3.84-11.093 5.547-17.493 5.547zM512.009 364.8c25.6 0 51.2 4.694 75.52 14.508l191.147 76.8v-114.773c0-52.907-43.093-96-96-96h-341.332c-52.907 0-96 43.093-96 96v114.773l191.149-76.8c24.32-9.387 49.916-14.508 75.516-14.508z","M618.667 245.333h-213.333c-17.493 0-32-14.507-32-32v-85.333c0-40.96 33.707-74.667 74.667-74.667h128c40.96 0 74.667 33.707 74.667 74.667v85.333c0 17.493-14.507 32-32 32zM437.333 181.333h149.333v-53.333c0-5.973-4.693-10.667-10.667-10.667h-128c-5.973 0-10.667 4.693-10.667 10.667v53.333z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ship"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":872,"id":255,"name":"ship","prevSize":32,"code":60354},"setIdx":2,"setId":2,"iconIdx":646},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667 0-100.693 32-196.267 92.587-276.48 10.667-14.080 30.72-16.64 44.8-5.973s17.067 30.72 6.4 44.8c-52.053 68.693-79.787 151.040-79.787 237.653 0 217.6 177.067 394.667 394.667 394.667s394.667-177.067 394.667-394.667c0-217.6-177.067-394.667-394.667-394.667-17.493 0-32-14.507-32-32s14.507-32 32-32c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667z","M512 842.667c-182.187 0-330.667-148.48-330.667-330.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 147.2 119.467 266.667 266.667 266.667s266.667-119.467 266.667-266.667c0-147.2-119.467-266.667-266.667-266.667-17.493 0-32-14.507-32-32s14.507-32 32-32c182.187 0 330.667 148.48 330.667 330.667s-148.48 330.667-330.667 330.667z","M512 714.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-3"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":873,"id":254,"name":"chart-3","prevSize":32,"code":60355},"setIdx":2,"setId":2,"iconIdx":647},{"icon":{"paths":["M512.026 558.076c-5.547 0-11.093-1.28-16.213-4.267l-226.133-130.558c-15.36-8.96-20.481-28.586-11.521-43.52 8.96-15.36 28.16-20.48 43.947-11.52l209.92 121.598 208.64-120.745c15.36-8.96 34.987-3.414 43.947 11.52 8.96 15.36 3.413 34.987-11.52 43.52l-224.427 129.705c-5.547 2.56-11.093 4.267-16.64 4.267z","M512 790.191c-17.493 0-32-14.507-32-32v-232.107c0-17.493 14.507-32 32-32s32 14.507 32 32v232.107c0 17.493-14.507 32-32 32z","M512.009 800c-24.747 0-49.062-5.547-68.689-16.213l-136.535-75.947c-40.96-22.613-72.534-76.8-72.534-123.733v-144.64c0-46.505 32.001-101.118 72.534-123.731l136.535-75.947c39.253-21.76 98.129-21.76 137.382 0l136.533 75.947c40.96 22.613 72.538 76.8 72.538 123.731v144.64c0 46.507-32.004 101.12-72.538 123.733l-136.533 75.947c-19.627 10.667-43.947 16.213-68.693 16.213zM512.009 288.002c-14.080 0-27.733 2.56-37.547 8.107l-136.531 75.947c-20.907 11.52-39.681 43.947-39.681 67.411v144.64c0 23.893 18.775 55.893 39.681 67.413l136.531 75.947c19.627 11.093 55.467 11.093 75.093 0l136.533-75.947c20.907-11.52 39.684-43.947 39.684-67.413v-144.64c0-23.891-18.778-55.891-39.684-67.411l-136.533-75.947c-9.813-5.547-23.467-8.107-37.547-8.107z","M640.009 970.667c-11.52 0-22.187-6.4-27.733-16.213-5.547-10.24-5.547-22.187 0.427-32.427l44.8-74.667c8.96-14.933 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.613-148.907 331.093-331.093 331.093z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.186 6.4 27.733 16.213 5.547 10.24 5.548 22.187-0.426 32.427l-44.8 74.667c-8.96 14.933-28.587 20.053-43.947 11.093s-20.054-28.587-11.094-43.947l11.521-19.2c-117.76 27.733-206.081 133.547-206.081 259.84 0.427 17.067-14.080 31.573-31.573 31.573z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["d-rotate"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":874,"id":253,"name":"d-rotate","prevSize":32,"code":60356},"setIdx":2,"setId":2,"iconIdx":648},{"icon":{"paths":["M510.75 970.667c-252.587 0-458.667-205.653-458.667-458.667s206.080-458.667 458.667-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM510.75 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M566.165 724.48h-108.373c-107.945 0-158.292-50.347-158.292-158.293v-108.373c0-107.946 50.347-158.292 158.292-158.292h108.373c107.947 0 158.293 50.347 158.293 158.292v108.373c0 107.947-50.347 158.293-158.293 158.293zM457.792 363.521c-72.105 0-94.292 22.187-94.292 94.292v108.373c0 72.107 22.187 94.293 94.292 94.293h108.373c72.107 0 94.293-22.187 94.293-94.293v-108.373c0-72.106-22.187-94.292-94.293-94.292h-108.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stop-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":875,"id":252,"name":"stop-circle","prevSize":32,"code":60357},"setIdx":2,"setId":2,"iconIdx":649},{"icon":{"paths":["M426.667 714.667c-17.493 0-32-14.507-32-32 0-71.253 0-160 160-160h170.667c96 0 96-12.8 96-96v-85.333c0-83.2 0-96-96-96h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c149.333 0 160 60.587 160 160v85.333c0 99.413-10.667 160-160 160h-170.667c-96 0-96 26.027-96 96 0 17.493-14.507 32-32 32z","M512.038 373.333h-170.665c-13.653 0-26.027-8.96-30.293-21.76-29.44-89.173-29.44-187.307 0-276.053 4.267-13.227 16.64-22.187 30.293-22.187h170.665c13.653 0 26.027 8.96 30.293 21.76 29.867 89.173 29.867 187.307 0 276.053-4.267 13.227-16.213 22.187-30.293 22.187zM365.267 309.333h123.305c16.64-62.72 16.64-129.28 0-192h-123.305c-16.64 62.72-16.64 129.28 0 192z","M341.333 373.333h-42.667c-103.253 0-160-56.747-160-160s56.747-160 160-160h42.667c11.093 0 21.333 5.547 27.307 15.36 5.973 9.387 6.4 21.333 1.28 31.147-38.4 76.373-38.4 151.040 0 227.413 5.12 9.813 4.267 21.76-1.28 31.147-5.973 9.387-16.213 14.933-27.307 14.933zM293.547 117.333c-63.573 1.707-90.88 30.293-90.88 96 0 65.28 27.307 94.293 90.453 96-21.333-64-21.333-128 0.427-192z","M554.633 373.333h-42.667c-11.093 0-21.333-5.547-27.307-15.36-5.973-9.387-6.4-21.333-1.28-31.147 37.973-76.373 37.973-151.040 0-227.413-5.12-9.813-4.267-21.76 1.28-31.147 5.973-9.387 16.213-14.933 27.307-14.933h42.667c103.253 0 160 56.747 160 160s-56.747 160-160 160zM559.753 117.333c21.333 64 21.333 128 0 192 63.573-1.707 90.453-30.293 90.453-96 0.427-65.707-26.88-94.293-90.453-96z","M448 970.667h-42.667c-43.947 0-96-16.64-96-96v-128c0-79.36 52.053-96 96-96h42.667c43.947 0 96 16.64 96 96v128c0 79.36-52.053 96-96 96zM405.333 714.667c-32 0-32 9.387-32 32v128c0 22.613 0 32 32 32h42.667c32 0 32-9.387 32-32v-128c0-22.613 0-32-32-32h-42.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brush"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":876,"id":251,"name":"brush","prevSize":32,"code":60358},"setIdx":2,"setId":2,"iconIdx":650},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M458.227 694.622c-8.107 0-16.213-2.987-22.613-9.387-12.374-12.373-12.374-32.853 0-45.227l128-128-128-128.002c-12.374-12.373-12.374-32.853 0-45.227s32.853-12.373 45.227 0l150.613 150.615c12.373 12.373 12.373 32.853 0 45.227l-150.613 150.613c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":877,"id":250,"name":"arrow-right","prevSize":32,"code":60359},"setIdx":2,"setId":2,"iconIdx":651},{"icon":{"paths":["M511.974 970.667c-2.56 0-5.12-0.427-7.253-0.853-2.56-0.427-5.12-1.707-7.68-2.987l-94.294-46.933c-15.787-8.107-22.187-27.307-14.507-43.093 8.107-15.787 27.307-22.187 43.095-14.507l48.64 24.32v-66.56c0-17.493 14.507-32 32-32s32 14.507 32 32v66.56l48.64-24.32c15.787-7.68 34.987-1.28 43.093 14.507s1.707 34.987-14.507 43.093l-94.293 46.933c-2.56 1.28-5.12 2.133-7.68 2.987-2.56 0.427-4.693 0.853-7.253 0.853zM796.561 828.587c-11.52 0-23.040-6.4-28.587-17.493-8.107-15.787-1.707-34.987 14.507-43.093l77.227-38.4v-98.56c0-17.493 14.507-32 32-32s32 14.507 32 32v118.613c0 11.947-6.827 23.040-17.493 28.587l-94.72 47.36c-5.547 1.707-10.24 2.987-14.933 2.987zM227.387 828.587c-4.693 0-9.814-1.28-14.080-3.413l-94.72-47.36c-10.667-5.547-17.493-16.64-17.493-28.587v-118.613c0-17.493 14.507-32 32-32s32 14.507 32 32v98.56l77.226 38.4c15.787 8.107 22.187 27.307 14.507 43.093-6.4 11.093-17.493 17.92-29.44 17.92zM511.974 615.253c-17.493 0-32-14.507-32-32v-98.56l-77.228-38.4c-15.787-8.107-22.187-27.305-14.507-43.092 8.107-15.787 27.307-22.187 43.095-14.507l80.64 40.105 80.64-40.105c15.787-7.68 34.987-1.707 43.093 14.507s1.707 34.985-14.507 43.092l-77.227 38.4v98.56c0 17.493-14.507 32-32 32zM891.281 425.388c-17.493 0-32-14.507-32-32v-66.56l-48.64 24.32c-15.787 8.107-34.987 1.707-43.093-14.507-8.107-15.787-1.707-34.986 14.507-43.093l37.547-18.774-37.547-18.773c-15.787-8.107-22.187-27.306-14.507-43.093 8.107-15.787 27.307-22.187 43.093-14.507l94.293 46.933c0.853 0.427 2.133 0.853 2.987 1.706 2.56 1.28 4.693 3.414 6.827 5.547 1.28 1.707 2.56 3.413 3.84 5.12 1.707 2.987 2.987 5.974 3.84 9.387 0.427 2.56 0.853 5.12 0.853 7.253v118.187c0 18.773-14.507 32.853-32 32.853zM132.667 425.388c-17.493 0-32-14.507-32-32v-118.187c0-2.56 0.426-5.12 0.853-7.253 0.853-3.413 2.134-6.4 3.84-9.387 1.28-2.133 2.56-3.84 4.266-5.547s3.84-3.412 5.973-4.692c0.853-0.427 2.133-1.28 2.987-1.707l94.293-46.934c15.787-7.68 34.987-1.706 43.093 14.508s1.707 34.986-14.506 43.093l-37.547 18.773 37.547 18.774c15.787 8.107 22.186 27.306 14.506 43.093-8.107 15.787-26.88 22.187-43.093 14.507l-48.64-24.32v66.56c0.427 16.64-13.653 30.72-31.573 30.72zM606.694 164.695c-4.693 0-9.813-1.28-14.080-3.413l-80.64-40.107-80.64 40.107c-15.788 8.107-34.988 1.707-43.095-14.507-8.107-15.787-1.706-34.987 14.507-43.094l94.721-47.359c8.96-4.693 19.627-4.693 28.587 0l94.72 47.359c15.787 8.107 22.187 27.307 14.507 43.094-5.547 11.52-16.64 17.92-28.587 17.92z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box-2"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":878,"id":249,"name":"box-2","prevSize":32,"code":59770},"setIdx":2,"setId":2,"iconIdx":652},{"icon":{"paths":["M725.333 885.333h-362.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h362.667c122.027 0 181.333-59.307 181.333-181.333v-256c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v264.533c0 17.493-14.507 32-32 32s-32-14.507-32-32v-264.533c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v256c0 155.733-89.6 245.333-245.333 245.333z","M512 650.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 437.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M789.333 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M213.333 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM213.333 629.333c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.825 49.92 20.052 71.253 24.747 41.813 70.401 67.413 118.615 67.413s93.868-25.6 118.615-66.987c13.227-21.76 20.052-46.080 20.052-71.68 0-76.373-62.293-138.667-138.667-138.667z","M95.978 917.333c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.858 0-45.231l234.667-234.667c12.373-12.373 32.856-12.373 45.229 0s12.373 32.858 0 45.231l-234.667 234.667c-6.4 6.4-14.508 9.387-22.615 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-forbidden"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":879,"id":248,"name":"money-forbidden","prevSize":32,"code":60360},"setIdx":2,"setId":2,"iconIdx":653},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M426.667 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M938.667 394.667h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.667 693.333h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-6"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":880,"id":247,"name":"grid-6","prevSize":32,"code":60361},"setIdx":2,"setId":2,"iconIdx":654},{"icon":{"paths":["M263.644 970.662c-4.267 0-8.96-0.427-12.8-0.853l-92.587-12.8c-44.373-5.973-84.48-45.653-91.307-90.88l-12.8-93.44c-4.267-29.867 8.533-68.693 29.867-90.453l187.307-187.307c-30.293-121.172 4.693-249.172 93.867-337.492 138.242-137.813 363.095-138.24 501.762 0 66.987 66.987 103.68 156.16 103.68 250.88s-36.693 183.892-103.68 250.879c-89.6 88.747-217.173 123.733-337.493 93.013l-187.735 187.307c-17.92 18.773-49.92 31.147-78.080 31.147zM615.646 117.757c-74.667 0-148.907 28.16-205.655 84.907-76.8 76.373-104.533 188.16-72.533 292.266 3.413 11.52 0.427 23.467-8.107 32l-200.533 200.533c-7.253 7.253-13.227 26.027-11.947 35.84l12.8 93.44c2.56 16.213 20.053 34.56 36.267 36.693l93.013 12.8c10.24 1.707 29.013-4.267 36.267-11.52l201.388-200.96c8.533-8.533 20.907-11.093 32-7.68 102.827 32.427 215.040 4.693 291.84-72.107 54.613-54.613 84.907-128 84.907-205.652 0-78.080-30.293-151.040-84.907-205.653-55.467-56.32-130.133-84.907-204.8-84.907z","M392.11 876.369c-8.107 0-16.213-2.987-22.613-9.387l-98.133-98.133c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l98.133 98.133c12.374 12.373 12.374 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M618.667 501.333c-52.907 0-96-43.093-96-96s43.093-96 96-96c52.907 0 96 43.093 96 96s-43.093 96-96 96zM618.667 373.333c-17.493 0-32 14.507-32 32s14.507 32 32 32c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["key"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":881,"id":246,"name":"key","prevSize":32,"code":59771},"setIdx":2,"setId":2,"iconIdx":655},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M640 586.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 757.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667h-256c-239.787 0-288-113.067-288-295.68v-263.253c0-202.24 68.267-284.587 243.627-294.4h343.040c0.427 0 1.28 0 1.707 0 175.36 9.813 243.627 92.16 243.627 294.4v263.253c0 182.613-48.213 295.68-288 295.68zM341.333 181.333c-119.467 6.827-181.333 44.373-181.333 230.4v263.253c0 163.413 31.147 231.68 224 231.68h256c192.853 0 224-68.267 224-231.68v-263.253c0-185.6-61.44-223.573-182.187-230.4h-340.48z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":882,"id":245,"name":"note-1","prevSize":32,"code":60362},"setIdx":2,"setId":2,"iconIdx":656},{"icon":{"paths":["M456.533 714.667h-102.4c-103.253 0-151.467-48.213-151.467-151.467v-102.4c0-103.253 48.213-151.467 151.467-151.467h102.4c103.253 0 151.467 48.213 151.467 151.467v102.4c0 103.253-48.213 151.467-151.467 151.467zM354.133 373.333c-67.84 0-87.467 19.627-87.467 87.467v102.4c0 67.84 19.627 87.467 87.467 87.467h102.4c67.84 0 87.467-19.627 87.467-87.467v-102.4c0-67.84-19.627-87.467-87.467-87.467h-102.4z","M725.333 885.333h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-256c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 202.667c-152.747 0-181.333 29.013-181.333 181.333v256c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-256c0-152.32-28.587-181.333-181.333-181.333h-426.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-off"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":883,"id":244,"name":"toggle-off","prevSize":32,"code":60363},"setIdx":2,"setId":2,"iconIdx":657},{"icon":{"paths":["M756.907 970.667h-489.813c-106.24 0-192.427-86.187-192.427-192.427v-287.147c0-106.24 86.187-192.427 192.427-192.427h489.813c106.24 0 192.427 86.187 192.427 192.427v61.44c0 17.493-14.507 32-32 32h-86.187c-14.933 0-28.587 5.547-38.4 15.787l-0.427 0.427c-11.947 11.52-17.493 27.307-16.213 43.52 2.56 28.16 29.44 50.773 60.16 50.773h81.067c17.493 0 32 14.507 32 32v50.773c0 106.667-86.187 192.853-192.427 192.853zM267.093 362.667c-70.827 0-128.427 57.6-128.427 128.427v287.147c0 70.827 57.6 128.427 128.427 128.427h489.813c70.827 0 128.427-57.6 128.427-128.427v-18.773h-49.067c-64.427 0-119.040-47.787-124.16-109.227-3.413-34.987 9.387-69.547 34.987-94.72 22.187-22.613 52.053-34.987 84.053-34.987h54.187v-29.44c0-70.826-57.6-128.427-128.427-128.427h-489.813z","M106.667 561.493c-17.493 0-32-14.507-32-32v-194.984c0-63.573 40.107-121.175 99.413-143.789l338.773-128c34.987-13.227 73.813-8.532 104.107 12.802 30.72 21.333 48.64 55.893 48.64 93.013v162.132c0 17.493-14.507 32-32 32s-32-14.507-32-32v-162.132c0-16.213-7.68-31.148-21.333-40.534s-29.867-11.52-45.227-5.547l-338.773 128c-34.56 13.227-58.027 46.935-58.027 84.055v194.984c0.427 17.92-14.080 32-31.573 32z","M836.288 759.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.76-22.187 51.627-34.56 83.627-34.56h88.747c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.48zM918.635 584.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.56 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M597.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["empty-wallet"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":884,"id":243,"name":"empty-wallet","prevSize":32,"code":59772},"setIdx":2,"setId":2,"iconIdx":658},{"icon":{"paths":["M512 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M853.346 800c-6.827 0-13.227-2.133-19.2-6.4-14.080-10.667-17.067-30.72-6.4-44.8 51.627-68.693 78.933-150.613 78.933-236.8 0-86.185-27.307-168.105-78.933-236.798-10.667-14.080-7.68-34.134 6.4-44.801s34.133-7.68 44.8 6.4c60.16 79.787 91.733 174.934 91.733 275.199 0 100.267-31.573 195.413-91.733 275.2-6.4 8.533-15.787 12.8-25.6 12.8z","M170.667 800c-9.813 0-19.2-4.267-25.6-12.8-60.16-79.787-91.733-174.933-91.733-275.2 0-100.265 31.573-195.412 91.733-275.199 10.667-14.080 30.721-17.066 44.801-6.4s17.067 30.721 6.4 44.801c-51.627 68.693-78.934 150.613-78.934 236.798 0 86.187 27.307 168.107 78.934 236.8 10.667 14.080 7.68 34.133-6.4 44.8-5.547 4.267-12.374 6.4-19.2 6.4z","M716.843 697.596c-6.827 0-13.222-2.133-19.196-6.4-14.080-10.667-17.067-30.72-6.4-44.8 29.44-38.827 44.796-85.333 44.796-134.4s-15.356-95.572-44.796-134.398c-10.667-14.080-7.68-34.134 6.4-44.801s34.129-7.679 44.796 6.401c37.547 50.347 57.6 110.078 57.6 172.798s-20.053 122.88-57.6 172.8c-6.4 8.533-15.787 12.8-25.6 12.8z","M307.2 697.596c-9.813 0-19.2-4.267-25.6-12.8-37.547-50.347-57.6-110.080-57.6-172.8s20.054-122.878 57.6-172.798c10.667-14.080 30.719-17.068 44.799-6.401s17.067 30.721 6.4 44.801c-29.44 38.827-44.8 85.332-44.8 134.398s15.36 95.573 44.8 134.4c10.667 14.080 7.68 34.133-6.4 44.8-5.547 4.267-12.372 6.4-19.199 6.4z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["radar-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":885,"id":242,"name":"radar-1","prevSize":32,"code":59773},"setIdx":2,"setId":2,"iconIdx":659},{"icon":{"paths":["M330.667 789.333c-152.747 0-277.333-124.587-277.333-277.333s124.587-277.333 277.333-277.333c17.493 0 32 14.507 32 32s-14.507 32-32 32c-117.76 0-213.333 95.573-213.333 213.333s95.573 213.333 213.333 213.333c117.76 0 213.333-95.573 213.333-213.333 0-17.493 14.507-32 32-32s32 14.507 32 32c0 152.747-124.587 277.333-277.333 277.333z","M682.667 800c-17.493 0-32-14.507-32-32s14.507-32 32-32c123.307 0 224-100.693 224-224s-100.693-224-224-224c-123.307 0-224 100.693-224 224 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-158.72 129.28-288 288-288s288 129.28 288 288c0 158.72-129.28 288-288 288z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":886,"id":241,"name":"link","prevSize":32,"code":60364},"setIdx":2,"setId":2,"iconIdx":660},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512 794.876c-23.893 0-46.507-11.947-62.293-32.853l-25.6-34.133c-2.987-3.84-6.4-5.973-10.24-6.4-3.84 0-7.253 1.707-10.667 5.12v0c-41.387 44.373-75.094 40.107-91.734 33.707-16.64-6.827-44.8-27.307-44.8-90.453v-282.881c0-118.613 37.973-158.294 150.613-158.294h189.867c112.64 0 150.613 40.107 150.613 158.294v282.881c0 63.147-28.16 84.053-44.8 90.453-16.213 6.4-49.92 10.667-91.733-33.707-3.413-3.413-7.253-5.12-11.093-5.12s-7.253 2.56-10.24 6.4l-25.173 33.707c-16.213 21.333-38.827 33.28-62.72 33.28zM413.44 657.489c1.28 0 2.56 0 3.84 0 22.613 1.28 43.52 12.8 57.6 32l25.6 34.133c7.253 9.387 15.36 9.387 22.187 0l25.173-33.707c14.080-19.2 35.413-30.72 58.027-32 22.187-1.707 44.8 8.107 61.013 25.6 11.947 12.8 19.627 16.213 22.613 17.067-0.427-2.133 3.413-10.667 3.413-30.293v-282.882c0-87.467-13.227-94.293-86.613-94.293h-189.866c-73.387 0-86.613 6.827-86.613 94.293v282.882c0 19.627 3.84 28.16 5.12 30.72 1.28-1.707 8.959-5.12 20.479-17.92 0-0.427 0.428-0.427 0.854-0.853 15.787-15.36 36.266-24.747 57.173-24.747z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":887,"id":240,"name":"receipt-square","prevSize":32,"code":60365},"setIdx":2,"setId":2,"iconIdx":661},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512 693.333c-99.84 0-181.333-81.493-181.333-181.333s81.493-181.333 181.333-181.333c99.84 0 181.333 81.493 181.333 181.333s-81.493 181.333-181.333 181.333zM512 394.667c-64.853 0-117.333 52.48-117.333 117.333s52.48 117.333 117.333 117.333c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333z","M725.333 319.996c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-14.080-8.96c-3.84-4.267-7.253-8.96-9.387-14.080s-2.987-10.667-2.987-16.213c0-5.547 0.853-11.093 2.987-16.213 2.56-5.547 5.547-9.813 9.387-14.080 2.133-1.707 4.267-3.84 6.4-5.12 2.56-1.707 5.12-2.987 7.68-3.84 2.56-1.28 5.12-2.133 8.107-2.56 13.653-2.987 28.16 1.707 38.4 11.52 3.84 4.267 6.827 8.533 8.96 14.080 2.133 5.12 3.413 10.667 3.413 16.213s-1.28 11.093-3.413 16.213c-2.133 5.12-5.12 9.813-8.96 14.080-4.267 3.84-8.96 6.827-14.080 8.96s-10.667 3.413-16.213 3.413z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["instagram"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":888,"id":239,"name":"instagram","prevSize":32,"code":60366},"setIdx":2,"setId":2,"iconIdx":662},{"icon":{"paths":["M630.191 842.658h-235.092c-18.773 0-42.667-2.133-58.453-18.347-15.36-15.787-14.933-35.413-14.507-48.64v-37.973c-107.52-71.68-178.347-196.267-178.347-314.88 0-112.213 50.347-217.173 137.813-287.573s202.239-96.853 314.452-72.107c106.667 23.467 198.827 94.72 246.613 190.72 92.587 186.453 3.413 388.267-139.093 484.267v32c0.427 12.373 0.853 34.987-16.64 52.907-13.227 12.8-32 19.627-56.747 19.627zM385.712 778.231c2.133 0 5.12 0.427 8.96 0.427h235.519c4.267 0 7.253-0.427 8.96-0.853 0-1.28 0-2.987 0-4.267v-53.76c0-11.093 5.973-21.76 15.36-27.307 126.293-76.373 209.92-250.88 130.133-410.88-39.253-78.933-115.2-137.387-203.093-156.587-93.013-20.48-188.159 1.28-260.692 59.733s-113.92 145.067-113.92 238.080c0 118.613 81.92 221.013 162.987 270.080 9.813 5.973 15.36 16.213 15.36 27.307v57.6c0.427 0 0.427 0 0.427 0.427z","M661.346 970.662c-2.987 0-5.973-0.427-8.96-1.28-92.16-26.453-189.013-26.453-281.175 0-17.067 4.693-34.56-5.12-39.68-22.187s5.12-34.56 22.187-39.68c103.255-29.44 212.909-29.44 316.162 0 17.067 4.693 26.88 22.613 22.187 39.68-3.84 14.507-16.64 23.467-30.72 23.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lamp-on"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":889,"id":238,"name":"lamp-on","prevSize":32,"code":60367},"setIdx":2,"setId":2,"iconIdx":663},{"icon":{"paths":["M556.779 828.591c-23.040 0-47.36-2.133-73.813-6.4l-200.107-31.573c-63.147-9.813-111.787-27.307-148.053-52.907-93.44-64.853-87.893-176.213-75.947-254.293l31.573-200.109c29.013-183.467 123.733-252.16 307.2-223.573l200.107 31.573c94.293 14.933 221.013 52.907 229.12 212.053 1.707 27.307 0 58.453-5.973 95.147l-31.147 200.109c-24.747 156.587-97.707 229.973-232.96 229.973zM321.259 117.335c-101.547 0-147.627 51.627-167.68 176.213l-31.573 200.109c-19.627 125.867 16.213 168.533 49.493 192 28.16 20.053 67.84 33.707 121.173 41.813l200.107 31.573c148.907 23.467 210.347-21.333 233.813-170.667l31.147-200.109c5.12-32 6.827-58.88 5.12-81.493v-0.427c-4.693-89.6-55.467-133.547-175.36-152.32l-199.68-31.147c-24.747-3.84-46.507-5.547-66.56-5.547z","M626.317 970.667c-36.267 0-77.227-7.68-124.587-23.467l-192.428-64c-109.653-36.271-168.96-88.324-186.88-164.271-2.987-12.8 2.133-26.453 13.227-33.707s25.6-7.253 36.267 0.427c28.16 20.053 67.413 33.707 120.747 41.813l200.108 31.578c148.907 23.467 210.347-21.338 233.813-170.671l31.147-200.105c5.12-32 6.827-58.88 5.12-81.493-0.427-11.093 5.12-22.187 14.933-28.587s22.187-6.827 32.427-1.28c114.347 61.013 144.64 158.718 95.147 308.051l-64 192.427c-30.293 90.453-69.973 145.924-125.44 173.658-26.88 13.227-56.32 19.627-89.6 19.627zM244.449 783.36c20.48 13.649 47.787 26.88 84.907 39.253l192.428 64c73.387 24.316 125.867 26.453 165.12 7.253 39.253-19.627 69.12-63.151 93.44-136.538l64-192.427c34.987-105.813 21.333-162.131-19.2-200.105-0.853 10.667-2.56 21.76-4.267 33.707l-31.147 200.105c-29.013 183.471-123.733 252.16-307.2 224.004l-200.108-31.573c-13.227-2.564-26.027-5.12-37.973-7.68z","M351.573 414.72c-58.453 0-106.24-47.787-106.24-106.24s47.787-106.24 106.24-106.24c58.453 0 106.24 47.787 106.24 106.24s-47.787 106.24-106.24 106.24zM351.573 266.666c-23.040 0-42.24 18.773-42.24 42.24s18.773 42.24 42.24 42.24c23.040 0 42.24-18.773 42.24-42.24s-19.2-42.24-42.24-42.24z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":890,"id":237,"name":"clipboard","prevSize":32,"code":60368},"setIdx":2,"setId":2,"iconIdx":664},{"icon":{"paths":["M518.848 495.787c-1.28 0-2.133 0-3.413 0-2.133-0.427-5.12-0.427-7.68 0-123.731-3.84-217.171-101.12-217.171-221.013 0-122.027 99.413-221.44 221.438-221.44 122.027 0 221.44 99.413 221.44 221.44-0.427 119.893-94.293 217.173-213.333 221.013-0.427 0-0.853 0-1.28 0zM512.021 117.333c-86.611 0-157.438 70.827-157.438 157.44 0 85.333 66.56 154.027 151.465 157.013 2.133-0.427 8.107-0.427 13.653 0 83.627-3.84 149.333-72.533 149.76-157.013 0-86.613-70.827-157.44-157.44-157.44z","M519.236 962.133c-83.627 0-167.68-21.333-231.253-64-59.307-39.253-91.733-93.013-91.733-151.467s32.427-112.64 91.733-152.32c128-84.907 335.36-84.907 462.506 0 58.88 39.253 91.733 93.013 91.733 151.467s-32.427 112.64-91.733 152.32c-64 42.667-147.627 64-231.253 64zM323.397 648.107c-40.96 27.307-63.147 62.293-63.147 98.987 0 36.267 22.613 71.253 63.147 98.133 106.24 71.253 285.44 71.253 391.68 0 40.96-27.307 63.147-62.293 63.147-98.987 0-36.267-22.613-71.253-63.147-98.133-106.24-70.827-285.44-70.827-391.68 0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["frame-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":891,"id":236,"name":"frame-1","prevSize":32,"code":60369},"setIdx":2,"setId":2,"iconIdx":665},{"icon":{"paths":["M512 970.662c-170.667 0-309.333-122.453-309.333-273.067v-157.867c0-17.493 14.507-32 32-32s32 14.507 32 32c0 111.787 105.387 196.267 245.333 196.267s245.333-84.48 245.333-196.267c0-17.493 14.507-32 32-32s32 14.507 32 32v157.867c0 150.613-138.667 273.067-309.333 273.067zM266.667 702.289c2.987 113.067 111.787 204.373 245.333 204.373s242.347-91.307 245.333-204.373c-55.467 60.16-143.36 97.707-245.333 97.707s-189.44-37.547-245.333-97.707z","M512 586.667c-117.76 0-223.574-52.907-275.2-138.24-22.187-36.267-34.133-78.507-34.133-122.027 0-73.387 32.853-142.507 92.16-194.56 58.027-50.773 135.253-78.507 217.173-78.507s158.72 27.733 217.173 78.080c59.307 52.48 92.16 121.6 92.16 194.987 0 43.52-11.947 85.333-34.133 122.027-51.627 85.333-157.44 138.24-275.2 138.24zM512 117.333c-66.56 0-128.853 22.187-175.36 63.147-45.227 39.253-69.974 91.307-69.974 145.92 0 32 8.533 61.867 24.746 88.747 40.533 66.56 125.014 107.52 220.587 107.52s180.053-41.387 220.587-107.52c16.64-26.88 24.747-56.747 24.747-88.747 0-54.613-24.747-106.667-70.4-146.773-46.507-40.107-108.373-62.293-174.933-62.293z","M512 800c-176.213 0-309.333-111.787-309.333-260.267v-213.333c0-150.613 138.667-273.067 309.333-273.067 81.92 0 158.72 27.733 217.173 78.080 59.307 52.48 92.16 121.6 92.16 194.987v213.333c0 148.48-133.12 260.267-309.333 260.267zM512 117.333c-135.253 0-245.333 93.867-245.333 209.067v213.333c0 111.787 105.387 196.267 245.333 196.267s245.333-84.48 245.333-196.267v-213.333c0-54.613-24.747-106.667-70.4-146.773-46.507-40.107-108.373-62.293-174.933-62.293z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["coin-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":892,"id":235,"name":"coin-1","prevSize":32,"code":59774},"setIdx":2,"setId":2,"iconIdx":666},{"icon":{"paths":["M256 384c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 970.667h-128c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v128c0 17.493-14.507 32-32 32s-32-14.507-32-32v-128c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 384c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M256 800c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M426.667 800c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M768 341.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M938.667 544h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M919.868 867.413c-23.893 41.387-68.693 69.12-119.893 69.12-76.373 0-123.307-76.8-123.307-76.8M679.654 729.173c23.893-41.813 68.693-69.547 120.32-69.547 92.587 0 138.667 76.8 138.667 76.8M938.641 650.667v85.333h-85.333M762.001 859.307h-85.333v79.36"],"attrs":[{},{},{},{},{},{},{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64}],"isMulticolor":false,"isMulticolor2":true,"grid":0,"tags":["driver-refresh"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{"s":0}]}},"attrs":[{},{},{},{},{},{},{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64}],"properties":{"order":893,"id":234,"name":"driver-refresh","prevSize":32,"code":59775},"setIdx":2,"setId":2,"iconIdx":667},{"icon":{"paths":["M460.783 942.929c-12.373 0-24.747-2.133-36.269-6.4-53.333-17.493-87.467-76.373-75.52-130.987l20.907-134.4c0.427-2.987 0.427-7.253-2.56-10.667-2.133-2.133-5.12-3.413-8.533-3.413h-170.667c-41.813 0-78.080-17.493-99.413-47.787-20.907-29.44-25.173-68.267-11.52-105.813l101.973-310.613c15.787-61.867 81.92-111.787 150.187-111.787h162.135c23.893 0 75.947 7.253 103.68 34.987l129.28 99.84-39.253 50.773-132.267-102.4c-10.667-10.667-37.547-19.2-61.44-19.2h-162.135c-38.4 0-79.787 30.72-88.32 65.28l-103.253 313.6c-6.827 18.773-5.547 35.84 3.413 48.213 9.387 13.227 26.453 20.907 47.36 20.907h170.667c22.187 0 42.667 9.387 56.747 25.6 14.509 16.64 20.909 38.827 17.495 61.867l-21.335 136.96c-5.12 23.893 11.093 50.773 34.135 58.453 20.48 7.68 47.787-3.413 57.173-17.067l174.933-260.267 52.907 35.84-174.933 260.267c-20.053 29.867-58.027 48.213-95.573 48.213z","M837.082 772.267h-42.667c-78.933 0-117.333-37.12-117.333-113.067v-418.133c0-75.947 38.4-113.067 117.333-113.067h42.667c78.933 0 117.333 37.12 117.333 113.067v418.133c0 75.947-38.4 113.067-117.333 113.067zM794.415 192c-46.507 0-53.333 11.093-53.333 49.067v418.133c0 37.973 6.827 49.067 53.333 49.067h42.667c46.507 0 53.333-11.093 53.333-49.067v-418.133c0-37.973-6.827-49.067-53.333-49.067h-42.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dislike"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":894,"id":233,"name":"dislike","prevSize":32,"code":60370},"setIdx":2,"setId":2,"iconIdx":668},{"icon":{"paths":["M756.907 970.658h-431.36c-13.653 0-25.6-8.533-30.293-20.907-4.693-12.8-0.853-26.884 9.387-35.418s19.626-19.622 26.453-31.569c13.653-21.76 20.481-46.507 20.481-71.68 0-76.373-62.293-138.667-138.667-138.667-31.573 0-61.44 10.662-86.613 30.716-9.387 7.68-22.614 8.964-33.707 3.844s-17.92-16.64-17.92-29.013v-186.453c0-106.241 86.186-192.428 192.426-192.428h489.814c106.24 0 192.427 86.187 192.427 192.428v61.44c0 17.493-14.507 32-32 32h-86.187c-14.933 0-28.587 5.547-38.4 15.787l-0.427 0.427c-11.947 11.52-17.493 27.302-16.213 43.516 2.56 28.16 29.44 50.773 60.16 50.773h81.067c17.493 0 32 14.507 32 32v50.773c0 106.24-86.187 192.431-192.427 192.431zM391.68 906.658h365.227c70.827 0 128.427-57.604 128.427-128.431v-18.773h-49.067c-64.427 0-119.040-47.787-124.16-109.227-3.413-34.987 9.387-69.542 34.987-94.716 22.187-22.613 52.053-34.987 84.053-34.987h54.187v-29.44c0-70.828-57.6-128.428-128.427-128.428h-489.814c-70.827 0-128.426 57.6-128.426 128.428v131.413c23.893-9.387 49.067-14.507 74.667-14.507 111.787 0 202.667 90.88 202.667 202.667 0 33.707-8.534 66.987-24.32 96z","M106.667 561.493c-17.493 0-32-14.507-32-32v-194.984c0-63.573 40.107-121.175 99.413-143.789l338.773-128c34.987-13.227 73.813-8.532 104.107 12.802 30.72 21.333 48.64 55.893 48.64 93.013v162.132c0 17.493-14.507 32-32 32s-32-14.507-32-32v-162.132c0-16.213-7.68-31.148-21.333-40.534s-29.867-11.52-45.227-5.547l-338.773 128c-34.56 13.227-58.027 46.935-58.027 84.055v194.984c0.427 17.92-14.080 32-31.574 32z","M836.288 759.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.76-22.187 51.627-34.56 83.627-34.56h88.747c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.48zM918.635 584.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.56 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M597.333 544h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 1013.333c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.24 17.92-24.32 34.133-40.533 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM213.333 672c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 25.173 42.667 69.547 67.413 118.613 67.413 33.707 0 66.133-12.373 90.88-34.56 11.094-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667z","M188.966 884.911c-8.107 0-16.213-2.987-22.613-9.387l-42.24-42.24c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.226 0l20.48 20.484 68.267-63.151c12.8-11.947 33.28-11.089 45.226 1.711s11.094 33.28-1.706 45.227l-90.88 84.049c-6.4 5.547-14.080 8.538-21.76 8.538z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["empty-wallet-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":895,"id":232,"name":"empty-wallet-tick","prevSize":32,"code":60371},"setIdx":2,"setId":2,"iconIdx":669},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v298.667c0 155.733-89.6 245.333-245.333 245.333zM298.667 181.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-298.667c0-122.027-59.307-181.333-181.333-181.333h-426.667z","M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M128 416h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c110.080 0 138.667-28.587 138.667-138.667v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 145.92-56.747 202.667-202.667 202.667z","M938.667 416h-42.667c-145.92 0-202.667-56.747-202.667-202.667v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 110.080 28.587 138.667 138.667 138.667h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M298.667 885.333c-17.493 0-32-14.507-32-32v-42.667c0-110.080-28.587-138.667-138.667-138.667h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c145.92 0 202.667 56.747 202.667 202.667v42.667c0 17.493-14.507 32-32 32z","M725.333 885.333c-17.493 0-32-14.507-32-32v-42.667c0-145.92 56.747-202.667 202.667-202.667h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-42.667c-110.080 0-138.667 28.587-138.667 138.667v42.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":896,"id":231,"name":"money-2","prevSize":32,"code":60372},"setIdx":2,"setId":2,"iconIdx":670},{"icon":{"paths":["M710.387 885.333c-0.427 0-1.28 0-1.707 0-17.493 0-32-14.507-31.573-32.427 0-17.493 14.507-31.573 32-31.573 0.427 0 1.28 0 1.707 0 48.64 0 95.147-17.92 130.987-51.2 66.133-58.027 70.827-140.8 52.907-199.253s-67.413-124.587-154.027-135.68c-14.080-1.707-25.173-12.373-27.733-26.453-17.067-101.973-72.107-172.373-154.88-197.973-86.187-26.453-185.599-0.427-247.892 64.853-60.587 63.574-74.667 151.893-39.68 249.6 5.973 16.64-2.56 34.987-19.2 40.96s-34.987-2.56-40.96-19.2c-43.093-119.893-23.467-234.666 53.76-315.306 78.933-82.347 204.372-115.2 313.172-81.493 99.413 30.72 169.813 112.64 194.987 226.133 87.040 19.627 156.587 85.333 184.32 176.213 30.293 98.987 2.56 200.533-71.253 265.387-48.64 43.52-110.507 67.413-174.933 67.413z","M237.657 885.333c-0.853 0-1.707 0-2.133 0-122.88-8.533-178.773-104.96-178.773-190.72s55.893-181.76 178.773-190.72c31.573-0.427 62.72 6.827 90.027 20.48 15.787 8.107 21.76 27.307 14.080 43.093-8.107 15.787-27.307 21.76-43.093 14.080-17.92-9.387-38.4-13.227-58.027-13.653-80.64 5.973-117.333 67.84-117.333 126.72s36.693 120.747 119.467 126.72c17.493 1.28 30.72 16.64 29.44 34.133-1.707 17.067-15.787 29.867-32.427 29.867z","M675.012 453.973c-11.52 0-23.040-6.4-28.587-17.92-8.107-15.788-1.707-34.988 14.507-43.095 26.027-13.227 55.467-20.48 84.48-20.907 16.213 0.853 32.427 13.653 32.427 31.573 0.427 17.493-13.653 32.428-31.573 32.428-19.627 0.427-39.253 5.12-57.173 14.080-4.267 2.987-9.387 3.84-14.080 3.84z","M340.060 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.855-12.373 45.228 0s12.373 32.853 0 45.227l-85.335 85.333c-5.973 6.4-14.080 9.387-22.613 9.387z","M510.729 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 6.4-14.080 9.387-22.613 9.387z","M510.729 799.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 6.4-14.080 9.387-22.613 9.387z","M340.060 799.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.855-12.373 45.228 0s12.373 32.853 0 45.227l-85.335 85.333c-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-drizzle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":897,"id":230,"name":"cloud-drizzle","prevSize":32,"code":59776},"setIdx":2,"setId":2,"iconIdx":671},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v298.667c0 155.733-89.6 245.333-245.333 245.333zM298.667 181.333c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-298.667c0-122.027-59.307-181.333-181.333-181.333h-426.667z","M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M810.667 330.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 757.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-3"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":898,"id":229,"name":"money-3","prevSize":32,"code":60373},"setIdx":2,"setId":2,"iconIdx":672},{"icon":{"paths":["M605.875 531.2h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M499.209 637.867c-17.493 0-32-14.507-32-32v-213.335c0-17.493 14.507-32 32-32s32 14.507 32 32v213.335c0 17.493-14.507 32-32 32z","M490.667 928c-241.067 0-437.333-196.267-437.333-437.333s196.267-437.333 437.333-437.333c241.067 0 437.333 196.267 437.333 437.333s-196.267 437.333-437.333 437.333zM490.667 117.333c-206.080 0-373.333 167.68-373.333 373.333s167.253 373.333 373.333 373.333c206.080 0 373.333-167.68 373.333-373.333s-167.253-373.333-373.333-373.333z","M938.684 970.662c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-zoom-in"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":899,"id":228,"name":"search-zoom-in","prevSize":32,"code":59777},"setIdx":2,"setId":2,"iconIdx":673},{"icon":{"paths":["M704 842.667h-384c-32 0-55.467-1.28-75.52-4.267-141.653-15.36-169.813-100.267-169.813-241.067v-170.667c0-140.8 28.16-225.707 171.093-241.493 18.773-2.56 42.24-3.84 74.24-3.84h384c32 0 55.467 1.28 75.52 4.267 142.080 15.787 169.813 100.267 169.813 241.067v170.667c0 140.8-28.16 225.707-171.093 241.493-18.773 2.56-42.24 3.84-74.24 3.84zM320 245.333c-29.013 0-49.493 1.28-66.133 3.413-86.613 9.813-115.2 36.693-115.2 177.92v170.667c0 141.227 28.587 168.107 113.92 177.92 17.92 2.56 38.4 3.413 67.413 3.413h384c29.013 0 49.493-1.28 66.133-3.413 86.613-9.387 115.2-36.693 115.2-177.92v-170.667c0-141.227-28.587-168.107-113.92-177.92-17.92-2.56-38.4-3.413-67.413-3.413h-384z","M832 117.333h-640c-17.493 0-32-14.507-32-32s14.507-32 32-32h640c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M853.333 970.667h-640c-17.493 0-32-14.507-32-32s14.507-32 32-32h640c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-vertical"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":900,"id":227,"name":"slider-vertical","prevSize":32,"code":60374},"setIdx":2,"setId":2,"iconIdx":674},{"icon":{"paths":["M466.381 970.667c-20.48 0-40.959-5.12-59.732-15.36-37.973-21.333-60.588-59.307-60.588-102.4v-228.267c0-21.76-14.081-53.76-27.308-70.4l-162.132-170.239c-26.88-26.88-47.787-73.814-47.787-108.374v-98.985c0-68.693 52.054-122.455 118.188-122.455h569.173c65.28 0 118.187 52.908 118.187 118.188v94.72c0 44.8-26.88 96.426-52.48 121.599-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227c15.787-15.787 33.707-51.199 33.707-76.372v-94.72c0-29.867-24.32-54.188-54.187-54.188h-569.173c-30.293 0-54.188 25.601-54.188 58.455v98.985c0 15.787 12.8 46.934 29.44 63.574l164.268 172.798c21.76 26.88 43.091 72.107 43.091 112.64v228.267c0 28.16 19.201 41.813 27.735 46.507 18.347 10.24 40.107 9.813 57.173-0.427l59.733-38.4c12.373-7.253 24.32-30.72 24.32-46.507 0-17.493 14.507-32 32-32s32 14.507 32 32c0 38.4-23.893 82.347-54.187 100.693l-59.307 38.4c-19.2 11.52-40.96 17.493-62.72 17.493z","M685.7 736.858c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.532 168.533-168.532c93.013 0 168.533 75.519 168.533 168.532s-75.52 168.533-168.533 168.533zM685.7 463.791c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M847.808 762.458c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-search"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":901,"id":226,"name":"filter-search","prevSize":32,"code":59778},"setIdx":2,"setId":2,"iconIdx":675},{"icon":{"paths":["M704 368.215c-17.493 0-32-14.507-32-32v-58.88c0-44.8-19.2-88.32-52.48-118.613-33.707-30.72-77.227-44.8-123.307-40.533-76.8 7.253-144.213 85.76-144.213 167.68v41.387c0 17.493-14.507 32-32 32s-32-14.507-32-32v-41.813c0-114.773 92.587-220.587 202.24-231.253 64-5.973 125.44 14.080 172.373 57.173 46.507 42.24 73.387 102.827 73.387 165.973v58.88c0 17.493-14.507 32-32 32z","M639.991 970.667h-255.999c-197.12 0-233.813-91.733-243.2-180.907l-32-255.573c-4.693-46.080-6.4-112.213 38.4-161.707 38.4-42.667 101.973-63.147 194.133-63.147h341.332c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 256.427c-9.387 89.173-46.080 180.907-243.2 180.907zM341.326 373.333c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 255.573c7.253 68.267 26.027 124.587 179.627 124.587h255.999c153.6 0 172.373-55.893 179.627-123.733l32-256.427c5.547-52.053-1.28-87.467-22.187-110.933-25.173-28.587-74.667-42.667-146.773-42.667h-341.332z","M657.929 561.062c-23.893 0-43.093-19.2-43.093-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.24 42.667z","M359.26 561.062c-23.893 0-43.093-19.2-43.093-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.24 42.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":902,"id":225,"name":"bag-2","prevSize":32,"code":60375},"setIdx":2,"setId":2,"iconIdx":676},{"icon":{"paths":["M724.894 414.292h-425.81c-17.493 0-32-14.507-32-32s14.507-32 32-32h425.81c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 414.305c-17.493 0-32-14.507-32-32v-71.68c0-17.493 14.507-32 32-32s32 14.507 32 32v71.68c0 17.493-14.507 32-32 32z","M298.667 745.382c-17.493 0-32-14.507-32-32s14.507-32 32-32c158.72 0 288-134.4 288-299.945 0-17.493 14.507-32 32-32s32 14.507 32 32c0 200.958-157.867 363.945-352 363.945z","M725.385 745.387c-84.053 0-162.133-41.813-219.307-118.187-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.68 44.8 6.4c45.227 59.733 104.96 92.587 168.533 92.587 17.493 0 32 14.507 32 32s-14.933 32-32.427 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["language-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":903,"id":224,"name":"language-circle","prevSize":32,"code":60376},"setIdx":2,"setId":2,"iconIdx":677},{"icon":{"paths":["M703.59 970.667h-383.572c-73.387 0-128.426-19.627-162.56-58.453s-47.36-95.147-38.4-168.107l38.4-320c11.093-94.293 34.987-178.773 201.387-178.773h307.199c165.973 0 189.867 84.48 201.387 178.773l38.4 320c8.533 72.96-4.267 129.707-38.4 168.107-35.413 38.827-90.027 58.453-163.84 58.453zM358.418 309.333c-122.88 0-128.853 48.64-137.813 122.027l-38.4 320c-6.4 54.187 1.28 93.867 23.040 118.187s60.16 36.693 114.773 36.693h383.572c54.613 0 93.013-12.373 114.773-36.693s29.44-64 23.040-118.187l-38.4-320c-8.96-73.814-14.507-122.027-137.813-122.027h-306.772z","M682.667 373.333c-17.493 0-32-14.507-32-32v-149.333c0-46.080-28.587-74.667-74.667-74.667h-128c-46.080 0-74.667 28.587-74.667 74.667v149.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-149.333c0-81.493 57.173-138.667 138.667-138.667h128c81.493 0 138.667 57.173 138.667 138.667v149.333c0 17.493-14.507 32-32 32z","M870.827 758.613h-529.493c-17.493 0-32-14.507-32-32s14.507-32 32-32h529.493c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shopping-bag"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":904,"id":223,"name":"shopping-bag","prevSize":32,"code":60377},"setIdx":2,"setId":2,"iconIdx":678},{"icon":{"paths":["M638.707 970.667h-255.999c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h255.999c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.56 330.667-330.667 330.667zM382.708 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h255.999c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-255.999z","M488.542 770.556c-10.24 0-34.987-3.84-49.493-40.96l-48.639-122.88c-6.827-17.493-31.147-33.707-49.493-33.707l-256 0.853c-17.493 0-32-14.080-32-32 0-17.493 14.080-32 32-32l256.427-0.853c44.8 0 92.585 32.427 109.225 74.24l38.827 98.133 87.893-222.72c13.227-33.28 36.693-37.974 46.507-38.827 9.813-0.427 33.707 1.707 50.347 33.28l44.373 84.053c7.68 14.507 30.72 28.587 47.36 28.587h173.227c17.493 0 32 14.507 32 32s-14.507 32-32 32h-173.227c-40.533 0-84.907-26.88-103.68-62.72l-33.28-63.147-89.6 225.707c-15.787 36.693-40.96 40.96-50.773 40.96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["health"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":905,"id":222,"name":"health","prevSize":32,"code":60378},"setIdx":2,"setId":2,"iconIdx":679},{"icon":{"paths":["M554.667 970.667h-341.333c-103.253 0-160-56.747-160-160v-341.333c0-103.253 56.747-160 160-160h213.333c17.493 0 32 14.507 32 32v469.333c0 67.413 28.587 96 96 96 17.493 0 32 14.507 32 32s-14.507 32-32 32zM213.333 373.333c-67.413 0-96 28.587-96 96v341.333c0 67.413 28.587 96 96 96h204.8c-15.36-25.173-23.466-57.173-23.466-96v-437.333h-181.333z","M426.667 373.333h-213.333c-17.493 0-32-14.507-32-32v-85.333c0-64.853 52.48-117.333 117.333-117.333h132.693c9.813 0 19.2 4.692 25.173 12.372 5.973 8.107 8.107 18.348 5.547 27.734s-3.413 20.053-3.413 34.56v128c0 17.493-14.507 32-32 32zM245.333 309.333h149.333v-96c0-3.84 0-7.253 0-10.667h-96c-29.44 0-53.333 23.893-53.333 53.333v53.333z","M597.333 586.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M768 586.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M768 970.667h-170.667c-17.493 0-32-14.507-32-32v-170.667c0-40.96 33.707-74.667 74.667-74.667h85.333c40.96 0 74.667 33.707 74.667 74.667v170.667c0 17.493-14.507 32-32 32zM629.333 906.667h106.667v-138.667c0-5.973-4.693-10.667-10.667-10.667h-85.333c-5.973 0-10.667 4.693-10.667 10.667v138.667z","M256 757.333c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M810.667 970.667h-256c-103.253 0-160-56.747-160-160v-597.333c0-103.253 56.747-160 160-160h256c103.253 0 160 56.747 160 160v597.333c0 103.253-56.747 160-160 160zM554.667 117.333c-67.413 0-96 28.587-96 96v597.333c0 67.413 28.587 96 96 96h256c67.413 0 96-28.587 96-96v-597.333c0-67.413-28.587-96-96-96h-256z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["buildings"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":906,"id":221,"name":"buildings","prevSize":32,"code":60379},"setIdx":2,"setId":2,"iconIdx":680},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-49.92-36.693-98.133-77.653-143.787-122.453-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-102.4-87.040-151.893-22.187-52.907-33.28-104.107-33.28-152.32 0-33.28 5.973-64.853 17.493-94.293 11.947-30.293 31.147-58.453 57.173-82.773 32.853-32.427 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.907 23.893 40.533 45.653 60.16 65.707 25.173 24.747 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.787 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.627 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-1.28-2.56-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-9.387-3.84-13.227-7.68-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.48-17.493-42.667-37.973-69.547-64.427-20.907-21.333-41.813-43.947-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.12-12.8c-2.56-9.813-3.413-15.36-3.413-21.333 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.987-6.827-7.68-14.507-13.653-22.613l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-2.133-0.427-3.84 0-4.693 0.853z","M853.342 407.467c-17.493 0-32-14.507-32-32v-172.8h-172.8c-17.493 0-32-14.507-32-32s14.507-32 32-32h204.8c17.493 0 32 14.507 32 32v204.8c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-outgoing"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":907,"id":220,"name":"call-outgoing","prevSize":32,"code":60380},"setIdx":2,"setId":2,"iconIdx":681},{"icon":{"paths":["M511.974 567.462c-5.547 0-11.093-1.28-16.213-4.267l-376.748-218.027c-15.36-8.96-20.481-28.588-11.521-43.948s28.588-20.481 43.521-11.521l360.531 208.642 358.404-207.361c15.36-8.96 34.987-3.412 43.52 11.521 8.96 15.36 3.413 34.985-11.52 43.945l-374.187 216.748c-4.693 2.56-10.24 4.267-15.787 4.267z","M512 954.018c-17.493 0-32-14.507-32-32v-386.987c0-17.493 14.507-32 32-32s32 14.507 32 32v386.987c0 17.493-14.507 32-32 32z","M511.953 970.662c-37.547 0-75.093-8.107-104.107-24.747l-227.84-126.293c-61.867-34.133-110.506-116.48-110.506-187.307v-241.493c0-70.827 48.64-152.745 110.506-187.305l227.84-126.294c58.027-32.853 149.333-32.853 207.787 0l227.84 126.294c61.867 34.133 110.507 116.478 110.507 187.305v241.493c0 4.267 0 7.68-0.853 11.947-2.133 11.093-10.24 20.48-20.907 23.893-10.667 3.84-22.613 1.28-31.573-5.973-49.067-42.667-125.013-44.373-176.64-2.987-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 3.413 5.973 6.827 10.667 10.667 15.36 6.4 7.253 8.96 17.067 7.253 26.453s-7.68 17.493-16.213 22.187l-78.080 43.093c-29.013 17.067-66.133 25.173-103.68 25.173zM511.953 117.33c-26.453 0-53.333 5.547-72.533 16.214l-227.84 126.294c-41.387 22.613-77.226 84.051-77.226 130.985v241.493c0 46.933 36.266 108.373 77.226 130.987l227.84 126.293c38.827 21.76 106.667 21.76 145.493 0l47.787-26.453c-15.787-28.587-24.32-61.867-24.32-96 0-62.293 27.733-119.893 75.947-158.293 58.027-46.507 141.227-56.32 206.080-28.587v-190.292c0-46.933-36.267-108.374-77.227-130.987l-227.84-126.294c-20.053-9.813-46.933-15.36-73.387-15.36z","M810.667 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.24 17.92-24.32 34.133-40.533 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM810.667 629.333c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 25.173 42.667 69.547 67.413 118.613 67.413 33.707 0 66.133-12.373 90.88-34.56 11.093-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667z","M856.337 844.378c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M765.060 845.649c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":908,"id":219,"name":"box-remove","prevSize":32,"code":60381},"setIdx":2,"setId":2,"iconIdx":682},{"icon":{"paths":["M768 458.667c-17.493 0-32-14.507-32-32v-85.333c0-134.4-37.973-224-224-224s-224 89.6-224 224v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-123.733 29.867-288 288-288s288 164.267 288 288v85.333c0 17.493-14.507 32-32 32z","M512 821.333c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 608c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M725.333 970.667h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-85.333c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v85.333c0 188.16-57.173 245.333-245.333 245.333zM298.667 458.667c-152.747 0-181.333 29.013-181.333 181.333v85.333c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-85.333c0-152.32-28.587-181.333-181.333-181.333h-426.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":909,"id":218,"name":"lock","prevSize":32,"code":60382},"setIdx":2,"setId":2,"iconIdx":683},{"icon":{"paths":["M512 544c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM512 117.333c-99.84 0-181.333 81.493-181.333 181.333s81.493 181.333 181.333 181.333c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.333-181.333-181.333z","M145.5 970.667c-17.493 0-32-14.507-32-32 0-182.187 178.773-330.667 398.508-330.667 43.093 0 85.329 5.547 126.289 17.067 17.067 4.693 26.884 22.187 22.191 39.253s-22.191 26.88-39.253 22.187c-34.987-9.813-71.68-14.507-109.227-14.507-184.322 0-334.508 119.467-334.508 266.667 0 17.493-14.507 32-32 32z","M768 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-62.293 27.733-119.893 75.947-158.293 35.84-28.587 81.067-44.373 126.72-44.373 111.787 0 202.667 90.88 202.667 202.667 0 37.12-10.24 73.387-29.44 104.533-10.667 17.92-24.32 34.133-40.533 47.787-35.413 32.427-82.773 50.347-132.693 50.347zM768 629.333c-31.573 0-61.44 10.667-86.613 30.72-32.853 26.027-52.053 65.707-52.053 107.947 0 25.173 6.827 49.92 20.053 71.253 24.747 41.813 70.4 67.413 118.613 67.413 33.707 0 66.133-12.373 90.88-34.56 11.093-9.387 20.48-20.48 27.307-32.427 13.653-21.76 20.48-46.507 20.48-71.68 0-76.373-62.293-138.667-138.667-138.667z","M743.633 842.244c-8.107 0-16.213-2.987-22.613-9.387l-42.24-42.24c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l20.48 20.484 68.267-63.151c12.8-11.947 33.28-11.089 45.227 1.711s11.093 33.28-1.707 45.227l-90.88 84.049c-6.4 5.547-14.080 8.538-21.76 8.538z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":910,"id":217,"name":"user-tick","prevSize":32,"code":60383},"setIdx":2,"setId":2,"iconIdx":684},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 757.333c-17.493 0-32-14.507-32-32v-426.667c0-17.493 14.507-32 32-32 135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM544 333.654v357.12c84.907-14.933 149.333-89.6 149.333-178.347s-64.427-163.84-149.333-178.773z","M512 757.333c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c17.493 0 32 14.507 32 32v426.667c0 17.493-14.507 32-32 32zM480 333.654c-84.907 14.933-149.333 89.6-149.333 178.346s64.427 163.413 149.333 178.347v-356.693z","M512 970.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M512 330.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mask-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":911,"id":216,"name":"mask-2","prevSize":32,"code":60384},"setIdx":2,"setId":2,"iconIdx":685},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M938.667 458.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-512c0-17.493 14.507-32 32-32s32 14.507 32 32v512c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-7"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":912,"id":215,"name":"grid-7","prevSize":32,"code":60385},"setIdx":2,"setId":2,"iconIdx":686},{"icon":{"paths":["M626.773 970.671c-18.773 0-38.4-5.547-58.453-16.213l-167.68-93.44c-8.107-4.267-25.601-4.267-33.708 0l-167.253 93.44c-36.267 20.053-73.387 21.76-101.547 5.12-28.587-16.64-44.8-49.92-44.8-90.88v-484.692c0-90.88 73.813-164.692 164.693-164.692h331.947c90.88 0 164.693 73.812 164.693 164.692v484.692c0 40.96-16.213 74.24-44.8 90.88-12.8 7.253-27.307 11.093-43.093 11.093zM384 793.604c17.067 0 33.707 3.84 47.787 11.52l167.68 93.44c15.36 8.533 29.44 10.667 37.973 5.547 8.107-4.693 13.227-18.347 13.227-35.84v-484.693c0-55.467-45.227-100.692-100.693-100.692h-331.947c-55.467 0-100.693 45.226-100.693 100.692v484.693c0 17.493 5.12 31.147 13.227 35.84s22.614 2.56 37.974-5.973l167.68-93.44c13.654-7.253 30.72-11.093 47.787-11.093z","M882.773 805.111c-18.773 0-38.4-5.551-58.453-16.218l-157.44-87.893c-10.24-5.547-16.213-16.209-16.213-27.729v-289.282c0-55.467-45.227-100.693-100.693-100.693h-208.64c-17.493 0-32-14.507-32-32v-32.854c0-90.88 73.813-164.692 164.693-164.692h331.947c90.88 0 164.693 73.812 164.693 164.692v484.695c0 40.96-16.213 74.236-44.8 90.876-12.8 7.253-27.307 11.098-43.093 11.098zM714.667 654.067l140.8 78.933c15.36 8.533 29.44 10.671 37.973 5.551 8.107-4.693 13.227-18.347 13.227-35.84v-484.696c0-55.467-45.227-100.692-100.693-100.692h-331.947c-55.467 0-100.693 45.226-100.693 100.692v0.854h176.64c90.88 0 164.693 73.813 164.693 164.693v270.505z","M469.333 544h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-minus"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":913,"id":214,"name":"save-minus","prevSize":32,"code":59779},"setIdx":2,"setId":2,"iconIdx":687},{"icon":{"paths":["M390.85 495.787c-1.28 0-2.133 0-3.413 0-2.133-0.427-5.12-0.427-7.68 0-123.733-3.84-217.173-101.12-217.173-221.013 0-122.027 99.413-221.44 221.44-221.44 122.025 0 221.438 99.413 221.438 221.44-0.427 119.893-94.293 217.173-213.331 221.013-0.427 0-0.853 0-1.28 0zM384.023 117.333c-86.613 0-157.44 70.827-157.44 157.44 0 85.333 66.56 154.027 151.467 157.013 2.56-0.427 8.107-0.427 13.653 0 83.625-3.84 149.331-72.533 149.758-157.013 0-86.613-70.827-157.44-157.438-157.44z","M705.724 501.333c-1.28 0-2.56 0-3.84-0.427-17.493 1.707-35.413-10.667-37.12-28.16s8.96-33.28 26.453-35.413c5.12-0.427 10.667-0.427 15.36-0.427 62.293-3.413 110.933-54.613 110.933-117.333 0-64.853-52.48-117.333-117.333-117.333-17.493 0.427-32-14.080-32-31.573s14.507-32 32-32c99.84 0 181.333 81.493 181.333 181.333 0 98.133-76.8 177.493-174.507 181.333-0.427 0-0.853 0-1.28 0z","M391.237 962.133c-83.627 0-167.68-21.333-231.253-64-59.307-39.253-91.733-93.013-91.733-151.467s32.427-112.64 91.733-152.32c128-84.907 335.36-84.907 462.506 0 58.88 39.253 91.733 93.013 91.733 151.467s-32.427 112.64-91.733 152.32c-64 42.667-147.627 64-231.253 64zM195.397 648.107c-40.96 27.307-63.147 62.293-63.147 98.987 0 36.267 22.613 71.253 63.147 98.133 106.24 71.253 285.44 71.253 391.68 0 40.96-27.307 63.147-62.293 63.147-98.987 0-36.267-22.613-71.253-63.147-98.133-106.24-70.827-285.44-70.827-391.68 0z","M782.515 885.333c-14.933 0-28.16-10.24-31.147-25.6-3.413-17.493 7.68-34.133 24.747-37.973 26.88-5.547 51.627-16.213 70.827-31.147 24.32-18.347 37.547-41.387 37.547-65.707s-13.227-47.36-37.12-65.28c-18.773-14.507-42.24-24.747-69.973-31.147-17.067-3.84-28.16-20.907-24.32-38.4 3.84-17.067 20.907-28.16 38.4-24.32 36.693 8.107 68.693 22.613 94.72 42.667 39.68 29.867 62.293 72.107 62.293 116.48s-23.040 86.613-62.72 116.907c-26.453 20.48-59.733 35.413-96.427 42.667-2.56 0.853-4.693 0.853-6.827 0.853z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-2user"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":914,"id":213,"name":"profile-2user","prevSize":32,"code":59780},"setIdx":2,"setId":2,"iconIdx":688},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 10.24 0 20.907-0.853 30.72-1.28 12.8-10.24 23.893-22.613 27.733s-26.027-0.427-34.133-10.667c-30.293-37.12-75.093-58.453-123.733-58.453-36.267 0-71.68 12.373-99.84 34.987-38.4 30.293-60.16 75.52-60.16 125.013 0 28.587 8.107 57.173 23.040 82.347 9.387 15.787 21.76 29.867 35.84 40.96 10.24 8.107 14.507 21.76 10.667 34.133s-14.507 21.333-27.733 22.613c-9.813 1.28-20.48 1.28-31.147 1.28zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h214.613c-0.427-0.427-0.853-1.28-1.28-1.707-21.333-34.987-32.427-75.093-32.427-115.627 0-69.12 30.72-132.693 84.48-174.933 71.68-58.027 180.48-63.147 256.853-16.213v-214.187c0-196.693-69.973-266.667-266.667-266.667h-255.573z","M916.459 335.354h-808.959c-17.493 0-32-14.507-32-32s14.507-32 32-32h808.959c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M363.5 329.38c-17.493 0-32-14.507-32-32v-207.36c0-17.493 14.507-32 32-32s32 14.507 32 32v207.36c0 17.493-14.507 32-32 32z","M660.501 310.182c-17.493 0-32-14.507-32-32v-188.162c0-17.493 14.507-32 32-32s32 14.507 32 32v188.162c0 17.92-14.080 32-32 32z","M789.333 1013.333c-50.347 0-98.987-17.067-138.24-48.213-0.853-0.853-2.133-1.28-2.987-2.133-20.053-16.213-37.12-35.413-50.347-58.027-21.333-34.987-32.427-75.093-32.427-115.627 0-69.12 30.72-132.693 84.48-174.933 39.253-31.573 88.747-49.067 139.52-49.067 67.84 0 130.987 29.867 173.227 82.347 32.427 39.253 50.773 89.6 50.773 141.653 0 40.533-11.093 80.213-32.427 115.627-12.373 20.48-27.307 37.973-44.373 52.907-40.533 35.84-92.587 55.467-147.2 55.467zM685.653 910.933c1.28 0.853 2.133 1.707 3.413 2.56 28.16 23.467 63.573 36.267 100.267 36.267 39.253 0 75.52-13.653 104.96-39.68 12.373-10.667 23.040-23.467 32-37.547 14.933-25.173 23.040-53.76 23.040-82.347 0-37.12-12.8-72.96-36.267-101.12-30.293-37.547-75.52-58.88-123.733-58.88-36.267 0-71.68 12.373-99.84 34.987-38.4 30.293-60.16 75.52-60.16 125.013 0 28.587 8.107 57.173 23.040 82.347 8.96 14.080 20.053 27.307 33.28 38.4z","M761.587 868.681c-8.107 0-16.213-2.987-22.613-9.387l-47.36-47.36c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l25.6 25.604 79.787-73.813c12.8-11.947 33.28-11.093 45.227 1.707s11.093 33.28-1.707 45.227l-102.4 94.716c-5.973 5.547-13.653 8.538-21.76 8.538z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["video-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":915,"id":212,"name":"video-tick","prevSize":32,"code":59781},"setIdx":2,"setId":2,"iconIdx":689},{"icon":{"paths":["M511.987 971.093c-63.147 0-126.72-23.893-176.214-71.253-125.867-121.173-264.96-314.453-212.48-544.427 47.36-208.64 229.547-302.080 388.694-302.080 0 0 0 0 0.427 0 159.147 0 341.333 93.44 388.693 302.507 52.053 229.973-87.040 422.827-212.907 544-49.493 47.36-113.067 71.253-176.213 71.253zM511.987 117.333c-124.16 0-283.734 66.133-325.974 252.16-46.080 200.96 80.213 374.187 194.56 483.84 73.814 71.253 189.44 71.253 263.254 0 113.92-109.653 240.213-282.88 194.987-483.84-42.667-186.027-202.667-252.16-326.827-252.16z","M458.645 586.662c-8.107 0-16.213-2.987-22.613-9.387l-64.002-64c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l41.389 41.387 148.053-148.052c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-170.667 170.665c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["location-tick"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":916,"id":211,"name":"location-tick","prevSize":32,"code":59782},"setIdx":2,"setId":2,"iconIdx":690},{"icon":{"paths":["M520.525 741.542c-29.867 0-60.16-11.52-82.773-34.133-22.188-22.187-34.561-51.627-34.561-82.773s12.373-61.013 34.561-82.773l60.156-60.16c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-60.156 60.16c-10.24 10.24-15.787 23.467-15.787 37.547s5.547 27.733 15.787 37.547c20.907 20.907 54.613 20.907 75.52 0l94.72-94.72c54.187-54.187 54.187-142.078 0-196.265s-142.080-54.187-196.267 0l-103.256 103.252c-21.76 21.76-33.705 50.347-33.705 80.64s11.945 59.307 33.705 80.64c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.226 0c-33.707-33.707-52.052-78.507-52.052-126.293s18.345-92.587 52.052-126.293l103.255-103.252c78.934-78.933 207.788-78.933 286.721 0s78.933 207.786 0 286.719l-94.72 94.72c-23.040 23.467-52.907 34.987-83.2 34.987z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["attach-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":917,"id":210,"name":"attach-circle","prevSize":32,"code":59783},"setIdx":2,"setId":2,"iconIdx":691},{"icon":{"paths":["M512 693.333c-111.787 0-202.667-90.88-202.667-202.667v-234.667c0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667v234.667c0 111.787-90.88 202.667-202.667 202.667zM512 117.333c-76.373 0-138.667 62.293-138.667 138.667v234.667c0 76.373 62.293 138.667 138.667 138.667s138.667-62.293 138.667-138.667v-234.667c0-76.373-62.293-138.667-138.667-138.667z","M511.983 842.662c-197.546 0-358.4-160.853-358.4-358.4v-72.533c0-17.493 14.507-32 32-32s32 14.507 32 32v72.533c0 162.133 132.267 294.4 294.4 294.4s294.4-132.267 294.4-294.4v-72.533c0-17.493 14.507-32 32-32s32 14.507 32 32v72.533c0 197.547-160.853 358.4-358.4 358.4z","M571.302 306.339c-3.413 0-7.253-0.427-11.093-1.707-31.147-11.52-65.28-11.52-96.427 0-16.64 5.973-34.987-2.56-40.961-19.2s2.56-34.987 19.201-40.96c45.227-16.213 95.147-16.213 140.373 0 16.64 5.973 25.173 24.32 19.2 40.96-5.12 12.8-17.493 20.907-30.293 20.907z","M546.138 396.792c-2.987 0-5.547-0.427-8.533-1.28-17.067-4.693-34.56-4.693-51.627 0s-34.56-5.547-39.253-22.613c-4.693-16.64 5.547-34.133 22.613-38.827 27.733-7.68 57.6-7.68 85.333 0 17.067 4.693 27.307 22.187 22.613 39.253-3.84 14.080-17.067 23.467-31.147 23.467z","M512 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":918,"id":209,"name":"microphone-2","prevSize":32,"code":60386},"setIdx":2,"setId":2,"iconIdx":692},{"icon":{"paths":["M720.166 864c-45.227 0-89.173-13.227-126.72-38.4-29.44-17.92-55.040-44.373-73.813-75.52-22.187-36.267-34.133-78.080-34.133-120.747 0-129.28 105.387-234.667 234.667-234.667 17.92 0 35.413 2.134 52.053 5.974 105.813 23.467 182.613 119.466 182.613 228.693 0 43.093-11.52 84.907-33.707 121.173-41.813 69.973-119.040 113.493-200.96 113.493zM720.166 458.667c-94.293 0-170.667 76.373-170.667 170.667 0 31.147 8.533 61.44 24.747 87.893 13.653 22.613 32 41.387 53.333 54.613 28.16 18.773 59.733 28.16 92.587 28.16 59.733 0 115.627-31.573 146.347-82.773 16.213-26.453 24.32-56.747 24.32-87.893 0-79.36-55.893-149.333-133.12-166.4-12.373-2.987-24.747-4.267-37.547-4.267z","M691.149 711.258c-8.107 0-16.218-2.987-22.618-9.387l-49.916-49.92c-12.373-12.373-12.373-32.853 0-45.227 12.369-12.373 32.849-12.373 45.222 0l28.16 28.16 85.76-78.933c13.227-11.947 33.28-11.093 45.227 1.707s11.098 33.28-1.702 45.227l-108.373 99.84c-5.973 5.547-14.080 8.533-21.76 8.533z","M466.381 970.667c-20.48 0-40.961-5.12-59.308-15.36-37.973-21.333-60.586-59.733-60.586-102.827v-228.267c0-21.76-14.081-53.76-27.735-70.4l-162.132-170.24c-26.88-27.733-47.787-74.239-47.787-108.372v-99.414c0-68.693 52.054-122.453 118.188-122.453h569.173c65.28 0 118.187 52.906 118.187 118.186v94.72c0 44.8-26.453 95.147-52.48 121.6l-76.8 67.84c-7.68 6.827-18.347 9.387-28.587 7.253-11.52-2.987-23.893-4.267-36.693-4.267-94.293 0-170.667 76.373-170.667 170.667 0 31.147 8.533 61.44 24.747 87.893 13.653 22.613 32 41.387 53.333 54.613 9.387 5.973 15.36 16.213 15.36 27.307v14.507c0 33.707-20.48 81.067-54.613 101.12l-58.88 37.973c-18.773 11.947-40.96 17.92-62.72 17.92zM227.448 117.333c-30.293 0-54.188 25.6-54.188 58.453v99.414c0 15.36 12.8 46.506 29.867 63.573l164.266 172.8c21.76 26.88 43.521 72.107 43.521 112.64v228.267c0 28.16 19.627 42.24 27.733 46.933 18.347 10.24 40.107 9.813 56.747-0.427l59.733-38.4c11.52-6.827 23.040-28.587 23.893-43.947-23.467-17.493-43.947-40.107-59.307-65.707-22.187-36.267-34.133-78.080-34.133-120.747 0-129.28 105.387-234.667 234.667-234.667 11.947 0 23.893 0.853 34.987 2.56l63.147-55.893c14.507-14.933 32.427-50.346 32.427-75.52v-94.72c0-29.867-24.32-54.186-54.187-54.186l-569.173-0.427z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-tick"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":919,"id":208,"name":"filter-tick","prevSize":32,"code":59784},"setIdx":2,"setId":2,"iconIdx":693},{"icon":{"paths":["M810.667 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c31.147 0 62.293 2.987 92.587 9.387 17.493 3.413 28.587 20.48 24.747 37.973-3.413 17.493-20.48 28.587-37.547 24.747-26.027-5.547-52.907-8.107-79.787-8.107-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667 0-26.453-2.56-52.907-7.68-78.507-3.413-17.493 7.68-34.133 25.173-37.547 17.493-3.84 34.133 7.68 37.547 25.173 5.973 29.867 8.96 60.587 8.96 91.307 0 252.587-205.653 458.24-458.667 458.24z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":920,"id":207,"name":"notification-circle","prevSize":32,"code":60387},"setIdx":2,"setId":2,"iconIdx":694},{"icon":{"paths":["M704 885.333h-384c-32 0-55.467-1.28-75.52-4.267-141.653-15.36-169.813-100.267-169.813-241.067v-256c0-140.8 28.16-225.707 171.093-241.493 18.773-2.56 42.24-3.84 74.24-3.84h384c32 0 55.467 1.28 75.52 4.267 141.653 15.36 169.813 100.267 169.813 241.067v256c0 140.8-28.16 225.707-171.093 241.493-18.773 2.56-42.24 3.84-74.24 3.84zM320 202.667c-29.013 0-49.493 1.28-66.133 3.413-86.613 9.813-115.2 36.693-115.2 177.92v256c0 141.227 28.587 168.107 113.92 177.92 17.92 2.56 38.4 3.413 67.413 3.413h384c29.013 0 49.493-1.28 66.133-3.413 86.613-9.387 115.2-36.693 115.2-177.92v-256c0-141.227-28.587-168.107-113.92-177.92-17.92-2.56-38.4-3.413-67.413-3.413h-384z","M725.333 458.667h-149.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h149.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M430.916 469.333c-23.466 0-42.666-19.2-42.666-42.667s18.773-42.667 42.666-42.667h0.427c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-43.093 42.667z","M302.917 469.333c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M725.325 693.333h-425.815c-17.493 0-32.427-14.507-32.427-32s14.080-32 31.573-32h426.668c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["keyboard"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":921,"id":206,"name":"keyboard","prevSize":32,"code":59785},"setIdx":2,"setId":2,"iconIdx":695},{"icon":{"paths":["M603.699 970.671h-182.612c-43.52 0-83.627-18.347-109.227-50.773-22.613-28.16-30.72-64-23.040-98.133l29.44-131.413c3.413-14.507 16.213-24.747 31.147-24.747h325.972c14.933 0 27.733 10.24 31.147 24.747l29.867 131.413c8.107 36.693 0.427 72.107-21.76 99.84-24.747 31.147-65.28 49.067-110.933 49.067zM375.008 729.604l-23.893 106.667c-3.413 15.36 0.427 30.72 10.667 43.947 13.227 16.64 35.413 26.453 59.307 26.453h183.038c26.027 0 48.213-8.96 60.587-24.747 10.24-12.373 13.227-28.587 9.387-45.653l-23.893-106.667h-275.198z","M349.422 729.6c-7.68 0-15.36-2.56-21.333-8.107l-125.44-111.36c-82.347-67.84-89.173-133.547-21.333-219.733l221.44-280.747c28.588-36.267 67.841-56.32 109.655-56.32 42.24 0 81.067 20.053 109.653 56.32l221.44 280.747c66.987 84.907 61.013 146.773-21.333 219.733l-125.44 111.36c-13.227 11.52-33.707 10.667-45.227-2.56s-10.667-33.28 2.56-45.227l125.44-111.36c56.32-49.92 58.88-74.667 13.653-132.267l-221.013-280.747c-32.427-41.387-86.613-41.387-119.040 0l-221.441 280.747c-46.507 58.88-44.373 84.907 12.373 131.413l126.293 112.213c13.227 11.52 14.507 32 2.56 45.227-5.973 6.827-14.507 10.667-23.467 10.667z","M512.418 329.383c-17.493 0-32-14.507-32-32v-183.467c0-17.493 14.507-32 32-32s32 14.507 32 32v183.467c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["path-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":922,"id":205,"name":"path-2","prevSize":32,"code":60388},"setIdx":2,"setId":2,"iconIdx":696},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M661.333 821.333c-64.853 0-117.333-52.48-117.333-117.333v-384c0-64.853 52.48-117.333 117.333-117.333s117.333 52.48 117.333 117.333v384c0 64.853-52.48 117.333-117.333 117.333zM661.333 266.667c-29.44 0-53.333 23.893-53.333 53.333v384c0 29.44 23.893 53.333 53.333 53.333s53.333-23.893 53.333-53.333v-384c0-29.44-23.893-53.333-53.333-53.333z","M362.667 821.333c-64.853 0-117.333-52.48-117.333-117.333v-149.333c0-64.853 52.48-117.333 117.333-117.333s117.333 52.48 117.333 117.333v149.333c0 64.853-52.48 117.333-117.333 117.333zM362.667 501.333c-29.44 0-53.333 23.893-53.333 53.333v149.333c0 29.44 23.893 53.333 53.333 53.333s53.333-23.893 53.333-53.333v-149.333c0-29.44-23.893-53.333-53.333-53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":923,"id":204,"name":"chart-2","prevSize":32,"code":60389},"setIdx":2,"setId":2,"iconIdx":697},{"icon":{"paths":["M780.412 970.667h-536.745c-145.067 0-152.747-79.787-159.147-144.213l-17.067-213.76c-3.84-41.387 8.107-82.773 34.56-116.053 31.573-38.4 76.373-59.307 124.587-59.307h570.879c47.36 0 92.16 20.907 122.453 57.173l7.253 9.813c23.040 31.573 33.28 69.973 29.44 108.8l-17.067 212.907c-6.4 64.853-14.080 144.64-159.147 144.64zM226.6 501.333c-28.587 0-55.893 12.8-73.813 34.987l-2.987 2.987c-13.653 17.493-20.907 42.24-18.347 67.84l17.067 213.76c5.973 62.293 8.533 85.76 95.147 85.76h536.745c87.040 0 89.173-23.467 95.147-86.187l17.067-213.76c2.56-25.173-4.693-50.347-21.333-69.973l-4.267-5.12c-19.2-20.053-43.52-30.293-69.973-30.293h-570.452z","M874.667 521.387c-17.493 0-32-14.507-32-32v-76.372c0-127.147-22.187-149.333-149.333-149.333h-108.8c-48.213 0-64.853-17.067-83.2-41.387l-55.040-72.96c-18.773-24.747-23.040-30.72-61.44-30.72h-54.187c-127.147 0-149.333 22.187-149.333 149.333v219.732c0 17.493-14.507 32-32 32s-32-14.507-32-32v-219.732c0-163.413 49.92-213.333 213.333-213.333h54.613c65.707 0 86.187 21.333 112.64 56.32l54.613 72.533c11.52 15.36 12.373 16.213 32.427 16.213h108.8c163.413 0 213.333 49.92 213.333 213.333v76.372c-0.427 17.493-14.933 32-32.427 32z","M621.641 757.333h-219.307c-17.493 0-32-14.507-32-32s14.507-32 32-32h219.307c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-open"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":924,"id":203,"name":"folder-open","prevSize":32,"code":59786},"setIdx":2,"setId":2,"iconIdx":698},{"icon":{"paths":["M469.333 885.333c-229.547 0-416-186.453-416-416s186.453-416 416-416c17.493 0 32 14.507 32 32s-14.507 32-32 32c-194.133 0-352 157.867-352 352s157.867 352 352 352c194.133 0 352-157.867 352-352 0-17.493 14.507-32 32-32s32 14.507 32 32c0 229.547-186.453 416-416 416z","M853.333 245.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M725.333 373.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M860.164 972.373c-3.413 0-6.827-0.427-9.813-0.853-20.053-2.56-56.32-16.213-76.8-77.227-10.667-32-6.827-64 10.667-88.32s46.933-37.973 80.64-37.973c43.52 0 77.653 16.64 93.013 46.080s11.093 66.987-13.227 103.253c-30.293 45.653-63.147 55.040-84.48 55.040zM834.564 874.24c7.253 22.187 17.493 33.28 24.32 34.133s19.627-7.253 32.853-26.453c12.373-18.347 13.227-31.573 10.24-37.547s-14.933-12.373-37.12-12.373c-13.227 0-23.040 4.267-28.587 11.52-5.12 7.253-5.973 18.347-1.707 30.72z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-status"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":925,"id":202,"name":"search-status","prevSize":32,"code":59787},"setIdx":2,"setId":2,"iconIdx":699},{"icon":{"paths":["M665.212 555.093c-138.24 0-250.878-112.64-250.878-250.88s112.638-250.88 250.878-250.88c138.24 0 250.88 112.64 250.88 250.88s-112.64 250.88-250.88 250.88zM665.212 117.333c-102.827 0-186.88 83.627-186.88 186.88s83.627 186.88 186.88 186.88c103.253 0 186.88-83.627 186.88-186.88s-84.053-186.88-186.88-186.88z","M271.413 861.44c-90.027 0-163.413-73.387-163.413-163.413s73.386-163.413 163.413-163.413c90.027 0 163.416 73.387 163.416 163.413s-73.389 163.413-163.416 163.413zM271.413 598.613c-54.613 0-99.413 44.373-99.413 99.413 0 54.613 44.373 99.413 99.413 99.413 54.613 0 99.414-44.373 99.414-99.413 0-54.613-44.8-99.413-99.414-99.413z","M709.141 970.662c-78.080 0-141.227-63.573-141.227-141.227 0-78.080 63.573-141.227 141.227-141.227s141.227 63.573 141.227 141.227c0 77.653-63.573 141.227-141.227 141.227zM709.141 751.782c-42.667 0-77.227 34.56-77.227 77.227s34.56 77.227 77.227 77.227c42.667 0 77.227-34.56 77.227-77.227 0-42.24-34.56-77.227-77.227-77.227z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bubble"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":926,"id":201,"name":"bubble","prevSize":32,"code":59788},"setIdx":2,"setId":2,"iconIdx":700},{"icon":{"paths":["M512 906.667h-213.333c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v128c0 17.493-14.507 32-32 32s-32-14.507-32-32v-128c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M511.949 549.12c-35.84 0-72.107-11.093-99.84-33.707l-133.547-106.668c-13.653-11.093-16.213-31.146-5.12-44.8s31.146-15.787 44.8-5.12l133.547 106.668c32.427 26.027 87.467 26.027 119.893 0l133.547-106.668c13.653-11.093 33.707-8.96 44.8 5.12 11.093 13.653 8.96 34.133-5.12 44.8l-133.547 106.668c-27.307 22.613-63.573 33.707-99.413 33.707z","M776.533 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM776.533 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M938.645 970.662c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms-search"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":927,"id":200,"name":"sms-search","prevSize":32,"code":60390},"setIdx":2,"setId":2,"iconIdx":701},{"icon":{"paths":["M682.658 952.316c-14.507 0-28.587-4.262-40.96-12.369l-181.76-121.178h-80.641c-9.813 0-19.201-4.689-25.175-12.369-5.973-8.107-8.105-18.351-5.545-27.738 2.56-10.24 3.84-20.48 3.84-31.573 0-34.133-12.8-66.982-35.84-92.582-26.027-29.44-63.147-46.084-102.827-46.084-37.973 0-73.388 14.933-99.414 41.813-8.107 8.533-20.48 11.947-31.573 8.533s-20.053-12.373-22.613-23.893c-4.267-18.773-6.4-39.253-6.4-61.44v-255.998c0-146.773 98.56-245.333 245.333-245.333h426.668c146.773 0 245.333 98.56 245.333 245.333v255.998c0 71.253-23.467 132.693-68.267 177.493-37.547 37.547-87.467 60.164-145.067 66.138v60.582c0 27.733-15.364 52.907-39.684 66.133-11.52 5.547-23.462 8.533-35.409 8.533zM415.99 754.342h53.335c6.4 0 12.373 1.707 17.92 5.547l189.867 126.724c4.267 2.987 8.533 1.702 10.667 0.422s5.973-3.84 5.973-9.813v-90.88c0-17.493 14.507-32 32-32 54.187 0 99.84-17.062 131.84-49.062 32.427-32.427 49.493-78.084 49.493-132.271v-255.999c0-110.080-71.253-181.333-181.333-181.333h-426.668c-110.080 0-181.333 71.253-181.333 181.333v250.879c29.013-15.787 61.867-23.893 96-23.893 58.027 0 113.066 24.751 150.613 67.418 33.28 37.12 52.054 85.329 52.054 135.249-0.427 2.56-0.427 5.12-0.427 7.68z","M213.333 949.333c-50.347 0-98.134-18.773-135.254-52.48-14.933-12.8-28.16-28.587-38.4-46.080-18.773-30.72-29.013-66.987-29.013-104.107 0-53.333 20.48-103.253 57.173-141.227 38.4-39.68 90.027-61.44 145.493-61.44 58.027 0 113.067 24.747 150.613 67.413 33.28 37.12 52.053 85.333 52.053 135.253 0 16.213-2.133 32.427-6.4 47.787-4.267 19.2-12.374 39.253-23.468 56.747-35.413 60.587-101.973 98.133-172.8 98.133zM213.333 608c-37.973 0-73.386 14.933-99.413 41.813-25.173 26.027-39.254 60.16-39.254 96.853 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.786 22.613 26.026 31.573 25.6 23.467 58.454 36.267 92.587 36.267 49.067 0 93.44-25.173 118.613-66.987 7.68-11.947 12.8-25.173 15.786-38.827 2.987-11.093 4.267-21.76 4.267-32.853 0-34.133-12.8-66.987-35.84-92.587-25.6-29.867-63.147-46.507-102.827-46.507z","M276.906 777.813h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M213.333 843.093c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z","M661.333 480h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":928,"id":199,"name":"message-add","prevSize":32,"code":60391},"setIdx":2,"setId":2,"iconIdx":702},{"icon":{"paths":["M512 586.667c-17.493 0-32-14.507-32-32v-224c0-17.493 14.507-32 32-32s32 14.507 32 32v224c0 17.493-14.507 32-32 32z","M512 736c-11.52 0-22.187-4.267-30.293-12.373-3.84-4.267-6.827-8.96-9.387-14.080-2.133-5.12-2.987-10.667-2.987-16.213 0-11.093 4.693-22.187 12.373-30.293 15.787-15.787 44.8-15.787 60.587 0 7.68 8.107 12.373 19.2 12.373 30.293 0 5.547-1.28 11.093-3.413 16.213s-5.12 9.813-8.96 14.080c-8.107 8.107-18.773 12.373-30.293 12.373z","M512.009 970.671c-28.587 0-57.6-7.253-83.2-22.187l-253.441-146.347c-51.2-29.867-83.2-84.907-83.2-144.213v-291.84c0-59.307 32-114.347 83.2-144.213l253.441-146.346c51.2-29.867 114.773-29.867 166.4 0l253.44 146.346c51.2 29.867 83.2 84.907 83.2 144.213v291.84c0 59.307-32 114.347-83.2 144.213l-253.44 146.347c-25.6 14.933-54.613 22.187-83.2 22.187zM512.009 117.338c-17.493 0-35.413 4.693-51.2 13.653l-253.441 146.347c-31.573 18.347-51.2 52.054-51.2 88.747v291.84c0 36.267 19.627 70.4 51.2 88.747l253.441 146.347c31.573 18.347 70.827 18.347 101.973 0l253.44-146.347c31.573-18.347 51.2-52.053 51.2-88.747v-291.84c0-36.267-19.627-70.4-51.2-88.747l-253.44-146.347c-15.36-8.96-33.28-13.653-50.773-13.653z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["warning-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":929,"id":198,"name":"warning-2","prevSize":32,"code":59789},"setIdx":2,"setId":2,"iconIdx":703},{"icon":{"paths":["M853.333 386.987h-682.667c-17.493 0-32-14.507-32-32v-184.32c0-64.853 52.48-117.333 117.333-117.333h512c64.853 0 117.333 52.48 117.333 117.333v184.32c0 17.493-14.507 32-32 32zM202.667 322.987h618.667v-152.32c0-29.44-23.893-53.333-53.333-53.333h-512c-29.44 0-53.333 23.893-53.333 53.333v152.32z","M533.342 970.671h-42.667c-64.852 0-117.332-52.48-117.332-117.333v-89.6c0-19.2-10.24-37.12-27.307-46.507l-126.292-71.253c-50.347-28.16-81.495-81.493-81.495-139.52v-151.895c0-17.493 14.507-32 32-32h682.665c17.493 0 32 14.507 32 32v151.895c0 57.6-31.142 110.933-81.489 139.52l-126.298 71.253c-16.64 9.387-27.307 27.307-27.307 46.507v89.6c0.853 64.853-51.627 117.333-116.48 117.333zM202.677 386.99v119.895c0 34.56 18.774 66.56 48.641 83.627l126.292 71.253c36.693 20.907 59.732 59.733 59.732 101.973v89.6c0 29.44 23.893 53.333 53.333 53.333h42.667c29.44 0 53.333-23.893 53.333-53.333v-89.6c0-42.24 23.044-81.493 59.738-101.973l126.289-71.253c30.293-17.067 48.64-49.067 48.64-83.627v-119.895h-618.665z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brush-3"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":930,"id":197,"name":"brush-3","prevSize":32,"code":60392},"setIdx":2,"setId":2,"iconIdx":704},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 693.333c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v256c0 17.493-14.507 32-32 32z","M639.979 522.662c-8.107 0-16.213-2.987-22.613-9.387l-105.387-105.385-105.389 105.385c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l128.002-127.998c12.373-12.373 32.853-12.373 45.227 0l128 127.998c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":931,"id":196,"name":"arrow-up-1","prevSize":32,"code":60393},"setIdx":2,"setId":2,"iconIdx":705},{"icon":{"paths":["M511.983 821.333c-43.52 0-83.627-19.627-110.082-54.187-10.667-14.080-8.106-34.133 5.974-44.8s34.135-8.107 44.801 5.973c14.080 18.773 35.84 29.013 59.307 29.013 40.96 0 74.667-33.707 74.667-74.667 0-16.64-5.12-32.427-15.36-45.227-10.667-14.080-8.107-34.133 5.973-44.8s34.133-8.107 44.8 5.973c18.773 24.32 28.587 53.333 28.587 84.053 0 76.373-62.293 138.667-138.667 138.667z","M725.333 970.667h-426.667c-15.787 0-30.72-0.427-44.8-1.28-17.493-0.853-31.147-16.213-30.293-33.707s15.787-30.293 33.707-30.293c12.8 0.853 26.453 0.853 40.96 0.853h426.667c152.32 0 181.333-29.013 181.333-181.333v-85.333c0-149.76-31.573-174.080-140.373-180.48-12.8-0.853-26.453-0.853-40.96-0.853h-426.24c-152.32 0-181.333 29.013-181.333 181.333v85.333c0 74.24 8.533 118.187 28.16 142.080 11.093 13.653 8.96 34.133-5.12 44.8-13.653 11.093-33.707 8.96-44.8-5.12-29.867-36.267-42.24-89.173-42.24-181.333v-85.333c0-188.16 57.173-245.333 245.333-245.333h426.667c15.787 0 30.72 0.427 44.373 1.28 168.96 9.387 200.96 93.013 200.96 244.053v85.333c0 188.16-57.173 245.333-245.333 245.333z","M256 458.667c-17.493 0-32-14.507-32-32v-85.333c0-123.733 29.867-288 288-288 173.653 0 263.68 56.747 283.307 178.773 2.987 17.493-8.96 33.707-26.453 36.693s-33.707-8.96-36.693-26.453c-10.667-64.853-44.373-125.013-220.16-125.013-186.027 0-224 89.6-224 224v85.333c0 17.493-14.507 32-32 32z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":932,"id":195,"name":"lock-slash","prevSize":32,"code":60394},"setIdx":2,"setId":2,"iconIdx":706},{"icon":{"paths":["M409.6 885.333c-187.307 0-270.933-83.627-270.933-270.933v-204.8c0-187.307 83.627-270.933 270.933-270.933h204.8c187.307 0 270.933 83.627 270.933 270.933 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-152.747-54.187-206.933-206.933-206.933h-204.8c-152.747 0-206.933 54.187-206.933 206.933v204.8c0 152.747 54.187 206.933 206.933 206.933 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M340.916 729.6c-6.827 0-14.080-2.133-20.053-6.827-37.12-29.44-54.613-76.373-54.613-146.773v-128c0-123.733 57.6-181.333 181.332-181.333h128c70.4 0 116.907 17.493 146.773 54.613 11.093 13.653 8.533 34.133-5.12 44.8-13.653 11.093-34.133 8.96-44.8-5.12-10.24-13.227-31.573-30.293-96.427-30.293h-128c-88.745 0-117.332 28.587-117.332 117.333v128c0 64.853 17.493 86.187 30.293 96.427 13.653 11.093 16.213 31.147 5.12 44.8-6.4 8.107-15.787 12.373-25.173 12.373z","M341.75 202.667c-17.92 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M682.667 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M938.667 373.333h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M341.75 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M170.667 373.333h-85.333c-17.493 0-32-14.080-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M170.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M170.667 714.667h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M712.964 825.169c-55.040 0-99.84-44.8-99.84-99.84s44.8-99.84 99.84-99.84c55.040 0 99.84 44.8 99.84 99.84-0.427 55.040-44.8 99.84-99.84 99.84zM712.964 689.489c-19.627 0-35.84 16.213-35.84 35.84s16.213 35.84 35.84 35.84c19.627 0 35.84-16.213 35.84-35.84-0.427-19.627-16.213-35.84-35.84-35.84z","M785.084 970.662c-23.893 0-47.36-12.373-60.16-34.56l-2.987-4.693c-4.693-8.107-8.533-10.24-9.387-10.667-0.427 0-4.693 2.56-9.387 10.667l-2.56 4.267c-19.627 33.707-62.72 44.8-95.573 25.173l-38.4-22.187c-17.493-9.813-29.867-26.027-34.987-45.653-5.12-19.2-2.56-39.68 7.253-56.747 4.693-8.107 4.693-12.8 4.267-13.653-0.427-0.427-4.267-2.56-13.653-2.56-41.387 0-75.093-33.707-75.093-74.667v-39.68c0-41.387 33.707-74.667 74.667-74.667 9.387 0 13.227-2.56 14.080-2.987 0-0.427 0-5.12-4.693-13.227-9.813-17.493-12.8-37.547-7.253-56.747 5.12-19.2 17.493-35.413 34.987-45.653l38.827-22.613c32.427-19.2 75.52-8.107 94.72 25.173l2.56 4.693c4.693 8.107 8.533 10.24 9.387 10.667 0.427 0 4.693-2.56 9.387-10.667l2.56-4.267c20.053-33.707 62.72-44.8 95.573-25.173l39.68 21.76c17.493 9.813 29.867 26.027 34.987 45.653 5.12 19.2 2.56 39.68-7.253 56.747-4.693 8.107-4.693 12.8-4.267 13.653 0.427 0.427 4.267 2.56 13.653 2.56 41.387 0 75.093 33.707 75.093 74.667v39.68c0 41.387-33.707 74.667-74.667 74.667-9.387 0-13.227 2.56-14.080 2.987 0 0.427 0 5.12 4.693 13.227 9.813 17.493 12.8 37.547 7.253 56.747-5.12 19.2-17.493 35.413-34.987 45.653l-38.827 22.613c-11.52 6.4-23.467 9.813-35.413 9.813zM712.977 856.742c25.6 0 49.067 15.36 64.853 42.667l2.56 4.693c1.28 2.133 4.693 3.413 7.253 1.707l39.253-22.613c3.413-1.707 4.693-5.12 5.12-6.827s0.853-4.693-0.853-8.107c-15.787-26.88-17.067-55.040-4.267-77.227s37.973-34.987 69.12-34.987c5.973 0 11.093-5.12 11.093-10.667v-39.68c0-5.973-5.12-10.667-10.667-10.667-31.147 0-56.747-12.8-69.12-34.987-12.8-22.187-11.093-50.347 4.267-77.227 2.133-3.413 1.707-6.827 0.853-8.107-0.427-1.707-1.707-4.693-5.12-6.827l-38.827-22.613c-2.987-1.707-6.4-0.427-8.107 2.133l-2.133 3.84c-15.787 27.307-39.253 42.667-64.853 42.667s-49.067-15.36-64.853-42.667l-2.56-4.267c-1.28-2.56-5.12-3.413-7.253-2.133l-39.253 22.613c-3.413 1.707-4.693 5.12-5.12 6.827s-0.853 4.693 0.853 8.107c15.787 26.88 17.067 55.040 4.267 77.227s-37.973 34.987-69.12 34.987c-5.973 0-11.093 5.12-11.093 10.667v39.68c0 5.973 5.12 10.667 10.667 10.667 31.147 0 56.747 12.8 69.12 34.987 12.8 22.187 11.093 50.347-4.267 77.227-1.707 3.413-1.28 6.4-0.853 8.107s1.707 4.693 5.12 6.827l38.827 22.613c2.987 1.707 6.4 0.427 8.107-2.133l2.133-4.267c15.36-26.88 39.253-42.24 64.853-42.24z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cpu-setting"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":933,"id":194,"name":"cpu-setting","prevSize":32,"code":59790},"setIdx":2,"setId":2,"iconIdx":707},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M874.667 419.833h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v362.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 181.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-362.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M362.667 618.667c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-14.080-8.96c-3.84-4.267-6.828-8.96-8.961-14.080s-3.413-10.667-3.413-16.213c0-11.093 4.694-22.187 12.374-30.293 4.267-3.84 8.96-6.827 14.080-8.96 7.68-3.413 16.214-4.267 24.747-2.56 2.56 0.427 5.12 1.28 7.68 2.56 2.56 0.853 5.12 2.133 7.68 3.84 2.133 1.707 4.266 3.413 6.4 5.12 1.707 2.133 3.84 4.267 5.12 6.4 1.707 2.56 2.988 5.12 3.841 7.68 1.28 2.56 2.133 5.12 2.56 7.68 0.427 2.987 0.853 5.547 0.853 8.533 0 11.093-4.694 22.187-12.374 30.293-8.107 7.68-19.2 12.373-30.293 12.373z","M512 618.662c-11.093 0-22.187-4.693-30.293-12.373-1.707-2.133-3.413-4.267-5.12-6.4-1.707-2.56-2.987-5.12-3.84-7.68-1.28-2.56-2.133-5.12-2.56-7.68-0.427-2.987-0.853-5.547-0.853-8.533 0-5.547 1.28-11.093 3.413-16.213s5.12-9.813 8.96-14.080c11.947-11.947 31.147-15.787 46.507-8.96 5.547 2.133 9.813 5.12 14.080 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 2.987-0.427 5.547-0.853 8.533-0.427 2.56-1.28 5.12-2.56 7.68-0.853 2.56-2.133 5.12-3.84 7.68-1.707 2.133-3.413 4.267-5.12 6.4-4.267 3.84-8.533 6.827-14.080 8.96-5.12 2.133-10.667 3.413-16.213 3.413z","M362.667 767.996c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-14.080-8.96c-3.84-4.267-6.828-8.533-8.961-14.080-2.133-5.12-3.413-10.667-3.413-16.213 0-11.093 4.694-22.187 12.374-30.293 4.267-3.84 8.96-6.827 14.080-8.96 15.787-6.827 34.56-2.987 46.506 8.96 1.707 2.133 3.84 4.267 5.12 6.4 1.707 2.56 2.988 5.12 3.841 7.68 1.28 2.56 2.133 5.12 2.56 8.107 0.427 2.56 0.853 5.547 0.853 8.107 0 11.093-4.694 22.187-12.374 30.293-8.107 7.68-19.2 12.373-30.293 12.373z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":934,"id":193,"name":"calendar-2","prevSize":32,"code":60395},"setIdx":2,"setId":2,"iconIdx":708},{"icon":{"paths":["M512 970.675c-253.013 0-458.667-205.653-458.667-458.667 0-80.213 20.906-159.144 61.013-228.691 8.96-15.36 28.161-20.481 43.521-11.948l369.92 212.479c15.36 8.96 20.48 28.16 11.947 43.52-8.96 15.36-28.16 20.484-43.52 11.951l-341.333-195.843c-24.747 52.48-37.547 109.652-37.547 168.105 0 217.6 177.067 394.667 394.667 394.667s394.667-177.067 394.667-394.667c0-217.599-177.067-394.665-394.667-394.665-86.187 0-168.106 27.307-236.8 78.934-14.080 10.667-34.134 7.68-44.801-6.4s-7.68-34.133 6.4-44.8c79.787-59.733 174.934-91.735 275.2-91.735 253.013 0 458.667 205.653 458.667 458.665 0 253.013-205.653 459.093-458.667 459.093z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["radar"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":935,"id":192,"name":"radar","prevSize":32,"code":60396},"setIdx":2,"setId":2,"iconIdx":709},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M255.977 799.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l512.002-511.998c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-512.002 511.998c-6.4 6.4-14.507 9.387-22.613 9.387z","M768 458.667c-17.493 0-32-14.507-32-32v-138.667h-138.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z","M426.667 800h-170.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v138.667h138.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M767.979 799.996c-8.107 0-16.213-2.987-22.613-9.387l-512.002-511.998c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l512.002 511.998c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M256 458.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-138.667v138.667c0 17.493-14.507 32-32 32z","M768 800h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h138.667v-138.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":936,"id":191,"name":"maximize","prevSize":32,"code":60397},"setIdx":2,"setId":2,"iconIdx":710},{"icon":{"paths":["M512.017 971.089c-46.507 0-92.587-13.653-128.854-40.533l-183.467-136.96c-48.64-36.267-86.613-112.213-86.613-172.373v-317.438c0-65.707 48.213-135.68 110.080-158.72l212.907-79.787c42.24-15.787 108.8-15.787 151.040 0l212.907 79.787c61.867 23.040 110.080 93.013 110.080 158.72v317.012c0 60.587-37.973 136.107-86.613 172.373l-183.467 136.96c-35.413 27.307-81.493 40.96-128 40.96zM458.684 125.437l-212.907 79.787c-36.267 13.653-68.267 59.733-68.267 98.987v317.012c0 40.533 28.587 97.28 60.587 121.173l183.467 136.96c49.067 36.693 131.84 36.693 181.334 0l183.467-136.96c32.427-24.32 60.587-80.64 60.587-121.173v-317.438c0-38.827-32-84.907-68.267-98.987l-212.907-79.787c-29.013-10.24-78.507-10.24-107.093 0.427z","M454.835 607.151c-8.107 0-16.213-2.987-22.613-9.387l-68.692-68.693c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l46.079 46.080 160.853-160.852c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-183.467 183.466c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-tick"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":937,"id":190,"name":"shield-tick","prevSize":32,"code":60398},"setIdx":2,"setId":2,"iconIdx":711},{"icon":{"paths":["M555.106 960c-25.6 0-65.28-12.373-103.253-74.667l-75.095-121.6c-7.253-11.947-29.44-23.467-43.094-22.613l-142.508 7.253c-85.333 4.267-115.198-31.147-125.865-52.48s-20.055-66.987 35.412-131.84l84.482-98.133c8.533-10.24 13.225-32.427 9.385-45.226l-43.094-137.812c-21.76-69.12 2.56-106.24 18.774-122.453s53.76-39.68 122.88-16.64l125.867 41.387c11.522 3.84 32.855 0.427 42.668-6.4l131.413-94.72c60.16-43.52 103.676-32 123.729-21.333s54.187 39.681 52.907 113.921l-2.987 161.705c-0.427 11.947 9.387 31.574 18.773 38.827l105.818 80.212c57.6 43.947 59.733 87.893 55.893 110.507s-20.907 63.573-90.027 84.907l-137.818 43.093c-12.8 3.84-28.587 20.48-32 33.28l-32.849 125.44c-21.76 82.347-64.427 100.693-88.32 104.107-2.987 0.853-6.827 1.28-11.093 1.28zM334.943 677.12c36.693 0 77.227 22.187 95.999 52.907l75.093 121.6c21.333 34.987 40.533 45.653 50.773 43.947 9.813-1.28 25.178-17.493 35.844-56.747l32.849-125.44c8.96-34.133 40.96-67.84 74.667-78.080l137.818-43.093c26.453-8.107 43.516-21.333 46.076-34.987s-9.387-31.573-31.573-48.64l-105.809-80.213c-26.027-19.625-44.8-58.879-44.373-91.306l2.987-161.707c0.427-28.587-6.4-49.919-18.773-56.319s-33.28-0.001-56.747 16.639l-131.418 94.72c-26.027 18.773-69.116 25.601-100.264 15.361l-125.867-41.387c-26.453-8.533-47.786-8.108-57.599 1.706s-10.669 31.147-2.562 57.6l43.094 137.814c10.667 33.705 1.28 79.359-21.76 105.812l-84.479 98.133c-26.88 31.147-31.147 52.907-26.453 61.867 4.267 8.96 24.748 18.773 65.281 16.64l142.505-7.253c1.707 0.427 3.412 0.427 4.692 0.427z","M934.839 970.675c-8.107 0-16.213-2.987-22.613-9.387l-129.28-129.28c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l129.28 129.28c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["magic-star"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":938,"id":189,"name":"magic-star","prevSize":32,"code":60399},"setIdx":2,"setId":2,"iconIdx":712},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M365.643 683.524c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l279.468-279.464c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.226l-279.468 279.465c-6.4 6.4-14.507 9.387-22.613 9.387z","M383.147 474.022c-46.507 0-84.48-37.973-84.48-84.48s37.974-84.48 84.48-84.48c46.506 0 84.48 37.974 84.48 84.48s-37.973 84.48-84.48 84.48zM383.147 369.489c-11.093 0-20.48 8.96-20.48 20.48s8.96 20.479 20.48 20.479c11.52 0 20.479-8.959 20.479-20.479s-9.386-20.48-20.479-20.48z","M662.144 718.502c-46.507 0-84.476-37.973-84.476-84.48s37.969-84.48 84.476-84.48c46.507 0 84.484 37.973 84.484 84.48s-37.978 84.48-84.484 84.48zM662.144 613.969c-11.093 0-20.476 8.96-20.476 20.48s8.956 20.48 20.476 20.48c11.52 0 20.484-8.96 20.484-20.48s-8.964-20.48-20.484-20.48z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["percentage-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":939,"id":188,"name":"percentage-square","prevSize":32,"code":60400},"setIdx":2,"setId":2,"iconIdx":713},{"icon":{"paths":["M512 970.667h-128c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v128c0 17.493-14.507 32-32 32s-32-14.507-32-32v-128c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M698.419 971.52c-0.427 0-0.427 0-0.853 0-43.093-0.427-78.933-26.88-91.733-68.267l-78.933-253.867c-10.667-34.987-1.707-72.533 24.32-97.707 25.6-25.173 62.72-34.56 96.853-23.893l254.293 78.933c40.96 12.8 67.84 48.64 68.267 91.733 0.427 42.667-25.6 78.933-66.56 92.587l-69.547 23.467c-9.813 3.413-17.493 10.667-20.48 20.48l-23.893 69.973c-13.227 40.533-49.067 66.56-91.733 66.56zM619.059 587.52c-11.52 0-19.2 6.4-22.613 9.387-8.96 8.96-11.947 21.333-8.107 33.707l78.933 253.867c6.827 21.76 24.747 22.613 31.573 23.040 5.973 0 24.32-1.707 31.147-22.613l23.893-69.973c9.387-28.587 32.427-51.2 61.013-61.013l69.547-23.467c21.333-6.827 22.613-25.6 22.613-31.147s-1.707-24.32-23.040-31.147l-254.293-78.933c-4.267-1.28-7.68-1.707-10.667-1.707z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":940,"id":187,"name":"mouse-square","prevSize":32,"code":59791},"setIdx":2,"setId":2,"iconIdx":714},{"icon":{"paths":["M849.067 970.667h-674.133c-81.92 0-121.6-41.813-121.6-127.147v-172.373c0-85.76 39.68-127.147 121.6-127.147h674.133c81.92 0 121.6 41.813 121.6 127.147v172.373c0 85.333-39.68 127.147-121.6 127.147zM174.933 608c-43.093 0-57.6 8.96-57.6 63.147v172.373c0 54.187 14.507 63.147 57.6 63.147h674.133c43.093 0 57.6-8.96 57.6-63.147v-172.373c0-54.187-14.507-63.147-57.6-63.147h-674.133z","M550.4 480h-375.467c-81.92 0-121.6-41.813-121.6-127.147v-172.373c0-85.76 39.68-127.147 121.6-127.147h375.467c81.92 0 121.6 41.813 121.6 127.147v172.373c0 85.333-39.68 127.147-121.6 127.147zM174.933 117.333c-43.093 0-57.6 8.96-57.6 63.147v172.373c0 54.187 14.507 63.147 57.6 63.147h375.467c43.093 0 57.6-8.96 57.6-63.147v-172.373c0-54.187-14.507-63.147-57.6-63.147h-375.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fatrows"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":941,"id":186,"name":"fatrows","prevSize":32,"code":60401},"setIdx":2,"setId":2,"iconIdx":715},{"icon":{"paths":["M512 970.658c-26.88 0-52.053-10.236-70.827-29.436l-64.853-64.853c-5.12-5.12-18.774-10.667-25.6-10.667h-92.16c-55.467 0-100.267-44.804-100.267-100.271v-92.156c0-6.827-5.547-20.48-10.667-25.6l-64.853-64.853c-18.773-18.773-29.44-43.951-29.44-70.831s10.24-52.053 29.44-70.827l64.853-64.854c5.12-5.12 10.667-18.772 10.667-25.599v-92.156c0-55.467 44.8-100.271 100.267-100.271h92.16c6.827 0 20.48-5.547 25.6-10.667l64.853-64.854c37.547-37.547 104.107-37.547 141.653 0l64.853 64.854c5.12 5.12 18.773 10.667 25.6 10.667h92.16c55.467 0 100.267 44.804 100.267 100.271v92.156c0 6.827 5.547 20.479 10.667 25.599l64.853 64.854c18.773 18.773 29.44 43.947 29.44 70.827s-10.24 52.058-29.44 70.831l-64.853 64.853c-5.12 5.12-10.667 18.773-10.667 25.6v92.156c0 55.467-44.8 100.271-100.267 100.271h-92.16c-6.827 0-20.48 5.547-25.6 10.667l-64.853 64.853c-18.773 19.2-43.947 29.436-70.827 29.436zM192.853 602.445c17.067 17.067 29.44 46.938 29.44 70.831v92.156c0 20.053 16.214 36.271 36.267 36.271h92.16c23.893 0 53.76 12.369 70.827 29.436l64.853 64.853c13.653 13.653 37.547 13.653 51.2 0l64.853-64.853c17.067-17.067 46.933-29.436 70.827-29.436h92.16c20.053 0 36.267-16.218 36.267-36.271v-92.156c0-23.893 12.373-53.764 29.44-70.831l64.853-64.853c6.827-6.827 10.667-15.787 10.667-25.6s-3.84-18.769-10.667-25.596l-64.853-64.855c-17.067-17.067-29.44-46.935-29.44-70.828v-92.156c0-20.053-16.213-36.271-36.267-36.271h-92.16c-23.893 0-53.76-12.371-70.827-29.437l-64.853-64.854c-13.653-13.653-37.547-13.653-51.2 0l-64.853 64.854c-17.066 17.067-46.933 29.437-70.827 29.437h-92.16c-20.053 0-36.267 16.218-36.267 36.271v92.156c0 23.893-12.373 53.762-29.44 70.828l-64.853 64.855c-6.827 6.827-10.667 15.782-10.667 25.596s3.84 18.773 10.667 25.6l64.853 64.853z","M640.009 682.667c-23.893 0-43.093-19.2-43.093-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.24 42.667z","M384.427 426.667c-23.893 0-43.094-19.2-43.094-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.24 42.667z","M383.977 672c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l256.002-255.998c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-256.002 256c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discount-shape"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":942,"id":185,"name":"discount-shape","prevSize":32,"code":60402},"setIdx":2,"setId":2,"iconIdx":716},{"icon":{"paths":["M512.034 828.591c-65.707 0-131.414-25.173-181.334-75.093-100.267-100.267-100.267-262.827 0-363.091 48.64-48.64 113.068-75.094 181.334-75.094s133.12 26.88 181.333 75.094c100.267 100.265 100.267 262.825 0 363.091-49.92 49.92-115.627 75.093-181.333 75.093zM512.034 379.74c-51.2 0-99.841 20.051-136.108 56.318-75.093 75.093-75.093 197.12 0 272.213s197.121 74.667 272.214 0c75.093-75.093 75.093-197.12 0-272.213-36.267-36.267-84.907-56.318-136.107-56.318z","M444.143 671.991c-8.107 0-16.64-2.982-22.613-9.382-12.373-12.373-12.373-32.853 0-45.653l67.84-67.844c12.373-12.373 32.853-12.373 45.653 0 12.373 12.373 12.373 32.858 0 45.658l-67.84 67.84c-6.827 6.4-14.933 9.382-23.040 9.382z","M801.745 320.427c-10.24 0-19.627-3.84-26.88-11.094-14.933-14.933-14.933-39.254 0-53.76 7.253-7.253 16.64-11.094 26.88-11.094s19.627 3.84 26.88 11.094c7.253 7.253 11.093 16.64 11.093 26.88s-3.84 19.627-11.093 26.88c-6.827 7.253-16.64 11.094-26.88 11.094zM798.758 279.039v6.401c0.853 0.853 2.133 1.279 3.413 1.279 5.12-2.987 5.12-5.973 2.987-7.68h-6.4z","M801.724 331.084c-13.227 0-25.173-5.121-34.56-14.508-18.773-18.773-18.773-49.92 0-69.12 9.387-9.387 21.333-14.080 34.56-14.080s25.173 5.121 34.56 14.508c9.387 9.387 14.080 21.333 14.080 34.56s-5.12 25.173-14.507 34.56c-8.533 8.96-20.907 14.081-34.133 14.081zM791.057 293.109c2.987 2.987 6.827 4.266 10.667 4.266s7.68-1.706 10.667-4.266c5.973-5.973 5.973-15.36 0-21.333-5.547-5.547-15.787-5.547-21.333 0-2.56 2.56-4.267 6.4-4.267 10.667 0 3.84 1.28 7.68 4.267 10.667z","M222.306 899.844c-9.813 0-19.627-3.84-26.88-11.093s-11.092-17.067-11.092-26.88c0-10.24 3.839-19.627 11.092-26.88s16.64-11.093 26.88-11.093c10.24 0 19.627 3.84 26.88 11.093 14.933 14.933 14.933 39.253 0 53.76-7.253 7.253-17.067 11.093-26.88 11.093zM221.453 857.6c-0.853 0-1.707 0.431-2.56 1.284-1.707 1.707-1.707 4.693 0 6.4 0.853 0.853 2.134 1.28 2.987 1.28l4.265-4.267c-1.28-3.84-2.986-4.698-4.692-4.698z","M222.316 910.511c-12.373 0-25.173-4.693-34.56-14.080s-14.506-21.76-14.506-34.56c0-13.227 5.12-25.173 14.506-34.56 8.96-8.96 21.333-14.080 34.56-14.080s25.173 5.12 34.56 14.507c19.2 19.2 19.2 49.92 0 69.12-9.387 8.96-22.187 13.653-34.56 13.653zM222.316 846.511c-3.84 0-7.68 1.28-10.667 4.267-5.973 5.973-5.973 15.36 0 21.333 2.987 2.987 6.827 4.262 10.667 4.262s8.107-1.702 10.667-4.689c2.56-2.56 4.267-6.4 4.267-10.667 0-3.84-1.707-8.107-4.267-10.667-2.987-2.133-6.827-3.84-10.667-3.84z","M921.579 610.121c-9.813 0-19.627-3.84-26.88-11.093-14.933-14.933-14.933-39.249 0-54.182 7.253-7.253 17.067-8.96 26.88-11.093 10.24 0 19.627 3.84 26.88 11.093 14.933 14.933 14.933 39.249 0 54.182-7.253 7.253-17.067 11.093-26.88 11.093zM918.592 575.134c0.853 0.853 2.133 1.284 3.413 1.284 4.693-2.987 4.693-5.973 2.987-7.68s-4.693-1.707-6.4 0c-1.707 1.707-1.707 4.689 0 6.396z","M921.626 620.787c-12.373 0-25.173-4.693-34.56-14.080-19.2-19.2-19.2-49.92 0-69.12 9.387-9.387 21.333-14.502 34.56-14.502s25.173 5.116 34.56 14.502c19.2 19.2 19.2 49.92 0 69.12-9.387 9.387-21.76 14.080-34.56 14.080zM910.959 582.814c2.987 2.987 6.827 4.271 10.667 4.271s7.68-1.711 10.667-4.271c5.973-5.973 5.973-15.36 0-21.333s-15.36-5.973-21.333 0c-5.547 5.547-5.973 15.36 0 21.333z","M102.414 610.146c-9.813 0-19.627-3.84-26.88-11.093-14.933-14.933-14.933-39.253 0-54.187s39.254-14.933 54.188 0c14.933 14.933 14.933 39.253 0 54.187-8.107 7.253-17.92 11.093-27.307 11.093zM99.001 575.159c1.707 1.707 4.693 1.707 6.4 0s1.707-4.693 0-6.4c-1.707-1.707-4.693-1.707-6.4 0s-1.707 4.693 0 6.4z","M102.377 620.796c-12.373 0-25.173-4.693-34.56-14.080-19.2-19.2-19.2-49.92 0-69.12s50.347-18.773 69.12 0c19.2 19.2 19.2 49.92 0 69.12-9.813 9.387-22.187 14.080-34.56 14.080zM91.284 582.822c5.973 5.973 15.36 5.973 21.333 0s5.973-15.787 0-21.333c-5.973-5.973-15.36-5.973-21.333 0-5.547 5.547-5.547 15.36 0 21.333z","M801.745 899.836c-9.813 0-19.627-3.84-26.88-11.093-14.933-14.933-14.933-39.253 0-54.187s39.253-14.933 54.187 0c7.253 7.253 11.093 16.64 11.093 26.88s-3.84 19.627-11.093 26.88c-7.68 7.68-17.493 11.52-27.307 11.52zM801.745 857.169c-1.28 0-2.133 0.427-2.987 1.28v6.4c1.707 1.707 4.693 1.707 6.4 0s1.707-4.693 0-6.4c-1.28-0.853-2.133-1.28-3.413-1.28z","M801.711 910.515c-12.373 0-25.173-4.693-34.56-14.080-19.2-19.2-19.2-49.92 0-69.12s49.92-19.2 69.12 0c9.387 9.387 14.507 21.333 14.507 34.56s-5.12 25.173-14.507 34.56c-9.387 9.387-22.187 14.080-34.56 14.080zM791.044 872.542c5.973 5.973 15.36 5.973 21.333 0s5.973-15.36 0-21.333c-5.973-5.973-15.36-5.973-21.333 0-2.987 2.987-4.267 6.827-4.267 10.667s1.28 7.68 4.267 10.667z","M222.306 320.427c-10.24 0-19.627-3.84-26.88-11.094s-11.092-16.64-11.092-26.88c0-10.24 3.839-19.627 11.092-26.88s16.64-11.094 26.88-11.094c10.24 0 19.627 3.84 26.88 11.094 14.933 14.933 14.933 39.254 0 54.188-7.253 6.827-16.64 10.667-26.88 10.667zM218.893 285.44c0.853 0.853 2.134 1.279 2.987 1.279l4.265-4.265-4.265-4.266c-4.693 2.56-4.694 5.546-2.987 7.252z","M222.306 331.084c-13.227 0-25.173-5.121-34.56-14.508-8.96-8.96-14.080-21.333-14.080-34.56s5.12-25.173 14.507-34.56c8.96-8.96 21.333-14.080 34.56-14.080s25.173 5.121 34.56 14.508c18.773 19.2 18.773 49.92 0 69.12-9.813 8.96-21.76 14.081-34.987 14.081zM211.639 293.109c2.987 2.987 6.827 4.693 10.667 4.693s7.68-1.706 10.667-4.266c2.987-2.56 4.267-6.827 4.267-10.667s-1.706-8.107-4.692-10.667c-5.12-5.547-15.787-5.547-21.333 0-5.547 5.12-5.548 14.933 0.426 20.906z","M511.974 200.533c-10.24 0-19.627-3.84-26.88-11.094s-11.093-16.64-11.093-26.88c0-10.24 3.84-19.627 11.093-26.88 14.933-14.933 39.253-14.933 54.187 0s14.933 39.254 0 53.76c-7.253 6.827-17.067 11.094-27.307 11.094zM514.961 159.145l-6.4 6.401c1.707 1.707 4.693 1.707 6.4 0v-6.401zM508.988 159.145c-1.707 1.707-1.707 4.694 0 6.401l6.4-6.401h-6.4z","M511.974 211.194c-13.227 0-25.173-5.121-34.56-14.508-8.96-8.96-14.080-21.333-14.080-34.56s5.12-25.173 14.507-34.56c19.2-19.2 49.92-19.2 69.12 0 18.773 19.2 18.773 49.92 0 69.12-9.387 9.387-21.76 14.508-34.987 14.508zM522.641 151.46l-21.333 21.333c5.973 5.973 15.36 5.973 21.333 0 2.987-2.987 4.267-6.827 4.267-10.667s-1.28-7.68-4.267-10.667zM511.974 147.194c-3.84 0-8.107 1.706-10.667 4.692-5.973 5.973-5.973 15.36 0 21.333l21.333-21.333c-2.56-2.987-6.4-4.692-10.667-4.692z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["devices"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":943,"id":184,"name":"devices","prevSize":32,"code":60403},"setIdx":2,"setId":2,"iconIdx":717},{"icon":{"paths":["M737.229 477.875c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l136.107-136.107-136.107-136.107c-12.373-12.373-12.373-32.853 0-45.226 12.369-12.373 32.849-12.373 45.222 0l158.724 158.721c5.973 5.973 9.387 14.079 9.387 22.612s-3.413 16.641-9.387 22.614l-158.724 158.719c-6.4 5.973-14.502 9.387-22.609 9.387z","M896 319.146h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M286.719 928c-8.107 0-16.212-2.987-22.612-9.387l-158.721-158.72c-5.973-5.973-9.385-14.080-9.385-22.613s3.412-16.64 9.385-22.613l158.721-158.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-136.107 136.107 136.107 136.102c12.373 12.373 12.373 32.858 0 45.231-5.973 6.4-14.081 9.387-22.615 9.387z","M896 768.853h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":944,"id":183,"name":"arrow-2","prevSize":32,"code":60404},"setIdx":2,"setId":2,"iconIdx":718},{"icon":{"paths":["M512 781.227c-20.053 0-39.253-10.24-52.48-27.733l-30.72-40.96h-6.4c-86.187 0-166.4-20.053-166.4-166.4v-112.213c0-98.558 50.773-157.012 142.507-165.119 6.827-0.853 14.933-1.28 23.893-1.28h179.2c107.093 0 166.4 58.881 166.4 166.399v112.213c0 8.533-0.427 17.067-1.28 24.747-7.68 90.453-66.133 141.227-164.693 141.227h-6.4l-30.72 40.96c-13.653 18.347-32.853 28.16-52.907 28.16zM422.4 332.375c-5.973 0-11.52-0-17.066 0.853-60.16 5.12-85.333 35.413-85.333 101.545v112.213c0 88.32 24.32 102.4 102.4 102.4h11.094c16.213 0 33.707 8.533 43.52 21.333l33.707 45.227 36.267-44.8c10.24-13.653 26.453-21.76 43.52-21.76h11.093c66.133 0 96-25.173 101.12-84.053 0.853-6.827 0.853-12.373 0.853-18.347v-112.213c0-71.679-30.72-102.398-102.4-102.398h-178.774z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":945,"id":182,"name":"message-circle","prevSize":32,"code":60405},"setIdx":2,"setId":2,"iconIdx":719},{"icon":{"paths":["M566.178 992h-107.52c-29.867 0-56.747-12.804-74.667-34.564-15.787-19.627-21.76-44.796-16.214-68.689l17.494-77.227c3.413-14.507 16.213-24.751 31.146-24.751h192.001c14.933 0 27.733 10.244 31.147 24.751l17.493 77.227c5.547 25.6 0.427 50.347-15.36 69.973-17.493 20.907-44.8 33.28-75.52 33.28zM442.018 849.92l-11.947 52.48c-1.28 6.4 1.28 11.52 3.84 14.507 5.547 6.827 14.507 10.667 24.747 10.667h107.52c11.093 0 20.48-3.413 25.6-9.813 3.413-4.267 4.267-9.387 2.987-15.787l-11.947-52.48h-140.8v0.427z","M608.405 849.911c-8.96 0-17.493-3.413-23.893-10.667-11.52-13.227-10.667-33.284 2.56-45.231l73.813-65.707c29.44-26.027 28.16-32.422 6.4-59.729l-130.133-165.124c-7.253-8.96-15.787-14.080-24.747-14.080s-17.493 5.12-24.747 14.080l-130.132 165.124c-23.040 29.44-22.614 35.84 5.546 58.88l74.665 66.556c13.227 11.52 14.507 32.004 2.56 45.231s-31.999 14.502-45.225 2.556l-73.813-65.707c-53.76-43.947-58.453-90.88-14.080-147.2l130.132-165.116c19.2-24.32 46.507-38.403 75.093-38.403s55.893 14.083 75.093 38.403l130.133 165.116c43.947 55.467 39.68 99.84-14.080 147.2l-73.813 65.707c-6.4 5.547-14.080 8.111-21.333 8.111z","M512.418 614.404c-17.493 0-32-14.507-32-32v-107.947c0-17.493 14.507-32 32-32s32 14.507 32 32v107.947c0 17.92-14.507 32-32 32z","M534.165 245.333h-42.667c-40.96 0-74.665-33.707-74.665-74.667v-42.667c0-40.96 33.705-74.667 74.665-74.667h42.667c40.96 0 74.667 33.707 74.667 74.667v42.667c0 40.96-33.28 74.667-74.667 74.667zM491.499 117.333c-5.973 0-10.667 4.693-10.667 10.667v42.667c0 5.973 4.693 10.667 10.667 10.667h42.667c5.973 0 10.667-4.693 10.667-10.667v-42.667c0-5.973-4.693-10.667-10.667-10.667h-42.667z","M182.167 636.587h-42.667c-40.96 0-74.667-33.707-74.667-74.667v-42.667c0-40.96 33.707-74.671 74.667-74.671h42.667c40.96 0 74.667 33.711 74.667 74.671v42.667c0 40.96-33.707 74.667-74.667 74.667zM139.5 508.582c-5.973 0-10.667 4.698-10.667 10.671v42.667c0 5.973 4.693 10.667 10.667 10.667h42.667c5.973 0 10.667-4.693 10.667-10.667v-42.667c0-5.973-4.693-10.671-10.667-10.671h-42.667z","M884.501 636.587h-42.667c-40.96 0-74.667-33.707-74.667-74.667v-42.667c0-40.96 33.707-74.671 74.667-74.671h42.667c40.96 0 74.667 33.711 74.667 74.671v42.667c0 40.96-33.28 74.667-74.667 74.667zM841.835 508.582c-5.973 0-10.667 4.698-10.667 10.671v42.667c0 5.973 4.693 10.667 10.667 10.667h42.667c5.973 0 10.667-4.693 10.667-10.667v-42.667c0-5.973-4.693-10.671-10.667-10.671h-42.667z","M160 508.599c-17.493 0-32-14.507-32-32 0-182.186 136.533-335.359 317.44-356.692 17.493-1.707 33.28 10.665 35.413 28.159s-10.667 33.281-28.16 35.414c-148.48 17.493-260.693 143.36-260.693 293.119 0 17.493-14.507 32-32 32z","M863.957 508.582c-17.493 0-32-14.507-32-32 0-148.908-111.36-274.773-258.987-292.693-17.493-2.133-29.867-17.921-27.733-35.414s17.92-30.292 35.84-27.732c179.627 21.76 315.307 174.932 315.307 356.266-0.427 17.067-14.507 31.573-32.427 31.573z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pen-tool-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":946,"id":181,"name":"pen-tool-2","prevSize":32,"code":60406},"setIdx":2,"setId":2,"iconIdx":720},{"icon":{"paths":["M426.667 755.2h-161.707c-162.133 0-211.627-49.493-211.627-211.627v-255.999c0-162.133 49.493-211.627 211.627-211.627h449.28c162.133 0 211.627 49.493 211.627 211.627 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-125.44-22.187-147.627-147.627-147.627h-449.28c-125.44 0-147.627 22.187-147.627 147.627v255.999c0 125.44 22.187 147.627 147.627 147.627h161.707c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.667 948.049c-17.493 0-32-14.507-32-32v-193.28c0-17.493 14.507-32 32-32s32 14.507 32 32v193.28c0 17.92-14.507 32-32 32z","M426.667 584.533h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M426.675 948.053h-139.092c-17.493 0-32-14.507-32-32s14.507-32 32-32h139.092c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M812.386 948.058h-151.467c-118.187 0-158.293-40.107-158.293-158.293v-243.627c0-118.187 40.107-158.294 158.293-158.294h151.467c118.187 0 158.293 40.107 158.293 158.294v243.627c0 118.613-40.107 158.293-158.293 158.293zM660.919 451.844c-83.627 0-94.293 10.667-94.293 94.293v243.627c0 83.627 10.667 94.293 94.293 94.293h151.467c83.627 0 94.293-10.667 94.293-94.293v-243.627c0-83.627-10.667-94.293-94.293-94.293h-151.467z","M738.125 809.387c-11.093 0-22.187-4.267-30.293-12.373-3.84-3.84-6.827-8.533-8.96-13.653-2.133-5.547-3.413-11.093-3.413-16.64 0-11.093 4.693-22.187 12.373-29.867 9.813-9.813 24.747-14.507 38.827-11.947 2.56 0.853 5.12 1.707 7.68 2.56 2.56 1.28 5.12 2.56 7.253 3.84 2.56 1.707 4.693 3.413 6.827 5.547 7.68 7.68 12.373 18.773 12.373 29.867 0 5.547-1.28 11.093-3.413 16.64-2.133 5.12-5.12 9.813-8.96 13.653-2.133 2.133-4.267 3.84-6.827 5.12-2.133 1.707-4.693 2.987-7.253 4.267-2.56 0.853-5.12 1.707-7.68 2.133-2.987 0.853-5.547 0.853-8.533 0.853z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["monitor-mobbile"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":947,"id":180,"name":"monitor-mobbile","prevSize":32,"code":60407},"setIdx":2,"setId":2,"iconIdx":721},{"icon":{"paths":["M426.667 629.333h-162.133c-145.92 0-211.2-65.28-211.2-211.198v-153.604c0-145.92 65.28-211.198 211.2-211.198h153.6c145.92 0 211.2 65.278 211.2 211.198v162.135c0 17.493-14.080 31.573-31.573 32-102.4 1.707-137.387 37.12-139.093 139.093-0.427 17.493-14.507 31.573-32 31.573zM264.533 117.333c-110.080 0-147.2 37.118-147.2 147.198v153.604c0 110.078 37.12 147.198 147.2 147.198h131.84c10.24-104.107 64.853-158.292 168.96-168.958v-131.844c0-110.080-37.12-147.198-147.2-147.198h-153.6z","M221.846 282.886c-9.813 0-20.053-4.691-26.027-13.651-10.24-14.507-6.827-34.562 7.68-44.802 33.28-23.467 78.080-23.894 111.786-0.854 14.507 9.813 18.347 29.868 8.534 44.375s-29.867 18.345-44.374 8.531c-11.52-7.68-26.88-7.68-38.4 0.427-6.4 4.267-12.8 5.974-19.2 5.974z","M392.513 282.886c-9.813 0-20.053-4.691-26.027-13.651-10.24-14.507-6.827-34.562 7.68-44.802 33.28-23.467 78.079-23.894 111.786-0.854 14.507 9.813 18.347 29.868 8.533 44.375s-29.867 18.345-44.373 8.531c-11.52-7.68-26.879-7.68-38.399 0.427-6.4 4.267-12.8 5.974-19.2 5.974z","M348.193 519.262h-98.987c-30.293 0-55.040-24.751-55.040-55.044 0-81.065 66.133-147.197 147.2-147.197 33.28 0 66.133 11.515 92.161 32.422 13.653 11.093 16.213 31.149 5.12 44.802s-31.148 15.787-44.801 5.12c-14.933-11.947-32.853-18.344-52.053-18.344-42.667 0-78.080 32.426-82.773 74.241h89.6c17.493 0 32 14.507 32 32s-14.933 32-32.427 32z","M759.467 970.667h-153.6c-145.92 0-211.2-65.28-211.2-211.2v-162.133c2.56-136.107 66.56-200.107 202.24-202.667h162.56c145.92 0 211.2 65.28 211.2 211.2v153.6c0 145.92-65.28 211.2-211.2 211.2zM597.333 458.667c-101.547 1.707-136.96 37.12-138.667 139.093v161.707c0 110.080 37.12 147.2 147.2 147.2h153.6c110.080 0 147.2-37.12 147.2-147.2v-153.6c0-110.080-37.12-147.2-147.2-147.2h-162.133z","M601.152 624.218c-20.053 0-39.68-5.973-56.32-17.92-14.507-10.24-17.92-30.289-7.68-44.796s30.293-17.924 44.8-7.684c11.52 8.107 26.88 8.107 38.4 0.427 14.507-9.813 34.56-6.4 44.373 8.533 9.813 14.507 6.4 34.56-8.533 44.373-16.64 11.52-35.84 17.067-55.040 17.067z","M771.819 624.218c-20.053 0-39.68-5.973-56.32-17.92-14.507-10.24-17.92-30.289-7.68-44.796s30.293-17.924 44.8-7.684c11.52 8.107 26.88 8.107 38.4 0.427 14.507-9.813 34.56-6.4 44.373 8.533 9.813 14.507 6.4 34.56-8.533 44.373-16.64 11.52-35.84 17.067-55.040 17.067z","M682.701 860.595c-81.067 0-147.2-66.138-147.2-147.204 0-30.293 24.747-55.036 55.040-55.036h184.32c30.293 0 55.040 24.742 55.040 55.036 0 81.067-66.133 147.204-147.2 147.204zM599.927 722.355c4.267 41.813 39.68 74.24 82.773 74.24s78.080-32.427 82.773-74.24h-165.547z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["smileys"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":948,"id":179,"name":"smileys","prevSize":32,"code":60408},"setIdx":2,"setId":2,"iconIdx":722},{"icon":{"paths":["M445.837 318.719c-8.107 0-16.218-2.985-22.617-9.385l-136.107-136.107-136.107 136.107c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l158.721-158.721c5.973-5.973 14.079-9.385 22.612-9.385s16.641 3.412 22.615 9.385l158.718 158.721c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.385-22.609 9.385z","M287.167 928c-17.493 0-32-14.507-32-32v-768c0-17.493 14.507-32 32-32s32 14.507 32 32v768c0 17.493-14.507 32-32 32z","M737.28 927.987c-8.533 0-16.64-3.409-22.613-9.382l-158.72-158.724c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l136.107 136.107 136.102-136.107c12.373-12.373 32.858-12.373 45.231 0s12.373 32.853 0 45.227l-158.72 158.724c-5.973 5.973-14.507 9.382-22.613 9.382z","M736.832 928c-17.493 0-32-14.507-32-32v-768c0-17.493 14.507-32 32-32s32 14.507 32 32v768c0 17.493-14.080 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-3"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":949,"id":178,"name":"arrow-3","prevSize":32,"code":60409},"setIdx":2,"setId":2,"iconIdx":723},{"icon":{"paths":["M725.363 885.333h-426.667c-181.333 0-240.64-54.187-244.907-223.147 0-8.533 2.987-17.067 8.96-23.040s14.080-9.813 23.040-9.813c64.427 0 116.907-52.907 116.907-117.333s-52.48-117.333-116.907-117.333c-8.533 0-16.64-3.413-23.040-9.813s-9.387-14.507-8.96-23.040c4.267-168.96 63.573-223.147 244.907-223.147h426.667c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM119.070 690.347c7.253 108.373 43.947 130.987 179.627 130.987h426.667c152.747 0 181.333-29.013 181.333-181.333v-256c0-152.32-28.587-181.333-181.333-181.333h-426.667c-135.68 0-172.373 23.040-179.627 130.987 84.053 16.213 147.627 90.027 147.627 178.347s-63.573 162.133-147.627 178.347z","M384 352c-17.493 0-32-14.507-32-32v-149.333c0-17.493 14.507-32 32-32s32 14.507 32 32v149.333c0 17.493-14.507 32-32 32z","M384 885.333c-17.493 0-32-14.507-32-32v-149.333c0-17.493 14.507-32 32-32s32 14.507 32 32v149.333c0 17.493-14.507 32-32 32z","M556.378 667.738c-10.24 0-20.48-3.413-29.013-9.387-15.36-11.093-23.040-29.867-19.627-48.64l8.96-50.773-37.12-36.267c-13.653-13.227-18.347-32.853-12.8-50.773 5.973-17.92 21.333-31.147 40.107-33.707l51.2-7.68 23.040-46.507c8.533-17.067 25.6-27.733 44.373-27.733 19.2 0 36.267 10.667 44.373 27.733l23.040 46.507 51.2 7.68c18.773 2.56 34.133 15.787 40.107 33.707s0.853 37.547-12.8 50.773l-37.12 36.267 8.96 50.773c3.413 18.773-4.267 37.547-19.627 48.64s-35.413 12.373-52.053 3.84l-45.653-23.893-46.080 23.893c-7.253 3.84-15.36 5.547-23.467 5.547zM544.858 497.071l21.76 21.333c11.947 11.52 17.067 27.733 14.507 43.947l-5.12 29.867 26.88-14.080c14.507-7.68 31.573-7.68 46.080 0l26.88 14.080-5.12-29.867c-2.56-16.64 2.56-32.853 14.507-43.947l21.76-21.333-29.867-4.267c-16.213-2.56-30.293-12.8-37.547-27.307l-13.227-27.307-13.227 27.307c-7.253 14.507-21.333 24.747-37.547 27.307l-30.72 4.267z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ticket-star"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":950,"id":177,"name":"ticket-star","prevSize":32,"code":60410},"setIdx":2,"setId":2,"iconIdx":724},{"icon":{"paths":["M512.043 969.378c-113.918 0-228.265-40.956-314.879-123.302-90.88-86.187-142.080-202.244-143.786-326.831-1.707-125.012 46.080-242.345 134.4-330.665 178.773-178.773 469.759-178.773 648.532 0 88.32 88.32 136.107 205.653 134.4 330.665-1.707 125.013-52.907 241.071-143.787 326.831-86.613 82.347-200.96 123.302-314.88 123.302zM512.043 118.609c-101.118 0-202.239 38.398-279.039 115.198-75.947 75.947-116.906 177.068-115.626 284.589s45.226 207.36 123.733 281.173c149.333 141.653 392.532 141.227 541.865 0 78.080-73.813 122.027-174.080 123.733-281.173s-39.68-208.643-115.627-284.589c-76.8-76.8-177.92-115.198-279.040-115.198z","M512.030 781.649c-67.413 0-134.399-24.32-185.599-72.533-12.8-12.373-13.227-32.427-1.28-45.227 12.373-12.8 32.427-13.227 45.227-1.28 78.079 73.813 205.225 73.813 283.305 0 12.8-11.947 33.28-11.52 45.227 1.28s11.52 33.28-1.28 45.227c-51.2 48.213-118.187 72.533-185.6 72.533z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grammerly"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":951,"id":176,"name":"grammerly","prevSize":32,"code":60411},"setIdx":2,"setId":2,"iconIdx":725},{"icon":{"paths":["M640.026 970.667h-255.999c-56.32 0-103.253-5.547-142.933-17.493-14.507-4.267-23.893-18.347-23.040-33.28 10.667-127.573 139.947-227.84 293.972-227.84 154.027 0 282.88 99.84 293.973 227.84 1.28 15.36-8.107 29.013-23.040 33.28-39.68 11.947-86.613 17.493-142.933 17.493zM286.747 898.56c28.16 5.547 60.16 8.107 97.28 8.107h255.999c37.12 0 69.12-2.56 97.28-8.107-22.613-81.92-116.053-142.507-225.28-142.507-109.225 0-202.665 60.587-225.279 142.507z","M640 85.333h-256c-213.333 0-298.667 85.333-298.667 298.667v256c0 161.28 48.64 249.6 164.693 282.453 9.387-110.933 123.307-198.4 261.973-198.4s252.587 87.467 261.973 198.4c116.053-32.853 164.693-121.173 164.693-282.453v-256c0-213.333-85.333-298.667-298.667-298.667zM512 604.587c-84.48 0-152.747-68.693-152.747-153.173s68.267-152.747 152.747-152.747c84.48 0 152.747 68.268 152.747 152.747s-68.267 153.173-152.747 153.173z","M511.996 636.587c-101.972 0-184.746-83.2-184.746-185.173s82.773-184.747 184.746-184.747c101.973 0 184.747 82.774 184.747 184.747s-82.773 185.173-184.747 185.173zM511.996 330.667c-66.56 0-120.746 54.188-120.746 120.747 0 66.987 54.186 121.173 120.746 121.173s120.747-54.187 120.747-121.173c0-66.559-54.187-120.747-120.747-120.747z"],"attrs":[{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64},{}],"isMulticolor":false,"isMulticolor2":true,"grid":0,"tags":["user-square"],"colorPermutations":{"25525525514145501":[{},{"s":0},{}]}},"attrs":[{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64},{}],"properties":{"order":952,"id":175,"name":"user-square","prevSize":32,"code":60412},"setIdx":2,"setId":2,"iconIdx":726},{"icon":{"paths":["M367.37 842.667c-62.293 0-112.639-50.347-112.639-112.64v-290.56h-8.534c-106.667 0-193.28-86.612-193.28-193.279s86.613-193.281 193.28-193.281h80.641c84.48 0 152.745 68.694 152.745 152.748v523.946c0.427 62.72-49.92 113.067-112.212 113.067zM246.624 117.333c-71.253 0-129.28 58.028-129.28 129.281s58.027 129.279 129.28 129.279h40.534c17.493 0 32 14.507 32 32v322.56c0 26.88 21.759 48.64 48.639 48.64s48.64-21.76 48.64-48.64v-523.945c0-49.067-39.68-88.748-88.747-88.748h-81.067v-0.427z","M246.607 318.721c-39.68 0-72.107-32.425-72.107-72.531s32.427-72.107 72.107-72.107c17.493 0 32 14.507 32 32s-14.507 32-32 32c-4.693 0-8.107 3.84-8.107 8.107s3.84 8.531 8.107 8.531c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M656.64 842.667c-62.293 0-112.64-50.347-112.64-112.64v-523.946c0-84.48 68.693-152.748 152.747-152.748h80.64c106.667 0 193.28 86.615 193.28 193.281s-86.613 193.279-193.28 193.279h-8.533v290.56c0.427 61.867-50.347 112.213-112.213 112.213zM696.747 117.333c-49.067 0-88.747 39.681-88.747 88.748v523.946c0 26.88 21.76 48.64 48.64 48.64s48.64-21.76 48.64-48.64v-322.56c0-17.493 14.507-32 32-32h40.533c71.253 0 129.28-58.025 129.28-129.279s-58.027-129.281-129.28-129.281h-81.067v0.427z","M777.374 318.721c-17.493 0-32-14.507-32-32s14.507-32 32-32c4.693 0 8.107-3.838 8.107-8.531s-3.84-8.107-8.107-8.107c-17.493 0-32-14.507-32-32s14.507-32 32-32c39.68 0 72.107 32.427 72.107 72.107s-32 72.531-72.107 72.531z","M362.667 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M661.333 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airpods"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":953,"id":174,"name":"airpods","prevSize":32,"code":60413},"setIdx":2,"setId":2,"iconIdx":727},{"icon":{"paths":["M511.979 970.667c-33.28 0-65.707-17.067-87.892-46.933l-43.094-57.6c-8.96-11.947-20.906-18.773-33.706-19.627-12.8-0.427-25.6 5.12-35.84 15.787v0c-61.44 65.707-108.8 60.587-131.413 51.627-23.040-8.96-61.867-38.4-61.867-133.12v-480.427c0-189.44 54.613-247.040 233.387-247.040h322.559c178.773 0 233.387 57.6 233.387 247.040v480.427c0 94.293-38.827 123.733-61.867 133.12-22.613 8.96-69.547 14.080-131.413-51.627-10.24-11.093-23.040-16.64-36.267-15.787-12.8 0.853-25.173 7.68-34.133 19.627l-43.093 57.6c-23.040 29.867-55.467 46.933-88.747 46.933zM344.727 782.080c1.707 0 3.84 0 5.547 0 31.573 1.707 61.44 18.347 81.492 45.227l43.093 57.6c20.907 27.733 52.907 27.733 73.813 0l43.093-57.6c20.48-26.88 49.92-43.52 81.92-45.227s63.147 11.52 86.187 36.267c32.427 34.56 53.333 38.827 61.013 35.84 10.24-4.267 21.333-29.013 21.333-73.387v-480.427c0-154.027-26.88-183.040-169.387-183.040h-322.559c-142.507 0-169.387 29.013-169.387 183.040v480.427c0 44.8 11.093 69.547 21.333 73.387 7.253 2.987 28.587-1.28 61.013-35.84 23.467-23.467 52.053-36.267 81.493-36.267z","M629.333 458.667h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["transaction-minus"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":954,"id":173,"name":"transaction-minus","prevSize":32,"code":60414},"setIdx":2,"setId":2,"iconIdx":728},{"icon":{"paths":["M575.974 245.344h-128.853c-52.052 0-95.145-42.241-95.998-94.294l-1.28-65.279c-0.427-17.493 13.652-32.428 31.146-32.854 0.427 0 0.428 0 0.854 0 17.493 0 31.573 14.079 32 31.146l1.28 65.281c0.427 17.067 14.932 31.573 31.998 31.573h128.853c17.92 0 32-14.507 32-32v-63.573c0-17.493 14.507-32 32-32s32 14.507 32 32v64c0 52.907-43.093 96-96 96z","M725.312 928c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.858 0-45.231l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.858 0 45.231l-62.724 62.72 62.724 62.716c12.373 12.373 12.373 32.858 0 45.231-6.4 6.4-14.507 9.387-22.613 9.387z","M853.312 928c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l62.72-62.716-62.72-62.72c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.858 0 45.231l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z","M554.667 970.667h-213.333c-155.733 0-245.333-89.6-245.333-245.333v-426.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v298.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-298.667c0-122.027-59.307-181.333-181.333-181.333h-341.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mobile-programming"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":955,"id":172,"name":"mobile-programming","prevSize":32,"code":60415},"setIdx":2,"setId":2,"iconIdx":729},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512.004 808.538c-10.24 0-20.48-2.56-29.013-7.253-49.493-26.88-136.959-55.893-191.999-63.147l-8.107-1.28c-41.813-5.12-75.094-42.667-75.094-85.76v-328.534c0-24.32 10.241-47.787 27.734-64 17.92-16.213 40.959-24.32 65.706-22.186 62.293 5.12 152.746 34.987 206.079 68.267l4.267 2.56 1.711-1.28c53.76-33.707 144.209-64 206.929-69.547 0.853 0 3.413 0 4.267 0 22.187-2.133 46.080 6.4 63.573 22.186 17.92 16.213 27.733 38.826 27.733 63.573v328.108c0 42.667-33.28 80.213-75.52 85.76l-8.96 1.28c-54.613 7.253-142.507 36.267-191.147 63.147-8.107 5.973-17.92 8.107-28.16 8.107zM293.979 300.803c-5.973 0-11.095 2.133-14.935 5.547-4.693 4.267-6.825 10.241-6.825 16.641v328.533c0 10.24 9.387 20.907 19.2 22.187l8.107 1.28c62.293 8.533 157.865 39.68 213.332 69.973 51.627-29.867 147.627-61.867 210.347-69.973l9.387-1.28c9.813-1.28 19.2-11.947 19.2-22.187v-328.108c0-6.827-2.56-12.372-6.827-16.639-4.693-4.267-10.667-5.973-17.493-5.547-0.853 0-3.413 0-4.267 0-49.493 4.267-130.987 31.573-175.36 59.733l-4.267 2.56c-18.773 11.52-45.227 11.52-63.147 0.427l-6.4-3.84c-44.8-28.16-126.292-55.040-177.919-59.307-0.853 0-1.279 0-2.132 0z","M512 785.498c-17.493 0-32-14.507-32-32v-407.893c0-17.493 14.507-32 32-32s32 14.507 32 32v407.893c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book-square"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":956,"id":171,"name":"book-square","prevSize":32,"code":60416},"setIdx":2,"setId":2,"iconIdx":730},{"icon":{"paths":["M938.667 160h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M469.333 416h-384c-17.493 0-32-14.507-32-32s14.507-32 32-32h384c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 672h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M256 928h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M505.182 970.671c-68.693 0-125.015-55.893-125.015-125.013 0-68.693 55.895-125.013 125.015-125.013s125.013 55.893 125.013 125.013c0 69.12-55.893 125.013-125.013 125.013zM505.182 785.071c-33.707 0-61.013 27.307-61.013 61.013s27.307 61.013 61.013 61.013c33.707 0 61.013-27.307 61.013-61.013s-27.307-61.013-61.013-61.013z","M598.165 877.666c-17.493 0-32-14.507-32-32v-374.187c0-51.626 30.72-92.158 80.64-105.385l185.6-50.773c40.533-11.093 75.52-6.828 100.267 12.372s37.547 50.347 37.547 93.44v363.092c0 17.493-14.507 32-32 32s-32-14.507-32-32v-363.092c0-21.333-4.267-36.266-12.373-42.24-8.107-6.4-24.747-6.828-44.8-1.281l-185.6 50.773c-12.373 3.413-33.28 13.653-33.28 43.947v374.191c0 17.062-14.507 31.142-32 31.142z","M845.679 908.796c-68.693 0-125.013-55.893-125.013-125.013 0-68.693 55.893-125.013 125.013-125.013s125.013 55.893 125.013 125.013c0 69.12-55.893 125.013-125.013 125.013zM845.679 723.2c-33.707 0-61.013 27.302-61.013 61.009s27.307 61.013 61.013 61.013c33.707 0 61.013-27.307 61.013-61.013s-27.307-61.009-61.013-61.009z","M598.195 612.267c-14.080 0-26.88-9.387-30.72-23.467-4.693-17.067 5.547-34.556 22.613-39.249l340.48-93.013c17.067-4.693 34.56 5.542 39.253 22.609s-5.547 34.564-22.613 39.258l-340.48 93.013c-2.987 0.427-5.973 0.849-8.533 0.849z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-filter"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":957,"id":170,"name":"music-filter","prevSize":32,"code":60417},"setIdx":2,"setId":2,"iconIdx":731},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M422 366.083c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s31.999 14.507 31.999 32v85.333c0 17.493-14.080 32-31.999 32z","M602.001 366.083c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M702.699 464.644h-381.865c-17.493 0-32-14.507-32-32 0-17.492 14.507-31.998 32-31.998h381.865c17.493 0 32 14.507 32 31.998 0 17.493-14.080 32-32 32z","M576 785.916h-128c-117.333 0-202.667-85.333-202.667-202.667v-128c0-117.332 85.333-202.666 202.667-202.666h128c117.333 0 202.667 85.333 202.667 202.666v128c0 117.333-85.333 202.667-202.667 202.667zM448 316.583c-96 0-138.667 69.547-138.667 138.666v128c0 69.12 42.667 138.667 138.667 138.667h128c96 0 138.667-69.547 138.667-138.667v-128c0-69.119-42.667-138.666-138.667-138.666h-128z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":958,"id":169,"name":"calendar-circle","prevSize":32,"code":59792},"setIdx":2,"setId":2,"iconIdx":732},{"icon":{"paths":["M759.040 970.249h-494.080c-116.907 0-211.627-95.147-211.627-212.053v-316.16c0-58.026 35.84-130.986 81.92-166.826l229.973-179.2c69.12-53.76 179.627-56.32 251.307-5.973l263.68 184.747c50.773 35.413 90.453 111.36 90.453 173.226v310.613c0 116.48-94.72 211.627-211.627 211.627zM404.48 146.356l-229.973 179.2c-30.293 23.893-57.173 78.080-57.173 116.48v316.16c0 81.493 66.133 148.053 147.627 148.053h494.080c81.493 0 147.627-66.133 147.627-147.627v-310.613c0-40.96-29.44-97.706-63.147-120.746l-263.68-184.747c-48.64-34.133-128.853-32.427-175.36 3.84z","M704.009 735.996c-8.107 0-16.213-2.987-22.613-9.387l-151.467-151.467-46.507 69.973c-5.12 8.107-14.080 13.227-23.467 14.080-9.813 0.853-19.2-2.56-25.6-9.387l-136.533-136.533c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l108.8 108.8 46.507-69.973c5.12-8.107 14.080-13.227 23.467-14.080 9.813-0.853 19.2 2.56 25.6 9.387l179.2 179.2c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M704 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h53.333v-53.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-trend-down"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":959,"id":168,"name":"home-trend-down","prevSize":32,"code":59793},"setIdx":2,"setId":2,"iconIdx":733},{"icon":{"paths":["M512 842.667c-158.72 0-288-129.28-288-288v-213.333c0-158.72 129.28-288 288-288s288 129.28 288 288v213.333c0 158.72-129.28 288-288 288zM512 117.333c-123.307 0-224 100.267-224 224v213.333c0 123.733 100.693 224 224 224s224-100.267 224-224v-213.333c0-123.733-100.693-224-224-224z","M512 970.667c-229.547 0-416-186.453-416-416v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 194.133 157.867 352 352 352s352-157.867 352-352v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 229.547-186.453 416-416 416z","M623.356 351.142c-3.413 0-7.253-0.427-11.093-1.707-68.693-24.747-144.213-24.747-212.908 0-16.213 5.973-34.56-2.56-40.533-19.2s2.56-34.987 19.2-40.96c82.774-29.867 173.654-29.867 256.428 0 16.64 5.973 25.173 24.32 19.2 40.96-4.693 13.227-17.067 20.907-30.293 20.907z","M584.529 479.147c-2.56 0-5.547-0.427-8.533-1.28-45.653-12.373-93.867-12.373-139.52 0-17.492 4.693-34.559-5.547-39.252-22.613s5.547-34.561 22.613-39.254c56.746-15.36 116.479-15.36 173.226 0 17.067 4.693 27.307 22.188 22.613 39.254-4.267 14.933-17.067 23.893-31.147 23.893z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":960,"id":167,"name":"microphone","prevSize":32,"code":60418},"setIdx":2,"setId":2,"iconIdx":734},{"icon":{"paths":["M725.333 906.667h-426.667c-155.733 0-245.333-89.6-245.333-245.333v-298.667c0-155.733 89.6-245.333 245.333-245.333h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-298.667c-122.027 0-181.333 59.307-181.333 181.333v298.667c0 122.027 59.307 181.333 181.333 181.333h426.667c122.027 0 181.333-59.307 181.333-181.333v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 155.733-89.6 245.333-245.333 245.333z","M511.949 549.111c-35.84 0-72.107-11.093-99.84-33.707l-133.547-106.668c-13.653-11.093-16.213-31.147-5.12-44.8s31.146-16.213 44.8-5.12l133.547 106.668c32.427 26.027 87.467 26.027 119.893 0l50.347-40.108c13.653-11.093 34.133-8.96 44.8 5.121 11.093 13.653 8.96 34.133-5.12 44.8l-50.347 40.107c-27.307 22.613-63.573 33.707-99.413 33.707z","M832 373.333c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM832 160c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms-notification"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":961,"id":166,"name":"sms-notification","prevSize":32,"code":59794},"setIdx":2,"setId":2,"iconIdx":735},{"icon":{"paths":["M638.75 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.56 330.667-330.667 330.667zM382.75 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M638.75 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.080 32-32 32z","M340.060 653.222c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l86.613-86.613-86.613-86.614c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l109.228 109.228c12.373 12.373 12.373 32.853 0 45.227l-109.228 109.227c-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sidebar-right"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":962,"id":165,"name":"sidebar-right","prevSize":32,"code":60419},"setIdx":2,"setId":2,"iconIdx":736},{"icon":{"paths":["M667.695 913.502c-18.347 0-36.693-3.84-51.627-11.093l-224.002-112.213c-12.8-6.4-37.973-5.973-50.347 1.28l-100.693 57.6c-43.52 24.747-88.32 28.16-122.027 8.107-34.133-19.627-53.333-59.733-53.333-110.080v-414.722c0-38.827 25.6-82.773 59.307-101.973l184.747-105.813c31.147-17.92 78.507-19.2 110.507-2.987l224.002 112.213c12.8 6.4 37.547 5.547 50.347-1.28l100.267-57.173c43.52-24.747 88.32-28.16 122.027-8.107 34.133 19.627 53.333 59.733 53.333 110.080v415.148c0 38.827-25.6 82.773-59.307 101.973l-184.747 105.813c-16.213 8.533-37.547 13.227-58.453 13.227zM368.6 721.929c18.347 0 36.693 3.84 51.627 11.093l224.002 112.213c12.8 6.4 37.547 5.547 50.347-1.28l184.747-105.813c13.653-7.68 26.88-30.72 26.88-46.080v-415.148c0-26.88-7.68-46.933-21.76-54.613-13.653-7.68-34.987-4.693-58.027 8.533l-100.267 57.173c-31.147 17.92-78.507 19.2-110.507 2.987l-224.002-112.213c-12.8-6.4-37.547-5.547-50.347 1.28l-184.747 105.813c-13.653 7.68-26.88 30.72-26.88 46.507v415.148c0 26.88 7.68 46.933 21.333 54.613 13.653 8.107 34.987 4.693 58.453-8.533l100.267-57.173c16.64-9.813 37.973-14.507 58.88-14.507z","M365.25 757.333c-17.493 0-32-14.507-32-32v-554.667c0-17.493 14.507-32 32-32s32 14.507 32 32v554.667c0 17.493-14.507 32-32 32z","M671.168 885.338c-17.493 0-32-14.507-32-32v-570.879c0-17.493 14.507-32 32-32s32 14.507 32 32v570.879c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["map"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":963,"id":164,"name":"map","prevSize":32,"code":60420},"setIdx":2,"setId":2,"iconIdx":737},{"icon":{"paths":["M635.273 777.374h-375.040c-22.187 0-43.094-2.129-61.867-6.396-9.813-1.28-21.76-4.698-34.133-9.391-56.747-21.333-123.733-73.809-123.733-204.369v-219.736c0-139.52 80.213-219.732 219.733-219.732h375.040c117.76 0 193.707 56.319 214.187 158.719 3.84 18.773 5.547 38.826 5.547 61.013v219.736c0 140.373-79.787 220.156-219.733 220.156zM260.659 182.604c-104.96 0-155.733 50.772-155.733 155.732v219.735c0 76.373 26.88 123.307 81.92 144.213 8.533 2.987 16.64 5.116 24.32 6.396 16.213 3.413 31.999 5.12 49.492 5.12h375.040c104.96 0 155.733-50.769 155.733-155.729v-219.735c0-17.92-1.28-33.707-4.267-48.214-14.507-72.533-64-107.518-151.467-107.518h-375.040z","M763.354 905.378h-375.041c-36.267 0-68.694-5.12-96.427-15.787-62.72-23.467-103.68-72.96-117.76-143.787-2.133-10.667 1.281-21.76 8.961-29.013 7.68-7.68 18.773-10.667 29.44-8.107 14.080 2.987 29.867 4.693 47.787 4.693h375.041c104.96 0 155.733-50.769 155.733-155.729v-219.736c0-17.92-1.28-33.707-4.267-48.213-2.133-10.667 1.28-21.333 8.533-29.013 7.68-7.68 18.347-11.094 29.013-8.534 102.4 20.907 158.72 96.854 158.72 213.759v219.738c0 139.947-79.787 219.729-219.733 219.729zM252.632 777.378c13.653 24.747 34.133 42.244 62.293 52.484 20.48 7.68 45.226 11.516 73.812 11.516h375.042c104.96 0 155.729-50.769 155.729-155.729v-219.738c0-67.412-20.907-112.211-64-135.678 0 2.56 0 5.12 0 7.68v219.736c0 139.52-80.209 219.729-219.729 219.729h-375.042c-2.987 0-5.546 0-8.106 0z","M447.974 592.636c-79.787 0-144.641-64.853-144.641-144.64s64.854-144.642 144.641-144.642c79.787 0 144.64 64.854 144.64 144.642s-64.853 144.64-144.64 144.64zM447.974 367.354c-44.374 0-80.641 36.268-80.641 80.642s36.267 80.64 80.641 80.64c44.373 0 80.64-36.267 80.64-80.64s-36.267-80.642-80.64-80.642z","M204 573.858c-17.493 0-32-14.507-32-32v-187.733c0-17.493 14.507-32 32-32s32 14.507 32 32v187.733c0 17.493-14.080 32-32 32z","M691.665 573.858c-17.493 0-32-14.507-32-32v-187.733c0-17.493 14.507-32 32-32s32 14.507 32 32v187.733c0 17.493-14.080 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["moneys"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":964,"id":163,"name":"moneys","prevSize":32,"code":60421},"setIdx":2,"setId":2,"iconIdx":738},{"icon":{"paths":["M512 970.667c-76.373 0-138.667-62.293-138.667-138.667v-32h-181.333c-31.573 0-61.013-12.373-83.2-34.987-21.76-21.333-34.133-50.773-34.133-82.347 0-59.733 46.507-110.933 106.24-116.907 2.133-0.427 6.4-0.427 11.093-0.427h640c4.693 0 8.96 0 13.227 0.853 25.173 2.133 50.347 14.080 69.973 34.133 24.32 23.467 36.693 57.6 33.707 92.587-5.12 60.16-58.453 107.093-121.6 107.093h-176.64v32c0 76.373-62.293 138.667-138.667 138.667zM192 629.333c-0.853 0-4.267 0-5.12 0.427-26.88 2.56-48.213 26.027-48.213 52.907 0 14.080 5.547 27.307 15.36 37.12 10.24 10.667 23.467 16.213 37.973 16.213h213.333c17.493 0 32 14.507 32 32v64c0 40.96 33.707 74.667 74.667 74.667s74.667-33.707 74.667-74.667v-64c0-17.493 14.507-32 32-32h208.64c29.44 0 55.467-21.76 58.027-48.64 1.28-16.213-4.267-31.147-15.36-42.24-9.387-9.387-20.48-14.933-32.427-15.787l-5.547-0.427-640 0.427z","M840.090 629.76c-1.707 0-3.413 0-5.12-0.427h-642.985c-8.96 1.707-19.627-0.853-26.453-6.827-7.253-5.547-12.8-14.080-13.227-23.040l-20.907-371.627c-4.267-43.52 10.24-88.32 40.533-122.027 30.293-33.28 73.387-52.48 118.613-52.48h442.882c45.227 0 88.316 19.2 118.609 52.907 29.867 33.28 44.8 78.080 40.533 122.453l-20.48 370.773c-0.427 8.96-4.693 17.493-11.947 23.040-5.547 4.693-12.8 7.253-20.053 7.253zM214.172 565.333h595.625l18.773-340.907c0-0.427 0-0.853 0-1.707 2.56-27.307-5.973-53.76-24.316-73.813-18.347-20.053-43.947-31.573-71.253-31.573h-442.455c-26.88 0-52.907 11.52-71.253 31.573-18.347 20.48-26.88 46.507-23.893 73.813l18.773 342.613z","M340.916 330.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M512 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brush-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":965,"id":162,"name":"brush-2","prevSize":32,"code":60422},"setIdx":2,"setId":2,"iconIdx":739},{"icon":{"paths":["M735.142 918.182c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l151.040-151.040c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-151.040 151.040c-5.973 5.973-14.507 9.387-22.613 9.387z","M886.182 918.182c-8.107 0-16.213-2.987-22.613-9.387l-151.040-151.040c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l151.040 151.040c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M298.667 608c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M512 608c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M725.333 608c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M554.667 970.667h-170.667c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v170.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-170.667c0-196.693-69.973-266.667-266.667-266.667h-256c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-fail"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":966,"id":161,"name":"chart-fail","prevSize":32,"code":60423},"setIdx":2,"setId":2,"iconIdx":740},{"icon":{"paths":["M264.14 941.218c-42.667 0-84.053-16.64-116.907-48.64-53.333-52.053-66.133-128.853-32.853-195.413l69.12-138.24c14.507-29.013 14.507-64 0-93.44l-69.12-138.665c-33.28-66.56-20.48-143.36 32.853-195.413s130.133-63.573 196.267-28.587l494.508 260.267c55.467 29.013 90.027 86.185 90.027 148.905s-34.56 119.893-90.027 148.907l-494.508 260.267c-25.6 13.653-52.48 20.053-79.36 20.053zM264.567 146.767c-29.44 0-55.040 13.653-72.533 30.72-26.453 25.6-45.227 71.253-20.48 121.173l69.12 138.238c23.467 47.36 23.467 103.253 0 150.613l-69.12 138.24c-25.173 49.92-5.973 95.573 20.48 121.173s72.107 43.947 121.6 17.92l494.508-260.267c34.987-18.347 55.893-52.907 55.893-92.16s-20.907-73.813-55.893-92.158l-494.508-261.12c-17.067-8.96-33.707-12.373-49.067-12.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["direct-right"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":967,"id":160,"name":"direct-right","prevSize":32,"code":59795},"setIdx":2,"setId":2,"iconIdx":741},{"icon":{"paths":["M710.387 885.333c-0.427 0-1.28 0-1.707 0-17.493 0-32-14.507-31.573-32.427 0-17.493 14.507-31.573 32-31.573 0.427 0 1.28 0 1.707 0 48.64 0 95.147-17.92 130.987-51.2 66.133-58.027 70.827-140.8 52.907-199.253s-67.413-124.587-154.027-135.68c-14.080-1.707-25.173-12.373-27.733-26.453-17.067-101.973-72.107-172.373-154.88-197.973-86.187-26.453-185.599-0.427-247.892 64.853-60.587 63.574-74.667 151.893-39.68 249.6 5.973 16.64-2.56 34.987-19.2 40.96s-34.987-2.56-40.96-19.2c-43.093-119.893-23.467-234.666 53.76-315.306 78.933-82.347 204.372-115.2 313.172-81.493 99.413 30.72 169.813 112.64 194.987 226.133 87.040 19.627 156.587 85.333 184.32 176.213 30.293 98.987 2.56 200.533-71.253 265.387-48.64 43.52-110.507 67.413-174.933 67.413z","M237.657 885.333c-0.853 0-1.707 0-2.133 0-122.88-8.533-178.773-104.96-178.773-190.72s55.893-181.76 178.773-190.72c31.573-0.427 62.72 6.827 90.027 20.48 15.787 8.107 21.76 27.307 14.080 43.093-8.107 15.787-27.307 21.76-43.093 14.080-17.92-9.387-38.4-13.227-58.027-13.653-80.64 5.973-117.333 67.84-117.333 126.72s36.693 120.747 119.467 126.72c17.493 1.28 30.72 16.64 29.44 34.133-1.707 17.067-15.787 29.867-32.427 29.867z","M675.012 453.973c-11.52 0-23.040-6.4-28.587-17.92-8.107-15.788-1.707-34.988 14.507-43.095 26.027-13.227 55.467-20.48 84.48-20.907 16.64 0.853 32.427 13.653 32.427 31.573 0.427 17.493-13.653 32.428-31.573 32.428-19.627 0.427-39.253 5.12-57.173 14.080-4.267 2.987-9.387 3.84-14.080 3.84z","M553.417 885.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M468.083 970.667c-17.493 0-32-14.507-32-32v-170.667c0-17.493 14.507-32 32-32s32 14.507 32 32v170.667c0 17.493-14.080 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-plus"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":968,"id":159,"name":"cloud-plus","prevSize":32,"code":60424},"setIdx":2,"setId":2,"iconIdx":742},{"icon":{"paths":["M511.979 373.333c-17.493 0-32-14.507-32-32v-178.773l-30.72 30.72c-12.373 12.373-32.855 12.373-45.229 0s-12.373-32.853 0-45.227l85.335-85.333c8.96-8.96 23.040-11.947 34.987-6.827 11.947 4.693 19.627 16.64 19.627 29.44v256c0 17.493-14.507 32-32 32z","M597.312 202.664c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M682.667 970.667h-341.333c-245.333 0-245.333-130.133-245.333-245.333v-42.667c0-95.147 0-202.667 202.667-202.667 50.773 0 69.547 12.373 96 32 1.28 1.28 2.987 2.133 4.267 3.84l43.52 46.080c36.693 38.827 103.253 38.827 139.947 0l43.52-46.080c1.28-1.28 2.56-2.56 4.267-3.84 26.453-20.053 45.227-32 96-32 202.667 0 202.667 107.52 202.667 202.667v42.667c-0.853 162.987-83.2 245.333-246.187 245.333zM298.667 544c-138.667 0-138.667 43.52-138.667 138.667v42.667c0 116.907 0 181.333 181.333 181.333h341.333c127.147 0 181.333-54.187 181.333-181.333v-42.667c0-95.147 0-138.667-138.667-138.667-30.72 0-37.12 3.84-55.467 17.493l-41.387 43.947c-30.72 32.427-72.107 50.347-116.48 50.347s-85.76-17.92-116.48-50.347l-41.387-43.947c-18.347-13.653-24.747-17.493-55.467-17.493z","M213.333 544.009c-17.493 0-32-14.507-32-32v-85.333c0-82.772 0-185.599 157.013-200.532 17.067-2.133 33.28 11.093 34.987 29.013 1.707 17.493-11.093 33.28-29.013 34.987-98.987 8.96-98.987 49.067-98.987 136.532v85.333c0 17.493-14.507 32-32 32z","M810.641 544.009c-17.493 0-32-14.507-32-32v-85.333c0-87.466 0-127.572-98.987-136.959-17.493-1.707-30.293-17.493-28.587-34.987s17.067-30.72 34.987-28.587c157.013 14.933 157.013 117.76 157.013 200.532v85.333c-0.427 17.493-14.933 32-32.427 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directbox-send"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":969,"id":158,"name":"directbox-send","prevSize":32,"code":60425},"setIdx":2,"setId":2,"iconIdx":743},{"icon":{"paths":["M725.333 970.667h-426.667c-146.773 0-245.333-98.56-245.333-245.333v-213.333c0-131.413 81.067-226.56 206.933-242.346 11.947-1.707 25.173-2.987 38.4-2.987h426.667c10.24 0 23.467 0.427 37.12 2.56 125.867 14.507 208.213 110.080 208.213 242.773v213.333c0 146.773-98.56 245.333-245.333 245.333zM298.667 330.667c-10.24 0-20.053 0.853-29.867 2.133-93.867 11.947-151.467 80.214-151.467 179.2v213.333c0 110.080 71.253 181.333 181.333 181.333h426.667c110.080 0 181.333-71.253 181.333-181.333v-213.333c0-99.84-58.453-168.533-153.173-179.626-10.24-1.707-19.2-1.707-28.16-1.707h-426.667z","M264.109 333.225c-10.24 0-19.627-4.693-26.027-13.227-7.253-9.813-8.107-22.613-2.56-33.28 7.253-14.507 17.493-28.587 30.72-41.387l138.667-139.094c70.825-70.4 186.025-70.4 256.851 0l74.667 75.521c31.573 31.147 50.773 72.96 52.907 117.333 0.427 9.813-3.413 19.199-10.667 25.599s-17.067 9.388-26.453 7.681c-8.533-1.28-17.493-1.707-26.88-1.707h-426.665c-10.24 0-20.053 0.853-29.867 2.133-1.28 0.427-2.987 0.427-4.693 0.427zM335.362 266.665h382.291c-5.547-14.507-14.507-27.733-26.453-39.68l-75.093-75.947c-45.653-45.227-120.32-45.227-166.4 0l-114.345 115.626z","M938.667 736h-128c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":970,"id":157,"name":"wallet-1","prevSize":32,"code":60426},"setIdx":2,"setId":2,"iconIdx":744},{"icon":{"paths":["M213.333 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM213.333 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M810.667 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M213.333 970.667c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM213.333 714.667c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M213.333 714.667c-17.493 0-32-14.507-32-32v-341.333c0-17.493 14.507-32 32-32s32 14.507 32 32c0 93.44 45.227 138.667 138.667 138.667h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-298.667c-58.027 0-104.533-14.933-138.667-43.093v181.76c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hierarchy-3"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":971,"id":156,"name":"hierarchy-3","prevSize":32,"code":60427},"setIdx":2,"setId":2,"iconIdx":745},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M776.533 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM776.533 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M938.645 970.662c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M362.667 618.662c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-10.24-5.12-14.080-8.96-1.707-2.133-3.84-4.267-5.12-6.4-1.707-2.56-2.987-5.12-3.84-7.68-1.28-2.56-2.133-5.12-2.56-7.68-0.427-2.987-0.853-5.973-0.853-8.533 0-11.093 4.693-22.187 12.373-30.293 3.84-3.84 8.534-6.827 14.080-8.96 15.36-6.827 34.56-2.987 46.507 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 2.56-0.427 5.547-0.853 8.533-0.427 2.56-1.28 5.12-2.56 7.68-0.853 2.56-2.133 5.12-3.84 7.68-1.707 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.294 12.373z","M512 618.662c-11.093 0-22.187-4.693-30.293-12.373-7.68-8.107-12.373-18.773-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213s5.12-9.809 8.96-14.076c15.787-15.787 44.373-15.787 60.587 0 7.68 8.107 12.373 19.196 12.373 30.289 0 2.56-0.427 5.551-0.853 8.538-0.427 2.56-1.28 5.116-2.56 7.676-0.853 2.56-2.133 5.12-3.84 7.68-1.707 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.293 12.373z","M362.667 767.996c-11.093 0-22.187-4.693-30.294-12.373-7.68-8.107-12.373-19.2-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213 2.133-5.547 5.12-10.236 8.96-14.076 15.787-15.787 44.801-15.787 60.588 0 7.68 8.107 12.373 19.196 12.373 30.289s-4.693 22.187-12.373 30.293c-8.107 7.68-19.2 12.373-30.294 12.373z","M874.667 419.833h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M570.453 970.667h-229.12c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v192c0 17.493-14.507 32-32 32s-32-14.507-32-32v-192c0-122.027-59.307-181.333-181.333-181.333h-341.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h229.12c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-search"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":972,"id":155,"name":"calendar-search","prevSize":32,"code":60428},"setIdx":2,"setId":2,"iconIdx":746},{"icon":{"paths":["M554.667 507.729h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M85.333 507.725c-17.493 0-32-14.507-32-32v-197.118c0-104.533 84.907-189.44 189.44-189.44h239.787c109.653 0 189.44 72.96 189.44 173.227 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-75.093-65.28-109.227-125.44-109.227h-239.787c-69.12 0-125.44 56.32-125.44 125.44v197.118c0 17.92-14.507 32-32 32z","M682.667 934.396h-426.667c-111.787 0-202.667-90.88-202.667-202.667v-298.667c0-111.787 90.88-202.667 202.667-202.667h426.667c111.787 0 202.667 90.88 202.667 202.667v61.867c0 17.493-14.507 32-32 32h-46.080c-14.933 0-28.587 5.542-38.4 15.782l-0.427 0.431c-14.080 14.080-19.627 33.702-14.507 52.902 6.4 23.893 31.573 41.391 59.733 41.391h39.68c17.493 0 32 14.507 32 32v61.867c0 112.213-90.88 203.093-202.667 203.093zM256 294.396c-76.373 0-138.667 62.293-138.667 138.667v298.667c0 76.373 62.293 138.667 138.667 138.667h426.667c76.373 0 138.667-62.293 138.667-138.667v-29.867h-7.68c-57.6 0-107.52-36.267-121.6-88.747-11.093-41.387 0.853-85.333 31.147-115.2 22.187-22.613 52.053-34.987 84.053-34.987h14.080v-29.867c0-76.373-62.293-138.667-138.667-138.667h-426.667z","M894.716 701.871h-82.347c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.333-22.187 51.627-34.56 83.627-34.56h87.467c41.813 0 75.947 33.707 75.947 75.52v87.893c0.427 41.813-33.707 75.52-75.52 75.52zM807.249 526.938c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.133 28.16 29.44 50.773 60.16 50.773h82.347c6.4 0 11.947-5.12 11.947-11.52v-87.893c0-6.4-5.547-11.52-11.947-11.52h-87.467z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-3"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":973,"id":154,"name":"wallet-3","prevSize":32,"code":60429},"setIdx":2,"setId":2,"iconIdx":747},{"icon":{"paths":["M612.267 928h-243.2c-221.44 0-315.733-94.293-315.733-315.733v-243.199c0-221.44 94.293-315.734 315.733-315.734h243.2c221.44 0 315.733 94.294 315.733 315.734v243.199c0 15.36-0.427 29.867-1.28 43.947-0.853 12.8-9.387 23.893-21.76 28.16s-25.6 0.427-34.56-8.96c-25.6-29.013-63.147-46.080-102.827-46.080-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 6.827 11.947 15.787 22.613 26.027 31.573 9.813 8.533 13.653 22.187 9.387 34.133-4.267 12.373-15.36 20.907-28.16 21.76-13.653 0.853-28.16 1.28-43.947 1.28zM369.066 117.333c-186.027 0-251.733 65.708-251.733 251.734v243.199c0 186.027 65.706 251.733 251.733 251.733h220.587c-15.787-29.013-24.32-61.867-24.32-96 0-111.787 90.88-202.667 202.667-202.667 34.133 0 66.987 8.533 96 23.893v-220.159c0-186.027-65.707-251.734-251.733-251.734h-243.2z","M286.7 647.253c-51.627 0-93.867-42.24-93.867-93.867s42.24-93.867 93.867-93.867c51.627 0 93.867 42.24 93.867 93.867s-42.24 93.867-93.867 93.867zM286.7 523.52c-16.213 0-29.867 13.227-29.867 29.867 0 16.213 13.227 29.867 29.867 29.867s29.867-13.227 29.867-29.867c0-16.64-13.227-29.867-29.867-29.867z","M348.583 585.382c-17.493 0-32-14.507-32-32v-248.745c0-38.827 24.32-70.4 61.44-80.64l123.732-33.706c38.4-10.667 62.72-0.428 75.947 9.812s29.44 30.721 29.44 70.401v241.492c0 17.493-14.507 32-32 32s-32-14.507-32-32v-241.492c0-13.653-2.987-18.774-4.267-19.628s-7.253-2.559-20.48 0.854l-123.306 33.706c-12.8 3.413-14.507 12.373-14.507 18.773v248.746c0 17.92-14.507 32.427-32 32.427z","M513.284 605.858c-51.627 0-93.868-42.24-93.868-93.867s42.241-93.867 93.868-93.867c51.627 0 93.867 42.24 93.867 93.867 0 52.053-42.24 93.867-93.867 93.867zM513.284 482.551c-16.213 0-29.867 13.227-29.867 29.867 0 16.213 13.227 29.867 29.867 29.867s29.867-13.227 29.867-29.867c0-16.64-13.653-29.867-29.867-29.867z","M348.61 408.75c-14.080 0-26.88-9.386-30.72-23.466-4.693-17.067 5.546-34.562 22.613-39.255l226.558-61.868c17.067-4.267 34.564 5.548 39.258 22.615s-5.551 34.56-22.618 39.253l-226.558 61.867c-2.987 0.427-5.973 0.854-8.533 0.854z","M768 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM768 629.333c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 25.173 42.667 69.547 67.413 118.613 67.413s93.44-25.173 118.613-66.987c13.227-21.76 20.053-46.080 20.053-71.68 0-76.373-62.293-138.667-138.667-138.667z","M831.573 799.147h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M768 864.427c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-square-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":974,"id":153,"name":"music-square-add","prevSize":32,"code":60430},"setIdx":2,"setId":2,"iconIdx":748},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M662.622 597.756c-8.107 0-16.213-2.987-22.613-9.387l-128-128-128.002 128c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l150.615-150.612c12.373-12.373 32.853-12.373 45.227 0l150.613 150.612c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-up"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":975,"id":152,"name":"arrow-circle-up","prevSize":32,"code":60431},"setIdx":2,"setId":2,"iconIdx":749},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M362.667 618.671c-5.547 0-11.093-0.853-16.213-3.413-5.12-2.133-9.814-5.12-14.080-8.96-7.68-8.107-12.373-19.2-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213s5.12-9.813 8.96-14.080c4.267-3.84 8.96-6.827 14.080-8.96 15.36-6.4 34.56-2.987 46.507 8.96 3.84 4.267 6.826 8.96 8.96 14.080s3.413 10.667 3.413 16.213c0 11.093-4.693 22.187-12.373 30.293-8.107 7.68-19.2 12.373-30.294 12.373z","M512 618.662c-11.093 0-22.187-4.693-30.293-12.373-3.84-4.267-6.827-8.96-8.96-14.080s-3.413-10.667-3.413-16.213c0-11.093 4.693-22.187 12.373-30.293 11.947-11.947 30.72-15.787 46.507-8.96 5.12 2.133 9.813 5.12 14.080 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 5.547-0.853 11.093-3.413 16.213-2.133 5.12-5.12 9.813-8.96 14.080-4.267 3.84-8.96 6.827-14.080 8.96-5.12 2.56-10.667 3.413-16.213 3.413z","M362.667 767.996c-5.547 0-11.093-1.28-16.213-3.413s-9.814-5.12-14.080-8.96c-7.68-8.107-12.373-18.773-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213 2.133-5.547 5.12-9.813 8.96-14.080 4.267-3.84 8.96-6.827 14.080-8.96 15.36-6.827 34.56-2.987 46.507 8.96 3.84 4.267 6.826 8.533 8.96 14.080 2.133 5.12 3.413 10.667 3.413 16.213 0 11.52-4.693 22.187-12.373 30.293-8.107 7.68-19.2 12.373-30.294 12.373z","M874.667 419.833h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 1013.333c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM768 672c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M831.573 844.791h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M768 910.071c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.493-14.507 32-32 32z","M655.787 970.667h-314.453c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v335.36c0 13.227-8.107 25.173-20.907 29.867-12.373 4.693-26.453 1.28-35.413-8.96-26.453-29.867-64.427-46.933-104.107-46.933-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 7.253 12.8 16.64 23.467 26.88 32.427 10.24 8.533 14.080 22.613 9.387 35.413-3.84 12.373-15.787 20.907-29.44 20.907zM341.333 181.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h248.32c-15.787-29.013-24.32-61.867-24.32-96 0-111.787 90.88-202.667 202.667-202.667 33.707 0 66.987 8.533 96 24.32v-269.653c0-122.027-59.307-181.333-181.333-181.333h-341.333z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":976,"id":151,"name":"calendar-add","prevSize":32,"code":60432},"setIdx":2,"setId":2,"iconIdx":750},{"icon":{"paths":["M726.605 842.671h-44.373c-85.76 0-127.147-39.68-127.147-121.6v-503.467c0-17.493 14.507-32 32-32s32 14.507 32 32v503.467c0 43.093 8.96 57.6 63.147 57.6h44.373c54.187 0 63.147-14.507 63.147-57.6v-503.467c0-17.493 14.507-32 32-32s32 14.507 32 32v503.467c0 81.92-41.387 121.6-127.147 121.6z","M363.937 629.338h-44.373c-85.76 0-127.147-39.68-127.147-121.6v-290.133c0-17.493 14.507-32 32-32s32 14.507 32 32v290.133c0 43.093 8.96 57.6 63.147 57.6h44.373c54.187 0 63.148-14.507 63.148-57.6v-290.133c0-17.493 14.507-32 32-32s32 14.507 32 32v290.133c0 81.92-41.387 121.6-127.148 121.6z","M938.667 245.333h-853.333c-17.92 0-32-14.507-32-32s14.080-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-bottom"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":977,"id":150,"name":"align-bottom","prevSize":32,"code":60433},"setIdx":2,"setId":2,"iconIdx":751},{"icon":{"paths":["M849.899 674.138c-8.107 0-16.213-2.987-22.613-9.387l-278.187-278.188c-20.48-20.48-53.76-20.48-74.24 0l-278.185 278.188c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l278.185-278.188c45.227-45.227 119.040-45.227 164.693 0l278.187 278.188c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-2"],"colorPermutations":{"25525525514145501":[{}]}},"attrs":[{}],"properties":{"order":978,"id":149,"name":"arrow-up-2","prevSize":32,"code":60434},"setIdx":2,"setId":2,"iconIdx":752},{"icon":{"paths":["M444.625 586.675c-5.547 0-11.093-1.28-16.213-4.267-50.348-29.44-81.495-84.053-81.495-142.080 0-90.88 73.813-165.12 165.122-165.12 58.453 0 113.067 31.147 142.507 81.92 8.96 15.36 3.84 34.987-11.52 43.947s-34.987 3.84-43.947-11.52c-17.92-31.573-51.2-50.773-87.040-50.773-55.467 0-101.122 45.227-101.122 101.12 0 35.84 19.202 69.12 49.922 87.040 15.36 8.96 20.48 28.587 11.52 43.947-5.973 9.813-16.64 15.787-27.733 15.787z","M255.604 791.898c-9.813 0-19.626-4.693-26.026-13.227-102.4-140.373-138.24-282.88-106.24-423.681 33.28-146.347 140.8-254.72 287.573-290.133 153.599-37.12 314.879 12.8 410.026 126.72 11.52 13.653 9.387 33.707-3.84 45.227-13.653 11.52-33.707 9.387-45.227-4.267-79.787-95.573-215.467-136.96-346.026-105.813-124.587 29.867-212.053 118.187-240.213 241.92-27.733 122.028 4.267 247.041 95.574 371.628 10.24 14.080 7.253 34.133-6.827 44.8-5.547 4.693-12.373 6.827-18.773 6.827z","M512.004 971.085c-63.147 0-126.722-23.893-176.215-71.253-12.8-12.373-13.227-32.427-0.853-45.227s32.427-13.227 45.227-0.853c73.815 71.253 189.442 71.253 263.255 0 113.92-109.653 240.213-282.88 194.987-483.841-3.84-17.067 6.827-34.56 24.32-38.4 17.067-3.84 34.56 6.827 38.4 24.32 52.053 229.975-87.040 422.828-212.907 544.001-49.493 47.36-113.067 71.253-176.213 71.253z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["location-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":979,"id":148,"name":"location-slash","prevSize":32,"code":60435},"setIdx":2,"setId":2,"iconIdx":753},{"icon":{"paths":["M682.675 970.667h-341.332c-197.12 0-233.813-91.733-243.2-180.907l-32-341.76c-4.693-44.8-5.973-110.933 38.4-160.426 38.4-42.667 101.973-63.147 194.133-63.147h426.665c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 340.907c-9.387 89.6-46.080 181.333-243.2 181.333zM298.676 288c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 341.76c7.253 67.413 25.6 123.307 179.627 123.307h341.332c153.6 0 172.373-55.893 179.627-123.733l32-340.907c5.547-53.333-1.28-88.746-22.187-111.786-25.173-28.16-74.667-42.24-146.773-42.24h-426.665z","M682.667 288c-17.493 0-32-14.507-32-32v-34.133c0-75.947 0-104.533-104.533-104.533h-68.267c-104.533 0-104.533 28.587-104.533 104.533v34.133c0 17.493-14.507 32-32 32s-32-14.507-32-32v-34.133c0-75.093 0-168.533 168.533-168.533h68.267c168.533 0 168.533 93.44 168.533 168.533v34.133c0 17.493-14.507 32-32 32z","M512 714.667c-117.333 0-117.333-72.533-117.333-116.053v-43.947c0-60.16 14.507-74.667 74.667-74.667h85.333c60.16 0 74.667 14.507 74.667 74.667v42.667c0 44.373 0 117.333-117.333 117.333zM458.667 544c0 3.413 0 7.253 0 10.667v43.947c0 43.947 0 52.053 53.333 52.053s53.333-6.827 53.333-52.48v-43.52c0-3.413 0-7.253 0-10.667-3.413 0-7.253 0-10.667 0h-85.333c-3.413 0-7.253 0-10.667 0z","M597.312 630.187c-15.787 0-29.867-11.947-31.573-28.16-2.133-17.493 10.24-33.707 27.733-35.84 112.64-14.080 220.587-56.747 311.467-122.88 14.080-10.667 34.133-7.253 44.8 7.253 10.24 14.080 7.253 34.133-7.253 44.8-99.84 72.533-217.6 119.040-341.333 134.827-1.28 0-2.56 0-3.84 0z","M426.697 630.609c-1.279 0-2.559 0-3.839 0-116.907-13.227-230.827-55.893-329.387-123.307-14.507-9.813-18.347-29.867-8.533-44.373s29.867-18.347 44.373-8.533c90.027 61.44 193.707 100.267 300.372 112.64 17.493 2.133 30.293 17.92 28.16 35.413-1.28 16.213-14.933 28.16-31.147 28.16z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["briefcase"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":980,"id":147,"name":"briefcase","prevSize":32,"code":60436},"setIdx":2,"setId":2,"iconIdx":754},{"icon":{"paths":["M638.75 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.56 330.667-330.667 330.667zM382.75 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M938.667 394.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M621.265 693.329c-8.107 0-16.213-2.987-22.613-9.387l-86.613-86.613-86.615 86.613c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l109.228-109.227c12.373-12.373 32.853-12.373 45.227 0l109.227 109.227c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sidebar-top"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":981,"id":146,"name":"sidebar-top","prevSize":32,"code":60437},"setIdx":2,"setId":2,"iconIdx":755},{"icon":{"paths":["M512 970.667c-29.867 0-60.16-11.52-82.773-34.133l-72.961-72.107c-17.92-17.92-42.665-27.733-67.839-27.733h-32.427c-88.32 0-160-71.253-160-158.72v-465.494c0-87.467 71.68-158.719 160-158.719h512c88.32 0 160 71.252 160 158.719v465.494c0 87.467-71.68 158.72-160 158.72h-32.427c-25.173 0-49.92 10.24-67.84 27.733l-72.96 72.107c-22.613 22.613-52.907 34.133-82.773 34.133zM256 117.333c-52.907 0-96 42.665-96 94.719v465.495c0 52.48 43.093 94.72 96 94.72h32.427c42.24 0 83.198 17.067 113.065 46.507l72.961 72.107c20.907 20.48 54.613 20.48 75.52 0l72.96-72.107c29.867-29.44 70.827-46.507 113.067-46.507h32c52.907 0 96-42.667 96-94.72v-465.495c0-52.48-43.093-94.719-96-94.719h-512z","M511.996 458.671c-72.533 0-131.412-58.883-131.412-131.416s58.879-131.411 131.412-131.411c72.533 0 131.418 58.878 131.418 131.411s-58.884 131.416-131.418 131.416zM511.996 259.844c-37.12 0-67.413 30.291-67.413 67.411s30.293 67.414 67.413 67.414c37.12 0 67.418-30.294 67.418-67.414s-30.298-67.411-67.418-67.411z","M682.667 700.164c-17.493 0-32-14.507-32-32 0-58.88-62.293-107.093-138.667-107.093s-138.667 48.213-138.667 107.093c0 17.493-14.507 32-32 32s-32-14.507-32-32c0-94.293 90.88-171.093 202.667-171.093s202.667 76.8 202.667 171.093c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-tag"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":982,"id":145,"name":"user-tag","prevSize":32,"code":60438},"setIdx":2,"setId":2,"iconIdx":756},{"icon":{"paths":["M514.948 937.822c-60.16 0-120.746-23.040-166.4-68.693l-193.28-193.28c-46.933-46.933-71.68-111.787-68.693-177.92l10.24-213.334c4.693-101.973 85.333-182.613 187.733-187.733l213.333-10.24c66.133-2.56 130.987 21.76 177.92 68.693l193.28 193.28c91.733 91.734 91.733 241.494 0 333.228l-187.307 187.307c-46.080 45.653-106.24 68.693-166.827 68.693zM200.495 630.195l193.28 193.28c32.427 32.427 75.52 50.347 121.173 50.347s88.747-17.92 121.173-50.347l187.307-187.307c32.427-32.427 50.347-75.52 50.347-121.173s-17.92-88.748-50.347-121.174l-193.28-193.28c-34.133-34.133-81.493-52.48-129.28-49.92l-213.333 10.24c-69.547 2.987-123.733 57.173-127.147 126.293l-10.24 213.334c-2.133 48.213 16.213 95.573 50.347 129.707z","M405.333 544c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM405.333 330.667c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":983,"id":144,"name":"tag","prevSize":32,"code":59796},"setIdx":2,"setId":2,"iconIdx":757},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M362.667 618.671c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-9.813-5.12-14.080-8.96-7.68-8.107-12.373-18.773-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213s5.12-9.813 8.96-14.080c4.267-3.84 8.533-6.827 14.080-8.96 15.36-6.4 34.56-2.987 46.507 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 2.56-0.427 5.547-0.853 8.533-0.427 2.56-1.28 5.12-2.56 7.68-0.853 2.56-2.133 5.12-3.84 7.68-1.28 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.293 12.373z","M512 618.662c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-9.813-5.12-14.080-8.96-7.68-8.107-12.373-18.773-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213s5.12-9.813 8.96-14.080c4.267-3.84 8.533-6.827 14.080-8.96 15.36-6.827 34.56-2.987 46.507 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 2.56-0.427 5.547-0.853 8.533-0.427 2.56-1.28 5.12-2.56 7.68-0.853 2.56-2.133 5.12-3.84 7.68-1.28 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.293 12.373z","M661.333 618.662c-5.547 0-11.093-1.28-16.213-3.413-5.547-2.133-9.813-5.12-14.080-8.96-1.707-2.133-3.413-4.267-5.12-6.4-1.707-2.56-2.987-5.12-3.84-7.68-1.28-2.56-2.133-5.12-2.56-7.68-0.427-2.987-0.853-5.973-0.853-8.533 0-11.093 4.693-22.187 12.373-30.293 4.267-3.84 8.533-6.827 14.080-8.96 15.787-6.827 34.56-2.987 46.507 8.96 7.68 8.107 12.373 19.2 12.373 30.293 0 2.56-0.427 5.547-0.853 8.533-0.427 2.56-1.28 5.12-2.56 7.68-0.853 2.56-2.133 5.12-3.84 7.68-1.28 2.133-3.413 4.267-5.12 6.4-8.107 7.68-19.2 12.373-30.293 12.373z","M362.667 767.996c-5.547 0-11.093-1.276-16.213-3.409s-9.813-5.124-14.080-8.964c-7.68-8.107-12.373-19.2-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213 2.133-5.547 5.12-10.236 8.96-14.076 15.787-15.787 44.8-15.787 60.587 0 7.68 8.107 12.373 19.196 12.373 30.289s-4.693 22.187-12.373 30.293c-8.107 7.68-19.2 12.373-30.293 12.373z","M512 767.996c-11.093 0-22.187-4.693-30.293-12.373-7.68-8.107-12.373-19.2-12.373-30.293 0-5.547 1.28-11.093 3.413-16.213 2.133-5.547 5.12-10.236 8.96-14.076 15.787-15.787 44.8-15.787 60.587 0 3.84 3.84 6.827 8.529 8.96 14.076 2.133 5.12 3.413 10.667 3.413 16.213 0 11.093-4.693 22.187-12.373 30.293-8.107 7.68-19.2 12.373-30.293 12.373z","M661.333 767.996c-11.093 0-22.187-4.693-30.293-12.373-3.84-3.84-6.827-8.533-8.96-14.080-2.133-5.12-3.413-10.667-3.413-16.213s1.28-11.093 3.413-16.213c2.133-5.547 5.12-10.24 8.96-14.080 9.813-9.813 24.747-14.507 38.4-11.52 2.987 0.427 5.547 1.28 8.107 2.56 2.56 0.853 5.12 2.133 7.68 3.84 2.133 1.28 4.267 3.413 6.4 5.12 7.68 8.107 12.373 19.2 12.373 30.293s-4.693 22.187-12.373 30.293c-8.107 7.68-19.2 12.373-30.293 12.373z","M874.667 419.833h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v362.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 181.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-362.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":984,"id":143,"name":"calendar-1","prevSize":32,"code":60439},"setIdx":2,"setId":2,"iconIdx":758},{"icon":{"paths":["M805.585 160h-395.095c-17.493 0-31.573-14.507-31.573-32s14.507-32 32-32h394.668c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M613.508 928h-395.092c-17.493 0-32-14.507-32-32s14.507-32 32-32h394.665c17.493 0 32 14.507 32 32s-14.080 32-31.573 32z","M416.004 928.004c-2.56 0-5.12-0.427-7.68-0.853-17.067-4.267-27.733-21.76-23.467-38.827l192-768c4.267-17.067 21.333-27.733 38.827-23.467 17.067 4.267 27.733 21.76 23.467 38.827l-192 768c-3.84 14.507-16.64 24.32-31.147 24.32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-italic"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":985,"id":142,"name":"text-italic","prevSize":32,"code":60440},"setIdx":2,"setId":2,"iconIdx":759},{"icon":{"paths":["M810.667 842.667h-388.267c-184.747 0-241.067-56.32-241.067-241.067v-388.267c0-17.493 14.507-32 32-32h388.267c184.747 0 241.067 56.32 241.067 241.067v388.267c0 17.493-14.507 32-32 32zM245.333 245.333v356.267c0 148.907 28.16 177.067 177.067 177.067h356.267v-356.267c0-148.907-28.16-177.067-177.067-177.067h-356.267z","M213.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M213.333 245.333h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M810.667 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M938.667 842.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["crop"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":986,"id":141,"name":"crop","prevSize":32,"code":60441},"setIdx":2,"setId":2,"iconIdx":760},{"icon":{"paths":["M744.533 970.667c-48.213 0-98.987-11.52-151.467-33.707-51.2-21.76-102.827-51.627-153.173-87.893-50.347-36.693-98.56-78.080-143.787-122.88-45.227-45.653-86.187-93.867-122.453-143.36-36.693-51.2-66.133-101.973-87.040-151.893-22.187-52.48-33.28-103.68-33.28-151.893 0-33.28 5.973-64.853 17.493-94.293 12.373-30.72 31.147-58.453 57.173-82.773 32.853-32 70.4-48.64 110.507-48.64 16.64 0 33.707 3.84 48.213 10.667 16.64 7.68 30.72 19.2 40.96 34.56l98.987 139.52c8.96 12.373 15.787 24.32 20.48 36.267 5.547 12.8 8.533 25.6 8.533 37.973 0 16.213-4.693 32-13.653 46.933-6.4 11.52-16.213 23.893-28.587 36.267l-29.013 30.293c0.427 1.28 0.853 2.133 1.28 2.987 5.12 8.96 15.36 24.32 34.987 47.36 20.48 23.893 40.533 45.227 60.16 65.707 25.6 25.173 46.080 44.373 65.707 60.587 24.32 20.48 40.107 30.72 49.493 35.413l-0.853 2.133 31.147-30.72c13.227-13.227 26.027-23.040 38.4-29.44 23.467-14.507 53.333-17.067 83.2-4.693 11.093 4.693 23.040 11.093 35.84 20.053l141.653 100.693c15.36 10.667 27.307 24.32 34.133 40.533 6.4 16.213 9.387 31.147 9.387 46.080 0 20.48-4.693 40.96-13.653 60.16s-20.053 35.84-34.133 51.2c-24.32 26.88-50.773 46.080-81.493 58.453-29.44 11.947-61.44 18.347-95.147 18.347zM238.507 117.333c-23.467 0-45.227 10.24-66.133 30.72-19.2 18.347-33.28 38.4-41.813 60.16-8.96 22.187-13.227 45.653-13.227 70.827 0 39.68 9.387 82.773 28.16 127.147 19.2 45.227 46.080 92.16 80.213 139.093s72.96 92.587 115.627 135.68c42.667 42.24 88.747 81.493 136.107 116.053 46.080 33.707 93.44 61.013 140.373 80.64 72.96 31.147 141.227 38.4 197.547 14.933 21.76-8.96 40.96-22.613 58.453-42.24 9.813-10.667 17.493-22.187 23.893-35.84 5.12-10.667 7.68-21.76 7.68-32.853 0-6.827-1.28-13.653-4.693-21.333-0.853-2.133-3.84-7.253-11.947-12.8l-141.653-100.693c-8.533-5.973-16.213-10.24-23.467-13.227-11.093-4.267-18.347-4.693-27.733 1.28-8.533 4.267-16.213 10.667-24.747 19.2l-32.427 32c-16.64 16.213-42.24 20.053-61.867 12.8l-11.52-5.12c-17.493-9.387-37.973-23.893-60.587-43.093-20.907-17.493-42.24-37.547-69.547-64.427-21.333-21.76-41.813-44.373-63.573-69.12-20.053-23.467-34.56-43.52-43.52-60.16l-5.547-12.8c-2.56-9.387-3.413-14.933-3.413-20.907 0-15.36 5.547-29.013 16.213-39.68l32-33.28c8.533-8.533 14.933-16.64 19.2-23.893 3.413-5.547 4.693-10.24 4.693-14.507 0-3.413-1.28-8.533-3.413-13.653-2.56-7.253-7.253-14.507-13.227-23.040l-98.987-139.947c-4.267-5.973-9.387-10.24-15.787-13.227-6.827-2.987-14.080-4.693-21.333-4.693zM595.2 640.427l-6.827 29.013 11.52-29.867c-1.707-0.427-3.413 0-4.693 0.853z","M692.476 363.517c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l151.040-151.040c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-151.040 151.040c-5.973 5.973-14.507 9.387-22.613 9.387z","M843.516 363.517c-8.107 0-16.213-2.987-22.613-9.387l-151.040-151.040c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l151.040 151.040c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call-remove"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":987,"id":140,"name":"call-remove","prevSize":32,"code":60442},"setIdx":2,"setId":2,"iconIdx":761},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M512 768.418c-135.253 0-245.333-110.080-245.333-245.333 0-135.255 110.080-245.335 245.333-245.335 27.307 0 54.613 3.84 80.64 11.946 17.067 5.12 26.453 23.040 21.333 40.107s-23.040 26.453-40.107 21.333c-19.627-5.973-40.533-8.96-61.867-8.96-99.84 0-181.333 81.493-181.333 181.335 0 99.84 81.493 181.333 181.333 181.333s181.333-81.493 181.333-181.333c0-36.267-10.667-70.827-30.293-100.695-9.813-14.507-5.973-34.56 8.96-44.373 14.507-9.813 34.56-5.973 44.373 8.96 26.88 40.535 41.387 87.468 41.387 136.108-0.427 135.253-110.507 244.907-245.76 244.907z","M613.594 358.398c-8.96 0-17.92-3.84-24.32-11.093l-71.253-81.493c-11.52-13.227-10.236-33.707 2.991-45.227s33.702-10.24 45.222 2.987l71.253 81.494c11.52 13.227 10.24 33.707-2.987 45.227-5.973 5.547-13.227 8.107-20.907 8.107z","M530.769 418.981c-9.813 0-19.627-4.693-26.027-13.227-10.24-14.080-7.253-34.133 6.827-44.8l82.773-60.587c14.080-10.24 34.133-7.253 44.8 6.827 10.24 14.080 7.253 34.133-6.827 44.8l-82.773 60.587c-5.547 4.267-12.373 6.4-18.773 6.4z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["refresh-right-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":988,"id":139,"name":"refresh-right-square","prevSize":32,"code":60443},"setIdx":2,"setId":2,"iconIdx":762},{"icon":{"paths":["M334.933 970.667h-115.2c-113.493 0-166.4-52.907-166.4-166.4v-115.2c0-113.493 52.907-166.4 166.4-166.4h115.2c113.493 0 166.4 52.907 166.4 166.4v115.2c0 113.493-52.907 166.4-166.4 166.4zM219.733 586.667c-78.507 0-102.4 23.893-102.4 102.4v115.2c0 78.507 23.893 102.4 102.4 102.4h115.2c78.507 0 102.4-23.893 102.4-102.4v-115.2c0-78.507-23.893-102.4-102.4-102.4h-115.2z","M640.009 970.667c-11.52 0-22.187-6.4-27.733-16.213s-5.547-22.187 0.427-32l44.8-74.667c8.96-15.36 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.187-148.907 330.667-331.093 330.667z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.187 6.4 27.733 16.213s5.547 22.187-0.427 32l-44.8 75.093c-8.96 14.933-28.587 20.053-43.947 10.667-14.933-8.96-20.053-28.587-10.667-43.947l11.52-19.2c-118.187 27.733-206.080 133.547-206.080 259.84 0 17.493-14.507 32-32 32z","M746.667 501.333c-123.307 0-224-100.693-224-224s100.693-224 224-224c123.307 0 224 100.693 224 224s-100.693 224-224 224zM746.667 117.333c-88.32 0-160 71.68-160 160s71.68 160 160 160c88.32 0 160-71.68 160-160s-71.68-160-160-160z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["convertshape-2"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":989,"id":138,"name":"convertshape-2","prevSize":32,"code":60444},"setIdx":2,"setId":2,"iconIdx":763},{"icon":{"paths":["M512.021 970.667c-208.214 0-377.6-169.387-377.6-377.6-1.28-244.48 231.679-448 331.946-524.373 26.88-20.48 64.427-20.48 91.307 0 100.267 77.653 333.227 283.733 331.947 524.8 0 207.787-169.387 377.173-377.6 377.173zM512.021 117.333c-2.133 0-4.693 0.853-6.827 2.56-72.107 55.040-307.628 251.733-306.348 473.173 0 173.227 140.802 313.6 313.602 313.6s313.6-140.373 313.6-313.173c1.28-218.453-234.667-417.707-307.2-473.6-2.56-1.707-4.693-2.56-6.827-2.56z","M512 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M511.996 840.969c-11.947 0-23.467-6.827-29.013-17.92-7.68-15.787-1.28-34.987 14.933-42.667l328.533-159.573c15.787-7.68 34.987-0.853 42.667 14.933s1.284 34.987-14.929 42.667l-328.538 159.573c-4.267 1.707-8.96 2.987-13.653 2.987z","M511.996 627.631c-11.947 0-23.467-6.827-29.013-17.92-7.68-15.787-1.28-34.987 14.933-42.667l314.453-152.748c15.787-7.68 34.987-1.28 42.667 14.934s1.28 34.987-14.933 42.667l-314.453 152.747c-4.267 1.707-8.96 2.987-13.653 2.987z","M511.996 414.292c-11.947 0-23.467-6.827-29.013-17.92-7.68-15.787-1.28-34.987 14.933-42.667l214.618-104.107c15.787-7.68 34.987-0.854 42.667 14.933s1.276 34.987-14.938 42.667l-214.613 104.107c-4.267 1.707-8.96 2.987-13.653 2.987z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["blur"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":990,"id":137,"name":"blur","prevSize":32,"code":60445},"setIdx":2,"setId":2,"iconIdx":764},{"icon":{"paths":["M616.098 309.328c-8.107 0-16.213-2.987-22.613-9.387l-86.613-86.613-86.615 86.613c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l109.228-109.227c12.373-12.373 32.853-12.373 45.227 0l109.227 109.227c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M506.918 637.013c-17.493 0-32-14.507-32-32v-433.92c0-17.493 14.507-32 32-32s32 14.507 32 32v433.92c0 17.92-14.507 32-32 32z","M512 885.333c-219.733 0-373.333-153.6-373.333-373.333 0-17.493 14.507-32 32-32s32 14.507 32 32c0 182.187 127.147 309.333 309.333 309.333s309.333-127.147 309.333-309.333c0-17.493 14.507-32 32-32s32 14.507 32 32c0 219.733-153.6 373.333-373.333 373.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["export"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":991,"id":136,"name":"export","prevSize":32,"code":60446},"setIdx":2,"setId":2,"iconIdx":765},{"icon":{"paths":["M725.333 885.333h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-21.333c0-17.493 14.507-32 32-32 40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667c-17.493 0-32-14.507-32-32v-21.333c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v42.667c0 17.493-14.507 32-32 32-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c17.493 0 32 14.507 32 32 0 188.16-57.173 245.333-245.333 245.333zM117.333 646.827c0.853 146.773 31.147 174.507 181.333 174.507h426.667c142.507 0 177.067-25.173 180.907-153.173-61.013-14.507-106.24-69.547-106.24-134.827s45.653-120.32 106.667-134.827v-14.507c0-152.32-28.587-181.333-181.333-181.333h-426.667c-150.187 0-180.48 27.733-181.333 174.507 61.013 14.507 106.667 69.547 106.667 134.827s-45.653 120.32-106.667 134.827z","M426.667 309.333c-17.493 0-32-14.507-32-32v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 17.493-14.507 32-32 32z","M426.667 622.089c-17.493 0-32-14.507-32-32v-156.587c0-17.495 14.507-32.002 32-32.002s32 14.507 32 32.002v156.587c0 17.92-14.507 32-32 32z","M426.667 885.333c-17.493 0-32-14.507-32-32v-106.667c0-17.493 14.507-32 32-32s32 14.507 32 32v106.667c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ticket"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":992,"id":135,"name":"ticket","prevSize":32,"code":60447},"setIdx":2,"setId":2,"iconIdx":766},{"icon":{"paths":["M512 808.533c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.669 202.667-202.669c111.787 0 202.667 90.882 202.667 202.669s-90.88 202.667-202.667 202.667zM512 467.2c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M557.67 685.222c-8.107 0-16.213-2.987-22.613-9.387l-90.027-90.027c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l90.027 90.027c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M466.308 686.502c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l90.027-90.027c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-90.027 90.027c-6.4 5.973-14.507 9.387-22.613 9.387z","M682.675 970.667h-341.332c-197.12 0-233.813-91.733-243.2-180.907l-32-341.76c-4.693-44.8-5.973-110.933 38.4-160.426 38.4-42.667 101.973-63.147 194.133-63.147h426.665c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 340.907c-9.387 89.6-46.080 181.333-243.2 181.333zM298.676 288c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 341.76c7.253 67.413 25.6 123.307 179.627 123.307h341.332c153.6 0 172.373-55.893 179.627-123.733l32-340.907c5.547-53.333-1.28-88.746-22.187-111.786-25.173-28.16-74.667-42.24-146.773-42.24h-426.665z","M682.667 288c-17.493 0-32-14.507-32-32v-34.133c0-75.947 0-104.533-104.533-104.533h-68.267c-104.533 0-104.533 28.587-104.533 104.533v34.133c0 17.493-14.507 32-32 32s-32-14.507-32-32v-34.133c0-75.093 0-168.533 168.533-168.533h68.267c168.533 0 168.533 93.44 168.533 168.533v34.133c0 17.493-14.507 32-32 32z","M683.115 613.978c-14.507 0-27.307-9.813-31.147-24.32-4.267-17.067 5.973-34.56 23.040-38.827 83.2-20.907 160.427-57.173 229.547-107.52 14.080-10.24 34.56-7.253 44.8 7.253 10.24 14.080 7.253 34.133-7.253 44.8-75.947 55.040-160.427 94.72-251.733 117.76-2.133 0.427-4.693 0.853-7.253 0.853z","M341.364 615.249c-2.56 0-5.12-0.427-7.68-0.853-85.76-20.907-166.4-57.173-240.213-107.52-14.507-9.813-18.347-29.867-8.533-44.373s29.867-18.347 44.373-8.533c67.413 46.080 140.8 78.933 219.307 98.133 17.067 4.267 27.733 21.333 23.467 38.827-2.987 14.507-16.213 24.32-30.72 24.32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-cross"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":993,"id":134,"name":"brifecase-cross","prevSize":32,"code":60448},"setIdx":2,"setId":2,"iconIdx":767},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M725.286 537.165h-114.347c-46.507 0-82.773-36.267-82.773-82.773v-63.576c0-46.507 36.267-82.773 82.773-82.773h63.573c45.653 0 82.773 37.12 82.773 82.773v113.923c0 17.92-14.507 32.427-32 32.427zM610.94 372.042c-13.653 0-18.773 10.24-18.773 18.773v63.576c0 8.533 4.693 18.773 18.773 18.773h82.347v-81.923c0-10.24-8.533-18.773-18.773-18.773h-63.573v-0.427z","M636.16 715.938c-11.093 0-21.76-5.547-27.733-15.787-8.96-15.36-3.84-34.987 11.093-43.947 58.027-34.56 73.813-43.52 73.813-151.040 0-17.493 14.507-32 32-32s32 14.507 32 32c0 131.413-28.587 160.853-104.96 206.080-5.12 2.987-10.667 4.693-16.213 4.693z","M463.369 537.165h-114.345c-46.507 0-82.773-36.267-82.773-82.773v-63.576c0-46.507 36.267-82.773 82.773-82.773h63.573c45.652 0 82.772 37.12 82.772 82.773v113.923c0 17.92-14.080 32.427-32 32.427zM349.45 372.042c-13.653 0-18.773 10.24-18.773 18.773v63.576c0 8.533 4.693 18.773 18.773 18.773h82.345v-81.923c0-10.24-8.532-18.773-18.772-18.773h-63.573v-0.427z","M374.158 715.938c-11.093 0-21.76-5.547-27.733-15.787-8.96-15.36-3.84-34.987 11.093-43.947 58.027-34.56 73.812-43.52 73.812-151.040 0-17.493 14.507-32 32-32s32 14.507 32 32c0 131.413-28.587 160.853-104.959 206.080-5.12 2.987-10.667 4.693-16.213 4.693z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote-up-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":994,"id":133,"name":"quote-up-square","prevSize":32,"code":60449},"setIdx":2,"setId":2,"iconIdx":768},{"icon":{"paths":["M277.333 970.667c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M277.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M746.667 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M746.667 416c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M320 672h-85.333c-73.387 0-117.333-43.947-117.333-117.333v-256c0-73.387 43.947-117.333 117.333-117.333h85.333c73.387 0 117.333 43.947 117.333 117.333v256c0 73.387-43.947 117.333-117.333 117.333zM234.667 245.333c-37.973 0-53.333 15.36-53.333 53.333v256c0 37.973 15.36 53.333 53.333 53.333h85.333c37.973 0 53.333-15.36 53.333-53.333v-256c0-37.973-15.36-53.333-53.333-53.333h-85.333z","M789.333 842.667h-85.333c-73.387 0-117.333-43.947-117.333-117.333v-256c0-73.387 43.947-117.333 117.333-117.333h85.333c73.387 0 117.333 43.947 117.333 117.333v256c0 73.387-43.947 117.333-117.333 117.333zM704 416c-37.973 0-53.333 15.36-53.333 53.333v256c0 37.973 15.36 53.333 53.333 53.333h85.333c37.973 0 53.333-15.36 53.333-53.333v-256c0-37.973-15.36-53.333-53.333-53.333h-85.333z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["candle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":995,"id":132,"name":"candle","prevSize":32,"code":60450},"setIdx":2,"setId":2,"iconIdx":769},{"icon":{"paths":["M734.699 416h-352.425c-23.893 0-47.786-8.106-66.56-23.466l-93.44-74.667c-25.6-20.48-40.107-50.774-40.107-83.2s14.507-63.147 40.107-83.2l93.44-74.667c18.773-14.933 42.666-23.466 66.56-23.466h352.425c58.88 0 106.667 47.787 106.667 106.667v149.333c0 58.88-47.787 106.667-106.667 106.667zM382.273 117.333c-9.813 0-19.2 3.413-26.453 9.387l-93.44 74.667c-10.24 8.107-16.214 20.48-16.214 33.28s5.974 25.173 16.214 33.28l93.44 74.667c7.68 5.973 17.066 9.387 26.453 9.387h352.425c23.467 0 42.667-19.2 42.667-42.667v-149.333c0-23.467-19.2-42.667-42.667-42.667h-352.425z","M642.594 842.667h-352.428c-58.88 0-106.667-47.787-106.667-106.667v-149.333c0-58.88 47.787-106.667 106.667-106.667h352.428c24.32 0 47.787 8.107 66.56 23.467l93.44 74.667c25.6 20.48 40.107 50.773 40.107 83.2s-14.507 63.147-40.107 83.2l-93.44 74.667c-18.773 15.36-42.24 23.467-66.56 23.467zM290.167 544c-23.467 0-42.667 19.2-42.667 42.667v149.333c0 23.467 19.2 42.667 42.667 42.667h352.428c9.813 0 19.2-3.413 26.453-9.387l93.44-74.667c10.24-8.107 16.213-20.48 16.213-33.28s-5.973-25.173-16.213-33.28l-93.44-74.667c-7.68-5.973-17.067-9.387-26.453-9.387h-352.428z","M512 544c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M640 970.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["signpost"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":996,"id":131,"name":"signpost","prevSize":32,"code":60451},"setIdx":2,"setId":2,"iconIdx":770},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M383.62 666.449c-85.333 0-154.453-69.12-154.453-154.453s69.12-154.454 154.453-154.454c37.547 0 73.387 13.655 101.974 38.401 13.227 11.52 14.507 32 2.987 45.226s-32 14.507-45.227 2.987c-16.64-14.507-37.547-22.614-59.734-22.614-49.92 0-90.453 40.534-90.453 90.454s40.533 90.453 90.453 90.453c21.76 0 43.094-8.107 59.734-22.613 13.227-11.52 33.28-10.24 45.227 2.987 11.52 13.227 10.24 33.702-2.987 45.222-28.587 24.747-64.854 38.404-101.974 38.404z","M682.287 666.449c-85.333 0-154.453-69.12-154.453-154.453s69.12-154.454 154.453-154.454c37.547 0 73.387 13.655 101.973 38.401 13.227 11.52 14.507 32 2.987 45.226s-32 14.507-45.227 2.987c-16.64-14.507-37.547-22.614-59.733-22.614-49.92 0-90.453 40.534-90.453 90.454s40.533 90.453 90.453 90.453c21.76 0 43.093-8.107 59.733-22.613 13.227-11.52 33.28-10.24 45.227 2.987 11.52 13.227 10.24 33.702-2.987 45.222-28.587 24.747-64.853 38.404-101.973 38.404z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["creative-commons"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":997,"id":130,"name":"creative-commons","prevSize":32,"code":60452},"setIdx":2,"setId":2,"iconIdx":771},{"icon":{"paths":["M275.167 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M296.494 757.338c-11.947 0-23.040-6.4-28.587-17.92-7.68-15.787-1.28-34.987 14.507-42.667l354.135-174.933c52.053-26.88 81.493-59.307 80.213-89.6-1.28-29.44-32.853-59.733-87.040-82.773l-345.601-149.333c-16.64-7.253-23.893-26.027-17.067-42.24s26.027-23.893 42.24-16.64l345.601 149.333c106.667 45.227 124.587 106.667 125.867 139.093 2.133 56.747-38.827 109.653-115.2 148.907l-354.561 175.36c-4.693 2.56-9.813 3.413-14.507 3.413z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flag-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":998,"id":129,"name":"flag-2","prevSize":32,"code":60453},"setIdx":2,"setId":2,"iconIdx":772},{"icon":{"paths":["M512 973.227c-29.44 0-57.173-14.933-76.8-40.96l-64-85.333c-1.28-1.707-6.4-4.267-8.96-4.267h-20.907c-177.92 0-288-48.213-288-288v-213.333c0-188.587 99.413-288 288-288h256c17.493 0 32 14.507 32 32s-14.507 32-32 32h-256c-152.747 0-224 71.253-224 224v213.333c0 192.853 66.133 224 224 224h21.333c21.76 0 46.507 12.373 59.733 29.867l64 85.333c14.933 19.627 36.267 19.627 51.2 0l64-85.333c14.080-18.773 36.267-29.867 59.733-29.867h21.333c152.747 0 224-71.253 224-224v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 188.587-99.413 288-288 288h-21.333c-3.413 0-6.4 1.707-8.533 4.267l-64 85.333c-19.627 26.027-47.36 40.96-76.8 40.96z","M512 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M682.667 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M341.333 512c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M832 330.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM832 117.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-notif"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":999,"id":128,"name":"message-notif","prevSize":32,"code":60454},"setIdx":2,"setId":2,"iconIdx":773},{"icon":{"paths":["M384 458.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M735.565 970.667h-447.148c-17.493 0-32-14.507-32-32s14.507-32 32-32h447.148c86.187 0 132.693-43.947 138.24-130.133l22.187-352.425c2.133-30.293-6.827-60.16-25.173-84.48-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.68 44.8 6.4c27.307 36.693 40.96 81.493 37.973 127.145l-22.187 352.427c-7.68 120.747-81.493 189.867-202.24 189.867z","M146.76 904.96c-10.24 0-20.48-5.12-26.88-14.507-19.627-29.867-31.146-66.987-33.706-110.080l-22.187-352c-3.413-53.333 14.933-104.533 51.627-143.36 36.267-38.827 87.467-61.013 140.373-61.013 13.653 0 26.88-8.107 33.28-20.907l30.72-61.013c25.173-49.92 88.32-88.747 143.36-88.747h97.707c55.040 0 117.76 38.827 142.933 88.32l30.72 62.293c6.4 11.947 19.2 20.053 33.28 20.053 17.493 0 32 14.507 32 32s-14.507 32-32 32c-37.973 0-72.533-21.333-90.453-55.040l-31.147-62.293c-14.080-28.16-54.187-52.907-85.76-52.907h-97.707c-31.573 0-71.68 24.747-86.187 53.333l-30.293 61.013c-17.92 34.56-52.48 55.893-90.453 55.893-35.84 0-69.12 14.507-93.867 40.533-24.32 26.027-36.693 60.16-34.133 95.573l22.187 352.427c1.706 31.147 9.813 58.453 23.467 78.507 9.813 14.933 5.546 34.56-8.96 44.373-5.547 3.84-11.946 5.547-17.92 5.547z","M511.987 800.004c-37.973 0-75.093-12.8-104.961-36.267-14.080-11.093-16.213-31.147-5.547-44.8 11.093-14.080 31.148-16.213 44.801-5.547 18.773 14.507 41.813 22.613 65.707 22.613 58.88 0 106.667-47.787 106.667-106.667 0-20.48-5.547-40.107-16.213-56.747-9.387-14.933-5.12-34.56 9.813-44.373 14.933-9.387 34.56-5.12 44.373 9.813 17.067 26.88 26.453 58.453 26.453 90.88-0.427 94.72-76.8 171.093-171.093 171.093z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1000,"id":127,"name":"camera-slash","prevSize":32,"code":60455},"setIdx":2,"setId":2,"iconIdx":774},{"icon":{"paths":["M650.261 950.187h-5.547c-189.44 0-280.747-74.667-296.533-241.92-1.707-17.493 11.093-33.28 29.013-34.987 17.067-1.707 33.28 11.52 34.987 29.013 12.373 133.973 75.52 183.893 232.96 183.893h5.547c173.653 0 235.093-61.44 235.093-235.093v-278.188c0-173.653-61.44-235.093-235.093-235.093h-5.547c-158.293 0-221.44 50.773-232.96 187.307-2.133 17.493-17.067 30.72-34.987 29.013-17.92-1.28-30.72-17.067-29.44-34.56 14.507-169.813 106.24-245.76 296.96-245.76h5.547c209.493 0 299.093 89.6 299.093 299.093v278.188c0 209.493-89.6 299.093-299.093 299.093z","M639.962 544h-485.545c-17.493 0-32-14.507-32-32s14.507-32 32-32h485.545c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M249.577 686.938c-8.107 0-16.213-2.987-22.613-9.387l-142.933-142.933c-12.373-12.373-12.373-32.853 0-45.227l142.933-142.934c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-120.32 120.32 120.32 120.32c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["logout"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1001,"id":126,"name":"logout","prevSize":32,"code":60456},"setIdx":2,"setId":2,"iconIdx":775},{"icon":{"paths":["M512 970.667c-29.867 0-60.16-11.52-82.773-34.133l-72.96-72.107c-18.347-17.92-42.241-27.733-67.841-27.733h-32.426c-88.32 0-160-71.253-160-158.72v-465.494c0-87.467 71.68-158.719 160-158.719h512c88.32 0 160 71.252 160 158.719v465.494c0 87.467-71.68 158.72-160 158.72h-32.427c-25.6 0-49.92 9.813-67.84 27.733l-72.96 72.107c-22.613 22.613-52.907 34.133-82.773 34.133zM256 117.333c-52.907 0-96 42.665-96 94.719v465.495c0 52.48 43.093 94.72 96 94.72h32.426c42.667 0 82.774 16.636 113.067 46.502l72.96 72.111c20.907 20.48 54.613 20.48 75.52 0l72.96-72.111c30.293-29.867 70.4-46.502 113.067-46.502h32c52.907 0 96-42.667 96-94.72v-465.495c0-52.48-43.093-94.719-96-94.719h-512z","M442.889 619.093h-114.345c-18.773 0-36.267-8.964-47.36-24.324-10.667-14.507-13.227-32.422-8.107-49.489 14.933-45.653 51.627-70.4 84.053-92.587 34.133-23.040 53.333-37.546 53.333-62.292 0-22.187-17.92-40.109-40.107-40.109s-40.106 17.923-40.106 40.109c0 17.493-14.507 32-32 32s-32-14.507-32-32c0-57.173 46.506-104.109 104.106-104.109s104.106 46.509 104.106 104.109c0 60.159-45.227 90.879-81.492 115.626-22.613 15.36-43.948 29.867-54.614 49.067h104.106c17.493 0 32 14.507 32 32s-14.080 32-31.573 32z","M684.326 619.089c-17.493 0-32-14.507-32-32v-29.44h-83.627c0 0 0 0-0.427 0-20.907 0-40.107-11.089-50.773-29.009-10.667-18.347-10.667-40.964 0-58.884 29.013-49.918 62.72-106.666 93.44-156.16 13.653-21.76 39.68-31.571 64-24.745 24.32 7.253 41.387 29.441 40.96 55.041v150.183h9.387c17.493 0 32 14.507 32 32s-14.507 32-32 32h-8.96v29.444c0 17.493-14.080 31.569-32 31.569zM652.326 368.638c-25.173 40.96-51.2 84.905-74.667 125.011h74.667v-125.011z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["support"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1002,"id":125,"name":"support","prevSize":32,"code":60457},"setIdx":2,"setId":2,"iconIdx":776},{"icon":{"paths":["M512 971.934c-29.44 0-57.173-14.933-76.8-40.96l-64-85.333c-1.28-1.707-6.401-4.267-8.961-4.267h-20.906c-177.92 0-288-48.213-288-288v-213.332c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v213.332c0 17.493-14.507 32-32 32s-32-14.507-32-32v-213.332c0-152.747-71.253-224-224-224h-341.333c-152.747 0-224 71.253-224 224v213.332c0 192.853 66.133 224 224 224h21.333c21.76 0 46.933 12.373 59.733 29.867l64 85.333c14.933 19.627 36.267 19.627 51.2 0 10.667-14.080 30.72-17.067 44.8-6.4s17.067 30.72 6.4 44.8c-19.627 26.027-47.36 40.96-76.8 40.96z","M512 510.707c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.665 42.667-42.665c23.467 0 42.667 19.199 42.667 42.665s-18.773 42.667-42.667 42.667z","M682.667 510.707c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.665 42.667-42.665c23.467 0 42.667 19.199 42.667 42.665s-18.773 42.667-42.667 42.667z","M341.333 510.707c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.665 42.667-42.665c23.467 0 42.667 19.199 42.667 42.665s-18.773 42.667-42.667 42.667z","M776.533 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM776.533 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M938.645 970.662c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-search"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1003,"id":124,"name":"message-search","prevSize":32,"code":60458},"setIdx":2,"setId":2,"iconIdx":777},{"icon":{"paths":["M512 650.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 437.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M789.333 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M213.333 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM213.333 629.333c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 24.747 41.813 70.4 67.413 118.613 67.413s93.867-25.6 118.613-66.987c13.227-21.76 20.053-46.080 20.053-71.68 0-76.373-62.293-138.667-138.667-138.667z","M188.966 842.244c-8.107 0-16.213-2.987-22.613-9.387l-42.24-42.24c-12.373-12.373-12.373-32.858 0-45.231s32.853-12.373 45.226 0l20.48 20.484 68.266-63.151c12.8-11.947 33.28-11.089 45.227 1.711s11.094 33.28-1.706 45.227l-90.88 84.049c-6.4 5.547-14.080 8.538-21.76 8.538z","M725.333 885.333h-362.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h362.667c122.027 0 181.333-59.307 181.333-181.333v-256c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v268.8c0 17.493-14.507 32-32 32s-32-14.507-32-32v-268.8c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v256c0 155.733-89.6 245.333-245.333 245.333z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1004,"id":123,"name":"money-tick","prevSize":32,"code":60459},"setIdx":2,"setId":2,"iconIdx":778},{"icon":{"paths":["M512 789.333c-99.84 0-181.333-81.493-181.333-181.333 0-17.493 14.507-32 32-32s32 14.507 32 32c0 64.853 52.48 117.333 117.333 117.333s117.333-52.48 117.333-117.333c0-17.493 14.507-32 32-32s32 14.507 32 32c0 99.84-81.493 181.333-181.333 181.333z","M221.477 272.211c-8.107 0-16.64-3.413-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l154.88-154.88c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-154.88 154.88c-6.4 5.973-14.507 9.387-22.613 9.387z","M802.522 272.211c-8.107 0-16.213-2.987-22.613-9.387l-154.88-154.88c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l154.88 154.88c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.387-22.613 9.387z","M862.293 452.271c-2.987 0-5.973 0-8.96 0h-682.667c-29.867 0.427-64 0.427-88.747-24.32-19.627-19.2-28.587-49.067-28.587-93.013 0-117.333 85.76-117.333 126.72-117.333h663.893c40.96 0 126.72 0 126.72 117.333 0 44.373-8.96 73.813-28.587 93.013-22.187 22.187-52.053 24.32-79.787 24.32zM180.053 388.271h673.707c19.2 0.427 37.12 0.427 43.093-5.547 2.987-2.987 9.387-13.227 9.387-47.787 0-48.213-11.947-53.333-62.72-53.333h-663.467c-50.773 0-62.72 5.12-62.72 53.333 0 34.56 6.827 44.8 9.387 47.787 5.973 5.547 24.32 5.547 43.093 5.547h10.24z","M635.337 970.667h-257.279c-152.747 0-186.88-90.88-200.107-169.813l-60.16-369.067c-2.987-17.493 8.96-33.707 26.453-36.693 17.067-2.987 33.707 8.96 36.693 26.453l60.16 368.64c12.373 75.52 37.973 116.48 136.96 116.48h257.279c109.653 0 122.027-38.4 136.107-112.64l71.68-373.333c3.413-17.493 20.053-29.013 37.547-25.173 17.493 3.413 28.587 20.053 25.173 37.547l-71.68 373.333c-16.64 86.613-44.373 164.267-198.827 164.267z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-happy"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1005,"id":122,"name":"bag-happy","prevSize":32,"code":60460},"setIdx":2,"setId":2,"iconIdx":779},{"icon":{"paths":["M490.667 394.667h-405.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h405.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h343.893c17.493 0 32 14.507 32 32s-14.507 32-32 32h-343.893c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 132.267 23.467 155.307 157.44 155.307h474.027c133.973 0 157.44-23.040 157.44-155.307v-174.080c0-17.493 14.507-32 32-32s32 14.507 32 32v174.080c0.427 168.533-51.2 219.733-221.013 219.733z","M662.161 488.111c-16.64 0-32.427-5.973-43.52-17.493-13.653-13.653-19.627-33.28-16.64-53.762l8.533-60.587c2.133-15.36 11.52-33.707 22.187-44.373l158.293-158.293c62.72-62.72 117.333-26.88 144.64 0 26.88 26.88 62.72 81.493 0 144.64l-158.293 158.295c-11.093 11.093-29.44 20.053-44.373 22.187l-60.587 8.533c-3.413 0.427-6.827 0.853-10.24 0.853zM863.121 182.615c-8.533 0-16.213 5.973-26.88 16.213l-157.867 158.293c-1.28 1.707-3.84 6.4-4.267 8.533l-8.533 57.6 58.027-8.107c2.133-0.427 6.827-2.987 8.533-4.267l158.293-158.293c20.053-20.053 23.040-31.147 0-53.76-11.093-11.093-19.2-16.213-27.307-16.213z","M890.462 330.243c-2.987 0-5.973-0.427-8.533-1.28-58.453-16.64-104.96-62.72-121.173-121.173-4.693-17.067 5.12-34.56 22.187-39.68 17.067-4.693 34.56 5.12 39.68 22.187 10.667 37.12 40.107 66.56 77.227 77.227 17.067 4.693 26.88 22.613 22.187 39.253-4.693 14.080-17.493 23.467-31.573 23.467z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-edit"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1006,"id":121,"name":"card-edit","prevSize":32,"code":60461},"setIdx":2,"setId":2,"iconIdx":780},{"icon":{"paths":["M571.742 743.258h-107.093c-69.975 0-126.722-58.88-126.722-131.413 0-17.493 14.507-32 32-32s32 14.507 32 32c0 37.12 28.162 67.413 62.722 67.413h107.093c27.733 0 50.773-24.747 50.773-54.613 0-37.12-13.227-44.373-34.987-52.053l-171.948-60.587c-33.28-11.52-78.080-36.267-78.080-112.641 0-65.707 51.627-118.613 114.775-118.613h107.093c69.973 0 126.72 58.88 126.72 131.413 0 17.494-14.507 32.001-32 32.001s-32-14.507-32-32.001c0-37.12-28.16-67.413-62.72-67.413h-107.093c-27.735 0-50.775 24.747-50.775 54.613 0 37.121 13.227 44.374 34.988 52.054l171.947 60.587c33.28 11.52 78.080 36.267 78.080 112.64-0.427 65.28-51.627 118.613-114.773 118.613z","M512 800c-17.493 0-32-14.507-32-32v-512c0-17.493 14.507-32 32-32s32 14.507 32 32v512c0 17.493-14.507 32-32 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dollar-circle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1007,"id":120,"name":"dollar-circle","prevSize":32,"code":60462},"setIdx":2,"setId":2,"iconIdx":781},{"icon":{"paths":["M404.53 882.778c-21.333 0-36.266-7.253-45.226-14.080-17.067-12.373-43.52-44.373-26.88-116.053l24.319-104.96c2.133-8.96-2.56-25.173-8.96-32l-84.906-84.907c-44.8-44.8-40.96-83.627-34.987-102.827 5.973-19.202 25.6-52.909 87.893-63.575l108.8-17.92c8.108-1.28 21.335-11.093 24.748-18.347l60.16-120.32c29.013-58.027 67.413-66.56 87.893-66.56s58.88 8.533 87.893 66.56l60.16 120.32c3.84 7.253 16.636 17.067 24.742 18.347l108.804 17.92c62.293 10.24 81.92 44.374 87.893 63.575 5.973 19.2 9.813 58.027-34.987 102.827l-84.907 84.907c-6.4 6.4-11.093 23.040-8.96 32l24.32 104.96c16.64 72.107-9.818 103.68-26.884 116.053s-55.036 28.16-119.036-9.813l-101.973-60.587c-8.533-5.12-26.458-5.12-34.991 0l-101.969 60.587c-29.44 17.92-54.188 23.893-72.961 23.893zM597.385 205.229c-6.827 0-19.2 8.106-30.72 31.146l-60.16 120.32c-12.8 26.027-43.093 48.214-71.68 52.907l-108.801 17.921c-24.32 4.267-35.414 13.227-37.547 20.053s1.706 20.48 19.199 37.973l84.908 84.907c21.76 21.76 33.28 61.44 26.453 91.307l-24.32 104.96c-7.253 30.293-2.56 46.507 2.133 50.347 4.693 3.413 21.76 2.987 48.215-13.227l102.396-60.587c28.587-17.067 71.684-17.067 99.844 0l101.973 60.587c26.88 15.787 43.947 16.64 48.64 13.227s9.387-19.627 2.133-50.347l-24.32-104.96c-6.827-30.293 4.262-69.547 26.449-91.307l84.911-84.907c17.493-17.493 21.333-31.573 19.2-37.973s-13.231-15.787-37.551-20.053l-108.796-17.921c-28.587-4.693-58.88-26.88-71.68-52.907l-60.16-120.32c-11.52-23.040-23.893-31.146-30.72-31.146z","M341.333 245.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 842.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M128 544h-42.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h42.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1008,"id":119,"name":"star-1","prevSize":32,"code":60463},"setIdx":2,"setId":2,"iconIdx":782},{"icon":{"paths":["M770.948 440.316c-8.107 0-16.213-2.987-22.613-9.387l-236.373-236.372-236.372 236.372c-12.373 12.373-32.853 12.373-45.227 0-12.373-12.372-12.373-32.852 0-45.225l258.985-258.987c12.373-12.373 32.853-12.373 45.227 0l258.987 258.987c12.373 12.373 12.373 32.853 0 45.225-5.973 6.4-14.507 9.387-22.613 9.387z","M512 906.662c-17.493 0-32-14.507-32-32v-718.079c0-17.493 14.507-32 32-32s32 14.507 32 32v718.079c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-3"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1009,"id":118,"name":"arrow-up-3","prevSize":32,"code":60464},"setIdx":2,"setId":2,"iconIdx":783},{"icon":{"paths":["M638.75 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-85.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 231.68-98.56 330.667-330.667 330.667z","M545.263 650.236c-6.4 0-12.373-1.707-17.92-5.547-8.96-5.973-14.080-15.787-14.080-26.453 0-4.693-0.427-9.813-1.28-14.933-2.987-22.613-13.227-42.667-30.293-60.16-17.493-17.493-38.827-28.587-62.293-31.573-3.413-0.427-8.96-0.853-14.080-0.427-10.667 0.853-21.333-3.84-27.733-12.373s-8.107-20.053-4.693-30.293c5.12-14.507 13.227-28.16 22.613-38.827l52.48-65.707c91.307-113.92 275.2-250.453 410.88-304.64 31.147-11.947 64-5.12 86.613 17.493 23.467 23.467 30.293 56.747 17.92 87.040-54.187 135.253-190.72 319.574-304.213 410.454l-66.987 53.76c-13.227 9.387-23.893 15.787-34.987 20.053-3.84 1.28-8.107 2.133-11.947 2.133zM457.37 455.249c26.027 8.533 49.493 23.040 69.547 42.667 19.627 19.627 33.707 42.24 41.813 66.56l50.347-40.533c106.24-85.333 234.24-257.707 285.013-384.427 3.413-8.107-0.427-14.080-3.84-17.92-2.133-2.133-8.107-6.827-17.92-2.987-126.293 50.773-298.667 178.773-384 285.013l-40.96 51.627z","M328.575 800.009c-27.307 0-53.333-10.667-72.96-30.293-22.613-22.613-33.707-53.76-29.867-85.76l8.96-83.627c9.387-86.613 79.787-150.613 168.107-152.32 6.827-0.427 15.36 0 23.467 0.427 38.828 5.12 73.388 22.187 100.695 49.92 27.307 27.307 43.947 59.733 48.64 96.427 1.28 8.107 1.707 16.213 1.707 23.893 0 46.507-17.92 90.453-50.773 123.307-26.88 26.88-61.867 43.52-101.548 48.64l-84.48 8.96c-4.267 0.427-8.107 0.427-11.947 0.427zM409.641 511.582c-1.28 0-2.987 0-4.267 0-49.067 1.28-100.693 34.133-107.093 95.573l-8.96 84.053c-1.28 12.373 2.987 24.747 11.52 33.28s20.48 12.8 32.427 11.52l84.053-8.96c24.748-2.987 46.935-13.653 63.575-30.293 20.48-20.907 32-48.213 32-78.080 0-4.693-0.427-9.813-1.28-14.933-2.987-22.613-13.227-42.667-30.293-60.16-17.493-17.493-38.827-28.587-62.295-31.573-2.133-0.427-5.547-0.427-9.387-0.427z","M674.957 543.142c-17.493 0-32-14.507-32-32 0-71.253-58.027-129.705-129.707-129.705-17.493 0-32-14.507-32-32s14.507-32 32-32c106.667 0 193.707 86.613 193.707 193.705 0 17.493-14.080 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brush-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1010,"id":117,"name":"brush-1","prevSize":32,"code":59797},"setIdx":2,"setId":2,"iconIdx":784},{"icon":{"paths":["M526.933 928h-157.867c-221.44 0-315.733-94.293-315.733-315.733v-243.199c0-221.44 94.293-315.734 315.733-315.734h243.2c221.44 0 315.733 94.294 315.733 315.734v157.866c0 17.493-14.507 32-32 32s-32-14.507-32-32v-157.866c0-186.027-65.707-251.734-251.733-251.734h-243.2c-186.027 0-251.733 65.708-251.733 251.734v243.199c0 186.027 65.706 251.733 251.733 251.733h157.867c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M286.7 647.253c-51.627 0-93.867-42.24-93.867-93.867s42.24-93.867 93.867-93.867c51.627 0 93.867 42.24 93.867 93.867s-42.24 93.867-93.867 93.867zM286.7 523.52c-16.213 0-29.867 13.227-29.867 29.867 0 16.213 13.227 29.867 29.867 29.867s29.867-13.227 29.867-29.867c0-16.64-13.227-29.867-29.867-29.867z","M348.583 585.382c-17.493 0-32-14.507-32-32v-248.745c0-38.827 24.32-70.4 61.44-80.64l123.732-33.706c38.4-10.667 62.72-0.428 75.947 9.812s29.44 30.721 29.44 70.401v241.492c0 17.493-14.507 32-32 32s-32-14.507-32-32v-241.492c0-13.653-2.987-18.774-4.267-19.628s-7.253-2.559-20.48 0.854l-123.306 33.706c-12.8 3.413-14.507 12.373-14.507 18.773v248.746c0 17.92-14.507 32.427-32 32.427z","M513.284 605.858c-51.627 0-93.868-42.24-93.868-93.867s42.241-93.867 93.868-93.867c51.627 0 93.867 42.24 93.867 93.867 0 52.053-42.24 93.867-93.867 93.867zM513.284 482.551c-16.213 0-29.867 13.227-29.867 29.867 0 16.213 13.227 29.867 29.867 29.867s29.867-13.227 29.867-29.867c0-16.64-13.653-29.867-29.867-29.867z","M348.61 408.75c-14.080 0-26.88-9.386-30.72-23.466-4.693-17.067 5.546-34.562 22.613-39.255l226.558-61.868c17.067-4.267 34.564 5.548 39.258 22.615s-5.551 34.56-22.618 39.253l-226.558 61.867c-2.987 0.427-5.973 0.854-8.533 0.854z","M765.449 939.942c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM765.449 666.876c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M927.561 965.542c-8.107 0-16.213-2.991-22.613-9.391l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.391-22.613 9.391z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music-square-search"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":1011,"id":116,"name":"music-square-search","prevSize":32,"code":60465},"setIdx":2,"setId":2,"iconIdx":785},{"icon":{"paths":["M267.953 970.658c-90.88 0-165.12-74.24-165.12-165.12s74.24-165.12 165.12-165.12c90.88 0 165.122 74.24 165.122 165.12s-74.242 165.12-165.122 165.12zM267.953 704.418c-55.893 0-101.12 45.227-101.12 101.12s45.227 101.12 101.12 101.12c55.893 0 101.12-45.227 101.12-101.12s-45.227-101.12-101.12-101.12z","M401.083 837.551c-17.493 0-32-14.507-32-32v-536.745c0-67.413 40.533-120.32 105.387-137.813l266.24-72.533c54.187-14.933 99.84-9.387 131.84 15.36 32.427 24.747 48.64 66.133 48.64 122.88v520.532c0 17.493-14.507 32-32 32s-32-14.507-32-32v-520.959c0-24.747-4.267-57.173-23.467-71.68-20.907-16.213-56.747-9.813-76.373-4.267l-266.24 72.533c-37.12 10.24-58.027 37.973-58.027 76.373v536.745c0 17.067-14.507 31.573-32 31.573z","M756.036 881.929c-90.88 0-165.12-74.24-165.12-165.12s74.24-165.12 165.12-165.12c90.88 0 165.12 74.24 165.12 165.12s-74.24 165.12-165.12 165.12zM756.036 615.689c-55.893 0-101.12 45.227-101.12 101.12s45.227 101.12 101.12 101.12c55.893 0 101.12-45.227 101.12-101.12s-45.227-101.12-101.12-101.12z","M401.058 438.178c-14.080 0-26.88-9.387-30.72-23.468-4.693-17.067 5.12-34.987 22.187-39.68l488.107-133.12c17.067-4.693 34.56 5.547 39.253 22.613s-5.547 34.56-22.613 39.253l-487.68 133.121c-2.987 0.853-5.973 1.28-8.533 1.28z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["music"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1012,"id":115,"name":"music","prevSize":32,"code":60466},"setIdx":2,"setId":2,"iconIdx":786},{"icon":{"paths":["M213.31 778.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l597.335-597.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-597.335 597.332c-6.4 6.4-14.507 9.387-22.613 9.387z","M651.52 778.667h-438.187c-17.493 0-32-14.507-32-32v-438.188c0-17.493 14.507-32 32-32s32 14.507 32 32v406.188h406.187c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M874.667 970.667h-725.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h725.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["received"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1013,"id":114,"name":"received","prevSize":32,"code":60467},"setIdx":2,"setId":2,"iconIdx":787},{"icon":{"paths":["M896 224h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 437.333h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 650.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 864h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["textalign-justifycenter"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1014,"id":113,"name":"textalign-justifycenter","prevSize":32,"code":60468},"setIdx":2,"setId":2,"iconIdx":788},{"icon":{"paths":["M938.667 458.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M492.809 906.658h-218.025c-169.813 0-221.868-51.2-221.868-219.307v-350.721c0-134.4 28.586-209.067 180.906-218.027 12.8-0.427 26.455-0.853 40.961-0.853h474.025c169.813 0 221.867 51.2 221.867 219.307v188.161c0 17.493-14.507 32-32 32s-32-14.507-32-32v-188.161c0-131.84-23.467-155.307-157.867-155.307h-474.025c-13.653 0-26.028 0.427-37.974 0.853-92.587 5.547-119.893 26.453-119.893 154.453v350.721c0 131.84 23.468 155.307 157.868 155.307h218.025c17.493 0 32 14.507 32 32s-14.080 31.573-32 31.573z","M426.667 714.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM768 629.333c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 24.747 41.813 70.4 67.413 118.613 67.413s93.867-25.6 118.613-66.987c13.227-21.76 20.053-46.080 20.053-71.68 0-76.373-62.293-138.667-138.667-138.667z","M743.633 842.244c-8.107 0-16.209-2.987-22.609-9.387l-42.244-42.24c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l20.48 20.48 68.267-63.147c12.8-11.947 33.28-11.093 45.227 1.707s11.093 33.28-1.707 45.227l-90.88 84.049c-6.4 5.547-14.080 8.538-21.76 8.538z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-tick-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1015,"id":112,"name":"card-tick-1","prevSize":32,"code":60469},"setIdx":2,"setId":2,"iconIdx":789},{"icon":{"paths":["M813.645 845.658c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227 154.027-154.027 154.027-404.48 0-558.080-12.373-12.373-12.373-32.853 0-45.226s32.853-12.373 45.227 0c178.773 178.773 178.773 469.759 0 648.532-6.4 6.4-14.507 9.387-22.613 9.387z","M210.36 845.658c-8.107 0-16.213-2.987-22.613-9.387-178.773-178.773-178.773-469.759 0-648.532 12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.226c-154.027 154.027-154.027 404.48 0 558.080 12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M511.949 968.96c-53.333-0.427-104.107-8.964-151.467-25.604-16.64-5.973-25.601-24.316-19.628-40.956s23.894-25.6 40.961-19.627c40.96 14.080 84.48 21.76 130.56 21.76 45.653 0 89.6-7.68 130.133-21.76 16.64-5.547 34.987 2.987 40.96 19.627s-2.987 34.982-19.627 40.956c-47.787 16.64-98.56 25.604-151.893 25.604z","M652.838 142.511c-3.413 0-7.253-0.428-10.667-1.708-40.96-14.080-84.902-21.76-130.556-21.76-45.658 0-89.175 7.68-130.135 21.76-16.64 5.547-34.986-2.985-40.96-19.625s2.986-34.988 19.626-40.961c47.36-16.64 98.562-25.175 151.468-25.175s104.107 8.535 151.467 25.175c16.64 5.973 25.6 24.321 19.627 40.961-4.267 13.227-16.644 21.333-29.871 21.333z","M450.569 715.093c-18.773 0-36.692-4.693-52.479-13.653-36.693-21.333-57.173-63.147-57.173-117.76v-142.933c0-54.612 20.053-96.426 57.173-117.759 36.692-21.333 83.203-17.921 130.563 9.386l123.733 71.255c47.36 27.305 73.387 65.705 73.387 108.372s-26.027 81.067-73.387 108.373l-123.733 71.253c-26.88 15.787-53.764 23.467-78.084 23.467zM450.569 372.907c-7.68 0-14.933 1.706-20.48 5.12-15.785 9.387-25.172 32.001-25.172 62.293v142.933c0 30.293 8.96 53.333 25.172 62.293 15.787 8.96 40.111 5.547 66.564-9.387l123.733-71.253c26.453-15.36 41.387-34.56 41.387-52.907s-14.933-37.547-41.387-52.907l-123.733-71.252c-17.067-9.813-32.858-14.935-46.084-14.935z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play-cricle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1016,"id":111,"name":"play-cricle","prevSize":32,"code":60470},"setIdx":2,"setId":2,"iconIdx":790},{"icon":{"paths":["M213.333 672c-17.493 0-32-14.507-32-32v-298.667c0-17.493 14.507-32 32-32s32 14.507 32 32v298.667c0 17.493-14.507 32-32 32z","M224 970.667c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667zM224 693.333c-58.88 0-106.667 47.787-106.667 106.667s47.787 106.667 106.667 106.667c58.88 0 106.667-47.787 106.667-106.667s-47.787-106.667-106.667-106.667z","M213.333 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM213.333 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M810.667 373.333c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM810.667 117.333c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M218.864 672.013c-2.56 0-5.12-0.427-8.107-0.853-17.067-4.267-27.307-21.76-23.040-38.827 23.467-90.453 104.96-153.6 198.4-153.6 0.427 0 0.427 0 0.853 0l146.346 0.427c0.427 0 0.427 0 0.853 0 94.72 0 179.627-60.162 210.773-149.762 5.973-16.64 23.893-25.6 40.533-19.626s25.6 23.892 19.627 40.532c-40.107 115.625-150.613 191.575-272.213 192.855l-146.772-0.427c-64.427 0-120.32 43.52-136.533 105.813-3.413 14.080-16.64 23.467-30.72 23.467z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hierarchy-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1017,"id":110,"name":"hierarchy-2","prevSize":32,"code":60471},"setIdx":2,"setId":2,"iconIdx":791},{"icon":{"paths":["M554.667 416h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M812.369 631.475c-64.427 0-119.040-47.787-124.16-109.227-3.413-35.413 9.387-69.973 34.987-95.147 21.333-22.187 51.627-34.56 83.627-34.56h89.173c42.24 1.28 74.667 34.56 74.667 75.52v87.893c0 40.96-32.427 74.24-73.387 75.52h-84.907zM894.716 456.542h-87.467c-14.933 0-28.587 5.547-38.4 15.787-12.373 11.947-18.347 28.16-16.64 44.373 2.133 28.16 29.44 50.773 60.16 50.773h83.627c5.547 0 10.667-5.12 10.667-11.52v-87.893c0-6.4-5.12-11.093-11.947-11.52z","M682.667 906.667h-384c-146.773 0-245.333-98.56-245.333-245.333v-298.667c0-131.413 81.066-226.56 206.932-242.346 11.52-1.707 24.748-2.987 38.401-2.987h384c10.24 0 23.467 0.427 37.12 2.56 125.867 14.507 208.213 110.080 208.213 242.773v61.867c0 17.493-14.507 32-32 32h-88.747c-14.933 0-28.587 5.547-38.4 15.787l-0.427 0.427c-11.947 11.52-17.493 27.307-16.213 43.52 2.133 28.16 29.44 50.773 60.16 50.773h83.627c17.493 0 32 14.507 32 32v61.867c0 147.2-98.56 245.76-245.333 245.76zM298.667 181.333c-10.24 0-20.054 0.853-29.867 2.133-93.867 11.947-151.466 80.214-151.466 179.2v298.667c0 110.080 71.253 181.333 181.333 181.333h384c110.080 0 181.333-71.253 181.333-181.333v-29.867h-51.627c-64.427 0-119.040-47.787-124.16-109.227-3.413-34.987 9.387-69.973 34.987-94.72 22.187-22.612 52.053-34.986 84.053-34.986h56.747v-29.867c0-99.84-58.453-168.534-153.173-179.628-10.24-1.707-19.2-1.706-28.16-1.706h-384z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1018,"id":109,"name":"wallet-2","prevSize":32,"code":60472},"setIdx":2,"setId":2,"iconIdx":792},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M522.249 714.667c-111.785 0-202.665-90.88-202.665-202.667s90.88-202.667 202.665-202.667c49.067 0 96.853 17.92 133.547 50.773 13.227 11.52 14.507 32 2.987 45.227s-32 14.507-45.227 2.987c-25.173-22.187-57.6-34.56-91.307-34.56-76.373 0-138.665 62.293-138.665 138.666s62.292 138.667 138.665 138.667c33.28 0 66.133-12.373 91.307-34.56 13.227-11.52 33.707-10.24 45.227 2.987s10.24 33.707-2.987 45.227c-37.12 32-84.48 49.92-133.547 49.92z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copyright"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1019,"id":108,"name":"copyright","prevSize":32,"code":60473},"setIdx":2,"setId":2,"iconIdx":793},{"icon":{"paths":["M627.191 970.667h-230.401c-210.773 0-300.373-90.027-300.373-300.373v-191.573c0-17.493 14.507-32 32-32s32 14.507 32 32v191.573c0 174.507 61.867 236.373 236.373 236.373h229.975c174.507 0 236.373-61.867 236.373-236.373v-191.573c0-17.493 14.507-32 32-32s32 14.507 32 32v191.573c0.427 210.347-89.6 300.373-299.947 300.373z","M511.957 544c-46.933 0-89.599-18.347-119.892-52.053s-44.373-77.653-39.68-124.587l28.587-285.013c1.707-16.213 15.36-29.013 32-29.013h199.252c16.64 0 30.293 12.373 32 29.013l28.587 285.013c4.693 46.933-9.387 90.88-39.68 124.587-31.573 33.707-74.24 52.053-121.173 52.053zM441.557 117.333l-25.599 256.427c-2.987 28.587 5.547 55.467 23.466 75.093 36.267 40.107 108.8 40.107 145.067 0 17.92-20.053 26.453-46.933 23.467-75.093l-25.6-256.427h-140.8z","M781.227 544c-86.613 0-163.84-69.973-172.8-156.16l-29.867-299.093c-0.853-8.96 2.133-17.92 8.107-24.747s14.507-10.667 23.893-10.667h130.133c125.44 0 183.893 52.48 201.387 181.333l11.947 118.613c5.12 50.347-10.24 98.133-43.093 134.4s-78.933 56.32-129.707 56.32zM645.973 117.333l26.453 264.107c5.547 53.333 55.040 98.56 108.8 98.56 32.427 0 61.44-12.373 82.347-34.987 20.48-22.613 29.867-52.907 26.88-85.333l-11.947-117.333c-13.227-96.427-44.373-125.013-137.813-125.013h-94.72z","M240.599 544c-50.773 0-96.853-20.053-129.707-56.32s-48.213-84.053-43.093-134.4l11.52-117.333c17.92-130.133 76.373-182.613 201.814-182.613h130.133c8.96 0 17.492 3.84 23.892 10.667s8.96 15.787 8.107 24.747l-29.865 299.093c-8.96 86.187-86.187 156.16-172.8 156.16zM281.133 117.333c-93.44 0-124.587 28.16-138.24 125.867l-11.52 116.48c-3.413 32.427 6.4 62.72 26.88 85.333s49.493 34.987 82.347 34.987c53.76 0 103.68-45.227 108.8-98.56l26.454-264.107h-94.72z","M618.667 970.667h-213.333c-17.493 0-32-14.507-32-32v-106.667c0-89.6 49.067-138.667 138.667-138.667s138.667 49.067 138.667 138.667v106.667c0 17.493-14.507 32-32 32zM437.333 906.667h149.333v-74.667c0-53.76-20.907-74.667-74.667-74.667s-74.667 20.907-74.667 74.667v74.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shop"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1020,"id":107,"name":"shop","prevSize":32,"code":60474},"setIdx":2,"setId":2,"iconIdx":794},{"icon":{"paths":["M512 800c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M750.972 962.564h-477.865c-77.653 0-148.48-59.733-161.28-136.107l-56.747-340.053c-9.387-52.907 16.64-120.748 58.88-154.455l295.68-236.8c57.172-46.080 147.198-45.653 204.798 0.427l295.68 236.373c41.813 33.707 67.413 101.548 58.88 154.455l-56.747 339.627c-12.8 75.52-85.333 136.533-161.28 136.533zM511.612 125.016c-22.613 0-45.227 6.827-61.867 20.053l-295.678 237.227c-23.893 19.2-40.96 63.575-35.84 93.868l56.747 339.627c7.68 44.8 52.48 82.773 98.133 82.773h477.865c45.653 0 90.453-37.973 98.133-83.2l56.747-339.627c4.693-29.867-12.373-75.095-35.84-93.868l-295.68-236.373c-17.067-13.653-40.107-20.48-62.72-20.48z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1021,"id":106,"name":"home","prevSize":32,"code":60475},"setIdx":2,"setId":2,"iconIdx":795},{"icon":{"paths":["M640 970.667h-256c-88.32 0-160-71.68-160-160v-214.187c0-8.533 3.412-16.64 9.385-22.613s14.081-9.387 22.615-9.387l165.974 0.853c35.84 0 71.68 8.533 104.106 24.747 23.893 11.947 49.493 17.92 76.373 17.92h165.547c17.493 0 32 14.507 32 32v170.667c0 88.32-71.68 160-160 160zM288 628.48v182.187c0 52.907 43.093 96 96 96h256c52.907 0 96-43.093 96-96v-138.667h-133.547c-36.693 0-72.107-8.107-104.96-24.747-23.893-11.947-49.493-17.92-75.52-17.92l-133.974-0.853z","M768 672h-165.547c-36.693 0-72.107-8.107-104.96-24.747-23.893-11.947-49.493-17.92-75.52-17.92l-165.974-0.853c-17.493 0-32-14.507-32-32v-134.4c0-28.16 14.507-63.147 34.56-83.2l90.453-90.454c1.707-1.707 2.987-4.693 2.987-7.253v-67.84c0-17.493 14.507-32 32-32h256c17.493 0 32 14.507 32 32v67.84c0 2.56 1.28 5.546 2.987 7.253l90.453 90.454c20.053 20.053 34.56 55.040 34.56 83.2v177.92c0 17.493-14.507 32-32 32zM288 564.48l133.974 0.853c35.84 0 71.68 8.533 104.106 24.747 23.893 11.947 49.493 17.92 76.373 17.92h133.547v-145.92c0-11.093-7.68-29.867-15.787-37.973l-90.453-90.453c-13.653-13.653-21.76-32.854-21.76-52.48v-35.84h-192v35.84c0 19.627-8.107 38.827-21.76 52.48l-90.453 90.453c-8.107 8.107-15.787 26.88-15.787 37.973v102.4z","M768 714.667c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.493-14.507 32-32 32z","M256 671.147c-17.493 0-32-14.507-32-32v-42.667c0-17.493 14.507-32 32-32s32 14.507 32 32v42.667c0 17.493-14.507 32-32 32z","M618.667 245.333h-213.333c-52.907 0-96-43.093-96-96s43.093-96 96-96h213.333c52.907 0 96 43.093 96 96s-43.093 96-96 96zM405.333 117.333c-17.493 0-32 14.507-32 32s14.507 32 32 32h213.333c17.493 0 32-14.507 32-32s-14.507-32-32-32h-213.333z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["milk"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1022,"id":105,"name":"milk","prevSize":32,"code":60476},"setIdx":2,"setId":2,"iconIdx":796},{"icon":{"paths":["M236.373 832.858c-26.027 0-50.347-8.964-67.84-25.604-22.187-20.907-32.853-52.48-29.013-86.613l15.787-138.24c2.987-26.027 18.773-60.587 37.12-79.36l350.294-370.771c87.467-92.587 178.773-95.147 271.36-7.68s95.147 178.773 7.68 271.36l-350.293 370.771c-17.92 19.2-51.2 37.12-77.227 41.391l-137.387 23.462c-7.253 0.427-13.653 1.284-20.48 1.284zM679.68 124.162c-32.853 0-61.44 20.48-90.453 51.2l-350.294 371.202c-8.533 8.96-18.347 30.293-20.053 42.667l-15.787 138.236c-1.707 14.080 1.707 25.6 9.387 32.853s19.2 9.813 33.28 7.68l137.387-23.462c12.373-2.133 32.853-13.231 41.387-22.191l350.294-370.771c52.907-56.32 72.107-108.373-5.12-180.907-34.133-32.853-63.573-46.507-90.027-46.507z","M739.857 467.191c-0.853 0-2.133 0-2.987 0-133.12-13.227-240.213-114.345-260.693-246.611-2.56-17.493 9.387-33.707 26.88-36.693 17.493-2.56 33.707 9.387 36.693 26.88 16.213 103.253 99.84 182.613 203.947 192.853 17.493 1.707 30.293 17.493 28.587 34.985-2.133 16.213-16.213 28.587-32.427 28.587z","M896 970.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["edit-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1023,"id":104,"name":"edit-2","prevSize":32,"code":60477},"setIdx":2,"setId":2,"iconIdx":797},{"icon":{"paths":["M461.227 723.204c-8.107 0-16.213-2.987-22.613-9.387l-64-64c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l41.387 41.387 148.053-148.053c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-170.667 170.667c-5.973 6.4-14.507 9.387-22.613 9.387z","M597.333 288h-170.667c-40.96 0-117.333 0-117.333-117.333s76.373-117.333 117.333-117.333h170.667c40.96 0 117.333 0 117.333 117.333 0 40.96 0 117.333-117.333 117.333zM426.667 117.333c-42.24 0-53.333 0-53.333 53.333s11.093 53.333 53.333 53.333h170.667c53.333 0 53.333-11.093 53.333-53.333 0-53.333-11.093-53.333-53.333-53.333h-170.667z","M640 970.662h-256c-239.787 0-288-110.080-288-288v-255.999c0-194.56 70.4-277.76 243.627-286.72 17.493-0.853 32.853 12.373 33.707 30.293s-12.8 32.427-30.293 33.28c-121.173 6.827-183.040 43.093-183.040 223.147v255.999c0 157.867 31.147 224 224 224h256c192.853 0 224-66.133 224-224v-255.999c0-180.053-61.867-216.32-183.040-223.147-17.493-0.853-31.147-16.213-30.293-33.707s15.787-31.147 33.707-30.293c173.227 9.387 243.627 92.587 243.627 286.72v255.999c0 178.347-48.213 288.427-288 288.427z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard-tick"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1024,"id":103,"name":"clipboard-tick","prevSize":32,"code":59798},"setIdx":2,"setId":2,"iconIdx":798},{"icon":{"paths":["M596.467 222.717c-9.387 0-18.769-4.265-24.742-11.945l-84.484-105.388c-11.093-13.653-8.96-34.133 5.12-44.8s33.711-8.96 44.804 5.12l84.48 105.388c11.093 13.653 8.96 34.133-5.12 44.8-5.973 4.267-13.231 6.825-20.058 6.825z","M511.974 970.658c-226.56 0-411.308-184.324-411.308-411.311 0-226.985 184.32-411.305 411.308-411.305 29.44 0 59.307 3.414 91.733 11.094 17.067 3.84 28.16 21.334 23.893 38.401-3.84 17.067-20.907 28.16-38.4 23.893-27.307-6.4-52.907-9.388-77.227-9.388-191.574 0-347.308 155.734-347.308 347.305 0 191.573 155.734 347.311 347.308 347.311s347.307-155.738 347.307-347.311c0-74.24-24.32-145.917-70.4-207.357-10.667-14.080-7.68-34.133 6.4-44.8s34.133-7.682 44.8 6.398c54.613 72.533 83.2 157.439 83.2 245.759 0 226.987-184.747 411.311-411.307 411.311z","M528.239 721.933h-97.707c-17.491 0-31.998-14.507-31.998-32s14.507-32 31.998-32h97.707c18.347 0 33.28-14.933 33.28-33.28s-14.933-33.28-33.28-33.28h-97.707c-10.238 0-20.053-5.12-26.027-13.227s-7.679-19.2-4.266-29.013l32.426-97.707c4.267-13.227 16.64-21.76 30.293-21.76h130.56c17.493 0 32 14.507 32 32s-14.507 32-32 32h-107.52l-11.093 33.707h53.333c53.76 0 97.28 43.52 97.28 97.28s-43.52 97.28-97.28 97.28z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["forward-5-seconds"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1025,"id":102,"name":"forward-5-seconds","prevSize":32,"code":60478},"setIdx":2,"setId":2,"iconIdx":799},{"icon":{"paths":["M517.999 674.978c-17.493 0-32-14.507-32-32v-83.627c0-125.013 101.547-226.56 226.987-226.56h83.627c17.493 0 32 14.507 32 32s-14.507 32-32 32h-83.627c-89.6 0-162.987 72.96-162.987 162.56v83.627c0 17.92-14.507 32-32 32z","M518.020 768.004c-17.493 0-32-14.507-32-32v-176.213c0-89.6-72.959-162.562-162.559-162.562h-83.628c-17.493 0-32-14.507-32-32s14.507-32 32-32h83.628c125.012 0 226.559 101.548 226.559 226.562v176.213c0 17.493-14.507 32-32 32z","M304.611 473.596c-8.107 0-16.215-2.987-22.615-9.387l-76.799-76.798c-12.373-12.373-12.373-32.853 0-45.227l76.799-76.8c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-54.185 54.187 54.185 54.187c12.373 12.371 12.373 32.851 0 45.225-6.4 6.4-14.505 9.387-22.612 9.387z","M719.39 473.596c-8.107 0-16.209-2.987-22.609-9.387-12.373-12.373-12.373-32.853 0-45.225l54.182-54.187-54.182-54.187c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l76.8 76.8c12.373 12.373 12.373 32.853 0 45.227l-76.8 76.798c-5.973 6.4-14.511 9.387-22.618 9.387z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1026,"id":101,"name":"arrow-square","prevSize":32,"code":60479},"setIdx":2,"setId":2,"iconIdx":800},{"icon":{"paths":["M424.503 970.662h-92.587c-16.64 0-49.92-5.124-69.12-23.898l-72.533-55.889 39.253-50.778 75.52 58.458c5.547 4.693 17.067 8.107 26.88 8.107h92.587c15.787 0 33.707-13.227 37.12-26.88l59.307-180.48c1.707-4.267 2.987-10.667 0-15.36-2.56-3.84-8.533-5.973-15.787-5.973h-97.707c-16.64 0-32-7.253-43.093-19.627-11.093-12.8-15.787-29.018-13.227-46.511l12.373-78.502c1.707-7.253-3.413-16.218-10.24-18.351-5.547-2.133-14.933 1.711-17.067 4.698l-100.267 148.907-53.333-35.844 99.84-148.907c18.773-28.16 59.733-40.956 91.307-29.009 36.267 11.947 60.16 52.907 51.627 90.453l-10.667 68.267h89.173c28.587 0 53.333 11.947 68.267 33.28 14.507 20.48 17.493 47.36 8.107 72.96l-58.453 177.493c-8.533 40.107-52.053 73.387-97.28 73.387z","M158.71 943.782h-24.32c-66.56 0-80.64-42.667-80.64-78.507v-238.933c0-35.84 14.080-78.511 80.64-78.511h24.32c66.56 0 80.64 42.671 80.64 78.511v238.933c0 35.84-14.080 78.507-80.64 78.507zM119.030 878.071c0.427 0 4.693 1.711 14.933 1.711h24.32c11.093 0 14.934-1.711 15.787-2.138 0-0.427 1.28-3.409 1.28-12.369v-238.933c0-8.96-1.28-12.373-1.707-12.8 0 0.853-4.267-1.711-14.933-1.711h-24.32c-11.093 0-14.934 1.711-15.787 2.138 0 0.427-1.28 3.413-1.28 12.373v238.933c0 8.96 1.28 12.369 1.707 12.796z","M674.569 573.436c-8.533 0-17.067-1.276-25.173-4.262-36.267-11.947-60.16-52.907-51.627-90.453l10.667-68.267h-89.173c-28.587 0-53.333-11.948-68.267-33.281-14.507-20.48-17.493-47.359-8.107-72.959l58.453-177.495c9.813-40.107 53.76-73.385 98.56-73.385h92.587c16.64 0 49.92 5.123 69.12 23.896l72.533 55.891-39.253 50.776-75.52-58.458c-5.547-4.693-17.067-8.104-26.88-8.104h-92.587c-15.787 0-33.707 13.227-37.12 26.88l-59.307 180.48c-1.707 4.267-2.987 10.666 0 15.359 2.56 3.84 8.533 5.974 15.787 5.974h97.707c16.64 0 32 7.252 43.093 19.625 11.093 12.8 15.787 29.017 13.227 46.51l-12.373 78.505c-1.707 7.253 3.413 16.218 10.24 18.351 5.973 2.133 14.933-1.289 17.067-4.702l100.267-148.904 53.333 35.843-99.84 148.905c-15.36 20.48-41.813 33.276-67.413 33.276z","M890.044 476.156h-24.32c-66.56 0-80.64-42.671-80.64-78.51v-238.932c0-35.84 14.080-78.505 80.64-78.505h24.32c66.56 0 80.64 42.665 80.64 78.505v238.932c0 35.839-14.080 78.51-80.64 78.51zM850.364 410.448c0.427 0 4.693 1.708 14.933 1.708h24.32c11.093 0 14.933-1.709 15.787-2.135 0-0.427 1.28-3.415 1.28-12.375v-238.932c0-8.96-1.28-11.944-1.707-12.797 0.427 1.707-4.267-1.708-14.933-1.708h-24.32c-11.093 0-14.933 1.709-15.787 2.135 0 0.427-1.28 3.41-1.28 12.37v238.932c0 8.96 1.28 11.949 1.707 12.802z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-dislike"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1027,"id":100,"name":"like-dislike","prevSize":32,"code":60480},"setIdx":2,"setId":2,"iconIdx":801},{"icon":{"paths":["M727.467 885.333h-430.933c-9.387 0-18.347-4.267-24.747-11.52s-8.533-17.067-6.827-26.453c0.853-5.12 1.707-10.24 1.707-15.36 0-40.96-33.707-74.667-74.667-74.667-5.12 0-10.667 0.427-15.36 1.707-9.387 1.707-19.2-0.853-26.453-6.827s-11.52-14.933-11.52-24.747v-430.933c0-9.387 4.267-18.347 11.52-24.747s16.64-8.533 26.453-6.827c4.693 1.28 10.24 1.707 15.36 1.707 40.96 0 74.667-33.707 74.667-74.667 0-5.12-0.427-10.667-1.707-15.36-1.707-9.387 0.853-19.2 6.827-26.453s14.933-11.52 24.747-11.52h430.933c9.387 0 18.347 4.267 24.747 11.52s8.533 17.067 6.827 26.453c-0.853 5.12-1.707 10.24-1.707 15.36 0 40.96 33.707 74.667 74.667 74.667 5.12 0 10.667-0.427 15.36-1.707 9.387-1.707 19.2 0.853 26.453 6.827s11.52 14.933 11.52 24.747v430.933c0 9.387-4.267 18.347-11.52 24.747s-17.067 8.533-26.453 6.827c-5.12-0.853-10.24-1.707-15.36-1.707-40.96 0-74.667 33.707-74.667 74.667 0 5.12 0.427 10.667 1.707 15.36 1.707 9.387-0.853 19.2-6.827 26.453s-15.36 11.52-24.747 11.52zM330.24 821.333h363.52c5.12-67.84 59.733-122.453 127.573-127.573v-363.52c-67.84-5.12-122.453-59.733-127.573-127.573h-363.52c-5.12 67.84-59.733 122.453-127.573 127.573v363.52c67.84 5.12 122.453 59.733 127.573 127.573z","M192 330.667c-9.387 0-18.347-0.853-27.307-2.56-64.853-13.227-111.36-70.4-111.36-136.107 0-76.373 62.293-138.667 138.667-138.667 65.707 0 122.88 46.507 136.107 110.933 1.707 9.387 2.56 18.347 2.56 27.733 0 76.373-62.293 138.667-138.667 138.667zM192 117.333c-40.96 0-74.667 33.707-74.667 74.667 0 35.413 25.173 66.133 59.733 72.96 4.267 1.28 9.813 1.707 14.933 1.707 40.96 0 74.667-33.707 74.667-74.667 0-5.12-0.427-10.667-1.707-15.36-6.827-34.133-37.547-59.307-72.96-59.307z","M832 330.667c-76.373 0-138.667-62.293-138.667-138.667 0-9.387 0.853-18.347 2.56-27.307 13.227-64.853 70.4-111.36 136.107-111.36 76.373 0 138.667 62.293 138.667 138.667 0 65.707-46.507 122.88-110.933 136.107-9.387 1.707-18.347 2.56-27.733 2.56zM832 117.333c-35.413 0-66.133 25.173-72.96 59.733-0.853 4.693-1.707 9.813-1.707 14.933 0 40.96 33.707 74.667 74.667 74.667 5.12 0 10.667-0.427 15.36-1.707 34.133-6.827 59.307-37.547 59.307-72.96 0-40.96-33.707-74.667-74.667-74.667z","M192 970.667c-76.373 0-138.667-62.293-138.667-138.667 0-65.707 46.507-122.88 110.933-136.107 8.96-1.707 18.347-2.56 27.733-2.56 76.373 0 138.667 62.293 138.667 138.667 0 9.387-0.853 18.347-2.56 27.307-13.227 64.853-70.4 111.36-136.107 111.36zM192 757.333c-5.12 0-10.667 0.427-15.36 1.707-34.133 6.827-59.307 37.547-59.307 72.96 0 40.96 33.707 74.667 74.667 74.667 35.413 0 66.133-25.173 72.96-59.733 0.853-4.693 1.707-9.813 1.707-14.933 0-40.96-33.707-74.667-74.667-74.667z","M832 970.667c-65.707 0-122.88-46.507-136.107-110.933-1.707-8.96-2.56-18.347-2.56-27.733 0-76.373 62.293-138.667 138.667-138.667 9.387 0 18.347 0.853 27.307 2.56 64.853 13.227 111.36 70.4 111.36 136.107 0 76.373-62.293 138.667-138.667 138.667zM832 757.333c-40.96 0-74.667 33.707-74.667 74.667 0 5.12 0.427 10.667 1.707 15.36 6.827 34.133 37.547 59.307 72.96 59.307 40.96 0 74.667-33.707 74.667-74.667 0-35.413-25.173-66.133-59.733-72.96-4.267-1.28-9.813-1.707-14.933-1.707z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["format-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1028,"id":99,"name":"format-square","prevSize":32,"code":60481},"setIdx":2,"setId":2,"iconIdx":802},{"icon":{"paths":["M332.8 916.045h-137.385c-78.080 0-142.081-63.573-142.081-142.080v-247.467c0-17.493 14.507-32 32-32h247.466c81.067 0 142.080 61.013 142.080 142.080v137.387c-0.427 81.067-61.44 142.080-142.080 142.080zM117.333 558.925v215.467c0 43.093 34.988 78.080 78.081 78.080h137.385c45.227 0 78.080-32.853 78.080-78.080v-137.387c0-45.227-32.854-78.080-78.080-78.080h-215.466z","M85.333 558.925c-17.493 0-32-14.507-32-32 0-266.667 54.188-322.558 209.068-414.292 15.36-8.96 34.985-3.84 43.945 11.094 8.96 15.36 3.84 34.985-11.094 43.945-138.24 81.92-177.919 116.052-177.919 359.252 0 17.493-14.507 32-32 32z","M828.634 916.045h-137.387c-78.080 0-142.080-63.573-142.080-142.080v-247.467c0-17.493 14.507-32 32-32h247.467c81.067 0 142.080 61.013 142.080 142.080v137.387c0 81.067-61.013 142.080-142.080 142.080zM613.594 558.925v215.467c0 43.093 34.987 78.080 78.080 78.080h137.387c45.227 0 78.080-32.853 78.080-78.080v-137.387c0-45.227-32.853-78.080-78.080-78.080h-215.467z","M581.5 558.925c-17.493 0-32-14.507-32-32 0-266.667 54.187-322.558 209.067-414.292 15.36-8.96 34.987-3.84 43.947 11.094 8.96 15.36 3.84 34.985-11.093 43.945-138.24 81.92-177.92 116.052-177.92 359.252 0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote-up"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1029,"id":98,"name":"quote-up","prevSize":32,"code":60482},"setIdx":2,"setId":2,"iconIdx":803},{"icon":{"paths":["M638.75 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.56 330.667-330.667 330.667zM382.75 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M340.083 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.080 32-32 32z","M638.703 653.222c-8.107 0-16.213-2.987-22.613-9.387l-109.227-109.227c-12.373-12.373-12.373-32.853 0-45.227l109.227-109.228c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-86.187 86.614 86.613 86.613c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-23.040 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sidebar-left"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1030,"id":97,"name":"sidebar-left","prevSize":32,"code":60483},"setIdx":2,"setId":2,"iconIdx":804},{"icon":{"paths":["M512 923.738c-9.387 0-23.467-0.853-36.693-5.547-162.987-55.893-421.973-253.867-421.973-547.412 0-149.333 120.747-270.508 269.227-270.508 72.107 0 139.52 28.161 189.44 78.508 49.92-50.347 117.333-78.508 189.44-78.508 148.48 0 269.227 121.174 269.227 270.508 0 51.627-7.68 102.399-23.040 151.039-5.12 16.64-23.467 26.453-40.107 20.907-17.067-5.12-26.027-23.462-20.907-40.102 13.227-42.24 20.053-86.616 20.053-131.416 0-113.92-92.16-206.508-205.227-206.508-64.853 0-125.013 30.293-163.84 82.346-11.947 16.213-39.253 16.213-51.2 0-39.253-52.48-98.987-82.346-163.84-82.346-113.067 0-205.227 92.588-205.227 206.508 0 291.839 280.32 453.545 378.88 487.252 2.56 0.853 8.533 2.133 15.787 2.133 17.493 0 32 14.507 32 32s-14.507 31.147-32 31.147z","M756.868 928.004c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM756.868 654.938c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M919.061 953.6c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l42.667 42.667c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-search"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1031,"id":96,"name":"heart-search","prevSize":32,"code":60484},"setIdx":2,"setId":2,"iconIdx":805},{"icon":{"paths":["M618.667 394.667h-533.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h533.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h343.893c17.493 0 32 14.507 32 32s-14.507 32-32 32h-343.893c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 132.267 23.467 155.307 157.44 155.307h474.027c133.973 0 157.44-23.040 157.44-155.307v-88.747c0-17.493 14.507-32 32-32s32 14.507 32 32v88.747c0.427 168.533-51.2 219.733-221.013 219.733z","M853.333 437.333c-4.267 0-8.107-0.853-12.373-2.56-11.947-5.12-19.627-16.64-19.627-29.44v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v178.773l30.72-30.72c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-5.973 5.973-14.080 9.387-22.613 9.387z","M853.312 437.329c-8.107 0-16.213-2.987-22.613-9.387l-85.333-85.332c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.225-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-receive"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1032,"id":95,"name":"card-receive","prevSize":32,"code":60485},"setIdx":2,"setId":2,"iconIdx":806},{"icon":{"paths":["M714.667 970.667h-192c-177.067 0-256-78.933-256-256v-192c0-177.067 78.933-256 256-256h192c177.067 0 256 78.933 256 256v192c0 177.067-78.933 256-256 256zM522.667 330.667c-141.653 0-192 50.347-192 192v192c0 141.653 50.347 192 192 192h192c141.653 0 192-50.347 192-192v-192c0-141.653-50.347-192-192-192h-192z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.187 6.4 27.733 16.213s5.547 22.187-0.427 32l-44.8 75.093c-8.96 14.933-28.587 20.053-43.947 10.667-14.933-8.96-20.053-28.587-10.667-43.947l11.52-19.2c-118.187 27.733-206.080 133.547-206.080 259.84 0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rotate-right-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1033,"id":94,"name":"rotate-right-1","prevSize":32,"code":60486},"setIdx":2,"setId":2,"iconIdx":807},{"icon":{"paths":["M759.040 970.249h-494.080c-116.907 0-211.627-95.147-211.627-212.053v-316.16c0-58.026 35.84-130.986 81.92-166.826l229.973-179.2c69.12-53.76 179.627-56.32 251.307-5.973l263.68 184.747c50.773 35.413 90.453 111.36 90.453 173.226v310.613c0 116.48-94.72 211.627-211.627 211.627zM404.48 146.356l-229.973 179.2c-30.293 23.893-57.173 78.080-57.173 116.48v316.16c0 81.493 66.133 148.053 147.627 148.053h494.080c81.493 0 147.627-66.133 147.627-147.627v-310.613c0-40.96-29.44-97.706-63.147-120.746l-263.68-184.747c-48.64-34.133-128.853-32.427-175.36 3.84z","M320.018 735.996c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l136.532-136.533c6.827-6.827 15.787-10.24 25.6-9.387 9.387 0.853 17.92 5.973 23.467 14.080l46.507 69.973 151.467-151.467c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-179.2 179.2c-6.827 6.827-15.787 10.24-25.6 9.387-9.387-0.853-17.92-5.973-23.467-14.080l-46.507-69.973-108.799 108.8c-6.4 6.4-14.507 9.387-22.613 9.387z","M704 608c-17.493 0-32-14.507-32-32v-53.333h-53.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-trend-up"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1034,"id":93,"name":"home-trend-up","prevSize":32,"code":60487},"setIdx":2,"setId":2,"iconIdx":808},{"icon":{"paths":["M682.667 970.667h-554.667c-40.96 0-74.667-33.707-74.667-74.667v-554.667c0-188.587 99.413-288 288-288h341.333c188.587 0 288 99.413 288 288v341.333c0 188.587-99.413 288-288 288zM341.333 117.333c-152.747 0-224 71.253-224 224v554.667c0 5.973 4.693 10.667 10.667 10.667h554.667c152.747 0 224-71.253 224-224v-341.333c0-152.747-71.253-224-224-224h-341.333z","M725.333 437.333h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 650.667h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-text-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1035,"id":92,"name":"message-text-1","prevSize":32,"code":60488},"setIdx":2,"setId":2,"iconIdx":809},{"icon":{"paths":["M512 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 800c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M512 629.333c-17.493 0-32-14.507-32-32v-128c0-182.187 148.48-330.667 330.667-330.667h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-147.2 0-266.667 119.467-266.667 266.667v128c0 17.493-14.507 32-32 32z","M512 629.333c-17.493 0-32-14.507-32-32v-128c0-147.2-119.467-266.667-266.667-266.667h-128c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c182.187 0 330.667 148.48 330.667 330.667v128c0 17.493-14.507 32-32 32z","M170.644 287.997c-8.107 0-16.215-2.987-22.615-9.387l-85.333-85.333c-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.856-12.373 45.229 0s12.373 32.853 0 45.227l-62.721 62.72 62.721 62.72c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.508 9.387-22.615 9.387z","M853.312 287.997c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l62.72-62.72-62.72-62.72c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1036,"id":91,"name":"arrow","prevSize":32,"code":60489},"setIdx":2,"setId":2,"iconIdx":810},{"icon":{"paths":["M725.333 885.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c122.027 0 181.333-59.307 181.333-181.333v-256c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v85.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-85.333c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v256c0 155.733-89.6 245.333-245.333 245.333z","M512 650.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 437.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M789.333 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M362.667 797.44c-17.493 0-32-14.507-32-32v-54.613c0-9.387-7.679-17.493-17.492-17.493h-227.841c-17.493 0-32-14.507-32-32s14.507-32 32-32h227.841c44.8 0 81.492 36.693 81.492 81.493v54.613c0 17.493-14.507 32-32 32z","M137.363 745.374c-8.107 0-16.212-2.987-22.612-9.387l-52.055-52.049c-12.373-12.373-12.373-32.858 0-45.231l52.055-52.053c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-29.44 29.44 29.44 29.44c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.508 9.387-22.615 9.387z","M362.667 918.605h-227.841c-44.8 0-81.492-36.693-81.492-81.493v-54.613c0-17.493 14.507-32 32-32s32 14.507 32 32v54.613c0 9.387 7.679 17.493 17.492 17.493h227.841c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M310.561 970.667c-8.107 0-16.215-2.987-22.615-9.387-12.373-12.373-12.373-32.858 0-45.231l29.44-29.436-29.44-29.44c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l52.055 52.053c12.373 12.373 12.373 32.853 0 45.227l-52.055 52.053c-5.973 6.4-14.505 9.387-22.612 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-change"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":1037,"id":90,"name":"money-change","prevSize":32,"code":60490},"setIdx":2,"setId":2,"iconIdx":811},{"icon":{"paths":["M512 544c-135.253 0-245.333-110.080-245.333-245.333s110.080-245.333 245.333-245.333c135.253 0 245.333 110.080 245.333 245.333s-110.080 245.333-245.333 245.333zM512 117.333c-99.84 0-181.333 81.493-181.333 181.333s81.493 181.333 181.333 181.333c99.84 0 181.333-81.493 181.333-181.333s-81.493-181.333-181.333-181.333z","M878.511 970.667c-17.493 0-32-14.507-32-32 0-147.2-150.182-266.667-334.502-266.667-184.322 0-334.508 119.467-334.508 266.667 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-182.187 178.773-330.667 398.508-330.667 219.733 0 398.502 148.48 398.502 330.667 0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1038,"id":89,"name":"user","prevSize":32,"code":60491},"setIdx":2,"setId":2,"iconIdx":812},{"icon":{"paths":["M725.333 970.667h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c110.080 0 181.333-71.253 181.333-181.333v-213.333c0-97.707-60.587-170.667-151.040-181.333h-456.96c-11.947 0-16.213 0-23.893 2.56-2.133 0.853-4.267 1.281-6.4 1.281-94.293 11.093-151.040 77.225-151.040 177.492v42.667c0 17.493-14.507 32-32 32s-32-14.507-32-32v-42.667c0-130.56 80.213-224.854 204.373-240.64 16.213-4.693 28.16-4.693 40.96-4.693h460.8c128 14.933 211.2 113.493 211.2 245.333v213.333c0 146.773-98.56 245.333-245.333 245.333z","M264.526 334.932c-8.533 0-16.64-3.412-22.613-9.385-8.533-8.533-11.52-21.334-7.68-32.854 6.827-20.053 19.2-32.425 33.28-46.505l136.107-140.375c70.398-70.4 189.012-70.4 258.985-0.427l76.8 76.802c28.16 28.16 46.080 66.985 51.627 112.638 1.28 8.96-1.707 18.348-7.68 25.175s-14.933 10.667-23.893 10.667h-460.798c-11.947 0-16.213 0-23.893 2.56-3.413 1.28-6.827 1.705-10.24 1.705zM336.633 266.666h382.292c-5.12-13.653-13.227-27.306-24.747-39.252l-76.8-76.8c-45.653-45.653-122.453-45.653-168.107 0l-112.638 116.052z","M938.667 736h-128c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32h-128c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333h128c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M247.45 945.067c-93.013 0-168.533-75.52-168.533-168.533s75.52-168.533 168.533-168.533c93.013 0 168.533 75.52 168.533 168.533s-75.52 168.533-168.533 168.533zM247.45 672c-57.6 0-104.533 46.933-104.533 104.533s46.933 104.533 104.533 104.533c57.6 0 104.533-46.933 104.533-104.533s-46.933-104.533-104.533-104.533z","M85.31 970.667c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.858 0-45.231l42.667-42.667c12.373-12.373 32.853-12.373 45.227 0s12.373 32.858 0 45.231l-42.667 42.667c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet-search"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1039,"id":88,"name":"wallet-search","prevSize":32,"code":60492},"setIdx":2,"setId":2,"iconIdx":813},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M410.453 770.133c-67.413 0-122.453-55.036-122.453-122.449s55.040-122.453 122.453-122.453c67.413 0 122.453 55.040 122.453 122.453s-55.040 122.449-122.453 122.449zM410.453 589.658c-32 0-58.453 26.027-58.453 58.453 0 32 26.027 58.453 58.453 58.453 32 0 58.453-26.027 58.453-58.453s-26.453-58.453-58.453-58.453z","M500.915 679.68c-17.493 0-32-14.507-32-32v-316.159c0-17.493 14.507-32 32-32s32 14.507 32 32v316.159c0 17.92-14.507 32-32 32z","M662.199 487.667c-8.96 0-18.351-1.707-27.738-4.693l-99.836-33.28c-37.547-12.373-65.711-51.625-65.711-91.305v-26.453c0-26.88 11.098-50.347 30.724-64.427s45.222-17.494 70.822-8.961l99.844 33.281c37.547 12.373 65.702 51.625 65.702 91.305v26.453c0 26.88-11.089 50.347-30.716 64.427-12.373 8.96-27.307 13.653-43.093 13.653zM542.306 317.855c-2.133 0-4.267 0.425-5.547 1.279-2.56 1.707-4.271 6.402-4.271 12.375v26.453c0 11.947 11.093 26.879 22.187 30.719l99.844 33.281c5.547 1.707 10.667 1.707 13.227 0s4.262-6.402 4.262-12.375v-26.453c0-11.947-11.093-26.879-22.187-30.719l-99.836-33.281c-2.56-0.853-5.547-1.279-7.68-1.279z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["audio-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1040,"id":87,"name":"audio-square","prevSize":32,"code":60493},"setIdx":2,"setId":2,"iconIdx":814},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M512 554.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M682.667 554.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M341.333 554.667c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["more-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1041,"id":86,"name":"more-circle","prevSize":32,"code":60494},"setIdx":2,"setId":2,"iconIdx":815},{"icon":{"paths":["M630.997 828.582c-4.693 0-9.813-1.28-14.080-3.413-15.787-8.107-22.187-27.307-14.507-43.093l91.307-182.187c5.547-10.667 16.64-17.493 28.587-17.493s23.040 6.827 28.587 17.92l91.307 182.187c8.107 15.787 1.707 34.987-14.507 43.093-15.787 8.107-34.987 1.707-43.093-14.507l-62.293-125.013-62.293 125.013c-5.973 11.093-17.493 17.493-29.013 17.493z","M797.018 796.169h-150.182c-17.493 0-32-14.507-32-32s14.507-32 32-32h150.182c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M721.911 970.658c-136.96 0-248.747-111.36-248.747-248.747s111.36-248.747 248.747-248.747c136.96 0 248.747 111.36 248.747 248.747s-111.36 248.747-248.747 248.747zM721.911 537.591c-101.973 0-184.747 82.773-184.747 184.747s82.773 184.747 184.747 184.747c101.547 0 184.747-82.773 184.747-184.747s-82.773-184.747-184.747-184.747z","M207.36 541.879c-47.36 0-84.907-13.231-111.36-38.831-28.16-27.307-42.667-68.693-42.667-122.025v-167.253c0-103.68 57.173-160.854 160.853-160.854h167.253c53.333 0 94.293 14.080 122.027 42.667 26.88 27.733 40.107 67.842 38.827 119.042v166.399c1.28 52.052-11.947 93.016-39.68 120.749s-68.693 40.529-121.6 39.676h-166.4c-2.987 0.427-5.12 0.431-7.253 0.431zM214.187 117.344c-68.693 0-96.853 28.161-96.853 96.854v167.253c0 35.413 7.68 61.011 23.040 75.945 14.933 14.507 38.828 20.911 72.534 20.484h168.106c35.84 0.853 60.587-6.4 75.52-21.333s21.76-40.108 20.907-74.668v-168.107c0.853-34.133-5.973-58.455-20.48-73.388-14.933-15.36-40.534-23.039-75.947-23.039h-166.826z","M383.977 281.583h-173.227c-17.493 0-32-14.507-32-32s14.507-32 32-32h173.227c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M297.833 281.596c-17.493 0-32-14.507-32-32v-29.013c0-17.493 14.507-32 32-32s32 14.507 32 32v29.013c0 17.493-14.507 32-32 32z","M210.75 416.419c-17.493 0-32-14.507-32-32s14.507-32 32-32c54.187 0 98.134-46.080 98.134-103.253 0-17.493 14.507-32 32-32s32 14.507 32 32c0 92.16-72.534 167.253-162.134 167.253z","M384.445 416.43c-39.68 0-77.653-20.053-104.533-55.466-10.667-14.080-7.68-34.135 6.4-44.802s34.133-7.679 44.8 6.401c14.507 19.627 33.707 30.295 53.333 30.295 17.493 0 32 14.507 32 32s-14.507 31.573-32 31.573z","M384 970.667c-182.187 0-330.667-148.48-330.667-330.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 126.293 87.893 232.107 206.080 259.84l-11.52-19.2c-8.96-15.36-4.266-34.987 11.094-43.947 14.933-8.96 34.987-4.267 43.947 11.093l44.799 74.667c5.973 9.813 5.974 22.187 0.427 32-5.973 9.813-16.64 16.213-28.16 16.213z","M938.684 416c-17.493 0-32-14.507-32-32 0-126.293-87.893-232.108-206.080-259.841l11.52 19.201c8.96 15.36 4.267 34.988-11.093 43.948-14.933 8.96-34.987 4.267-43.947-11.094l-44.8-74.667c-5.973-9.813-5.973-22.187-0.427-32 5.547-10.24 16.213-16.213 27.733-16.213 182.187 0 330.667 148.48 330.667 330.667 0.427 17.493-14.080 32-31.573 32z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["translate"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":1042,"id":85,"name":"translate","prevSize":32,"code":60495},"setIdx":2,"setId":2,"iconIdx":816},{"icon":{"paths":["M469.333 757.329c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l30.72-30.72h-178.773c-17.493 0-32-14.507-32-32s14.507-32 32-32h178.773l-30.72-30.72c-6.4-6.4-9.387-14.507-9.387-22.613s2.987-16.213 9.387-22.613c12.373-12.373 32.853-12.373 45.227 0l85.333 85.333c5.547 5.547 8.533 12.8 8.96 19.627 0 2.133 0 4.693 0 6.827-0.853 5.973-3.413 11.52-7.68 16.64-0.427 0.427-1.28 1.28-1.707 1.707l-85.333 85.333c-5.973 6.827-14.080 9.813-22.187 9.813z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-forward"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1043,"id":84,"name":"document-forward","prevSize":32,"code":60496},"setIdx":2,"setId":2,"iconIdx":817},{"icon":{"paths":["M512 650.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 437.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M789.333 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M213.333 970.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM213.333 629.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M170.662 842.658c-10.667 0-21.334-5.547-27.307-15.36-8.96-14.933-4.266-34.991 11.094-43.951l32.427-19.622c2.987-1.707 5.12-5.547 5.12-8.96v-39.68c0-17.493 14.507-32 32-32s32 14.507 32 32v39.68c0 26.027-14.079 50.773-36.265 64l-32.427 19.627c-5.12 2.987-11.094 4.267-16.641 4.267z","M725.333 885.333h-362.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h362.667c122.027 0 181.333-59.307 181.333-181.333v-256c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v264.533c0 17.493-14.507 32-32 32s-32-14.507-32-32v-264.533c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v256c0 155.733-89.6 245.333-245.333 245.333z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-time"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1044,"id":83,"name":"money-time","prevSize":32,"code":60497},"setIdx":2,"setId":2,"iconIdx":818},{"icon":{"paths":["M512 714.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c147.2 0 266.667-119.467 266.667-266.667s-119.467-266.667-266.667-266.667c-147.2 0-266.667 119.467-266.667 266.667 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-182.187 148.48-330.667 330.667-330.667s330.667 148.48 330.667 330.667c0 182.187-148.48 330.667-330.667 330.667z","M512 970.667c-17.493 0-32-14.507-32-32v-256c0-17.493 14.507-32 32-32s32 14.507 32 32v256c0 17.493-14.507 32-32 32z","M640 842.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["aquarius"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1045,"id":82,"name":"aquarius","prevSize":32,"code":60498},"setIdx":2,"setId":2,"iconIdx":819},{"icon":{"paths":["M514.948 937.805c-60.16 0-120.746-23.040-166.4-68.693l-193.28-193.28c-46.933-46.933-71.68-111.787-68.693-177.92l10.24-213.759c4.693-101.973 85.333-182.613 187.733-187.733l213.333-10.24c66.56-2.987 130.987 21.76 177.92 68.693l193.28 193.28c91.733 91.732 91.733 241.492 0 333.225l-187.307 187.307c-46.080 46.080-106.24 69.12-166.827 69.12zM200.495 630.178l193.28 193.28c66.986 66.987 175.786 66.987 242.773 0l187.307-187.307c66.987-66.987 66.987-175.787 0-242.772l-193.707-192.853c-34.133-34.133-80.64-52.053-129.707-49.92l-213.333 10.24c-69.12 2.987-123.307 57.173-126.72 126.293l-10.24 213.759c-2.133 47.787 16.213 95.147 50.347 129.28z","M405.333 544c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM405.333 330.667c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M554.645 757.329c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l170.667-170.667c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-170.667 170.667c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1046,"id":81,"name":"tag-2","prevSize":32,"code":60499},"setIdx":2,"setId":2,"iconIdx":820},{"icon":{"paths":["M869.525 901.547c-8.533 0-16.64-3.413-22.613-9.387l-272.213-272.213c-12.373-12.373-12.373-32.853 0-45.227l329.813-329.813c8.107-8.107 20.48-11.093 31.573-8.107 11.093 3.413 19.622 12.373 22.182 23.467 8.107 36.267 12.378 76.8 12.378 123.733v256c0 118.187-24.747 197.973-78.507 252.16-5.973 5.973-14.933 7.253-22.613 9.387zM642.534 597.333l224.431 224.427c26.88-41.387 39.68-100.267 39.68-181.76v-256c0-17.493-0.431-33.707-1.711-49.067l-262.4 262.4z","M267.52 959.147c-2.56 0-4.692-0.427-7.252-0.853-141.227-32.427-206.934-133.547-206.934-318.293v-256c0-231.68 98.987-330.667 330.667-330.667h256c184.747 0 285.867 65.707 318.293 206.934 2.56 10.667-0.853 22.186-8.533 29.866l-659.627 659.627c-5.973 5.973-14.080 9.387-22.613 9.387zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 148.053 40.96 222.293 140.374 251.733l633.6-633.6c-29.013-99.413-103.68-140.374-251.733-140.374h-255.573v-0.426z","M640.017 970.662h-256.001c-46.933 0-87.040-3.84-123.733-12.373-11.52-2.56-20.481-11.093-23.468-22.187-3.413-11.093 0-23.040 8.107-31.573l329.815-329.813c12.373-12.373 32.853-12.373 45.227 0l272.213 272.213c5.973 5.973 9.387 14.080 9.387 22.613s-3.413 16.64-9.387 22.613c-54.187 53.76-133.973 78.507-252.16 78.507zM334.95 904.956c15.36 1.28 31.573 1.707 49.066 1.707h256.001c81.92 0 140.373-12.8 181.76-39.68l-224.427-224.427-262.401 262.4z","M389.076 567.893c-26.88 0-53.76-9.813-75.094-29.867-67.84-64.427-95.145-135.251-78.932-204.371 16.213-70.827 78.079-118.614 154.026-118.614 75.948 0 137.815 47.787 154.028 118.614 15.787 69.547-11.52 139.945-79.36 204.371-20.907 19.627-47.788 29.867-74.668 29.867zM297.343 347.735c-13.653 58.027 25.6 110.083 61.013 143.789 17.493 16.636 44.374 16.636 61.44 0 34.988-33.28 74.241-85.336 61.015-143.789-11.52-50.773-56.748-69.12-91.735-69.12s-79.786 18.347-91.733 69.12z","M390.417 404.916c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667h0.427c23.467 0 42.667 19.2 42.667 42.667s-19.627 42.667-43.094 42.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["map-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1047,"id":80,"name":"map-1","prevSize":32,"code":60500},"setIdx":2,"setId":2,"iconIdx":821},{"icon":{"paths":["M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-426.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v426.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-426.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M789.333 394.667h-85.333c-64.853 0-117.333-52.48-117.333-117.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 29.44 23.893 53.333 53.333 53.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M438.14 798.72c-37.548-0.853-123.308-46.507-149.335-128-18.347-56.747 2.988-131.836 68.694-153.169 28.16-8.96 57.173-5.12 80.214 9.387 23.040-14.507 52.48-18.347 81.067-9.387 65.707 21.333 87.040 95.996 69.547 153.169-26.453 84.48-117.333 128-150.187 128zM349.82 651.098c17.92 55.040 78.933 82.342 90.027 83.622 11.52-1.28 71.253-30.716 87.467-83.622 8.533-28.16-0.427-64-28.16-72.96-11.093-3.413-26.88-1.707-34.133 9.387-5.547 8.96-15.787 14.507-26.027 14.507-12.374 0-20.48-4.693-26.88-13.653-8.533-11.947-23.894-13.653-34.987-10.24-27.307 8.96-36.266 45.227-27.306 72.96z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-like"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1048,"id":79,"name":"document-like","prevSize":32,"code":60501},"setIdx":2,"setId":2,"iconIdx":822},{"icon":{"paths":["M298.667 626.773c-17.493 0-32-14.507-32-32v-136.96c0-17.493 14.507-32.001 32-32.001s32 14.508 32 32.001v136.96c0 17.92-14.507 32-32 32z","M512 701.013c-17.493 0-32-14.507-32-32v-285.013c0-17.493 14.507-32 32-32s32 14.507 32 32v285.013c0 17.493-14.507 32-32 32z","M725.333 626.773c-17.493 0-32-14.507-32-32v-136.96c0-17.493 14.507-32.001 32-32.001s32 14.508 32 32.001v136.96c0 17.92-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1049,"id":78,"name":"chart","prevSize":32,"code":60502},"setIdx":2,"setId":2,"iconIdx":823},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M451.392 664.751c-8.533 0-16.64-3.413-22.613-9.387l-120.749-120.747c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l98.135 98.133 219.307-219.307c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-241.92 241.92c-5.973 5.973-14.080 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tick-square"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1050,"id":77,"name":"tick-square","prevSize":32,"code":60503},"setIdx":2,"setId":2,"iconIdx":824},{"icon":{"paths":["M470.187 864h-150.187c-32 0-55.467-1.28-75.52-4.267-142.080-15.787-169.813-100.267-169.813-241.067v-213.333c0-140.8 28.16-225.707 171.093-241.493 18.773-2.56 42.24-3.84 74.24-3.84h147.627c17.493 0 32 14.507 32 32s-14.507 32-32 32h-147.627c-29.013 0-49.493 1.28-66.133 3.413-86.613 9.387-115.2 36.693-115.2 177.92v213.333c0 141.227 28.587 168.107 113.92 177.92 17.92 2.56 38.4 3.413 67.413 3.413h150.187c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M703.979 864h-63.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h63.147c29.013 0 49.493-1.28 66.133-3.413 86.613-9.387 115.2-36.693 115.2-177.92v-213.333c0-141.227-28.587-168.107-113.92-177.92-17.92-2.56-38.4-3.413-67.413-3.413h-63.147c-17.493 0-32-14.507-32-32s14.507-32 32-32h63.147c32 0 55.467 1.28 75.52 4.267 142.080 15.787 169.813 100.267 169.813 241.067v213.333c0 140.8-28.16 225.707-171.093 241.493-18.773 2.56-42.24 3.84-74.24 3.84z","M640 970.667c-17.493 0-32-14.507-32-32v-853.333c0-17.493 14.507-32 32-32s32 14.507 32 32v853.333c0 17.493-14.507 32-32 32z","M285.833 554.667c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-14.080-8.96c-3.84-4.267-7.253-8.96-9.387-14.080s-2.987-10.667-2.987-16.213c0-11.093 4.693-22.187 12.373-30.293 15.787-15.787 44.373-15.787 60.587 0 7.68 8.107 12.373 19.2 12.373 30.293 0 5.547-1.28 11.093-3.413 16.213s-5.12 9.813-8.96 14.080c-4.267 3.84-8.96 6.827-14.080 8.96s-10.667 3.413-16.213 3.413z","M456.499 554.667c-5.547 0-11.093-1.28-16.213-3.413s-9.813-5.12-14.079-8.96c-3.84-4.267-6.827-8.96-9.387-14.080-1.707-5.12-2.987-10.667-2.987-16.213 0-11.093 4.693-22.187 12.373-30.293 15.786-15.787 44.799-15.787 60.586 0 7.68 8.107 12.373 19.2 12.373 30.293 0 5.547-1.28 11.093-3.413 16.213s-5.12 9.813-8.96 14.080c-4.267 3.84-8.96 6.827-14.080 8.96s-10.667 3.413-16.213 3.413z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["password-check"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1051,"id":76,"name":"password-check","prevSize":32,"code":60504},"setIdx":2,"setId":2,"iconIdx":825},{"icon":{"paths":["M772.267 757.333h-520.534c-98.987 0-155.733-56.747-155.733-155.733v-516.267c0-17.493 14.507-32 32-32h768c17.493 0 32 14.507 32 32v516.267c0 98.987-56.747 155.733-155.733 155.733zM160 117.333v484.267c0 63.573 28.16 91.733 91.733 91.733h520.107c63.573 0 91.733-28.16 91.733-91.733v-484.267h-703.573z","M938.667 117.333h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.345 970.667c-11.947 0-23.041-6.4-28.588-17.493-8.107-15.787-1.705-34.987 14.508-43.093l152.748-76.373v-108.373c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 11.947-6.827 23.040-17.92 28.587l-170.669 85.333c-4.267 2.133-9.386 3.413-14.079 3.413z","M682.662 970.675c-4.693 0-9.809-1.28-14.076-3.413l-170.667-85.333c-15.787-8.107-22.191-27.307-14.511-43.093 8.107-15.787 27.307-22.187 43.093-14.507l170.667 85.333c15.787 8.107 22.187 27.307 14.507 43.093-5.973 11.52-17.493 17.92-29.013 17.92z","M319.997 501.342c-8.96 0-18.346-3.84-24.746-11.52-11.52-13.653-9.388-33.707 4.266-45.227l134.399-112.214c12.373-10.24 28.16-14.507 43.093-11.947 15.36 2.56 28.587 11.946 36.693 25.599l44.8 74.667 125.013-104.105c13.653-11.093 33.707-9.388 45.227 4.265s9.387 33.707-4.267 45.227l-134.4 112.215c-12.373 10.24-28.16 14.507-43.093 11.947-15.36-2.56-28.587-11.947-36.693-25.6l-44.8-74.667-125.012 104.107c-5.973 4.693-13.227 7.253-20.48 7.253z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["presention-chart"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1052,"id":75,"name":"presention-chart","prevSize":32,"code":60505},"setIdx":2,"setId":2,"iconIdx":826},{"icon":{"paths":["M512 863.991c-49.067 0-96.426-9.813-140.799-29.44-16.213-7.253-23.467-26.027-16.64-42.24 7.253-16.213 26.027-23.467 42.24-16.64 36.266 15.787 75.092 23.893 115.199 23.893 158.72 0 288-129.28 288-288 0-40.107-8.107-78.933-23.893-115.202-7.253-16.213 0.427-34.987 16.64-42.24 16.213-6.827 34.987 0.427 42.24 16.64 19.627 44.373 29.44 91.735 29.44 140.802-0.427 194.56-158.293 352.427-352.427 352.427z","M280.747 765.44c-8.533 0-16.64-3.413-23.040-9.813-63.147-66.133-97.707-152.32-97.707-243.627 0-194.133 157.867-352 352-352 91.733 0 178.347 34.987 244.48 98.56 12.8 12.373 13.227 32.427 0.853 45.227s-32.427 13.227-45.227 0.853c-54.187-52.053-125.013-80.64-200.107-80.64-158.72 0-288 129.28-288 288 0 74.667 28.587 145.493 80.213 199.253 12.373 12.8 11.947 32.853-0.853 45.227-6.4 5.973-14.507 8.96-22.613 8.96z","M512 202.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M170.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M938.667 544h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M421.547 634.453c-8.107 0-16.213-2.987-22.613-9.387-30.293-30.293-46.933-70.4-46.933-113.067 0-88.32 71.68-160 160-160 42.667 0 82.773 16.64 113.067 46.933 12.373 12.373 12.373 32.853 0 45.227l-180.907 180.907c-6.4 6.4-14.507 9.387-22.613 9.387zM512 416c-52.907 0-96 43.093-96 96 0 14.507 3.413 28.587 9.387 41.387l128-128c-12.8-5.973-26.88-9.387-41.387-9.387z","M85.31 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.335-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.335 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gps-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":1053,"id":74,"name":"gps-slash","prevSize":32,"code":60506},"setIdx":2,"setId":2,"iconIdx":827},{"icon":{"paths":["M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M744.939 307.21c-8.107 0-16.213-2.987-22.613-9.387l-62.293-62.293c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l39.68 39.68 143.787-143.787c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-166.4 166.4c-5.973 6.4-14.507 9.387-22.613 9.387z","M113.952 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.96-44.373l210.347-141.227c46.080-31.147 109.653-27.307 151.465 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.227-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-31.573 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.6-18.347-78.933 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.078-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-210.347 141.227c-5.547 3.413-11.947 5.12-17.92 5.12z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1054,"id":73,"name":"gallery-tick","prevSize":32,"code":60507},"setIdx":2,"setId":2,"iconIdx":828},{"icon":{"paths":["M445.009 783.782c-6.4 0-12.373-1.707-17.92-5.547-8.96-5.973-14.080-15.787-14.080-26.453 0-6.4-0.427-13.227-1.28-20.053-3.84-30.293-17.493-56.747-40.533-79.787s-51.627-37.547-82.347-41.387c-5.12-0.427-12.373-0.853-19.2-0.427-11.093 0.853-21.333-3.84-27.733-12.8-6.4-8.533-8.107-20.053-4.693-30.293 6.4-17.493 15.787-33.28 26.88-46.080l65.707-82.773c113.066-141.226 342.186-311.039 509.866-378.452 35.413-13.653 73.387-5.547 99.413 20.053 26.88 26.88 34.987 65.28 20.907 100.267-67.413 168.107-236.8 396.799-378.027 509.866l-84.053 67.413c-15.787 11.52-28.587 18.773-41.387 23.893-3.413 1.707-7.68 2.56-11.52 2.56zM321.703 552.102c35.84 9.387 67.84 28.16 94.72 55.040 26.88 26.453 44.8 57.173 53.76 91.307l72.107-58.027c133.973-107.093 294.827-324.266 358.4-483.839 6.4-15.787-2.56-26.88-6.827-30.72-2.987-2.987-14.080-12.373-31.147-5.973-158.72 64-375.893 224.853-483.413 358.826l-57.6 73.387z","M174.054 970.671c-32 0-62.72-12.8-85.76-35.84-26.453-26.453-39.253-63.147-34.987-100.693l11.52-104.96c11.093-104.107 96.427-181.333 202.24-183.467 8.107-0.427 18.773 0 28.587 0.853 46.507 5.973 87.893 26.88 121.173 60.16 32.854 32.853 52.481 72.107 58.454 116.053 1.28 9.387 2.133 19.627 2.133 28.587 0 56.32-21.76 108.8-61.014 148.48-32.853 32.427-75.093 52.48-122.88 58.453l-105.387 11.52c-4.693 0.427-9.387 0.853-14.080 0.853zM275.174 610.138c-1.707 0-3.84 0-5.547 0-64.427 1.28-132.693 45.227-141.227 126.293l-11.52 104.96c-2.133 17.92 4.267 35.413 16.64 48.213 12.373 12.373 29.867 18.773 47.36 16.64l104.96-11.52c32.853-4.267 62.293-17.92 84.48-40.107 27.307-27.307 42.667-64 42.667-103.253 0-6.4-0.427-13.227-1.28-20.053-3.84-30.293-17.493-56.747-40.533-79.787s-51.627-37.547-82.347-41.387c-3.413 0-8.533 0-13.653 0z","M607.565 649.395c-17.493 0-32-14.507-32-32 0-93.867-76.373-169.813-169.815-169.813-17.493 0-32-14.507-32-31.999 0-17.493 14.080-32 31.573-32 128.855 0 233.815 104.959 233.815 233.812 0.427 17.92-14.080 32-31.573 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brush-4"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1055,"id":72,"name":"brush-4","prevSize":32,"code":60508},"setIdx":2,"setId":2,"iconIdx":829},{"icon":{"paths":["M724.446 563.204c-8.107 0-16.64-3.413-22.613-9.387l-230.4-230.828c-10.667-10.667-12.373-26.88-4.267-39.68l72.107-113.92c20.053-31.573 50.347-51.2 85.76-55.040 39.68-3.84 80.64 11.52 112.64 43.52l129.28 129.28c30.72 30.72 46.080 72.107 41.387 113.067-3.84 35.842-23.040 66.988-52.907 85.762l-113.92 72.107c-5.12 3.413-11.093 5.12-17.067 5.12zM534.579 296.109l194.56 194.562 92.587-58.453c13.227-8.535 21.76-22.188 23.467-38.828 2.56-21.333-6.4-43.947-23.040-60.587l-129.28-129.28c-18.347-18.347-40.533-28.16-60.587-25.173-16.213 1.707-29.44 10.667-38.827 25.6l-58.88 92.16z","M251.323 910.507c-37.973 0-72.107-13.653-97.707-38.827-29.867-29.867-43.093-71.253-37.547-117.333l41.813-355.412c12.8-107.52 60.16-146.773 170.667-140.373l167.254 9.813c17.493 1.28 31.147 16.213 29.867 33.707s-16.213 31.147-33.707 29.867l-167.254-9.387c-75.947-4.693-94.72 10.24-103.253 84.053l-41.813 354.985c-2.987 26.027 3.84 49.067 19.2 64.427 15.787 15.36 38.827 22.613 64.853 19.2l354.988-41.813c74.667-8.96 91.307-28.587 84.053-101.973l-10.24-168.533c-0.853-17.493 12.373-32.853 29.867-33.707 17.493-1.28 32.853 12.373 33.707 29.867l9.813 167.253c10.24 106.24-31.573 157.44-140.373 170.667l-354.988 41.813c-5.973 1.28-12.8 1.707-19.2 1.707z","M196.727 860.578c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l129.707-129.707c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-129.707 129.707c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["path"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1056,"id":71,"name":"path","prevSize":32,"code":60509},"setIdx":2,"setId":2,"iconIdx":830},{"icon":{"paths":["M832 842.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M518.434 495.787c-1.28 0-2.133 0-3.413 0-2.56-0.427-5.12 0-7.68 0-123.734-3.84-217.174-101.12-217.174-221.013 0-122.027 99.413-221.44 221.441-221.44s221.44 99.413 221.44 221.44c-0.427 119.893-94.293 217.173-213.333 221.013-0.427 0-0.853 0-1.28 0zM511.607 117.333c-86.614 0-157.441 70.827-157.441 157.44 0 85.333 66.56 154.027 151.468 157.013 2.56-0.427 8.107-0.427 13.653 0 83.627-3.84 149.333-72.533 149.76-157.013 0-86.613-70.827-157.44-157.44-157.44z","M511.582 962.556c-87.042 0-169.388-22.613-231.682-64.427-59.307-39.68-91.733-93.867-91.733-152.32s32.853-112.213 91.733-151.467c127.573-85.333 334.935-85.333 462.508 0 14.507 9.813 18.773 29.867 8.96 44.373-9.813 14.933-29.867 18.773-44.373 8.96-106.24-70.827-285.442-70.827-391.682 0-40.96 27.307-63.147 61.867-63.147 98.133s22.187 71.68 63.147 98.987c51.627 34.56 121.175 53.333 195.842 53.333 17.493 0 32 14.507 32 32s-14.080 32.427-31.573 32.427z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-remove"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1057,"id":70,"name":"profile-remove","prevSize":32,"code":60510},"setIdx":2,"setId":2,"iconIdx":831},{"icon":{"paths":["M651.115 949.333h-278.188c-209.493 0-299.093-89.6-299.093-299.093v-5.547c0-189.44 74.667-280.745 241.92-296.532 17.067-1.28 33.28 11.52 34.987 29.013s-11.093 33.28-29.013 34.987c-133.973 12.373-183.893 75.519-183.893 232.959v5.547c0 173.653 61.44 235.093 235.093 235.093h278.188c173.653 0 235.093-61.44 235.093-235.093v-5.547c0-158.293-50.773-221.439-187.307-232.959-17.493-1.707-30.72-17.067-29.013-34.56s16.64-30.72 34.56-29.013c169.813 14.507 245.76 106.239 245.76 296.959v5.547c0 208.64-89.6 298.24-299.093 298.24z","M512 666.88c-17.493 0-32-14.507-32-32v-549.547c0-17.493 14.507-32 32-32s32 14.507 32 32v549.547c0 17.92-14.507 32-32 32z","M511.991 714.671c-8.107 0-16.213-2.987-22.613-9.387l-142.932-142.933c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l120.318 120.32 120.32-120.32c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-142.933 142.933c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["import-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1058,"id":69,"name":"import-1","prevSize":32,"code":60511},"setIdx":2,"setId":2,"iconIdx":832},{"icon":{"paths":["M871.258 521.378c-17.493 0-32-14.507-32-32v-141.649c0-52.907-43.093-96-96-96h-590.508c-17.493 0-32-14.507-32-32s14.507-32 32-32h590.508c88.32 0 160 71.68 160 160v141.649c0 17.92-14.507 32-32 32z","M287.577 386.986c-8.107 0-16.213-2.988-22.613-9.388l-134.827-134.826c-5.973-5.973-9.387-14.081-9.387-22.615s3.413-16.638 9.387-22.612l134.827-134.828c12.373-12.373 32.853-12.373 45.227 0s12.373 32.856 0 45.229l-112.212 112.211 112.212 112.214c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.388-22.613 9.388z","M871.258 835.84h-590.508c-88.32 0-160-71.68-160-160v-141.653c0-17.493 14.507-32 32-32s32 14.507 32 32v141.653c0 52.907 43.093 96 96 96h590.508c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M736.393 970.671c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l112.213-112.213-112.213-112.213c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l134.827 134.827c5.973 5.973 9.387 14.080 9.387 22.613s-3.413 16.64-9.387 22.613l-134.827 134.827c-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["repeat"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1059,"id":68,"name":"repeat","prevSize":32,"code":59799},"setIdx":2,"setId":2,"iconIdx":833},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M746.667 512c0 129.707-104.96 234.667-234.667 234.667s-208.64-130.56-208.64-130.56M303.36 616.107h105.814M303.36 616.107v117.333M277.333 512c0-129.707 104.107-234.667 234.667-234.667 156.587 0 234.667 130.56 234.667 130.56M746.667 407.893v-117.333M746.667 407.893h-104.107"],"attrs":[{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64}],"isMulticolor":false,"isMulticolor2":true,"grid":0,"tags":["refresh-square-2"],"colorPermutations":{"25525525514145501":[{},{"s":0}]}},"attrs":[{},{"fill":"none","stroke":"rgb(41, 45, 50)","strokeLinejoin":"round","strokeLinecap":"round","strokeMiterlimit":"4","strokeWidth":64}],"properties":{"order":1060,"id":67,"name":"refresh-square-2","prevSize":32,"code":59800},"setIdx":2,"setId":2,"iconIdx":834},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M602.061 751.36c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l129.707-129.707c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-129.707 129.707c-5.973 5.973-14.080 9.387-22.613 9.387z","M731.716 621.658h-439.466c-17.493 0-32-14.507-32-32s14.507-32 32-32h439.893c17.493 0 32 14.507 32 32s-14.507 32-32.427 32z","M292.227 466.351c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.854 0-45.228l129.707-129.707c12.373-12.373 32.855-12.373 45.228 0s12.373 32.853 0 45.227l-129.708 129.708c-6.4 6.4-14.507 9.387-22.613 9.387z","M731.716 466.355h-439.466c-17.493 0-32-14.507-32-32s14.507-32.001 32-32.001h439.893c17.493 0 32 14.507 32 32.001s-14.507 32-32.427 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrange-square"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1061,"id":66,"name":"arrange-square","prevSize":32,"code":60512},"setIdx":2,"setId":2,"iconIdx":835},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-213.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M938.667 458.667h-170.667c-145.92 0-202.667-56.747-202.667-202.667v-170.667c0-12.8 7.68-24.747 19.627-29.44 11.947-5.12 25.6-2.133 34.987 6.827l341.333 341.333c8.96 8.96 11.947 23.040 6.827 34.987s-16.64 19.627-29.44 19.627zM629.333 162.56v93.44c0 110.080 28.587 138.667 138.667 138.667h93.44l-232.107-232.107z","M554.667 586.667h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M469.333 757.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-text-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1062,"id":65,"name":"document-text-1","prevSize":32,"code":59801},"setIdx":2,"setId":2,"iconIdx":836},{"icon":{"paths":["M512.388 970.244c-26.88 0-53.333-8.96-74.24-26.88l-67.412-57.6c-6.827-5.973-23.893-11.947-32.853-11.947h-74.667c-63.147 0-114.347-51.2-114.347-114.347v-72.96c0-8.96-5.973-26.027-11.52-32.427l-58.027-68.267c-34.987-41.387-34.987-106.24 0-148.053l58.027-68.268c5.547-6.4 11.52-23.467 11.52-32.427v-72.533c0-63.147 51.2-114.347 114.347-114.347h73.813c8.96 0 25.6-6.4 32.853-12.373l67.412-57.6c41.813-35.413 107.093-35.413 148.907 0l67.413 57.6c6.827 5.973 24.32 11.947 33.28 11.947h72.533c63.147 0 114.347 51.2 114.347 114.347v72.533c0 8.96 6.4 25.6 12.373 32.853l57.6 67.415c35.84 42.24 35.413 107.52 0 148.907l-57.6 67.413c-5.973 7.253-11.947 23.893-11.947 32.853v72.533c0 63.147-51.2 114.347-114.347 114.347h-72.533c-8.96 0-25.6 6.4-33.28 12.373l-67.413 57.6c-20.907 18.347-47.787 27.307-74.24 27.307zM263.217 214.19c-27.733 0-50.347 22.613-50.347 50.347v72.533c0 24.32-11.093 55.040-26.88 73.813l-58.027 68.268c-14.507 17.493-14.507 48.213 0 65.28l57.6 67.84c15.36 17.493 26.88 49.493 26.88 73.813v72.96c0 27.733 22.613 50.347 50.347 50.347h74.24c23.893 0 55.467 11.52 74.24 27.307l67.838 58.027c17.493 14.933 48.213 14.933 65.707 0l67.413-57.6c19.2-16.213 50.347-27.307 74.24-27.307h72.533c27.733 0 50.347-22.613 50.347-50.347v-72.533c0-23.893 11.52-55.040 27.307-74.24l58.027-67.84c14.933-17.493 14.933-48.213 0-65.707l-57.6-67.415c-16.213-19.2-27.307-50.347-27.307-74.24v-72.96c0-27.733-22.613-50.347-50.347-50.347h-72.533c-24.32 0-55.893-11.52-74.667-27.307l-67.84-58.027c-17.493-14.933-47.787-14.933-65.707 0l-66.985 58.027c-19.2 15.787-50.347 27.307-74.667 27.307h-73.813z","M512 719.791c-23.467 0-42.667-19.2-42.667-42.667s18.773-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z","M512 585.382c-17.493 0-32-14.507-32-32v-206.508c0-17.493 14.507-32 32-32s32 14.507 32 32v206.081c0 17.92-14.080 32.427-32 32.427z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1063,"id":64,"name":"information","prevSize":32,"code":59802},"setIdx":2,"setId":2,"iconIdx":837},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M595.204 970.675c-14.507 0-27.311-9.813-31.151-24.32l-211.196-853.334c-4.267-17.067 6.4-34.56 23.466-38.826s34.559 5.973 38.825 23.467l211.202 853.334c4.267 17.067-6.4 34.56-23.467 38.827-2.56 0.427-5.12 0.853-7.68 0.853z","M85.327 672.004c-14.080 0-26.452-8.96-30.719-23.040-5.12-17.067 4.691-34.56 21.758-39.68l406.616-118.613c17.067-5.12 34.56 4.693 39.68 21.76s-4.698 34.56-21.764 39.68l-406.61 118.613c-2.987 0.853-5.974 1.28-8.961 1.28z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["picture-frame"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1064,"id":63,"name":"picture-frame","prevSize":32,"code":60513},"setIdx":2,"setId":2,"iconIdx":838},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M565.756 694.622c-8.107 0-16.213-2.987-22.613-9.387l-150.612-150.613c-12.373-12.373-12.373-32.853 0-45.227l150.612-150.615c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-128 128.002 128 128c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-square-left"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1065,"id":62,"name":"arrow-square-left","prevSize":32,"code":60514},"setIdx":2,"setId":2,"iconIdx":839},{"icon":{"paths":["M510.75 970.667c-252.587 0-458.667-205.653-458.667-458.667s206.080-458.667 458.667-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM510.75 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M450.569 724.907c-18.773 0-36.692-4.693-52.479-13.653-36.693-21.333-57.173-63.147-57.173-117.76v-142.933c0-54.614 20.053-96.427 56.747-117.76 36.692-21.333 83.199-17.92 130.559 9.387l123.733 71.253c47.36 27.307 73.387 65.707 73.387 108.374 0 42.24-26.027 81.067-73.387 108.373l-123.733 71.253c-26.453 15.787-53.333 23.467-77.653 23.467zM450.569 382.72c-7.68 0-14.933 1.707-20.48 5.12-16.212 9.387-25.172 32-25.172 62.72v142.933c0 30.293 8.96 53.333 25.172 62.293 15.787 9.387 40.107 5.547 66.56-9.387l123.733-71.253c26.453-15.36 41.387-34.56 41.387-52.907s-15.36-37.547-41.387-52.907l-123.733-71.254c-17.067-10.24-32.853-15.36-46.080-15.36z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1066,"id":61,"name":"play-circle","prevSize":32,"code":60515},"setIdx":2,"setId":2,"iconIdx":840},{"icon":{"paths":["M896 330.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 544h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 757.333h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["menu-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1067,"id":60,"name":"menu-1","prevSize":32,"code":60516},"setIdx":2,"setId":2,"iconIdx":841},{"icon":{"paths":["M512.004 970.671c-221.868 0-401.921-180.48-401.921-401.92 0-79.787 23.467-157.012 67.84-223.572 9.813-14.507 29.867-18.773 44.373-8.96s18.773 29.867 8.96 44.373c-37.12 55.465-56.747 120.745-56.747 187.732 0 186.453 151.467 337.92 337.921 337.92s337.92-151.467 337.92-337.92c0-186.452-151.893-337.918-338.347-337.918-39.253 0-77.653 5.547-113.921 16.64-17.067 5.12-34.987-4.267-40.107-21.333s4.267-34.987 21.333-40.107c42.667-12.8 87.041-19.627 132.694-19.627 221.867 0 401.92 180.48 401.92 401.918 0 221.44-180.053 402.773-401.92 402.773z","M335.802 258.992c-7.253 0-14.933-2.56-20.907-7.68-13.653-11.947-14.933-32-3.413-45.227l123.308-141.653c11.52-13.227 32-14.933 45.227-2.987 13.227 11.52 14.507 32 2.987 45.227l-123.308 141.227c-6.4 7.253-15.36 11.093-23.893 11.093z","M479.556 363.952c-6.4 0-13.227-2.133-18.773-5.973l-144.214-105.387c-14.080-10.24-17.067-30.293-6.827-44.373 10.24-14.507 30.293-17.493 44.8-7.253l143.787 104.96c14.080 10.24 17.493 30.293 6.827 44.8-5.973 8.96-15.787 13.227-25.6 13.227z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rotate-left"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1068,"id":59,"name":"rotate-left","prevSize":32,"code":59803},"setIdx":2,"setId":2,"iconIdx":842},{"icon":{"paths":["M512 970.667c-33.28 0-65.707-17.067-87.893-46.933l-43.093-57.6c-8.96-11.947-20.907-18.773-33.707-19.627-12.8-0.427-25.6 5.12-35.84 15.787l-24.32-21.76 23.467 21.76c-61.44 65.707-108.8 60.587-131.413 51.627-23.040-8.96-61.867-38.4-61.867-133.12v-480.427c0-189.44 54.613-247.040 233.387-247.040h322.56c178.773 0 233.387 57.6 233.387 247.040v480.427c0 94.293-38.827 123.733-61.867 133.12-22.613 8.96-69.547 14.080-131.413-51.627-10.24-11.093-23.040-17.067-36.267-15.787-12.8 0.853-25.173 7.68-34.133 19.627l-43.093 57.6c-22.187 29.867-54.613 46.933-87.893 46.933zM344.747 782.080c1.707 0 3.84 0 5.547 0 31.573 1.707 61.44 18.347 81.493 45.227l43.093 57.6c20.907 27.733 52.907 27.733 73.813 0l43.093-57.6c20.48-26.88 49.92-43.52 81.92-45.227 31.573-1.707 63.147 11.52 86.187 36.267 32.427 34.56 53.333 38.827 61.013 35.84 10.24-4.267 21.333-29.013 21.333-73.387v-480.427c0-154.027-26.88-183.040-169.387-183.040h-322.133c-142.507 0-169.387 29.013-169.387 183.040v480.427c0 44.8 11.093 69.547 21.333 73.387 7.253 2.987 28.587-1.28 61.013-35.84 23.040-23.467 51.627-36.267 81.067-36.267z","M692.501 501.333h-234.667c-17.493 0-32.001-14.507-32.001-32s14.508-32 32.001-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M692.501 330.667h-234.667c-17.493 0-32.001-14.507-32.001-32s14.508-32 32.001-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M331.917 341.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z","M331.917 512c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-2-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1069,"id":58,"name":"receipt-2-1","prevSize":32,"code":59804},"setIdx":2,"setId":2,"iconIdx":843},{"icon":{"paths":["M789.333 970.667c-99.84 0-181.333-81.493-181.333-181.333v-21.333c0-17.493 14.507-32 32-32s32 14.507 32 32v21.333c0 64.853 52.48 117.333 117.333 117.333s117.333-52.48 117.333-117.333c0-64.853-52.48-117.333-117.333-117.333h-704c-17.493 0-32-14.507-32-32s14.507-32 32-32h704c99.84 0 181.333 81.493 181.333 181.333s-81.493 181.333-181.333 181.333z","M789.333 544h-704c-17.493 0-32-14.507-32-32s14.507-32 32-32h704c64.853 0 117.333-52.48 117.333-117.333s-52.48-117.333-117.333-117.333c-64.853 0-117.333 52.48-117.333 117.333v21.333c0 17.493-14.507 32-32 32s-32-14.507-32-32v-21.333c0-99.84 81.493-181.333 181.333-181.333s181.333 81.493 181.333 181.333c0 99.84-81.493 181.333-181.333 181.333z","M397.227 416.005h-311.893c-17.493 0-32-14.507-32-32s14.507-32 32-32h311.893c45.653 0 82.773-37.12 82.773-82.773s-37.12-82.773-82.773-82.773c-45.653 0-82.773 37.12-82.773 82.773v16.213c0 17.493-14.507 32-32 32s-32-14.507-32-32v-16.213c0-81.067 65.707-146.773 146.773-146.773s146.773 65.707 146.773 146.773c0 81.067-65.707 146.773-146.773 146.773z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wind"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1070,"id":57,"name":"wind","prevSize":32,"code":60517},"setIdx":2,"setId":2,"iconIdx":844},{"icon":{"paths":["M512 650.667c-76.373 0-138.667-62.293-138.667-138.667s62.293-138.667 138.667-138.667c76.373 0 138.667 62.293 138.667 138.667s-62.293 138.667-138.667 138.667zM512 437.333c-40.96 0-74.667 33.707-74.667 74.667s33.707 74.667 74.667 74.667c40.96 0 74.667-33.707 74.667-74.667s-33.707-74.667-74.667-74.667z","M789.333 650.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M213.333 970.667c-70.827 0-137.387-37.547-173.227-98.56-19.2-30.72-29.44-66.987-29.44-104.107 0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667c0 37.12-10.24 73.387-29.44 104.533-35.84 60.587-102.4 98.133-173.227 98.133zM213.333 629.333c-76.373 0-138.667 62.293-138.667 138.667 0 25.173 6.827 49.92 20.053 71.253 24.747 41.813 70.4 67.413 118.613 67.413s93.867-25.6 118.613-66.987c13.227-21.76 20.053-46.080 20.053-71.68 0-76.373-62.293-138.667-138.667-138.667z","M277.323 799.147h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 864.427c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z","M725.333 885.333h-362.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h362.667c122.027 0 181.333-59.307 181.333-181.333v-256c0-122.027-59.307-181.333-181.333-181.333h-426.667c-122.027 0-181.333 59.307-181.333 181.333v268.8c0 17.493-14.507 32-32 32s-32-14.507-32-32v-268.8c0-155.733 89.6-245.333 245.333-245.333h426.667c155.733 0 245.333 89.6 245.333 245.333v256c0 155.733-89.6 245.333-245.333 245.333z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["money-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1071,"id":56,"name":"money-add","prevSize":32,"code":60518},"setIdx":2,"setId":2,"iconIdx":845},{"icon":{"paths":["M341.333 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M682.667 245.333c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M626.347 970.667h-285.013c-155.733 0-245.333-89.6-245.333-245.333v-362.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v218.88c0 12.373-7.253 23.467-17.92 29.013-11.093 5.12-24.32 3.84-33.707-3.84-67.413-53.76-171.093-53.76-238.507 1.28-46.080 36.267-72.107 90.453-72.107 149.76 0 34.987 9.387 69.12 27.733 98.56 14.080 23.040 31.573 42.24 52.053 56.747 11.093 8.107 16.213 22.613 11.947 35.84-5.12 12.8-17.067 21.76-31.147 21.76zM341.333 181.333c-122.027 0-181.333 59.307-181.333 181.333v362.667c0 122.027 59.307 181.333 181.333 181.333h208.64c-4.267-5.547-8.107-11.52-11.52-17.493-24.32-39.253-37.12-84.907-37.12-131.84 0-78.933 34.987-151.467 96.427-199.68 72.96-59.307 180.907-72.107 266.24-32.853v-162.133c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M554.667 501.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M410.453 714.667h-111.787c-17.493 0-32-14.507-32-32s14.507-32 32-32h111.787c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M757.333 1013.333c-54.613 0-106.24-17.067-149.76-48.64-27.307-19.627-50.773-45.227-69.12-75.52-24.32-39.253-37.12-84.907-37.12-131.84 0-78.933 34.987-151.467 96.427-199.68 88.747-72.107 228.693-72.533 318.293-1.28 61.867 48.64 97.28 122.027 97.28 200.96 0 46.933-12.8 92.587-37.12 131.84-13.653 23.467-31.147 43.947-51.2 60.587-45.653 40.96-105.387 63.573-167.68 63.573zM757.333 565.333c-43.52 0-86.187 14.933-119.893 42.24-46.080 36.267-72.107 90.453-72.107 149.76 0 34.987 9.387 69.12 27.733 98.56 14.080 23.040 31.573 42.24 52.053 56.747 32.853 23.893 71.68 36.693 112.213 36.693 47.36 0 90.88-16.64 125.867-47.787 15.36-12.8 27.733-27.733 37.973-45.227 18.347-29.867 28.16-64 28.16-98.987 0-59.307-26.453-113.924-72.96-150.618-34.133-27.307-75.093-41.382-119.040-41.382z","M757.333 896c-17.493 0-32-14.507-32-32 0-40.96-33.707-74.667-74.667-74.667-17.493 0-32-14.507-32-32s14.507-32 32-32c40.96 0 74.667-33.707 74.667-74.667 0-17.493 14.507-32 32-32s32 14.507 32 32c0 40.96 33.707 74.667 74.667 74.667 17.493 0 32 14.507 32 32s-14.507 32-32 32c-40.96 0-74.667 33.707-74.667 74.667 0 17.493-14.507 32-32 32zM738.987 757.333c6.4 5.547 12.8 11.52 18.347 18.347 5.547-6.4 11.52-12.8 18.347-18.347-6.4-5.547-12.8-11.52-18.347-18.347-5.547 6.827-11.52 12.8-18.347 18.347z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-favorite"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":1072,"id":55,"name":"note-favorite","prevSize":32,"code":60519},"setIdx":2,"setId":2,"iconIdx":846},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M763.691 418.133c-0.853 0-2.133 0-2.987 0-147.627-14.507-294.396-20.48-439.891-5.547l-57.174 5.547c-17.92 1.707-33.28-11.093-34.986-28.587s11.093-33.28 28.586-34.987l57.173-5.547c149.758-14.933 300.798-9.387 452.692 5.547 17.493 1.707 30.293 17.494 28.587 34.987-1.707 16.213-15.787 28.587-32 28.587z","M609.685 389.971c-15.36 0-29.013-11.093-31.573-26.453l-5.973-36.267c-0.853-5.973-2.56-15.36-4.267-17.493 0 0-4.267-2.56-19.627-2.56h-73.387c-15.787 0-20.053 2.56-20.053 2.56-0.853 1.707-2.56 11.094-3.413 17.067l-5.973 36.693c-2.987 17.493-19.627 29.013-36.693 26.453-17.493-2.987-29.013-19.627-26.453-36.693l5.973-36.693c4.693-27.307 12.373-72.96 86.613-72.96h73.387c74.667 0 82.347 47.786 86.613 73.386l5.973 36.267c2.987 17.493-8.96 34.133-26.027 36.693-1.28 0-3.413 0-5.12 0z","M601.6 781.231h-179.627c-107.947 0-112.64-64.853-115.627-107.947l-18.346-282.026c-1.28-17.493 12.373-32.854 29.866-34.134 17.92-1.28 32.854 12.374 34.134 29.868l18.346 281.599c2.987 41.813 3.414 48.213 51.627 48.213h179.627c48.213 0 48.64-6.4 51.627-48.213l18.347-281.599c1.28-17.493 15.787-31.148 34.133-29.868 17.493 1.28 31.147 16.214 29.867 34.134l-18.347 281.599c-2.987 43.52-7.253 108.373-115.627 108.373z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trush-square"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1073,"id":54,"name":"trush-square","prevSize":32,"code":60520},"setIdx":2,"setId":2,"iconIdx":847},{"icon":{"paths":["M512 759.898h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32 0 17.92-14.507 32-32 32z","M417.271 970.667h-236.802c-93.44 0-126.719-32.853-126.719-125.867v-174.933c0-93.013 33.279-125.867 126.719-125.867h236.802c93.44 0 126.72 32.853 126.72 125.867v175.36c0 92.587-33.28 125.44-126.72 125.44zM180.042 608c-58.027 0-62.719 4.693-62.719 61.867v175.36c0 57.173 4.692 61.867 62.719 61.867h236.802c58.028 0 62.717-4.693 62.717-61.867v-175.36c0-57.173-4.689-61.867-62.717-61.867h-236.802z","M640.009 970.667c-11.52 0-22.187-6.4-27.733-16.213-5.547-10.24-5.547-22.187 0.427-32.427l44.8-74.667c8.96-14.933 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.613-148.907 331.093-331.093 331.093z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.188 6.4 27.734 16.213 5.547 10.24 5.546 22.187-0.427 32.427l-44.799 74.667c-8.96 14.933-28.588 20.053-43.948 11.093s-20.054-28.587-11.094-43.947l11.521-19.2c-117.76 27.733-206.081 133.547-206.081 259.84 0.427 17.067-14.080 31.573-31.573 31.573z","M789.333 501.333c-123.307 0-224-100.267-224-224s100.267-224 224-224c123.733 0 224 100.267 224 224s-100.693 224-224 224zM789.333 117.333c-88.32 0-160 71.68-160 160s71.68 160 160 160c88.32 0 160-71.68 160-160s-71.68-160-160-160z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-coin"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1074,"id":53,"name":"card-coin","prevSize":32,"code":60521},"setIdx":2,"setId":2,"iconIdx":848},{"icon":{"paths":["M285.867 800h-108.8c-78.507 0-123.734-45.227-123.734-123.733v-499.199c0-78.507 45.228-123.734 123.734-123.734h183.466c78.506 0 123.733 45.228 123.733 123.734v78.932c0 17.493-14.507 32-32 32s-32.001-14.507-32.001-32v-78.932c0-43.52-16.212-59.734-59.732-59.734h-183.466c-43.52 0-59.734 16.214-59.734 59.734v499.199c0 43.52 16.214 59.733 59.734 59.733h108.8c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M638.302 970.667h-249.174c-85.76 0-135.252-49.493-135.252-135.253v-476.161c0-85.76 49.492-135.252 135.252-135.252h249.174c85.76 0 134.827 49.492 134.827 135.252v476.161c0 85.76-49.067 135.253-134.827 135.253zM389.128 288c-51.2 0-71.252 20.052-71.252 71.252v476.161c0 51.2 20.052 71.253 71.252 71.253h249.174c50.773 0 70.827-20.053 70.827-71.253v-476.161c0-51.2-20.053-71.252-70.827-71.252h-249.174z","M846.946 800h-105.809c-17.493 0-32-14.507-32-32s14.507-32 32-32h105.809c43.52 0 59.738-16.213 59.738-59.733v-499.199c0-43.52-16.218-59.734-59.738-59.734h-183.462c-43.52 0-59.733 16.214-59.733 59.734v78.932c0 17.493-14.507 32-32 32s-32-14.507-32-32v-78.932c0-78.507 45.227-123.734 123.733-123.734h183.462c78.507 0 123.738 45.228 123.738 123.734v499.199c0 78.507-45.231 123.733-123.738 123.733z","M597.333 501.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M597.333 629.333h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["buildings-2"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1075,"id":52,"name":"buildings-2","prevSize":32,"code":60522},"setIdx":2,"setId":2,"iconIdx":849},{"icon":{"paths":["M938.667 970.667h-853.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h853.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M157.875 938.654h-64l2.133-513.28c0-36.267 16.64-69.972 45.227-92.159l298.667-232.534c42.24-32.853 101.547-32.853 144.213 0l298.667 232.107c28.16 22.187 45.227 56.746 45.227 92.586v513.28h-64v-512.852c0-16.213-7.68-32-20.48-42.24l-298.667-232.107c-19.2-14.933-46.080-14.933-65.707 0l-298.667 232.534c-12.8 9.813-20.48 25.599-20.48 41.812l-2.133 512.852z","M618.667 970.667h-213.333c-17.493 0-32-14.507-32-32v-149.333c0-52.907 43.093-96 96-96h85.333c52.907 0 96 43.093 96 96v149.333c0 17.493-14.507 32-32 32zM437.333 906.667h149.333v-117.333c0-17.493-14.507-32-32-32h-85.333c-17.493 0-32 14.507-32 32v117.333z","M405.333 618.667h-85.333c-40.96 0-74.667-33.707-74.667-74.667v-64c0-40.96 33.707-74.667 74.667-74.667h85.333c40.96 0 74.667 33.707 74.667 74.667v64c0 40.96-33.707 74.667-74.667 74.667zM320 469.333c-5.973 0-10.667 4.693-10.667 10.667v64c0 5.973 4.693 10.667 10.667 10.667h85.333c5.973 0 10.667-4.693 10.667-10.667v-64c0-5.973-4.693-10.667-10.667-10.667h-85.333z","M704 618.667h-85.333c-40.96 0-74.667-33.707-74.667-74.667v-64c0-40.96 33.707-74.667 74.667-74.667h85.333c40.96 0 74.667 33.707 74.667 74.667v64c0 40.96-33.707 74.667-74.667 74.667zM618.667 469.333c-5.973 0-10.667 4.693-10.667 10.667v64c0 5.973 4.693 10.667 10.667 10.667h85.333c5.973 0 10.667-4.693 10.667-10.667v-64c0-5.973-4.693-10.667-10.667-10.667h-85.333z","M810.671 330.667c-17.493 0-32-14.080-32-31.573l-0.853-96.427h-155.733c-17.493 0-32-14.507-32-32s14.507-32 32-32h187.733c17.493 0 32 14.080 32 31.573l1.28 128c-0.427 17.92-14.507 32.427-32.427 32.427 0.427 0 0 0 0 0z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["house"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1076,"id":51,"name":"house","prevSize":32,"code":60523},"setIdx":2,"setId":2,"iconIdx":850},{"icon":{"paths":["M618.667 394.667h-533.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h533.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M341.333 736h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M618.667 736h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M749.227 906.667h-474.453c-169.813 0-221.44-51.2-221.44-219.307v-350.72c0-168.107 51.627-219.307 221.44-219.307h343.893c17.493 0 32 14.507 32 32s-14.507 32-32 32h-343.893c-133.973 0-157.44 23.040-157.44 155.307v350.293c0 132.267 23.467 155.307 157.44 155.307h474.027c133.973 0 157.44-23.040 157.44-155.307v-88.747c0-17.493 14.507-32 32-32s32 14.507 32 32v88.747c0.427 168.533-51.2 219.733-221.013 219.733z","M853.333 437.329c-17.493 0-32-14.505-32-31.998v-256c0-12.8 7.68-24.747 19.627-29.44s25.6-2.133 34.987 6.827l85.333 85.333c12.373 12.373 12.373 32.853 0 45.227s-32.853 12.373-45.227 0l-30.72-30.72v178.773c0 17.493-14.507 31.998-32 31.998z","M767.979 266.664c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l85.333-85.333c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-85.333 85.333c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card-send"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1077,"id":50,"name":"card-send","prevSize":32,"code":60524},"setIdx":2,"setId":2,"iconIdx":851},{"icon":{"paths":["M128 704c-17.493 0-32-14.507-32-32v-320c0-17.493 14.507-32 32-32s32 14.507 32 32v320c0 17.493-14.507 32-32 32z","M320 810.667c-17.493 0-32-14.507-32-32v-533.333c0-17.493 14.507-32 32-32s32 14.507 32 32v533.333c0 17.493-14.507 32-32 32z","M512 917.333c-17.493 0-32-14.507-32-32v-746.667c0-17.493 14.507-32 32-32s32 14.507 32 32v746.667c0 17.493-14.507 32-32 32z","M704 810.667c-17.493 0-32-14.507-32-32v-533.333c0-17.493 14.507-32 32-32s32 14.507 32 32v533.333c0 17.493-14.507 32-32 32z","M896 704c-17.493 0-32-14.507-32-32v-320c0-17.493 14.507-32 32-32s32 14.507 32 32v320c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sound"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1078,"id":49,"name":"sound","prevSize":32,"code":60525},"setIdx":2,"setId":2,"iconIdx":852},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M511.979 745.391c-59.733 0-119.468-22.613-165.122-68.267-11.947-11.947-22.614-25.173-32.427-40.96-9.387-14.933-4.694-34.56 10.24-43.947s34.561-4.693 43.948 10.24c7.253 11.947 14.932 21.333 23.466 29.867 66.135 66.133 173.651 66.133 239.785 0 25.6-25.6 41.818-58.88 47.364-96 2.56-17.493 18.769-30.293 36.262-27.307 17.493 2.56 29.444 18.773 27.311 36.267-7.253 50.773-29.867 96.427-65.28 132.267-46.080 45.227-105.813 67.84-165.547 67.84z","M313.169 515.413c-1.707 0-2.986 0-4.693-0.427-17.493-2.56-29.867-18.778-27.307-36.271 7.253-50.773 29.867-96.424 65.28-132.264 90.88-90.88 238.933-90.88 330.24 0 11.947 11.947 22.613 25.175 32.427 41.388 9.387 14.933 4.693 34.559-10.24 43.947-14.933 9.387-34.56 4.693-43.947-10.241-7.253-11.52-14.933-21.334-23.467-29.867-66.133-66.133-173.653-66.133-239.787 0-25.6 25.6-41.812 58.882-47.359 96.002-1.707 16.213-15.36 27.733-31.147 27.733z","M333.667 765.013c-17.493 0-32-14.507-32-32v-113.92c0-17.493 14.507-32 32-32h113.92c17.493 0 32 14.507 32 32s-14.507 32-32 32h-81.92v81.92c0 17.493-14.080 32-32 32z","M690.334 436.911h-113.916c-17.493 0-32-14.509-32-32.002s14.507-32 32-32h81.916v-81.919c0-17.493 14.507-32 32-32s32 14.507 32 32v113.919c0 17.92-14.507 32.002-32 32.002z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["refresh-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1079,"id":48,"name":"refresh-circle","prevSize":32,"code":59805},"setIdx":2,"setId":2,"iconIdx":853},{"icon":{"paths":["M629.333 501.333h-234.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h234.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 618.667c-17.493 0-32-14.507-32-32v-234.667c0-17.493 14.507-32 32-32s32 14.507 32 32v234.667c0 17.493-14.507 32-32 32z","M511.987 971.093c-63.147 0-126.72-23.893-176.214-71.253-125.867-121.173-264.96-314.453-212.48-544.427 47.36-208.64 229.547-302.080 388.694-302.080 0 0 0 0 0.427 0 159.147 0 341.333 93.44 388.693 302.507 52.053 229.973-87.040 422.827-212.907 544-49.493 47.36-113.067 71.253-176.213 71.253zM511.987 117.333c-124.16 0-283.734 66.133-325.974 252.16-46.080 200.96 80.213 374.187 194.56 483.84 73.814 71.253 189.44 71.253 263.254 0 113.92-109.653 240.213-282.88 194.987-483.84-42.667-186.027-202.667-252.16-326.827-252.16z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["location-add"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1080,"id":47,"name":"location-add","prevSize":32,"code":59806},"setIdx":2,"setId":2,"iconIdx":854},{"icon":{"paths":["M512.004 235.943c-153.172 0-306.346-40.96-443.306-122.88-15.36-8.96-20.053-28.588-11.093-43.948s28.587-20.054 43.947-11.094c253.013 151.893 567.466 151.893 820.479 0 14.933-8.96 34.987-4.266 43.947 11.094s4.267 34.988-11.093 43.948c-136.533 81.92-289.707 122.88-442.88 122.88z","M938.671 970.667c-5.547 0-11.093-1.28-16.64-4.693-253.013-151.893-567.466-151.893-820.479 0-14.933 8.96-34.987 4.267-43.947-11.093s-4.267-34.987 11.093-43.947c273.493-163.84 613.119-163.84 886.186 0 15.36 8.96 20.053 28.587 11.093 43.947-5.973 10.24-16.64 15.787-27.307 15.787z","M227.383 902.827c-5.12 0-10.24-1.276-15.36-3.836-15.36-8.533-21.333-27.733-12.8-43.52 114.347-211.627 115.627-465.069 3.84-677.549l-5.12-10.24c-8.107-15.787-2.133-34.987 13.653-43.094s34.987-2.133 43.093 13.654l5.12 10.24c121.6 231.68 119.893 507.735-4.267 737.709-5.547 10.667-16.64 16.636-28.16 16.636z","M796.591 902.827c-11.52 0-22.187-5.969-28.16-16.636-124.16-230.4-125.867-506.029-4.267-737.709l5.12-10.24c8.107-15.787 27.733-21.76 43.093-13.654 15.787 8.107 21.76 27.734 13.653 43.094l-5.12 10.24c-111.787 212.907-110.080 466.349 3.84 677.549 8.533 15.787 2.56 34.987-12.8 43.52-5.12 2.56-10.24 3.836-15.36 3.836z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gemini"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1081,"id":46,"name":"gemini","prevSize":32,"code":60526},"setIdx":2,"setId":2,"iconIdx":855},{"icon":{"paths":["M512.017 970.662c-48.213 0-94.294-14.080-128.854-40.107l-183.467-136.96c-48.64-36.267-86.613-111.787-86.613-172.373v-317.438c0-65.707 48.213-135.68 110.080-158.72l212.907-79.787c42.24-15.787 108.8-15.787 151.040 0l213.333 79.787c61.867 23.040 110.080 93.013 110.080 158.72v146.345c0 17.493-14.507 32-32 32s-32-14.507-32-32v-146.345c0-38.827-32-84.907-68.693-98.987l-212.907-79.787c-28.16-10.667-78.080-10.667-106.24 0l-212.907 80.213c-36.693 13.653-68.693 59.733-68.693 98.987v317.012c0 40.533 28.587 97.28 60.587 121.173l183.467 136.96c23.467 17.493 56.32 27.307 90.454 27.307 17.493 0 32 14.507 32 32s-14.080 32-31.573 32z","M682.667 885.333c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM682.667 544.427c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M896 938.667c-2.987 0-5.547-0.431-8.533-0.858-2.56-0.427-5.12-1.276-7.68-2.556-2.56-0.853-5.12-2.133-7.68-3.84-2.133-1.707-4.267-3.418-6.4-5.124-7.68-8.107-12.373-19.196-12.373-30.289 0-5.547 1.28-11.093 3.413-16.213s5.12-9.813 8.96-14.080c15.787-15.787 44.8-15.787 60.587 0 3.84 4.267 6.827 8.96 8.96 14.080s3.413 10.667 3.413 16.213c0 11.093-4.693 22.182-12.373 30.289-8.107 7.68-19.2 12.378-30.293 12.378z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-search"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1082,"id":45,"name":"shield-search","prevSize":32,"code":60527},"setIdx":2,"setId":2,"iconIdx":856},{"icon":{"paths":["M618.667 486.396h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M210.328 970.667c-17.92 0-34.56-4.267-49.493-12.8-32.853-19.2-51.627-58.027-51.627-106.24v-601.6c0-108.373 88.32-196.693 196.693-196.693h411.735c108.373 0 196.693 88.32 196.693 196.693v601.173c0 48.213-18.773 87.040-51.627 106.24s-75.947 17.067-118.187-6.4l-208.213-115.627c-12.373-6.827-36.693-6.827-49.067 0l-208.215 115.627c-23.040 12.8-46.507 19.627-68.693 19.627zM306.328 117.333c-72.96 0-132.693 59.733-132.693 132.693v601.173c0 25.173 7.253 43.947 20.053 51.2 12.8 7.68 32.853 5.12 54.613-7.253l208.215-115.627c31.573-17.493 79.36-17.493 110.933 0l208.213 115.627c21.76 12.373 41.813 14.933 54.613 7.253s20.053-26.453 20.053-51.2v-601.173c0-72.96-59.733-132.693-132.693-132.693h-411.308z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-minus"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1083,"id":44,"name":"archive-minus","prevSize":32,"code":60528},"setIdx":2,"setId":2,"iconIdx":857},{"icon":{"paths":["M512 586.667c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M512 970.667c-223.573 0-405.333-181.76-405.333-405.333s181.76-405.333 405.333-405.333c223.573 0 405.333 181.76 405.333 405.333 0 17.493-14.507 32-32 32s-32-14.507-32-32c0-188.16-153.173-341.333-341.333-341.333s-341.333 153.173-341.333 341.333c0 188.16 153.173 341.333 341.333 341.333 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 117.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M689.084 939.524c-14.933 0-28.587-3.413-40.96-10.667-28.16-16.213-44.373-49.067-44.373-90.027v-98.56c0-40.96 16.213-73.813 44.373-90.027s64.427-13.653 99.84 6.4l85.333 49.493c35.413 20.48 55.893 50.773 55.893 83.2s-20.48 62.72-55.893 83.2l-85.333 49.493c-19.627 11.52-39.68 17.493-58.88 17.493zM689.51 703.151c-3.413 0-6.827 0.853-9.387 2.133-7.68 4.267-12.373 17.493-12.373 34.56v98.56c0 17.067 4.693 30.293 12.373 34.56s21.333 2.133 35.84-6.4l85.333-49.493c14.933-8.533 23.893-19.2 23.893-27.733s-8.96-19.2-23.893-27.733l-85.333-49.493c-9.813-5.973-19.2-8.96-26.453-8.96z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["timer-start"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1084,"id":43,"name":"timer-start","prevSize":32,"code":60529},"setIdx":2,"setId":2,"iconIdx":858},{"icon":{"paths":["M413.013 715.947h-63.573c-45.653 0-82.773-37.12-82.773-82.773v-113.924c0-17.493 14.507-32 32-32h114.346c46.507 0 82.774 36.267 82.774 82.773v63.573c-0.427 45.653-36.693 82.351-82.774 82.351zM330.667 550.822v81.924c0 10.24 8.533 18.773 18.773 18.773h63.573c13.653 0 18.774-10.24 18.774-18.773v-63.573c0-8.533-4.693-18.773-18.774-18.773h-82.346v0.422z","M298.667 550.835c-17.493 0-32-14.507-32-32 0-131.412 28.587-160.85 104.96-206.077 14.933-8.96 34.987-3.84 43.947 11.094s3.84 34.985-11.094 43.945c-58.027 34.56-73.813 43.519-73.813 151.038 0 17.92-14.507 32-32 32z","M674.513 715.947h-63.573c-45.653 0-82.773-37.12-82.773-82.773v-113.924c0-17.493 14.507-32 32-32h114.347c46.507 0 82.773 36.267 82.773 82.773v63.573c0 45.653-36.267 82.351-82.773 82.351zM592.593 550.822v81.924c0 10.24 8.533 18.773 18.773 18.773h63.573c13.653 0 18.773-10.24 18.773-18.773v-63.573c0-8.533-4.693-18.773-18.773-18.773h-82.347v0.422z","M560.666 550.835c-17.493 0-32-14.507-32-32 0-131.412 28.587-160.85 104.96-206.077 15.36-8.96 34.987-3.84 43.947 11.094 8.96 15.36 3.84 34.985-11.093 43.945-58.027 34.56-73.813 43.519-73.813 151.038 0 17.92-14.507 32-32 32z","M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote-down-circle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1085,"id":42,"name":"quote-down-circle","prevSize":32,"code":60530},"setIdx":2,"setId":2,"iconIdx":859},{"icon":{"paths":["M500.083 970.667h-192c-177.067 0-256-78.933-256-256v-192c0-177.067 78.933-256 256-256h192c177.067 0 256 78.933 256 256v192c0 177.067-78.933 256-256 256zM308.083 330.667c-141.653 0-192 50.347-192 192v192c0 141.653 50.347 192 192 192h192c141.653 0 192-50.347 192-192v-192c0-141.653-50.347-192-192-192h-192z","M724.019 585.378c-8.107 0-15.787-2.987-21.76-8.533-6.827-5.973-10.24-14.507-10.24-23.467v-30.72c0-141.655-50.347-192.001-192-192.001h-30.72c-8.96 0-17.493-3.84-23.467-10.24-5.973-6.827-8.96-15.36-8.107-24.32 12.373-138.24 126.293-242.347 265.387-242.347 133.12 0 246.613 99.413 263.68 231.253 1.707 10.24 2.987 22.613 2.987 35.413 0 139.095-104.107 253.015-242.347 265.388-1.28-0.427-2.133-0.427-3.413-0.427zM507.273 266.657c169.387 2.133 246.613 78.933 248.747 248.748 87.040-23.040 149.333-101.975 149.333-195.415 0-8.96-0.853-17.493-2.133-25.6-13.227-101.547-99.413-177.067-200.533-177.067-93.44 0-171.947 62.293-195.413 149.333z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shapes-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1086,"id":41,"name":"shapes-1","prevSize":32,"code":60531},"setIdx":2,"setId":2,"iconIdx":860},{"icon":{"paths":["M512 808.533c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.669 202.667-202.669c111.787 0 202.667 90.882 202.667 202.669s-90.88 202.667-202.667 202.667zM512 467.2c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z","M469.329 680.533c-10.667 0-21.333-5.547-27.307-15.36-8.96-15.36-4.267-34.987 11.093-43.947l32.427-19.627c3.413-1.707 5.12-5.547 5.12-8.96v-39.68c0-17.493 14.507-32 32-32s32 14.080 32 31.573v39.68c0 26.027-14.080 50.773-36.267 64l-32.427 19.627c-5.12 3.413-11.093 4.693-16.64 4.693z","M682.675 970.667h-341.332c-197.12 0-233.813-91.733-243.2-180.907l-32-341.76c-4.693-44.8-5.973-110.933 38.4-160.426 38.4-42.667 101.973-63.147 194.133-63.147h426.665c92.587 0 156.16 20.907 194.133 63.147 44.373 49.493 43.093 115.627 38.4 160.853l-32 340.907c-9.387 89.6-46.080 181.333-243.2 181.333zM298.676 288c-72.107 0-121.6 14.080-146.773 42.24-20.907 23.040-27.733 58.453-22.187 111.36l32 341.76c7.253 67.413 25.6 123.307 179.627 123.307h341.332c153.6 0 172.373-55.893 179.627-123.733l32-340.907c5.547-53.333-1.28-88.746-22.187-111.786-25.173-28.16-74.667-42.24-146.773-42.24h-426.665z","M682.667 288c-17.493 0-32-14.507-32-32v-34.133c0-75.947 0-104.533-104.533-104.533h-68.267c-104.533 0-104.533 28.587-104.533 104.533v34.133c0 17.493-14.507 32-32 32s-32-14.507-32-32v-34.133c0-75.093 0-168.533 168.533-168.533h68.267c168.533 0 168.533 93.44 168.533 168.533v34.133c0 17.493-14.507 32-32 32z","M683.115 613.978c-14.507 0-27.307-9.813-31.147-24.32-4.267-17.067 5.973-34.56 23.040-38.827 83.2-20.907 160.427-57.173 229.547-107.52 14.080-10.24 34.133-7.253 44.8 7.253 10.24 14.080 7.253 34.133-7.253 44.8-75.947 55.040-160.427 94.72-251.733 117.76-2.133 0.427-4.693 0.853-7.253 0.853z","M341.364 615.249c-2.56 0-5.12-0.427-7.68-0.853-85.76-20.907-166.4-57.173-240.213-107.52-14.507-9.813-18.347-29.867-8.533-44.373s29.867-18.347 44.373-8.533c67.413 46.080 140.8 78.933 219.307 98.133 17.067 4.267 27.733 21.333 23.467 38.827-2.987 14.507-16.213 24.32-30.72 24.32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-timer"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1087,"id":40,"name":"brifecase-timer","prevSize":32,"code":60532},"setIdx":2,"setId":2,"iconIdx":861},{"icon":{"paths":["M733.884 970.662c-82.773 0-160.427-43.947-202.667-115.2-22.187-35.84-34.133-78.507-34.133-121.6 0-130.56 106.24-236.8 236.8-236.8s236.8 106.24 236.8 236.8c0 43.52-11.947 85.76-34.56 122.453-41.813 70.4-119.467 114.347-202.24 114.347zM733.884 561.062c-95.147 0-172.8 77.653-172.8 172.8 0 31.573 8.533 62.293 24.747 88.747 31.573 52.907 86.613 84.053 148.053 84.053s116.48-31.147 147.627-83.627c16.64-26.88 25.173-57.6 25.173-89.173 0-95.147-77.653-172.8-172.8-172.8z","M704.405 816.213c-8.107 0-16.213-2.987-22.613-9.387l-50.347-50.347c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l28.587 28.591 86.613-80.213c13.227-11.947 33.28-11.098 45.227 1.702s11.093 33.28-1.707 45.227l-109.227 100.693c-5.973 6.4-14.080 8.96-21.76 8.96z","M512 923.738c-13.227 0-26.453-1.707-37.12-5.547-109.227-37.12-421.547-218.027-421.547-547.412 0-149.333 120.747-270.508 269.227-270.508 70.827 0 139.52 28.588 189.44 78.508 49.92-49.92 118.613-78.508 189.44-78.508 148.48 0 269.227 121.174 269.227 270.508 0 83.199-20.053 162.986-59.733 237.652-4.693 8.96-13.653 15.36-23.893 16.64s-20.48-2.133-27.733-9.813c-33.28-34.987-77.653-54.613-125.44-54.613-95.147 0-172.8 77.653-172.8 172.8 0 42.24 15.787 83.2 44.373 115.2 6.827 7.68 9.387 17.92 7.253 27.733s-8.96 18.347-17.92 22.613c-17.067 7.68-32.427 14.080-46.507 18.773-10.24 4.267-23.040 5.973-36.267 5.973zM322.56 164.271c-113.067 0-205.227 92.588-205.227 206.508 0 291.839 280.32 453.119 378.453 486.826 8.107 2.987 24.32 2.56 32 0 1.28-0.427 2.56-0.853 3.84-1.28-22.613-36.693-34.56-78.933-34.56-122.453 0-130.56 106.24-236.8 236.8-236.8 49.493 0 98.133 15.787 138.24 44.8 23.040-54.613 34.56-111.787 34.56-171.092 0-113.92-92.16-206.508-205.227-206.508-64 0-125.44 30.722-163.84 82.349-11.947 16.213-39.253 16.213-51.2 0-38.4-51.627-99.84-82.349-163.84-82.349z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-tick"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1088,"id":39,"name":"heart-tick","prevSize":32,"code":60533},"setIdx":2,"setId":2,"iconIdx":862},{"icon":{"paths":["M896 224h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M532.053 437.333h-404.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M896 650.667h-768c-17.493 0-32-14.507-32-32s14.507-32 32-32h768c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M532.053 864h-404.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h404.053c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["textalign-left"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1089,"id":38,"name":"textalign-left","prevSize":32,"code":59807},"setIdx":2,"setId":2,"iconIdx":863},{"icon":{"paths":["M654.093 970.667c-17.92 0-36.267-6.4-50.347-19.2l-85.333-78.080c-3.413-2.987-10.24-2.987-14.080 0l-84.908 78.080c-28.16 26.027-72.108 25.6-100.268 0l-85.333-78.080c-3.413-2.987-10.238-2.987-14.078 0l-42.242 38.827c-38.827 35.413-69.546 29.867-84.479 23.040s-40.107-25.6-40.107-78.933v-336.64c0-257.28 205.653-466.347 458.665-466.347 253.013 0 458.667 209.066 458.667 466.347v336.64c0 53.333-25.173 72.533-40.107 78.933s-45.649 12.373-84.476-23.040l-42.667-38.827c-3.413-2.987-10.244-2.987-13.658 0l-85.333 78.080c-13.653 12.8-31.569 19.2-49.916 19.2zM512.009 806.827c17.92 0 36.267 6.4 49.92 19.2l85.333 78.080c3.413 2.987 10.24 2.987 13.653 0l85.333-78.080c28.16-25.6 72.111-25.6 100.271 0l42.667 38.827c7.253 6.4 11.942 9.387 14.929 10.24 1.28-2.987 2.56-8.96 2.56-19.2v-336.64c0-221.866-177.067-402.347-394.667-402.347-217.598 0-394.665 180.481-394.665 402.347v336.64c0 10.24 1.707 16.213 2.56 19.2 2.987-1.28 8.106-3.84 14.932-10.24l42.667-38.827c28.16-25.6 72.108-25.6 100.268 0l85.333 78.080c3.413 2.987 10.24 2.987 13.654 0l85.335-78.080c13.653-12.8 31.996-19.2 49.916-19.2z","M512.013 685.653c-66.987 0-133.975-20.907-189.869-62.72-14.080-10.667-17.065-30.72-6.398-44.8s30.719-17.067 44.799-6.4c89.175 66.987 213.757 66.987 302.93 0 14.080-10.667 34.133-7.68 44.8 6.4s7.684 34.133-6.396 44.8c-55.893 41.813-122.88 62.72-189.867 62.72z","M512 501.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM512 330.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ghost"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1090,"id":37,"name":"ghost","prevSize":32,"code":60534},"setIdx":2,"setId":2,"iconIdx":864},{"icon":{"paths":["M886.558 825.169h-749.225c-17.493 0-32-14.507-32-32v-210.773c0-222.719 181.333-404.052 404.055-404.052h5.116c222.72 0 404.053 181.333 404.053 404.052v210.773c0 17.493-14.507 32-32 32zM169.333 761.169h685.225v-178.773c0-187.732-152.747-340.052-340.053-340.052h-5.116c-187.735 0-340.055 152.747-340.055 340.052v178.773z","M512 242.346c-17.493 0-32-14.507-32-32v-125.013c0-17.493 14.507-32 32-32s32 14.507 32 32v125.013c0 17.493-14.507 32-32 32z","M512.021 970.658c-98.558 0-180.905-77.227-187.731-175.36-0.427-8.96 2.559-17.493 8.532-23.893s14.508-10.24 23.468-10.24h311.465c8.96 0 17.498 3.84 23.471 10.24s8.956 15.36 8.529 23.893c-6.827 98.133-89.173 175.36-187.733 175.36zM395.543 825.165c17.493 47.787 63.572 81.493 116.479 81.493s98.991-33.707 116.484-81.493h-232.963z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lamp-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1091,"id":36,"name":"lamp-1","prevSize":32,"code":60535},"setIdx":2,"setId":2,"iconIdx":865},{"icon":{"paths":["M938.714 529.067h-247.467c-81.067 0-142.080-61.013-142.080-142.080v-137.388c0-81.067 61.013-142.078 142.080-142.078h137.387c78.080 0 142.080 63.572 142.080 142.078v247.468c0 17.92-14.507 32-32 32zM691.247 171.948c-45.227 0-78.080 32.852-78.080 78.078v137.388c0 45.226 32.853 78.079 78.080 78.079h215.467v-215.467c0-43.093-34.987-78.078-78.080-78.078h-137.387z","M745.408 916.045c-11.093 0-21.76-5.542-27.733-15.782-8.96-15.36-3.84-34.987 11.093-43.947 137.813-81.92 177.92-116.053 177.92-359.253 0-17.493 14.507-32 32-32s32 14.507 32 32c0 266.667-54.187 322.56-209.067 414.293-5.12 3.413-10.667 4.689-16.213 4.689z","M442.462 529.067h-247.465c-81.067 0-142.080-61.013-142.080-142.080v-137.388c0-81.067 61.013-142.078 142.080-142.078h137.813c78.080 0 142.079 63.572 142.079 142.078v247.468c-0.427 17.92-14.507 32-32.427 32zM195.423 171.948c-45.227 0-78.080 32.852-78.080 78.078v137.388c0 45.226 32.853 78.079 78.080 78.079h215.467v-215.467c0-43.093-34.986-78.078-78.080-78.078h-137.387z","M249.158 916.045c-11.093 0-21.76-5.542-27.733-15.782-8.96-15.36-3.84-34.987 11.093-43.947 137.813-81.92 177.92-116.053 177.92-359.253 0-17.493 14.507-32 31.998-32 17.493 0 32 14.507 32 32 0 266.667-54.185 322.56-209.065 414.293-5.12 3.413-10.667 4.689-16.213 4.689z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote-down"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1092,"id":35,"name":"quote-down","prevSize":32,"code":60536},"setIdx":2,"setId":2,"iconIdx":866},{"icon":{"paths":["M874.667 650.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c25.173 0 30.72-3.84 31.147-3.84 0.853-2.56 0.853-17.493 0.853-28.16v-85.333c0-10.667 0-25.173-1.707-29.013-0.427 0.427-6.827-2.987-30.293-2.987-17.493 0-32-14.507-32-32s14.507-32 32-32c88.747 0 96 43.52 96 96v85.333c0 52.48-7.253 96-96 96z","M170.704 949.338c-5.973 0-11.947-1.707-17.067-5.12-14.933-9.387-19.627-29.013-9.813-43.947l512.001-810.666c9.387-14.933 29.44-19.2 43.947-9.813 14.933 9.387 19.627 29.013 9.813 43.947l-512.001 810.666c-5.973 9.813-16.213 14.933-26.88 14.933z","M229.973 839.253c-1.28 0-2.56 0-3.413 0-145.067-16.213-173.227-100.693-173.227-241.92v-170.667c0-188.16 57.173-245.333 245.333-245.333 17.493 0 32 14.507 32 32s-14.507 32-32 32c-152.32 0-181.333 29.013-181.333 181.333v170.667c0 141.653 29.013 168.533 116.053 178.347 17.493 2.133 30.293 17.92 28.16 35.413-1.707 16.213-15.787 28.16-31.573 28.16z","M554.667 842.667c-17.493 0-32-14.507-32-32s14.507-32 32-32c152.32 0 181.333-29.013 181.333-181.333v-170.668c0-141.227-29.013-168.533-115.627-178.347-17.493-2.133-30.293-17.92-28.16-35.413s17.493-30.72 35.413-28.16c144.213 16.213 172.373 101.12 172.373 241.92v170.668c0 188.16-57.173 245.333-245.333 245.333z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["battery-disable"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1093,"id":34,"name":"battery-disable","prevSize":32,"code":60537},"setIdx":2,"setId":2,"iconIdx":867},{"icon":{"paths":["M511.962 906.671c-8.107 0-16.213-2.987-22.613-9.387l-258.985-258.987c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l236.372 236.373 236.373-236.373c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-258.987 258.987c-6.4 6.4-14.507 9.387-22.613 9.387z","M512 899.413c-17.493 0-32-14.507-32-32v-718.080c0-17.493 14.507-32 32-32s32 14.507 32 32v718.080c0 17.493-14.507 32-32 32z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1094,"id":33,"name":"arrow-down","prevSize":32,"code":59808},"setIdx":2,"setId":2,"iconIdx":868},{"icon":{"paths":["M469.333 885.333c-229.547 0-416-186.453-416-416s186.453-416 416-416c229.547 0 416 186.453 416 416s-186.453 416-416 416zM469.333 117.333c-194.133 0-352 157.867-352 352s157.867 352 352 352c194.133 0 352-157.867 352-352s-157.867-352-352-352z","M576 501.333h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M469.333 608c-17.493 0-32-14.507-32-32v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 17.493-14.507 32-32 32z","M860.164 972.373c-3.413 0-6.827-0.427-9.813-0.853-20.053-2.56-56.32-16.213-76.8-77.227-10.667-32-6.827-64 10.667-88.32s46.933-37.973 80.64-37.973c43.52 0 77.653 16.64 93.013 46.080s11.093 66.987-13.227 103.253c-30.293 45.653-63.147 55.040-84.48 55.040zM834.564 874.24c7.253 22.187 17.493 33.28 24.32 34.133s19.627-7.253 32.853-26.453c12.373-18.347 13.227-31.573 10.24-37.547s-14.933-12.373-37.12-12.373c-13.227 0-23.040 4.267-28.587 11.52-5.12 7.253-5.973 18.347-1.707 30.72z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-zoom-in-1"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1095,"id":32,"name":"search-zoom-in-1","prevSize":32,"code":60538},"setIdx":2,"setId":2,"iconIdx":869},{"icon":{"paths":["M429.248 920.755c-42.667 0-85.76-29.013-143.36-86.187l-147.627-147.627c-125.44-125.44-112.64-173.653 0-286.72l237.653-238.080c84.054-84.053 153.6-133.12 286.72 0l147.627 147.627c119.893 119.893 90.88 195.84 0 286.72l-237.653 237.653c-57.6 57.6-100.267 86.613-143.36 86.613zM183.488 641.289l147.627 147.627c90.454 90.453 105.387 90.88 196.267 0l237.653-237.653c71.253-71.253 89.6-106.667 0-196.267l-147.627-147.627c-93.44-93.44-121.6-74.24-196.267 0l-237.653 237.653c-90.453 90.88-98.133 98.133 0 196.267z","M859.345 915.622c-48.64 0-87.040-18.773-105.813-51.627s-14.933-75.52 10.24-117.333l28.16-46.507c16.64-27.307 40.96-43.093 67.413-43.093s51.2 15.787 67.413 43.093l28.16 46.507c25.173 41.813 28.587 84.48 10.24 117.333s-57.6 51.627-105.813 51.627zM859.345 721.062c-2.133 0-7.253 3.413-12.8 11.947l-28.16 46.507c-12.8 21.333-16.213 40.533-9.387 52.907s25.173 19.2 49.92 19.2c24.747 0 43.093-6.827 49.92-19.2s3.413-31.147-9.387-52.907l-28.16-46.507c-4.693-8.96-9.813-11.947-11.947-11.947z","M85.36 554.244c-14.080 0-26.88-9.387-30.72-23.467-4.693-17.067 5.547-34.56 22.613-39.253 241.92-65.706 498.346-67.84 741.546-5.547l21.333 5.547c17.067 4.267 27.307 21.76 23.040 38.827s-21.76 27.307-38.827 23.040l-21.333-5.547c-232.533-59.733-477.439-57.6-708.692 5.547-3.413 0.853-6.4 0.853-8.96 0.853z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paintbucket"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1096,"id":31,"name":"paintbucket","prevSize":32,"code":60539},"setIdx":2,"setId":2,"iconIdx":870},{"icon":{"paths":["M714.667 330.667h-405.333c-17.493 0-32-14.507-32-32v-85.333c0-109.227 50.773-160 160-160h149.333c109.227 0 160 50.773 160 160v85.333c0 17.493-14.507 32-32 32zM341.333 266.667h341.333v-53.333c0-72.533-23.467-96-96-96h-149.333c-72.533 0-96 23.467-96 96v53.333z","M554.654 970.667h-85.333c-87.039 0-142.506-41.813-156.586-117.76-2.987-17.493 8.107-34.133 25.6-37.12 17.067-3.413 34.133 8.107 37.12 25.6 5.547 30.293 21.333 65.28 93.439 65.28h85.333c67.413 0 96-28.587 96-96v-138.667h-97.28c-17.493 0-32-14.507-32-32s14.507-32 32-32h129.707c17.493 0 32 14.507 32 32v170.667c0 103.253-56.747 160-160 160z","M256 800c-103.253 0-160-56.747-160-160v-213.333c0-103.253 56.747-160 160-160h451.84c17.493 0 32 14.507 32 32s-14.507 32-32 32h-451.84c-67.413 0-96 28.587-96 96v213.333c0 67.413 28.587 96 96 96 17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 800.004h-85.333c-17.493 0-32-14.507-32-32v-96h-96c-17.493 0-32-14.507-32-32s14.507-32 32-32h128c17.493 0 32 14.507 32 32v96h53.333c67.413 0 96-28.587 96-96v-213.333c0-39.255-9.813-65.281-30.293-79.788-14.507-10.24-17.92-30.293-7.68-44.373 10.24-14.507 30.293-17.92 44.8-7.68 37.973 26.88 57.173 71.253 57.173 131.841v213.333c0 103.253-56.747 160-160 160z","M725.333 672h-51.627c-17.493 0-32-14.507-32-32s14.507-32 32-32h51.627c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M384 501.333h-85.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M85.352 970.662c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l853.332-853.332c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-853.332 853.332c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["printer-slash"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":1097,"id":30,"name":"printer-slash","prevSize":32,"code":60540},"setIdx":2,"setId":2,"iconIdx":871},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M746.684 760.751h-78.933c-17.493 0-32-14.507-32-32s14.507-32 32-32h78.933c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M553.387 760.751h-276.053c-17.493 0-32-14.507-32-32s14.507-32 32-32h276.053c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M746.697 600.311h-235.947c-17.493 0-32-14.507-32-32s14.507-32 32-32h235.947c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M395.52 600.311h-118.187c-17.493 0-32-14.507-32-32s14.507-32 32-32h118.187c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["subtitle"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1098,"id":29,"name":"subtitle","prevSize":32,"code":60541},"setIdx":2,"setId":2,"iconIdx":872},{"icon":{"paths":["M510.75 970.667c-252.587 0-458.667-205.653-458.667-458.667s206.080-458.667 458.667-458.667c252.587 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM510.75 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M427.093 680.525h-55.467c-39.253 0-62.293-22.613-62.293-60.587v-215.893c0-37.973 23.467-60.587 62.293-60.587h55.040c39.253 0 62.293 22.613 62.293 60.587v215.893c0.427 37.973-23.040 60.587-61.867 60.587zM373.333 616.525h52.053v-209.067h-51.627l-0.427 209.067z","M652.335 680.525h-55.040c-39.253 0-62.293-22.613-62.293-60.587v-215.893c0-37.973 23.467-60.587 62.293-60.587h55.040c39.253 0 62.293 22.613 62.293 60.587v215.893c0 37.973-23.467 60.587-62.293 60.587zM598.575 616.525h52.053v-209.067h-51.627l-0.427 209.067z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pause-circle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1099,"id":28,"name":"pause-circle","prevSize":32,"code":60542},"setIdx":2,"setId":2,"iconIdx":873},{"icon":{"paths":["M512 970.667c-33.28 0-65.707-17.067-87.893-46.933l-43.093-57.6c-8.96-11.947-20.907-18.773-33.707-19.627-12.8-0.427-25.6 5.12-35.84 15.787l-24.32-21.76 23.467 21.76c-61.44 65.707-108.8 60.587-131.413 51.627-23.040-8.96-61.867-38.4-61.867-133.12v-480.427c0-189.44 54.613-247.040 233.387-247.040h322.56c178.773 0 233.387 57.6 233.387 247.040v480.427c0 94.293-38.827 123.733-61.867 133.12-22.613 8.96-69.547 14.080-131.413-51.627-10.24-11.093-22.613-17.067-36.267-15.787-12.8 0.853-25.173 7.68-34.133 19.627l-43.093 57.6c-22.187 29.867-54.613 46.933-87.893 46.933zM344.747 782.080c1.707 0 3.84 0 5.547 0 31.573 1.707 61.44 18.347 81.493 45.227l43.093 57.6c20.907 27.733 52.907 27.733 73.813 0l43.093-57.6c20.48-26.88 49.92-43.52 81.92-45.227 31.573-1.707 63.147 11.52 86.187 36.267 32.427 34.56 53.76 38.827 61.013 35.84 10.24-4.267 21.333-29.013 21.333-73.387v-480.427c0-154.027-26.88-183.040-169.387-183.040h-322.133c-142.507 0-169.387 29.013-169.387 183.040v480.427c0 44.8 11.093 69.547 21.333 73.387 7.253 2.987 28.587-1.28 61.013-35.84 23.040-23.467 51.627-36.267 81.067-36.267z","M682.667 330.667h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 501.333h-256c-17.493 0-32-14.507-32-32s14.507-32 32-32h256c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1100,"id":27,"name":"receipt","prevSize":32,"code":59809},"setIdx":2,"setId":2,"iconIdx":874},{"icon":{"paths":["M512 970.667c-29.867 0-60.16-11.52-82.773-34.133l-72.96-72.107c-17.92-17.92-42.667-27.733-67.84-27.733h-32.427c-88.32 0-160-71.253-160-158.72v-465.494c0-87.467 71.68-158.719 160-158.719h512c88.32 0 160 71.252 160 158.719v465.494c0 87.467-71.68 158.72-160 158.72h-32.427c-25.173 0-49.92 10.24-67.84 27.733l-72.96 72.107c-22.613 22.613-52.907 34.133-82.773 34.133zM256 117.333c-52.907 0-96 42.665-96 94.719v465.495c0 52.48 43.093 94.72 96 94.72h32.427c42.24 0 83.2 17.067 113.066 46.507l72.96 72.107c20.907 20.48 54.613 20.48 75.52 0l72.96-72.107c29.867-29.44 70.827-46.507 113.067-46.507h32c52.907 0 96-42.667 96-94.72v-465.495c0-52.48-43.093-94.719-96-94.719h-512z","M511.991 672c-7.68 0-15.36-1.28-22.187-3.413-56.32-19.2-201.388-104.107-201.388-262.826 0-76.8 62.293-139.094 138.668-139.094 31.147 0 61.013 10.667 85.333 29.44 24.32-18.773 54.187-29.44 85.333-29.44 76.373 0 138.667 62.294 138.667 139.094 0 158.72-145.493 243.626-201.387 262.826-7.68 2.133-15.36 3.413-23.040 3.413zM426.656 330.667c-40.96 0-74.667 33.707-74.667 75.094 0 120.746 117.331 188.16 158.291 202.24 0.427 0 2.138 0 3.418 0 41.387-14.507 157.862-81.92 157.862-201.812 0-41.387-33.28-75.094-74.667-75.094-23.467 0-45.222 11.094-59.729 29.867-11.947 16.213-39.253 16.213-51.2 0-13.653-19.2-35.413-30.294-59.308-30.294z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1101,"id":26,"name":"like","prevSize":32,"code":60543},"setIdx":2,"setId":2,"iconIdx":875},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M430.554 778.662c-26.454 0-52.48-9.813-72.533-29.867l-82.774-82.773c-40.107-40.107-40.107-104.96 0-145.067l245.334-245.334c40.107-40.107 104.96-40.107 145.067 0l82.773 82.773c40.107 40.107 40.107 104.961 0 145.068l-245.333 245.333c-20.053 19.627-46.080 29.867-72.533 29.867zM320.9 620.796l82.773 82.773c14.933 14.933 39.68 14.933 54.613 0l245.333-245.333c14.933-14.933 14.933-39.681 0-54.614l-82.773-82.773c-14.933-14.933-39.68-14.933-54.613 0l-245.333 245.334c-14.933 14.933-14.933 39.253 0 54.613z","M579.422 658.778c-8.107 0-16.213-2.987-22.613-9.387l-182.612-182.613c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l182.612 182.613c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eraser"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1102,"id":25,"name":"eraser","prevSize":32,"code":60544},"setIdx":2,"setId":2,"iconIdx":876},{"icon":{"paths":["M340.083 970.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM340.083 629.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-61.867-138.667-138.667-138.667z","M510.75 800c-17.493 0-32-14.507-32-32v-597.333c0-17.493 14.507-32 32-32s32 14.507 32 32v597.333c0 17.493-14.080 32-32 32z","M816.235 436.476c-14.080 0-29.013-2.56-43.52-7.253l-188.587-62.718c-58.88-19.627-104.96-83.627-104.96-145.493v-50.347c0-41.387 17.067-77.227 46.080-98.56 29.44-21.333 68.693-25.6 107.947-12.8l188.587 62.72c58.88 19.627 104.96 83.627 104.96 145.493v49.92c0 41.387-17.067 77.227-46.080 98.56-18.347 14.078-40.96 20.478-64.427 20.478zM589.675 116.051c-10.24 0-19.627 2.56-26.88 8.107-12.8 8.96-19.627 25.6-19.627 46.507v49.92c0 34.133 28.587 73.813 61.013 84.907l188.587 62.72c19.627 6.827 37.973 5.12 50.347-3.84 12.8-8.96 19.627-25.6 19.627-46.507v-49.92c0-34.133-28.587-73.813-61.013-84.907l-188.587-62.72c-8.107-2.987-16.213-4.267-23.467-4.267z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["musicnote"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1103,"id":24,"name":"musicnote","prevSize":32,"code":60545},"setIdx":2,"setId":2,"iconIdx":877},{"icon":{"paths":["M597.333 885.333h-170.667c-206.080 0-373.333-167.68-373.333-373.333s167.253-373.333 373.333-373.333h170.667c206.080 0 373.333 167.68 373.333 373.333s-167.253 373.333-373.333 373.333zM426.667 202.667c-170.667 0-309.333 138.667-309.333 309.333s138.667 309.333 309.333 309.333h170.667c170.667 0 309.333-138.667 309.333-309.333s-138.667-309.333-309.333-309.333h-170.667z","M597.333 714.667c-111.787 0-202.667-90.88-202.667-202.667s90.88-202.667 202.667-202.667c111.787 0 202.667 90.88 202.667 202.667s-90.88 202.667-202.667 202.667zM597.333 373.333c-76.373 0-138.667 62.293-138.667 138.667s62.293 138.667 138.667 138.667c76.373 0 138.667-62.293 138.667-138.667s-62.293-138.667-138.667-138.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-on-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1104,"id":23,"name":"toggle-on-circle","prevSize":32,"code":60546},"setIdx":2,"setId":2,"iconIdx":878},{"icon":{"paths":["M628.075 970.667h-229.971c-27.307 0-51.201-1.707-72.961-4.693-17.493-2.56-29.868-18.773-27.308-36.267s18.348-30.293 36.268-27.307c18.773 2.56 39.68 3.84 63.573 3.84h229.975c174.507 0 236.369-61.867 236.369-236.373v-191.573c0-17.493 14.507-32 32-32s32 14.507 32 32v191.573c0.427 210.773-89.6 300.8-299.947 300.8z","M129.667 694.187c-17.493 0-32-14.507-32-32v-183.467c0-17.493 14.507-32 32-32s32 14.507 32 32v183.467c0 17.493-14.507 32-32 32z","M513.293 544c-46.933 0-89.601-18.347-119.895-52.053s-44.373-77.654-39.68-124.587l28.588-285.011c1.707-16.213 15.36-29.015 32-29.015h199.252c16.64 0 30.293 12.375 32 29.015l28.587 285.011c4.693 46.933-9.387 90.88-39.68 124.587-31.573 33.707-74.24 52.053-121.173 52.053zM442.466 117.333l-25.599 256.427c-2.987 28.587 5.546 55.466 23.466 75.093 36.267 40.107 108.8 40.107 145.067 0 17.92-20.053 26.453-46.933 23.467-75.093l-25.6-256.427h-140.8z","M782.059 544c-86.613 0-163.84-69.973-172.8-156.161l-29.867-299.094c-0.853-8.96 2.133-17.918 8.107-24.745s14.507-10.667 23.893-10.667h130.133c125.44 0 183.893 52.48 201.387 181.333l11.947 118.615c5.12 50.347-10.24 98.136-43.093 134.403s-78.933 56.316-129.707 56.316zM646.805 117.333l26.453 264.104c5.547 53.332 55.467 98.563 108.8 98.563 32.427 0 61.44-12.369 82.347-34.982 20.48-22.615 29.867-52.909 26.88-85.335l-11.947-117.333c-13.227-96.427-44.373-125.015-137.813-125.015h-94.72z","M241.932 544c-50.773 0-96.852-20.049-129.706-56.316s-48.214-84.056-43.094-134.403l11.948-117.333c17.92-130.133 76.372-182.615 201.812-182.615h130.133c8.96 0 17.494 3.84 23.894 10.667 5.973 6.827 8.96 15.785 8.107 24.745l-29.868 299.094c-9.387 86.188-87.040 156.161-173.227 156.161zM282.466 117.333c-93.44 0-124.586 28.158-138.24 125.865l-11.521 116.057c-3.413 32.427 6.4 62.72 26.88 85.332 20.48 22.613 49.92 34.987 82.346 34.987 53.76 0 103.68-45.222 108.8-98.558l26.456-264.109h-94.722v0.427z","M213.333 1013.333c-59.733 0-115.626-26.031-154.026-71.684-0.427-0.427-2.134-2.129-3.414-4.262-6.4-7.68-11.947-15.36-16.214-23.467-18.773-30.293-29.013-66.133-29.013-103.68 0-62.293 27.735-119.893 75.948-158.293 8.533-6.827 17.919-13.227 28.159-18.773 29.44-16.64 64-26.027 98.56-26.027 49.493 0 95.148 17.067 131.841 49.067 4.693 3.413 11.091 9.813 16.638 15.787 34.56 37.973 53.76 86.613 53.76 137.387 0 37.12-10.24 73.387-29.44 104.533-9.387 16.213-20.906 30.293-33.706 41.387-2.56 2.56-5.12 5.124-8.107 7.258-33.707 32.853-81.067 50.769-130.987 50.769zM105.812 897.707c1.28 1.28 3.413 3.409 5.12 6.396 23.467 27.733 61.868 45.658 102.401 45.658 33.707 0 66.133-12.373 90.88-34.56 1.28-1.707 2.987-3.413 5.12-4.693 8.533-7.253 15.788-16.644 22.615-27.738 13.227-21.76 20.479-46.076 20.479-71.676 0-34.56-13.227-68.267-37.12-94.293-2.987-3.413-5.975-6.827-9.815-9.387-46.080-39.68-109.226-45.649-159.573-17.062-6.827 3.84-12.8 7.676-18.346 12.369-33.28 26.453-52.479 65.707-52.479 108.373 0 25.173 6.825 49.924 20.052 71.258 3.413 5.973 6.827 10.662 10.667 14.929-0.427 0 0 0 0 0.427z","M277.323 841.813h-127.573c-17.493 0-32-14.507-32-32s14.507-32 32-32h127.573c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M213.333 907.093c-17.493 0-32-14.507-32-32v-127.573c0-17.493 14.507-32 32-32s32 14.507 32 32v127.573c0 17.92-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shop-add"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":1105,"id":22,"name":"shop-add","prevSize":32,"code":60547},"setIdx":2,"setId":2,"iconIdx":879},{"icon":{"paths":["M597.355 721.498c-8.107 0-16.213-2.987-22.613-9.387l-168.961-168.96c-12.373-12.373-12.373-32.853 0-45.227s32.855-12.373 45.228 0l168.96 168.96c12.373 12.373 12.373 32.853 0 45.227-6.4 5.973-14.507 9.387-22.613 9.387z","M426.643 723.209c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l168.962-168.96c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-168.96 168.96c-6.4 6.4-14.507 9.387-22.615 9.387z","M597.333 288h-170.667c-40.96 0-117.333 0-117.333-117.333s76.373-117.333 117.333-117.333h170.667c40.96 0 117.333 0 117.333 117.333 0 40.96 0 117.333-117.333 117.333zM426.667 117.333c-42.24 0-53.333 0-53.333 53.333s11.093 53.333 53.333 53.333h170.667c53.333 0 53.333-11.093 53.333-53.333 0-53.333-11.093-53.333-53.333-53.333h-170.667z","M640 970.662h-256c-239.787 0-288-110.080-288-288v-255.999c0-194.56 70.4-277.76 243.627-286.72 17.92-0.853 32.853 12.373 33.707 30.293s-12.8 32.427-30.293 33.28c-121.173 6.827-183.040 43.093-183.040 223.147v255.999c0 157.867 31.147 224 224 224h256c192.853 0 224-66.133 224-224v-255.999c0-180.053-61.867-216.32-183.040-223.147-17.493-0.853-31.147-16.213-30.293-33.707s16.213-31.147 33.707-30.293c173.227 9.387 243.627 92.587 243.627 286.72v255.999c0 178.347-48.213 288.427-288 288.427z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard-close"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1106,"id":21,"name":"clipboard-close","prevSize":32,"code":60548},"setIdx":2,"setId":2,"iconIdx":880},{"icon":{"paths":["M896 864h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 565.333h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M896 266.667h-426.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h426.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M170.643 309.331c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l20.053 20.053 105.387-105.387c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-128 128c-6.4 6.4-14.507 9.387-22.613 9.387z","M170.643 607.996c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l20.053 20.053 105.387-105.385c12.373-12.373 32.853-12.373 45.227 0 12.373 12.372 12.373 32.852 0 45.225l-128 128c-6.4 6.4-14.507 9.387-22.613 9.387z","M170.643 906.662c-8.107 0-16.213-2.987-22.613-9.387l-42.667-42.667c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l20.053 20.053 105.387-105.387c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-128 128c-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["task"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1107,"id":20,"name":"task","prevSize":32,"code":59810},"setIdx":2,"setId":2,"iconIdx":881},{"icon":{"paths":["M725.333 800h-426.667c-32 0-55.467-1.28-75.52-4.267-141.653-15.36-169.813-100.267-169.813-241.067v-85.333c0-140.8 28.16-225.707 171.093-241.493 18.773-2.56 42.24-3.84 74.24-3.84h426.667c32 0 55.467 1.28 75.52 4.267 142.080 15.787 169.813 100.267 169.813 241.067v85.333c0 140.8-28.16 225.707-171.093 241.493-18.773 2.56-42.24 3.84-74.24 3.84zM298.667 288c-29.013 0-49.493 1.28-66.133 3.413-86.613 9.813-115.2 36.693-115.2 177.92v85.333c0 141.227 28.587 168.107 113.92 177.92 17.92 2.56 38.4 3.413 67.413 3.413h426.667c29.013 0 49.493-1.28 66.133-3.413 86.613-9.387 115.2-36.693 115.2-177.92v-85.333c0-141.227-28.587-168.107-113.92-177.92-17.92-2.56-38.4-3.413-67.413-3.413h-426.667z","M654.084 970.675h-284.161c-132.267 0-174.507-42.24-174.507-174.080v-14.507c0-7.253 0-13.653 0.427-20.053 0.427-8.96 4.693-17.067 11.947-22.613 6.827-5.547 15.787-8.107 24.747-6.827 17.067 2.56 37.547 3.413 66.133 3.413h426.668c29.013 0 49.493-1.28 66.133-3.413 8.96-1.28 17.92 1.28 24.747 6.827s11.093 13.653 11.947 22.613c0.427 6.827 0.427 12.8 0.427 20.053v14.507c0 131.84-42.24 174.080-174.507 174.080zM259.417 799.155c0.427 93.44 15.36 107.52 110.507 107.52h284.161c95.147 0 110.080-14.080 110.507-107.52-11.52 0.427-24.32 0.853-39.253 0.853h-426.668c-14.933 0-27.733-0.427-39.253-0.853z","M796.164 291.84c-1.707 0-2.987 0-4.693-0.427-17.067-2.56-37.547-3.413-66.133-3.413h-426.668c-29.013 0-49.493 1.28-66.133 3.413-8.96 1.28-17.92-1.28-24.747-6.827s-11.093-13.653-11.947-22.613c-0.427-6.827-0.427-12.8-0.427-20.053v-14.507c0-131.84 42.24-174.080 174.507-174.080h284.161c132.267 0 174.507 42.24 174.507 174.080v14.507c0 7.253 0 13.653-0.427 20.053-0.427 8.96-4.693 17.067-11.947 22.613-5.547 4.693-12.8 7.253-20.053 7.253zM298.67 224h426.668c14.933 0 27.733 0.427 39.253 0.853-0.427-93.44-15.36-107.52-110.507-107.52h-284.161c-95.147 0-110.080 14.080-110.507 107.52 11.52-0.427 24.32-0.853 39.253-0.853z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-vertical-1"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1108,"id":19,"name":"slider-vertical-1","prevSize":32,"code":59811},"setIdx":2,"setId":2,"iconIdx":882},{"icon":{"paths":["M824.311 458.667h-624.215c-80.64 0-146.347-65.706-146.347-146.346v-112.213c0-80.64 65.707-146.347 146.347-146.347h624.215c80.64 0 146.347 65.707 146.347 146.347v112.213c0 80.64-65.707 146.346-146.347 146.346zM199.67 117.334c-45.653 0-82.346 37.12-82.346 82.346v112.213c0 45.653 37.12 82.347 82.346 82.347h624.215c45.653 0 82.347-37.12 82.347-82.347v-112.213c0-45.653-37.12-82.346-82.347-82.346h-624.215z","M824.311 970.667h-624.215c-80.64 0-146.347-65.707-146.347-146.347v-112.213c0-80.64 65.707-146.347 146.347-146.347h624.215c80.64 0 146.347 65.707 146.347 146.347v112.213c0 80.64-65.707 146.347-146.347 146.347zM199.67 629.333c-45.653 0-82.346 37.12-82.346 82.347v112.213c0 45.653 37.12 82.347 82.346 82.347h624.215c45.653 0 82.347-37.12 82.347-82.347v-112.213c0-45.653-37.12-82.347-82.347-82.347h-624.215z","M256 330.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M426.667 330.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M256 842.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M426.667 842.667c-17.493 0-32-14.507-32-32v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 17.493-14.507 32-32 32z","M768 288h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 800h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["driver"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":1109,"id":18,"name":"driver","prevSize":32,"code":59812},"setIdx":2,"setId":2,"iconIdx":883},{"icon":{"paths":["M512 821.333c-170.667 0-309.333-138.667-309.333-309.333s138.667-309.333 309.333-309.333c170.667 0 309.333 138.667 309.333 309.333s-138.667 309.333-309.333 309.333zM512 266.667c-135.253 0-245.333 110.080-245.333 245.333s110.080 245.333 245.333 245.333c135.253 0 245.333-110.080 245.333-245.333s-110.080-245.333-245.333-245.333z","M512 979.627c-23.467 0-42.667-17.493-42.667-40.96v-3.413c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667c0 23.467-19.2 44.373-42.667 44.373zM816.64 859.307c-11.093 0-21.76-4.267-30.293-12.373l-5.547-5.547c-16.64-16.64-16.64-43.52 0-60.16s43.52-16.64 60.16 0l5.547 5.547c16.64 16.64 16.64 43.52 0 60.16-8.107 8.107-18.773 12.373-29.867 12.373zM207.36 859.307c-11.093 0-21.76-4.267-30.293-12.373-16.64-16.64-16.64-43.52 0-60.16l5.547-5.547c16.64-16.64 43.52-16.64 60.16 0s16.64 43.52 0 60.16l-5.547 5.547c-8.107 8.107-19.2 12.373-29.867 12.373zM938.667 554.667h-3.413c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 44.373 19.2 44.373 42.667s-17.493 42.667-40.96 42.667zM88.747 554.667h-3.413c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 44.373 19.2 44.373 42.667s-17.493 42.667-40.96 42.667zM811.093 255.573c-11.093 0-21.76-4.267-30.293-12.373-16.64-16.64-16.64-43.52 0-60.16l5.547-5.547c16.64-16.64 43.52-16.64 60.16 0s16.64 43.52 0 60.16l-5.547 5.547c-8.107 8.107-18.773 12.373-29.867 12.373zM212.907 255.573c-11.093 0-21.76-4.267-30.293-12.373l-5.547-5.973c-16.64-16.64-16.64-43.52 0-60.16s43.52-16.64 60.16 0l5.547 5.547c16.64 16.64 16.64 43.52 0 60.16-8.107 8.533-19.2 12.8-29.867 12.8zM512 129.707c-23.467 0-42.667-17.493-42.667-40.96v-3.413c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667c0 23.467-19.2 44.373-42.667 44.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sun-1"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1110,"id":17,"name":"sun-1","prevSize":32,"code":60549},"setIdx":2,"setId":2,"iconIdx":884},{"icon":{"paths":["M669.867 714.667h-102.4c-103.253 0-151.467-48.213-151.467-151.467v-102.4c0-103.253 48.213-151.467 151.467-151.467h102.4c103.253 0 151.467 48.213 151.467 151.467v102.4c0 103.253-48.213 151.467-151.467 151.467zM567.467 373.333c-67.84 0-87.467 19.627-87.467 87.467v102.4c0 67.84 19.627 87.467 87.467 87.467h102.4c67.84 0 87.467-19.627 87.467-87.467v-102.4c0-67.84-19.627-87.467-87.467-87.467h-102.4z","M725.333 885.333h-426.667c-188.16 0-245.333-57.173-245.333-245.333v-256c0-188.16 57.173-245.333 245.333-245.333h426.667c188.16 0 245.333 57.173 245.333 245.333v256c0 188.16-57.173 245.333-245.333 245.333zM298.667 202.667c-152.747 0-181.333 29.013-181.333 181.333v256c0 152.32 28.587 181.333 181.333 181.333h426.667c152.747 0 181.333-29.013 181.333-181.333v-256c0-152.32-28.587-181.333-181.333-181.333h-426.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-on"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1111,"id":16,"name":"toggle-on","prevSize":32,"code":60550},"setIdx":2,"setId":2,"iconIdx":885},{"icon":{"paths":["M770.581 945.498h-517.122c-83.2 0-146.773-30.293-179.2-84.907-32-54.613-27.733-125.013 12.8-197.547l258.56-465.494c42.667-76.8 101.548-119.040 166.402-119.040s123.733 42.24 166.4 119.040l258.56 465.494c40.533 72.96 45.227 142.933 12.8 197.547s-96 84.907-179.2 84.907zM512.021 142.511c-40.107 0-79.36 30.72-110.508 86.187l-258.133 465.494c-29.013 52.053-33.707 99.84-13.653 134.4 20.053 34.133 64.427 53.333 124.16 53.333h517.122c59.733 0 103.68-18.773 124.16-53.333 20.053-34.56 15.36-81.92-13.653-134.4l-258.987-465.494c-31.147-55.467-70.4-86.187-110.507-86.187z","M914.807 885.333c-6.4 0-12.8-1.707-18.347-5.973l-384.427-269.227-384.425 269.227c-14.507 10.24-34.56 6.827-44.373-7.68-10.24-14.507-6.827-34.56 7.68-44.373l402.772-282.027c11.093-7.68 25.6-7.68 36.693 0l402.773 282.027c14.507 10.24 17.92 30.293 7.68 44.373-5.973 8.96-15.787 13.653-26.027 13.653z","M512 603.307c-17.493 0-32-14.507-32-32v-443.307c0-17.493 14.507-32 32-32s32 14.507 32 32v443.307c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["triangle"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1112,"id":15,"name":"triangle","prevSize":32,"code":59813},"setIdx":2,"setId":2,"iconIdx":886},{"icon":{"paths":["M384 458.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM384 288c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-213.333c0-17.493 14.507-32 32-32s32 14.507 32 32v213.333c0 231.68-98.987 330.667-330.667 330.667z","M706.56 328.116c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l165.973-165.973c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-165.973 165.973c-6.4 6.4-14.507 9.387-22.613 9.387z","M872.115 328.116c-8.107 0-16.213-2.987-22.613-9.387l-165.973-165.973c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l165.973 165.973c12.373 12.373 12.373 32.853 0 45.227-5.973 6.4-14.080 9.387-22.613 9.387z","M113.891 840.538c-10.24 0-20.48-5.12-26.453-14.080-9.813-14.507-5.973-34.56 8.533-44.373l210.347-141.227c46.080-30.72 109.653-27.307 151.466 8.107l14.080 12.373c21.333 18.347 57.6 18.347 78.507 0l177.493-152.32c45.227-38.827 116.48-38.827 162.133 0l69.547 59.733c13.227 11.52 14.933 31.573 3.413 45.227-11.52 13.227-31.573 14.933-45.227 3.413l-69.547-59.733c-21.333-18.347-57.6-18.347-78.507 0l-177.493 152.32c-45.227 38.827-116.48 38.827-162.133 0l-14.079-12.373c-19.627-16.64-52.053-18.347-73.813-3.413l-209.92 141.227c-5.973 3.413-12.373 5.12-18.347 5.12z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gallery-remove"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1113,"id":14,"name":"gallery-remove","prevSize":32,"code":60551},"setIdx":2,"setId":2,"iconIdx":887},{"icon":{"paths":["M474.475 778.667c-8.107 0-16.213-2.987-22.613-9.387l-63.998-64c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.225 0l42.24 42.24 116.053-107.093c12.8-11.947 33.28-11.093 45.227 1.707s11.093 33.28-1.707 45.227l-138.667 128c-5.973 5.547-13.653 8.533-21.76 8.533z","M221.477 272.211c-8.107 0-16.64-3.413-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l154.88-154.88c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-154.88 154.88c-6.4 5.973-14.507 9.387-22.613 9.387z","M802.522 272.211c-8.107 0-16.213-2.987-22.613-9.387l-154.88-154.88c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l154.88 154.88c12.373 12.373 12.373 32.853 0 45.227-5.973 5.973-14.507 9.387-22.613 9.387z","M862.293 452.271c-2.987 0-5.973 0-8.96 0h-682.667c-29.867 0.427-64 0.427-88.747-24.32-19.627-19.2-28.587-49.067-28.587-93.013 0-117.333 85.76-117.333 126.72-117.333h663.893c40.96 0 126.72 0 126.72 117.333 0 44.373-8.96 73.813-28.587 93.013-22.187 22.187-52.053 24.32-79.787 24.32zM180.053 388.271h673.707c19.2 0.427 37.12 0.427 43.093-5.547 2.987-2.987 9.387-13.227 9.387-47.787 0-48.213-11.947-53.333-62.72-53.333h-663.467c-50.773 0-62.72 5.12-62.72 53.333 0 34.56 6.827 44.8 9.387 47.787 5.973 5.547 24.32 5.547 43.093 5.547h10.24z","M635.337 970.667h-257.279c-152.747 0-186.88-90.88-200.107-169.813l-60.16-369.067c-2.987-17.493 8.96-33.707 26.453-36.693 17.067-2.987 33.707 8.96 36.693 26.453l60.16 368.64c12.373 75.52 37.973 116.48 136.96 116.48h257.279c109.653 0 122.027-38.4 136.107-112.64l71.68-373.333c3.413-17.493 20.053-29.013 37.547-25.173 17.493 3.413 28.587 20.053 25.173 37.547l-71.68 373.333c-16.64 86.613-44.373 164.267-198.827 164.267z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-tick"],"colorPermutations":{"25525525514145501":[{},{},{},{},{}]}},"attrs":[{},{},{},{},{}],"properties":{"order":1114,"id":13,"name":"bag-tick","prevSize":32,"code":60552},"setIdx":2,"setId":2,"iconIdx":888},{"icon":{"paths":["M512 970.667c-253.013 0-458.667-205.653-458.667-458.667s205.653-458.667 458.667-458.667c253.013 0 458.667 205.653 458.667 458.667s-205.653 458.667-458.667 458.667zM512 117.333c-217.6 0-394.667 177.067-394.667 394.667s177.067 394.667 394.667 394.667c217.6 0 394.667-177.067 394.667-394.667s-177.067-394.667-394.667-394.667z","M511.974 778.671c-8.96 0-17.493-1.28-24.747-3.84-91.735-31.147-237.228-142.933-237.228-309.333 0-88.745 71.68-160.852 160-160.852 38.401 0 73.814 13.226 102.401 37.12 28.587-23.893 64.427-37.12 101.973-37.12 88.32 0 160 72.106 160 160.852 0 165.973-145.493 277.76-237.653 309.333-7.253 2.56-16.213 3.84-24.747 3.84zM409.574 369.072c-52.907 0-96 43.521-96 96.852 0 148.907 143.788 231.68 194.134 248.747 1.707 0.427 5.973 0.427 7.68 0 50.347-17.067 194.133-99.84 194.133-248.747 0-53.332-43.093-96.852-96-96.852-29.867 0-58.453 14.507-76.373 38.827-11.947 16.213-39.253 16.213-51.2 0-17.92-24.747-45.653-38.827-76.374-38.827z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-circle"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1115,"id":12,"name":"heart-circle","prevSize":32,"code":60553},"setIdx":2,"setId":2,"iconIdx":889},{"icon":{"paths":["M682.667 970.667h-341.333c-245.333 0-245.333-130.133-245.333-245.333v-42.667c0-95.147 0-202.667 202.667-202.667 50.773 0 69.547 12.373 96 32 1.28 1.28 2.987 2.133 4.267 3.84l43.52 46.080c36.693 38.827 103.253 38.827 139.947 0l43.52-46.080c1.28-1.28 2.56-2.56 4.267-3.84 26.453-20.053 45.227-32 96-32 202.667 0 202.667 107.52 202.667 202.667v42.667c-0.853 162.987-83.2 245.333-246.187 245.333zM298.667 544c-138.667 0-138.667 43.52-138.667 138.667v42.667c0 116.907 0 181.333 181.333 181.333h341.333c127.147 0 181.333-54.187 181.333-181.333v-42.667c0-95.147 0-138.667-138.667-138.667-30.72 0-37.12 3.84-55.467 17.493l-41.387 43.947c-30.72 32.427-72.107 50.347-116.48 50.347s-85.76-17.92-116.48-50.347l-41.387-43.947c-18.347-13.653-24.747-17.493-55.467-17.493z","M810.667 544c-17.493 0-32-14.507-32-32v-256c0-95.147 0-138.667-138.667-138.667h-256c-138.667 0-138.667 43.52-138.667 138.667v256c0 17.493-14.507 32-32 32s-32-14.507-32-32v-256c0-95.147 0-202.667 202.667-202.667h256c202.667 0 202.667 107.52 202.667 202.667v256c0 17.493-14.507 32-32 32z","M592.247 425.812h-142.080c-17.493 0-32.001-14.507-32.001-32s14.508-32 32.001-32h142.080c17.493 0 32 14.507 32 32s-14.080 32-32 32z","M628.083 297.812h-213.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h213.333c17.493 0 32 14.507 32 32s-14.080 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directbox-notif"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1116,"id":11,"name":"directbox-notif","prevSize":32,"code":59814},"setIdx":2,"setId":2,"iconIdx":890},{"icon":{"paths":["M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h256c231.68 0 330.667 98.987 330.667 330.667v256c0 231.68-98.987 330.667-330.667 330.667zM384 117.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-256c0-196.693-69.973-266.667-266.667-266.667h-256z","M662.622 606.298c-8.107 0-16.213-2.987-22.613-9.387l-128-128-128.002 128c-12.373 12.373-32.853 12.373-45.227 0s-12.373-32.853 0-45.227l150.615-150.612c12.373-12.373 32.853-12.373 45.227 0l150.613 150.612c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-square-up"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1117,"id":10,"name":"arrow-square-up","prevSize":32,"code":60554},"setIdx":2,"setId":2,"iconIdx":891},{"icon":{"paths":["M588.809 467.196c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.852 0-45.225l349.867-349.867c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-349.867 349.865c-5.973 5.973-14.080 9.387-22.613 9.387z","M760.747 501.329h-206.080c-17.493 0-32-14.507-32-32v-206.079c0-17.493 14.507-32 32-32s32 14.507 32 32v174.079h174.080c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M640 970.667h-256c-231.68 0-330.667-98.987-330.667-330.667v-256c0-231.68 98.987-330.667 330.667-330.667h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-85.333c-196.693 0-266.667 69.973-266.667 266.667v256c0 196.693 69.973 266.667 266.667 266.667h256c196.693 0 266.667-69.973 266.667-266.667v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 231.68-98.987 330.667-330.667 330.667z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["import-2"],"colorPermutations":{"25525525514145501":[{},{},{}]}},"attrs":[{},{},{}],"properties":{"order":1118,"id":9,"name":"import-2","prevSize":32,"code":60555},"setIdx":2,"setId":2,"iconIdx":892},{"icon":{"paths":["M665.143 924.16c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l120.32-120.32c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-120.32 120.32c-6.4 6.4-14.507 9.387-22.613 9.387z","M785.463 924.16c-8.107 0-16.213-2.987-22.613-9.387l-120.32-120.32c-12.373-12.373-12.373-32.853 0-45.227s32.853-12.373 45.227 0l120.32 120.32c12.373 12.373 12.373 32.853 0 45.227-6.4 6.4-14.507 9.387-22.613 9.387z","M518.848 495.787c-1.28 0-2.133 0-3.413 0-2.133-0.427-5.12-0.427-7.68 0-123.731-3.84-217.171-101.12-217.171-221.013 0-122.027 99.413-221.44 221.438-221.44 122.027 0 221.44 99.413 221.44 221.44-0.427 119.893-94.293 217.173-213.333 221.013-0.427 0-0.853 0-1.28 0zM512.021 117.333c-86.611 0-157.438 70.827-157.438 157.44 0 85.333 66.56 154.027 151.465 157.013 2.56-0.427 8.107-0.427 13.653 0 83.627-3.84 149.333-72.533 149.76-157.013 0-86.613-70.827-157.44-157.44-157.44z","M511.996 962.556c-87.039 0-169.386-22.613-231.679-64.427-59.307-39.68-91.733-93.867-91.733-152.32s32.853-112.213 91.733-151.467c127.573-85.333 334.932-85.333 462.506 0 14.507 9.813 18.773 29.867 8.96 44.373-9.813 14.933-29.867 18.773-44.373 8.96-106.24-70.827-285.439-70.827-391.679 0-40.96 27.307-63.147 61.867-63.147 98.133s22.613 71.68 63.147 98.987c51.627 34.56 121.172 53.333 195.839 53.333 17.493 0 32 14.507 32 32s-14.080 32.427-31.573 32.427z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-delete"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1119,"id":8,"name":"profile-delete","prevSize":32,"code":60556},"setIdx":2,"setId":2,"iconIdx":893},{"icon":{"paths":["M750.925 962.556h-264.533c-17.493 0-32-14.507-32-32s14.507-32 32-32h264.533c45.653 0 90.453-37.978 98.133-83.204l56.747-339.622c5.12-30.72-11.942-74.671-35.836-93.871l-295.684-236.37c-34.133-27.307-90.88-27.307-124.587-0.427l-295.679 236.797c-24.32 19.627-40.96 63.151-35.84 93.871l11.947 72.102c2.987 17.493-8.96 34.133-26.453 36.693-17.493 3.413-33.706-8.96-36.693-26.453l-11.947-71.676c-8.96-52.907 16.64-120.748 58.88-154.455l295.68-236.802c57.172-46.080 147.198-45.653 204.798 0.427l295.68 236.375c41.813 33.707 67.413 101.548 58.88 154.455l-56.747 339.622c-12.8 75.52-84.907 136.538-161.28 136.538z","M213.343 970.667c-17.493 0-31.573-14.080-32-31.147-1.28-57.6-39.253-95.573-96.853-96.853-17.493-0.427-31.574-14.933-31.147-32.853 0.427-17.493 14.507-31.147 32-31.147 0.427 0 0.426 0 0.853 0 91.733 2.133 157.44 67.413 159.147 159.147 0.427 17.493-13.654 32.427-31.147 32.853-0.427 0-0.426 0-0.853 0z","M341.343 970.667c-17.493 0-32-14.080-32-31.573-0.427-28.16-5.12-55.040-13.654-80.213-21.76-62.293-68.267-108.378-130.56-130.564-25.173-8.96-52.053-13.649-80.213-13.649-17.493 0-32-14.507-31.573-32.427 0-17.493 14.507-31.573 32-31.573h0.427c35.413 0.427 69.12 6.4 100.693 17.493 80.64 28.587 140.8 88.747 169.387 169.387 11.093 31.573 17.067 65.707 17.494 100.693 0 17.92-14.080 32.427-32 32.427 0.427 0 0 0 0 0z","M85.333 981.333c-23.893 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667c23.467 0 42.667 19.2 42.667 42.667s-18.773 42.667-42.667 42.667z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["smart-home"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1120,"id":7,"name":"smart-home","prevSize":32,"code":60557},"setIdx":2,"setId":2,"iconIdx":894},{"icon":{"paths":["M341.333 501.333c-17.493 0-32-14.507-32-32v-213.333c0-111.787 90.88-202.667 202.667-202.667s202.667 90.88 202.667 202.667v12.8c0 17.493-14.507 32-32 32s-32-14.507-32-32v-12.8c0-76.373-62.293-138.667-138.667-138.667s-138.667 62.293-138.667 138.667v213.333c0 17.493-14.507 32-32 32z","M512.026 693.333c-57.173 0-111.785-24.32-150.185-66.56-11.947-13.227-10.667-33.28 2.133-45.227 13.227-11.947 33.28-10.667 45.227 2.133 26.025 29.013 63.572 45.653 102.825 45.653 76.373 0 138.667-62.293 138.667-138.667v-21.333c0-17.493 14.507-32 32-32s32 14.507 32 32v21.333c0 111.787-90.88 202.667-202.667 202.667z","M511.97 842.662c-90.879 0-177.919-34.133-244.479-96-12.8-11.947-13.653-32.427-1.707-45.227 12.373-13.227 32.853-13.653 45.653-1.707 54.613 50.773 125.865 78.933 200.532 78.933 162.133 0 294.4-132.267 294.4-294.4v-72.533c0-17.493 14.507-32 32-32s32 14.507 32 32v72.533c0 197.547-160.853 358.4-358.4 358.4z","M211.183 643.409c-12.373 0-24.32-7.253-29.44-19.627-18.773-44.373-28.16-90.88-28.16-139.52v-72.533c0-17.493 14.507-32 32-32s32 14.507 32 32v72.533c0 39.68 7.68 78.080 23.040 114.347 6.827 16.213-0.853 34.987-17.067 41.813-3.84 2.133-8.107 2.987-12.373 2.987z","M167.226 842.231c-8.107 0-16.213-2.987-22.613-9.387-12.373-12.373-12.373-32.853 0-45.227l689.068-689.067c12.373-12.373 32.853-12.373 45.227 0s12.373 32.853 0 45.227l-688.641 689.067c-6.4 6.4-14.507 9.387-23.040 9.387z","M469.333 288c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M512 970.667c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone-slash-1"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":1121,"id":6,"name":"microphone-slash-1","prevSize":32,"code":59815},"setIdx":2,"setId":2,"iconIdx":895},{"icon":{"paths":["M804.267 544h-115.2c-113.493 0-166.4-52.907-166.4-166.4v-157.867c0-113.493 52.907-166.4 166.4-166.4h115.2c113.493 0 166.4 52.907 166.4 166.4v157.867c0 113.493-52.907 166.4-166.4 166.4zM689.067 117.333c-78.507 0-102.4 23.893-102.4 102.4v157.867c0 78.507 23.893 102.4 102.4 102.4h115.2c78.507 0 102.4-23.893 102.4-102.4v-157.867c0-78.507-23.893-102.4-102.4-102.4h-115.2z","M334.933 970.667h-115.2c-113.493 0-166.4-52.907-166.4-166.4v-157.867c0-113.493 52.907-166.4 166.4-166.4h115.2c113.493 0 166.4 52.907 166.4 166.4v157.867c0 113.493-52.907 166.4-166.4 166.4zM219.733 544c-78.507 0-102.4 23.893-102.4 102.4v157.867c0 78.507 23.893 102.4 102.4 102.4h115.2c78.507 0 102.4-23.893 102.4-102.4v-157.867c0-78.507-23.893-102.4-102.4-102.4h-115.2z","M640.009 970.667c-11.52 0-22.187-6.4-27.733-16.213s-5.547-22.187 0.427-32l44.8-74.667c8.96-15.36 28.587-20.053 43.947-11.093s20.053 28.587 11.093 43.947l-11.52 19.2c117.76-27.733 206.080-133.547 206.080-259.84 0-17.493 14.507-32 32-32s32 14.507 32 32c-0.427 182.187-148.907 330.667-331.093 330.667z","M85.333 416c-17.493 0-32-14.507-32-32 0-182.187 148.48-330.667 330.667-330.667 11.52 0 22.187 6.4 27.733 16.213s5.547 22.187-0.427 32l-44.8 75.093c-8.96 14.933-28.587 20.053-43.947 10.667-14.933-8.96-20.053-28.587-10.667-43.947l11.52-19.2c-118.187 27.733-206.080 133.547-206.080 259.84 0 17.493-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["convertshape"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1122,"id":5,"name":"convertshape","prevSize":32,"code":59816},"setIdx":2,"setId":2,"iconIdx":896},{"icon":{"paths":["M853.333 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM853.333 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M853.333 288c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM853.333 117.333c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M853.333 970.667c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM853.333 800c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M170.667 629.333c-64.853 0-117.333-52.48-117.333-117.333s52.48-117.333 117.333-117.333c64.853 0 117.333 52.48 117.333 117.333s-52.48 117.333-117.333 117.333zM170.667 458.667c-29.44 0-53.333 23.893-53.333 53.333s23.893 53.333 53.333 53.333c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333z","M768 544h-512c-17.493 0-32-14.507-32-32s14.507-32 32-32h512c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M768 885.333h-170.667c-103.253 0-160-56.747-160-160v-426.667c0-103.253 56.747-160 160-160h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32h-170.667c-67.413 0-96 28.587-96 96v426.667c0 67.413 28.587 96 96 96h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["data"],"colorPermutations":{"25525525514145501":[{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{}],"properties":{"order":1123,"id":4,"name":"data1","prevSize":32,"code":59648},"setIdx":2,"setId":2,"iconIdx":897},{"icon":{"paths":["M298.667 373.333h-128c-64.853 0-117.333-52.48-117.333-117.333v-85.333c0-64.853 52.48-117.333 117.333-117.333h128c64.853 0 117.333 52.48 117.333 117.333v85.333c0 64.853-52.48 117.333-117.333 117.333zM170.667 117.333c-29.44 0-53.333 23.893-53.333 53.333v85.333c0 29.44 23.893 53.333 53.333 53.333h128c29.44 0 53.333-23.893 53.333-53.333v-85.333c0-29.44-23.893-53.333-53.333-53.333h-128z","M887.467 330.667h-153.6c-46.080 0-83.2-37.547-83.2-83.2v-68.266c0-46.080 37.547-83.2 83.2-83.2h153.6c46.080 0 83.2 37.547 83.2 83.2v68.266c0 46.080-37.12 83.2-83.2 83.2zM733.867 160c-10.24 0-19.2 8.96-19.2 19.2v68.266c0 10.24 8.96 19.2 19.2 19.2h153.6c10.24 0 19.2-8.96 19.2-19.2v-68.266c0-10.24-8.96-19.2-19.2-19.2h-153.6z","M887.467 650.667h-153.6c-46.080 0-83.2-37.547-83.2-83.2v-68.267c0-46.080 37.547-83.2 83.2-83.2h153.6c46.080 0 83.2 37.547 83.2 83.2v68.267c0 46.080-37.12 83.2-83.2 83.2zM733.867 480c-10.24 0-19.2 8.96-19.2 19.2v68.267c0 10.24 8.96 19.2 19.2 19.2h153.6c10.24 0 19.2-8.96 19.2-19.2v-68.267c0-10.24-8.96-19.2-19.2-19.2h-153.6z","M682.667 245.333h-298.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h298.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M533.333 213.333v554.667c0 46.933 38.4 85.333 85.333 85.333h64z","M682.667 885.333h-64c-64.853 0-117.333-52.48-117.333-117.333v-554.667c0-17.493 14.507-32 32-32s32 14.507 32 32v554.667c0 29.44 23.893 53.333 53.333 53.333h64c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 565.333h-149.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h149.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M887.467 970.667h-153.6c-46.080 0-83.2-37.547-83.2-83.2v-68.267c0-46.080 37.547-83.2 83.2-83.2h153.6c46.080 0 83.2 37.547 83.2 83.2v68.267c0 46.080-37.12 83.2-83.2 83.2zM733.867 800c-10.24 0-19.2 8.96-19.2 19.2v68.267c0 10.24 8.96 19.2 19.2 19.2h153.6c10.24 0 19.2-8.96 19.2-19.2v-68.267c0-10.24-8.96-19.2-19.2-19.2h-153.6z"],"attrs":[{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"}],"isMulticolor":true,"isMulticolor2":false,"grid":0,"tags":["data-2"],"colorPermutations":{"25525525514145501":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":1},{"f":0},{"f":0},{"f":0}]}},"attrs":[{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"},{"fill":"rgb(41, 45, 50)"}],"properties":{"order":1124,"id":3,"name":"data-2","prevSize":32,"code":59649,"codes":[59649,59657,59658,59659,59819,59820,59821,59822]},"setIdx":2,"setId":2,"iconIdx":898},{"icon":{"paths":["M682.667 970.667h-341.333c-155.733 0-245.333-89.6-245.333-245.333v-426.667c0-155.733 89.6-245.333 245.333-245.333h341.333c155.733 0 245.333 89.6 245.333 245.333v426.667c0 155.733-89.6 245.333-245.333 245.333zM341.333 117.333c-122.027 0-181.333 59.307-181.333 181.333v426.667c0 122.027 59.307 181.333 181.333 181.333h341.333c122.027 0 181.333-59.307 181.333-181.333v-426.667c0-122.027-59.307-181.333-181.333-181.333h-341.333z","M789.333 394.667h-85.333c-64.853 0-117.333-52.48-117.333-117.333v-85.333c0-17.493 14.507-32 32-32s32 14.507 32 32v85.333c0 29.44 23.893 53.333 53.333 53.333h85.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M512 586.667h-170.667c-17.493 0-32-14.507-32-32s14.507-32 32-32h170.667c17.493 0 32 14.507 32 32s-14.507 32-32 32z","M682.667 757.333h-341.333c-17.493 0-32-14.507-32-32s14.507-32 32-32h341.333c17.493 0 32 14.507 32 32s-14.507 32-32 32z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document-text"],"colorPermutations":{"25525525514145501":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":1125,"id":2,"name":"document-text1","prevSize":32,"code":59823},"setIdx":2,"setId":2,"iconIdx":899},{"icon":{"paths":["M512 800c-17.493 0-32-14.507-32-32v-128c0-17.493 14.507-32 32-32s32 14.507 32 32v128c0 17.493-14.507 32-32 32z","M750.972 962.564h-477.865c-77.653 0-148.48-59.733-161.28-136.107l-56.747-340.053c-9.387-52.907 16.64-120.748 58.88-154.455l295.68-236.8c57.172-46.080 147.198-45.653 204.798 0.427l295.68 236.373c41.813 33.707 67.413 101.548 58.88 154.455l-56.747 339.627c-12.8 75.52-85.333 136.533-161.28 136.533zM511.612 125.016c-22.613 0-45.227 6.827-61.867 20.053l-295.678 237.227c-23.893 19.2-40.96 63.575-35.84 93.868l56.747 339.627c7.68 44.8 52.48 82.773 98.133 82.773h477.865c45.653 0 90.453-37.973 98.133-83.2l56.747-339.627c4.693-29.867-12.373-75.095-35.84-93.868l-295.68-236.373c-17.067-13.653-40.107-20.48-62.72-20.48z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1126,"id":1,"name":"home1","prevSize":32,"code":59824},"setIdx":2,"setId":2,"iconIdx":900},{"icon":{"paths":["M512 672c-88.32 0-160-71.68-160-160s71.68-160 160-160c88.32 0 160 71.68 160 160s-71.68 160-160 160zM512 416c-52.907 0-96 43.093-96 96s43.093 96 96 96c52.907 0 96-43.093 96-96s-43.093-96-96-96z","M648.96 946.765c-8.96 0-17.92-1.28-26.88-3.413-26.453-7.253-48.64-23.893-62.72-47.36l-5.12-8.533c-25.173-43.52-59.733-43.52-84.907 0l-4.693 8.107c-14.080 23.893-36.267 40.96-62.72 47.787-26.88 7.253-54.613 3.413-78.080-10.667l-73.387-42.24c-26.027-14.933-44.8-39.253-52.907-68.693-7.68-29.44-3.84-59.733 11.093-85.76 12.373-21.76 15.787-41.387 8.533-53.76s-25.6-19.627-50.773-19.627c-62.293 0-113.067-50.773-113.067-113.067v-75.093c0-62.293 50.773-113.067 113.067-113.067 25.173 0 43.52-7.253 50.773-19.627s4.267-32-8.533-53.76c-14.933-26.027-18.773-56.747-11.093-85.76 7.68-29.44 26.453-53.76 52.907-68.693l73.813-42.24c48.213-28.587 111.787-11.947 140.8 37.12l5.12 8.533c25.173 43.52 59.733 43.52 84.907 0l4.693-8.107c29.013-49.493 92.587-66.133 141.227-37.12l73.387 42.24c26.027 14.933 44.8 39.253 52.907 68.693 7.68 29.44 3.84 59.733-11.093 85.76-12.373 21.76-15.787 41.387-8.533 53.76s25.6 19.627 50.773 19.627c62.293 0 113.067 50.773 113.067 113.067v75.093c0 62.293-50.773 113.067-113.067 113.067-25.173 0-43.52 7.253-50.773 19.627s-4.267 32 8.533 53.76c14.933 26.027 19.2 56.747 11.093 85.76-7.68 29.44-26.453 53.76-52.907 68.693l-73.813 42.24c-16.213 8.96-33.707 13.653-51.627 13.653zM512 788.898c37.973 0 73.387 23.893 97.707 66.133l4.693 8.107c5.12 8.96 13.653 15.36 23.893 17.92s20.48 1.28 29.013-3.84l73.813-42.667c11.093-6.4 19.627-17.067 23.040-29.867s1.707-26.027-4.693-37.12c-24.32-41.813-27.307-84.907-8.533-117.76s57.6-51.627 106.24-51.627c27.307 0 49.067-21.76 49.067-49.067v-75.093c0-26.88-21.76-49.067-49.067-49.067-48.64 0-87.467-18.773-106.24-51.627s-15.787-75.947 8.533-117.76c6.4-11.093 8.107-24.32 4.693-37.12s-11.52-23.040-22.613-29.867l-73.813-42.24c-18.347-11.093-42.667-4.693-53.76 14.080l-4.693 8.107c-24.32 42.24-59.733 66.133-97.707 66.133s-73.387-23.893-97.707-66.133l-4.693-8.533c-10.667-17.92-34.56-24.32-52.907-13.653l-73.813 42.667c-11.093 6.4-19.627 17.067-23.040 29.867s-1.707 26.027 4.693 37.12c24.32 41.813 27.307 84.907 8.533 117.76s-57.6 51.627-106.24 51.627c-27.307 0-49.067 21.76-49.067 49.067v75.093c0 26.88 21.76 49.067 49.067 49.067 48.64 0 87.467 18.773 106.24 51.627s15.787 75.947-8.533 117.76c-6.4 11.093-8.107 24.32-4.693 37.12s11.52 23.040 22.613 29.867l73.813 42.24c8.96 5.547 19.627 6.827 29.44 4.267 10.24-2.56 18.773-9.387 24.32-18.347l4.693-8.107c24.32-41.813 59.733-66.133 97.707-66.133z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-2"],"colorPermutations":{"25525525514145501":[{},{}]}},"attrs":[{},{}],"properties":{"order":1127,"id":0,"name":"setting-21","prevSize":32,"code":59825},"setIdx":2,"setId":2,"iconIdx":901}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}} diff --git a/src/assets/icomoon/style.css b/src/assets/icomoon/style.css new file mode 100644 index 0000000..6f49aee --- /dev/null +++ b/src/assets/icomoon/style.css @@ -0,0 +1,2801 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@font-face { + font-family: "icomoon"; + src: url("fonts/icomoon.eot?j9g2n2"); + src: url("fonts/icomoon.eot?j9g2n2#iefix") format("embedded-opentype"), + url("fonts/icomoon.ttf?j9g2n2") format("truetype"), + url("fonts/icomoon.woff?j9g2n2") format("woff"), + url("fonts/icomoon.svg?j9g2n2#icomoon") format("svg"); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="icon-"], +[class*=" icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: "icomoon" !important; + + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + cursor: pointer; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-matter-logo-black:before { + content: "\e9a9"; +} +.icon-matter-logo-white:before { + content: "\e9aa"; + color: #fff; +} +.icon-data2:before { + content: "\e9b2"; +} +.icon-add-circle1 .path1:before { + content: "\31"; + color: rgb(41, 45, 50); + opacity: 0.4; +} +.icon-add-circle1 .path2:before { + content: "\32"; + margin-left: -1em; + color: rgb(41, 45, 50); +} +.icon-heart:before { + content: "\e9b3"; +} +.icon-calendar-remove:before { + content: "\e902"; +} +.icon-refresh-2:before { + content: "\e9b4"; +} +.icon-align-left:before { + content: "\e9b5"; +} +.icon-clipboard-text:before { + content: "\e903"; +} +.icon-send-2:before { + content: "\e904"; +} +.icon-direct-notification:before { + content: "\e9b6"; +} +.icon-card-tick:before { + content: "\e905"; +} +.icon-money-remove:before { + content: "\e9b7"; +} +.icon-voice-cricle:before { + content: "\e9b8"; +} +.icon-forward-10-seconds:before { + content: "\e906"; +} +.icon-direct-normal:before { + content: "\e907"; +} +.icon-weight:before { + content: "\e908"; +} +.icon-candle-2:before { + content: "\e90c"; +} +.icon-moon:before { + content: "\e90d"; +} +.icon-gallery-export:before { + content: "\e90e"; +} +.icon-music-circle:before { + content: "\e9b9"; +} +.icon-element-plus:before { + content: "\e90f"; +} +.icon-scanning:before { + content: "\e910"; +} +.icon-document-normal:before { + content: "\e911"; +} +.icon-wallet-minus:before { + content: "\e9ba"; +} +.icon-card-add:before { + content: "\e9bb"; +} +.icon-d-cube-scan:before { + content: "\e912"; +} +.icon-minus:before { + content: "\e913"; +} +.icon-monitor:before { + content: "\e914"; +} +.icon-timer:before { + content: "\e915"; +} +.icon-arrow-down-1:before { + content: "\e916"; +} +.icon-color-swatch:before { + content: "\e9bc"; +} +.icon-archive-1:before { + content: "\e917"; +} +.icon-copy-success:before { + content: "\e918"; +} +.icon-alarm:before { + content: "\e9bd"; +} +.icon-folder:before { + content: "\e919"; +} +.icon-cards:before { + content: "\e91a"; +} +.icon-message-remove:before { + content: "\e9be"; +} +.icon-search-favorite:before { + content: "\e9bf"; +} +.icon-bezier:before { + content: "\e91b"; +} +.icon-building:before { + content: "\e9c0"; +} +.icon-graph:before { + content: "\e91c"; +} +.icon-slider-horizontal:before { + content: "\e91d"; +} +.icon-logout-1:before { + content: "\e9c1"; +} +.icon-document-sketch:before { + content: "\e91e"; +} +.icon-menu-board:before { + content: "\e91f"; +} +.icon-mirror:before { + content: "\e9c2"; +} +.icon-blend-2:before { + content: "\e9c3"; +} +.icon-lamp-slash:before { + content: "\e9c4"; +} +.icon-receipt-text:before { + content: "\e920"; +} +.icon-man:before { + content: "\e9c5"; +} +.icon-truck-remove:before { + content: "\e9c6"; +} +.icon-layer:before { + content: "\e921"; +} +.icon-sms-edit:before { + content: "\e922"; +} +.icon-music-square-remove:before { + content: "\e9c7"; +} +.icon-routing:before { + content: "\e9c8"; +} +.icon-login-1:before { + content: "\e9c9"; +} +.icon-mouse:before { + content: "\e9ca"; +} +.icon-d-square:before { + content: "\e923"; +} +.icon-discover-1:before { + content: "\e9cb"; +} +.icon-calculator:before { + content: "\e9cc"; +} +.icon-airplane:before { + content: "\e9cd"; +} +.icon-happyemoji:before { + content: "\e9ce"; +} +.icon-shopping-cart:before { + content: "\e924"; +} +.icon-finger-cricle:before { + content: "\e9cf"; +} +.icon-save-add:before { + content: "\e925"; +} +.icon-chrome:before { + content: "\e9d0"; +} +.icon-volume-slash:before { + content: "\e9d1"; +} +.icon-bucket-square:before { + content: "\e9d2"; +} +.icon-note-21:before { + content: "\e926"; +} +.icon-security-user:before { + content: "\e927"; +} +.icon-repeate-one:before { + content: "\e9d3"; +} +.icon-send-1:before { + content: "\e928"; +} +.icon-money-recive:before { + content: "\e9d4"; +} +.icon-sms-star:before { + content: "\e929"; +} +.icon-search-zoom-out:before { + content: "\e9d5"; +} +.icon-building-4:before { + content: "\e9d6"; +} +.icon-like-shapes:before { + content: "\e9d7"; +} +.icon-menu:before { + content: "\e9d8"; +} +.icon-volume-low-1:before { + content: "\e9d9"; +} +.icon-setting-3:before { + content: "\e9da"; +} +.icon-maximize-circle:before { + content: "\e9db"; +} +.icon-receipt-discount:before { + content: "\e92a"; +} +.icon-strongbox-2:before { + content: "\e9dc"; +} +.icon-component:before { + content: "\e92b"; +} +.icon-trend-down:before { + content: "\e92c"; +} +.icon-favorite-chart:before { + content: "\e9dd"; +} +.icon-math:before { + content: "\e9de"; +} +.icon-screenmirroring:before { + content: "\e9df"; +} +.icon-receipt-minus:before { + content: "\e92d"; +} +.icon-lock-circle:before { + content: "\e92e"; +} +.icon-level:before { + content: "\e9e0"; +} +.icon-document-filter:before { + content: "\e9e1"; +} +.icon-call-add:before { + content: "\e9e2"; +} +.icon-programming-arrow:before { + content: "\e92f"; +} +.icon-rotate-right:before { + content: "\e9e3"; +} +.icon-note-square:before { + content: "\e930"; +} +.icon-status:before { + content: "\e931"; +} +.icon-shield-slash:before { + content: "\e932"; +} +.icon-arrow-down-2:before { + content: "\e9e4"; +} +.icon-archive-2:before { + content: "\e9e5"; +} +.icon-bookmark:before { + content: "\e9e6"; +} +.icon-blend:before { + content: "\e933"; +} +.icon-forward:before { + content: "\e934"; +} +.icon-call-minus:before { + content: "\e9e7"; +} +.icon-box-tick:before { + content: "\e9e8"; +} +.icon-setting-2:before { + content: "\e9e9"; +} +.icon-pause:before { + content: "\e9ea"; +} +.icon-cpu-charge:before { + content: "\e935"; +} +.icon-diamonds:before { + content: "\e9eb"; +} +.icon-mini-music-sqaure:before { + content: "\e9ec"; +} +.icon-cup:before { + content: "\e9ed"; +} +.icon-shuffle:before { + content: "\e936"; +} +.icon-lovely:before { + content: "\e9ee"; +} +.icon-cloud:before { + content: "\e9ef"; +} +.icon-task-square:before { + content: "\e937"; +} +.icon-wallet-money:before { + content: "\e9f0"; +} +.icon-heart-edit:before { + content: "\e938"; +} +.icon-clipboard-import:before { + content: "\e9f1"; +} +.icon-close-square:before { + content: "\e9f2"; +} +.icon-receipt-search:before { + content: "\e9f3"; +} +.icon-omega-circle:before { + content: "\e9f4"; +} +.icon-profile-circle:before { + content: "\e9f5"; +} +.icon-scanner:before { + content: "\e9f6"; +} +.icon-volume-low:before { + content: "\e9f7"; +} +.icon-message-minus:before { + content: "\e9f8"; +} +.icon-keyboard-open:before { + content: "\e9f9"; +} +.icon-microphone-slash:before { + content: "\e9fa"; +} +.icon-ram:before { + content: "\e9fb"; +} +.icon-data:before { + content: "\e9fc"; +} +.icon-buliding:before { + content: "\e9fd"; +} +.icon-gas-station:before { + content: "\e9fe"; +} +.icon-arrow-left:before { + content: "\e9ff"; +} +.icon-lamp-charge:before { + content: "\e939"; +} +.icon-calendar:before { + content: "\ea00"; +} +.icon-video-slash:before { + content: "\ea01"; +} +.icon-arrow-swap:before { + content: "\e93a"; +} +.icon-medal:before { + content: "\ea02"; +} +.icon-link-square:before { + content: "\ea03"; +} +.icon-pharagraphspacing:before { + content: "\ea04"; +} +.icon-money-send:before { + content: "\ea05"; +} +.icon-add-circle:before { + content: "\e93b"; +} +.icon-filter:before { + content: "\e93c"; +} +.icon-box-time:before { + content: "\ea06"; +} +.icon-bitcoin-convert:before { + content: "\ea07"; +} +.icon-activity:before { + content: "\ea08"; +} +.icon-tree:before { + content: "\ea09"; +} +.icon-security-safe:before { + content: "\ea0a"; +} +.icon-filter-square:before { + content: "\e93d"; +} +.icon-external-drive:before { + content: "\ea0b"; +} +.icon-video-vertical:before { + content: "\ea0c"; +} +.icon-video:before { + content: "\ea0d"; +} +.icon-undo:before { + content: "\ea0e"; +} +.icon-messages-1:before { + content: "\ea0f"; +} +.icon-sort:before { + content: "\ea10"; +} +.icon-microscope:before { + content: "\ea11"; +} +.icon-folder-add:before { + content: "\e93e"; +} +.icon-colors-square:before { + content: "\ea12"; +} +.icon-money:before { + content: "\ea13"; +} +.icon-arrow-up:before { + content: "\ea14"; +} +.icon-video-horizontal:before { + content: "\ea15"; +} +.icon-document-upload:before { + content: "\e93f"; +} +.icon-video-square:before { + content: "\ea16"; +} +.icon-arrow-square-down:before { + content: "\e940"; +} +.icon-share:before { + content: "\ea17"; +} +.icon-tag-right:before { + content: "\e941"; +} +.icon-language-square:before { + content: "\ea18"; +} +.icon-clock-1:before { + content: "\ea19"; +} +.icon-heart-remove:before { + content: "\ea1a"; +} +.icon-forward-15-seconds:before { + content: "\ea1b"; +} +.icon-messages-3:before { + content: "\e942"; +} +.icon-car:before { + content: "\ea1c"; +} +.icon-setting-5:before { + content: "\e943"; +} +.icon-gift:before { + content: "\ea1d"; +} +.icon-glass-1:before { + content: "\ea1e"; +} +.icon-arrange-square-2:before { + content: "\e944"; +} +.icon-search-normal-1:before { + content: "\e945"; +} +.icon-receipt-edit:before { + content: "\e946"; +} +.icon-electricity:before { + content: "\e947"; +} +.icon-device-message:before { + content: "\ea1f"; +} +.icon-profile-tick:before { + content: "\e948"; +} +.icon-location:before { + content: "\e949"; +} +.icon-path-square:before { + content: "\ea20"; +} +.icon-wallet-remove:before { + content: "\ea21"; +} +.icon-bluetooth-rectangle:before { + content: "\e94a"; +} +.icon-attach-square:before { + content: "\e94b"; +} +.icon-headphone:before { + content: "\ea22"; +} +.icon-personalcard:before { + content: "\e94c"; +} +.icon-cloud-connection:before { + content: "\ea23"; +} +.icon-gallery-edit:before { + content: "\e94d"; +} +.icon-mobile:before { + content: "\ea24"; +} +.icon-wallet-add:before { + content: "\ea25"; +} +.icon-eye:before { + content: "\ea26"; +} +.icon-call:before { + content: "\ea27"; +} +.icon-direct-send:before { + content: "\e94e"; +} +.icon-repeat-circle:before { + content: "\ea28"; +} +.icon-message-programming:before { + content: "\ea29"; +} +.icon-send-sqaure-2:before { + content: "\ea2a"; +} +.icon-courthouse:before { + content: "\ea2b"; +} +.icon-slider-horizontal-1:before { + content: "\ea2c"; +} +.icon-textalign-justifyright:before { + content: "\ea2d"; +} +.icon-call-incoming:before { + content: "\ea2e"; +} +.icon-wind-2:before { + content: "\ea2f"; +} +.icon-clock:before { + content: "\ea30"; +} +.icon-command:before { + content: "\ea31"; +} +.icon-setting-4:before { + content: "\ea32"; +} +.icon-messages-2:before { + content: "\ea33"; +} +.icon-building-3:before { + content: "\ea34"; +} +.icon-ticket-discount:before { + content: "\ea35"; +} +.icon-forbidden:before { + content: "\ea36"; +} +.icon-hierarchy:before { + content: "\ea37"; +} +.icon-play-remove:before { + content: "\ea38"; +} +.icon-simcard:before { + content: "\ea39"; +} +.icon-bitcoin-refresh:before { + content: "\ea3a"; +} +.icon-music-library-2:before { + content: "\ea3b"; +} +.icon-search-zoom-out-1:before { + content: "\ea3c"; +} +.icon-square:before { + content: "\ea3d"; +} +.icon-home-1:before { + content: "\ea3e"; +} +.icon-timer-1:before { + content: "\ea3f"; +} +.icon-call-received:before { + content: "\ea40"; +} +.icon-magicpen:before { + content: "\ea41"; +} +.icon-global-refresh:before { + content: "\ea42"; +} +.icon-receipt-item:before { + content: "\e94f"; +} +.icon-arrow-swap-horizontal:before { + content: "\ea43"; +} +.icon-video-play:before { + content: "\ea44"; +} +.icon-lock-1:before { + content: "\ea45"; +} +.icon-judge:before { + content: "\ea46"; +} +.icon-frame:before { + content: "\ea47"; +} +.icon-bank:before { + content: "\ea48"; +} +.icon-location-minus:before { + content: "\ea49"; +} +.icon-woman:before { + content: "\ea4a"; +} +.icon-eraser-1:before { + content: "\ea4b"; +} +.icon-designtools:before { + content: "\ea4c"; +} +.icon-truck-time:before { + content: "\ea4d"; +} +.icon-forward-square:before { + content: "\ea4e"; +} +.icon-card-remove:before { + content: "\ea4f"; +} +.icon-music-play:before { + content: "\ea50"; +} +.icon-star-slash:before { + content: "\ea51"; +} +.icon-notification-status:before { + content: "\ea52"; +} +.icon-forbidden-2:before { + content: "\ea53"; +} +.icon-unlock:before { + content: "\ea54"; +} +.icon-send-square:before { + content: "\ea55"; +} +.icon-flash-slash:before { + content: "\ea56"; +} +.icon-arrow-left-1:before { + content: "\ea57"; +} +.icon-export-2:before { + content: "\ea58"; +} +.icon-folder-cloud:before { + content: "\ea59"; +} +.icon-export-3:before { + content: "\ea5a"; +} +.icon-pet:before { + content: "\ea5b"; +} +.icon-message-edit:before { + content: "\ea5c"; +} +.icon-colorfilter:before { + content: "\ea5d"; +} +.icon-volume-high:before { + content: "\ea5e"; +} +.icon-lifebuoy:before { + content: "\ea5f"; +} +.icon-gallery-add:before { + content: "\ea60"; +} +.icon-emoji-normal:before { + content: "\ea61"; +} +.icon-receipt-2:before { + content: "\ea62"; +} +.icon-wallet-add-1:before { + content: "\e950"; +} +.icon-strongbox:before { + content: "\ea63"; +} +.icon-bluetooth-2:before { + content: "\ea64"; +} +.icon-home-wifi:before { + content: "\ea65"; +} +.icon-maximize-21:before { + content: "\ea66"; +} +.icon-next:before { + content: "\ea67"; +} +.icon-percentage-circle:before { + content: "\ea68"; +} +.icon-edit:before { + content: "\ea69"; +} +.icon-mouse-circle:before { + content: "\ea6a"; +} +.icon-arrow-right-4:before { + content: "\ea6b"; +} +.icon-more-2:before { + content: "\ea6c"; +} +.icon-folder-cross:before { + content: "\ea6d"; +} +.icon-message-square:before { + content: "\ea6e"; +} +.icon-arrow-circle-down:before { + content: "\e951"; +} +.icon-cloud-sunny:before { + content: "\ea6f"; +} +.icon-danger:before { + content: "\e952"; +} +.icon-bag-cross-1:before { + content: "\ea70"; +} +.icon-bag-timer:before { + content: "\ea71"; +} +.icon-home-2:before { + content: "\ea72"; +} +.icon-sun:before { + content: "\ea73"; +} +.icon-clipboard-export:before { + content: "\ea74"; +} +.icon-cd:before { + content: "\ea75"; +} +.icon-folder-2:before { + content: "\ea76"; +} +.icon-bitcoin-card:before { + content: "\ea77"; +} +.icon-star:before { + content: "\ea78"; +} +.icon-security-time:before { + content: "\ea79"; +} +.icon-hashtag:before { + content: "\ea7a"; +} +.icon-volume-up:before { + content: "\ea7b"; +} +.icon-weight-1:before { + content: "\ea7c"; +} +.icon-computing:before { + content: "\ea7d"; +} +.icon-grid-9:before { + content: "\ea7e"; +} +.icon-element-equal:before { + content: "\ea7f"; +} +.icon-recovery-convert:before { + content: "\ea80"; +} +.icon-scan-barcode:before { + content: "\ea81"; +} +.icon-dollar-square:before { + content: "\ea82"; +} +.icon-direct-left:before { + content: "\ea83"; +} +.icon-element-3:before { + content: "\ea84"; +} +.icon-video-octagon:before { + content: "\ea85"; +} +.icon-maximize-4:before { + content: "\ea86"; +} +.icon-record-circle:before { + content: "\ea87"; +} +.icon-monitor-recorder:before { + content: "\ea88"; +} +.icon-pen-add:before { + content: "\ea89"; +} +.icon-refresh-left-square:before { + content: "\ea8a"; +} +.icon-battery-3full:before { + content: "\ea8b"; +} +.icon-trash:before { + content: "\ea8c"; +} +.icon-export-1:before { + content: "\ea8d"; +} +.icon-arrow-left-2:before { + content: "\ea8e"; +} +.icon-arrow-left-3:before { + content: "\ea8f"; +} +.icon-textalign-center:before { + content: "\ea90"; +} +.icon-firstline:before { + content: "\ea91"; +} +.icon-bus:before { + content: "\ea92"; +} +.icon-battery-empty-1:before { + content: "\ea93"; +} +.icon-cloud-minus:before { + content: "\ea94"; +} +.icon-grid-eraser:before { + content: "\ea95"; +} +.icon-glass:before { + content: "\ea96"; +} +.icon-element-2:before { + content: "\ea97"; +} +.icon-back-square:before { + content: "\ea98"; +} +.icon-text-underline:before { + content: "\ea99"; +} +.icon-emoji-sad:before { + content: "\ea9a"; +} +.icon-document-download:before { + content: "\ea9b"; +} +.icon-receipt-1:before { + content: "\e953"; +} +.icon-bucket:before { + content: "\ea9c"; +} +.icon-more:before { + content: "\ea9d"; +} +.icon-security:before { + content: "\ea9e"; +} +.icon-arrow-bottom:before { + content: "\ea9f"; +} +.icon-grid-8:before { + content: "\eaa0"; +} +.icon-music-playlist:before { + content: "\eaa1"; +} +.icon-note-remove:before { + content: "\eaa2"; +} +.icon-pen-tool:before { + content: "\eaa3"; +} +.icon-quote-up-circle:before { + content: "\eaa4"; +} +.icon-discount-circle:before { + content: "\eaa5"; +} +.icon-user-search:before { + content: "\eaa6"; +} +.icon-truck:before { + content: "\eaa7"; +} +.icon-folder-minus:before { + content: "\eaa8"; +} +.icon-cloud-add:before { + content: "\eaa9"; +} +.icon-autobrightness:before { + content: "\eaaa"; +} +.icon-redo:before { + content: "\eaab"; +} +.icon-hashtag-down:before { + content: "\eaac"; +} +.icon-more-square:before { + content: "\eaad"; +} +.icon-printer:before { + content: "\eaae"; +} +.icon-link-2:before { + content: "\eaaf"; +} +.icon-camera:before { + content: "\eab0"; +} +.icon-document-text:before { + content: "\eab1"; +} +.icon-battery-empty:before { + content: "\eab2"; +} +.icon-brifecase-tick:before { + content: "\eab3"; +} +.icon-arrow-right-3:before { + content: "\eab4"; +} +.icon-convert:before { + content: "\eab5"; +} +.icon-archive-slash:before { + content: "\eab6"; +} +.icon-speaker:before { + content: "\eab7"; +} +.icon-play-add:before { + content: "\eab8"; +} +.icon-simcard-2:before { + content: "\eab9"; +} +.icon-empty-wallet-add:before { + content: "\eaba"; +} +.icon-scroll:before { + content: "\eabb"; +} +.icon-tick-circle:before { + content: "\eabc"; +} +.icon-tag-cross:before { + content: "\eabd"; +} +.icon-bill:before { + content: "\eabe"; +} +.icon-mouse-1:before { + content: "\eabf"; +} +.icon-user-octagon:before { + content: "\eac0"; +} +.icon-smart-car:before { + content: "\eac1"; +} +.icon-direct:before { + content: "\eac2"; +} +.icon-barcode:before { + content: "\eac3"; +} +.icon-send:before { + content: "\eac4"; +} +.icon-airplane-square:before { + content: "\eac5"; +} +.icon-user-edit:before { + content: "\eac6"; +} +.icon-maximize-1:before { + content: "\eac7"; +} +.icon-diagram:before { + content: "\eac8"; +} +.icon-notification-bing:before { + content: "\e954"; +} +.icon-like-1:before { + content: "\eac9"; +} +.icon-verify:before { + content: "\e955"; +} +.icon-coin:before { + content: "\eaca"; +} +.icon-driving:before { + content: "\eacb"; +} +.icon-text-block:before { + content: "\eacc"; +} +.icon-notification:before { + content: "\e956"; +} +.icon-filter-edit:before { + content: "\e957"; +} +.icon-filter-remove:before { + content: "\e958"; +} +.icon-directbox-receive:before { + content: "\e959"; +} +.icon-toggle-off-circle:before { + content: "\eacd"; +} +.icon-backward:before { + content: "\eace"; +} +.icon-play:before { + content: "\e95a"; +} +.icon-eye-slash:before { + content: "\eacf"; +} +.icon-rulerpen:before { + content: "\ead0"; +} +.icon-message-add-1:before { + content: "\e95b"; +} +.icon-broom:before { + content: "\ead1"; +} +.icon-crown:before { + content: "\ead2"; +} +.icon-message-2:before { + content: "\ead3"; +} +.icon-cloud-change:before { + content: "\ead4"; +} +.icon-mask:before { + content: "\ead5"; +} +.icon-messages:before { + content: "\e95c"; +} +.icon-empty-wallet-remove:before { + content: "\ead6"; +} +.icon-format-circle:before { + content: "\ead7"; +} +.icon-location-cross:before { + content: "\ead8"; +} +.icon-box:before { + content: "\ead9"; +} +.icon-box-search:before { + content: "\eada"; +} +.icon-trade:before { + content: "\eadb"; +} +.icon-award:before { + content: "\eadc"; +} +.icon-sticker:before { + content: "\eadd"; +} +.icon-video-remove:before { + content: "\eade"; +} +.icon-airpod:before { + content: "\eadf"; +} +.icon-message:before { + content: "\eae0"; +} +.icon-document-copy:before { + content: "\eae1"; +} +.icon-safe-home:before { + content: "\eae2"; +} +.icon-textalign-justifyleft:before { + content: "\eae3"; +} +.icon-message-favorite:before { + content: "\eae4"; +} +.icon-story:before { + content: "\eae5"; +} +.icon-flash-circle:before { + content: "\eae6"; +} +.icon-paperclip:before { + content: "\eae7"; +} +.icon-arrow-right-2:before { + content: "\eae8"; +} +.icon-crown-1:before { + content: "\eae9"; +} +.icon-previous:before { + content: "\eaea"; +} +.icon-volume-mute:before { + content: "\eaeb"; +} +.icon-dcube:before { + content: "\eaec"; +} +.icon-grid-lock:before { + content: "\eaed"; +} +.icon-setting:before { + content: "\eaee"; +} +.icon-message-text:before { + content: "\eaef"; +} +.icon-heart-add:before { + content: "\eaf0"; +} +.icon-command-square:before { + content: "\eaf1"; +} +.icon-document-cloud:before { + content: "\eaf2"; +} +.icon-link-1:before { + content: "\eaf3"; +} +.icon-direct-inbox:before { + content: "\eaf4"; +} +.icon-security-card:before { + content: "\eaf5"; +} +.icon-cloud-lightning:before { + content: "\eaf6"; +} +.icon-scan:before { + content: "\eaf7"; +} +.icon-minus-cirlce:before { + content: "\eaf8"; +} +.icon-lamp:before { + content: "\eaf9"; +} +.icon-search-favorite-1:before { + content: "\eafa"; +} +.icon-simcard-1:before { + content: "\eafb"; +} +.icon-flash-1:before { + content: "\e95d"; +} +.icon-reserve:before { + content: "\eafc"; +} +.icon-truck-tick:before { + content: "\eafd"; +} +.icon-card-slash:before { + content: "\eafe"; +} +.icon-folder-connection:before { + content: "\eaff"; +} +.icon-calendar-edit:before { + content: "\eb00"; +} +.icon-maximize-2:before { + content: "\eb01"; +} +.icon-image:before { + content: "\eb02"; +} +.icon-align-right:before { + content: "\eb03"; +} +.icon-text:before { + content: "\eb04"; +} +.icon-gallery-import:before { + content: "\eb05"; +} +.icon-hashtag-1:before { + content: "\eb06"; +} +.icon-chart-square:before { + content: "\e95e"; +} +.icon-link-21:before { + content: "\e95f"; +} +.icon-cloud-cross:before { + content: "\eb07"; +} +.icon-refresh:before { + content: "\eb08"; +} +.icon-hierarchy-square:before { + content: "\eb09"; +} +.icon-box-add:before { + content: "\e960"; +} +.icon-hierarchy-square-2:before { + content: "\eb0a"; +} +.icon-align-horizontally:before { + content: "\e961"; +} +.icon-hierarchy-square-3:before { + content: "\eb0b"; +} +.icon-arrange-circle:before { + content: "\eb0c"; +} +.icon-sun-fog:before { + content: "\eb0d"; +} +.icon-bag:before { + content: "\eb0e"; +} +.icon-element-4:before { + content: "\eb0f"; +} +.icon-maximize-3:before { + content: "\eb10"; +} +.icon-call-calling:before { + content: "\eb11"; +} +.icon-bag-tick-2:before { + content: "\eb12"; +} +.icon-receipt-add:before { + content: "\e962"; +} +.icon-copy:before { + content: "\eb13"; +} +.icon-watch-status:before { + content: "\eb14"; +} +.icon-smallcaps:before { + content: "\eb15"; +} +.icon-arrow-right-1:before { + content: "\eb16"; +} +.icon-ticket-expired:before { + content: "\eb17"; +} +.icon-bag-cross:before { + content: "\eb18"; +} +.icon-cloud-fog:before { + content: "\eb19"; +} +.icon-info-circle:before { + content: "\eb1a"; +} +.icon-quote-down-square:before { + content: "\eb1b"; +} +.icon-people:before { + content: "\eb1c"; +} +.icon-convert-card:before { + content: "\eb1d"; +} +.icon-book-1:before { + content: "\eb1e"; +} +.icon-document-code:before { + content: "\eb1f"; +} +.icon-speedometer:before { + content: "\eb20"; +} +.icon-truck-fast:before { + content: "\eb21"; +} +.icon-add:before { + content: "\e963"; +} +.icon-user-add:before { + content: "\eb22"; +} +.icon-sidebar-bottom:before { + content: "\eb23"; +} +.icon-key-square:before { + content: "\eb24"; +} +.icon-code-circle:before { + content: "\eb25"; +} +.icon-archive-tick:before { + content: "\eb26"; +} +.icon-grid-3:before { + content: "\eb27"; +} +.icon-archive-add:before { + content: "\eb28"; +} +.icon-arrow-circle-right:before { + content: "\eb29"; +} +.icon-slider:before { + content: "\eb2a"; +} +.icon-wallet-check:before { + content: "\eb2b"; +} +.icon-backward-item:before { + content: "\eb2c"; +} +.icon-directbox-default:before { + content: "\eb2d"; +} +.icon-video-add:before { + content: "\eb2e"; +} +.icon-card:before { + content: "\eb2f"; +} +.icon-watch:before { + content: "\eb30"; +} +.icon-document-code-2:before { + content: "\eb31"; +} +.icon-route-square:before { + content: "\eb32"; +} +.icon-hashtag-up:before { + content: "\eb33"; +} +.icon-wifi:before { + content: "\eb34"; +} +.icon-main-component:before { + content: "\eb35"; +} +.icon-category-2:before { + content: "\eb36"; +} +.icon-empty-wallet-time:before { + content: "\eb37"; +} +.icon-frame-4:before { + content: "\eb38"; +} +.icon-gallery-slash:before { + content: "\eb39"; +} +.icon-finger-scan:before { + content: "\eb3a"; +} +.icon-additem:before { + content: "\eb3b"; +} +.icon-headphones:before { + content: "\eb3c"; +} +.icon-routing-2:before { + content: "\eb3d"; +} +.icon-global:before { + content: "\e964"; +} +.icon-bluetooth:before { + content: "\e965"; +} +.icon-arrange-circle-2:before { + content: "\eb3e"; +} +.icon-direct-down:before { + content: "\eb3f"; +} +.icon-archive-book:before { + content: "\e966"; +} +.icon-hospital:before { + content: "\eb40"; +} +.icon-filter-add:before { + content: "\e967"; +} +.icon-trend-up:before { + content: "\eb41"; +} +.icon-mirroring-screen:before { + content: "\eb42"; +} +.icon-airdrop:before { + content: "\eb43"; +} +.icon-ranking:before { + content: "\eb44"; +} +.icon-notification-1:before { + content: "\eb45"; +} +.icon-empty-wallet-change:before { + content: "\eb46"; +} +.icon-check:before { + content: "\eb47"; +} +.icon-chart-success:before { + content: "\eb48"; +} +.icon-document:before { + content: "\eb49"; +} +.icon-cloud-remove:before { + content: "\eb4a"; +} +.icon-chart-21:before { + content: "\eb4b"; +} +.icon-bluetooth-circle:before { + content: "\eb4c"; +} +.icon-battery-full:before { + content: "\e968"; +} +.icon-category:before { + content: "\eb4d"; +} +.icon-stickynote:before { + content: "\e969"; +} +.icon-video-time:before { + content: "\e96a"; +} +.icon-grid-2:before { + content: "\eb4e"; +} +.icon-ranking-1:before { + content: "\eb4f"; +} +.icon-record:before { + content: "\eb50"; +} +.icon-music-dashboard:before { + content: "\eb51"; +} +.icon-scissor-1:before { + content: "\eb52"; +} +.icon-user-remove:before { + content: "\eb53"; +} +.icon-receive-square-2:before { + content: "\eb54"; +} +.icon-call-slash:before { + content: "\eb55"; +} +.icon-document-1:before { + content: "\e96b"; +} +.icon-cpu:before { + content: "\eb56"; +} +.icon-document-favorite:before { + content: "\e96c"; +} +.icon-sms-tracking:before { + content: "\e96d"; +} +.icon-music-square:before { + content: "\eb57"; +} +.icon-ruler:before { + content: "\eb58"; +} +.icon-buy-crypto:before { + content: "\eb59"; +} +.icon-gemini-2:before { + content: "\eb5a"; +} +.icon-message-tick:before { + content: "\eb5b"; +} +.icon-emoji-happy:before { + content: "\eb5c"; +} +.icon-save-remove:before { + content: "\e96e"; +} +.icon-save-2:before { + content: "\e96f"; +} +.icon-pen-close:before { + content: "\eb5d"; +} +.icon-row-vertical:before { + content: "\eb5e"; +} +.icon-document-previous:before { + content: "\eb5f"; +} +.icon-arrow-circle-left:before { + content: "\eb60"; +} +.icon-card-remove-1:before { + content: "\eb61"; +} +.icon-house-2:before { + content: "\eb62"; +} +.icon-search-normal:before { + content: "\eb63"; +} +.icon-stop:before { + content: "\eb64"; +} +.icon-flash-circle-1:before { + content: "\eb65"; +} +.icon-gameboy:before { + content: "\eb66"; +} +.icon-like-tag:before { + content: "\eb67"; +} +.icon-search-status-1:before { + content: "\eb68"; +} +.icon-gps:before { + content: "\eb69"; +} +.icon-pen-remove:before { + content: "\eb6a"; +} +.icon-flag:before { + content: "\eb6b"; +} +.icon-teacher:before { + content: "\eb6c"; +} +.icon-convert-3d-cube:before { + content: "\eb6d"; +} +.icon-medal-star:before { + content: "\eb6e"; +} +.icon-user-cirlce-add:before { + content: "\eb6f"; +} +.icon-icon:before { + content: "\eb70"; +} +.icon-cake:before { + content: "\eb71"; +} +.icon-money-4:before { + content: "\eb72"; +} +.icon-code:before { + content: "\eb73"; +} +.icon-flash:before { + content: "\e970"; +} +.icon-unlimited:before { + content: "\e971"; +} +.icon-coffee:before { + content: "\eb74"; +} +.icon-paperclip-2:before { + content: "\eb75"; +} +.icon-bucket-circle:before { + content: "\eb76"; +} +.icon-backward-10-seconds:before { + content: "\eb77"; +} +.icon-wallet:before { + content: "\eb78"; +} +.icon-folder-favorite:before { + content: "\eb79"; +} +.icon-user-minus:before { + content: "\eb7a"; +} +.icon-timer-pause:before { + content: "\e972"; +} +.icon-scissor:before { + content: "\eb7b"; +} +.icon-heart-slash:before { + content: "\eb7c"; +} +.icon-grid-1:before { + content: "\eb7d"; +} +.icon-note-add:before { + content: "\e973"; +} +.icon-book:before { + content: "\eb7e"; +} +.icon-grid-edit:before { + content: "\eb7f"; +} +.icon-ticket-2:before { + content: "\eb80"; +} +.icon-sagittarius:before { + content: "\eb81"; +} +.icon-devices-1:before { + content: "\eb82"; +} +.icon-radio:before { + content: "\eb83"; +} +.icon-login:before { + content: "\eb84"; +} +.icon-slash:before { + content: "\e974"; +} +.icon-repeate-music:before { + content: "\eb85"; +} +.icon-rotate-left-1:before { + content: "\eb86"; +} +.icon-shapes:before { + content: "\eb87"; +} +.icon-battery-charging:before { + content: "\eb88"; +} +.icon-ram-2:before { + content: "\eb89"; +} +.icon-message-time:before { + content: "\eb8a"; +} +.icon-wifi-square:before { + content: "\eb8b"; +} +.icon-message-question:before { + content: "\eb8c"; +} +.icon-tag-user:before { + content: "\eb8d"; +} +.icon-card-pos:before { + content: "\eb8e"; +} +.icon-voice-square:before { + content: "\eb8f"; +} +.icon-box-1:before { + content: "\eb90"; +} +.icon-link-circle:before { + content: "\eb91"; +} +.icon-sms:before { + content: "\eb92"; +} +.icon-receipt-disscount:before { + content: "\eb93"; +} +.icon-discover:before { + content: "\eb94"; +} +.icon-add-square:before { + content: "\e975"; +} +.icon-cloud-notif:before { + content: "\eb95"; +} +.icon-profile-add:before { + content: "\eb96"; +} +.icon-shield-cross:before { + content: "\eb97"; +} +.icon-grid-5:before { + content: "\eb98"; +} +.icon-note-2:before { + content: "\eb99"; +} +.icon-radar-2:before { + content: "\eb9a"; +} +.icon-global-edit:before { + content: "\eb9b"; +} +.icon-gallery:before { + content: "\eb9c"; +} +.icon-home-hashtag:before { + content: "\eb9d"; +} +.icon-direct-up:before { + content: "\eb9e"; +} +.icon-import:before { + content: "\eb9f"; +} +.icon-size:before { + content: "\eba0"; +} +.icon-note:before { + content: "\eba1"; +} +.icon-frame-2:before { + content: "\eba2"; +} +.icon-align-vertically:before { + content: "\eba3"; +} +.icon-kanban:before { + content: "\eba4"; +} +.icon-shop-remove:before { + content: "\eba5"; +} +.icon-video-circle:before { + content: "\eba6"; +} +.icon-shield:before { + content: "\eba7"; +} +.icon-code-1:before { + content: "\eba8"; +} +.icon-notification-favorite:before { + content: "\eba9"; +} +.icon-bookmark-2:before { + content: "\ebaa"; +} +.icon-backward-5-seconds:before { + content: "\ebab"; +} +.icon-textalign-right:before { + content: "\ebac"; +} +.icon-omega-square:before { + content: "\ebad"; +} +.icon-close-circle:before { + content: "\e976"; +} +.icon-frame-3:before { + content: "\ebae"; +} +.icon-archive:before { + content: "\ebaf"; +} +.icon-game:before { + content: "\ebb0"; +} +.icon-note-text:before { + content: "\ebb1"; +} +.icon-forward-item:before { + content: "\ebb2"; +} +.icon-global-search:before { + content: "\e977"; +} +.icon-book-saved:before { + content: "\e978"; +} +.icon-volume-cross:before { + content: "\ebb3"; +} +.icon-status-up:before { + content: "\ebb4"; +} +.icon-grid-4:before { + content: "\ebb5"; +} +.icon-mask-1:before { + content: "\ebb6"; +} +.icon-text-bold:before { + content: "\ebb7"; +} +.icon-cloud-snow:before { + content: "\ebb8"; +} +.icon-gallery-favorite:before { + content: "\ebb9"; +} +.icon-row-horizontal:before { + content: "\ebba"; +} +.icon-settings:before { + content: "\ebbb"; +} +.icon-minus-square:before { + content: "\ebbc"; +} +.icon-receive-square:before { + content: "\ebbd"; +} +.icon-programming-arrows:before { + content: "\ebbe"; +} +.icon-calendar-tick:before { + content: "\e979"; +} +.icon-backward-15-seconds:before { + content: "\ebbf"; +} +.icon-driver-2:before { + content: "\ebc0"; +} +.icon-chart-1:before { + content: "\ebc1"; +} +.icon-ship:before { + content: "\ebc2"; +} +.icon-chart-3:before { + content: "\ebc3"; +} +.icon-d-rotate:before { + content: "\ebc4"; +} +.icon-stop-circle:before { + content: "\ebc5"; +} +.icon-brush:before { + content: "\ebc6"; +} +.icon-arrow-right:before { + content: "\ebc7"; +} +.icon-box-2:before { + content: "\e97a"; +} +.icon-money-forbidden:before { + content: "\ebc8"; +} +.icon-grid-6:before { + content: "\ebc9"; +} +.icon-key:before { + content: "\e97b"; +} +.icon-note-1:before { + content: "\ebca"; +} +.icon-toggle-off:before { + content: "\ebcb"; +} +.icon-empty-wallet:before { + content: "\e97c"; +} +.icon-radar-1:before { + content: "\e97d"; +} +.icon-link:before { + content: "\ebcc"; +} +.icon-receipt-square:before { + content: "\ebcd"; +} +.icon-instagram:before { + content: "\ebce"; +} +.icon-lamp-on:before { + content: "\ebcf"; +} +.icon-clipboard:before { + content: "\ebd0"; +} +.icon-frame-1:before { + content: "\ebd1"; +} +.icon-coin-1:before { + content: "\e97e"; +} +.icon-driver-refresh:before { + content: "\e97f"; +} +.icon-dislike:before { + content: "\ebd2"; +} +.icon-empty-wallet-tick:before { + content: "\ebd3"; +} +.icon-money-2:before { + content: "\ebd4"; +} +.icon-cloud-drizzle:before { + content: "\e980"; +} +.icon-money-3:before { + content: "\ebd5"; +} +.icon-search-zoom-in:before { + content: "\e981"; +} +.icon-slider-vertical:before { + content: "\ebd6"; +} +.icon-filter-search:before { + content: "\e982"; +} +.icon-bag-2:before { + content: "\ebd7"; +} +.icon-language-circle:before { + content: "\ebd8"; +} +.icon-shopping-bag:before { + content: "\ebd9"; +} +.icon-health:before { + content: "\ebda"; +} +.icon-buildings:before { + content: "\ebdb"; +} +.icon-call-outgoing:before { + content: "\ebdc"; +} +.icon-box-remove:before { + content: "\ebdd"; +} +.icon-lock:before { + content: "\ebde"; +} +.icon-user-tick:before { + content: "\ebdf"; +} +.icon-mask-2:before { + content: "\ebe0"; +} +.icon-grid-7:before { + content: "\ebe1"; +} +.icon-save-minus:before { + content: "\e983"; +} +.icon-profile-2user:before { + content: "\e984"; +} +.icon-video-tick:before { + content: "\e985"; +} +.icon-location-tick:before { + content: "\e986"; +} +.icon-attach-circle:before { + content: "\e987"; +} +.icon-microphone-2:before { + content: "\ebe2"; +} +.icon-filter-tick:before { + content: "\e988"; +} +.icon-notification-circle:before { + content: "\ebe3"; +} +.icon-keyboard:before { + content: "\e989"; +} +.icon-path-2:before { + content: "\ebe4"; +} +.icon-chart-2:before { + content: "\ebe5"; +} +.icon-folder-open:before { + content: "\e98a"; +} +.icon-search-status:before { + content: "\e98b"; +} +.icon-bubble:before { + content: "\e98c"; +} +.icon-sms-search:before { + content: "\ebe6"; +} +.icon-message-add:before { + content: "\ebe7"; +} +.icon-warning-2:before { + content: "\e98d"; +} +.icon-brush-3:before { + content: "\ebe8"; +} +.icon-arrow-up-1:before { + content: "\ebe9"; +} +.icon-lock-slash:before { + content: "\ebea"; +} +.icon-cpu-setting:before { + content: "\e98e"; +} +.icon-calendar-2:before { + content: "\ebeb"; +} +.icon-radar:before { + content: "\ebec"; +} +.icon-maximize:before { + content: "\ebed"; +} +.icon-shield-tick:before { + content: "\ebee"; +} +.icon-magic-star:before { + content: "\ebef"; +} +.icon-percentage-square:before { + content: "\ebf0"; +} +.icon-mouse-square:before { + content: "\e98f"; +} +.icon-fatrows:before { + content: "\ebf1"; +} +.icon-discount-shape:before { + content: "\ebf2"; +} +.icon-devices:before { + content: "\ebf3"; +} +.icon-arrow-2:before { + content: "\ebf4"; +} +.icon-message-circle:before { + content: "\ebf5"; +} +.icon-pen-tool-2:before { + content: "\ebf6"; +} +.icon-monitor-mobbile:before { + content: "\ebf7"; +} +.icon-smileys:before { + content: "\ebf8"; +} +.icon-arrow-3:before { + content: "\ebf9"; +} +.icon-ticket-star:before { + content: "\ebfa"; +} +.icon-grammerly:before { + content: "\ebfb"; +} +.icon-user-square:before { + content: "\ebfc"; +} +.icon-airpods:before { + content: "\ebfd"; +} +.icon-transaction-minus:before { + content: "\ebfe"; +} +.icon-mobile-programming:before { + content: "\ebff"; +} +.icon-book-square:before { + content: "\ec00"; +} +.icon-music-filter:before { + content: "\ec01"; +} +.icon-calendar-circle:before { + content: "\e990"; +} +.icon-home-trend-down:before { + content: "\e991"; +} +.icon-microphone:before { + content: "\ec02"; +} +.icon-sms-notification:before { + content: "\e992"; +} +.icon-sidebar-right:before { + content: "\ec03"; +} +.icon-map:before { + content: "\ec04"; +} +.icon-moneys:before { + content: "\ec05"; +} +.icon-brush-2:before { + content: "\ec06"; +} +.icon-chart-fail:before { + content: "\ec07"; +} +.icon-direct-right:before { + content: "\e993"; +} +.icon-cloud-plus:before { + content: "\ec08"; +} +.icon-directbox-send:before { + content: "\ec09"; +} +.icon-wallet-1:before { + content: "\ec0a"; +} +.icon-hierarchy-3:before { + content: "\ec0b"; +} +.icon-calendar-search:before { + content: "\ec0c"; +} +.icon-wallet-3:before { + content: "\ec0d"; +} +.icon-music-square-add:before { + content: "\ec0e"; +} +.icon-arrow-circle-up:before { + content: "\ec0f"; +} +.icon-calendar-add:before { + content: "\ec10"; +} +.icon-align-bottom:before { + content: "\ec11"; +} +.icon-arrow-up-2:before { + content: "\ec12"; +} +.icon-location-slash:before { + content: "\ec13"; +} +.icon-briefcase:before { + content: "\ec14"; +} +.icon-sidebar-top:before { + content: "\ec15"; +} +.icon-user-tag:before { + content: "\ec16"; +} +.icon-tag:before { + content: "\e994"; +} +.icon-calendar-1:before { + content: "\ec17"; +} +.icon-text-italic:before { + content: "\ec18"; +} +.icon-crop:before { + content: "\ec19"; +} +.icon-call-remove:before { + content: "\ec1a"; +} +.icon-refresh-right-square:before { + content: "\ec1b"; +} +.icon-convertshape-2:before { + content: "\ec1c"; +} +.icon-blur:before { + content: "\ec1d"; +} +.icon-export:before { + content: "\ec1e"; +} +.icon-ticket:before { + content: "\ec1f"; +} +.icon-brifecase-cross:before { + content: "\ec20"; +} +.icon-quote-up-square:before { + content: "\ec21"; +} +.icon-candle:before { + content: "\ec22"; +} +.icon-signpost:before { + content: "\ec23"; +} +.icon-creative-commons:before { + content: "\ec24"; +} +.icon-flag-2:before { + content: "\ec25"; +} +.icon-message-notif:before { + content: "\ec26"; +} +.icon-camera-slash:before { + content: "\ec27"; +} +.icon-logout:before { + content: "\ec28"; +} +.icon-support:before { + content: "\ec29"; +} +.icon-message-search:before { + content: "\ec2a"; +} +.icon-money-tick:before { + content: "\ec2b"; +} +.icon-bag-happy:before { + content: "\ec2c"; +} +.icon-card-edit:before { + content: "\ec2d"; +} +.icon-dollar-circle:before { + content: "\ec2e"; +} +.icon-star-1:before { + content: "\ec2f"; +} +.icon-arrow-up-3:before { + content: "\ec30"; +} +.icon-brush-1:before { + content: "\e995"; +} +.icon-music-square-search:before { + content: "\ec31"; +} +.icon-music:before { + content: "\ec32"; +} +.icon-received:before { + content: "\ec33"; +} +.icon-textalign-justifycenter:before { + content: "\ec34"; +} +.icon-card-tick-1:before { + content: "\ec35"; +} +.icon-play-cricle:before { + content: "\ec36"; +} +.icon-hierarchy-2:before { + content: "\ec37"; +} +.icon-wallet-2:before { + content: "\ec38"; +} +.icon-copyright:before { + content: "\ec39"; +} +.icon-shop:before { + content: "\ec3a"; +} +.icon-home:before { + content: "\ec3b"; +} +.icon-milk:before { + content: "\ec3c"; +} +.icon-edit-2:before { + content: "\ec3d"; +} +.icon-clipboard-tick:before { + content: "\e996"; +} +.icon-forward-5-seconds:before { + content: "\ec3e"; +} +.icon-arrow-square:before { + content: "\ec3f"; +} +.icon-like-dislike:before { + content: "\ec40"; +} +.icon-format-square:before { + content: "\ec41"; +} +.icon-quote-up:before { + content: "\ec42"; +} +.icon-sidebar-left:before { + content: "\ec43"; +} +.icon-heart-search:before { + content: "\ec44"; +} +.icon-card-receive:before { + content: "\ec45"; +} +.icon-rotate-right-1:before { + content: "\ec46"; +} +.icon-home-trend-up:before { + content: "\ec47"; +} +.icon-message-text-1:before { + content: "\ec48"; +} +.icon-arrow:before { + content: "\ec49"; +} +.icon-money-change:before { + content: "\ec4a"; +} +.icon-user:before { + content: "\ec4b"; +} +.icon-wallet-search:before { + content: "\ec4c"; +} +.icon-audio-square:before { + content: "\ec4d"; +} +.icon-more-circle:before { + content: "\ec4e"; +} +.icon-translate:before { + content: "\ec4f"; +} +.icon-document-forward:before { + content: "\ec50"; +} +.icon-money-time:before { + content: "\ec51"; +} +.icon-aquarius:before { + content: "\ec52"; +} +.icon-tag-2:before { + content: "\ec53"; +} +.icon-map-1:before { + content: "\ec54"; +} +.icon-document-like:before { + content: "\ec55"; +} +.icon-chart:before { + content: "\ec56"; +} +.icon-tick-square:before { + content: "\ec57"; +} +.icon-password-check:before { + content: "\ec58"; +} +.icon-presention-chart:before { + content: "\ec59"; +} +.icon-gps-slash:before { + content: "\ec5a"; +} +.icon-gallery-tick:before { + content: "\ec5b"; +} +.icon-brush-4:before { + content: "\ec5c"; +} +.icon-path:before { + content: "\ec5d"; +} +.icon-profile-remove:before { + content: "\ec5e"; +} +.icon-import-1:before { + content: "\ec5f"; +} +.icon-repeat:before { + content: "\e997"; +} +.icon-refresh-square-2:before { + content: "\e998"; +} +.icon-arrange-square:before { + content: "\ec60"; +} +.icon-document-text-1:before { + content: "\e999"; +} +.icon-information:before { + content: "\e99a"; +} +.icon-picture-frame:before { + content: "\ec61"; +} +.icon-arrow-square-left:before { + content: "\ec62"; +} +.icon-play-circle:before { + content: "\ec63"; +} +.icon-menu-1:before { + content: "\ec64"; +} +.icon-rotate-left:before { + content: "\e99b"; +} +.icon-receipt-2-1:before { + content: "\e99c"; +} +.icon-wind:before { + content: "\ec65"; +} +.icon-money-add:before { + content: "\ec66"; +} +.icon-note-favorite:before { + content: "\ec67"; +} +.icon-trush-square:before { + content: "\ec68"; +} +.icon-card-coin:before { + content: "\ec69"; +} +.icon-buildings-2:before { + content: "\ec6a"; +} +.icon-house:before { + content: "\ec6b"; +} +.icon-card-send:before { + content: "\ec6c"; +} +.icon-sound:before { + content: "\ec6d"; +} +.icon-refresh-circle:before { + content: "\e99d"; +} +.icon-location-add:before { + content: "\e99e"; +} +.icon-gemini:before { + content: "\ec6e"; +} +.icon-shield-search:before { + content: "\ec6f"; +} +.icon-archive-minus:before { + content: "\ec70"; +} +.icon-timer-start:before { + content: "\ec71"; +} +.icon-quote-down-circle:before { + content: "\ec72"; +} +.icon-shapes-1:before { + content: "\ec73"; +} +.icon-brifecase-timer:before { + content: "\ec74"; +} +.icon-heart-tick:before { + content: "\ec75"; +} +.icon-textalign-left:before { + content: "\e99f"; +} +.icon-ghost:before { + content: "\ec76"; +} +.icon-lamp-1:before { + content: "\ec77"; +} +.icon-quote-down:before { + content: "\ec78"; +} +.icon-battery-disable:before { + content: "\ec79"; +} +.icon-arrow-down:before { + content: "\e9a0"; +} +.icon-search-zoom-in-1:before { + content: "\ec7a"; +} +.icon-paintbucket:before { + content: "\ec7b"; +} +.icon-printer-slash:before { + content: "\ec7c"; +} +.icon-subtitle:before { + content: "\ec7d"; +} +.icon-pause-circle:before { + content: "\ec7e"; +} +.icon-receipt:before { + content: "\e9a1"; +} +.icon-like:before { + content: "\ec7f"; +} +.icon-eraser:before { + content: "\ec80"; +} +.icon-musicnote:before { + content: "\ec81"; +} +.icon-toggle-on-circle:before { + content: "\ec82"; +} +.icon-shop-add:before { + content: "\ec83"; +} +.icon-clipboard-close:before { + content: "\ec84"; +} +.icon-task:before { + content: "\e9a2"; +} +.icon-slider-vertical-1:before { + content: "\e9a3"; +} +.icon-driver:before { + content: "\e9a4"; +} +.icon-sun-1:before { + content: "\ec85"; +} +.icon-toggle-on:before { + content: "\ec86"; +} +.icon-triangle:before { + content: "\e9a5"; +} +.icon-gallery-remove:before { + content: "\ec87"; +} +.icon-bag-tick:before { + content: "\ec88"; +} +.icon-heart-circle:before { + content: "\ec89"; +} +.icon-directbox-notif:before { + content: "\e9a6"; +} +.icon-arrow-square-up:before { + content: "\ec8a"; +} +.icon-import-2:before { + content: "\ec8b"; +} +.icon-profile-delete:before { + content: "\ec8c"; +} +.icon-smart-home:before { + content: "\ec8d"; +} +.icon-microphone-slash-1:before { + content: "\e9a7"; +} +.icon-convertshape:before { + content: "\e9a8"; +} +.icon-data1:before { + content: "\e900"; +} +.icon-data-2 .path1:before { + content: "\e901"; + color: rgb(41, 45, 50); +} +.icon-data-2 .path2:before { + content: "\e909"; + margin-left: -1em; + color: rgb(41, 45, 50); +} +.icon-data-2 .path3:before { + content: "\e90a"; + margin-left: -1em; + color: rgb(41, 45, 50); +} +.icon-data-2 .path4:before { + content: "\e90b"; + margin-left: -1em; + color: rgb(41, 45, 50); +} +.icon-data-2 .path5:before { + content: "\e9ab"; + margin-left: -1em; + color: rgb(255, 255, 255); +} +.icon-data-2 .path6:before { + content: "\e9ac"; + margin-left: -1em; + color: rgb(41, 45, 50); +} +.icon-data-2 .path7:before { + content: "\e9ad"; + margin-left: -1em; + color: rgb(41, 45, 50); +} +.icon-data-2 .path8:before { + content: "\e9ae"; + margin-left: -1em; + color: rgb(41, 45, 50); +} +.icon-document-text1:before { + content: "\e9af"; +} +.icon-home1:before { + content: "\e9b0"; +} +.icon-setting-21:before { + content: "\e9b1"; +} diff --git a/src/assets/matter_logo.png b/src/assets/matter_logo.png new file mode 100644 index 0000000..f37975d Binary files /dev/null and b/src/assets/matter_logo.png differ diff --git a/src/assets/matter_logo_rgb_day.png b/src/assets/matter_logo_rgb_day.png new file mode 100644 index 0000000..0c16b09 Binary files /dev/null and b/src/assets/matter_logo_rgb_day.png differ diff --git a/src/assets/matter_sym_rgb_day.png b/src/assets/matter_sym_rgb_day.png new file mode 100644 index 0000000..7eda93b Binary files /dev/null and b/src/assets/matter_sym_rgb_day.png differ diff --git a/src/assets/matter_sym_rgb_night.png b/src/assets/matter_sym_rgb_night.png new file mode 100644 index 0000000..d4af49f Binary files /dev/null and b/src/assets/matter_sym_rgb_night.png differ diff --git a/src/assets/matter_wdmrk_rgb_day.png b/src/assets/matter_wdmrk_rgb_day.png new file mode 100644 index 0000000..c321b81 Binary files /dev/null and b/src/assets/matter_wdmrk_rgb_day.png differ diff --git a/src/assets/profile.png b/src/assets/profile.png new file mode 100644 index 0000000..1c927a4 Binary files /dev/null and b/src/assets/profile.png differ diff --git a/src/assets/roboto/Roboto-Medium.ttf b/src/assets/roboto/Roboto-Medium.ttf new file mode 100644 index 0000000..1a7f3b0 Binary files /dev/null and b/src/assets/roboto/Roboto-Medium.ttf differ diff --git a/src/assets/roboto/Roboto-Regular.ttf b/src/assets/roboto/Roboto-Regular.ttf new file mode 100644 index 0000000..2c97eea Binary files /dev/null and b/src/assets/roboto/Roboto-Regular.ttf differ diff --git a/src/assets/theme-images/Dark_Mode_1.jpg b/src/assets/theme-images/Dark_Mode_1.jpg new file mode 100644 index 0000000..ec32073 Binary files /dev/null and b/src/assets/theme-images/Dark_Mode_1.jpg differ diff --git a/src/assets/theme-images/Dark_Mode_2.jpg b/src/assets/theme-images/Dark_Mode_2.jpg new file mode 100644 index 0000000..a95a770 Binary files /dev/null and b/src/assets/theme-images/Dark_Mode_2.jpg differ diff --git a/src/assets/theme-images/Light_Mode_1.jpg b/src/assets/theme-images/Light_Mode_1.jpg new file mode 100644 index 0000000..718c857 Binary files /dev/null and b/src/assets/theme-images/Light_Mode_1.jpg differ diff --git a/src/assets/theme-images/Light_Mode_2.jpg b/src/assets/theme-images/Light_Mode_2.jpg new file mode 100644 index 0000000..780f887 Binary files /dev/null and b/src/assets/theme-images/Light_Mode_2.jpg differ diff --git a/src/assets/themes/saga-blue/theme.css b/src/assets/themes/saga-blue/theme.css new file mode 100644 index 0000000..723e4e9 --- /dev/null +++ b/src/assets/themes/saga-blue/theme.css @@ -0,0 +1,5279 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@charset "UTF-8"; +:root { + --surface-a:#ffffff; + --surface-b:#f8f9fa; + --surface-c:#e9ecef; + --surface-d:#dee2e6; + --surface-e:#ffffff; + --surface-f:#ffffff; + --text-color:#495057; + --text-color-secondary:#6c757d; + --primary-color:#2196F3; + --primary-color-text:#ffffff; + --font-family:-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; + --surface-0: #ffffff; + --surface-50: #FAFAFA; + --surface-100: #F5F5F5; + --surface-200: #EEEEEE; + --surface-300: #E0E0E0; + --surface-400: #BDBDBD; + --surface-500: #9E9E9E; + --surface-600: #757575; + --surface-700: #616161; + --surface-800: #424242; + --surface-900: #212121; + --gray-50: #FAFAFA; + --gray-100: #F5F5F5; + --gray-200: #EEEEEE; + --gray-300: #E0E0E0; + --gray-400: #BDBDBD; + --gray-500: #9E9E9E; + --gray-600: #757575; + --gray-700: #616161; + --gray-800: #424242; + --gray-900: #212121; + --content-padding:1rem; + --inline-spacing:0.5rem; + --border-radius:3px; + --surface-ground:#f8f9fa; + --surface-section:#ffffff; + --surface-card:#ffffff; + --surface-overlay:#ffffff; + --surface-border:#dee2e6; +} + +* { + box-sizing: border-box; +} + +.p-component { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + font-weight: normal; +} + +.p-component-overlay { + background-color: rgba(0, 0, 0, 0.4); + transition-duration: 0.2s; +} + +.p-disabled, .p-component:disabled { + opacity: 0.6; +} + +.p-error { + color: #f44336; +} + +.p-text-secondary { + color: #6c757d; +} + +.pi { + font-size: 1rem; +} + +.p-link { + font-size: 1rem; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + border-radius: 3px; +} +.p-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +:root { + --blue-50:#f4fafe; + --blue-100:#cae6fc; + --blue-200:#a0d2fa; + --blue-300:#75bef8; + --blue-400:#4baaf5; + --blue-500:#2196f3; + --blue-600:#1c80cf; + --blue-700:#1769aa; + --blue-800:#125386; + --blue-900:#0d3c61; + --green-50:#f6fbf6; + --green-100:#d4ecd5; + --green-200:#b2ddb4; + --green-300:#90cd93; + --green-400:#6ebe71; + --green-500:#4caf50; + --green-600:#419544; + --green-700:#357b38; + --green-800:#2a602c; + --green-900:#1e4620; + --yellow-50:#fffcf5; + --yellow-100:#fef0cd; + --yellow-200:#fde4a5; + --yellow-300:#fdd87d; + --yellow-400:#fccc55; + --yellow-500:#fbc02d; + --yellow-600:#d5a326; + --yellow-700:#b08620; + --yellow-800:#8a6a19; + --yellow-900:#644d12; + --cyan-50:#f2fcfd; + --cyan-100:#c2eff5; + --cyan-200:#91e2ed; + --cyan-300:#61d5e4; + --cyan-400:#30c9dc; + --cyan-500:#00bcd4; + --cyan-600:#00a0b4; + --cyan-700:#008494; + --cyan-800:#006775; + --cyan-900:#004b55; + --pink-50:#fef4f7; + --pink-100:#fac9da; + --pink-200:#f69ebc; + --pink-300:#f1749e; + --pink-400:#ed4981; + --pink-500:#e91e63; + --pink-600:#c61a54; + --pink-700:#a31545; + --pink-800:#801136; + --pink-900:#5d0c28; + --indigo-50:#f5f6fb; + --indigo-100:#d1d5ed; + --indigo-200:#acb4df; + --indigo-300:#8893d1; + --indigo-400:#6372c3; + --indigo-500:#3f51b5; + --indigo-600:#36459a; + --indigo-700:#2c397f; + --indigo-800:#232d64; + --indigo-900:#192048; + --teal-50:#f2faf9; + --teal-100:#c2e6e2; + --teal-200:#91d2cc; + --teal-300:#61beb5; + --teal-400:#30aa9f; + --teal-500:#009688; + --teal-600:#008074; + --teal-700:#00695f; + --teal-800:#00534b; + --teal-900:#003c36; + --orange-50:#fff8f2; + --orange-100:#fde0c2; + --orange-200:#fbc791; + --orange-300:#f9ae61; + --orange-400:#f79530; + --orange-500:#f57c00; + --orange-600:#d06900; + --orange-700:#ac5700; + --orange-800:#874400; + --orange-900:#623200; + --bluegray-50:#f7f9f9; + --bluegray-100:#d9e0e3; + --bluegray-200:#bbc7cd; + --bluegray-300:#9caeb7; + --bluegray-400:#7e96a1; + --bluegray-500:#607d8b; + --bluegray-600:#526a76; + --bluegray-700:#435861; + --bluegray-800:#35454c; + --bluegray-900:#263238; + --purple-50:#faf4fb; + --purple-100:#e7cbec; + --purple-200:#d4a2dd; + --purple-300:#c279ce; + --purple-400:#af50bf; + --purple-500:#9c27b0; + --purple-600:#852196; + --purple-700:#6d1b7b; + --purple-800:#561561; + --purple-900:#3e1046; +} + +.p-autocomplete .p-autocomplete-loader { + right: 0.5rem; +} +.p-autocomplete.p-autocomplete-dd .p-autocomplete-loader { + right: 2.857rem; +} +.p-autocomplete .p-autocomplete-multiple-container { + padding: 0.25rem 0.5rem; +} +.p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover { + border-color: #2196F3; +} +.p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token { + padding: 0.25rem 0; +} +.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token input { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + color: #495057; + padding: 0; + margin: 0; +} +.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { + padding: 0.25rem 0.5rem; + margin-right: 0.5rem; + background: #E3F2FD; + color: #495057; + border-radius: 3px; +} +.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { + margin-left: 0.5rem; +} + +p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { + border-color: #f44336; +} + +.p-autocomplete-panel { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-autocomplete-panel .p-autocomplete-items:not(.p-autocomplete-virtualscroll) { + padding: 0.5rem 0; +} +.p-autocomplete-panel .p-autocomplete-items.p-autocomplete-virtualscroll .cdk-virtual-scroll-content-wrapper { + padding: 0.5rem 0; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item { + margin: 0; + padding: 0.5rem 1rem; + border: 0 none; + color: #495057; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover { + color: #495057; + background: #e9ecef; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-empty-message { + padding: 0.5rem 1rem; + color: #495057; + background: transparent; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group { + margin: 0; + padding: 0.75rem 1rem; + color: #495057; + background: #ffffff; + font-weight: 600; +} + +p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { + border-color: #f44336; +} + +.p-datepicker { + padding: 0.5rem; + background: #ffffff; + color: #495057; + border: 1px solid #ced4da; + border-radius: 3px; +} +.p-datepicker:not(.p-datepicker-inline) { + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-datepicker:not(.p-datepicker-inline) .p-datepicker-header { + background: #ffffff; +} +.p-datepicker .p-datepicker-header { + padding: 0.5rem; + color: #495057; + background: #ffffff; + font-weight: 600; + margin: 0; + border-bottom: 1px solid #dee2e6; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-datepicker .p-datepicker-header .p-datepicker-prev, +.p-datepicker .p-datepicker-header .p-datepicker-next { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, +.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-datepicker .p-datepicker-header .p-datepicker-prev:focus, +.p-datepicker .p-datepicker-header .p-datepicker-next:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-datepicker .p-datepicker-header .p-datepicker-title { + line-height: 2rem; +} +.p-datepicker .p-datepicker-header .p-datepicker-title select { + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-datepicker .p-datepicker-header .p-datepicker-title select:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + margin-right: 0.5rem; +} +.p-datepicker table { + font-size: 1rem; + margin: 0.5rem 0; +} +.p-datepicker table th { + padding: 0.5rem; +} +.p-datepicker table th > span { + width: 2.5rem; + height: 2.5rem; +} +.p-datepicker table td { + padding: 0.5rem; +} +.p-datepicker table td > span { + width: 2.5rem; + height: 2.5rem; + border-radius: 50%; + transition: box-shadow 0.2s; + border: 1px solid transparent; +} +.p-datepicker table td > span.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-datepicker table td > span:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-datepicker table td.p-datepicker-today > span { + background: #ced4da; + color: #495057; + border-color: transparent; +} +.p-datepicker table td.p-datepicker-today > span.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-datepicker .p-datepicker-buttonbar { + padding: 1rem 0; + border-top: 1px solid #dee2e6; +} +.p-datepicker .p-datepicker-buttonbar .p-button { + width: auto; +} +.p-datepicker .p-timepicker { + border-top: 1px solid #dee2e6; + padding: 0.5rem; +} +.p-datepicker .p-timepicker button { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-datepicker .p-timepicker button:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-datepicker .p-timepicker button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-datepicker .p-timepicker button:last-child { + margin-top: 0.2em; +} +.p-datepicker .p-timepicker span { + font-size: 1.25rem; +} +.p-datepicker .p-timepicker > div { + padding: 0 0.5rem; +} +.p-datepicker.p-datepicker-timeonly .p-timepicker { + border-top: 0 none; +} +.p-datepicker .p-monthpicker { + margin: 0.5rem 0; +} +.p-datepicker .p-monthpicker .p-monthpicker-month { + padding: 0.5rem; + transition: box-shadow 0.2s; + border-radius: 3px; +} +.p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-datepicker.p-datepicker-multiple-month .p-datepicker-group { + border-right: 1px solid #dee2e6; + padding-right: 0.5rem; + padding-left: 0.5rem; + padding-top: 0; + padding-bottom: 0; +} +.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child { + padding-left: 0; +} +.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child { + padding-right: 0; + border-right: 0 none; +} +.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover { + background: #e9ecef; +} +.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover { + background: #e9ecef; +} +.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +@media screen and (max-width: 769px) { + .p-datepicker table th, .p-datepicker table td { + padding: 0; + } +} +.p-cascadeselect { + background: #ffffff; + border: 1px solid #ced4da; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 3px; +} +.p-cascadeselect:not(.p-disabled):hover { + border-color: #2196F3; +} +.p-cascadeselect:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-cascadeselect .p-cascadeselect-label { + background: transparent; + border: 0 none; + padding: 0.5rem 0.5rem; +} +.p-cascadeselect .p-cascadeselect-label.p-placeholder { + color: #6c757d; +} +.p-cascadeselect .p-cascadeselect-label:enabled:focus { + outline: 0 none; + box-shadow: none; +} +.p-cascadeselect .p-cascadeselect-trigger { + background: transparent; + color: #6c757d; + width: 2.357rem; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.p-cascadeselect-panel { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-cascadeselect-panel .p-cascadeselect-items { + padding: 0.5rem 0; +} +.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item { + margin: 0; + border: 0 none; + color: #495057; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content { + padding: 0.5rem 1rem; +} +.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover { + color: #495057; + background: #e9ecef; +} +.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { + font-size: 0.875rem; +} + +p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { + border-color: #f44336; +} + +.p-input-filled .p-cascadeselect { + background: #f8f9fa; +} +.p-input-filled .p-cascadeselect:not(.p-disabled):hover { + background-color: #f8f9fa; +} +.p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { + background-color: #ffffff; +} + +.p-checkbox { + width: 20px; + height: 20px; +} +.p-checkbox .p-checkbox-box { + border: 2px solid #ced4da; + background: #ffffff; + width: 20px; + height: 20px; + color: #495057; + border-radius: 3px; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-checkbox .p-checkbox-box .p-checkbox-icon { + transition-duration: 0.2s; + color: #ffffff; + font-size: 14px; +} +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #2196F3; + background: #2196F3; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + border-color: #2196F3; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + border-color: #0b7ad1; + background: #0b7ad1; + color: #ffffff; +} + +p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { + border-color: #f44336; +} + +.p-input-filled .p-checkbox .p-checkbox-box { + background-color: #f8f9fa; +} +.p-input-filled .p-checkbox .p-checkbox-box.p-highlight { + background: #2196F3; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f8f9fa; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #0b7ad1; +} + +.p-checkbox-label { + margin-left: 0.5rem; +} + +.p-chips .p-chips-multiple-container { + padding: 0.25rem 0.5rem; +} +.p-chips .p-chips-multiple-container:not(.p-disabled):hover { + border-color: #2196F3; +} +.p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-chips .p-chips-multiple-container .p-chips-token { + padding: 0.25rem 0.5rem; + margin-right: 0.5rem; + background: #E3F2FD; + color: #495057; + border-radius: 3px; +} +.p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { + margin-left: 0.5rem; +} +.p-chips .p-chips-multiple-container .p-chips-input-token { + padding: 0.25rem 0; +} +.p-chips .p-chips-multiple-container .p-chips-input-token input { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + color: #495057; + padding: 0; + margin: 0; +} + +p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { + border-color: #f44336; +} + +.p-colorpicker-preview, +.p-fluid .p-colorpicker-preview.p-inputtext { + width: 2rem; + height: 2rem; +} + +.p-colorpicker-panel { + background: #323232; + border-color: #191919; +} +.p-colorpicker-panel .p-colorpicker-color-handle, +.p-colorpicker-panel .p-colorpicker-hue-handle { + border-color: #ffffff; +} + +.p-colorpicker-overlay-panel { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} + +.p-dropdown { + background: #ffffff; + border: 1px solid #ced4da; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 3px; +} +.p-dropdown:not(.p-disabled):hover { + border-color: #2196F3; +} +.p-dropdown:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-dropdown.p-dropdown-clearable .p-dropdown-label { + padding-right: 1.5rem; +} +.p-dropdown .p-dropdown-label { + background: transparent; + border: 0 none; +} +.p-dropdown .p-dropdown-label.p-placeholder { + color: #6c757d; +} +.p-dropdown .p-dropdown-label:enabled:focus { + outline: 0 none; + box-shadow: none; +} +.p-dropdown .p-dropdown-trigger { + background: transparent; + color: #6c757d; + width: 2.357rem; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +.p-dropdown .p-dropdown-clear-icon { + color: #6c757d; + right: 2.357rem; +} + +.p-dropdown-panel { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-dropdown-panel .p-dropdown-header { + padding: 0.5rem 1rem; + border-bottom: 0 none; + color: #495057; + background: #f8f9fa; + margin: 0; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-dropdown-panel .p-dropdown-header .p-dropdown-filter { + padding-right: 1.5rem; +} +.p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon { + right: 0.5rem; + color: #6c757d; +} +.p-dropdown-panel .p-dropdown-items:not(.p-dropdown-virtualscroll) { + padding: 0.5rem 0; +} +.p-dropdown-panel .p-dropdown-items.p-dropdown-virtualscroll .cdk-virtual-scroll-content-wrapper { + padding: 0.5rem 0; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-item { + margin: 0; + padding: 0.5rem 1rem; + border: 0 none; + color: #495057; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { + color: #495057; + background: #e9ecef; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message { + padding: 0.5rem 1rem; + color: #495057; + background: transparent; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { + margin: 0; + padding: 0.75rem 1rem; + color: #495057; + background: #ffffff; + font-weight: 600; +} + +p-dropdown.ng-dirty.ng-invalid > .p-dropdown { + border-color: #f44336; +} + +.p-input-filled .p-dropdown { + background: #f8f9fa; +} +.p-input-filled .p-dropdown:not(.p-disabled):hover { + background-color: #f8f9fa; +} +.p-input-filled .p-dropdown:not(.p-disabled).p-focus { + background-color: #ffffff; +} + +.p-editor-container .p-editor-toolbar { + background: #f8f9fa; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-editor-container .p-editor-toolbar.ql-snow { + border: 1px solid #dee2e6; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke { + stroke: #6c757d; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-fill { + fill: #6c757d; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label { + border: 0 none; + color: #6c757d; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover { + color: #495057; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke { + stroke: #495057; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill { + fill: #495057; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label { + color: #495057; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke { + stroke: #495057; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill { + fill: #495057; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options { + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + border-radius: 3px; + padding: 0.5rem 0; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item { + color: #495057; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover { + color: #495057; + background: #e9ecef; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item { + padding: 0.5rem 1rem; +} +.p-editor-container .p-editor-content { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-editor-container .p-editor-content.ql-snow { + border: 1px solid #dee2e6; +} +.p-editor-container .p-editor-content .ql-editor { + background: #ffffff; + color: #495057; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-editor-container .ql-snow.ql-toolbar button:hover, +.p-editor-container .ql-snow.ql-toolbar button:focus { + color: #495057; +} +.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke, +.p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke { + stroke: #495057; +} +.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill, +.p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill { + fill: #495057; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected { + color: #2196F3; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke { + stroke: #2196F3; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill { + fill: #2196F3; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label { + color: #2196F3; +} + +.p-inputgroup-addon { + background: #e9ecef; + color: #6c757d; + border-top: 1px solid #ced4da; + border-left: 1px solid #ced4da; + border-bottom: 1px solid #ced4da; + padding: 0.5rem 0.5rem; + min-width: 2.357rem; +} +.p-inputgroup-addon:last-child { + border-right: 1px solid #ced4da; +} + +.p-inputgroup > .p-component, +.p-inputgroup > .p-float-label > .p-component { + border-radius: 0; + margin: 0; +} +.p-inputgroup > .p-component + .p-inputgroup-addon, +.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + border-left: 0 none; +} +.p-inputgroup > .p-component:focus, +.p-inputgroup > .p-float-label > .p-component:focus { + z-index: 1; +} +.p-inputgroup > .p-component:focus ~ label, +.p-inputgroup > .p-float-label > .p-component:focus ~ label { + z-index: 1; +} + +.p-inputgroup-addon:first-child, +.p-inputgroup button:first-child, +.p-inputgroup input:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} + +.p-inputgroup .p-float-label:first-child input { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} + +.p-inputgroup-addon:last-child, +.p-inputgroup button:last-child, +.p-inputgroup input:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.p-inputgroup .p-float-label:last-child input { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.p-fluid .p-inputgroup .p-button { + width: auto; +} +.p-fluid .p-inputgroup .p-button.p-button-icon-only { + width: 2.357rem; +} + +p-inputmask.ng-dirty.ng-invalid > .p-inputtext { + border-color: #f44336; +} + +p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { + border-color: #f44336; +} + +.p-inputswitch { + width: 3rem; + height: 1.75rem; +} +.p-inputswitch .p-inputswitch-slider { + background: #ced4da; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 30px; +} +.p-inputswitch .p-inputswitch-slider:before { + background: #ffffff; + width: 1.25rem; + height: 1.25rem; + left: 0.25rem; + margin-top: -0.625rem; + border-radius: 50%; + transition-duration: 0.2s; +} +.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before { + transform: translateX(1.25rem); +} +.p-inputswitch.p-focus .p-inputswitch-slider { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider { + background: #b6bfc8; +} +.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider { + background: #2196F3; +} +.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before { + background: #ffffff; +} +.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { + background: #0d89ec; +} + +p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch { + border-color: #f44336; +} + +.p-inputtext { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + color: #495057; + background: #ffffff; + padding: 0.5rem 0.5rem; + border: 1px solid #ced4da; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + appearance: none; + border-radius: 3px; +} +.p-inputtext:enabled:hover { + border-color: #2196F3; +} +.p-inputtext:enabled:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-inputtext.ng-dirty.ng-invalid { + border-color: #f44336; +} +.p-inputtext.p-inputtext-sm { + font-size: 0.875rem; + padding: 0.4375rem 0.4375rem; +} +.p-inputtext.p-inputtext-lg { + font-size: 1.25rem; + padding: 0.625rem 0.625rem; +} + +.p-float-label > label { + left: 0.5rem; + color: #6c757d; + transition-duration: 0.2s; +} + +.p-float-label > .ng-invalid.ng-dirty + label { + color: #f44336; +} + +.p-input-icon-left > i:first-of-type { + left: 0.5rem; + color: #6c757d; +} + +.p-input-icon-left > .p-inputtext { + padding-left: 2rem; +} + +.p-input-icon-left.p-float-label > label { + left: 2rem; +} + +.p-input-icon-right > i:last-of-type { + right: 0.5rem; + color: #6c757d; +} + +.p-input-icon-right > .p-inputtext { + padding-right: 2rem; +} + +::-webkit-input-placeholder { + color: #6c757d; +} + +:-moz-placeholder { + color: #6c757d; +} + +::-moz-placeholder { + color: #6c757d; +} + +:-ms-input-placeholder { + color: #6c757d; +} + +.p-input-filled .p-inputtext { + background-color: #f8f9fa; +} +.p-input-filled .p-inputtext:enabled:hover { + background-color: #f8f9fa; +} +.p-input-filled .p-inputtext:enabled:focus { + background-color: #ffffff; +} + +.p-inputtext-sm .p-inputtext { + font-size: 0.875rem; + padding: 0.4375rem 0.4375rem; +} + +.p-inputtext-lg .p-inputtext { + font-size: 1.25rem; + padding: 0.625rem 0.625rem; +} + +.p-listbox { + background: #ffffff; + color: #495057; + border: 1px solid #ced4da; + border-radius: 3px; +} +.p-listbox .p-listbox-header { + padding: 0.5rem 1rem; + border-bottom: 0 none; + color: #495057; + background: #f8f9fa; + margin: 0; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-listbox .p-listbox-header .p-listbox-filter { + padding-right: 1.5rem; +} +.p-listbox .p-listbox-header .p-listbox-filter-icon { + right: 0.5rem; + color: #6c757d; +} +.p-listbox .p-listbox-header .p-checkbox { + margin-right: 0.5rem; +} +.p-listbox .p-listbox-list { + padding: 0.5rem 0; +} +.p-listbox .p-listbox-list .p-listbox-item { + margin: 0; + padding: 0.5rem 1rem; + border: 0 none; + color: #495057; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-listbox .p-listbox-list .p-listbox-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-listbox .p-listbox-list .p-listbox-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-listbox .p-listbox-list .p-listbox-item .p-checkbox { + margin-right: 0.5rem; +} +.p-listbox .p-listbox-list .p-listbox-item-group { + margin: 0; + padding: 0.75rem 1rem; + color: #495057; + background: #ffffff; + font-weight: 600; +} +.p-listbox .p-listbox-list .p-listbox-empty-message { + padding: 0.5rem 1rem; + color: #495057; + background: transparent; +} +.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover { + color: #495057; + background: #e9ecef; +} + +p-listbox.ng-dirty.ng-invalid > .p-listbox { + border-color: #f44336; +} + +.p-multiselect { + background: #ffffff; + border: 1px solid #ced4da; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 3px; +} +.p-multiselect:not(.p-disabled):hover { + border-color: #2196F3; +} +.p-multiselect:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-multiselect .p-multiselect-label { + padding: 0.5rem 0.5rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-multiselect .p-multiselect-label.p-placeholder { + color: #6c757d; +} +.p-multiselect.p-multiselect-chip .p-multiselect-token { + padding: 0.25rem 0.5rem; + margin-right: 0.5rem; + background: #E3F2FD; + color: #495057; + border-radius: 3px; +} +.p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon { + margin-left: 0.5rem; +} +.p-multiselect .p-multiselect-trigger { + background: transparent; + color: #6c757d; + width: 2.357rem; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.p-inputwrapper-filled .p-multiselect.p-multiselect-chip .p-multiselect-label { + padding: 0.25rem 0.5rem; +} + +.p-multiselect-panel { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-multiselect-panel .p-multiselect-header { + padding: 0.5rem 1rem; + border-bottom: 0 none; + color: #495057; + background: #f8f9fa; + margin: 0; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext { + padding-right: 1.5rem; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon { + right: 0.5rem; + color: #6c757d; +} +.p-multiselect-panel .p-multiselect-header .p-checkbox { + margin-right: 0.5rem; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-close { + margin-left: 0.5rem; + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-multiselect-panel .p-multiselect-items:not(.p-multiselect-virtualscroll) { + padding: 0.5rem 0; +} +.p-multiselect-panel .p-multiselect-items.p-multiselect-virtualscroll .cdk-virtual-scroll-content-wrapper { + padding: 0.5rem 0; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item { + margin: 0; + padding: 0.5rem 1rem; + border: 0 none; + color: #495057; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { + color: #495057; + background: #e9ecef; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox { + margin-right: 0.5rem; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item-group { + margin: 0; + padding: 0.75rem 1rem; + color: #495057; + background: #ffffff; + font-weight: 600; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message { + padding: 0.5rem 1rem; + color: #495057; + background: transparent; +} + +p-multiselect.ng-dirty.ng-invalid > .p-multiselect { + border-color: #f44336; +} + +.p-input-filled .p-multiselect { + background: #f8f9fa; +} +.p-input-filled .p-multiselect:not(.p-disabled):hover { + background-color: #f8f9fa; +} +.p-input-filled .p-multiselect:not(.p-disabled).p-focus { + background-color: #ffffff; +} + +.p-password.p-invalid.p-component > .p-inputtext { + border-color: #f44336; +} + +.p-password-panel { + padding: 1rem; + background: #ffffff; + color: #495057; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + border-radius: 3px; +} +.p-password-panel .p-password-meter { + margin-bottom: 0.5rem; + background: #dee2e6; +} +.p-password-panel .p-password-meter .p-password-strength.weak { + background: #D32F2F; +} +.p-password-panel .p-password-meter .p-password-strength.medium { + background: #FBC02D; +} +.p-password-panel .p-password-meter .p-password-strength.strong { + background: #689F38; +} + +.p-radiobutton { + width: 20px; + height: 20px; +} +.p-radiobutton .p-radiobutton-box { + border: 2px solid #ced4da; + background: #ffffff; + width: 20px; + height: 20px; + color: #495057; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover { + border-color: #2196F3; +} +.p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-radiobutton .p-radiobutton-box .p-radiobutton-icon { + width: 12px; + height: 12px; + transition-duration: 0.2s; + background-color: #ffffff; +} +.p-radiobutton .p-radiobutton-box.p-highlight { + border-color: #2196F3; + background: #2196F3; +} +.p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { + border-color: #0b7ad1; + background: #0b7ad1; + color: #ffffff; +} + +p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { + border-color: #f44336; +} + +.p-input-filled .p-radiobutton .p-radiobutton-box { + background-color: #f8f9fa; +} +.p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { + background-color: #f8f9fa; +} +.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { + background: #2196F3; +} +.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { + background: #0b7ad1; +} + +.p-radiobutton-label { + margin-left: 0.5rem; +} + +.p-rating .p-rating-icon { + color: #495057; + margin-left: 0.5rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + font-size: 1.143rem; +} +.p-rating .p-rating-icon.p-rating-cancel { + color: #e74c3c; +} +.p-rating .p-rating-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-rating .p-rating-icon:first-child { + margin-left: 0; +} +.p-rating .p-rating-icon.pi-star { + color: #2196F3; +} +.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-icon:hover { + color: #2196F3; +} +.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-icon.p-rating-cancel:hover { + color: #c0392b; +} + +.p-selectbutton .p-button { + background: #ffffff; + border: 1px solid #ced4da; + color: #495057; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-selectbutton .p-button .p-button-icon-left, +.p-selectbutton .p-button .p-button-icon-right { + color: #6c757d; +} +.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { + background: #e9ecef; + border-color: #ced4da; + color: #495057; +} +.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, +.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + color: #6c757d; +} +.p-selectbutton .p-button.p-highlight { + background: #2196F3; + border-color: #2196F3; + color: #ffffff; +} +.p-selectbutton .p-button.p-highlight .p-button-icon-left, +.p-selectbutton .p-button.p-highlight .p-button-icon-right { + color: #ffffff; +} +.p-selectbutton .p-button.p-highlight:hover { + background: #0d89ec; + border-color: #0d89ec; + color: #ffffff; +} +.p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, +.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + color: #ffffff; +} + +p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { + border-color: #f44336; +} + +.p-slider { + background: #dee2e6; + border: 0 none; + border-radius: 3px; +} +.p-slider.p-slider-horizontal { + height: 0.286rem; +} +.p-slider.p-slider-horizontal .p-slider-handle { + margin-top: -0.5715rem; + margin-left: -0.5715rem; +} +.p-slider.p-slider-vertical { + width: 0.286rem; +} +.p-slider.p-slider-vertical .p-slider-handle { + margin-left: -0.5715rem; + margin-bottom: -0.5715rem; +} +.p-slider .p-slider-handle { + height: 1.143rem; + width: 1.143rem; + background: #ffffff; + border: 2px solid #2196F3; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-slider .p-slider-handle:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-slider .p-slider-range { + background: #2196F3; +} +.p-slider:not(.p-disabled) .p-slider-handle:hover { + background: #2196F3; + border-color: #2196F3; +} +.p-slider.p-slider-animate.p-slider-horizontal .p-slider-handle { + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, left 0.2s; +} +.p-slider.p-slider-animate.p-slider-horizontal .p-slider-range { + transition: width 0.2s; +} +.p-slider.p-slider-animate.p-slider-vertical .p-slider-handle { + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, bottom 0.2s; +} +.p-slider.p-slider-animate.p-slider-vertical .p-slider-range { + transition: height 0.2s; +} + +.p-togglebutton.p-button { + background: #ffffff; + border: 1px solid #ced4da; + color: #495057; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-togglebutton.p-button .p-button-icon-left, +.p-togglebutton.p-button .p-button-icon-right { + color: #6c757d; +} +.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { + background: #e9ecef; + border-color: #ced4da; + color: #495057; +} +.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, +.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + color: #6c757d; +} +.p-togglebutton.p-button.p-highlight { + background: #2196F3; + border-color: #2196F3; + color: #ffffff; +} +.p-togglebutton.p-button.p-highlight .p-button-icon-left, +.p-togglebutton.p-button.p-highlight .p-button-icon-right { + color: #ffffff; +} +.p-togglebutton.p-button.p-highlight:hover { + background: #0d89ec; + border-color: #0d89ec; + color: #ffffff; +} +.p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, +.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + color: #ffffff; +} + +p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { + border-color: #f44336; +} + +.p-treeselect { + background: #ffffff; + border: 1px solid #ced4da; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 3px; +} +.p-treeselect:not(.p-disabled):hover { + border-color: #2196F3; +} +.p-treeselect:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: #2196F3; +} +.p-treeselect .p-treeselect-label { + padding: 0.5rem 0.5rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-treeselect .p-treeselect-label.p-placeholder { + color: #6c757d; +} +.p-treeselect.p-treeselect-chip .p-treeselect-token { + padding: 0.25rem 0.5rem; + margin-right: 0.5rem; + background: #dee2e6; + color: #495057; + border-radius: 16px; +} +.p-treeselect .p-treeselect-trigger { + background: transparent; + color: #6c757d; + width: 2.357rem; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +.p-treeselect.p-invalid.p-component { + border-color: #f44336; +} + +.p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { + padding: 0.25rem 0.5rem; +} + +.p-treeselect-panel { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-treeselect-panel .p-treeselect-items-wrapper .p-tree { + border: 0 none; +} +.p-treeselect-panel .p-treeselect-items-wrapper .p-treeselect-empty-message { + padding: 0.5rem 1rem; + color: #495057; + background: transparent; +} + +.p-input-filled .p-treeselect { + background: #f8f9fa; +} +.p-input-filled .p-treeselect:not(.p-disabled):hover { + background-color: #f8f9fa; +} +.p-input-filled .p-treeselect:not(.p-disabled).p-focus { + background-color: #ffffff; +} + +.p-button { + color: #ffffff; + background: #2196F3; + border: 1px solid #2196F3; + padding: 0.5rem 1rem; + font-size: 1rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 3px; +} +.p-button:enabled:hover { + background: #0d89ec; + color: #ffffff; + border-color: #0d89ec; +} +.p-button:enabled:active { + background: #0b7ad1; + color: #ffffff; + border-color: #0b7ad1; +} +.p-button.p-button-outlined { + background-color: transparent; + color: #2196F3; + border: 1px solid; +} +.p-button.p-button-outlined:enabled:hover { + background: rgba(33, 150, 243, 0.04); + color: #2196F3; + border: 1px solid; +} +.p-button.p-button-outlined:enabled:active { + background: rgba(33, 150, 243, 0.16); + color: #2196F3; + border: 1px solid; +} +.p-button.p-button-outlined.p-button-plain { + color: #6c757d; + border-color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} +.p-button.p-button-text { + background-color: transparent; + color: #2196F3; + border-color: transparent; +} +.p-button.p-button-text:enabled:hover { + background: rgba(33, 150, 243, 0.04); + color: #2196F3; + border-color: transparent; +} +.p-button.p-button-text:enabled:active { + background: rgba(33, 150, 243, 0.16); + color: #2196F3; + border-color: transparent; +} +.p-button.p-button-text.p-button-plain { + color: #6c757d; +} +.p-button.p-button-text.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-text.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} +.p-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-button .p-button-icon-left { + margin-right: 0.5rem; +} +.p-button .p-button-icon-right { + margin-left: 0.5rem; +} +.p-button .p-button-icon-bottom { + margin-top: 0.5rem; +} +.p-button .p-button-icon-top { + margin-bottom: 0.5rem; +} +.p-button .p-badge { + margin-left: 0.5rem; + min-width: 1rem; + height: 1rem; + line-height: 1rem; + color: #2196F3; + background-color: #ffffff; +} +.p-button.p-button-raised { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +.p-button.p-button-rounded { + border-radius: 2rem; +} +.p-button.p-button-icon-only { + width: 2.357rem; + padding: 0.5rem 0; +} +.p-button.p-button-icon-only .p-button-icon-left, +.p-button.p-button-icon-only .p-button-icon-right { + margin: 0; +} +.p-button.p-button-icon-only.p-button-rounded { + border-radius: 50%; + height: 2.357rem; +} +.p-button.p-button-sm { + font-size: 0.875rem; + padding: 0.4375rem 0.875rem; +} +.p-button.p-button-sm .p-button-icon { + font-size: 0.875rem; +} +.p-button.p-button-lg { + font-size: 1.25rem; + padding: 0.625rem 1.25rem; +} +.p-button.p-button-lg .p-button-icon { + font-size: 1.25rem; +} +.p-button.p-button-loading-label-only .p-button-label { + margin-left: 0.5rem; +} +.p-button.p-button-loading-label-only .p-button-loading-icon { + margin-right: 0; +} + +.p-fluid .p-button { + width: 100%; +} +.p-fluid .p-button-icon-only { + width: 2.357rem; +} +.p-fluid .p-buttonset { + display: flex; +} +.p-fluid .p-buttonset .p-button { + flex: 1; +} + +.p-button.p-button-secondary, .p-buttonset.p-button-secondary > .p-button, .p-splitbutton.p-button-secondary > .p-button { + color: #ffffff; + background: #607D8B; + border: 1px solid #607D8B; +} +.p-button.p-button-secondary:enabled:hover, .p-buttonset.p-button-secondary > .p-button:enabled:hover, .p-splitbutton.p-button-secondary > .p-button:enabled:hover { + background: #56717d; + color: #ffffff; + border-color: #56717d; +} +.p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + box-shadow: 0 0 0 0.2rem #beccd2; +} +.p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + background: #4d646f; + color: #ffffff; + border-color: #4d646f; +} +.p-button.p-button-secondary.p-button-outlined, .p-buttonset.p-button-secondary > .p-button.p-button-outlined, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + background-color: transparent; + color: #607D8B; + border: 1px solid; +} +.p-button.p-button-secondary.p-button-outlined:enabled:hover, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:hover { + background: rgba(96, 125, 139, 0.04); + color: #607D8B; + border: 1px solid; +} +.p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + background: rgba(96, 125, 139, 0.16); + color: #607D8B; + border: 1px solid; +} +.p-button.p-button-secondary.p-button-text, .p-buttonset.p-button-secondary > .p-button.p-button-text, .p-splitbutton.p-button-secondary > .p-button.p-button-text { + background-color: transparent; + color: #607D8B; + border-color: transparent; +} +.p-button.p-button-secondary.p-button-text:enabled:hover, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:hover { + background: rgba(96, 125, 139, 0.04); + border-color: transparent; + color: #607D8B; +} +.p-button.p-button-secondary.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active { + background: rgba(96, 125, 139, 0.16); + border-color: transparent; + color: #607D8B; +} + +.p-button.p-button-info, .p-buttonset.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button { + color: #ffffff; + background: #0288D1; + border: 1px solid #0288D1; +} +.p-button.p-button-info:enabled:hover, .p-buttonset.p-button-info > .p-button:enabled:hover, .p-splitbutton.p-button-info > .p-button:enabled:hover { + background: #027abc; + color: #ffffff; + border-color: #027abc; +} +.p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + box-shadow: 0 0 0 0.2rem #89d4fe; +} +.p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + background: #026da7; + color: #ffffff; + border-color: #026da7; +} +.p-button.p-button-info.p-button-outlined, .p-buttonset.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined { + background-color: transparent; + color: #0288D1; + border: 1px solid; +} +.p-button.p-button-info.p-button-outlined:enabled:hover, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:hover { + background: rgba(2, 136, 209, 0.04); + color: #0288D1; + border: 1px solid; +} +.p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + background: rgba(2, 136, 209, 0.16); + color: #0288D1; + border: 1px solid; +} +.p-button.p-button-info.p-button-text, .p-buttonset.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text { + background-color: transparent; + color: #0288D1; + border-color: transparent; +} +.p-button.p-button-info.p-button-text:enabled:hover, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:hover { + background: rgba(2, 136, 209, 0.04); + border-color: transparent; + color: #0288D1; +} +.p-button.p-button-info.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active { + background: rgba(2, 136, 209, 0.16); + border-color: transparent; + color: #0288D1; +} + +.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button { + color: #ffffff; + background: #689F38; + border: 1px solid #689F38; +} +.p-button.p-button-success:enabled:hover, .p-buttonset.p-button-success > .p-button:enabled:hover, .p-splitbutton.p-button-success > .p-button:enabled:hover { + background: #5e8f32; + color: #ffffff; + border-color: #5e8f32; +} +.p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + box-shadow: 0 0 0 0.2rem #c2e0a8; +} +.p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + background: #537f2d; + color: #ffffff; + border-color: #537f2d; +} +.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined { + background-color: transparent; + color: #689F38; + border: 1px solid; +} +.p-button.p-button-success.p-button-outlined:enabled:hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:hover { + background: rgba(104, 159, 56, 0.04); + color: #689F38; + border: 1px solid; +} +.p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + background: rgba(104, 159, 56, 0.16); + color: #689F38; + border: 1px solid; +} +.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text { + background-color: transparent; + color: #689F38; + border-color: transparent; +} +.p-button.p-button-success.p-button-text:enabled:hover, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:hover { + background: rgba(104, 159, 56, 0.04); + border-color: transparent; + color: #689F38; +} +.p-button.p-button-success.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active { + background: rgba(104, 159, 56, 0.16); + border-color: transparent; + color: #689F38; +} + +.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button { + color: #212529; + background: #FBC02D; + border: 1px solid #FBC02D; +} +.p-button.p-button-warning:enabled:hover, .p-buttonset.p-button-warning > .p-button:enabled:hover, .p-splitbutton.p-button-warning > .p-button:enabled:hover { + background: #fab710; + color: #212529; + border-color: #fab710; +} +.p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + box-shadow: 0 0 0 0.2rem #fde6ab; +} +.p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + background: #e8a704; + color: #212529; + border-color: #e8a704; +} +.p-button.p-button-warning.p-button-outlined, .p-buttonset.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined { + background-color: transparent; + color: #FBC02D; + border: 1px solid; +} +.p-button.p-button-warning.p-button-outlined:enabled:hover, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:hover { + background: rgba(251, 192, 45, 0.04); + color: #FBC02D; + border: 1px solid; +} +.p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + background: rgba(251, 192, 45, 0.16); + color: #FBC02D; + border: 1px solid; +} +.p-button.p-button-warning.p-button-text, .p-buttonset.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text { + background-color: transparent; + color: #FBC02D; + border-color: transparent; +} +.p-button.p-button-warning.p-button-text:enabled:hover, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:hover { + background: rgba(251, 192, 45, 0.04); + border-color: transparent; + color: #FBC02D; +} +.p-button.p-button-warning.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active { + background: rgba(251, 192, 45, 0.16); + border-color: transparent; + color: #FBC02D; +} + +.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button { + color: #ffffff; + background: #9C27B0; + border: 1px solid #9C27B0; +} +.p-button.p-button-help:enabled:hover, .p-buttonset.p-button-help > .p-button:enabled:hover, .p-splitbutton.p-button-help > .p-button:enabled:hover { + background: #8c239e; + color: #ffffff; + border-color: #8c239e; +} +.p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + box-shadow: 0 0 0 0.2rem #df9eea; +} +.p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + background: #7d1f8d; + color: #ffffff; + border-color: #7d1f8d; +} +.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined { + background-color: transparent; + color: #9C27B0; + border: 1px solid; +} +.p-button.p-button-help.p-button-outlined:enabled:hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:hover { + background: rgba(156, 39, 176, 0.04); + color: #9C27B0; + border: 1px solid; +} +.p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + background: rgba(156, 39, 176, 0.16); + color: #9C27B0; + border: 1px solid; +} +.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text { + background-color: transparent; + color: #9C27B0; + border-color: transparent; +} +.p-button.p-button-help.p-button-text:enabled:hover, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:hover { + background: rgba(156, 39, 176, 0.04); + border-color: transparent; + color: #9C27B0; +} +.p-button.p-button-help.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active { + background: rgba(156, 39, 176, 0.16); + border-color: transparent; + color: #9C27B0; +} + +.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button { + color: #ffffff; + background: #D32F2F; + border: 1px solid #D32F2F; +} +.p-button.p-button-danger:enabled:hover, .p-buttonset.p-button-danger > .p-button:enabled:hover, .p-splitbutton.p-button-danger > .p-button:enabled:hover { + background: #c02929; + color: #ffffff; + border-color: #c02929; +} +.p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + box-shadow: 0 0 0 0.2rem #edacac; +} +.p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + background: #aa2424; + color: #ffffff; + border-color: #aa2424; +} +.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined { + background-color: transparent; + color: #D32F2F; + border: 1px solid; +} +.p-button.p-button-danger.p-button-outlined:enabled:hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:hover { + background: rgba(211, 47, 47, 0.04); + color: #D32F2F; + border: 1px solid; +} +.p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + background: rgba(211, 47, 47, 0.16); + color: #D32F2F; + border: 1px solid; +} +.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text { + background-color: transparent; + color: #D32F2F; + border-color: transparent; +} +.p-button.p-button-danger.p-button-text:enabled:hover, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:hover { + background: rgba(211, 47, 47, 0.04); + border-color: transparent; + color: #D32F2F; +} +.p-button.p-button-danger.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active { + background: rgba(211, 47, 47, 0.16); + border-color: transparent; + color: #D32F2F; +} + +.p-button.p-button-link { + color: #0b7ad1; + background: transparent; + border: transparent; +} +.p-button.p-button-link:enabled:hover { + background: transparent; + color: #0b7ad1; + border-color: transparent; +} +.p-button.p-button-link:enabled:hover .p-button-label { + text-decoration: underline; +} +.p-button.p-button-link:enabled:focus { + background: transparent; + box-shadow: 0 0 0 0.2rem #a6d5fa; + border-color: transparent; +} +.p-button.p-button-link:enabled:active { + background: transparent; + color: #0b7ad1; + border-color: transparent; +} + +.p-carousel .p-carousel-content .p-carousel-prev, +.p-carousel .p-carousel-content .p-carousel-next { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + margin: 0.5rem; +} +.p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, +.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-carousel .p-carousel-content .p-carousel-prev:focus, +.p-carousel .p-carousel-content .p-carousel-next:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-carousel .p-carousel-indicators { + padding: 1rem; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator { + margin-right: 0.5rem; + margin-bottom: 0.5rem; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator button { + background-color: #e9ecef; + width: 2rem; + height: 0.5rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 0; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator button:hover { + background: #dee2e6; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { + background: #E3F2FD; + color: #495057; +} + +.p-datatable .p-paginator-top { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-datatable .p-paginator-bottom { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-datatable .p-datatable-header { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 1px 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; +} +.p-datatable .p-datatable-footer { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; +} +.p-datatable .p-datatable-thead > tr > th { + text-align: left; + padding: 1rem 1rem; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + font-weight: 600; + color: #495057; + background: #f8f9fa; + transition: box-shadow 0.2s; +} +.p-datatable .p-datatable-tfoot > tr > td { + text-align: left; + padding: 1rem 1rem; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + font-weight: 600; + color: #495057; + background: #f8f9fa; +} +.p-datatable .p-sortable-column .p-sortable-column-icon { + color: #6c757d; + margin-left: 0.5rem; +} +.p-datatable .p-sortable-column .p-sortable-column-badge { + border-radius: 50%; + height: 1.143rem; + min-width: 1.143rem; + line-height: 1.143rem; + color: #495057; + background: #E3F2FD; + margin-left: 0.5rem; +} +.p-datatable .p-sortable-column:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} +.p-datatable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon { + color: #6c757d; +} +.p-datatable .p-sortable-column.p-highlight { + background: #f8f9fa; + color: #2196F3; +} +.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { + color: #2196F3; +} +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e9ecef; + color: #2196F3; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #2196F3; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem #a6d5fa; + outline: 0 none; +} +.p-datatable .p-datatable-tbody > tr { + background: #ffffff; + color: #495057; + transition: box-shadow 0.2s; + outline-color: #a6d5fa; +} +.p-datatable .p-datatable-tbody > tr > td { + text-align: left; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + padding: 1rem 1rem; +} +.p-datatable .p-datatable-tbody > tr > td .p-row-toggler, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save { + margin-right: 0.5rem; +} +.p-datatable .p-datatable-tbody > tr.p-highlight { + background: #E3F2FD; + color: #495057; +} +.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { + box-shadow: inset 0 2px 0 0 #E3F2FD; +} +.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { + box-shadow: inset 0 -2px 0 0 #E3F2FD; +} +.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} +.p-datatable .p-column-resizer-helper { + background: #2196F3; +} +.p-datatable .p-datatable-scrollable-header, +.p-datatable .p-datatable-scrollable-footer { + background: #f8f9fa; +} +.p-datatable .p-datatable-loading-icon { + font-size: 2rem; +} +.p-datatable.p-datatable-gridlines .p-datatable-header { + border-width: 1px 1px 0 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-footer { + border-width: 0 1px 1px 1px; +} +.p-datatable.p-datatable-gridlines .p-paginator-top { + border-width: 0 1px 0 1px; +} +.p-datatable.p-datatable-gridlines .p-paginator-bottom { + border-width: 0 1px 1px 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th { + border-width: 1px 1px 1px 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td { + border-width: 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td { + border-width: 1px; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even) { + background: #fcfcfc; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { + background: #E3F2FD; + color: #495057; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { + color: #495057; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { + color: #495057; +} +.p-datatable.p-datatable-sm .p-datatable-header { + padding: 0.5rem 0.5rem; +} +.p-datatable.p-datatable-sm .p-datatable-thead > tr > th { + padding: 0.5rem 0.5rem; +} +.p-datatable.p-datatable-sm .p-datatable-tbody > tr > td { + padding: 0.5rem 0.5rem; +} +.p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td { + padding: 0.5rem 0.5rem; +} +.p-datatable.p-datatable-sm .p-datatable-footer { + padding: 0.5rem 0.5rem; +} +.p-datatable.p-datatable-lg .p-datatable-header { + padding: 1.25rem 1.25rem; +} +.p-datatable.p-datatable-lg .p-datatable-thead > tr > th { + padding: 1.25rem 1.25rem; +} +.p-datatable.p-datatable-lg .p-datatable-tbody > tr > td { + padding: 1.25rem 1.25rem; +} +.p-datatable.p-datatable-lg .p-datatable-tfoot > tr > td { + padding: 1.25rem 1.25rem; +} +.p-datatable.p-datatable-lg .p-datatable-footer { + padding: 1.25rem 1.25rem; +} + +.p-dataview .p-paginator-top { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-dataview .p-paginator-bottom { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-dataview .p-dataview-header { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 1px 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; +} +.p-dataview .p-dataview-content { + background: #ffffff; + color: #495057; + border: 0 none; + padding: 0; +} +.p-dataview.p-dataview-list .p-dataview-content > .p-grid > div { + border: solid #e9ecef; + border-width: 0 0 1px 0; +} +.p-dataview .p-dataview-footer { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; +} +.p-dataview .p-dataview-loading-icon { + font-size: 2rem; +} +.p-dataview .p-dataview-emptymessage { + padding: 1rem; +} + +.p-column-filter-row .p-column-filter-menu-button, +.p-column-filter-row .p-column-filter-clear-button { + margin-left: 0.5rem; +} + +.p-column-filter-menu-button { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-column-filter-menu-button:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-column-filter-menu-button.p-column-filter-menu-button-open, .p-column-filter-menu-button.p-column-filter-menu-button-open:hover { + background: #e9ecef; + color: #495057; +} +.p-column-filter-menu-button.p-column-filter-menu-button-active, .p-column-filter-menu-button.p-column-filter-menu-button-active:hover { + background: #E3F2FD; + color: #495057; +} +.p-column-filter-menu-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +.p-column-filter-clear-button { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-column-filter-clear-button:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-column-filter-clear-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +.p-column-filter-overlay { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + min-width: 12.5rem; +} +.p-column-filter-overlay .p-column-filter-row-items { + padding: 0.5rem 0; +} +.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item { + margin: 0; + padding: 0.5rem 1rem; + border: 0 none; + color: #495057; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover { + color: #495057; + background: #e9ecef; +} +.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; +} + +.p-column-filter-overlay-menu .p-column-filter-operator { + padding: 0.5rem 1rem; + border-bottom: 0 none; + color: #495057; + background: #f8f9fa; + margin: 0; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-column-filter-overlay-menu .p-column-filter-constraint { + padding: 1rem; + border-bottom: 1px solid #dee2e6; +} +.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown { + margin-bottom: 0.5rem; +} +.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-remove-button { + margin-top: 0.5rem; +} +.p-column-filter-overlay-menu .p-column-filter-constraint:last-child { + border-bottom: 0 none; +} +.p-column-filter-overlay-menu .p-column-filter-add-rule { + padding: 0.5rem 1rem; +} +.p-column-filter-overlay-menu .p-column-filter-buttonbar { + padding: 1rem; +} + +.fc .fc-view-container th { + background: #f8f9fa; + border: 1px solid #dee2e6; + color: #495057; +} +.fc .fc-view-container td.fc-widget-content { + background: #ffffff; + border: 1px solid #dee2e6; + color: #495057; +} +.fc .fc-view-container td.fc-head-container { + border: 1px solid #dee2e6; +} +.fc .fc-view-container .fc-row { + border-right: 1px solid #dee2e6; +} +.fc .fc-view-container .fc-event { + background: #0d89ec; + border: 1px solid #0d89ec; + color: #ffffff; +} +.fc .fc-view-container .fc-divider { + background: #f8f9fa; + border: 1px solid #dee2e6; +} +.fc .fc-toolbar .fc-button { + color: #ffffff; + background: #2196F3; + border: 1px solid #2196F3; + font-size: 1rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 3px; + display: flex; + align-items: center; +} +.fc .fc-toolbar .fc-button:enabled:hover { + background: #0d89ec; + color: #ffffff; + border-color: #0d89ec; +} +.fc .fc-toolbar .fc-button:enabled:active { + background: #0b7ad1; + color: #ffffff; + border-color: #0b7ad1; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-left { + font-family: "PrimeIcons" !important; + text-indent: 0; + font-size: 1rem; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-left:before { + content: ""; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-right { + font-family: "PrimeIcons" !important; + text-indent: 0; + font-size: 1rem; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-right:before { + content: ""; +} +.fc .fc-toolbar .fc-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button, .fc .fc-toolbar .fc-button.fc-timeGridDay-button { + background: #ffffff; + border: 1px solid #ced4da; + color: #495057; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button:hover, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button:hover, .fc .fc-toolbar .fc-button.fc-timeGridDay-button:hover { + background: #e9ecef; + border-color: #ced4da; + color: #495057; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active, .fc .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active { + background: #2196F3; + border-color: #2196F3; + color: #ffffff; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active:hover, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active:hover, .fc .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active:hover { + background: #0d89ec; + border-color: #0d89ec; + color: #ffffff; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button:focus, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button:focus, .fc .fc-toolbar .fc-button.fc-timeGridDay-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + z-index: 1; +} +.fc .fc-toolbar .fc-button-group .fc-button { + border-radius: 0; +} +.fc .fc-toolbar .fc-button-group .fc-button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.fc .fc-toolbar .fc-button-group .fc-button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.p-orderlist .p-orderlist-controls { + padding: 1rem; +} +.p-orderlist .p-orderlist-controls .p-button { + margin-bottom: 0.5rem; +} +.p-orderlist .p-orderlist-header { + background: #f8f9fa; + color: #495057; + border: 1px solid #dee2e6; + padding: 1rem; + border-bottom: 0 none; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-orderlist .p-orderlist-header .p-orderlist-title { + font-weight: 600; +} +.p-orderlist .p-orderlist-filter-container { + padding: 1rem; + background: #ffffff; + border: 1px solid #dee2e6; + border-bottom: 0 none; +} +.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-input { + padding-right: 1.5rem; +} +.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-icon { + right: 0.5rem; + color: #6c757d; +} +.p-orderlist .p-orderlist-list { + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + padding: 0.5rem 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-orderlist .p-orderlist-list .p-orderlist-item { + padding: 0.5rem 1rem; + margin: 0; + border: 0 none; + color: #495057; + background: transparent; + transition: box-shadow 0.2s; +} +.p-orderlist .p-orderlist-list .p-orderlist-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-orderlist .p-orderlist-list .p-orderlist-empty-message { + padding: 0.5rem 1rem; + color: #495057; +} +.p-orderlist .p-orderlist-list:not(.cdk-drop-list-dragging) .p-orderlist-item:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} + +.p-orderlist-item.cdk-drag-preview { + padding: 0.5rem 1rem; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + border: 0 none; + color: #495057; + background: #ffffff; + margin: 0; +} + +.p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} +.p-organizationchart .p-organizationchart-node-content.p-highlight { + background: #E3F2FD; + color: #495057; +} +.p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { + color: #6cbbf5; +} +.p-organizationchart .p-organizationchart-line-down { + background: #dee2e6; +} +.p-organizationchart .p-organizationchart-line-left { + border-right: 1px solid #dee2e6; + border-color: #dee2e6; +} +.p-organizationchart .p-organizationchart-line-top { + border-top: 1px solid #dee2e6; + border-color: #dee2e6; +} +.p-organizationchart .p-organizationchart-node-content { + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + padding: 1rem; +} +.p-organizationchart .p-organizationchart-node-content .p-node-toggler { + background: inherit; + color: inherit; + border-radius: 50%; +} +.p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +.p-paginator { + background: #ffffff; + color: #6c757d; + border: solid #e9ecef; + border-width: 0; + padding: 0.5rem 1rem; + border-radius: 3px; +} +.p-paginator .p-paginator-first, +.p-paginator .p-paginator-prev, +.p-paginator .p-paginator-next, +.p-paginator .p-paginator-last { + background-color: transparent; + border: 0 none; + color: #6c757d; + min-width: 2.357rem; + height: 2.357rem; + margin: 0.143rem; + transition: box-shadow 0.2s; + border-radius: 3px; +} +.p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, +.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, +.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, +.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + background: #e9ecef; + border-color: transparent; + color: #495057; +} +.p-paginator .p-paginator-first { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-paginator .p-paginator-last { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +.p-paginator .p-dropdown { + margin-left: 0.5rem; + margin-right: 0.5rem; + height: 2.357rem; +} +.p-paginator .p-dropdown .p-dropdown-label { + padding-right: 0; +} +.p-paginator .p-paginator-current { + background-color: transparent; + border: 0 none; + color: #6c757d; + min-width: 2.357rem; + height: 2.357rem; + margin: 0.143rem; + padding: 0 0.5rem; +} +.p-paginator .p-paginator-pages .p-paginator-page { + background-color: transparent; + border: 0 none; + color: #6c757d; + min-width: 2.357rem; + height: 2.357rem; + margin: 0.143rem; + transition: box-shadow 0.2s; + border-radius: 3px; +} +.p-paginator .p-paginator-pages .p-paginator-page.p-highlight { + background: #E3F2FD; + border-color: #E3F2FD; + color: #495057; +} +.p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { + background: #e9ecef; + border-color: transparent; + color: #495057; +} + +.p-picklist .p-picklist-buttons { + padding: 1rem; +} +.p-picklist .p-picklist-buttons .p-button { + margin-bottom: 0.5rem; +} +.p-picklist .p-picklist-header { + background: #f8f9fa; + color: #495057; + border: 1px solid #dee2e6; + padding: 1rem; + border-bottom: 0 none; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-picklist .p-picklist-header .p-picklist-title { + font-weight: 600; +} +.p-picklist .p-picklist-filter-container { + padding: 1rem; + background: #ffffff; + border: 1px solid #dee2e6; + border-bottom: 0 none; +} +.p-picklist .p-picklist-filter-container .p-picklist-filter-input { + padding-right: 1.5rem; +} +.p-picklist .p-picklist-filter-container .p-picklist-filter-icon { + right: 0.5rem; + color: #6c757d; +} +.p-picklist .p-picklist-list { + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + padding: 0.5rem 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-picklist .p-picklist-list .p-picklist-item { + padding: 0.5rem 1rem; + margin: 0; + border: 0 none; + color: #495057; + background: transparent; + transition: box-shadow 0.2s; +} +.p-picklist .p-picklist-list .p-picklist-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-picklist .p-picklist-list .p-picklist-item.p-highlight { + color: #495057; + background: #E3F2FD; +} +.p-picklist .p-picklist-list .p-picklist-empty-message { + padding: 0.5rem 1rem; + color: #495057; +} +.p-picklist .p-picklist-list:not(.cdk-drop-list-dragging) .p-picklist-item:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} + +.p-picklist-item.cdk-drag-preview { + padding: 0.5rem 1rem; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + border: 0 none; + color: #495057; + background: #ffffff; + margin: 0; +} + +.p-timeline .p-timeline-event-marker { + border: 2px solid #2196F3; + border-radius: 50%; + width: 1rem; + height: 1rem; + background-color: #ffffff; +} +.p-timeline .p-timeline-event-connector { + background-color: #dee2e6; +} +.p-timeline.p-timeline-vertical .p-timeline-event-opposite, +.p-timeline.p-timeline-vertical .p-timeline-event-content { + padding: 0 1rem; +} +.p-timeline.p-timeline-vertical .p-timeline-event-connector { + width: 2px; +} +.p-timeline.p-timeline-horizontal .p-timeline-event-opposite, +.p-timeline.p-timeline-horizontal .p-timeline-event-content { + padding: 1rem 0; +} +.p-timeline.p-timeline-horizontal .p-timeline-event-connector { + height: 2px; +} + +.p-tree { + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + padding: 1rem; + border-radius: 3px; +} +.p-tree .p-tree-container .p-treenode { + padding: 0.143rem; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content { + border-radius: 3px; + transition: box-shadow 0.2s; + padding: 0; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler { + margin-right: 0.5rem; + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon { + margin-right: 0.5rem; + color: #6c757d; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox { + margin-right: 0.5rem; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox .p-indeterminate .p-checkbox-icon { + color: #495057; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { + background: #E3F2FD; + color: #495057; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + color: #495057; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + color: #495057; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover { + background: #e9ecef; + color: #495057; +} +.p-tree .p-tree-filter-container { + margin-bottom: 0.5rem; +} +.p-tree .p-tree-filter-container .p-tree-filter { + width: 100%; + padding-right: 1.5rem; +} +.p-tree .p-tree-filter-container .p-tree-filter-icon { + right: 0.5rem; + color: #6c757d; +} +.p-tree .p-treenode-children { + padding: 0 0 0 1rem; +} +.p-tree .p-tree-loading-icon { + font-size: 2rem; +} +.p-tree .p-treenode-droppoint.p-treenode-droppoint-active { + background-color: #89c8f7; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content { + border-radius: 3px; + border: 1px solid #dee2e6; + background-color: #ffffff; + color: #495057; + padding: 0; + transition: box-shadow 0.2s; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-highlight { + background-color: #E3F2FD; + color: #495057; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + color: #495057; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-tree-toggler { + margin-right: 0.5rem; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-treenode-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-checkbox { + margin-right: 0.5rem; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-treenode-label:not(.p-highlight):hover { + background-color: inherit; + color: inherit; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} +.p-tree.p-tree-horizontal .p-treenode .p-treenode-content:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +.p-treetable .p-paginator-top { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-treetable .p-paginator-bottom { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-treetable .p-treetable-header { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 1px 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; +} +.p-treetable .p-treetable-footer { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; +} +.p-treetable .p-treetable-thead > tr > th { + text-align: left; + padding: 1rem 1rem; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + font-weight: 600; + color: #495057; + background: #f8f9fa; + transition: box-shadow 0.2s; +} +.p-treetable .p-treetable-tfoot > tr > td { + text-align: left; + padding: 1rem 1rem; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + font-weight: 600; + color: #495057; + background: #f8f9fa; +} +.p-treetable .p-sortable-column { + outline-color: #a6d5fa; +} +.p-treetable .p-sortable-column .p-sortable-column-icon { + color: #6c757d; + margin-left: 0.5rem; +} +.p-treetable .p-sortable-column .p-sortable-column-badge { + border-radius: 50%; + height: 1.143rem; + min-width: 1.143rem; + line-height: 1.143rem; + color: #495057; + background: #E3F2FD; + margin-left: 0.5rem; +} +.p-treetable .p-sortable-column:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} +.p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon { + color: #6c757d; +} +.p-treetable .p-sortable-column.p-highlight { + background: #f8f9fa; + color: #2196F3; +} +.p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon { + color: #2196F3; +} +.p-treetable .p-treetable-tbody > tr { + background: #ffffff; + color: #495057; + transition: box-shadow 0.2s; + outline-color: #a6d5fa; +} +.p-treetable .p-treetable-tbody > tr > td { + text-align: left; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + padding: 1rem 1rem; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + margin-right: 0.5rem; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-treetable .p-treetable-tbody > tr > td p-treetablecheckbox .p-checkbox { + margin-right: 0.5rem; +} +.p-treetable .p-treetable-tbody > tr > td p-treetablecheckbox .p-checkbox .p-indeterminate .p-checkbox-icon { + color: #495057; +} +.p-treetable .p-treetable-tbody > tr.p-highlight { + background: #E3F2FD; + color: #495057; +} +.p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { + color: #495057; +} +.p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { + color: #495057; +} +.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { + background: #e9ecef; + color: #495057; +} +.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler { + color: #495057; +} +.p-treetable .p-column-resizer-helper { + background: #2196F3; +} +.p-treetable .p-treetable-scrollable-header, +.p-treetable .p-treetable-scrollable-footer { + background: #f8f9fa; +} +.p-treetable .p-treetable-loading-icon { + font-size: 2rem; +} +.p-treetable.p-treetable-gridlines .p-datatable-header { + border-width: 1px 1px 0 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-footer { + border-width: 0 1px 1px 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-top { + border-width: 0 1px 0 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-bottom { + border-width: 0 1px 1px 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-thead > tr > th { + border-width: 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-tbody > tr > td { + border-width: 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-tfoot > tr > td { + border-width: 1px; +} +.p-treetable.p-treetable-sm .p-treetable-header { + padding: 0.875rem 0.875rem; +} +.p-treetable.p-treetable-sm .p-treetable-thead > tr > th { + padding: 0.5rem 0.5rem; +} +.p-treetable.p-treetable-sm .p-treetable-tbody > tr > td { + padding: 0.5rem 0.5rem; +} +.p-treetable.p-treetable-sm .p-treetable-tfoot > tr > td { + padding: 0.5rem 0.5rem; +} +.p-treetable.p-treetable-sm .p-treetable-footer { + padding: 0.5rem 0.5rem; +} +.p-treetable.p-treetable-lg .p-treetable-header { + padding: 1.25rem 1.25rem; +} +.p-treetable.p-treetable-lg .p-treetable-thead > tr > th { + padding: 1.25rem 1.25rem; +} +.p-treetable.p-treetable-lg .p-treetable-tbody > tr > td { + padding: 1.25rem 1.25rem; +} +.p-treetable.p-treetable-lg .p-treetable-tfoot > tr > td { + padding: 1.25rem 1.25rem; +} +.p-treetable.p-treetable-lg .p-treetable-footer { + padding: 1.25rem 1.25rem; +} + +.p-virtualscroller .p-virtualscroller-header { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 1px 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; +} +.p-virtualscroller .p-virtualscroller-content { + background: #ffffff; + color: #495057; + border: 0 none; + padding: 0; +} +.p-virtualscroller .p-virtualscroller-footer { + background: #f8f9fa; + color: #495057; + border: 1px solid #e9ecef; + border-width: 0 0 1px 0; + padding: 1rem 1rem; + font-weight: 600; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; +} + +.p-accordion .p-accordion-header .p-accordion-header-link { + padding: 1rem; + border: 1px solid #dee2e6; + color: #495057; + background: #f8f9fa; + font-weight: 600; + border-radius: 3px; + transition: box-shadow 0.2s; +} +.p-accordion .p-accordion-header .p-accordion-header-link .p-accordion-toggle-icon { + margin-right: 0.5rem; +} +.p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link { + background: #e9ecef; + border-color: #dee2e6; + color: #495057; +} +.p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link { + background: #f8f9fa; + border-color: #dee2e6; + color: #495057; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { + border-color: #dee2e6; + background: #e9ecef; + color: #495057; +} +.p-accordion .p-accordion-content { + padding: 1rem; + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + border-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-accordion p-accordiontab .p-accordion-tab { + margin-bottom: 0; +} +.p-accordion p-accordiontab .p-accordion-header .p-accordion-header-link { + border-radius: 0; +} +.p-accordion p-accordiontab .p-accordion-content { + border-radius: 0; +} +.p-accordion p-accordiontab:not(:first-child) .p-accordion-header .p-accordion-header-link { + border-top: 0 none; +} +.p-accordion p-accordiontab:not(:first-child) .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link, .p-accordion p-accordiontab:not(:first-child) .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { + border-top: 0 none; +} +.p-accordion p-accordiontab:first-child .p-accordion-header .p-accordion-header-link { + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-accordion p-accordiontab:last-child .p-accordion-header:not(.p-highlight) .p-accordion-header-link { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-accordion p-accordiontab:last-child .p-accordion-content { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} + +.p-card { + background: #ffffff; + color: #495057; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + border-radius: 3px; +} +.p-card .p-card-body { + padding: 1rem; +} +.p-card .p-card-title { + font-size: 1.5rem; + font-weight: 700; + margin-bottom: 0.5rem; +} +.p-card .p-card-subtitle { + font-weight: 400; + margin-bottom: 0.5rem; + color: #6c757d; +} +.p-card .p-card-content { + padding: 1rem 0; +} +.p-card .p-card-footer { + padding: 1rem 0 0 0; +} + +.p-divider .p-divider-content { + background-color: #ffffff; +} +.p-divider.p-divider-horizontal { + margin: 1rem 0; + padding: 0 1rem; +} +.p-divider.p-divider-horizontal:before { + border-top: 1px #dee2e6; +} +.p-divider.p-divider-horizontal .p-divider-content { + padding: 0 0.5rem; +} +.p-divider.p-divider-vertical { + margin: 0 1rem; + padding: 1rem 0; +} +.p-divider.p-divider-vertical:before { + border-left: 1px #dee2e6; +} +.p-divider.p-divider-vertical .p-divider-content { + padding: 0.5rem 0; +} + +.p-fieldset { + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + border-radius: 3px; +} +.p-fieldset .p-fieldset-legend { + padding: 1rem; + border: 1px solid #dee2e6; + color: #495057; + background: #f8f9fa; + font-weight: 600; + border-radius: 3px; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend { + padding: 0; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a { + padding: 1rem; + color: #495057; + border-radius: 3px; + transition: box-shadow 0.2s; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a .p-fieldset-toggler { + margin-right: 0.5rem; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover { + background: #e9ecef; + border-color: #dee2e6; + color: #495057; +} +.p-fieldset .p-fieldset-content { + padding: 1rem; +} + +.p-panel .p-panel-header { + border: 1px solid #dee2e6; + padding: 1rem; + background: #f8f9fa; + color: #495057; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-panel .p-panel-header .p-panel-title { + font-weight: 600; +} +.p-panel .p-panel-header .p-panel-header-icon { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-panel .p-panel-header .p-panel-header-icon:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-panel .p-panel-header .p-panel-header-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-panel.p-panel-toggleable .p-panel-header { + padding: 0.5rem 1rem; +} +.p-panel .p-panel-content { + padding: 1rem; + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; + border-top: 0 none; +} +.p-panel .p-panel-footer { + padding: 0.5rem 1rem; + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + border-top: 0 none; +} + +.p-scrollpanel .p-scrollpanel-bar { + background: #f8f9fa; + border: 0 none; +} + +.p-splitter { + border: 1px solid #dee2e6; + background: #ffffff; + border-radius: 3px; + color: #495057; +} +.p-splitter .p-splitter-gutter { + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + background: #f8f9fa; +} +.p-splitter .p-splitter-gutter .p-splitter-gutter-handle { + background: #dee2e6; +} +.p-splitter .p-splitter-gutter-resizing { + background: #dee2e6; +} + +.p-tabview .p-tabview-nav { + background: #ffffff; + border: 1px solid #dee2e6; + border-width: 0 0 2px 0; +} +.p-tabview .p-tabview-nav li { + margin-right: 0; +} +.p-tabview .p-tabview-nav li .p-tabview-nav-link { + border: solid #dee2e6; + border-width: 0 0 2px 0; + border-color: transparent transparent #dee2e6 transparent; + background: #ffffff; + color: #6c757d; + padding: 1rem; + font-weight: 600; + border-top-right-radius: 3px; + border-top-left-radius: 3px; + transition: box-shadow 0.2s; + margin: 0 0 -2px 0; +} +.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link { + background: #ffffff; + border-color: #6c757d; + color: #6c757d; +} +.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link { + background: #ffffff; + border-color: #2196F3; + color: #2196F3; +} +.p-tabview .p-tabview-left-icon { + margin-right: 0.5rem; +} +.p-tabview .p-tabview-right-icon { + margin-left: 0.5rem; +} +.p-tabview .p-tabview-close { + margin-left: 0.5rem; +} +.p-tabview .p-tabview-panels { + background: #ffffff; + padding: 1rem; + border: 0 none; + color: #495057; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} + +.p-toolbar { + background: #f8f9fa; + border: 1px solid #dee2e6; + padding: 1rem; + border-radius: 3px; +} +.p-toolbar .p-toolbar-separator { + margin: 0 0.5rem; +} + +.p-confirm-popup { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); +} +.p-confirm-popup .p-confirm-popup-content { + padding: 1rem; +} +.p-confirm-popup .p-confirm-popup-footer { + text-align: right; + padding: 0.5rem 1rem; +} +.p-confirm-popup .p-confirm-popup-footer button { + margin: 0 0.5rem 0 0; + width: auto; +} +.p-confirm-popup .p-confirm-popup-footer button:last-child { + margin: 0; +} +.p-confirm-popup:after { + border: solid transparent; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; +} +.p-confirm-popup:before { + border: solid transparent; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; +} +.p-confirm-popup.p-confirm-popup-flipped:after { + border-top-color: #ffffff; +} +.p-confirm-popup.p-confirm-popup-flipped:before { + border-top-color: #ffffff; +} +.p-confirm-popup .p-confirm-popup-icon { + font-size: 1.5rem; +} +.p-confirm-popup .p-confirm-popup-message { + margin-left: 1rem; +} + +.p-dialog { + border-radius: 3px; + box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); + border: 0 none; +} +.p-dialog .p-dialog-header { + border-bottom: 0 none; + background: #ffffff; + color: #495057; + padding: 1.5rem; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-dialog .p-dialog-header .p-dialog-title { + font-weight: 600; + font-size: 1.25rem; +} +.p-dialog .p-dialog-header .p-dialog-header-icon { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + margin-right: 0.5rem; +} +.p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-dialog .p-dialog-header .p-dialog-header-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-dialog .p-dialog-header .p-dialog-header-icon:last-child { + margin-right: 0; +} +.p-dialog .p-dialog-content { + background: #ffffff; + color: #495057; + padding: 0 1.5rem 2rem 1.5rem; +} +.p-dialog .p-dialog-footer { + border-top: 0 none; + background: #ffffff; + color: #495057; + padding: 0 1.5rem 1.5rem 1.5rem; + text-align: right; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-dialog .p-dialog-footer button { + margin: 0 0.5rem 0 0; + width: auto; +} +.p-dialog.p-confirm-dialog .p-confirm-dialog-icon { + font-size: 2rem; +} +.p-dialog.p-confirm-dialog .p-confirm-dialog-message { + margin-left: 1rem; +} + +.p-dialog-mask.p-component-overlay { + background-color: rgba(0, 0, 0, 0.4); +} + +.p-overlaypanel { + background: #ffffff; + color: #495057; + border: 0 none; + border-radius: 3px; + box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); +} +.p-overlaypanel .p-overlaypanel-content { + padding: 1rem; +} +.p-overlaypanel .p-overlaypanel-close { + background: #2196F3; + color: #ffffff; + width: 2rem; + height: 2rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 50%; + position: absolute; + top: -1rem; + right: -1rem; +} +.p-overlaypanel .p-overlaypanel-close:enabled:hover { + background: #0d89ec; + color: #ffffff; +} +.p-overlaypanel:after { + border: solid transparent; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; +} +.p-overlaypanel:before { + border: solid transparent; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; +} +.p-overlaypanel.p-overlaypanel-flipped:after { + border-top-color: #ffffff; +} +.p-overlaypanel.p-overlaypanel-flipped:before { + border-top-color: #ffffff; +} + +.p-sidebar { + background: #ffffff; + color: #495057; + border: 0 none; + box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); +} +.p-sidebar .p-sidebar-header { + padding: 1rem; +} +.p-sidebar .p-sidebar-header .p-sidebar-close, +.p-sidebar .p-sidebar-header .p-sidebar-icon { + width: 2rem; + height: 2rem; + color: #6c757d; + border: 0 none; + background: transparent; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, +.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + color: #495057; + border-color: transparent; + background: #e9ecef; +} +.p-sidebar .p-sidebar-header .p-sidebar-close:focus, +.p-sidebar .p-sidebar-header .p-sidebar-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-sidebar .p-sidebar-header + .p-sidebar-content { + padding-top: 0; +} +.p-sidebar .p-sidebar-content { + padding: 1rem; +} + +.p-sidebar-mask.p-component-overlay { + background: rgba(0, 0, 0, 0.4); +} + +.p-tooltip .p-tooltip-text { + background: #495057; + color: #ffffff; + padding: 0.5rem 0.5rem; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + border-radius: 3px; +} +.p-tooltip.p-tooltip-right .p-tooltip-arrow { + border-right-color: #495057; +} +.p-tooltip.p-tooltip-left .p-tooltip-arrow { + border-left-color: #495057; +} +.p-tooltip.p-tooltip-top .p-tooltip-arrow { + border-top-color: #495057; +} +.p-tooltip.p-tooltip-bottom .p-tooltip-arrow { + border-bottom-color: #495057; +} + +.p-fileupload .p-fileupload-buttonbar { + background: #f8f9fa; + padding: 1rem; + border: 1px solid #dee2e6; + color: #495057; + border-bottom: 0 none; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-fileupload .p-fileupload-buttonbar .p-button { + margin-right: 0.5rem; +} +.p-fileupload .p-fileupload-buttonbar .p-button.p-fileupload-choose.p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-fileupload .p-fileupload-content { + background: #ffffff; + padding: 2rem 1rem; + border: 1px solid #dee2e6; + color: #495057; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-fileupload .p-progressbar { + height: 0.25rem; +} +.p-fileupload .p-fileupload-row > div { + padding: 1rem 1rem; +} +.p-fileupload.p-fileupload-advanced .p-message { + margin-top: 0; +} + +.p-fileupload-choose:not(.p-disabled):hover { + background: #0d89ec; + color: #ffffff; + border-color: #0d89ec; +} +.p-fileupload-choose:not(.p-disabled):active { + background: #0b7ad1; + color: #ffffff; + border-color: #0b7ad1; +} + +.p-breadcrumb { + background: #ffffff; + border: 1px solid #dee2e6; + border-radius: 3px; + padding: 1rem; +} +.p-breadcrumb ul li .p-menuitem-link { + transition: box-shadow 0.2s; + border-radius: 3px; +} +.p-breadcrumb ul li .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-breadcrumb ul li .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-breadcrumb ul li .p-menuitem-link .p-menuitem-icon { + color: #6c757d; +} +.p-breadcrumb ul li.p-breadcrumb-chevron { + margin: 0 0.5rem 0 0.5rem; + color: #495057; +} +.p-breadcrumb ul li:last-child .p-menuitem-text { + color: #495057; +} +.p-breadcrumb ul li:last-child .p-menuitem-icon { + color: #6c757d; +} + +.p-contextmenu { + padding: 0.25rem 0; + background: #ffffff; + color: #495057; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + width: 12.5rem; +} +.p-contextmenu .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-contextmenu .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-contextmenu .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-contextmenu .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-contextmenu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-contextmenu .p-submenu-list { + padding: 0.25rem 0; + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-contextmenu .p-menuitem { + margin: 0; +} +.p-contextmenu .p-menuitem:last-child { + margin: 0; +} +.p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #e9ecef; +} +.p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-contextmenu .p-menu-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; +} +.p-contextmenu .p-submenu-icon { + font-size: 0.875rem; +} + +.p-megamenu { + padding: 0.5rem; + background: #f8f9fa; + color: #495057; + border: 1px solid #dee2e6; + border-radius: 3px; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 3px; + transition: box-shadow 0.2s; + user-select: none; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon { + color: #6c757d; + margin-left: 0.5rem; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-megamenu .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-megamenu .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-megamenu .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-megamenu .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-megamenu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-megamenu .p-megamenu-panel { + background: #ffffff; + color: #495057; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-megamenu .p-megamenu-submenu-header { + margin: 0; + padding: 0.75rem 1rem; + color: #495057; + background: #ffffff; + font-weight: 600; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-megamenu .p-megamenu-submenu { + padding: 0.25rem 0; + width: 12.5rem; +} +.p-megamenu .p-megamenu-submenu .p-menu-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; +} +.p-megamenu .p-megamenu-submenu .p-menuitem { + margin: 0; +} +.p-megamenu .p-megamenu-submenu .p-menuitem:last-child { + margin: 0; +} +.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #e9ecef; +} +.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-megamenu.p-megamenu-vertical { + width: 12.5rem; + padding: 0.25rem 0; +} +.p-megamenu.p-megamenu-vertical .p-menuitem { + margin: 0; +} +.p-megamenu.p-megamenu-vertical .p-menuitem:last-child { + margin: 0; +} + +.p-menu { + padding: 0.25rem 0; + background: #ffffff; + color: #495057; + border: 1px solid #dee2e6; + border-radius: 3px; + width: 12.5rem; +} +.p-menu .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-menu .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-menu .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-menu .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-menu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-menu.p-menu-overlay { + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-menu .p-submenu-header { + margin: 0; + padding: 0.75rem 1rem; + color: #495057; + background: #ffffff; + font-weight: 600; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.p-menu .p-menu-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; +} +.p-menu .p-menuitem { + margin: 0; +} +.p-menu .p-menuitem:last-child { + margin: 0; +} + +.p-menubar { + padding: 0.5rem; + background: #f8f9fa; + color: #495057; + border: 1px solid #dee2e6; + border-radius: 3px; +} +.p-menubar .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-menubar .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-menubar .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-menubar .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-menubar .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 3px; + transition: box-shadow 0.2s; + user-select: none; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon { + color: #6c757d; + margin-left: 0.5rem; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-menubar .p-submenu-list { + padding: 0.25rem 0; + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + width: 12.5rem; +} +.p-menubar .p-submenu-list .p-menu-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; +} +.p-menubar .p-submenu-list .p-submenu-icon { + font-size: 0.875rem; +} +.p-menubar .p-submenu-list .p-menuitem { + margin: 0; +} +.p-menubar .p-submenu-list .p-menuitem:last-child { + margin: 0; +} +.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #e9ecef; +} +.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} + +@media screen and (max-width: 960px) { + .p-menubar { + position: relative; + } + .p-menubar .p-menubar-button { + display: flex; + width: 2rem; + height: 2rem; + color: #6c757d; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + } + .p-menubar .p-menubar-button:hover { + color: #6c757d; + background: #e9ecef; + } + .p-menubar .p-menubar-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; + } + .p-menubar .p-menubar-root-list { + position: absolute; + display: none; + padding: 0.25rem 0; + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + width: 100%; + } + .p-menubar .p-menubar-root-list .p-menu-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; + } + .p-menubar .p-menubar-root-list .p-submenu-icon { + font-size: 0.875rem; + } + .p-menubar .p-menubar-root-list > .p-menuitem { + width: 100%; + position: static; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text { + color: #495057; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon { + color: #6c757d; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon { + margin-left: auto; + transition: transform 0.2s; + } + .p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon { + transform: rotate(-180deg); + } + .p-menubar .p-menubar-root-list .p-submenu-list { + width: 100%; + position: static; + box-shadow: none; + border: 0 none; + } + .p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon { + transition: transform 0.2s; + transform: rotate(90deg); + } + .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon { + transform: rotate(-90deg); + } + .p-menubar .p-menubar-root-list .p-menuitem { + width: 100%; + position: static; + } + .p-menubar .p-menubar-root-list ul li a { + padding-left: 2.25rem; + } + .p-menubar .p-menubar-root-list ul li ul li a { + padding-left: 3.75rem; + } + .p-menubar .p-menubar-root-list ul li ul li ul li a { + padding-left: 5.25rem; + } + .p-menubar .p-menubar-root-list ul li ul li ul li ul li a { + padding-left: 6.75rem; + } + .p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a { + padding-left: 8.25rem; + } + .p-menubar.p-menubar-mobile-active .p-menubar-root-list { + display: flex; + flex-direction: column; + top: 100%; + left: 0; + z-index: 1; + } +} +.p-panelmenu .p-panelmenu-header > a { + padding: 1rem; + border: 1px solid #dee2e6; + color: #495057; + background: #f8f9fa; + font-weight: 600; + border-radius: 3px; + transition: box-shadow 0.2s; +} +.p-panelmenu .p-panelmenu-header > a .p-panelmenu-icon { + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-header > a .p-menuitem-icon { + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-header > a:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled) > a:hover { + background: #e9ecef; + border-color: #dee2e6; + color: #495057; +} +.p-panelmenu .p-panelmenu-header.p-highlight { + margin-bottom: 0; +} +.p-panelmenu .p-panelmenu-header.p-highlight > a { + background: #f8f9fa; + border-color: #dee2e6; + color: #495057; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.p-panelmenu .p-panelmenu-header.p-highlight:not(.p-disabled) > a:hover { + border-color: #dee2e6; + background: #e9ecef; + color: #495057; +} +.p-panelmenu .p-panelmenu-content { + padding: 0.25rem 0; + border: 1px solid #dee2e6; + background: #ffffff; + color: #495057; + margin-bottom: 0; + border-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-panelmenu-icon { + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-submenu) { + padding: 0 0 0 1rem; +} +.p-panelmenu .p-panelmenu-panel { + margin-bottom: 0; +} +.p-panelmenu .p-panelmenu-panel .p-panelmenu-header > a { + border-radius: 0; +} +.p-panelmenu .p-panelmenu-panel .p-panelmenu-content { + border-radius: 0; +} +.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header > a { + border-top: 0 none; +} +.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover > a, .p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-disabled).p-highlight:hover > a { + border-top: 0 none; +} +.p-panelmenu .p-panelmenu-panel:first-child .p-panelmenu-header > a { + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-header:not(.p-highlight) > a { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-content { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} + +.p-slidemenu { + padding: 0.25rem 0; + background: #ffffff; + color: #495057; + border: 1px solid #dee2e6; + border-radius: 3px; + width: 12.5rem; +} +.p-slidemenu .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-slidemenu .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-slidemenu .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-slidemenu .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-slidemenu .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-slidemenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-slidemenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-slidemenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-slidemenu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-slidemenu.p-slidemenu-overlay { + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-slidemenu .p-slidemenu-list { + padding: 0.25rem 0; + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link { + background: #e9ecef; +} +.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-text { + color: #495057; +} +.p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon, .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon { + color: #6c757d; +} +.p-slidemenu .p-slidemenu-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; +} +.p-slidemenu .p-slidemenu-icon { + font-size: 0.875rem; +} +.p-slidemenu .p-slidemenu-backward { + padding: 0.75rem 1rem; + color: #495057; +} + +.p-steps .p-steps-item .p-menuitem-link { + background: transparent; + transition: box-shadow 0.2s; + border-radius: 3px; + background: #ffffff; +} +.p-steps .p-steps-item .p-menuitem-link .p-steps-number { + color: #495057; + border: 1px solid #e9ecef; + background: #ffffff; + min-width: 2rem; + height: 2rem; + line-height: 2rem; + font-size: 1.143rem; + z-index: 1; + border-radius: 50%; +} +.p-steps .p-steps-item .p-menuitem-link .p-steps-title { + margin-top: 0.5rem; + color: #6c757d; +} +.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-steps .p-steps-item.p-highlight .p-steps-number { + background: #E3F2FD; + color: #495057; +} +.p-steps .p-steps-item.p-highlight .p-steps-title { + font-weight: 600; + color: #495057; +} +.p-steps .p-steps-item:before { + content: " "; + border-top: 1px solid #dee2e6; + width: 100%; + top: 50%; + left: 0; + display: block; + position: absolute; + margin-top: -1rem; +} + +.p-tabmenu .p-tabmenu-nav { + background: #ffffff; + border: 1px solid #dee2e6; + border-width: 0 0 2px 0; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem { + margin-right: 0; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { + border: solid #dee2e6; + border-width: 0 0 2px 0; + border-color: transparent transparent #dee2e6 transparent; + background: #ffffff; + color: #6c757d; + padding: 1rem; + font-weight: 600; + border-top-right-radius: 3px; + border-top-left-radius: 3px; + transition: box-shadow 0.2s; + margin: 0 0 -2px 0; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon { + margin-right: 0.5rem; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link { + background: #ffffff; + border-color: #6c757d; + color: #6c757d; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link { + background: #ffffff; + border-color: #2196F3; + color: #2196F3; +} + +.p-tieredmenu { + padding: 0.25rem 0; + background: #ffffff; + color: #495057; + border: 1px solid #dee2e6; + border-radius: 3px; + width: 12.5rem; +} +.p-tieredmenu .p-menuitem-link { + padding: 0.75rem 1rem; + color: #495057; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-tieredmenu .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-tieredmenu .p-menuitem-link .p-menuitem-icon { + color: #6c757d; + margin-right: 0.5rem; +} +.p-tieredmenu .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover { + background: #e9ecef; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #495057; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #6c757d; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #6c757d; +} +.p-tieredmenu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 0.15rem #a6d5fa; +} +.p-tieredmenu.p-tieredmenu-overlay { + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-tieredmenu .p-submenu-list { + padding: 0.25rem 0; + background: #ffffff; + border: 0 none; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); +} +.p-tieredmenu .p-menuitem { + margin: 0; +} +.p-tieredmenu .p-menuitem:last-child { + margin: 0; +} +.p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #e9ecef; +} +.p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #495057; +} +.p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #6c757d; +} +.p-tieredmenu .p-menu-separator { + border-top: 1px solid #dee2e6; + margin: 0.25rem 0; +} +.p-tieredmenu .p-submenu-icon { + font-size: 0.875rem; +} + +.p-inline-message { + padding: 0.5rem 0.5rem; + margin: 0; + border-radius: 3px; +} +.p-inline-message.p-inline-message-info { + background: #B3E5FC; + border: solid #0891cf; + border-width: 0px; + color: #044868; +} +.p-inline-message.p-inline-message-info .p-inline-message-icon { + color: #044868; +} +.p-inline-message.p-inline-message-success { + background: #C8E6C9; + border: solid #439446; + border-width: 0px; + color: #224a23; +} +.p-inline-message.p-inline-message-success .p-inline-message-icon { + color: #224a23; +} +.p-inline-message.p-inline-message-warn { + background: #FFECB3; + border: solid #d9a300; + border-width: 0px; + color: #6d5100; +} +.p-inline-message.p-inline-message-warn .p-inline-message-icon { + color: #6d5100; +} +.p-inline-message.p-inline-message-error { + background: #FFCDD2; + border: solid #e60017; + border-width: 0px; + color: #73000c; +} +.p-inline-message.p-inline-message-error .p-inline-message-icon { + color: #73000c; +} +.p-inline-message .p-inline-message-icon { + font-size: 1rem; + margin-right: 0.5rem; +} +.p-inline-message .p-inline-message-text { + font-size: 1rem; +} +.p-inline-message.p-inline-message-icon-only .p-inline-message-icon { + margin-right: 0; +} + +.p-message { + margin: 1rem 0; + border-radius: 3px; +} +.p-message .p-message-wrapper { + padding: 1rem 1.5rem; +} +.p-message .p-message-close { + width: 2rem; + height: 2rem; + border-radius: 50%; + background: transparent; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-message .p-message-close:hover { + background: rgba(255, 255, 255, 0.3); +} +.p-message .p-message-close:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-message.p-message-info { + background: #B3E5FC; + border: solid #0891cf; + border-width: 0 0 0 6px; + color: #044868; +} +.p-message.p-message-info .p-message-icon { + color: #044868; +} +.p-message.p-message-info .p-message-close { + color: #044868; +} +.p-message.p-message-success { + background: #C8E6C9; + border: solid #439446; + border-width: 0 0 0 6px; + color: #224a23; +} +.p-message.p-message-success .p-message-icon { + color: #224a23; +} +.p-message.p-message-success .p-message-close { + color: #224a23; +} +.p-message.p-message-warn { + background: #FFECB3; + border: solid #d9a300; + border-width: 0 0 0 6px; + color: #6d5100; +} +.p-message.p-message-warn .p-message-icon { + color: #6d5100; +} +.p-message.p-message-warn .p-message-close { + color: #6d5100; +} +.p-message.p-message-error { + background: #FFCDD2; + border: solid #e60017; + border-width: 0 0 0 6px; + color: #73000c; +} +.p-message.p-message-error .p-message-icon { + color: #73000c; +} +.p-message.p-message-error .p-message-close { + color: #73000c; +} +.p-message .p-message-text { + font-size: 1rem; + font-weight: 500; +} +.p-message .p-message-icon { + font-size: 1.5rem; + margin-right: 0.5rem; +} +.p-message .p-message-summary { + font-weight: 700; +} +.p-message .p-message-detail { + margin-left: 0.5rem; +} + +.p-toast { + opacity: 0.9; +} +.p-toast .p-toast-message { + margin: 0 0 1rem 0; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + border-radius: 3px; +} +.p-toast .p-toast-message .p-toast-message-content { + padding: 1rem; + border-width: 0 0 0 6px; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-message-text { + margin: 0 0 0 1rem; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon { + font-size: 2rem; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-summary { + font-weight: 700; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-detail { + margin: 0.5rem 0 0 0; +} +.p-toast .p-toast-message .p-toast-icon-close { + width: 2rem; + height: 2rem; + border-radius: 50%; + background: transparent; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-toast .p-toast-message .p-toast-icon-close:hover { + background: rgba(255, 255, 255, 0.3); +} +.p-toast .p-toast-message .p-toast-icon-close:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} +.p-toast .p-toast-message.p-toast-message-info { + background: #B3E5FC; + border: solid #0891cf; + border-width: 0 0 0 6px; + color: #044868; +} +.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, +.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + color: #044868; +} +.p-toast .p-toast-message.p-toast-message-success { + background: #C8E6C9; + border: solid #439446; + border-width: 0 0 0 6px; + color: #224a23; +} +.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, +.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + color: #224a23; +} +.p-toast .p-toast-message.p-toast-message-warn { + background: #FFECB3; + border: solid #d9a300; + border-width: 0 0 0 6px; + color: #6d5100; +} +.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, +.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + color: #6d5100; +} +.p-toast .p-toast-message.p-toast-message-error { + background: #FFCDD2; + border: solid #e60017; + border-width: 0 0 0 6px; + color: #73000c; +} +.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, +.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + color: #73000c; +} + +.p-galleria .p-galleria-close { + margin: 0.5rem; + background: transparent; + color: #f8f9fa; + width: 4rem; + height: 4rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 50%; +} +.p-galleria .p-galleria-close .p-galleria-close-icon { + font-size: 2rem; +} +.p-galleria .p-galleria-close:hover { + background: rgba(255, 255, 255, 0.1); + color: #f8f9fa; +} +.p-galleria .p-galleria-item-nav { + background: transparent; + color: #f8f9fa; + width: 4rem; + height: 4rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 3px; + margin: 0 0.5rem; +} +.p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, +.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + font-size: 2rem; +} +.p-galleria .p-galleria-item-nav:not(.p-disabled):hover { + background: rgba(255, 255, 255, 0.1); + color: #f8f9fa; +} +.p-galleria .p-galleria-caption { + background: rgba(0, 0, 0, 0.5); + color: #f8f9fa; + padding: 1rem; +} +.p-galleria .p-galleria-indicators { + padding: 1rem; +} +.p-galleria .p-galleria-indicators .p-galleria-indicator button { + background-color: #e9ecef; + width: 1rem; + height: 1rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 50%; +} +.p-galleria .p-galleria-indicators .p-galleria-indicator button:hover { + background: #dee2e6; +} +.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { + background: #E3F2FD; + color: #495057; +} +.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { + margin-right: 0.5rem; +} +.p-galleria.p-galleria-indicators-left .p-galleria-indicator, .p-galleria.p-galleria-indicators-right .p-galleria-indicator { + margin-bottom: 0.5rem; +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators { + background: rgba(0, 0, 0, 0.5); +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button { + background: rgba(255, 255, 255, 0.4); +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover { + background: rgba(255, 255, 255, 0.6); +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { + background: #E3F2FD; + color: #495057; +} +.p-galleria .p-galleria-thumbnail-container { + background: rgba(0, 0, 0, 0.9); + padding: 1rem 0.25rem; +} +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + margin: 0.5rem; + background-color: transparent; + color: #f8f9fa; + width: 2rem; + height: 2rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 50%; +} +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + background: rgba(255, 255, 255, 0.1); + color: #f8f9fa; +} +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +.p-galleria-mask.p-component-overlay { + background-color: rgba(0, 0, 0, 0.9); +} + +.p-avatar { + background-color: #dee2e6; + border-radius: 3px; +} +.p-avatar.p-avatar-lg { + width: 3rem; + height: 3rem; + font-size: 1.5rem; +} +.p-avatar.p-avatar-lg .p-avatar-icon { + font-size: 1.5rem; +} +.p-avatar.p-avatar-xl { + width: 4rem; + height: 4rem; + font-size: 2rem; +} +.p-avatar.p-avatar-xl .p-avatar-icon { + font-size: 2rem; +} + +.p-avatar-group .p-avatar { + border: 2px solid #ffffff; +} + +.p-badge { + background: #2196F3; + color: #ffffff; + font-size: 0.75rem; + font-weight: 700; + min-width: 1.5rem; + height: 1.5rem; + line-height: 1.5rem; +} +.p-badge.p-badge-secondary { + background-color: #607D8B; + color: #ffffff; +} +.p-badge.p-badge-success { + background-color: #689F38; + color: #ffffff; +} +.p-badge.p-badge-info { + background-color: #0288D1; + color: #ffffff; +} +.p-badge.p-badge-warning { + background-color: #FBC02D; + color: #212529; +} +.p-badge.p-badge-danger { + background-color: #D32F2F; + color: #ffffff; +} +.p-badge.p-badge-lg { + font-size: 1.125rem; + min-width: 2.25rem; + height: 2.25rem; + line-height: 2.25rem; +} +.p-badge.p-badge-xl { + font-size: 1.5rem; + min-width: 3rem; + height: 3rem; + line-height: 3rem; +} + +.p-blockui.p-component-overlay { + background: rgba(0, 0, 0, 0.4); +} + +.p-chip { + background-color: #dee2e6; + color: #495057; + border-radius: 16px; + padding: 0 0.5rem; +} +.p-chip .p-chip-text { + line-height: 1.5; + margin-top: 0.25rem; + margin-bottom: 0.25rem; +} +.p-chip .p-chip-icon { + margin-right: 0.5rem; +} +.p-chip .pi-chip-remove-icon { + margin-left: 0.5rem; +} +.p-chip img { + width: 2rem; + height: 2rem; + margin-left: -0.5rem; + margin-right: 0.5rem; +} +.p-chip .pi-chip-remove-icon { + border-radius: 3px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-chip .pi-chip-remove-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +.p-inplace .p-inplace-display { + padding: 0.5rem 0.5rem; + border-radius: 3px; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-inplace .p-inplace-display:not(.p-disabled):hover { + background: #e9ecef; + color: #495057; +} +.p-inplace .p-inplace-display:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} + +.p-progressbar { + border: 0 none; + height: 1.5rem; + background: #dee2e6; + border-radius: 3px; +} +.p-progressbar .p-progressbar-value { + border: 0 none; + margin: 0; + background: #2196F3; +} +.p-progressbar .p-progressbar-label { + color: #495057; + line-height: 1.5rem; +} + +.p-scrolltop { + width: 3rem; + height: 3rem; + border-radius: 50%; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-scrolltop.p-link { + background: rgba(0, 0, 0, 0.7); +} +.p-scrolltop.p-link:hover { + background: rgba(0, 0, 0, 0.8); +} +.p-scrolltop .p-scrolltop-icon { + font-size: 1.5rem; + color: #f8f9fa; +} + +.p-skeleton { + background-color: #e9ecef; + border-radius: 3px; +} +.p-skeleton:after { + background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); +} + +.p-tag { + background: #2196F3; + color: #ffffff; + font-size: 0.75rem; + font-weight: 700; + padding: 0.25rem 0.4rem; + border-radius: 3px; +} +.p-tag.p-tag-success { + background-color: #689F38; + color: #ffffff; +} +.p-tag.p-tag-info { + background-color: #0288D1; + color: #ffffff; +} +.p-tag.p-tag-warning { + background-color: #FBC02D; + color: #212529; +} +.p-tag.p-tag-danger { + background-color: #D32F2F; + color: #ffffff; +} +.p-tag .p-tag-icon { + margin-right: 0.25rem; + font-size: 0.75rem; +} + +.p-terminal { + background: #ffffff; + color: #495057; + border: 1px solid #dee2e6; + padding: 1rem; +} +.p-terminal .p-terminal-input { + font-size: 1rem; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +/* Customizations to the designer theme should be defined here */ +.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { + background-color: #2196F3; +} + +.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { + background-color: #2196F3; +} diff --git a/src/assets/under_construction.png b/src/assets/under_construction.png new file mode 100644 index 0000000..90942b5 Binary files /dev/null and b/src/assets/under_construction.png differ diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts new file mode 100644 index 0000000..50b6d55 --- /dev/null +++ b/src/environments/environment.prod.ts @@ -0,0 +1,45 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +const hostName: string = window.location.hostname; + +export const environment = { + production: true, + restBaseURL: 'http://' + hostName + '/api/v1/', + webSocketBaseURL: 'ws://' + hostName + '/api/v1/ws', + reconnectInterval: 2000, + mockBaseURL: 'http://' + hostName + '/', + isMockActive: false +}; + +/** + * Adds two numbers together. + * @return {string} The sum of the two numbers. + */ +export function getBaseUrl() { + if (environment.isMockActive) { + return environment.mockBaseURL; + } else { + return environment.restBaseURL; + } +} + +export const toastrProps = { + preventDuplicates: true, + destroyByClick: true, + duration: 10000 +}; + diff --git a/src/environments/environment.ts b/src/environments/environment.ts new file mode 100644 index 0000000..7bf5645 --- /dev/null +++ b/src/environments/environment.ts @@ -0,0 +1,49 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// The file contents for the current environment will overwrite these during build. +// The build system defaults to the dev environment which uses `environment.ts`, but if you do +// `ng build --env=prod` then `environment.prod.ts` will be used instead. +// The list of which env maps to which file can be found in `.angular-cli.json`. + +const hostName = window.location.hostname; + +export const environment = { + production: false, + restBaseURL: 'http://' + hostName + '/api/v1/', + webSocketBaseURL: 'ws://' + hostName + '/api/v1/ws', + reconnectInterval: 2000, + mockBaseURL: 'http://' + hostName + ':3000/', + isMockActive: false +}; + +/** + * Adds two numbers together. + * @return {string} The sum of the two numbers. + */ +export function getBaseUrl() { + if (environment.isMockActive) { + return environment.mockBaseURL; + } else { + return environment.restBaseURL; + } +} + +export const toastrProps = { + preventDuplicates: true, + destroyByClick: true, + duration: 10000 +}; diff --git a/src/favicon.ico b/src/favicon.ico new file mode 100644 index 0000000..997406a Binary files /dev/null and b/src/favicon.ico differ diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..eb91118 --- /dev/null +++ b/src/index.html @@ -0,0 +1,33 @@ + + + + + + + Matter Test Harness + + + + + + + + + + + diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..41d5a02 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,28 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { enableProdMode } from '@angular/core'; +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; + +import { AppModule } from './app/app.module'; +import { environment } from './environments/environment'; + +if (environment.production) { + enableProdMode(); +} + +platformBrowserDynamic().bootstrapModule(AppModule) + .catch(err => console.error(err)); diff --git a/src/polyfills.ts b/src/polyfills.ts new file mode 100644 index 0000000..e853a05 --- /dev/null +++ b/src/polyfills.ts @@ -0,0 +1,81 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/* ************************************************************************************************** + * BROWSER POLYFILLS + */ + +/** + * IE11 requires the following for NgClass support on SVG elements + */ +// import 'classlist.js'; // Run `npm install --save classlist.js`. + +/** + * Web Animations `@angular/platform-browser/animations` + * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari. + * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0). + */ +// import 'web-animations-js'; // Run `npm install --save web-animations-js`. + +/** + * By default, zone.js will patch all possible macroTask and DomEvents + * user can disable parts of macroTask/DomEvents patch by setting following flags + * because those flags need to be set before `zone.js` being loaded, and webpack + * will put import in the top of bundle, so user need to create a separate file + * in this directory (for example: zone-flags.ts), and put the following flags + * into that file, and then add the following code before importing zone.js. + * import './zone-flags'; + * + * The flags allowed in zone-flags.ts are listed here. + * + * The following flags will work for all browsers. + * + * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame + * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick + * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames + * + * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js + * with the following flag, it will bypass `zone.js` patch for IE/Edge + * + * (window as any).__Zone_enable_cross_context_check = true; + * + */ + +/* ************************************************************************************************** + * Zone JS is required by default for Angular itself. + */ +import 'zone.js'; // Included with Angular CLI. + + +/* ************************************************************************************************** + * APPLICATION IMPORTS + */ diff --git a/src/proxy.conf.json b/src/proxy.conf.json new file mode 100644 index 0000000..ec51d8e --- /dev/null +++ b/src/proxy.conf.json @@ -0,0 +1,6 @@ +{ + "/api/*": { + "secure": false, + "logLevel": "debug" + } +} diff --git a/src/styles.scss b/src/styles.scss new file mode 100644 index 0000000..abf97b8 --- /dev/null +++ b/src/styles.scss @@ -0,0 +1,110 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/* You can add global styles to this file, and also import other style files */ +@import url(assets/icomoon/style.css); +@import "./styles/colors"; +@import "./styles/themes/light-theme.scss"; +@import "./styles/themes/dark-theme.scss"; + +@font-face { + font-family: "Roboto-Medium"; + src: url("./assets/roboto/Roboto-Medium.ttf"); +} +@font-face { + font-family: "Roboto-Regular"; + src: url("./assets/roboto/Roboto-Regular.ttf"); +} +i { + cursor: pointer; +} +body { + margin: 0; +} +.cursor-busy * { + cursor: wait !important; +} +.cursor-busy .mainarea-parent-div { + pointer-events: none; +} + +.capitalize { + text-transform: capitalize; +} +.overflowAuto { + overflow: auto; +} +.floatRight { + float: right; +} +.heightZero { + height: 0 !important; +} +p { + margin-top: 0; +} +.mb-0 { + margin-bottom: 0 !important; +} +$sizes: 0, 12, 14, 15, 17, 20, 23, 26, 35; + +@mixin list-loop($className, $styleName) { + @each $size in $sizes { + #{$className + $size} { + #{$styleName}: #{$size + "px"}; + } + } +} +@include list-loop(".mt-", "margin-top"); + +//document.getElementById("theme_css").href = "./assets/themes/saga-blue/theme.css" + +.buttonYes { + color: $white; + background-color: $buttonColor; +} +.buttonNo { + color: $buttonColor; + background-color: $white; +} + +.test-count { + margin-right: 11px; + font-size: 13px; + font-weight: 500; + color: #2193f6; + border: solid 1px #2193f6; + padding: 3px; + min-width: 23px; + border-radius: 5px; +} + +.report-dialog .p-dialog-content { + min-height: 200px; +} + +// styling for scroll bar +::-webkit-scrollbar { + width: 5px; + height: 5px; +} +::-webkit-scrollbar-thumb { + background: #adabab; + border-radius: 10px; +} +::-webkit-scrollbar-track { + background: #f1f1f1; +} diff --git a/src/styles/_colors.scss b/src/styles/_colors.scss new file mode 100644 index 0000000..966468b --- /dev/null +++ b/src/styles/_colors.scss @@ -0,0 +1,56 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +$navbar: #4baaf5; +$buttonColor: #4baaf5; +$mainAreaParent: #f8f9fa; +$white: #fff; +$creamWhite: #ced4da; +$darkGray: #424242; +$lightGray: #2f2f2f; +$bluishGray: #495057; +$lightBlack: #212121; +$transparent: transparent; +$success: #39f161; +$error: #e24545; +$warning: #fbc02d; +$info: #0288d1; +$iconBackground: rgba(156, 204, 235, 0.432); + +/* Test execution */ +$execTableHeader: #f8f9fa; +$execTableSubHeader: #e9ecef; +$execTableBorder: #e1e4e7; +$darkRed: #d32f2f; +$ceruleanBlue: #2193f6; + +/* light-theme */ +$navLogoBg: #207a6c; +$bgColor1: #f0f9fc; +$bgColor2: #dbebee; +$bgColor3: #dbebee; +$bgColor4: #d5e8ee; +$bgColor5: #f6fbfa; +$color1: #979393; +$color2: #636363; + +/* dark-theme */ +$navLogoBg_dark: #249c8e; +$bgColor2_dark: #343e54; +$bgColor3_dark: #1f2938; +$bgColor4_dark: #2f3a4d; +$inputBgColor_dark: #dde0e4; +$garyBorder: #424958; diff --git a/src/styles/custom.scss b/src/styles/custom.scss new file mode 100644 index 0000000..f11f2dd --- /dev/null +++ b/src/styles/custom.scss @@ -0,0 +1,50 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "./colors"; + +.heading-text { + font-family: "Roboto-Medium"; + font-size: 18px; + color: $lightBlack !important; + font-weight: 500; +} +.table-heading { + font-family: "Roboto-Medium"; + font-size: 14px; + color: $bluishGray !important; + font-weight: 500 !important; +} +.sub-heading { + font-family: "Roboto-Regular"; + font-size: 16px; + color: $lightBlack; +} +.table-data { + font-family: "Roboto-Regular"; + font-size: 14px; + color: $bluishGray !important; +} +.small-text { + font-family: "Roboto-Regular"; + font-size: 12px; + color: $bluishGray !important; +} +.disabled-icon { + opacity: 0.4; + cursor: not-allowed; + pointer-events: none; +} diff --git a/src/styles/themes/dark-theme.scss b/src/styles/themes/dark-theme.scss new file mode 100644 index 0000000..a5983d6 --- /dev/null +++ b/src/styles/themes/dark-theme.scss @@ -0,0 +1,331 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../colors"; + +$backgroundImage1: "../../assets/theme-images/Dark_Mode_1.jpg"; +$backgroundImage2: "../../assets/theme-images/Dark_Mode_2.jpg"; + +.dark-theme { + .mainarea-parent-div { + background: url(#{$backgroundImage1}); + background-size: 100% 100%; + height: calc(100vh - 68.2px); + .p-card-parent { + border: 1px solid $garyBorder; + .p-card.p-component { + position: relative; + &::before { + content: ""; + position: absolute; + display: block; + background: url(#{$backgroundImage1}); + background-size: 100% 100%; + width: 100%; + height: 100%; + filter: blur(5px); + z-index: 0; + } + } + .p-card { + background: none; + } + } + + .p-card-body { + position: absolute; // IMP: blur bg image using ::before will make some tags hidden because its coming on top of the other tags + width: 100%; + } + } + + /* Start: top-navbar */ + .p-menubar { + background: url(#{$backgroundImage2}); + background-size: 100% 100%; + color: $white !important; + .p-menubar-start { + background-color: $navLogoBg_dark !important; + } + } + + .top-nav-dropdown, + .project-dropdown { + .p-dropdown { + .p-dropdown-label.p-inputtext { + color: $white !important; + } + .p-dropdown-trigger { + color: $white !important; + } + } + } + /* End: top-navbar */ + + /* Start: Project screen table */ + .p-datatable { + .p-datatable-header { + background: inherit; + border: unset; + } + .p-datatable-thead > tr > th { + background: $bgColor2_dark; + color: $white !important; + border-color: $garyBorder; + &:hover { + background: $bgColor2_dark !important; + .p-sortable-column-icon { + color: inherit; + } + } + .p-sortable-column-icon { + color: inherit; + } + } + .p-datatable-scrollable-header { + background: inherit; + } + .p-datatable-scrollable-footer { + background: inherit; + } + .p-datatable-tbody > tr { + background: inherit; + td { + color: $white !important; + border-color: $garyBorder; + } + &:hover { + background: $bgColor2_dark !important; + } + td.test-name-td:hover { + color: $ceruleanBlue !important; + } + .info-log { + color: $info !important; + } + .error-log { + color: $error !important; + } + .warning-log { + color: $warning !important; + } + } + .p-paginator-bottom { + background: inherit; + color: $white !important; + border-color: $garyBorder; + .p-paginator-current, + .p-paginator-icon { + color: $white !important; + } + } + .p-paginator .p-paginator-pages .p-paginator-page { + color: $white !important; + &.p-highlight { + background: $navLogoBg_dark; + border-color: $navLogoBg_dark; + } + &:hover:not(.p-highlight) { + color: $lightBlack !important; + } + .table_icons i:hover { + color: $navLogoBg_dark; + background-color: rgba(104, 190, 233, 0.432); + } + } + } + /* End: Project screen table */ + + /* Start: Test run screen */ + .p-tabview { + .p-tabview-nav { + background: inherit; + border-color: inherit; + .p-tabview-nav-link { + background: inherit; + border-color: inherit; + } + // selected tab + li.p-highlight .p-tabview-nav-link { + background: inherit; + color: $white; + border-color: $white; + } + } + .p-tabview-panels { + background: inherit; + } + } + .p-checkbox { + .p-checkbox-box.p-highlight { + background: $navLogoBg_dark; + border-color: $navLogoBg_dark; + &:hover { + background: $navLogoBg_dark; + border-color: $navLogoBg_dark; + } + } + .p-checkbox-box:not(.p-highlight):hover { + border-color: $navLogoBg_dark; + } + .p-checkbox-box.p-focus { + box-shadow: 0 0 0 0.2rem $creamWhite; + border-color: $navLogoBg_dark; + } + } + .custom-icon { + .p-checkbox .p-checkbox-box { + border-color: $navLogoBg_dark !important; + background: $navLogoBg_dark !important; + } + } + .test-count { + color: $white; + border-color: $white; + } + .parent-test-cases .test-name, + .test-summary .p-tree { + background: $bgColor3_dark; + border-color: $garyBorder; + color: $white; + .test-name-master, + .current-element { + background-color: $bgColor4_dark; + border-color: $garyBorder; + } + } + /* End: Test run screen */ + + /* Start: Test execution screen */ + .test-exec-tree-parent .table-heading, + .test-log-toolbar-header { + background-color: $bgColor4_dark !important; + } + .test-logs-parent .test-log-toolbar .test-log-toolbar-header .table-heading { + color: $white !important; + } + + .test-execution-parent { + .test-execution-tree-div { + border-color: $garyBorder !important; + .test-exec-tree-parent { + .all-tests-div .default-test { + border-color: $garyBorder !important; + background-color: $bgColor4_dark !important; + color: $white !important; + &:not(.active-block) { + background: inherit !important; + } + } + .testcase-div { + .testcase-div-1, + .testcase-div-2, + .testcase-div-3 { + border-color: $garyBorder !important; + color: $white !important; + } + .testcase-div-1, + .testcase-div-2 { + background-color: $bgColor4_dark !important; + } + } + .table-heading { + color: $white !important; + } + } + } + .test-execution-logs-div { + border-color: $garyBorder !important; + } + } + /* End: Test execution screen */ + + // headings and labels + .p-card-comp { + .p-card-content { + .sub-heading, + .heading-label, + .heading-text, + .textbox-label, + .table-heading, + .no-data { + color: $white !important; + } + } + } + + // buttons + .create-button-div, + .project-dropdown, + .test-details, + .test-execution-parent { + button:not(.button-abort) { + background: $navLogoBg_dark; + border: 1px solid $navLogoBg_dark; + color: $white !important; + &:hover { + background: $navLogoBg_dark; + border: 1px solid $navLogoBg_dark; + } + } + } + + // input and dropdown + input:not([type="file"]), + .p-dropdown { + background: $inputBgColor_dark; + } + + // report upload button + .report-upload input::before { + background: $navLogoBg_dark !important; + border-color: $navLogoBg_dark !important; + } + + // update only color + .icon-import-2, + .icon-add-square, + .create-new-project-label, + .construction-span, + .test-summary .icon-folder-open, + .test-summary .p-tree-toggler-icon, + .utility-upload-parent, + .legends-parent { + color: $white !important; + } + .message-parent .notification-text { + color: black !important; + } + // temp + .construction img { + background: lightgray; + } + .copy-rights { + color: white; + } + /* Start: Report page */ + // .test-report { + // color: $white; + // table, + // th, + // td { + // border-color: $garyBorder; + // } + // th { + // background-color: $bgColor4_dark; + // } + // } + /* End: Report page */ +} diff --git a/src/styles/themes/light-theme.scss b/src/styles/themes/light-theme.scss new file mode 100644 index 0000000..e7e7b29 --- /dev/null +++ b/src/styles/themes/light-theme.scss @@ -0,0 +1,232 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@import "../colors"; + +$backgroundImage1: "../../assets/theme-images/Light_Mode_1.jpg"; +$backgroundImage2: "../../assets/theme-images/Light_Mode_2.jpg"; + +.light-theme { + .mainarea-parent-div { + background: url(#{$backgroundImage1}); + background-size: 100% 100%; + height: calc(100vh - 68.2px); + .p-card-parent { + border: 1px solid $white; + .p-card.p-component { + position: relative; + &::before { + content: ""; + position: absolute; + display: block; + background: url(#{$backgroundImage1}); + background-size: 100% 100%; + width: 100%; + height: 100%; + filter: blur(5px); + z-index: 0; + } + } + .p-card { + background: none; + } + } + + .p-card-body { + position: absolute; // IMP: blur bg image using ::before will make some tags hidden because its coming on top of the other tags + width: 100%; + } + } + + /* Start: top-navbar */ + .p-menubar { + background: url(#{$backgroundImage2}); + background-size: 100% 100%; + color: $lightBlack !important; + } + p-menubar:not(.data-loading) .p-menubar-start { + background-color: $navLogoBg !important; + } + .top-nav-start { + .top-nav-dropdown { + .p-dropdown { + .p-inputtext { + color: $lightBlack !important; + } + .p-dropdown-trigger { + color: $lightBlack !important; + } + } + } + } + /* End: top-navbar */ + + /* Start: Project screen table */ + .p-datatable { + .p-datatable-header { + background: inherit; + border: unset; + } + .p-datatable-thead > tr > th { + background: $bgColor2; + } + .p-datatable-scrollable-header { + background: inherit; + } + .p-datatable-scrollable-footer { + background: inherit; + } + .p-datatable-tbody > tr { + background: inherit; + } + .p-paginator-bottom { + background: inherit; + } + .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { + background: $bluishGray; + border-color: $bluishGray; + color: $white !important; + } + .table_icons i:hover { + color: $lightBlack; + background-color: rgba(178, 194, 202, 0.432); + } + .p-dropdown-trigger { + color: $lightBlack !important; + } + } + /* End: Project screen table */ + + /* Start: Test run screen */ + .p-tabview { + .p-tabview-nav { + background: inherit; + .p-tabview-nav-link { + background: inherit; + } + // selected tab + li.p-highlight .p-tabview-nav-link { + background: inherit; + color: $lightBlack; + border-color: $lightBlack; + } + } + .p-tabview-panels { + background: inherit; + } + } + .p-checkbox { + .p-checkbox-box.p-highlight { + background: $lightBlack; + border-color: $lightBlack; + &:hover { + background: $lightBlack; + border-color: $lightBlack; + } + } + .p-checkbox-box:not(.p-highlight):hover { + border-color: $lightBlack; + } + .p-checkbox-box.p-focus { + box-shadow: 0 0 0 0.2rem $creamWhite; + border-color: $lightBlack; + } + } + .custom-icon { + .p-checkbox .p-checkbox-box { + border-color: $lightBlack !important; + background: $lightBlack !important; + } + } + .test-count { + color: $lightBlack; + border-color: $lightBlack; + } + .parent-test-cases .test-name, + .test-summary .p-tree { + background: $bgColor1; + border-color: $white; + .test-name-master, + .current-element { + background-color: $bgColor2; + border-color: $white; + } + } + /* End: Test run screen */ + + /* Start: Test execution screen */ + .test-exec-tree-parent .table-heading, + .test-log-toolbar-header { + background-color: $bgColor3 !important; + } + .test-execution-parent { + .test-execution-tree-div { + border-color: $white !important; + .test-exec-tree-parent { + .all-tests-div .default-test { + border-color: $white !important; + background-color: $bgColor4 !important; + &:not(.active-block) { + background: inherit !important; + } + } + .testcase-div { + .testcase-div-1, + .testcase-div-2, + .testcase-div-3 { + border-color: $white !important; + } + .testcase-div-1, + .testcase-div-2 { + background-color: $bgColor4 !important; + } + } + } + } + .test-execution-logs-div { + border-color: $white !important; + } + } + /* End: Test execution screen */ + + // buttons + .create-button-div, + .project-dropdown, + .test-details, + .test-execution-parent { + button:not(.button-abort) { + background: $lightBlack; + border: 1px solid $lightBlack; + color: $white !important; + &:hover { + background: $lightBlack; + border: 1px solid $lightBlack; + } + } + } + + // input and dropdown + input:not([type="file"]), + .p-dropdown { + background: $bgColor5; + } + + // report upload button + .report-upload input::before { + background: $lightBlack !important; + border-color: $lightBlack !important; + } +} diff --git a/src/test.ts b/src/test.ts new file mode 100644 index 0000000..afb7ad4 --- /dev/null +++ b/src/test.ts @@ -0,0 +1,42 @@ +/** + * + * Copyright (c) 2023 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +// This file is required by karma.conf.js and loads recursively all the .spec and framework files + +import 'zone.js/testing'; +import { getTestBed } from '@angular/core/testing'; +import { + BrowserDynamicTestingModule, + platformBrowserDynamicTesting +} from '@angular/platform-browser-dynamic/testing'; + +declare const require: { + context(path: string, deep?: boolean, filter?: RegExp): { + keys(): string[]; + // eslint-disable-next-line @typescript-eslint/member-ordering + (id: string): T; + }; +}; + +// First, initialize the Angular testing environment. +getTestBed().initTestEnvironment( + BrowserDynamicTestingModule, + platformBrowserDynamicTesting() +); +// Then we find all the tests. +const context = require.context('./', true, /\.spec\.ts$/); +// And load the modules. +context.keys().map(context); diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..82d91dc --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,15 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": [ + "src/main.ts", + "src/polyfills.ts" + ], + "include": [ + "src/**/*.d.ts" + ] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..dc1a551 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,31 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "forceConsistentCasingInFileNames": true, + "strict": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "sourceMap": true, + "declaration": false, + "resolveJsonModule": true, + "downlevelIteration": true, + "experimentalDecorators": true, + "moduleResolution": "node", + "importHelpers": true, + "target": "es2017", + "module": "es2020", + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true, + "strictInputAccessModifiers": true, + "strictTemplates": true + } +} diff --git a/tsconfig.spec.json b/tsconfig.spec.json new file mode 100644 index 0000000..092345b --- /dev/null +++ b/tsconfig.spec.json @@ -0,0 +1,18 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/spec", + "types": [ + "jasmine" + ] + }, + "files": [ + "src/test.ts", + "src/polyfills.ts" + ], + "include": [ + "src/**/*.spec.ts", + "src/**/*.d.ts" + ] +}