diff --git a/.env b/.env
new file mode 100644
index 00000000..e57e1e3d
--- /dev/null
+++ b/.env
@@ -0,0 +1 @@
+ENVIRONMENT=qa
\ No newline at end of file
diff --git a/.env.production b/.env.production
new file mode 100644
index 00000000..5c603b70
--- /dev/null
+++ b/.env.production
@@ -0,0 +1 @@
+ENVIRONMENT=production
\ No newline at end of file
diff --git a/.env.qa b/.env.qa
new file mode 100644
index 00000000..e57e1e3d
--- /dev/null
+++ b/.env.qa
@@ -0,0 +1 @@
+ENVIRONMENT=qa
\ No newline at end of file
diff --git a/.env.staging b/.env.staging
new file mode 100644
index 00000000..6673ee28
--- /dev/null
+++ b/.env.staging
@@ -0,0 +1 @@
+ENVIRONMENT=staging
\ No newline at end of file
diff --git a/.eslintignore b/.eslintignore
index a95fb08d..13658652 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -1,2 +1,5 @@
node_modules/
-.eslintrc.js
\ No newline at end of file
+.eslintrc.js
+babel.config.js
+webpack.config.js
+
diff --git a/.eslintrc.js b/.eslintrc.js
index 7e5591bb..37bf3763 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -38,7 +38,7 @@ module.exports = {
'react-native/no-raw-text': [
2,
{
- skip: ['Button', 'Heading'],
+ skip: ['Button', 'Heading', 'Menu.Item'],
},
],
},
diff --git a/.gitignore b/.gitignore
index 480138de..f14a7019 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,10 +9,23 @@ npm-debug.*
*.orig.*
web-build/
+# webstorm
+.idea/
+
# macOS
.DS_Store
# yarn
yarn-error.log
-dist/
\ No newline at end of file
+dist/
+
+# project files
+
+# CONFIG: uncomment following lines
+# .env
+# .env.qa
+# .env.production
+# .env.staging
+# Local Netlify folder
+.netlify
diff --git a/.husky/pre-commit b/.husky/pre-commit
index c830e8cd..0b02141a 100755
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -2,6 +2,4 @@
. "$(dirname "$0")/_/husky.sh"
yarn lint-staged
-yarn typecheck
-yarn prettier:write
yarn pretty-quick --staged --ignore-path=./.prettierignore
\ No newline at end of file
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 00000000..b58b603f
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,5 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
new file mode 100644
index 00000000..f986f2fe
--- /dev/null
+++ b/.idea/codeStyles/Project.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 00000000..79ee123c
--- /dev/null
+++ b/.idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/expo-ts-template.iml b/.idea/expo-ts-template.iml
new file mode 100644
index 00000000..0c8867d7
--- /dev/null
+++ b/.idea/expo-ts-template.iml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 00000000..03d9549e
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 00000000..3ce35882
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 00000000..08ad4f24
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 00000000..94a25f7f
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..893eddd6
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,23 @@
+{
+ "cSpell.words": ["icomoon"],
+ "todohighlight.keywords": [
+ {
+ "text": "CONFIG:",
+ "color": "#FFF",
+ "backgroundColor": "green",
+ "overviewRulerColor": "grey"
+ },
+ {
+ "text": "HACK:",
+ "color": "#000",
+ "backgroundColor": "red",
+ "isWholeLine": false
+ },
+ {
+ "text": "TODO:",
+ "color": "#fff",
+ "backgroundColor": "darkOrange",
+ "isWholeLine": false
+ }
+ ]
+}
diff --git a/App.tsx b/App.tsx
new file mode 100644
index 00000000..5869713e
--- /dev/null
+++ b/App.tsx
@@ -0,0 +1,40 @@
+// FIXME: see how why did you render works
+// import './wdyr'
+import 'react-native-gesture-handler'
+import 'setimmediate'
+import 'react-native-reanimated'
+import '~i18n'
+import * as Device from 'expo-device'
+
+import { Navigation } from '~navigation'
+import { Providers } from '~providers'
+import { enableAndroidBackgroundNotificationListener, startMockedServer } from '~services'
+
+// FIXME: there is some issue with miragejs that causes console.log to not work
+const DISABLE_CONSOLE_ENABLE_MOCKED_SERVER = false
+
+if (DISABLE_CONSOLE_ENABLE_MOCKED_SERVER) {
+ startMockedServer()
+}
+
+// TODO: Uncomment reactotron setup when using
+// const isUsingReactotron = true
+// if (__DEV__ && isUsingReactotron && !process.env.JEST_WORKER_ID) {
+// require('./ReactotronConfig')
+// }
+
+// Workaround for the notifications received in background on android
+// src: https://github.com/expo/expo/issues/14078#issuecomment-1041294084
+if (Device.isDevice) {
+ enableAndroidBackgroundNotificationListener()
+}
+
+const App = (): JSX.Element => {
+ return (
+
+
+
+ )
+}
+
+export default App
diff --git a/NOTIFICATIONS_SETUP.MD b/NOTIFICATIONS_SETUP.MD
new file mode 100644
index 00000000..b5256bd5
--- /dev/null
+++ b/NOTIFICATIONS_SETUP.MD
@@ -0,0 +1,58 @@
+# Expo notifications configuration guide
+
+Expo notifications are already preconfigured in this template. However, you still have to provide some secrets and keys in order to use them across your applications that uses this template.
+
+Expo Go doesn't require any additional configuration so you can check notifications by copying push token (from `Settings` screen) and test notifications (on RL device) on [expo.dev/notifications](http://expo.dev/notifications) tool.
+
+## Usage in expo dev client (expo run:\[android:ios\])
+
+1. Make sure you have created your account in [expo.dev](http://expo.dev).
+2. Sign in to your account using `yarn run login` (or `expo login` inside project directory).
+3. Follow platform specific configuration.
+
+### Android
+
+1. Configure firebase to get `google-services.json` file - [follow this guide](https://docs.expo.dev/push-notifications/using-fcm/).
+2. Make sure that you have changed your `owner` name in `app.json`.
+3. Put your `google-services.json` in a project directory and provide path to it in `app.json` in `android` section ex.:
+
+```json
+{
+ "expo": {
+ ...,
+ "owner": "@binarapps",
+ ...,
+ "android": {
+ "googleServicesFile": "./path/to/google-services.json"
+ }
+ }
+}
+```
+
+4. Provide your `experienceId` in `extra` section in `app.json` typically it follows this scheme - `@owner/slug` ex.:
+
+```json
+{
+ "expo": {
+ ...,
+ "owner": "@binarapps",
+ "slug": "expo-typescript-template",
+ ...,
+ "extra": {
+ "experienceid": "@binarapps/expo-typescript-template"
+ }
+ }
+}
+```
+
+Make sure that you have provided your own secrets for those fields.
+
+### iOS
+
+`iOS` notification credentials are automatically generated (paid apple developer account is required to make them working).
+
+[You can check this guide how to setup push notifications on iOS.](https://docs.expo.dev/push-notifications/push-notifications-setup/#credentials)
+
+## Extending `expo-notifications` config
+
+If u need additional `expo-notifications` config [follow this guide](https://github.com/expo/expo/tree/sdk-47/packages/expo-notifications).
diff --git a/README.md b/README.md
index ca752f37..6535351f 100644
--- a/README.md
+++ b/README.md
@@ -1,79 +1,179 @@
-![Logo](assets/logo.png)
+
+
+
-[![MIT License](https://img.shields.io/npm/l/@kacgrzes/expo-template?style=flat-square)](https://github.com/tterb/atomic-design-ui/blob/master/LICENSEs)
-[![MIT License](https://img.shields.io/npm/v/@kacgrzes/expo-template?style=flat-square)](https://img.shields.io/npm/v/@kacgrzes/expo-template?style=flat-square)
-[![MIT License](https://img.shields.io/npm/dt/@kacgrzes/expo-template?style=flat-square)](https://img.shields.io/npm/dt/@kacgrzes/expo-template?style=flat-square)
-[![MIT License](https://img.shields.io/github/stars/kacgrzes/expo-typescript-template?style=flat-square)](https://img.shields.io/github/stars/kacgrzes/expo-typescript-template?style=flat-square)
+[![MIT License](https://img.shields.io/npm/l/@binarapps/expo-ts-template?style=flat-square)](https://github.com/tterb/atomic-design-ui/blob/master/LICENSEs)
+[![MIT License](https://img.shields.io/npm/v/@binarapps/expo-ts-template?style=flat-square)](https://img.shields.io/npm/v/@binarapps/expo-ts-template?style=flat-square)
+[![MIT License](https://img.shields.io/npm/dt/@binarapps/expo-ts-template?style=flat-square)](https://img.shields.io/npm/dt/@binarapps/expo-ts-template?style=flat-square)
+[![MIT License](https://img.shields.io/github/stars/binarapps/expo-ts-template?style=flat-square)](https://img.shields.io/github/stars/binarapps/expo-ts-template?style=flat-square)
+[![runs with Expo Go](https://img.shields.io/badge/Runs%20with%20Expo%20Go-4630EB.svg?style=flat-square&logo=EXPO&labelColor=f3f3f3&logoColor=000)](https://expo.dev/client)
-# @kacgrzes/expo-template
+# @binarapps/expo-ts-template
-This is a template to be used with expo. It includes all the necessary stuff to start working with expo framework. It has the most popular packages included so it's easier to start coding the app itself without all the necessary boilerplate setup. It has:
+This is a template to be used with expo. It includes all the necessary stuff to start working with expo framework. It has the most popular packages included, so it's easier to start coding the app itself without all the necessary boilerplate setup. It has:
Version in the `package.json` is one to one the latest expo on which the template was tested.
-## Features
+## Why to use?
-[![MIT License](https://img.shields.io/npm/types/@kacgrzes/expo-template?style=flat-square)](https://img.shields.io/npm/types/@kacgrzes/expo-template?style=flat-square)
-[![MIT License](https://img.shields.io/github/package-json/dependency-version/kacgrzes/expo-typescript-template/expo?style=flat-square)](https://img.shields.io/github/package-json/dependency-version/kacgrzes/expo-typescript-template/expo?style=flat-square)
-[![MIT License](https://img.shields.io/github/package-json/dependency-version/kacgrzes/expo-typescript-template/@react-navigation/native?style=flat-square)](https://img.shields.io/github/package-json/dependency-version/kacgrzes/expo-typescript-template/@react-navigation/native?style=flat-square)
+We know there are a lot of project starters for react native, but we have some good features:
-- TypeScript support
-- Expo
-- React Navigation
- - with dark and light theme set up
- - with screen tracking hook
- - state persistance on development mode
- - prevent go back (to be used on forms for example)
-- native-base
-- color scheme detection (dark / light mode toggle)
-- hermes enabled on Android by default
-- i18next with translations, language detection and translations
-- wait to load fonts and all the assets
-- auth flow ready for implementation details
- - using expo-secure-store module to save user token
- - right now it has simple signIn/signOut flow
-- prettier
-- babel-module-resolver
-- tests with jest and @testing-library/react-native
-- animations with `reanimated` and `moti`
-- `@gorhom/bottom-sheet`
+- Fully works with **expo go**
+ - Good for start the project and later you can switch to expo-dev-client
+- **Code generators** (create new screen / create new component)
+- **Fully + Strong typed**
+- **App deployment documentation** (currently in progress, but it will be added in near future)
-See all the details in the documentation.
+## Demo
-## Screenshots
+
+
+
+
+
-![App Screenshot](https://via.placeholder.com/468x300?text=App+Screenshot+Here)
+## Usage
-## Installation
+There are three types of usage:
-Init expo with this template using:
+1. Init using this command (beaware that sometimes this template can't be updated on npm, in that case, clone this repository and reinitialize repozitory for yourself - check third type of setup)
```bash
- expo init --template=@kacgrzes/expo-template
+npx create-expo-app --template=@binarapps/expo-ts-template name_of_your_app
```
-### Working with designer in your project
+2. Use this as template repo on GitHub
+ ![Github Repository Template](assets/tutorials/github-repository-template.png)
-Expo template, you are going to use - bundles native-base ui lib out of the box.
-To have the best starting experience in your project - write a dm to your designer that they should use [NativeBase Figma Design Kit](https://www.figma.com/community/file/1050753649783931446)
+3. Clone repository
-## Documentation
+ This usage is usefull when npm code version is not up to date, you can verify it by checking dates of last commit and last publish
+ ![Check last release date](assets/tutorials/check-last-release-date.png)
-[Documentation](https://linktodocumentation)
+```bash
+git clone git@github.com:binarapps/expo-ts-template.git
+cd expo-ts-template
+yarn
+yarn start
+```
-## Demo
+- in that case you can also reinitialize repozitory if you don't want to keep history of commits
+
+```bash
+rm -rg .git
+git commit -m "chore: initialize project"
+```
+
+### App setup
+
+After setting up repository you can run bootstrap command to setup everything you need:
+
+```bash
+yarn bootstrap:new_app
+```
+
+This command will ask you for some needed informations and then will overwrite your files in repository.
+
+## Features
+
+[![MIT License](https://img.shields.io/npm/types/@binarapps/expo-ts-template?style=flat-square)](https://img.shields.io/npm/types/@binarapps/expo-ts-template?style=flat-square)
+[![MIT License](https://img.shields.io/github/package-json/dependency-version/binarapps/expo-ts-template/expo?style=flat-square)](https://img.shields.io/github/package-json/dependency-version/binarapps/expo-ts-template/expo?style=flat-square)
+[![MIT License](https://img.shields.io/github/package-json/dependency-version/binarapps/expo-ts-template/@react-navigation/native?style=flat-square)](https://img.shields.io/github/package-json/dependency-version/binarapps/expo-ts-template/@react-navigation/native?style=flat-square)
+
+### Implemented libraries
+
+- TypeScript
+ - app is fully typed
+- [Expo v49](https://github.com/expo/expo)
+- [React Navigation v6](https://github.com/react-navigation/react-navigation)
+- Native-base v3.4
+- Prettier and eslint
+ - code formatting
+ - code checking
+- Babel-module-resolver
+- jest and @testing-library/react-native
+ - unit tests
+- i18next
+ - translations
+ - language detection
+- `@gorhom/bottom-sheet`
+- Expo-notifications
+ - You can read how to configure them [here](/NOTIFICATIONS_SETUP.MD)
+- Reactotron
+ - used for debugging
+- [Reanimated v2](https://github.com/software-mansion/react-native-reanimated)
+- Axios
+
+### Implemented custom features
+
+- generators:
+ - create screen - `yarn generate:screen`
+ - create component - `yarn generate:component`
+- support of multiple environments
+ - production, staging, qa
+- eas configuration
+ - update, build, submit
+- verifying code on pull request - pipelines
+ - when creating pull request on github, there are tests, linters and types checks. If there will be some error you will be notified that something is wrong.
+- custom fonts
+ - wait to load fonts and all the assets
+- dark / light theme support
+ - color scheme detection (dark / light mode toggle)
+- navigation
+ - screen tracking hook
+ - state persistence on development mode
+ - prevent go back (to be used on forms for example)
+ - strong types, prevent issues in future
+- auth flow ready for implementation details
+ - using expo-secure-store module to save user token
+ - right now it has simple signIn/signOut flow
+- animations with `reanimated` and `moti`
+
+
+
+## Working with designer in your project
+
+Expo template, you are going to use - bundles native-base ui lib out of the box.
+To have the best starting experience in your project - write a dm to your designer that they should use [NativeBase Figma Design Kit](https://www.figma.com/community/file/1050753649783931446)
+
+
## Roadmap
-- Additional browser support
-- Add more integrations
+- add some state management tool
+- write docs (app deployment, app setup and more)
+- tutorial on how to use features
+ - navigation
+ - deeplinking
+ - auth flows
+ - components
+ - react query
+ - api calls
+- Add desings (figma) and redesing whole app
+- Updating expo versions (in future)
+- Deploy app to appstore and playstore
+- Improve mock server logic
+- add commit lint
+- add script that display last update information (eas update)
+
+### Implementations to add
+
+- [expo image](https://github.com/expo/expo/tree/main/packages/expo-image)
+- [FlashList](https://github.com/Shopify/flash-list)
+- [ZOD](https://github.com/colinhacks/zod)
## Contributing
Contributions are always welcome!
+
+
See `contributing.md` for ways to get started.
Please adhere to this project's `code of conduct`.
@@ -83,13 +183,13 @@ Please adhere to this project's `code of conduct`.
Clone the project
```bash
- git clone https://github.com/kacgrzes/expo-typescript-template.git
+ git clone https://github.com/binarapps/expo-ts-template.git
```
Go to the project directory
```bash
- cd expo-typescript-template
+ cd expo-ts-template
```
Install dependencies
@@ -104,15 +204,67 @@ Start the expo server
yarn start
```
+## Icons
+
+This template uses [Remix icon set](https://remixicon.com/)
+
+It is added to the app as a font generated by [icomoon app](https://icomoon.io/app/#/select).
+
+### Adding new icons
+
+1. Find `assets/icomoon/selection.json` file in your machine
+2. Import this file to this [page (icomoon app)](https://icomoon.io/app/#/select):
+
+- Make sure there are no other icons imported there
+
+3. Download icon which need to be added to the app as svg file.
+4. Make sure new icon name is unique (already not used).
+5. Add svg file to icomoon app.
+6. Go to generate font tab - icomoon app.
+
+- Make sure that all icons that you have added have correct names
+
+7. Download font - icomoon app
+8. Replace old files with downloaded ones
+
+- ./selection.json => assets/icomoon/selection.json
+- ./fonts/icomoon.ttf => assets/icomoon/icomoon.ttf
+
+9. Generate new types for icons
+
+- run script generating icon types `yarn generate:icon:types`
+
## License
[MIT](https://choosealicense.com/licenses/mit/)
## Feedback
-If you have any feedback, please reach out to me at kacgrzes@gmail.com
+If you have any feedback, please reach out to me at mateusz.rostkowsky995@gmail.com
## Contributors
-- [@kacgrzes](https://www.github.com/kacgrzes)
-- [@MateuszRostkowski](https://www.github.com/MateuszRostkowski)
+- [Kacper Grzeszczyk](https://www.github.com/kacgrzes) - @kacgrzes
+- [Mateusz Rostkowski](https://www.github.com/MateuszRostkowski) - @MateuszRostkowski
+- [Michał Szalowski](https://www.github.com/MSzalowski) - @MSzalowski
+- [Jakub Zagórski](https://www.github.com/zagoorland) - @zagoorland
+- [Łukasz Patalan](https://github.com/lukasz-patalan) - @lukasz
+- [Mario Gliwa](https://github.com/mario688) - @mario688
+- [Michał Baumruck](https://github.com/micbaumr) - @micbaumr
+- [Andrzej Zaborski](https://github.com/AnMiZa) - @AnMiZa
+- [Bartłomiej Sworzeń](https://github.com/Sworzen1) - @Sworzen1
+- [Karol Andracki](https://github.com/Karol-Andracki) - @karol-andracki
+- [Weronika Grzeszczyk](https://github.com/vercia) - @vercia
+
+## Similar packages
+
+- https://github.com/obytes/react-native-template-obytes
+- https://github.com/infinitered/ignite
+- https://github.com/wataru-maeda/react-native-boilerplate
+
+### Outdated
+
+- https://github.com/kacgrzes/expo-typescript-template (our repo is for of this one)
+- https://github.com/codingki/react-native-expo-template
+- https://github.com/flatlogic/react-native-starter
+- https://github.com/mcnamee/react-native-expo-starter-kit
diff --git a/ReactotronConfig.ts b/ReactotronConfig.ts
new file mode 100644
index 00000000..46372cd4
--- /dev/null
+++ b/ReactotronConfig.ts
@@ -0,0 +1,35 @@
+import AsyncStorage from '@react-native-async-storage/async-storage'
+import { NativeModules } from 'react-native'
+import Reactotron from 'reactotron-react-native'
+
+/**
+ * Note:
+ * If using an Android device or emulator run the following command to make sure it can connect to Reactotron:
+ * adb reverse tcp:9090 tcp:9090
+ * (9090 is the default port for Reactotron)
+ * See: https://github.com/infinitered/reactotron/blob/master/docs/quick-start-react-native.md#configure-reactotron-with-your-project
+ */
+
+let scriptHostname
+if (__DEV__) {
+ const scriptURL = NativeModules.SourceCode.scriptURL
+ scriptHostname = scriptURL.split('://')[1].split(':')[0]
+}
+
+Reactotron?.setAsyncStorageHandler?.(AsyncStorage)
+ .configure({
+ name: 'Reactotron In Expo demo',
+ host: scriptHostname,
+ })
+ .useReactNative({
+ asyncStorage: false,
+ networking: {
+ ignoreUrls: /symbolicate|127.0.0.1/,
+ },
+ editor: false,
+ errors: { veto: (stackFrame) => false },
+ overlay: false,
+ })
+ .connect()
+
+console.log = Reactotron.log || console.log
diff --git a/TODO.md b/TODO.md
index 542c18d3..03c79d96 100644
--- a/TODO.md
+++ b/TODO.md
@@ -1,13 +1,9 @@
## Todo;
-CI / CD
-
-- zmienne środowiskowe: Dev, UAT (User Acceptance Testing), and Production (https://blog.expo.dev/guest-post-expo-react-native-at-payright-part-1-c52b5d3dcb7)
-- podpiecie CI / CD (https://blog.expo.dev/guest-post-expo-react-native-at-payright-part-2-78a6fa480d59)
+- environment variables: Dev, UAT (User Acceptance Testing), and Production (https://blog.expo.dev/guest-post-expo-react-native-at-payright-part-1-c52b5d3dcb7)
- eas json config: https://docs.expo.dev/build/eas-json/
- bitrise
- gitlab
-
- ARIA: https://react-native-aria.geekyants.com/
- BLURHASH: https://github.com/mrousavy/react-native-blurhash
- nice components:
@@ -19,7 +15,7 @@ CI / CD
- compare miragejs with mws: https://mswjs.io/
- add instructions to https://github.com/welldone-software/why-did-you-render
- react-query react-native devtools: https://github.com/bgaleotti/react-query-native-devtools
-- sprawdzic dlaczego auto import nie dziala z tyldami
+- check why auto import doesn't work with tildes
- typical auth flow - https://i.redd.it/x7wkhwkz05g71.png
- take a look at the other app from Tom and get some ideas from there
- check RN Europe on YT (from Callstack)
@@ -61,7 +57,6 @@ CI / CD
- add easy scripts to easy deploy, build and do all the necessary stuff
- add figma link on how to setup icon and splash screen to readme
- add hidden developer / admin menu
-- add language switch
- how to add custom vector icons set to the app? - include this in the docs
- https://github.com/expo/expo-preview-action
- run custom snack: https://github.com/expo/snack
@@ -74,6 +69,8 @@ CI / CD
- theme - DONE
- ThemeProvider - DONE
- Dark / Light theme switch - DONE
+- expo-notifications - DONE
+- add language switch - DONE
## Nice articles:
@@ -87,4 +84,3 @@ CI / CD
## Other templates:
- https://github.com/ReactNativeSchool/expo-typescript-template
--
diff --git a/app.config.ts b/app.config.ts
index ecddddf7..6a53c34f 100644
--- a/app.config.ts
+++ b/app.config.ts
@@ -1,10 +1,117 @@
import { ExpoConfig, ConfigContext } from '@expo/config'
+import * as dotenv from 'dotenv'
+dotenv.config()
+
+const environments = {
+ prod: 'production',
+ stg: 'staging',
+ qa: 'qa',
+} as const
+
+export const envValues = Object.values(environments)
+export type Environments = (typeof envValues)[number]
+
+const adaptiveIconPath = './assets/icons/android/adaptive-icon-'
+const appIconPath = './assets/icons/ios/icon-'
+const faviconPath = './assets/icons/web/favicon-'
+
+// APP_CONFIG_START
+export const APP_CONFIG = {
+ androidPackageName: 'your_android_package_name', // CONFIG: Add your android package name here
+ appName: 'Template', // CONFIG: Add your app name here
+ easProjectId: 'ac562c27-4a4e-4532-869f-fe6f9447bee6', // CONFIG: Add your eas project ID here
+ iosBundleIdentifier: 'your.ios.bundle.identifier', // CONFIG: Add your ios bundle identifier here
+ scheme: 'your_url_scheme', // CONFIG: Add your url scheme to link to your app
+ adaptiveIconBackgroundColor: '#2E7AF0CC', // CONFIG: Add your android adaptive icon background color here
+} as const
+// APP_CONFIG_END
+
+const IS_DEV = process.env.IS_DEV === '1'
+
+const runtimeVersion = { policy: IS_DEV ? 'sdkVersion' : 'appVersion' } as const
+
+type Setup = { [key in Environments]: string }
+export const EAS_ENV_CONFIG: { [key: string]: Setup } = {
+ adaptiveIconBackgroundColor: {
+ production: APP_CONFIG.adaptiveIconBackgroundColor,
+ staging: '#0064FF', // TODO: Randomize APP_CONFIG.adaptiveIconBackgroundColor
+ qa: '#041939', // TODO: Randomize APP_CONFIG.adaptiveIconBackgroundColor
+ },
+ adaptiveIcon: {
+ production: `${adaptiveIconPath}production.png`,
+ staging: `${adaptiveIconPath}staging.png`,
+ qa: `${adaptiveIconPath}qa.png`,
+ },
+ androidPackageName: {
+ production: `${APP_CONFIG.androidPackageName}`,
+ staging: `${APP_CONFIG.androidPackageName}.stg`,
+ qa: `${APP_CONFIG.androidPackageName}.qa`,
+ },
+ appIcon: {
+ production: `${appIconPath}production.png`,
+ staging: `${appIconPath}staging.png`,
+ qa: `${appIconPath}qa.png`,
+ },
+ appName: {
+ production: `${APP_CONFIG.appName}`,
+ staging: `${APP_CONFIG.appName} (staging)`,
+ qa: `${APP_CONFIG.appName} (qa)`,
+ },
+ favicon: {
+ production: `${faviconPath}production.png`,
+ staging: `${faviconPath}staging.png`,
+ qa: `${faviconPath}qa.png`,
+ },
+ iosBundleIdentifier: {
+ production: `${APP_CONFIG.iosBundleIdentifier}`,
+ staging: `${APP_CONFIG.iosBundleIdentifier}.stg`,
+ qa: `${APP_CONFIG.iosBundleIdentifier}.qa`,
+ },
+ scheme: {
+ production: `${APP_CONFIG.scheme}`,
+ staging: `${APP_CONFIG.scheme}-stg`,
+ qa: `${APP_CONFIG.scheme}-qa`,
+ },
+} as const
+
+// CONFIG: Add your eas build config here !! More details about the following parameters, and other available configs -> https://docs.expo.dev/build-reference/eas-json/
export default ({ config }: ConfigContext): Partial => {
+ const ENVIRONMENT = (process.env.ENVIRONMENT || 'qa') as Environments
+
+ if (!envValues.includes(ENVIRONMENT)) {
+ throw Error(`${ENVIRONMENT} setup missing`)
+ }
+
return {
...config,
+ android: {
+ ...config.android,
+ adaptiveIcon: {
+ backgroundColor: EAS_ENV_CONFIG.adaptiveIconBackgroundColor[ENVIRONMENT],
+ foregroundImage: EAS_ENV_CONFIG.adaptiveIcon[ENVIRONMENT],
+ },
+ package: EAS_ENV_CONFIG.androidPackageName[ENVIRONMENT],
+ },
extra: {
+ eas: { projectId: APP_CONFIG.easProjectId },
+ ENVIRONMENT,
+ ...process.env,
universalLinks: [],
},
+ icon: EAS_ENV_CONFIG.appIcon[ENVIRONMENT],
+ ios: {
+ ...config.ios,
+ bundleIdentifier: EAS_ENV_CONFIG.iosBundleIdentifier[ENVIRONMENT],
+ },
+ name: EAS_ENV_CONFIG.appName[ENVIRONMENT],
+ owner: config.owner || 'binarapps',
+ runtimeVersion,
+ scheme: EAS_ENV_CONFIG.scheme[ENVIRONMENT],
+ updates: { url: `https://u.expo.dev/${APP_CONFIG.easProjectId}` },
+ web: {
+ ...config.web,
+ favicon: EAS_ENV_CONFIG.favicon[ENVIRONMENT],
+ },
}
}
diff --git a/app.json b/app.json
index 1b58d84c..2fe175e8 100644
--- a/app.json
+++ b/app.json
@@ -1,36 +1,26 @@
{
"expo": {
+ "android": {
+ "jsEngine": "hermes"
+ },
+ "assetBundlePatterns": ["**/*"],
+ "ios": {
+ "jsEngine": "hermes",
+ "supportsTablet": true
+ },
"name": "Template",
- "slug": "expo-typescript-template",
- "scheme": "template",
- "version": "1.0.0",
- "owner": "binarapps",
- "userInterfaceStyle": "automatic",
"orientation": "portrait",
- "icon": "./assets/icon.png",
+ "owner": "binarapps",
+ "slug": "expo-typescript-template",
"splash": {
+ "backgroundColor": "#ffffff",
"image": "./assets/splash.png",
- "resizeMode": "contain",
- "backgroundColor": "#ffffff"
+ "resizeMode": "cover"
},
"updates": {
"fallbackToCacheTimeout": 0
},
- "assetBundlePatterns": ["**/*"],
- "ios": {
- "supportsTablet": true,
- "jsEngine": "hermes",
- "bundleIdentifier": "com.binarapps.template.dev"
- },
- "android": {
- "adaptiveIcon": {
- "foregroundImage": "./assets/adaptive-icon.png",
- "backgroundColor": "#FFFFFF"
- },
- "jsEngine": "hermes"
- },
- "web": {
- "favicon": "./assets/favicon.png"
- }
+ "userInterfaceStyle": "automatic",
+ "version": "1.0.0"
}
}
diff --git a/assets/icomoon/icomoon.ttf b/assets/icomoon/icomoon.ttf
new file mode 100644
index 00000000..2fd3dec8
Binary files /dev/null and b/assets/icomoon/icomoon.ttf differ
diff --git a/assets/icomoon/selection.json b/assets/icomoon/selection.json
new file mode 100644
index 00000000..8d9f10e7
--- /dev/null
+++ b/assets/icomoon/selection.json
@@ -0,0 +1,51747 @@
+{
+ "IcoMoonType": "selection",
+ "icons": [
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v597.333h682.667v-597.333zM768 298.667v426.667h-85.333v-426.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-right-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 51,
+ "id": 2298,
+ "name": "layout-right-2-line",
+ "prevSize": 32,
+ "code": 59648
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 0
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 554.667l297.131 173.312-126.848 36.267 90.667 157.056-73.899 42.667-90.667-157.013-94.848 91.733-1.536-344.021zM597.333 256h85.333v85.333h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h-85.333v-128h-426.667v426.667h170.667v85.333h-213.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h-85.333v-85.333h85.333v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333v-85.333zM170.667 597.333v85.333h-85.333v-85.333h85.333zM170.667 426.667v85.333h-85.333v-85.333h85.333zM170.667 256v85.333h-85.333v-85.333h85.333zM170.667 85.333v85.333h-85.333v-85.333h85.333zM341.333 85.333v85.333h-85.333v-85.333h85.333zM512 85.333v85.333h-85.333v-85.333h85.333zM682.667 85.333v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drag-drop-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 52,
+ "id": 2297,
+ "name": "drag-drop-line",
+ "prevSize": 32,
+ "code": 59649
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM170.667 682.667v128h682.667v-128h-682.667zM170.667 597.333h682.667v-384h-682.667v384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-bottom-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 53,
+ "id": 2296,
+ "name": "layout-bottom-line",
+ "prevSize": 32,
+ "code": 59650
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 132.265l-211.2 211.2c-41.766 41.771-70.208 94.99-81.73 152.923s-5.605 117.986 17.001 172.557c22.606 54.575 60.887 101.218 110.002 134.033s106.859 50.334 165.927 50.334c59.068 0 116.813-17.519 165.926-50.334s87.398-79.458 110.003-134.033c22.605-54.571 28.523-114.624 17.003-172.557-11.524-57.933-39.966-111.152-81.732-152.923l-211.2-211.2zM512 11.604l271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.614 14.814 74.487 7.211 151.697-21.854 221.867-29.065 70.165-78.281 130.138-141.431 172.331-63.147 42.197-137.391 64.717-213.338 64.717s-150.19-22.519-213.338-64.717c-63.148-42.193-112.367-102.165-141.431-172.331-29.064-70.17-36.669-147.379-21.853-221.867s51.388-142.91 105.091-196.614l271.531-271.531z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drop-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 54, "id": 2295, "name": "drop-line", "prevSize": 32, "code": 59651 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 3
+ },
+ {
+ "icon": {
+ "paths": [
+ "M572.331 256.001l78.037 77.995-60.373 60.373-180.992-181.035 180.992-181.035 60.373 60.373-78.037 77.995h110.336c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849v170.666h-85.333v-170.666c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49h-110.336zM640 469.333v426.667c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17zM554.667 512h-341.333v341.333h341.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["anticlockwise-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 55,
+ "id": 2294,
+ "name": "anticlockwise-2-line",
+ "prevSize": 32,
+ "code": 59652
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 4
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 213.333v128h597.333v-128h-597.333zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM256 512h256c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v128h42.667v256h-170.667v-256h42.667v-85.333h-256c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-85.333h85.333v42.667zM756.565 585.899l75.435-75.435 75.435 75.435c14.916 14.921 25.071 33.924 29.184 54.618 4.113 20.689 2.001 42.133-6.076 61.623-8.073 19.49-21.743 36.147-39.283 47.868-17.545 11.716-38.165 17.971-59.26 17.971s-41.715-6.255-59.26-17.971c-17.54-11.721-31.211-28.378-39.283-47.868-8.077-19.49-10.189-40.934-6.076-61.623 4.113-20.693 14.268-39.697 29.184-54.618v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["paint-brush-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 56,
+ "id": 2293,
+ "name": "paint-brush-line",
+ "prevSize": 32,
+ "code": 59653
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 5
+ },
+ {
+ "icon": {
+ "paths": [
+ "M650.368 192.64l-287.488 287.445-30.165 90.496-44.373 44.416 120.661 120.704 44.373-44.416 90.539-30.165 287.445-287.488-180.992-180.992zM921.899 343.467c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-331.904 331.904-90.453 30.165-60.373 60.331c-8 8-18.851 12.493-30.165 12.493s-22.164-4.493-30.165-12.493l-181.035-181.035c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l60.331-60.331 30.165-90.496 331.904-331.904c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l241.365 241.365zM650.368 313.302l60.331 60.331-211.2 211.2-60.331-60.331 211.2-211.2zM182.742 720.64l120.661 120.704-60.331 60.331-181.035-60.331 120.704-120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mark-pen-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 57,
+ "id": 2292,
+ "name": "mark-pen-line",
+ "prevSize": 32,
+ "code": 59654
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 6
+ },
+ {
+ "icon": {
+ "paths": [
+ "M541.184 171.904c-69.743-5.982-139.639 9.622-200.215 44.698s-108.904 87.929-138.433 151.395c-29.529 63.465-38.831 134.475-26.647 203.407 12.184 68.928 45.267 132.446 94.764 181.943s113.014 82.577 181.943 94.763c68.932 12.186 139.942 2.88 203.409-26.645 63.462-29.53 116.318-77.858 151.394-138.436 35.076-60.574 50.679-130.47 44.698-200.213-2.991-35.849-11.678-70.991-25.728-104.107l64-64.085c31.868 60.902 48.444 128.64 48.299 197.376 0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c0-235.648 191.019-426.667 426.667-426.667 68.723-0.061 136.444 16.51 197.376 48.299l-64.043 64c-33.118-14.048-68.258-22.733-104.107-25.728h-0.043zM874.027 89.6l60.373 60.373-392.192 392.192-60.245 0.128-0.085-60.459 392.149-392.235z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 58,
+ "id": 2291,
+ "name": "edit-circle-line",
+ "prevSize": 32,
+ "code": 59655
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 7
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 384l186.496 74.624c16.213 6.443 26.837 22.187 26.837 39.595v397.781c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-397.781c0-17.451 10.624-33.152 26.837-39.595l186.496-74.624h341.333zM666.24 469.333h-308.48l-144.427 57.771v326.229h597.333v-42.667h-469.333v-213.333h469.333v-70.229l-144.427-57.771zM682.667 128c23.552 0 42.667 19.115 42.667 42.667v170.667h-426.667v-170.667c0-23.552 19.115-42.667 42.667-42.667h341.333zM640 213.333h-256v42.667h256v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ink-bottle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 59,
+ "id": 2290,
+ "name": "ink-bottle-line",
+ "prevSize": 32,
+ "code": 59656
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 8
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 451.669l77.995-78.037 60.373 60.373-181.035 180.992-181.035-180.992 60.373-60.373 77.995 78.037v-110.336c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49h-170.667v-85.333h170.667c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849v110.336zM554.667 384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667zM512 469.333h-341.333v341.333h341.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clockwise-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 60,
+ "id": 2289,
+ "name": "clockwise-line",
+ "prevSize": 32,
+ "code": 59657
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 9
+ },
+ {
+ "icon": {
+ "paths": [
+ "M245.93 341.335l-12.587-31.147c-2.1-5.197-3.155-10.756-3.106-16.361s1.203-11.145 3.394-16.303c2.191-5.159 5.377-9.836 9.376-13.763s8.733-7.028 13.93-9.125l395.606-159.829c10.483-4.23 22.221-4.125 32.627 0.291s18.637 12.782 22.882 23.261l239.787 593.406c2.099 5.197 3.153 10.756 3.106 16.363-0.051 5.606-1.203 11.145-3.396 16.303-2.189 5.158-5.376 9.835-9.374 13.764-3.998 3.925-8.734 7.027-13.931 9.122l-395.605 159.829c-5.197 2.103-10.756 3.157-16.363 3.106-5.602-0.047-11.145-1.203-16.303-3.392-5.158-2.193-9.835-5.376-13.76-9.378-3.93-3.998-7.031-8.73-9.126-13.931l-3.755-9.259v1.707h-170.667c-11.316 0-22.168-4.493-30.17-12.497-8.002-8-12.497-18.85-12.497-30.17v-11.52l-142.933-57.728c-10.49-4.241-18.864-12.48-23.281-22.895-4.417-10.419-4.515-22.165-0.271-32.657l156.416-387.198zM341.333 810.667h94.251l-94.251-233.259v233.259zM256 544.256l-71.381 176.683 71.381 30.336v-207.019zM328.448 317.74l207.787 514.302 316.501-127.872-207.787-514.26-316.502 127.829zM455.509 404.482c-10.496 4.238-22.246 4.133-32.663-0.292-10.418-4.425-18.651-12.807-22.889-23.302s-4.133-22.245 0.292-32.663c4.425-10.418 12.807-18.652 23.302-22.889 10.496-4.244 22.247-4.144 32.67 0.277 10.419 4.421 18.658 12.801 22.903 23.296s4.143 22.247-0.277 32.669c-4.42 10.422-12.8 18.661-23.296 22.905h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pantone-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 61,
+ "id": 2288,
+ "name": "pantone-line",
+ "prevSize": 32,
+ "code": 59658
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 10
+ },
+ {
+ "icon": {
+ "paths": [
+ "M451.669 170.668l-78.037-77.995 60.373-60.373 180.992 181.035-180.992 181.035-60.373-60.373 78.037-77.995h-110.336c-33.948 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51v170.666h-85.333v-170.666c0-56.579 22.476-110.842 62.484-150.849s94.27-62.484 150.849-62.484h110.336zM384 469.333c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-426.667zM469.333 512v341.333h341.333v-341.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clockwise-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 62,
+ "id": 2287,
+ "name": "clockwise-2-line",
+ "prevSize": 32,
+ "code": 59659
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 11
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM170.667 426.667v384h682.667v-384h-682.667zM170.667 341.333h682.667v-128h-682.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-top-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 63,
+ "id": 2286,
+ "name": "layout-top-line",
+ "prevSize": 32,
+ "code": 59660
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 12
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 213.333v597.333h597.333v-597.333h-597.333zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM554.667 426.667v298.667h-85.333v-298.667h-170.667v-85.333h426.667v85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 64,
+ "id": 2285,
+ "name": "t-box-line",
+ "prevSize": 32,
+ "code": 59661
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 13
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 896c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768zM298.667 426.667h-128v384h128v-384zM853.333 426.667h-469.333v384h469.333v-384zM853.333 213.333h-682.667v128h682.667v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 65,
+ "id": 2284,
+ "name": "layout-5-line",
+ "prevSize": 32,
+ "code": 59662
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 14
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667zM469.333 554.667h-256v256h256v-256zM554.667 810.667h256v-597.333h-256v597.333zM469.333 213.333h-256v256h256v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 66,
+ "id": 2283,
+ "name": "layout-4-line",
+ "prevSize": 32,
+ "code": 59663
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 15
+ },
+ {
+ "icon": {
+ "paths": [
+ "M648.491 424.321c-18.505-17.531-30.409-40.9-33.707-66.176l-17.195-131.541-116.48 63.403c-22.396 12.204-48.311 16.317-73.387 11.648l-130.389-24.32 24.32 130.389c4.669 25.074 0.556 50.99-11.648 73.385l-63.403 116.48 131.541 17.195c25.261 3.311 48.614 15.211 66.133 33.707l91.221 96.299 57.003-119.765c10.94-23.014 29.474-41.562 52.48-52.523l119.808-57.003-96.299-91.177zM649.557 661.675l-94.421 198.4c-1.788 3.755-4.459 7.014-7.787 9.502s-7.211 4.126-11.315 4.779c-4.105 0.649-8.303 0.29-12.237-1.045-3.938-1.335-7.488-3.605-10.347-6.622l-151.125-159.531c-4.037-4.258-9.414-6.997-15.232-7.765l-217.899-28.501c-4.116-0.542-8.040-2.078-11.431-4.471-3.391-2.398-6.148-5.585-8.034-9.284s-2.843-7.804-2.789-11.955c0.053-4.151 1.116-8.226 3.096-11.878l105.045-193.024c2.793-5.163 3.727-11.127 2.645-16.895l-40.235-216.021c-0.764-4.089-0.52-8.303 0.71-12.276s3.411-7.587 6.352-10.528c2.941-2.941 6.555-5.122 10.528-6.352s8.187-1.475 12.276-0.71l216.021 40.235c5.769 1.081 11.733 0.147 16.896-2.645l193.024-105.045c3.652-1.981 7.731-3.043 11.887-3.094s8.26 0.91 11.959 2.8c3.703 1.89 6.886 4.653 9.28 8.049s3.925 7.324 4.463 11.445l28.501 217.856c0.768 5.817 3.507 11.194 7.765 15.232l159.531 151.124c3.017 2.863 5.286 6.413 6.622 10.347s1.694 8.132 1.041 12.237c-0.649 4.105-2.291 7.987-4.779 11.315s-5.747 6.003-9.498 7.787l-198.4 94.421c-5.312 2.53-9.591 6.805-12.117 12.117v0zM683.563 743.893l60.331-60.331 181.035 180.992-60.373 60.373-180.992-181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["magic-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 67,
+ "id": 2282,
+ "name": "magic-line",
+ "prevSize": 32,
+ "code": 59664
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 16
+ },
+ {
+ "icon": {
+ "paths": [
+ "M708.096 44.374l270.805 270.763c2.79 2.786 4.753 6.29 5.675 10.125 0.917 3.834 0.755 7.849-0.469 11.597s-3.46 7.084-6.468 9.636c-3.004 2.552-6.66 4.222-10.556 4.823l-62.891 9.813-241.323-241.323 9.045-63.36c0.563-3.918 2.202-7.602 4.74-10.641s5.867-5.311 9.621-6.564c3.755-1.253 7.787-1.437 11.639-0.531s7.377 2.866 10.18 5.661v0zM196.053 859.733c158.805-142.123 341.12-184.661 539.435-235.52l19.029-171.435-183.339-183.338-171.435 19.029c-50.859 198.314-93.397 380.586-235.52 539.434l-59.52-59.477c120.661-140.8 165.973-296.661 226.261-558.122l271.531-30.165 241.365 241.365-30.165 271.53c-261.461 60.331-417.365 105.6-558.123 226.261l-59.52-59.563zM421.504 602.453c-8.15-7.872-14.651-17.289-19.123-27.699s-6.826-21.606-6.925-32.939c-0.099-11.328 2.061-22.566 6.351-33.054s10.627-20.015 18.639-28.028c8.012-8.013 17.54-14.349 28.027-18.637 10.487-4.292 21.722-6.451 33.054-6.353s22.528 2.453 32.939 6.925c10.411 4.471 19.827 10.974 27.699 19.123 15.33 16.132 23.753 37.611 23.471 59.866-0.282 22.251-9.242 43.511-24.973 59.251-15.735 15.735-36.992 24.708-59.247 24.994-22.251 0.29-43.733-8.124-59.87-23.45h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pen-nib-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 68,
+ "id": 2281,
+ "name": "pen-nib-line",
+ "prevSize": 32,
+ "code": 59665
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 17
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 384h426.667c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v426.667c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-426.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM512 469.333v341.333h341.333v-341.333h-341.333zM256.001 451.669l77.995-78.037 60.373 60.373-181.035 180.992-181.035-180.992 60.373-60.373 77.995 78.037v-110.336c0-56.579 22.476-110.842 62.484-150.849s94.27-62.484 150.849-62.484h170.666v85.333h-170.666c-33.948 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51v110.336z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["anticlockwise-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 69,
+ "id": 2280,
+ "name": "anticlockwise-line",
+ "prevSize": 32,
+ "code": 59666
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 18
+ },
+ {
+ "icon": {
+ "paths": [
+ "M696.747 576c35.533-27.925 64.252-63.561 83.985-104.213 19.738-40.653 29.973-85.263 29.935-130.453h85.333c0.043 60.178-14.076 119.522-41.22 173.231s-66.547 100.275-115.025 135.932l107.861 186.795c11.315 19.601 14.383 42.893 8.525 64.751s-20.16 40.499-39.757 51.814l-150.485-260.608c-48.525 21.231-100.932 32.154-153.899 32.085-52.966 0.068-105.372-10.854-153.899-32.085l-150.485 260.608c-19.599-11.315-33.9-29.956-39.756-51.814s-2.791-45.15 8.524-64.751l216.021-374.187c-21.548-21.188-37.088-47.712-45.032-76.869s-8.009-59.898-0.186-89.088c7.822-29.189 23.251-55.779 44.71-77.056s48.179-36.477 77.436-44.049v-90.709h85.333v90.709c29.257 7.572 55.979 22.772 77.436 44.049 21.461 21.277 36.89 47.867 44.71 77.056s7.757 59.932-0.188 89.088c-7.945 29.156-23.484 55.68-45.030 76.869l65.152 112.896zM622.933 618.752l-65.195-112.939c-29.897 8.299-61.491 8.299-91.392 0l-65.195 112.939c34.304 13.696 71.68 21.248 110.891 21.248 39.168 0 76.587-7.552 110.891-21.248zM512 426.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compasses-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 70,
+ "id": 2279,
+ "name": "compasses-2-line",
+ "prevSize": 32,
+ "code": 59667
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 19
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 132.265l-211.2 211.2c-41.766 41.771-70.208 94.99-81.73 152.923s-5.605 117.986 17.001 172.557c22.606 54.575 60.887 101.218 110.002 134.033s106.859 50.334 165.927 50.334c59.068 0 116.813-17.519 165.926-50.334s87.398-79.458 110.003-134.033c22.605-54.571 28.523-114.624 17.003-172.557-11.524-57.933-39.966-111.152-81.732-152.923l-211.2-211.2zM512 11.604l271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.614 14.814 74.487 7.211 151.697-21.854 221.867-29.065 70.165-78.281 130.138-141.431 172.331-63.147 42.197-137.391 64.717-213.338 64.717s-150.19-22.519-213.338-64.717c-63.148-42.193-112.367-102.165-141.431-172.331-29.064-70.17-36.669-147.379-21.853-221.867s51.388-142.91 105.091-196.614l271.531-271.531zM512 768v-426.668c56.58 0 110.844 22.476 150.848 62.484 40.009 40.007 62.485 94.27 62.485 150.851s-22.477 110.839-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-drop-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 71,
+ "id": 2278,
+ "name": "contrast-drop-line",
+ "prevSize": 32,
+ "code": 59668
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 20
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 176.043v-90.709h85.333v90.709c29.257 7.572 55.979 22.772 77.436 44.049 21.461 21.277 36.89 47.867 44.71 77.056s7.757 59.932-0.188 89.088c-7.945 29.156-23.484 55.68-45.030 76.869l258.688 448.085-73.899 42.667-258.688-448.043c-29.897 8.299-61.491 8.299-91.392 0l-258.688 448.043-73.899-42.667 258.688-448.085c-21.548-21.188-37.088-47.712-45.032-76.869s-8.009-59.898-0.186-89.088c7.822-29.189 23.251-55.779 44.71-77.056s48.179-36.477 77.436-44.049v0zM512 426.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compasses-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 72,
+ "id": 2277,
+ "name": "compasses-line",
+ "prevSize": 32,
+ "code": 59669
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 21
+ },
+ {
+ "icon": {
+ "paths": [
+ "M358.997 725.333h281.003v85.333h-384c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-469.333h-128v-85.333h128v-128h85.333v579.669l366.336-366.336h-281.003v-85.333h366.336l109.056-109.056 60.331 60.331-109.056 109.056v451.669h128v85.333h-128v128h-85.333v-579.669l-366.336 366.336z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["crop-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 73,
+ "id": 2276,
+ "name": "crop-2-line",
+ "prevSize": 32,
+ "code": 59670
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 22
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 682.667h-682.667v128h682.667v-128zM341.333 213.333h-170.667v384h170.667v-384zM597.333 213.333h-170.667v384h170.667v-384zM853.333 213.333h-170.667v384h170.667v-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["table-alt-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 74,
+ "id": 2275,
+ "name": "table-alt-line",
+ "prevSize": 32,
+ "code": 59671
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 23
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v597.333h682.667v-597.333zM768 640v85.333h-512v-85.333h512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-bottom-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 75,
+ "id": 2274,
+ "name": "layout-bottom-2-line",
+ "prevSize": 32,
+ "code": 59672
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 24
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667zM469.333 213.333h-256v597.333h256v-597.333zM810.667 554.667h-256v256h256v-256zM810.667 213.333h-256v256h256v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 76,
+ "id": 2273,
+ "name": "layout-2-line",
+ "prevSize": 32,
+ "code": 59673
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 25
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 896c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667zM341.333 426.667h-128v384h128v-384zM810.667 426.667h-384v384h384v-384zM810.667 213.333h-597.333v128h597.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 77,
+ "id": 2272,
+ "name": "layout-3-line",
+ "prevSize": 32,
+ "code": 59674
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 26
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v597.333h682.667v-597.333zM768 298.667v85.333h-512v-85.333h512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-top-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 78,
+ "id": 2271,
+ "name": "layout-top-2-line",
+ "prevSize": 32,
+ "code": 59675
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 27
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972v0zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 597.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["focus-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 79,
+ "id": 2270,
+ "name": "focus-line",
+ "prevSize": 32,
+ "code": 59676
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 28
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972v0zM298.667 653.653c91.949-6.605 178.419-46.199 243.499-111.488 65.289-65.079 104.883-151.55 111.488-243.499 31.526 21.004 57.997 48.742 77.508 81.216 19.507 32.473 31.565 68.869 35.302 106.569 3.738 37.696-0.934 75.755-13.683 111.424-12.753 35.674-33.259 68.070-60.049 94.857-26.786 26.79-59.183 47.296-94.857 60.049-35.669 12.749-73.728 17.421-111.424 13.683-37.7-3.738-74.096-15.795-106.569-35.302-32.473-19.511-60.212-45.982-81.216-77.508v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 80,
+ "id": 2269,
+ "name": "contrast-2-line",
+ "prevSize": 32,
+ "code": 59677
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 29
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 341.333v512h170.667v-512h-170.667zM128 298.667l170.667-213.333 170.667 213.333v640h-341.333v-640zM810.667 682.667v-85.333h-128v-85.333h128v-85.333h-85.333v-85.333h85.333v-85.333h-170.667v597.333h170.667v-85.333h-85.333v-85.333h85.333zM597.333 170.667h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-256c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pencil-ruler-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 81,
+ "id": 2268,
+ "name": "pencil-ruler-line",
+ "prevSize": 32,
+ "code": 59678
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 30
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM298.667 213.333h-128v597.333h128v-597.333zM853.333 213.333h-469.333v597.333h469.333v-597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-left-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 82,
+ "id": 2267,
+ "name": "layout-left-line",
+ "prevSize": 32,
+ "code": 59679
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 31
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM469.333 554.667h-298.667v256h298.667v-256zM853.333 554.667h-298.667v256h298.667v-256zM469.333 213.333h-298.667v256h298.667v-256zM853.333 213.333h-298.667v256h298.667v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-grid-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 83,
+ "id": 2266,
+ "name": "layout-grid-line",
+ "prevSize": 32,
+ "code": 59680
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 32
+ },
+ {
+ "icon": {
+ "paths": [
+ "M273.664 682.667l432.725-432.727-60.331-60.331-432.725 432.727v60.331h60.331zM309.035 768h-181.035v-181.035l487.893-487.895c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l120.704 120.704c8 8.001 12.493 18.852 12.493 30.165s-4.493 22.164-12.493 30.165l-487.893 487.895zM128 853.333h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 84, "id": 2265, "name": "edit-line", "prevSize": 32, "code": 59681 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 33
+ },
+ {
+ "icon": {
+ "paths": [
+ "M403.030 342.699l108.97 108.97 287.061-287.061c16.004-15.997 37.705-24.984 60.331-24.984s44.331 8.987 60.331 24.984l-516.693 516.693c21.099 35.785 28.424 78.033 20.598 118.827-7.824 40.798-30.258 77.342-63.098 102.78s-73.83 38.025-115.286 35.405c-41.457-2.624-80.535-20.275-109.908-49.647-29.373-29.376-47.025-68.45-49.647-109.909-2.622-41.455 9.966-82.445 35.404-115.285s61.981-55.275 102.777-63.1c40.797-7.821 83.046-0.499 118.828 20.599l108.97-108.971-108.97-108.97c-35.783 21.099-78.032 28.424-118.828 20.598-40.796-7.824-77.338-30.258-102.777-63.098s-38.026-73.83-35.404-115.286c2.622-41.457 20.273-80.535 49.647-109.908s68.451-47.025 109.908-49.647c41.457-2.622 82.447 9.966 115.286 35.404s55.274 61.981 63.098 102.777c7.826 40.797 0.5 83.046-20.598 118.828v0zM632.576 572.245l287.147 287.147c-16 16-37.705 24.986-60.331 24.986s-44.326-8.986-60.331-24.986l-226.859-226.816 60.373-60.331zM316.331 707.669c-7.872-8.149-17.288-14.652-27.699-19.123s-21.609-6.827-32.939-6.925c-11.33-0.098-22.567 2.061-33.054 6.353-10.487 4.288-20.015 10.624-28.027 18.637s-14.348 17.54-18.639 28.028c-4.291 10.487-6.45 21.726-6.351 33.054 0.099 11.332 2.452 22.528 6.925 32.939s10.973 19.827 19.123 27.699c16.094 15.543 37.649 24.145 60.023 23.953 22.374-0.196 43.777-9.169 59.599-24.994 15.821-15.821 24.796-37.222 24.99-59.597s-8.407-43.93-23.951-60.023v0zM316.331 316.331c8.15-7.872 14.651-17.288 19.123-27.699s6.826-21.609 6.925-32.939c0.099-11.33-2.060-22.567-6.351-33.054s-10.627-20.015-18.639-28.027c-8.012-8.012-17.54-14.348-28.027-18.639s-21.724-6.45-33.054-6.351c-11.331 0.099-22.528 2.452-32.939 6.925s-19.827 10.973-27.699 19.123c-15.544 16.094-24.145 37.649-23.951 60.023s9.169 43.777 24.99 59.599c15.822 15.821 37.225 24.796 59.599 24.99s43.93-8.407 60.023-23.951v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scissors-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 85,
+ "id": 2264,
+ "name": "scissors-line",
+ "prevSize": 32,
+ "code": 59682
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 34
+ },
+ {
+ "icon": {
+ "paths": [
+ "M669.44 551.168l75.477 75.435c-256.427 256.427-467.626 256.427-648.661 196.096l663.722-663.725 150.869 150.827-241.408 241.367zM548.779 551.168l241.365-241.367-30.165-30.165-490.581 490.583c116.565 4.565 228.608-38.699 352.725-145.749l-73.344-73.301z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slice-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 86,
+ "id": 2263,
+ "name": "slice-line",
+ "prevSize": 32,
+ "code": 59683
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 35
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 426.667h-170.667v170.667h170.667v-170.667zM682.667 426.667v170.667h128v-170.667h-128zM597.333 810.667v-128h-170.667v128h170.667zM682.667 810.667h128v-128h-128v128zM597.333 213.333h-170.667v128h170.667v-128zM682.667 213.333v128h128v-128h-128zM341.333 426.667h-128v170.667h128v-170.667zM341.333 810.667v-128h-128v128h128zM341.333 213.333h-128v128h128v-128zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["grid-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 87, "id": 2262, "name": "grid-line", "prevSize": 32, "code": 59684 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 36
+ },
+ {
+ "icon": {
+ "paths": [
+ "M714.965 127.999l-85.333 85.333h-416.299v597.334h597.333v-416.3l85.333-85.333v544.3c0 11.315-4.497 22.165-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497-8.001-8.004-12.497-18.854-12.497-30.17v-682.668c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h544.299zM874.027 89.599l60.373 60.416-392.192 392.193-60.245 0.128-0.085-60.459 392.149-392.278z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 88,
+ "id": 2261,
+ "name": "edit-box-line",
+ "prevSize": 32,
+ "code": 59685
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 37
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972v0zM512 768v-512c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 89,
+ "id": 2260,
+ "name": "contrast-line",
+ "prevSize": 32,
+ "code": 59686
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 38
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 896c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768zM640 426.667h-469.333v384h469.333v-384zM853.333 426.667h-128v384h128v-384zM853.333 213.333h-682.667v128h682.667v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-6-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 90,
+ "id": 2259,
+ "name": "layout-6-line",
+ "prevSize": 32,
+ "code": 59687
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 39
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.605 0 426.667 169.728 426.667 379.264-0.034 62.857-25.020 123.127-69.474 167.573-44.45 44.442-104.725 69.419-167.582 69.44h-83.883c-39.339 0-71.125 31.787-71.125 71.125 0 18.005 7.125 34.603 18.005 46.933 11.392 12.8 18.517 29.397 18.517 47.872 0 39.381-32.725 71.125-71.125 71.125-235.605 0-426.667-191.061-426.667-426.667s191.061-426.667 426.667-426.667zM461.269 772.736c-0.017-20.553 4.019-40.905 11.874-59.895 7.859-18.987 19.383-36.241 33.916-50.773s31.787-26.057 50.773-33.916c18.991-7.855 39.343-11.891 59.895-11.874h83.883c40.218-0.021 78.784-16.004 107.23-44.433s44.446-66.987 44.493-107.204c0-160.043-150.699-293.973-341.333-293.973-88.082-0.080-172.785 33.893-236.4 94.816s-101.215 144.080-104.94 232.083c-3.725 88.004 26.715 174.042 84.954 240.119 58.239 66.082 139.769 107.089 227.543 114.453-14.285-24.009-21.845-51.422-21.888-79.36v-0.043zM320 512c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.282 18.745 45.255c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743v0zM704 512c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.282 18.743 45.255c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743zM512 384c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["palette-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 91,
+ "id": 2258,
+ "name": "palette-line",
+ "prevSize": 32,
+ "code": 59688
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 40
+ },
+ {
+ "icon": {
+ "paths": [
+ "M366.336 377.94l-211.2 211.201 221.611 221.611h49.92v-0.085h50.006l161.195-161.195-271.531-271.532zM426.666 317.609l271.532 271.532 120.661-120.704-271.531-271.532-120.662 120.704zM597.333 810.667h298.667v85.333l-554.582 0.085-276.779-276.779c-7.999-8.004-12.492-18.854-12.492-30.165 0-11.315 4.493-22.165 12.492-30.165l452.481-452.567c3.964-3.967 8.666-7.114 13.845-9.261s10.735-3.252 16.341-3.252c5.606 0 11.157 1.105 16.337 3.252s9.886 5.294 13.85 9.261l331.861 331.863c8 8 12.493 18.85 12.493 30.165 0 11.311-4.493 22.161-12.493 30.165l-312.021 312.064z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eraser-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 92,
+ "id": 2257,
+ "name": "eraser-line",
+ "prevSize": 32,
+ "code": 59689
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 41
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333l181.035 181.035-60.373 60.331-120.661-120.704-120.661 120.704-60.373-60.331 181.035-181.035zM85.333 512l181.035-181.035 60.331 60.373-120.704 120.661 120.704 120.661-60.331 60.373-181.035-181.035zM938.667 512l-181.035 181.035-60.331-60.373 120.704-120.661-120.704-120.661 60.331-60.373 181.035 181.035zM512 597.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM512 938.667l-181.035-181.035 60.373-60.331 120.661 120.704 120.661-120.704 60.373 60.331-181.035 181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drag-move-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 93,
+ "id": 2256,
+ "name": "drag-move-line",
+ "prevSize": 32,
+ "code": 59690
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 42
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 810.667h85.333v-213.333h-384v-384h-213.333v85.333h85.333v85.333h-85.333v85.333h128v85.333h-128v85.333h85.333v85.333h-85.333v85.333h85.333v-85.333h85.333v85.333h85.333v-128h85.333v128h85.333v-85.333h85.333v85.333zM512 512h341.333c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ruler-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 94,
+ "id": 2255,
+ "name": "ruler-2-line",
+ "prevSize": 32,
+ "code": 59691
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 43
+ },
+ {
+ "icon": {
+ "paths": [
+ "M761.557 503.808l-30.165-30.165-422.4 422.4h-180.992v-181.035l482.688-482.729 241.365 241.364c8 8.004 12.493 18.854 12.493 30.165 0 11.315-4.493 22.165-12.493 30.165l-301.653 301.696-60.373-60.331 271.531-271.531zM671.061 413.313l-60.373-60.331-397.355 397.353v60.373h60.331l397.397-397.396zM791.723 111.617l120.704 120.661c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-60.373 60.373-180.992-181.035 60.331-60.331c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ball-pen-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 95,
+ "id": 2254,
+ "name": "ball-pen-line",
+ "prevSize": 32,
+ "code": 59692
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 44
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 213.333h-256v597.333h256v-597.333zM554.667 213.333v597.333h256v-597.333h-256zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-column-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 96,
+ "id": 2253,
+ "name": "layout-column-line",
+ "prevSize": 32,
+ "code": 59693
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 45
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 810.667h60.331l397.397-397.399-60.331-60.331-397.397 397.399v60.331zM896 896h-768v-181.035l573.227-573.228c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l120.704 120.704c8 8.001 12.493 18.852 12.493 30.165s-4.493 22.164-12.493 30.165l-487.893 487.895h501.632v85.333zM671.061 292.606l60.331 60.331 60.331-60.331-60.331-60.331-60.331 60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 97,
+ "id": 2252,
+ "name": "edit-2-line",
+ "prevSize": 32,
+ "code": 59694
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 46
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972v0zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 682.667c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.415-49.987 120.68s17.981 88.674 49.987 120.678c32.006 32.009 75.415 49.988 120.68 49.988v0zM512 768c-67.895 0-133.010-26.97-181.019-74.982-48.009-48.009-74.981-113.122-74.981-181.018s26.971-133.010 74.981-181.019c48.009-48.009 113.124-74.981 181.019-74.981s133.009 26.971 181.018 74.981c48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982zM512 597.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["focus-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 98,
+ "id": 2251,
+ "name": "focus-2-line",
+ "prevSize": 32,
+ "code": 59695
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 47
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 42.667l0.043 130.645c75.187 9.506 145.079 43.752 198.665 97.344s87.821 123.488 97.314 198.677h130.645v85.333l-130.645 0.043c-9.502 75.183-43.742 145.067-97.327 198.652s-123.469 87.825-198.652 97.327l-0.043 130.645h-85.333v-130.645c-75.189-9.493-145.084-43.729-198.677-97.314s-87.839-123.477-97.344-198.665l-130.645-0.043v-85.333h130.645c9.497-75.195 43.739-145.095 97.333-198.688s123.493-87.836 198.688-97.333v-130.645h85.333zM512 256c-67.895 0-133.010 26.971-181.019 74.981s-74.981 113.124-74.981 181.019c0 67.895 26.971 133.009 74.981 181.018 48.009 48.013 113.124 74.982 181.019 74.982s133.009-26.97 181.018-74.982c48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981zM512 426.667c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["focus-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 99,
+ "id": 2250,
+ "name": "focus-3-line",
+ "prevSize": 32,
+ "code": 59696
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 48
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 682.667h85.333v256h-256v-85.333h-341.333v85.333h-256v-256h85.333v-341.333h-85.333v-256h256v85.333h341.333v-85.333h256v256h-85.333v341.333zM768 682.667v-341.333h-85.333v-85.333h-341.333v85.333h-85.333v341.333h85.333v85.333h341.333v-85.333h85.333zM170.667 170.667v85.333h85.333v-85.333h-85.333zM170.667 768v85.333h85.333v-85.333h-85.333zM768 170.667v85.333h85.333v-85.333h-85.333zM768 768v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shape-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 100,
+ "id": 2249,
+ "name": "shape-2-line",
+ "prevSize": 32,
+ "code": 59697
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 49
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 469.333v-256h-597.333v256h597.333zM810.667 554.667h-597.333v256h597.333v-256zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-row-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 101,
+ "id": 2248,
+ "name": "layout-row-line",
+ "prevSize": 32,
+ "code": 59698
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 50
+ },
+ {
+ "icon": {
+ "paths": [
+ "M270.635 623.829l-120.661 120.704 150.827 150.827 573.226-573.226-150.827-150.827-90.539 90.496 60.373 60.331-60.373 60.331-60.331-60.331-90.496 90.539 90.496 90.453-60.331 60.416-90.496-90.496-90.539 90.496 60.373 60.331-60.373 60.373-60.331-60.416zM753.365 80.768l211.2 211.2c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-633.6 633.6c-8.001 8-18.852 12.493-30.165 12.493s-22.164-4.493-30.165-12.493l-211.2-211.2c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l633.6-633.6c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ruler-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 102,
+ "id": 2247,
+ "name": "ruler-line",
+ "prevSize": 32,
+ "code": 59699
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 51
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 853.333v-213.333h85.333v213.333h384v-298.667h-597.333v298.667h128zM170.667 469.333h682.667v-128h-256v-170.667h-170.667v170.667h-256v128zM128 896v-341.333h-42.667v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v256h-42.667v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 103,
+ "id": 2246,
+ "name": "brush-3-line",
+ "prevSize": 32,
+ "code": 59700
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 52
+ },
+ {
+ "icon": {
+ "paths": [
+ "M705.536 680.533l90.453-90.539-135.723-135.765 150.827-150.828-90.453-90.496-150.869 150.827-135.765-135.765-90.538 90.496 362.069 362.070zM645.163 740.864l-362.026-362.028-120.661 120.662 362.026 362.027 120.661-120.661zM569.771 243.071l120.661-120.704c8-7.999 18.85-12.492 30.165-12.492s22.165 4.493 30.165 12.492l150.869 150.869c8 8.001 12.493 18.852 12.493 30.165s-4.493 22.164-12.493 30.165l-120.704 120.662 105.6 105.6c3.968 3.964 7.113 8.666 9.263 13.845 2.146 5.18 3.251 10.735 3.251 16.341s-1.105 11.157-3.251 16.337c-2.15 5.18-5.295 9.886-9.263 13.85l-331.861 331.861c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-422.4-422.4c-7.999-8-12.492-18.854-12.492-30.165 0-11.315 4.493-22.165 12.492-30.165l331.861-331.862c3.962-3.967 8.668-7.114 13.848-9.261s10.732-3.252 16.338-3.252c5.606 0 11.157 1.105 16.337 3.252s9.886 5.295 13.85 9.261l105.6 105.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 104,
+ "id": 2245,
+ "name": "brush-2-line",
+ "prevSize": 32,
+ "code": 59701
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 53
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h85.333v85.333h-85.333v-85.333zM298.667 128h85.333v85.333h-85.333v-85.333zM469.333 128h85.333v85.333h-85.333v-85.333zM640 128h85.333v85.333h-85.333v-85.333zM810.667 128h85.333v85.333h-85.333v-85.333zM810.667 298.667h85.333v85.333h-85.333v-85.333zM128 810.667h85.333v85.333h-85.333v-85.333zM128 640h85.333v85.333h-85.333v-85.333zM128 469.333h85.333v85.333h-85.333v-85.333zM128 298.667h85.333v85.333h-85.333v-85.333zM455.125 469.333l44.203-66.347c3.895-5.842 9.178-10.631 15.369-13.943 6.195-3.312 13.107-5.044 20.13-5.044h125.013c7.023-0.001 13.935 1.731 20.13 5.044 6.191 3.312 11.473 8.101 15.369 13.943l44.203 66.347h113.792c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h113.792zM384 810.667h426.667v-256h-116.779l-56.875-85.333h-79.36l-56.875 85.333h-116.779v256zM597.333 768c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["screenshot-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 105,
+ "id": 2244,
+ "name": "screenshot-2-line",
+ "prevSize": 32,
+ "code": 59702
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 54
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497h-213.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h-234.667c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17v-101.632c0.004-7.921 2.214-15.686 6.381-22.423s10.128-12.18 17.214-15.721l232.405-116.224h490.667zM640 170.667h-257.195l-190.805 95.403v32.597h277.333v597.333h85.333v-597.333h85.333v-128zM810.667 170.667h-85.333v128h85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hammer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 106,
+ "id": 2243,
+ "name": "hammer-line",
+ "prevSize": 32,
+ "code": 59703
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 55
+ },
+ {
+ "icon": {
+ "paths": [
+ "M774.571 834.901c-72.7 68.395-169.173 105.792-268.979 104.269-99.802-1.523-195.090-41.847-265.67-112.427s-110.904-165.867-112.427-265.673c-1.522-99.802 35.877-196.276 104.271-268.976l-172.331-172.288 60.373-60.373 844.757 844.801-60.373 60.331-129.621-129.664zM292.139 352.511c-52.080 56.727-80.236 131.376-78.59 208.368 1.645 76.988 32.965 150.366 87.42 204.817s127.836 85.76 204.828 87.398c76.992 1.638 151.637-26.526 208.358-78.609l-422.016-421.975zM870.997 691.2l-68.224-68.224c11.644-49.506 10.449-101.163-3.477-150.071-13.926-48.911-40.119-93.452-76.096-129.396l-211.2-211.243-99.968 99.968-60.331-60.288 160.298-160.341 271.531 271.531c52.361 52.35 88.474 118.719 103.991 191.118 15.518 72.397 9.779 147.733-16.525 216.947v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["blur-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 107,
+ "id": 2242,
+ "name": "blur-off-line",
+ "prevSize": 32,
+ "code": 59704
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 56
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM640 213.333h-469.333v597.333h469.333v-597.333zM853.333 213.333h-128v597.333h128v-597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-right-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 108,
+ "id": 2241,
+ "name": "layout-right-line",
+ "prevSize": 32,
+ "code": 59705
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 57
+ },
+ {
+ "icon": {
+ "paths": [
+ "M300.8 602.492l-90.453 90.539 120.661 120.661 482.688-482.729-120.661-120.619-90.581 90.453 60.373 60.331-60.373 60.416-60.331-60.373-60.331 60.373 60.331 60.329-60.331 60.331-60.331-60.331-60.373 60.331 60.373 60.331-60.373 60.373-60.288-60.416zM723.2 119.806l180.992 180.992c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-543.061 543.059c-8.001 8-18.851 12.493-30.165 12.493s-22.164-4.493-30.165-12.493l-180.992-180.992c-7.999-8-12.492-18.85-12.492-30.165 0-11.311 4.493-22.161 12.492-30.165l543.061-543.059c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492zM602.453 783.484l60.373-60.331 95.659 95.701h60.331v-60.331l-95.659-95.701 60.331-60.331 112.512 112.469v181.035h-180.992l-112.555-112.512zM240.469 421.459l-120.704-120.661c-3.967-3.963-7.114-8.668-9.261-13.848s-3.252-10.732-3.252-16.339c0-5.607 1.105-11.159 3.252-16.339s5.295-9.885 9.261-13.848l120.704-120.661c8.001-7.999 18.852-12.492 30.165-12.492s22.164 4.494 30.165 12.492l120.747 120.661-60.416 60.373-90.496-90.539-60.331 60.373 90.496 90.453-60.331 60.373z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pencil-ruler-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 109,
+ "id": 2240,
+ "name": "pencil-ruler-2-line",
+ "prevSize": 32,
+ "code": 59706
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 58
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 572.331l-108.97 108.971c21.099 35.785 28.424 78.033 20.598 118.831-7.824 40.794-30.258 77.338-63.098 102.775s-73.83 38.025-115.286 35.405c-41.457-2.624-80.535-20.275-109.908-49.647s-47.025-68.45-49.647-109.909c-2.622-41.455 9.966-82.445 35.404-115.285s61.981-55.275 102.777-63.095c40.797-7.825 83.046-0.503 118.828 20.595l108.97-108.971-256.896-256.852c-7.934-7.925-14.228-17.336-18.522-27.696s-6.505-21.463-6.505-32.678c0-11.214 2.21-22.318 6.505-32.678s10.589-19.77 18.522-27.696l317.226 317.311 317.227-317.226c16 16.003 24.986 37.704 24.986 60.331s-8.986 44.329-24.986 60.331l-256.853 256.852 108.928 108.971c35.785-21.099 78.033-28.42 118.827-20.595 40.798 7.821 77.342 30.255 102.78 63.095s38.025 73.83 35.405 115.285c-2.624 41.459-20.275 80.538-49.647 109.909-29.376 29.372-68.45 47.023-109.909 49.647-41.455 2.62-82.445-9.967-115.285-35.405s-55.275-61.982-63.1-102.775c-7.821-40.798-0.499-83.046 20.599-118.831l-108.971-108.971zM256 853.333c22.632 0 44.337-8.99 60.34-24.994 16.003-16 24.993-37.705 24.993-60.339 0-22.63-8.99-44.335-24.993-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.635 8.991 44.339 24.994 60.339 16.003 16.004 37.708 24.994 60.34 24.994v0zM768 853.333c22.63 0 44.339-8.99 60.339-24.994 16.004-16 24.994-37.705 24.994-60.339 0-22.63-8.99-44.335-24.994-60.339-16-16.004-37.709-24.994-60.339-24.994s-44.335 8.99-60.339 24.994c-16.004 16.004-24.994 37.709-24.994 60.339 0 22.635 8.99 44.339 24.994 60.339 16.004 16.004 37.709 24.994 60.339 24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scissors-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 110,
+ "id": 2239,
+ "name": "scissors-2-line",
+ "prevSize": 32,
+ "code": 59707
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 59
+ },
+ {
+ "icon": {
+ "paths": [
+ "M659.456 412.927l-6.059-6.059c-28.553-27.532-63.646-47.34-101.973-57.557-124.032-33.195-243.157 37.077-276.992 163.415-1.835 6.827-2.816 14.507-4.437 33.749-6.571 79.787-25.344 139.307-76.8 199.68 96.427 37.888 210.688 64.597 297.557 64.597 51.639-0.064 101.815-17.143 142.771-48.597s70.404-75.524 83.789-125.397c10.509-39.13 10.705-80.311 0.567-119.539-10.142-39.228-30.268-75.157-58.423-104.291v0zM567.040 265.215l210.731-163.883c8.205-6.374 18.453-9.535 28.821-8.89s20.147 5.049 27.499 12.389l127.787 127.744c7.351 7.355 11.763 17.141 12.407 27.52s-2.522 20.636-8.909 28.843l-163.84 210.689c11.554 47.121 12.245 96.252 2.027 143.68-10.214 47.428-31.074 91.913-61.005 130.099s-68.143 69.069-111.761 90.321c-43.614 21.252-91.486 32.316-140.002 32.358-149.461 0-341.461-64.085-448.128-128.085 169.813-128 130.005-205.227 149.333-277.333 45.141-168.535 206.592-266.967 374.997-225.452h0.043zM712.661 345.385c2.773 2.688 5.547 5.461 8.235 8.277l48.427 48.384 105.6-135.765-74.496-74.496-135.765 105.6 48 48z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 111,
+ "id": 2238,
+ "name": "brush-line",
+ "prevSize": 32,
+ "code": 59708
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 60
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v597.333h682.667v-597.333zM341.333 298.667v426.667h-85.333v-426.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-left-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 112,
+ "id": 2237,
+ "name": "layout-left-2-line",
+ "prevSize": 32,
+ "code": 59709
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 61
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 341.333h597.333v-128h-597.333v128zM597.333 810.667v-384h-384v384h384zM682.667 810.667h128v-384h-128v384zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 113,
+ "id": 2236,
+ "name": "layout-line",
+ "prevSize": 32,
+ "code": 59710
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 62
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.701 614.699l-66.219 66.219c21.201 35.725 28.642 77.952 20.932 118.771-7.706 40.815-30.037 77.423-62.805 102.955s-73.722 38.234-115.185 35.729c-41.464-2.505-80.591-20.045-110.048-49.335s-47.218-68.318-49.958-109.769c-2.739-41.446 9.733-82.475 35.078-115.383 25.345-32.913 61.824-55.45 102.598-63.39s83.044-0.734 118.886 20.262l66.347-66.389-178.56-178.56 60.373-60.373 178.56 178.56 178.731-178.731 60.331 60.331-178.773 178.773 66.645 66.56c35.785-21.099 78.033-28.42 118.827-20.599 40.798 7.825 77.342 30.259 102.78 63.1s38.025 73.83 35.405 115.285c-2.624 41.459-20.275 80.533-49.647 109.909-29.376 29.372-68.45 47.023-109.909 49.647-41.455 2.62-82.445-9.967-115.285-35.405s-55.275-61.982-63.1-102.78c-7.821-40.794-0.499-83.042 20.599-118.827l-66.603-66.56zM298.667 853.333c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994v0zM725.333 853.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994v0zM810.667 554.667v-341.333h-597.333v341.333h-85.333v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["screenshot-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 114,
+ "id": 2235,
+ "name": "screenshot-line",
+ "prevSize": 32,
+ "code": 59711
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 63
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 341.333h682.667v-128h-682.667v128zM597.333 810.667v-384h-170.667v384h170.667zM682.667 810.667h170.667v-384h-170.667v384zM341.333 810.667v-384h-170.667v384h170.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["table-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 115,
+ "id": 2234,
+ "name": "table-line",
+ "prevSize": 32,
+ "code": 59712
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 64
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 448l44.288-155.093c2.534-8.932 7.915-16.793 15.322-22.391s16.439-8.626 25.724-8.626c9.284 0 18.317 3.028 25.724 8.626s12.787 13.459 15.322 22.391l44.288 155.093v64h30.72c9.51 0 18.752 3.179 26.249 9.033 7.501 5.85 12.826 14.042 15.138 23.266l58.069 232.405c54.656-44.497 94.195-104.828 113.19-172.698 18.999-67.87 16.521-139.959-7.095-206.364-23.616-66.406-67.209-123.874-124.791-164.512s-126.332-62.456-196.813-62.456c-70.481 0-139.231 21.817-196.815 62.456s-101.175 98.106-124.789 164.512c-23.614 66.404-26.094 138.494-7.098 206.364s58.537 128.201 113.192 172.698l58.112-232.405c2.31-9.22 7.631-17.404 15.121-23.253 7.49-5.854 16.719-9.037 26.223-9.045h30.72v-64zM512 853.333c48.009 0.098 95.488-9.997 139.307-29.611l-56.619-226.389h-165.376l-56.619 226.389c43.817 19.618 91.298 29.709 139.307 29.611v0zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["markup-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 116,
+ "id": 2233,
+ "name": "markup-line",
+ "prevSize": 32,
+ "code": 59713
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 65
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 213.333v267.648h-85.333v-267.648h-85.333v384h597.333v-384h-426.667zM853.333 682.667h-682.667v85.333h682.667v-85.333zM128 597.333v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667h42.667v213.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333v128h-85.333v-128h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 117,
+ "id": 2232,
+ "name": "brush-4-line",
+ "prevSize": 32,
+ "code": 59714
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 66
+ },
+ {
+ "icon": {
+ "paths": [
+ "M820.395 799.232l75.435-75.435 75.392 75.435c14.921 14.916 25.084 33.92 29.201 54.613s2.010 42.142-6.063 61.632c-8.073 19.494-21.747 36.156-39.287 47.876s-38.165 17.98-59.264 17.98c-21.099 0-41.724-6.259-59.264-17.98s-31.215-28.382-39.287-47.876c-8.073-19.49-10.18-40.939-6.063-61.632s14.281-39.697 29.201-54.613zM378.795 46.078l482.731 482.69c3.968 3.959 7.113 8.666 9.263 13.845 2.146 5.18 3.251 10.731 3.251 16.341 0 5.606-1.105 11.157-3.251 16.337-2.15 5.18-5.295 9.886-9.263 13.85l-362.027 362.027c-8 7.996-18.85 12.489-30.165 12.489s-22.165-4.493-30.165-12.489l-362.027-362.027c-3.967-3.964-7.114-8.67-9.261-13.85s-3.252-10.731-3.252-16.337c0-5.611 1.105-11.162 3.252-16.341s5.294-9.886 9.261-13.845l331.861-331.863-90.539-90.496 60.416-60.331h-0.085zM469.333 257.278l-301.696 301.655 301.696 301.781 301.696-301.696-301.696-301.74z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["paint-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 118,
+ "id": 2231,
+ "name": "paint-line",
+ "prevSize": 32,
+ "code": 59715
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 67
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 853.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667zM469.333 640h-298.667v170.667h298.667v-170.667zM853.333 469.333h-298.667v341.333h298.667v-341.333zM469.333 213.333h-298.667v341.333h298.667v-341.333zM853.333 213.333h-298.667v170.667h298.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-masonry-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 119,
+ "id": 2230,
+ "name": "layout-masonry-line",
+ "prevSize": 32,
+ "code": 59716
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 68
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 256.002c0 31.232-8.405 60.544-23.040 85.76l108.373 109.865 287.061-287.060c16.004-15.997 37.705-24.984 60.331-24.984s44.331 8.987 60.331 24.984l-516.693 516.692c21.098 35.785 28.42 78.033 20.598 118.831-7.824 40.794-30.258 77.338-63.098 102.775s-73.83 38.029-115.287 35.405c-41.457-2.62-80.534-20.275-109.907-49.647s-47.025-68.45-49.647-109.905c-2.622-41.459 9.966-82.449 35.405-115.29 25.438-32.836 61.981-55.275 102.777-63.095 40.796-7.825 83.046-0.503 118.828 20.595l108.97-108.928-108.97-108.969c-32.419 19.119-70.247 26.985-107.6 22.377-37.353-4.609-72.135-21.436-98.932-47.863s-44.109-60.97-49.24-98.255c-5.13-37.285 2.208-75.22 20.873-107.902s47.609-58.278 82.329-72.804c34.72-14.526 73.268-17.169 109.645-7.516s68.544 31.060 91.493 60.889c22.95 29.829 35.396 66.408 35.401 104.044zM341.334 256.002c0-22.632-8.991-44.337-24.994-60.34s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.993 37.708-24.993 60.34c0 22.632 8.99 44.337 24.993 60.34s37.708 24.994 60.34 24.994c22.632 0 44.337-8.99 60.34-24.994s24.994-37.708 24.994-60.34zM919.723 859.392c-16 16-37.705 24.986-60.331 24.986s-44.326-8.986-60.331-24.986l-226.859-226.816 60.373-60.373 287.147 287.189zM682.667 469.333h85.333v85.333h-85.333v-85.333zM853.333 469.333h85.333v85.333h-85.333v-85.333zM256 469.333h85.333v85.333h-85.333v-85.333zM85.334 469.333h85.333v85.333h-85.333v-85.333zM256 853.333c22.632 0 44.337-8.99 60.34-24.99 16.003-16.004 24.994-37.709 24.994-60.343 0-22.63-8.991-44.335-24.994-60.339-16.003-16-37.708-24.994-60.34-24.994s-44.337 8.994-60.34 24.994c-16.003 16.004-24.993 37.709-24.993 60.339 0 22.635 8.99 44.339 24.993 60.343 16.003 16 37.708 24.99 60.34 24.99v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scissors-cut-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 120,
+ "id": 2229,
+ "name": "scissors-cut-line",
+ "prevSize": 32,
+ "code": 59717
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 69
+ },
+ {
+ "icon": {
+ "paths": [
+ "M671.061 413.268l-60.331-60.331-397.397 397.399v60.331h60.331l397.397-397.399zM731.392 352.937l60.331-60.331-60.331-60.331-60.331 60.331 60.331 60.331zM308.992 896h-180.992v-181.035l573.227-573.228c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l120.704 120.704c8 8.001 12.493 18.852 12.493 30.165s-4.493 22.164-12.493 30.165l-573.269 573.228z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pencil-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 121,
+ "id": 2228,
+ "name": "pencil-line",
+ "prevSize": 32,
+ "code": 59718
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 70
+ },
+ {
+ "icon": {
+ "paths": [
+ "M227.415 139.561c28.46-10.156 59.331-11.438 88.536-3.678s55.368 24.198 75.033 47.14c19.665 22.943 31.908 51.313 35.11 81.36s-2.787 60.36-17.175 86.932l456.916 456.962-60.331 60.331-456.959-456.962c-26.578 14.332-56.875 20.273-86.898 17.047-30.023-3.231-58.363-15.481-81.285-35.137s-39.351-45.797-47.122-74.976c-7.77-29.179-6.518-60.028 3.593-88.481l95.445 95.445c5.904 6.112 12.966 10.988 20.774 14.342s16.207 5.12 24.704 5.193c8.497 0.074 16.925-1.545 24.791-4.763s15.011-7.97 21.020-13.979c6.009-6.009 10.761-13.155 13.979-21.020s4.837-16.293 4.763-24.791c-0.074-8.497-1.839-16.896-5.193-24.704s-8.23-14.87-14.342-20.774l-95.36-95.488zM669.739 219.945l135.765-75.435 60.331 60.331-75.435 135.765-75.435 15.104-90.453 90.498-60.373-60.332 90.496-90.496 15.104-75.435zM383.105 566.912l60.329 60.331-226.26 226.261c-7.693 7.714-18.045 12.194-28.935 12.518s-21.492-3.524-29.633-10.765c-8.14-7.241-13.203-17.323-14.15-28.177-0.947-10.85 2.295-21.658 9.059-30.195l3.328-3.712 226.261-226.261z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tools-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 122,
+ "id": 2227,
+ "name": "tools-line",
+ "prevSize": 32,
+ "code": 59719
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 71
+ },
+ {
+ "icon": {
+ "paths": [
+ "M366.336 725.333h-238.336v-85.333h768v85.333h-238.336l138.368 138.368-60.331 60.331-181.035-181.035v110.336h-85.333v-110.336l-181.035 181.035-60.331-60.331 138.368-138.368zM213.333 128h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667h-682.667v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM256 213.333v298.667h512v-298.667h-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["artboard-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 123,
+ "id": 2226,
+ "name": "artboard-line",
+ "prevSize": 32,
+ "code": 59720
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 72
+ },
+ {
+ "icon": {
+ "paths": [
+ "M296.107 598.869c-9.941 26.624-18.347 51.2-25.856 76.075 40.96-29.739 89.643-48.597 145.835-55.637 107.221-13.397 202.496-84.181 250.709-173.141l-62.123-62.080 102.955-103.083c18.347-18.347 39.040-52.224 60.928-101.035-238.635 36.992-384.768 183.125-472.491 418.901h0.043zM725.333 384.043l42.667 42.624c-42.667 128-170.667 256-341.333 277.333-113.877 14.251-185.003 92.459-213.419 234.667h-85.248c42.667-256 128-853.333 768-853.333-42.667 127.872-85.248 213.163-127.872 255.872l-42.795 42.837z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["quill-pen-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 124,
+ "id": 2225,
+ "name": "quill-pen-line",
+ "prevSize": 32,
+ "code": 59721
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 73
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 132.265l-211.2 211.2c-41.766 41.771-70.208 94.99-81.73 152.923s-5.605 117.986 17.001 172.557c22.606 54.575 60.887 101.218 110.002 134.033s106.859 50.334 165.927 50.334c59.068 0 116.813-17.519 165.926-50.334s87.398-79.458 110.003-134.033c22.605-54.571 28.523-114.624 17.003-172.557-11.524-57.933-39.966-111.152-81.732-152.923l-211.2-211.2zM512 11.604l271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.614 14.814 74.487 7.211 151.697-21.854 221.867-29.065 70.165-78.281 130.138-141.431 172.331-63.147 42.197-137.391 64.717-213.338 64.717s-150.19-22.519-213.338-64.717c-63.148-42.193-112.367-102.165-141.431-172.331-29.064-70.17-36.669-147.379-21.853-221.867s51.388-142.91 105.091-196.614l271.531-271.531zM298.667 554.667h426.667c0 56.58-22.477 110.839-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.009-62.484-94.268-62.484-150.848v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-drop-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 125,
+ "id": 2224,
+ "name": "contrast-drop-2-line",
+ "prevSize": 32,
+ "code": 59722
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 74
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM477.397 561.408l-264.064 46.592v202.667h307.968l-43.947-249.259h0.043zM810.667 213.333h-308.011l105.301 597.333h202.709v-597.333zM416 213.333h-202.667v307.968l249.259-43.947-46.592-264.021z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["collage-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 126,
+ "id": 2223,
+ "name": "collage-line",
+ "prevSize": 32,
+ "code": 59723
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 75
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.499 808.832l365.397-365.397-60.331-60.332-365.397 365.399 60.331 60.331zM520.192 322.772l-60.331-60.331 60.331-60.331 75.435 75.392 120.704-120.661c8-7.999 18.85-12.492 30.165-12.492s22.165 4.493 30.165 12.492l90.496 90.496c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-120.661 120.705 75.392 75.435-60.331 60.331-60.331-60.331-392.192 392.192h-181.035v-181.035l392.192-392.193z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sip-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 127, "id": 2222, "name": "sip-line", "prevSize": 32, "code": 59724 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 76
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 213.333v597.333h597.333v-597.333h-597.333zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM421.077 640l-34.987 85.333h-94.549l177.792-426.667h85.333l177.792 426.667h-94.592l-34.987-85.333h-181.803zM456.064 554.667h111.872l-55.936-136.533-55.936 136.533z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["input-method-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 128,
+ "id": 2221,
+ "name": "input-method-line",
+ "prevSize": 32,
+ "code": 59725
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 77
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 341.333v341.333h341.333v-341.333h-341.333zM256 256h512v512h-512v-512zM256 85.333h85.333v128h-85.333v-128zM256 810.667h85.333v128h-85.333v-128zM85.333 256h128v85.333h-128v-85.333zM85.333 682.667h128v85.333h-128v-85.333zM810.667 256h128v85.333h-128v-85.333zM810.667 682.667h128v85.333h-128v-85.333zM682.667 85.333h85.333v128h-85.333v-128zM682.667 810.667h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["artboard-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 129,
+ "id": 2220,
+ "name": "artboard-2-line",
+ "prevSize": 32,
+ "code": 59726
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 78
+ },
+ {
+ "icon": {
+ "paths": [
+ "M334.080 853.333c-7.212 20.386-19.472 38.618-35.636 52.988s-35.703 24.414-56.797 29.193c-21.094 4.774-43.054 4.13-63.831-1.873-20.777-6.007-39.695-17.178-54.988-32.469s-26.464-34.21-32.468-54.989c-6.005-20.779-6.649-42.739-1.872-63.829 4.777-21.094 14.819-40.636 29.189-56.798s32.601-28.425 52.991-35.635v-355.842c-20.39-7.212-38.62-19.472-52.991-35.636s-24.413-35.703-29.189-56.797c-4.777-21.094-4.133-43.054 1.872-63.831s17.175-39.695 32.468-54.988c15.293-15.293 34.211-26.464 54.988-32.468s42.737-6.649 63.831-1.872c21.094 4.777 40.634 14.819 56.797 29.189s28.423 32.601 35.636 52.991h355.84c7.211-20.39 19.473-38.62 35.635-52.991s35.703-24.413 56.798-29.189c21.094-4.777 43.055-4.133 63.829 1.872 20.779 6.005 39.697 17.175 54.989 32.468 15.296 15.293 26.466 34.211 32.469 54.988 6.007 20.777 6.647 42.737 1.873 63.831-4.779 21.094-14.818 40.634-29.188 56.797s-32.602 28.423-52.992 35.636v355.842c20.39 7.211 38.622 19.473 52.992 35.635s24.41 35.703 29.188 56.798c4.774 21.090 4.134 43.051-1.873 63.829-6.003 20.779-17.173 39.697-32.469 54.989-15.292 15.292-34.21 26.462-54.989 32.469-20.774 6.003-42.735 6.647-63.829 1.873-21.094-4.779-40.636-14.822-56.798-29.193s-28.425-32.602-35.635-52.988h-355.84zM334.080 768h355.84c6.383-18.005 16.704-34.359 30.212-47.868s29.862-23.829 47.868-30.212v-355.842c-18.005-6.383-34.359-16.705-47.868-30.214s-23.829-29.861-30.212-47.866h-355.84c-6.383 18.005-16.705 34.359-30.214 47.866s-29.861 23.831-47.866 30.214v355.842c18.005 6.383 34.359 16.704 47.866 30.212s23.831 29.862 30.214 47.868v0zM213.333 255.998c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM810.667 255.998c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM810.667 853.333c11.315 0 22.17-4.497 30.17-12.497 8-8.004 12.497-18.854 12.497-30.17 0-11.319-4.497-22.17-12.497-30.17-8-8.004-18.854-12.497-30.17-12.497s-22.17 4.493-30.17 12.497c-8 8-12.497 18.85-12.497 30.17 0 11.315 4.497 22.165 12.497 30.17 8 8 18.854 12.497 30.17 12.497zM213.333 853.333c11.316 0 22.168-4.497 30.17-12.497 8.002-8.004 12.497-18.854 12.497-30.17 0-11.319-4.495-22.17-12.497-30.17-8.002-8.004-18.854-12.497-30.17-12.497s-22.168 4.493-30.17 12.497c-8.002 8-12.497 18.85-12.497 30.17 0 11.315 4.495 22.165 12.497 30.17 8.001 8 18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shape-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 130,
+ "id": 2219,
+ "name": "shape-line",
+ "prevSize": 32,
+ "code": 59727
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 79
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 469.333v-220.672l-77.995 78.037-60.373-60.331 181.035-181.035 181.035 181.035-60.373 60.331-77.995-78.037v220.672h220.672l-78.037-77.995 60.331-60.373 181.035 181.035-181.035 181.035-60.331-60.373 78.037-77.995h-220.672v220.672l77.995-78.037 60.373 60.331-181.035 181.035-181.035-181.035 60.373-60.331 77.995 78.037v-220.672h-220.672l78.037 77.995-60.331 60.373-181.035-181.035 181.035-181.035 60.331 60.373-78.037 77.995h220.672z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drag-move-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 131,
+ "id": 2218,
+ "name": "drag-move-2-line",
+ "prevSize": 32,
+ "code": 59728
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 80
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 725.333v85.333h-384c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-469.333h-128v-85.333h128v-128h85.333v640h341.333zM725.333 938.667v-640h-341.333v-85.333h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v469.333h128v85.333h-128v128h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["crop-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 132,
+ "id": 2217,
+ "name": "crop-line",
+ "prevSize": 32,
+ "code": 59729
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 81
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 853.333v-256h341.333v256h128v-682.667h-597.333v682.667h128zM426.667 853.333h170.667v-170.667h-170.667v170.667zM896 853.333h85.333v85.333h-938.667v-85.333h85.333v-725.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333zM469.333 341.333v-85.333h85.333v85.333h85.333v85.333h-85.333v85.333h-85.333v-85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hospital-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 133,
+ "id": 2216,
+ "name": "hospital-line",
+ "prevSize": 32,
+ "code": 59730
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 82
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM768 810.667v-419.966l-256-232.704-256 232.704v419.966h512zM512 725.333l-143.317-143.317c-8.914-8.913-15.986-19.494-20.81-31.142s-7.308-24.132-7.308-36.74c0-12.604 2.483-25.088 7.308-36.736s11.896-22.229 20.81-31.147c8.914-8.913 19.497-15.983 31.145-20.809 11.647-4.824 24.131-7.308 36.738-7.308s25.092 2.483 36.736 7.308c11.648 4.826 22.234 11.895 31.147 20.809l7.552 7.552 7.552-7.552c8.913-8.913 19.499-15.983 31.147-20.809 11.644-4.824 24.128-7.308 36.736-7.308s25.092 2.483 36.736 7.308c11.648 4.826 22.234 11.895 31.147 20.809 8.913 8.917 15.987 19.499 20.809 31.147 4.826 11.648 7.309 24.132 7.309 36.736 0 12.608-2.483 25.092-7.309 36.74-4.821 11.648-11.895 22.229-20.809 31.142l-143.317 143.317z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-heart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 134,
+ "id": 2215,
+ "name": "home-heart-line",
+ "prevSize": 32,
+ "code": 59731
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 83
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 896h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-320.555c-0.001-6.097 1.305-12.122 3.83-17.673 2.524-5.547 6.209-10.492 10.805-14.498l156.032-136.064v-193.877c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM384 810.667h128v-258.475l-170.667-148.821-170.667 148.821v258.475h128v-170.667h85.333v170.667zM597.333 810.667h256v-597.333h-512v90.752c9.984 0 20.011 3.499 28.032 10.539l213.333 185.984c4.595 4.006 8.282 8.951 10.803 14.498 2.526 5.551 3.831 11.575 3.831 17.673v277.888zM682.667 469.333h85.333v85.333h-85.333v-85.333zM682.667 640h85.333v85.333h-85.333v-85.333zM682.667 298.667h85.333v85.333h-85.333v-85.333zM512 298.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["community-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 135,
+ "id": 2214,
+ "name": "community-line",
+ "prevSize": 32,
+ "code": 59732
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 84
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM554.667 810.667h213.333v-419.966l-256-232.704-256 232.704v419.966h213.333v-256h85.333v256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 136,
+ "id": 2213,
+ "name": "home-4-line",
+ "prevSize": 32,
+ "code": 59733
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 85
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 810.667h256v-384.937l-298.667-232.277-298.667 232.277v384.937h256v-256h85.333v256zM896 853.333c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-448.425c-0.005-6.502 1.477-12.919 4.332-18.761s7.006-10.954 12.138-14.946l341.333-265.472c7.488-5.827 16.708-8.99 26.197-8.99s18.709 3.163 26.197 8.99l341.333 265.472c5.133 3.992 9.284 9.104 12.139 14.946s4.335 12.259 4.331 18.761v448.425z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 137,
+ "id": 2212,
+ "name": "home-5-line",
+ "prevSize": 32,
+ "code": 59734
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 86
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM256 810.667h512v-419.966l-256-232.704-256 232.704v419.966zM384 426.667h256v256h-256v-256zM469.333 512v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-8-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 138,
+ "id": 2211,
+ "name": "home-8-line",
+ "prevSize": 32,
+ "code": 59735
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 87
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM256 810.667h512v-419.966l-256-232.704-256 232.704v419.966zM341.333 640h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 139,
+ "id": 2210,
+ "name": "home-3-line",
+ "prevSize": 32,
+ "code": 59736
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 88
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM256 810.667h512v-419.966l-256-232.704-256 232.704v419.966z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 140,
+ "id": 2209,
+ "name": "home-2-line",
+ "prevSize": 32,
+ "code": 59737
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 89
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-448.425c-0.005-6.502 1.477-12.919 4.332-18.761s7.006-10.954 12.138-14.946l341.333-265.472c7.488-5.827 16.708-8.99 26.197-8.99s18.709 3.163 26.197 8.99l341.333 265.472c5.133 3.992 9.284 9.104 12.139 14.946s4.335 12.259 4.331 18.761v448.425zM810.667 810.667v-384.937l-298.667-232.277-298.667 232.277v384.937h597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 141,
+ "id": 2208,
+ "name": "home-line",
+ "prevSize": 32,
+ "code": 59738
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 90
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 256h128v85.333h-42.667v469.333h42.667v85.333h-938.667v-85.333h42.667v-469.333h-42.667v-85.333h128v-85.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333zM853.333 341.333h-682.667v469.333h128v-298.667h85.333v298.667h85.333v-298.667h85.333v298.667h85.333v-298.667h85.333v298.667h128v-469.333zM256 213.333v42.667h512v-42.667h-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["government-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 142,
+ "id": 2207,
+ "name": "government-line",
+ "prevSize": 32,
+ "code": 59739
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 91
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 810.667v-392.578l-298.667-235.605-298.667 235.605v392.578h597.333zM896 853.333c0 11.315-4.497 22.165-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497-8.001-8.004-12.497-18.854-12.497-30.17v-455.938c-0.003-6.445 1.455-12.806 4.263-18.607s6.894-10.89 11.951-14.886l341.333-269.269c7.531-5.952 16.853-9.19 26.453-9.19s18.923 3.238 26.453 9.19l341.333 269.227c5.060 4 9.152 9.097 11.959 14.905s4.262 12.179 4.254 18.631v455.938zM298.667 512h85.333c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509h85.333c0 56.576-22.477 110.839-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.009-62.484-94.272-62.484-150.848v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-smile-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 143,
+ "id": 2206,
+ "name": "home-smile-2-line",
+ "prevSize": 32,
+ "code": 59740
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 92
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM256 810.667h512v-419.966l-256-232.704-256 232.704v419.966zM512 640c-28.288 0-55.42-11.238-75.426-31.241-20.003-20.002-31.241-47.134-31.241-75.426 0-28.288 11.238-55.42 31.241-75.422 20.006-20.006 47.138-31.245 75.426-31.245s55.42 11.238 75.426 31.245c20.002 20.002 31.241 47.134 31.241 75.422 0 28.292-11.238 55.424-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-7-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 144,
+ "id": 2205,
+ "name": "home-7-line",
+ "prevSize": 32,
+ "code": 59741
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 93
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-448.425c-0.005-6.502 1.477-12.919 4.332-18.761s7.006-10.954 12.138-14.946l341.333-265.472c7.488-5.827 16.708-8.99 26.197-8.99s18.709 3.163 26.197 8.99l341.333 265.472c5.133 3.992 9.284 9.104 12.139 14.946s4.335 12.259 4.331 18.761v448.425zM810.667 810.667v-384.937l-298.667-232.277-298.667 232.277v384.937h597.333zM298.667 640h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-6-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 145,
+ "id": 2204,
+ "name": "home-6-line",
+ "prevSize": 32,
+ "code": 59742
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 94
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 810.667h512v-419.966l-256-232.704-256 232.704v419.966zM810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM320 554.667h85.333c0 28.292 11.238 55.424 31.241 75.426 20.006 20.002 47.138 31.241 75.426 31.241s55.42-11.238 75.426-31.241c20.002-20.002 31.241-47.134 31.241-75.426h85.333c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235c-50.923 0-99.758-20.228-135.764-56.235s-56.236-84.843-56.236-135.765v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-smile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 146,
+ "id": 2203,
+ "name": "home-smile-line",
+ "prevSize": 32,
+ "code": 59743
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 95
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333h85.333v85.333h-938.667v-85.333h85.333v-725.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333zM810.667 853.333v-682.667h-597.333v682.667h597.333zM341.333 469.333h128v85.333h-128v-85.333zM341.333 298.667h128v85.333h-128v-85.333zM341.333 640h128v85.333h-128v-85.333zM554.667 640h128v85.333h-128v-85.333zM554.667 469.333h128v85.333h-128v-85.333zM554.667 298.667h128v85.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 147,
+ "id": 2202,
+ "name": "building-4-line",
+ "prevSize": 32,
+ "code": 59744
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 96
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 810.667h85.333v85.333h-938.667v-85.333h85.333v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v640h170.667v-341.333h-85.333v-85.333h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384zM213.333 213.333v597.333h341.333v-597.333h-341.333zM298.667 469.333h170.667v85.333h-170.667v-85.333zM298.667 298.667h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 148,
+ "id": 2201,
+ "name": "building-line",
+ "prevSize": 32,
+ "code": 59745
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 97
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 810.667h512v-419.966l-256-232.704-256 232.704v419.966zM810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM341.333 426.667c79.212 0 155.179 31.467 211.187 87.479 56.013 56.009 87.479 131.977 87.479 211.187h-85.333c0-56.576-22.477-110.839-62.485-150.848-40.004-40.009-94.269-62.485-150.848-62.485v-85.333zM341.333 597.333c33.948 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509h-128v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-wifi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 149,
+ "id": 2200,
+ "name": "home-wifi-line",
+ "prevSize": 32,
+ "code": 59746
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 98
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 554.667v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667h-42.667v-85.333l42.667-213.333h768l42.667 213.333v85.333h-42.667zM213.333 554.667v256h597.333v-256h-597.333zM172.373 469.333h679.253l-25.6-128h-628.053l-25.6 128zM256 597.333h341.333v128h-341.333v-128zM128 128h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["store-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 150,
+ "id": 2199,
+ "name": "store-3-line",
+ "prevSize": 32,
+ "code": 59747
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 99
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 564.992v288.341h42.667v85.333h-853.333v-85.333h42.667v-288.341c-26.267-17.532-47.799-41.28-62.685-69.129-14.886-27.853-22.666-58.948-22.648-90.53 0-35.285 9.557-69.291 27.008-98.261l115.712-200.405c3.745-6.486 9.131-11.872 15.616-15.617s13.844-5.716 21.333-5.716h579.371c7.488 0 14.848 1.972 21.333 5.716s11.87 9.131 15.616 15.617l115.285 199.765c25.455 42.277 33.634 92.737 22.844 140.89-10.79 48.154-39.723 90.3-80.785 117.67v0zM810.667 596.139c-29.338 3.29-59.038-0.235-86.788-10.295-27.75-10.065-52.804-26.402-73.212-47.731-17.911 18.735-39.433 33.643-63.266 43.831-23.834 10.185-49.481 15.433-75.401 15.433-25.911 0.013-51.558-5.222-75.392-15.394-23.831-10.172-45.356-25.067-63.275-43.785-20.41 21.325-45.467 37.649-73.218 47.706s-57.449 13.577-86.782 10.278v257.152h597.333v-257.195zM246.997 170.667l-103.808 179.755c-10.087 24.923-10.39 52.737-0.848 77.875 9.542 25.135 28.226 45.743 52.311 57.694s51.796 14.366 77.585 6.758c25.789-7.603 47.755-24.67 61.501-47.778 14.293-35.712 64.853-35.712 79.189 0 7.906 19.814 21.572 36.804 39.232 48.772 17.664 11.968 38.507 18.364 59.84 18.364s42.176-6.396 59.84-18.364c17.66-11.968 31.326-28.958 39.232-48.772 14.293-35.712 64.853-35.712 79.189 0 5.538 13.628 13.833 25.967 24.367 36.237s23.083 18.249 36.847 23.433c13.769 5.188 28.459 7.471 43.153 6.707 14.69-0.764 29.065-4.561 42.219-11.149s24.802-15.825 34.214-27.132c9.412-11.307 16.384-24.435 20.48-38.566 4.092-14.132 5.218-28.957 3.307-43.543-1.916-14.586-6.822-28.62-14.421-41.218l-103.467-179.072h-529.963z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["store-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 151,
+ "id": 2198,
+ "name": "store-2-line",
+ "prevSize": 32,
+ "code": 59748
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 100
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 896h-853.333v-85.333h42.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333h85.333v426.667h42.667v85.333zM725.333 810.667h85.333v-341.333h-256v341.333h85.333v-256h85.333v256zM725.333 384v-170.667h-512v597.333h256v-426.667h256zM298.667 469.333h85.333v85.333h-85.333v-85.333zM298.667 640h85.333v85.333h-85.333v-85.333zM298.667 298.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hotel-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 152,
+ "id": 2197,
+ "name": "hotel-line",
+ "prevSize": 32,
+ "code": 59749
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 101
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497zM256 810.667h512v-419.966l-256-232.704-256 232.704v419.966zM366.549 589.184c-5.406-22.75-5.406-46.451 0-69.205l-42.283-24.405 42.667-73.897 42.283 24.446c16.975-16.085 37.495-27.952 59.904-34.644v-48.811h85.333v48.811c22.699 6.784 43.093 18.772 59.904 34.644l42.283-24.446 42.667 73.854-42.283 24.448c5.406 22.754 5.406 46.455 0 69.205l42.283 24.405-42.667 73.856-42.283-24.405c-16.981 16.073-37.5 27.925-59.904 34.603v48.853h-85.333v-48.896c-22.404-6.677-42.924-18.53-59.904-34.603l-42.283 24.405-42.667-73.813 42.283-24.448v0.043zM511.787 618.539c8.597 0.316 17.165-1.105 25.199-4.177 8.034-3.076 15.369-7.735 21.559-13.705s11.115-13.129 14.481-21.043c3.362-7.915 5.099-16.431 5.099-25.033s-1.737-17.114-5.099-25.028c-3.366-7.915-8.29-15.074-14.481-21.043s-13.525-10.633-21.559-13.705c-8.034-3.072-16.602-4.493-25.199-4.181-16.559 0.606-32.235 7.612-43.738 19.537-11.499 11.93-17.924 27.853-17.924 44.42 0 16.572 6.426 32.495 17.924 44.425 11.503 11.925 27.179 18.931 43.738 19.533v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-gear-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 153,
+ "id": 2196,
+ "name": "home-gear-line",
+ "prevSize": 32,
+ "code": 59750
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 102
+ },
+ {
+ "icon": {
+ "paths": [
+ "M533.888 85.375c30.127 85.125 89.28 156.917 167.070 202.772s169.25 62.842 258.317 47.98c-3.422 40.593-19.665 79.048-46.379 109.804-26.714 30.754-62.515 52.22-102.229 61.291v303.445l85.333 0.043v85.333h-768v-85.333h85.333v-303.488c-39.717-9.075-75.521-30.541-102.241-61.295-26.72-30.752-42.972-69.204-46.409-109.799 89.076 14.886 180.549-2.084 258.357-47.933s136.976-117.643 167.116-202.777l43.733-0.043zM725.333 512h-426.667v298.667h426.667v-298.667zM512 227.284l-4.693 6.613c-67.221 92.096-165.639 156.606-276.907 181.504l-15.275 3.115 28.715 8.107h536.448l28.501-8.107-0.469-0.085c-117.124-22.284-221.393-88.268-291.669-184.576l-4.651-6.613v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ancient-pavilion-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 154,
+ "id": 2195,
+ "name": "ancient-pavilion-line",
+ "prevSize": 32,
+ "code": 59751
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 103
+ },
+ {
+ "icon": {
+ "paths": [
+ "M806.443 426.667c16.853 29.252 44.587 50.654 77.154 59.55s67.328 4.561 96.713-12.062c3.456 30.874-2.807 62.059-17.911 89.212-15.104 27.149-38.298 48.909-66.355 62.255l-0.043 270.379h-298.667v-85.333c0.004-21.53-8.124-42.266-22.763-58.048-14.639-15.787-34.705-25.459-56.171-27.072l-6.4-0.213c-21.53-0.009-42.266 8.124-58.052 22.763-15.782 14.639-25.455 34.701-27.068 56.171l-0.214 6.4v85.333h-298.667v-270.336c-28.111-13.325-51.359-35.098-66.496-62.276-15.138-27.174-21.41-58.402-17.941-89.318 29.382 16.657 64.157 21.018 96.743 12.139s60.339-30.281 77.209-59.541h588.929zM765.013 512h-506.070l-3.243 3.371c-18.389 17.92-39.893 32.427-63.403 42.752l-4.096 1.664 25.131 11.947-0.043 238.933 128.085-0.043v-3.072l0.427-9.515c6.357-86.016 75.947-153.557 164.438-157.781l8.875-0.213 9.515 0.427c41.476 3.076 80.401 21.193 109.466 50.948 29.060 29.751 46.255 69.094 48.358 110.63l0.171 8.576 128.043 0.043 0.043-238.933 25.045-11.947-4.053-1.707c-23.535-10.304-45.013-24.772-63.403-42.709l-3.285-3.371zM726.869 128c3.051 21.167 10.615 41.431 22.174 59.423 11.563 17.991 26.854 33.289 44.838 44.859 17.988 11.57 38.251 19.142 59.413 22.203 21.167 3.062 42.743 1.542 63.27-4.458-3.652 35.353-19.797 68.243-45.525 92.761-25.732 24.518-59.362 39.055-94.848 40.999l-8.192 0.213h-512.001c-36.95 0.006-72.591-13.687-100.032-38.433s-44.733-58.786-48.534-95.54c20.527 5.999 42.103 7.52 63.269 4.458s41.426-10.633 59.412-22.203c17.986-11.57 33.277-26.868 44.839-44.859s19.124-38.256 22.176-59.423h429.74zM665.6 213.333h-307.244c-15.372 30.099-37.056 56.528-63.573 77.483l-10.581 7.851 455.041-0.341c-27.443-19.401-50.415-44.454-67.371-73.472l-6.272-11.52z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ancient-gate-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 155,
+ "id": 2194,
+ "name": "ancient-gate-line",
+ "prevSize": 32,
+ "code": 59752
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 104
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 431.403v-388.736l469.333 256v597.333h-768v-597.333l298.667 132.736zM512 186.411v376.32l-298.667-132.736v380.672h597.333v-461.355l-298.667-162.901z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 156,
+ "id": 2193,
+ "name": "building-3-line",
+ "prevSize": 32,
+ "code": 59753
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 105
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667v-567.466c-0.003-8.759 2.69-17.306 7.713-24.481s12.131-12.631 20.362-15.626l412.629-150.016c3.221-1.173 6.682-1.552 10.082-1.104s6.643 1.71 9.455 3.677c2.807 1.968 5.103 4.584 6.686 7.627s2.406 6.423 2.406 9.853v211.328l269.483 89.813c8.499 2.831 15.893 8.265 21.129 15.533 5.239 7.267 8.060 15.999 8.055 24.958v395.903h85.333v85.333h-938.667v-85.333h85.333zM213.333 810.667h298.667v-646.186l-298.667 108.629v537.556zM810.667 810.667v-365.141l-213.333-71.124v436.266h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 157,
+ "id": 2192,
+ "name": "building-2-line",
+ "prevSize": 32,
+ "code": 59754
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 106
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 853.333h853.333v85.333h-853.333v-85.333zM170.667 512h85.333v298.667h-85.333v-298.667zM384 512h85.333v298.667h-85.333v-298.667zM554.667 512h85.333v298.667h-85.333v-298.667zM768 512h85.333v298.667h-85.333v-298.667zM85.333 298.667l426.667-213.333 426.667 213.333v170.667h-853.333v-170.667zM170.667 351.403v32.597h682.667v-32.597l-341.333-170.667-341.333 170.667zM512 341.333c-11.315 0-22.17-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bank-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 158,
+ "id": 2191,
+ "name": "bank-line",
+ "prevSize": 32,
+ "code": 59755
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 107
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 496.896v399.104c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-399.104c-27.549-31.147-42.728-71.313-42.667-112.896v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v256c0 43.264-16.128 82.773-42.667 112.896zM810.667 549.291c-30.511 7.838-62.601 7.095-92.715-2.15-30.118-9.246-57.092-26.633-77.952-50.244-16 18.18-35.691 32.738-57.766 42.701-22.071 9.958-46.016 15.1-70.234 15.070-24.218 0.030-48.162-5.111-70.234-15.070-22.074-9.963-41.767-24.521-57.766-42.701-20.808 23.676-47.781 41.114-77.914 50.364s-62.243 9.954-92.753 2.031v304.043h597.333v-304.043zM597.333 384c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339v-213.333h-682.667v213.333c0 22.632 8.991 44.335 24.994 60.339s37.708 24.994 60.34 24.994c22.632 0 44.337-8.99 60.34-24.994s24.993-37.708 24.993-60.339c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["store-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 159,
+ "id": 2190,
+ "name": "store-line",
+ "prevSize": 32,
+ "code": 59756
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 108
+ },
+ {
+ "icon": {
+ "paths": [
+ "M656.555 575.915l108.885 299.264-200.448 72.96-108.928-299.264-166.356 104.32 69.12-683.52 492.244 479.232-194.517 27.008zM656.085 824.149l-115.84-318.293 126.293-17.493-240.638-234.24-33.707 334.080 107.945-67.712 115.84 318.293 40.107-14.635z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cursor-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 160,
+ "id": 2189,
+ "name": "cursor-line",
+ "prevSize": 32,
+ "code": 59757
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 109
+ },
+ {
+ "icon": {
+ "paths": [
+ "M981.333 512l-301.696 301.696-60.331-60.331 241.365-241.365-241.365-241.364 60.331-60.331 301.696 301.695zM163.328 512l241.365 241.365-60.331 60.331-301.696-301.696 301.696-301.695 60.331 60.331-241.365 241.364z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 161,
+ "id": 2188,
+ "name": "code-line",
+ "prevSize": 32,
+ "code": 59758
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 110
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 768v-157.867c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743h-21.333v-68.267h21.333c8.404 0 16.727-1.655 24.492-4.873s14.82-7.932 20.763-13.871c5.943-5.943 10.657-13.001 13.873-20.766s4.872-16.086 4.872-24.491v-157.867c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h42.667v85.333h-42.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v174.933c0.004 17.963-5.66 35.469-16.186 50.027-10.526 14.554-25.377 25.417-42.438 31.040 17.061 5.623 31.912 16.486 42.438 31.040 10.526 14.558 16.19 32.064 16.186 50.027v174.933c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h42.667v85.333h-42.667c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v0zM853.333 610.133v157.867c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-42.667v-85.333h42.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-174.933c-0.004-17.963 5.662-35.469 16.188-50.027 10.526-14.554 25.374-25.417 42.436-31.040-17.062-5.623-31.91-16.486-42.436-31.040-10.526-14.558-16.192-32.064-16.188-50.027v-174.933c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497h-42.667v-85.333h42.667c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v157.867c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743h21.333v68.267h-21.333c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["braces-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 162,
+ "id": 2187,
+ "name": "braces-line",
+ "prevSize": 32,
+ "code": 59759
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 111
+ },
+ {
+ "icon": {
+ "paths": [
+ "M303.145 648.96c27.889 11.055 51.011 31.552 65.33 57.916 14.32 26.359 18.928 56.913 13.021 86.327s-21.955 55.817-45.343 74.607c-23.388 18.79-52.631 28.77-82.626 28.198-29.995-0.567-58.838-11.652-81.495-31.317s-37.69-46.66-42.476-76.275c-4.785-29.615 0.98-59.972 16.291-85.773s39.194-45.402 67.484-55.39v-270.508c-28.48-10.065-52.484-29.875-67.77-55.927s-20.87-56.671-15.764-86.442c5.106-29.771 20.573-56.779 43.667-76.249s52.327-30.149 82.534-30.149c30.206 0 59.439 10.679 82.533 30.149s38.56 46.478 43.667 76.249c5.106 29.772-0.477 60.39-15.763 86.442s-39.29 45.862-67.77 55.927v135.254c35.669-26.795 79.957-42.667 128-42.667h170.665c28.083 0 55.381-9.229 77.7-26.266 22.319-17.039 38.421-40.942 45.82-68.029-28.023-11.097-51.234-31.726-65.545-58.253s-18.807-57.253-12.693-86.768c6.114-29.515 22.447-55.927 46.118-74.586s53.167-28.369 83.294-27.42c30.127 0.949 58.953 12.495 81.404 32.607s37.086 47.499 41.331 77.341c4.245 29.841-2.172 60.224-18.125 85.798s-40.418 44.701-69.086 54.013c-8.593 49.524-34.389 94.422-72.849 126.785-38.455 32.363-87.104 50.108-137.37 50.112h-170.665c-28.079 0-55.381 9.229-77.7 26.266s-38.419 40.939-45.82 68.028v0zM255.998 725.333c-11.316 0-22.168 4.493-30.17 12.497-8.002 8-12.497 18.854-12.497 30.17s4.495 22.17 12.497 30.17c8.002 8 18.854 12.497 30.17 12.497s22.168-4.497 30.17-12.497c8.002-8 12.497-18.854 12.497-30.17s-4.495-22.17-12.497-30.17c-8.001-8.004-18.854-12.497-30.17-12.497zM255.998 213.332c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497zM767.996 213.332c-11.315 0-22.165 4.495-30.17 12.497-8 8.001-12.497 18.854-12.497 30.17s4.497 22.168 12.497 30.17c8.004 8.001 18.854 12.497 30.17 12.497 11.319 0 22.17-4.495 30.174-12.497 8-8.002 12.493-18.854 12.493-30.17s-4.493-22.168-12.493-30.17c-8.004-8.002-18.854-12.497-30.174-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-branch-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 163,
+ "id": 2186,
+ "name": "git-branch-line",
+ "prevSize": 32,
+ "code": 59760
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 112
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM170.667 213.333v597.333h682.667v-597.333h-682.667zM512 640h256v85.333h-256v-85.333zM369.792 512l-120.704-120.661 60.373-60.373 180.992 181.035-180.992 181.035-60.373-60.373 120.704-120.661z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["terminal-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 164,
+ "id": 2185,
+ "name": "terminal-box-line",
+ "prevSize": 32,
+ "code": 59761
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 113
+ },
+ {
+ "icon": {
+ "paths": [
+ "M677.291 554.667c-9.489 36.621-30.874 69.047-60.787 92.198-29.918 23.155-66.675 35.716-104.503 35.716s-74.586-12.561-104.502-35.716c-29.917-23.151-51.298-55.578-60.789-92.198h-218.709v-85.333h218.709c9.491-36.617 30.872-69.047 60.789-92.199s66.673-35.712 104.502-35.712c37.828 0 74.586 12.561 104.503 35.712 29.914 23.151 51.298 55.582 60.787 92.199h218.709v85.333h-218.709zM512 597.333c22.63 0 44.335-8.99 60.339-24.994 16.004-16 24.994-37.705 24.994-60.339 0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.635 8.99 44.339 24.994 60.339 16.004 16.004 37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-commit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 165,
+ "id": 2184,
+ "name": "git-commit-line",
+ "prevSize": 32,
+ "code": 59762
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 114
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 682.667v-85.333h42.667v-426.667h-554.667v428.16c7.067-1.003 14.196-1.502 21.333-1.493h64v85.333h-64c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h149.333v85.333h-149.333c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v-533.333c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v-85.333h128v-128h-42.667zM298.667 213.333h85.333v85.333h-85.333v-85.333zM298.667 341.333h85.333v85.333h-85.333v-85.333zM597.333 725.333v256h-85.333v-256h-128l170.667-213.333 170.667 213.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-repository-commits-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 166,
+ "id": 2183,
+ "name": "git-repository-commits-line",
+ "prevSize": 32,
+ "code": 59763
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 115
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.467 597.333h87.040l-23.253 116.267 245.077 91.904 308.352-102.827 46.677-233.344h-638.293l17.067-85.333h638.293l34.133-170.667h-638.293l17.067-85.333h725.333l-128 640-384 128-341.333-128 34.133-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["css3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 167,
+ "id": 2182,
+ "name": "css3-line",
+ "prevSize": 32,
+ "code": 59764
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 116
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM170.667 213.333v597.333h682.667v-597.333h-682.667zM853.333 512l-150.869 150.869-60.331-60.373 90.539-90.496-90.539-90.496 60.331-60.373 150.869 150.869zM291.328 512l90.539 90.496-60.331 60.373-150.869-150.869 150.869-150.869 60.331 60.416-90.539 90.453zM479.744 725.333h-90.795l155.307-426.667h90.795l-155.307 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 168,
+ "id": 2181,
+ "name": "code-box-line",
+ "prevSize": 32,
+ "code": 59765
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 117
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 384v-170.667h-682.667v170.667h682.667zM853.333 469.333h-682.667v341.333h682.667v-341.333zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM213.333 512h128v213.333h-128v-213.333zM213.333 256h85.333v85.333h-85.333v-85.333zM384 256h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["terminal-window-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 169,
+ "id": 2180,
+ "name": "terminal-window-line",
+ "prevSize": 32,
+ "code": 59766
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 118
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 849.067c48.179-9.852 91.477-36.036 122.577-74.133 31.095-38.093 48.085-85.756 48.090-134.933v-128c0.055-29.363-5.973-58.419-17.707-85.333h-391.253c-11.735 26.914-17.764 55.97-17.707 85.333v128c0.006 49.178 16.994 96.841 48.091 134.933 31.098 38.097 74.397 64.282 122.575 74.133v-251.733h85.333v251.733zM236.203 754.773c-15.14-36.369-22.913-75.379-22.869-114.773h-128v-85.333h128v-42.667c0-27.435 3.712-53.973 10.624-79.189l-94.421-54.528 42.667-73.899 86.187 49.749c2.72-4.339 5.551-8.607 8.491-12.8h490.24c2.944 4.181 5.76 8.491 8.491 12.8l86.187-49.749 42.667 73.899-94.421 54.528c6.912 25.173 10.624 51.755 10.624 79.189v42.667h128v85.333h-128c0 40.661-8.107 79.445-22.869 114.773l106.667 61.611-42.667 73.899-107.776-62.208c-27.972 34.577-63.33 62.455-103.479 81.591-40.145 19.136-84.066 29.043-128.542 29.001-44.476 0.043-88.396-9.865-128.544-29.001s-75.504-47.014-103.478-81.591l-107.776 62.208-42.667-73.899 106.667-61.611zM341.333 256c0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bug-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 170, "id": 2179, "name": "bug-line", "prevSize": 32, "code": 59767 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 119
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 775.595l-197.12-53.589-13.995-151.211h96.853l6.741 78.677 107.52 28.459 107.52-28.459 11.093-122.283h-333.653l-27.093-284.928h484.267l-9.685 94.293h-368.043l8.704 96.256h350.592l-26.624 289.195-197.077 53.589zM128 85.333h768l-69.248 768-314.752 85.333-314.752-85.333-69.248-768zM221.355 170.667l55.552 615.851 235.093 63.744 235.093-63.744 55.552-615.851h-581.291z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["html5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 171,
+ "id": 2178,
+ "name": "html5-line",
+ "prevSize": 32,
+ "code": 59768
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 120
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 213.333h85.333c22.635 0 44.339 8.99 60.339 24.994 16.004 16.003 24.994 37.708 24.994 60.34v348.587c28.48 10.065 52.484 29.875 67.772 55.927s20.868 56.67 15.761 86.443c-5.103 29.773-20.57 56.777-43.665 76.25-23.095 19.469-52.326 30.148-82.534 30.148-30.204 0-59.439-10.679-82.53-30.148-23.095-19.473-38.562-46.477-43.669-76.25s0.478-60.39 15.765-86.443c15.283-26.052 39.287-45.862 67.767-55.927v-348.587h-85.333v128l-192-170.667 192-170.667v128zM213.335 376.747c-28.48-10.065-52.484-29.875-67.77-55.928s-20.87-56.67-15.763-86.442c5.106-29.771 20.573-56.779 43.667-76.249s52.327-30.149 82.533-30.149c30.206 0 59.439 10.679 82.533 30.149s38.561 46.478 43.667 76.249c5.106 29.772-0.477 60.389-15.763 86.442s-39.29 45.862-67.77 55.928v270.507c28.48 10.065 52.484 29.875 67.77 55.927s20.87 56.67 15.763 86.443c-5.106 29.773-20.573 56.777-43.667 76.25-23.094 19.469-52.327 30.148-82.533 30.148s-59.439-10.679-82.533-30.148c-23.094-19.473-38.561-46.477-43.667-76.25s0.477-60.39 15.763-86.443c15.286-26.052 39.29-45.862 67.77-55.927v-270.507zM256.001 298.667c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM256.001 810.667c11.316 0 22.168-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.495-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM768 810.667c11.315 0 22.17-4.497 30.17-12.497 8.004-8 12.497-18.854 12.497-30.17s-4.493-22.17-12.497-30.17c-8-8-18.854-12.497-30.17-12.497s-22.165 4.497-30.17 12.497c-8 8-12.497 18.854-12.497 30.17s4.497 22.17 12.497 30.17c8.004 8 18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-pull-request-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 172,
+ "id": 2177,
+ "name": "git-pull-request-line",
+ "prevSize": 32,
+ "code": 59769
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 121
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 512l-241.365 241.365-60.331-60.331 181.035-181.035-181.035-181.035 60.331-60.331 241.365 241.365zM120.661 512l181.035 181.035-60.331 60.331-241.365-241.365 241.365-241.365 60.288 60.331-180.992 181.035zM417.621 896h-90.795l279.552-768h90.795l-279.552 768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-s-slash-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 173,
+ "id": 2176,
+ "name": "code-s-slash-line",
+ "prevSize": 32,
+ "code": 59770
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 122
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.329 512l-301.696 301.696-60.331-60.331 241.365-241.365-241.365-241.366 60.331-60.288 301.696 301.654zM469.329 810.667h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["terminal-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 174,
+ "id": 2175,
+ "name": "terminal-line",
+ "prevSize": 32,
+ "code": 59771
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 123
+ },
+ {
+ "icon": {
+ "paths": [
+ "M295.381 896c-77.227-99.669-124.715-234.965-124.715-384s47.488-284.331 124.715-384h85.931c-72.619 101.888-116.779 236.459-116.779 384s44.16 282.112 116.779 384h-85.931zM728.491 896h-85.931c72.619-101.888 116.779-236.459 116.779-384s-44.16-282.112-116.779-384h85.931c77.227 99.669 124.715 234.965 124.715 384s-47.445 284.331-124.715 384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parentheses-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 175,
+ "id": 2174,
+ "name": "parentheses-line",
+ "prevSize": 32,
+ "code": 59772
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 124
+ },
+ {
+ "icon": {
+ "paths": [
+ "M450.645 176.981c40.465-8.456 82.244-8.456 122.709 0l71.808-71.851 60.373 60.373-44.8 44.8c52.749 30.37 95.014 76.070 121.173 131.029h114.091v85.333h-88.32c1.963 13.952 2.987 28.16 2.987 42.667v42.667h85.333v85.333h-85.333v42.667c0 14.507-1.024 28.715-2.987 42.667h88.32v85.333h-114.091c-24.209 51.098-62.426 94.276-110.204 124.51-47.782 30.234-103.164 46.285-159.706 46.285s-111.924-16.051-159.705-46.285c-47.78-30.234-85.996-73.412-110.205-124.51h-114.091v-85.333h88.32c-2.005-14.135-3.003-28.39-2.987-42.667v-42.667h-85.333v-85.333h85.333v-42.667c0-14.507 1.024-28.715 2.987-42.667h-88.32v-85.333h114.091c26.153-54.976 68.416-100.691 121.173-131.072l-44.8-44.8 60.416-60.288 71.765 71.808zM512 256c-56.58 0-110.842 22.476-150.849 62.484s-62.484 94.27-62.484 150.85v170.667c0 56.58 22.476 110.839 62.484 150.848s94.269 62.485 150.849 62.485c56.58 0 110.844-22.477 150.848-62.485 40.009-40.009 62.485-94.268 62.485-150.848v-170.667c0-56.58-22.477-110.842-62.485-150.85-40.004-40.008-94.268-62.484-150.848-62.484v0zM384 597.333h256v85.333h-256v-85.333zM384 426.666h256v85.334h-256v-85.334z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bug-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 176,
+ "id": 2173,
+ "name": "bug-2-line",
+ "prevSize": 32,
+ "code": 59773
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 125
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 341.333h170.667v-64c0-29.535 8.759-58.407 25.169-82.965 16.405-24.558 39.731-43.698 67.017-55.001 27.29-11.302 57.314-14.26 86.281-8.498 28.971 5.762 55.578 19.985 76.463 40.87s35.106 47.493 40.87 76.461c5.76 28.968 2.803 58.993-8.499 86.281s-30.443 50.61-55.002 67.019c-24.559 16.409-53.431 25.167-82.965 25.167h-64v170.667h64c29.534 0 58.406 8.759 82.965 25.169 24.559 16.405 43.699 39.731 55.002 67.017 11.302 27.29 14.259 57.314 8.499 86.281-5.764 28.971-19.985 55.578-40.87 76.463s-47.492 35.106-76.463 40.87c-28.966 5.76-58.991 2.803-86.281-8.499-27.285-11.302-50.611-30.443-67.017-55.002-16.41-24.559-25.169-53.431-25.169-82.965v-64h-170.667v64c0 29.534-8.758 58.406-25.167 82.965s-39.732 43.699-67.019 55.002c-27.287 11.302-57.313 14.259-86.281 8.499-28.968-5.764-55.577-19.985-76.461-40.87s-35.107-47.492-40.87-76.463c-5.762-28.966-2.804-58.991 8.498-86.281 11.303-27.285 30.443-50.611 55.001-67.017 24.558-16.41 53.43-25.169 82.965-25.169h64v-170.667h-64c-29.535 0-58.407-8.758-82.965-25.167s-43.698-39.732-55.001-67.019c-11.302-27.287-14.26-57.313-8.498-86.281s19.985-55.577 40.87-76.461c20.884-20.885 47.493-35.107 76.461-40.87s58.993-2.804 86.281 8.498c27.287 11.303 50.61 30.443 67.019 55.001s25.167 53.43 25.167 82.965v64zM341.333 341.333v-64c0-12.658-3.753-25.032-10.786-35.556s-17.028-18.728-28.722-23.572c-11.695-4.844-24.563-6.111-36.977-3.642s-23.819 8.565-32.769 17.516c-8.951 8.951-15.046 20.354-17.516 32.769s-1.202 25.283 3.642 36.977c4.844 11.695 13.047 21.69 23.572 28.722s22.898 10.786 35.556 10.786h64zM341.333 682.667h-64c-12.658 0-25.032 3.755-35.556 10.786s-18.728 17.028-23.572 28.723c-4.844 11.695-6.111 24.563-3.642 36.975 2.47 12.416 8.565 23.821 17.516 32.772 8.951 8.947 20.354 15.044 32.769 17.515s25.283 1.203 36.977-3.644c11.695-4.843 21.69-13.047 28.722-23.569 7.032-10.526 10.786-22.899 10.786-35.558v-64zM682.667 341.333h64c12.659 0 25.033-3.753 35.558-10.786 10.522-7.033 18.726-17.028 23.569-28.722 4.847-11.695 6.114-24.563 3.644-36.977s-8.567-23.819-17.515-32.769c-8.951-8.951-20.356-15.046-32.772-17.516-12.412-2.469-25.28-1.202-36.975 3.642s-21.692 13.047-28.723 23.572c-7.031 10.525-10.786 22.898-10.786 35.556v64zM682.667 682.667v64c0 12.659 3.755 25.033 10.786 35.558 7.031 10.522 17.028 18.726 28.723 23.569 11.695 4.847 24.563 6.114 36.975 3.644 12.416-2.47 23.821-8.567 32.772-17.515 8.947-8.951 15.044-20.356 17.515-32.772 2.47-12.412 1.203-25.28-3.644-36.975-4.843-11.695-13.047-21.692-23.569-28.723-10.526-7.031-22.899-10.786-35.558-10.786h-64zM426.667 426.667v170.667h170.667v-170.667h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["command-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 177,
+ "id": 2172,
+ "name": "command-line",
+ "prevSize": 32,
+ "code": 59774
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 126
+ },
+ {
+ "icon": {
+ "paths": [
+ "M303.145 375.040c7.401 27.087 23.501 50.989 45.82 68.027 22.319 17.037 49.621 26.266 77.7 26.266h170.665c50.266 0.004 98.914 17.749 137.37 50.112 38.46 32.363 64.256 77.261 72.849 126.784 28.958 9.446 53.602 28.911 69.5 54.891 15.902 25.98 22.020 56.781 17.254 86.865-4.762 30.084-20.096 57.485-43.247 77.282-23.147 19.797-52.595 30.694-83.059 30.733-29.798 0.026-58.675-10.351-81.647-29.338-22.967-18.987-38.596-45.393-44.181-74.667s-0.785-59.58 13.581-85.687c14.362-26.112 37.389-46.396 65.101-57.348-7.398-27.085-23.501-50.987-45.82-68.028-22.319-17.037-49.617-26.266-77.7-26.266h-170.665c-46.17 0.068-91.105-14.908-128-42.667v135.253c28.48 10.065 52.484 29.875 67.77 55.927s20.869 56.67 15.763 86.443c-5.106 29.773-20.573 56.781-43.667 76.25s-52.327 30.148-82.533 30.148c-30.206 0-59.44-10.679-82.534-30.148s-38.56-46.477-43.667-76.25c-5.106-29.773 0.477-60.39 15.764-86.443s39.29-45.862 67.77-55.927v-270.506c-28.289-9.988-52.173-29.592-67.484-55.391s-21.076-56.156-16.291-85.772c4.785-29.617 19.819-56.612 42.476-76.276s51.5-30.748 81.495-31.318c29.995-0.57 59.238 9.411 82.626 28.2s39.436 45.194 45.343 74.607c5.907 29.413 1.299 59.967-13.021 86.329s-37.441 46.86-65.33 57.915v0zM255.998 298.667c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM255.998 810.667c11.316 0 22.168-4.493 30.17-12.497 8.002-8 12.497-18.854 12.497-30.17s-4.495-22.17-12.497-30.17c-8.001-8-18.854-12.497-30.17-12.497s-22.168 4.497-30.17 12.497c-8.002 8-12.497 18.854-12.497 30.17s4.495 22.17 12.497 30.17c8.002 8.004 18.854 12.497 30.17 12.497zM767.996 810.667c11.319 0 22.17-4.493 30.174-12.497 8-8 12.493-18.854 12.493-30.17s-4.493-22.17-12.493-30.17c-8.004-8-18.854-12.497-30.174-12.497-11.315 0-22.165 4.497-30.17 12.497-8 8-12.497 18.854-12.497 30.17s4.497 22.17 12.497 30.17c8.004 8.004 18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-merge-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 178,
+ "id": 2171,
+ "name": "git-merge-line",
+ "prevSize": 32,
+ "code": 59775
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 127
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 896v106.667l-128-85.333-128 85.333v-106.667h-21.333c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v-533.333c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667zM554.667 810.667h256v-128h-533.333c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h21.333v-85.333h256v85.333zM810.667 597.333v-426.667h-554.667v428.16c7.067-1.003 14.196-1.502 21.333-1.493h533.333zM298.667 213.333h85.333v85.333h-85.333v-85.333zM298.667 341.333h85.333v85.333h-85.333v-85.333zM298.667 469.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-repository-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 179,
+ "id": 2170,
+ "name": "git-repository-line",
+ "prevSize": 32,
+ "code": 59776
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 128
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 426.667v426.667h554.667v-426.667h-554.667zM768 341.333h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667zM682.667 341.333v-42.667c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68v42.667h341.333zM298.667 469.333h85.333v85.333h-85.333v-85.333zM298.667 597.333h85.333v85.333h-85.333v-85.333zM298.667 725.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-repository-private-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 180,
+ "id": 2169,
+ "name": "git-repository-private-line",
+ "prevSize": 32,
+ "code": 59777
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 129
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128v85.333h-128v597.333h128v85.333h-213.333v-768h213.333zM640 128h213.333v768h-213.333v-85.333h128v-597.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brackets-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 181,
+ "id": 2168,
+ "name": "brackets-line",
+ "prevSize": 32,
+ "code": 59778
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 130
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 512l-241.365 241.365-60.331-60.331 181.035-181.035-181.035-181.034 60.331-60.331 241.365 241.364zM120.661 512l181.035 181.035-60.331 60.331-241.365-241.365 241.365-241.364 60.288 60.331-180.992 181.034z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-s-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 182,
+ "id": 2167,
+ "name": "code-s-line",
+ "prevSize": 32,
+ "code": 59779
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 131
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 597.333v128h128v85.333h-128.043l0.043 128h-85.333l-0.043-128h-127.957v-85.333h128v-128h85.333zM863.701 202.965c96.512 96.768 99.84 250.88 10.069 351.36l-60.587-60.501c56.789-65.024 53.803-166.997-9.899-230.571-64.128-63.957-167.253-66.688-234.24-6.528l-56.96 51.115-57.003-51.072c-67.199-60.245-170.281-57.6-234.409 6.571-63.573 63.573-66.773 165.333-8.192 232.576l359.764 360.363-60.245 60.416-361.812-362.325c-89.771-100.523-86.4-254.891 10.069-351.403 96.64-96.597 251.221-99.84 351.743-9.728 100.224-89.984 255.104-86.997 351.659 9.728h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 183,
+ "id": 2166,
+ "name": "heart-add-line",
+ "prevSize": 32,
+ "code": 59780
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 132
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333c173.568 0 316.843 129.536 338.517 297.173l96 150.997c6.315 9.941 5.035 24.747-9.6 31.061l-83.584 35.755v125.013c0 47.147-38.187 85.333-85.333 85.333h-85.291l-0.043 128h-384v-157.611c0-50.347-18.603-98.005-53.077-141.013-46.891-58.453-74.923-132.651-74.923-213.376 0-188.501 152.832-341.333 341.333-341.333zM469.333 170.667c-141.397 0-256 114.603-256 256 0 59.093 19.968 114.901 56.149 160 46.677 58.197 71.851 124.459 71.851 194.389v72.277h213.333l0.085-128h170.581v-181.248l66.133-28.331-65.835-103.467-2.432-18.859c-16.384-126.72-124.843-222.763-253.867-222.763zM446.72 331.221l22.613 22.613 22.613-22.613c29.184-29.184 76.459-29.184 105.6 0 29.184 29.141 29.184 76.416 0 105.557l-128.213 128.256-128.213-128.256c-29.184-29.141-29.184-76.416 0-105.557 29.141-29.184 76.416-29.184 105.6 0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mental-health-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 184,
+ "id": 2165,
+ "name": "mental-health-line",
+ "prevSize": 32,
+ "code": 59781
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 133
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333v85.333h-42.667v138.368c0 49.408 10.709 98.176 31.403 143.019l182.699 395.776c14.805 32.128 0.768 70.144-31.317 84.907-8.405 3.925-17.536 5.931-26.795 5.931h-567.979c-35.328 0-64-28.672-64-64 0-9.259 2.005-18.432 5.888-26.837l182.699-395.776c20.693-44.8 31.403-93.611 31.403-143.019v-138.368h-42.667v-85.333h341.334zM571.221 426.709h-118.443c-4.437 15.488-9.813 30.763-15.957 45.696l-6.741 15.403-168.747 365.525h501.291l-168.704-365.525c-9.131-19.797-16.725-40.235-22.699-61.099zM469.333 309.035c0 10.795-0.427 21.589-1.237 32.341h87.808c-0.427-5.163-0.683-10.325-0.896-15.531l-0.341-16.811v-138.368h-85.333v138.368z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flask-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 185,
+ "id": 2164,
+ "name": "flask-line",
+ "prevSize": 32,
+ "code": 59782
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 134
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 640c174.080 0 317.696 130.304 338.688 298.667h-677.376c20.992-168.363 164.608-298.667 338.688-298.667zM434.645 737.28c-61.184 19.371-112.682 61.141-144.512 116.053h221.866l-77.355-116.053zM589.397 737.28l-77.397 116.053h221.824c-31.787-54.912-83.285-96.683-144.427-116.053zM768 85.333v256c0 141.397-114.603 256-256 256s-256-114.603-256-256v-256h512zM341.334 341.333c0 94.293 76.373 170.667 170.666 170.667s170.667-76.373 170.667-170.667h-341.333zM682.667 170.667h-341.333v85.333h341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["nurse-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 186,
+ "id": 2163,
+ "name": "nurse-line",
+ "prevSize": 32,
+ "code": 59783
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 135
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 468.48c66.645 66.603 66.645 174.677 0 241.323l-241.365 241.365c-16.64 16.64-43.691 16.64-60.331 0l-241.366-241.365c-66.645-66.645-66.645-174.72 0-241.365s174.72-66.645 241.366 0l30.123 30.165 30.208-30.165c66.645-66.645 174.72-66.645 241.365 0v0.043zM300.799 528.725c-33.28 33.323-33.28 87.381 0 120.704l211.201 211.2 211.2-211.2c33.28-33.323 33.28-87.381 0-120.704-33.323-33.28-87.381-33.28-120.747 0.085l-90.539 90.368-90.454-90.453c-33.28-33.28-87.339-33.28-120.661 0zM512 42.667c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667c-94.294 0-170.668-76.373-170.668-170.667s76.373-170.667 170.668-170.667zM512 128c-47.147 0-85.334 38.187-85.334 85.333s38.188 85.333 85.334 85.333c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["empathize-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 187,
+ "id": 2162,
+ "name": "empathize-line",
+ "prevSize": 32,
+ "code": 59784
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 136
+ },
+ {
+ "icon": {
+ "paths": [
+ "M843.861 180.139c99.968 99.968 99.968 262.059 0 362.027l-301.653 301.696c-100.011 99.968-262.103 99.968-362.071 0s-99.968-262.059 0-362.027l301.655-301.696c100.011-99.968 262.101-99.968 362.069 0zM602.539 662.827l-241.367-241.365-120.704 120.747c-66.645 66.603-66.645 174.677 0 241.323s174.72 66.645 241.367 0l120.704-120.704zM783.531 240.469c-66.645-66.645-174.72-66.645-241.365 0l-120.62 120.661 241.367 241.365 120.661-120.661c66.645-66.645 66.645-174.72 0-241.365h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["capsule-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 188,
+ "id": 2161,
+ "name": "capsule-line",
+ "prevSize": 32,
+ "code": 59785
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 137
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 321.664l256 597.333 156.117-364.331h185.216v-85.333h-241.451l-99.883 233.003-256-597.333-156.117 364.331h-185.216v85.333h241.451l99.883-233.003z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pulse-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 189,
+ "id": 2160,
+ "name": "pulse-line",
+ "prevSize": 32,
+ "code": 59786
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 138
+ },
+ {
+ "icon": {
+ "paths": [
+ "M924.928 340.48l-60.373 60.288-90.453-90.453-90.539 90.453 150.827 150.869-60.331 60.331-30.165-30.165-271.531 271.531h-241.364l-90.496 90.496-60.331-60.331 90.496-90.496v-241.365l271.529-271.531-30.164-30.165 60.329-60.331 150.869 150.827 90.453-90.496-90.453-90.496 60.331-60.373 241.365 241.408zM683.563 521.472l-181.035-181.035-60.331 60.331 90.496 90.539-60.331 60.331-90.495-90.496-60.331 60.331 90.453 90.496-60.288 60.331-90.539-90.496-5.163 5.163v181.035h181.033l246.528-246.528z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["syringe-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 190,
+ "id": 2159,
+ "name": "syringe-line",
+ "prevSize": 32,
+ "code": 59787
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 139
+ },
+ {
+ "icon": {
+ "paths": [
+ "M821.035 202.965c62.379 62.549 85.845 149.035 70.4 229.547 24.235 6.827 47.189 19.755 66.304 38.741 59.904 59.477 59.904 155.904 0 215.339l-232.405 230.741-128.939-128-127.061 127.36-361.812-362.325c-89.728-100.523-86.357-254.891 10.112-351.403 96.64-96.597 251.221-99.84 351.743-9.728 100.224-89.984 255.104-86.997 351.659 9.728zM553.045 531.84c-26.283 26.069-26.283 68.139 0 94.208l172.288 171.051 172.288-171.051c26.283-26.069 26.283-68.139 0-94.208-26.624-26.453-70.059-26.453-96.768 0.085l-75.605 74.837-75.52-74.923c-26.624-26.453-70.059-26.453-96.683 0zM178.006 263.339c-63.573 63.573-66.773 165.333-8.192 232.576l299.519 299.989 66.517-66.645-42.923-42.667c-59.904-59.435-59.904-155.861 0-215.339 59.904-59.435 157.013-59.435 216.917 0l15.488 15.36 15.488-15.36c18.133-17.963 39.68-30.507 62.507-37.632 17.749-58.325 3.328-124.245-42.709-170.368-64-64.085-167.253-66.688-234.24-6.528l-56.96 51.115-57.002-51.072c-67.2-60.245-170.24-57.6-234.411 6.571z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hearts-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 191,
+ "id": 2158,
+ "name": "hearts-line",
+ "prevSize": 32,
+ "code": 59788
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 140
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 42.667c23.552 0 42.667 19.115 42.667 42.667v128h170.667c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h170.667v-128c0-23.552 19.115-42.667 42.667-42.667h341.333zM853.333 298.667h-682.667v512h682.667v-512zM554.667 384v128h128v85.333h-128.043l0.043 128h-85.333l-0.043-128h-127.957v-85.333h128v-128h85.333zM640 128h-256v85.333h256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["first-aid-kit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 192,
+ "id": 2157,
+ "name": "first-aid-kit-line",
+ "prevSize": 32,
+ "code": 59789
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 141
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.805 59.435l784.382 784.427-60.331 60.331-159.872-159.872-171.989 172.373-361.812-362.325c-87.040-97.451-86.528-245.461 1.451-342.315l-92.203-92.245 60.373-60.373zM212.477 495.915l299.518 299.989 111.659-111.915-411.518-411.52c-55.211 63.872-55.467 159.36 0.341 223.445zM863.697 202.965c96.512 96.768 99.84 250.88 10.069 351.403l-69.76 69.803-60.331-60.331 67.84-67.925c58.624-67.243 55.424-168.875-8.235-232.661-64-64.085-167.253-66.688-234.24-6.528l-56.96 51.115-57.003-51.072c-14.933-13.397-31.614-23.68-49.278-30.848l-96-96c71.168-8.789 145.364 12.331 202.238 63.317 100.224-89.984 255.104-86.997 351.659 9.728z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dislike-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 193,
+ "id": 2156,
+ "name": "dislike-line",
+ "prevSize": 32,
+ "code": 59790
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 142
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.056 146.944c66.645 66.645 66.645 174.677 0 241.365l-349.867 349.867c-27.392 27.392-63.317 44.672-101.843 48.939l-144.128 15.957-98.048 98.133c-16.64 16.64-43.691 16.64-60.331 0-16.64-16.683-16.64-43.691 0-60.373l98.048-98.091 16-144.085c4.267-38.528 21.547-74.453 48.939-101.845l349.865-349.867c66.688-66.645 174.72-66.645 241.365 0zM696.064 207.275l-349.865 349.867c-13.739 13.696-22.357 31.659-24.491 50.901l-11.776 106.027 106.027-11.776c19.198-2.133 37.203-10.752 50.899-24.448l18.005-18.048-60.329-60.331 60.329-60.331 60.331 60.331 60.331-60.331-60.331-60.331 60.331-60.331 60.373 60.331 60.331-60.373-60.331-60.331 60.288-60.288 60.331 60.331 30.165-30.165c33.323-33.28 33.323-87.339 0-120.661-33.28-33.323-87.339-33.323-120.661 0l0.043-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thermometer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 194,
+ "id": 2155,
+ "name": "thermometer-line",
+ "prevSize": 32,
+ "code": 59791
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 143
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 469.333v85.333l-227.285 256h227.285v85.333h-341.333v-85.333l227.243-256h-227.243v-85.333h341.333zM896 128v85.333l-227.285 256h227.285v85.333h-341.333v-85.333l227.243-256h-227.243v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zzz-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 195, "id": 2154, "name": "zzz-line", "prevSize": 32, "code": 59792 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 144
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 85.333v85.333h-85.333v128c70.699 0 128 57.301 128 128v469.333c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-469.333c0-70.699 57.301-128 128-128v-128h-85.333v-85.333h597.333zM725.333 384h-426.667c-23.552 0-42.667 19.115-42.667 42.667v426.667h512v-426.667c0-23.552-19.115-42.667-42.667-42.667zM554.667 469.333v85.333h85.333v85.333h-85.376l0.043 85.333h-85.333l-0.043-85.333h-85.291v-85.333h85.333v-85.333h85.333zM640 170.667h-256v128h256v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medicine-bottle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 196,
+ "id": 2153,
+ "name": "medicine-bottle-line",
+ "prevSize": 32,
+ "code": 59793
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 145
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.709 725.333c-0.043 170.667-0.043 170.667-170.667 170.667-170.667 0-213.333-128-213.333-256 0-16.128-0.768-39.168-1.109-66.133l86.315 49.877 0.085 16.256c0 118.443 34.816 170.667 128 170.667 48.64 0 68.693-0.299 83.755-1.621 1.28-14.976 1.579-35.072 1.579-83.712 0-136.747-29.995-257.408-78.293-337.067-35.755-58.965-68.821-78.635-86.699-72.661-12.501 4.181-25.813 27.733-35.456 69.248l-76.373-44.075c15.744-51.072 41.899-91.776 84.821-106.112 128-42.667 277.461 170.667 277.333 490.667h0.043zM362.667 234.667c42.965 14.336 69.12 55.040 84.864 106.112l-76.373 44.075c-9.643-41.515-22.997-65.067-35.456-69.248-17.92-5.973-50.987 13.653-86.699 72.619-48.341 79.701-78.336 200.363-78.336 337.109 0 48.64 0.299 68.693 1.621 83.712 14.976 1.323 35.072 1.621 83.712 1.621 93.184 0 128-52.224 128-170.667l0.171-16.299 86.315-49.835c-0.427 27.008-1.152 50.005-1.152 66.133 0 128-42.667 256-213.333 256s-170.667 0-170.667-170.667c0-320 149.333-533.333 277.333-490.667zM554.667 85.333v316.672l200.363 115.712-42.667 73.899-200.363-115.669-200.363 115.669-42.667-73.899 200.363-115.712v-316.672h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lungs-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 197,
+ "id": 2152,
+ "name": "lungs-line",
+ "prevSize": 32,
+ "code": 59794
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 146
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 128v85.333h-85.333v170.667c0 94.293 76.373 170.667 170.667 170.667s170.667-76.373 170.667-170.667v-170.667h-85.333v-85.333h128c23.552 0 42.667 19.115 42.667 42.667v213.333c0 126.848-92.245 232.107-213.333 252.459v67.541c0 82.475 66.859 149.333 149.333 149.333 63.872 0 118.4-40.107 139.733-96.555-44.672-19.925-75.733-64.725-75.733-116.779 0-70.699 57.301-128 128-128s128 57.301 128 128c0 58.496-39.253 107.819-92.843 123.093-26.197 100.992-117.973 175.573-227.157 175.573-129.621 0-234.667-105.045-234.667-234.667v-67.541c-121.088-20.309-213.333-125.611-213.333-252.459v-213.333c0-23.552 19.115-42.667 42.667-42.667h128zM810.667 597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stethoscope-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 198,
+ "id": 2151,
+ "name": "stethoscope-line",
+ "prevSize": 32,
+ "code": 59795
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 147
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 256v85.333c-141.397 0-256 114.603-256 256s114.603 256 256 256c138.155 0 250.795-109.483 255.829-246.4l0.171-9.6h85.333c0 188.501-152.832 341.333-341.333 341.333s-341.333-152.832-341.333-341.333c0-184.96 152.747-341.333 341.333-341.333zM896 85.333v85.333l-227.285 256h227.285v85.333h-341.333v-85.333l227.243-256h-227.243v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rest-time-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 199,
+ "id": 2150,
+ "name": "rest-time-line",
+ "prevSize": 32,
+ "code": 59796
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 148
+ },
+ {
+ "icon": {
+ "paths": [
+ "M532.693 133.163l331.008 82.773c18.987 4.693 32.299 21.76 32.299 41.387v41.344h42.667c46.933 0 85.333 38.4 85.333 85.333v128c0 70.699-57.301 128-128 128h-17.963c-22.827 57.6-66.219 106.069-123.563 134.741l-204.331 102.187c-24.021 11.989-52.267 11.989-76.288 0l-204.373-102.187c-57.259-28.672-100.651-77.141-123.477-134.741h-18.005c-70.699 0-128-57.301-128-128v-128c0-47.147 38.187-85.333 85.333-85.333h42.667v-41.387c0-19.541 13.312-36.608 32.299-41.387l331.008-82.731c13.568-3.413 27.819-3.413 41.387 0zM512 215.936l-298.667 74.667v255.147c0 64.683 36.523 123.733 94.336 152.704l204.331 102.144 204.331-102.144c57.813-28.928 94.336-88.021 94.336-152.661v-255.147l-298.667-74.709zM128 384h-42.667v128c0 23.552 19.115 42.667 42.667 42.667v-170.667zM938.667 384h-42.667v170.667c23.552 0 42.667-19.115 42.667-42.667v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["surgical-mask-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 200,
+ "id": 2149,
+ "name": "surgical-mask-line",
+ "prevSize": 32,
+ "code": 59797
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 149
+ },
+ {
+ "icon": {
+ "paths": [
+ "M863.701 202.965c96.512 96.768 99.84 250.88 10.069 351.403l-361.813 362.325-361.728-362.325c-89.771-100.523-86.4-254.891 10.069-351.403 96.64-96.597 251.221-99.84 351.744-9.728 100.224-89.984 255.104-86.997 351.659 9.728zM220.672 263.339c-63.573 63.573-66.773 165.333-8.192 232.576l299.52 299.989 299.52-299.947c58.624-67.285 55.424-168.917-8.235-232.704-63.445-63.573-165.589-66.645-232.661-7.936l-179.285 179.328-60.373-60.331 120.533-120.619-3.499-2.944c-67.2-53.973-165.418-49.365-227.328 12.587z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 201,
+ "id": 2148,
+ "name": "heart-2-line",
+ "prevSize": 32,
+ "code": 59798
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 150
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 128c129.621 0 234.667 106.667 234.667 256 0 298.667-320 469.333-426.667 533.333-106.667-64-426.667-234.667-426.667-533.333 0-149.333 106.667-256 234.667-256 79.36 0 149.333 42.667 192 85.333 42.667-42.667 112.64-85.333 192-85.333zM551.851 793.771c37.589-23.723 71.509-47.317 103.253-72.576 127.189-101.12 198.229-211.627 198.229-337.195 0-100.693-65.579-170.667-149.333-170.667-45.909 0-95.573 24.32-131.669 60.331l-60.331 60.331-60.331-60.331c-36.096-36.011-85.76-60.331-131.669-60.331-82.773 0-149.333 70.656-149.333 170.667 0 125.611 71.083 236.075 198.187 337.195 31.787 25.259 65.707 48.853 103.296 72.533 12.757 8.064 25.387 15.787 39.851 24.405 14.464-8.619 27.093-16.341 39.851-24.363z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 202,
+ "id": 2147,
+ "name": "heart-3-line",
+ "prevSize": 32,
+ "code": 59799
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 151
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.259 83.072l159.317 61.184-30.592 79.659-39.851-15.317-31.829 82.987c33.237 19.712 61.611 46.677 82.987 78.763l81.195-36.139-17.365-38.997 77.952-34.688 69.419 155.904-77.952 34.688-17.365-38.955-81.152 36.139c5.205 20.352 7.979 41.728 7.979 63.701 0 17.323-1.707 34.261-4.992 50.645l82.944 31.829 15.275-39.808 79.701 30.592-61.184 159.317-79.659-30.592 15.275-39.808-82.944-31.872c-19.712 33.237-46.677 61.611-78.763 82.987l36.139 81.195 38.997-17.365 34.688 77.952-155.904 69.419-34.688-77.952 38.955-17.365-36.139-81.152c-20.352 5.205-41.728 7.979-63.701 7.979-17.365 0-34.304-1.707-50.688-5.035l-31.829 82.987 39.851 15.275-30.592 79.701-159.316-61.184 30.592-79.659 39.765 15.275 31.915-82.944c-33.237-19.712-61.611-46.677-83.029-78.763l-81.195 36.139 17.365 38.997-77.952 34.688-69.419-155.904 77.952-34.688 17.323 38.997 81.195-36.181c-5.163-20.352-7.936-41.728-7.936-63.701 0-17.323 1.707-34.261 4.992-50.645l-82.987-31.829-15.232 39.808-79.701-30.592 61.184-159.275 79.659 30.592-15.317 39.808 82.987 31.872c19.712-33.28 46.677-61.653 78.763-83.072l-36.139-81.195-38.997 17.365-34.688-77.952 155.904-69.376 34.687 77.952-38.954 17.365 36.138 81.152c20.352-5.205 41.728-7.979 63.701-7.979 17.323 0 34.261 1.707 50.645 4.992l31.787-82.987-39.765-15.232 30.592-79.701zM512 341.333c-94.292 0-170.666 76.373-170.666 170.667s76.373 170.667 170.666 170.667c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667zM490.667 548.949c20.395 11.776 27.392 37.888 15.616 58.283s-37.888 27.392-58.283 15.616c-20.395-11.776-27.391-37.888-15.616-58.283s37.888-27.392 58.283-15.616zM597.333 469.333c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM506.283 416.768c11.776 20.395 4.779 46.507-15.616 58.283s-46.507 4.779-58.283-15.616c-11.775-20.395-4.779-46.507 15.616-58.283s46.507-4.779 58.283 15.616z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["virus-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 203,
+ "id": 2146,
+ "name": "virus-line",
+ "prevSize": 32,
+ "code": 59800
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 152
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512.043 193.237c100.224-89.984 255.104-86.997 351.659 9.728 96.512 96.768 99.84 250.88 10.069 351.403l-361.813 362.325-361.728-362.325c-89.771-100.523-86.4-254.891 10.069-351.403 96.64-96.597 251.221-99.84 351.744-9.728zM803.285 263.253c-64-64.085-167.253-66.688-234.24-6.528l-56.96 51.115-57.003-51.072c-67.2-60.245-170.24-57.6-234.41 6.571-63.573 63.573-66.773 165.333-8.192 232.576l299.52 299.989 299.52-299.947c58.624-67.285 55.424-168.917-8.235-232.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 204,
+ "id": 2145,
+ "name": "heart-line",
+ "prevSize": 32,
+ "code": 59801
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 153
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 85.333v384h-128.043l0.043 42.667c0 94.293-76.373 170.667-170.667 170.667h-58.837l-26.155 132.736 38.869 56.363c13.397 19.413 8.533 45.995-10.88 59.349-7.125 4.907-15.573 7.552-24.235 7.552h-388.096l98.688-427.691-98.688-41.643 170.667-384h597.333zM810.667 170.667h-456.533l-112.853 253.867 84.693 35.712-90.709 393.088h199.595l-13.184-19.115 88.619-450.219h300.373v-213.333zM682.624 469.333h-102.144l-25.216 128h42.069c47.147 0 85.333-38.187 85.333-85.333l-0.043-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["infrared-thermometer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 205,
+ "id": 2144,
+ "name": "infrared-thermometer-line",
+ "prevSize": 32,
+ "code": 59802
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 154
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333c173.568 0 316.843 129.536 338.517 297.173l96 150.997c6.315 9.941 5.035 24.747-9.6 31.061l-83.584 35.755v125.013c0 47.147-38.187 85.333-85.333 85.333h-85.291l-0.043 128h-384v-157.611c0-50.347-18.603-98.005-53.077-141.013-46.891-58.453-74.923-132.651-74.923-213.376 0-188.501 152.832-341.333 341.333-341.333zM469.333 170.667c-141.397 0-256 114.603-256 256 0 59.093 19.968 114.901 56.149 160 46.677 58.197 71.851 124.459 71.851 194.389v72.277h213.333l0.085-128h170.581v-181.248l66.133-28.331-65.835-103.467-2.432-18.859c-16.384-126.72-124.843-222.763-253.867-222.763zM469.333 298.667c23.552 0 42.667 19.115 42.667 42.667v42.667h42.667c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-42.667v42.667c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-42.709l-42.667 0.043c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667l42.667-0.043v-42.624c0-23.552 19.115-42.667 42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["psychotherapy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 206,
+ "id": 2143,
+ "name": "psychotherapy-line",
+ "prevSize": 32,
+ "code": 59803
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 155
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333v85.333h128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h128v-85.333h426.667zM298.667 256h-85.333v597.333h597.333v-597.333h-85.333v85.333h-426.667v-85.333zM554.667 469.333v85.333h85.333v85.333h-85.376l0.043 85.333h-85.333l-0.043-85.333h-85.291v-85.333h85.333v-85.333h85.333zM640 170.667h-256v85.333h256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dossier-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 207,
+ "id": 2142,
+ "name": "dossier-line",
+ "prevSize": 32,
+ "code": 59804
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 156
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 128c129.621 0 234.667 106.667 234.667 256 0 298.667-320 469.333-426.667 533.333-84.352-50.603-302.208-167.979-389.589-362.624l-79.744-0.043v-85.333h51.627c-5.803-27.136-8.96-55.552-8.96-85.333 0-149.333 106.667-256 234.667-256 79.36 0 149.333 42.667 192 85.333 42.667-42.667 112.64-85.333 192-85.333zM704 213.333c-45.909 0-95.573 24.32-131.669 60.331l-60.331 60.331-60.331-60.331c-36.096-36.011-85.76-60.331-131.669-60.331-82.773 0-149.333 70.656-149.333 170.667 0 29.227 3.84 57.685 11.392 85.333h92.459l88.149-146.944 128 213.333 39.851-66.389h194.816v85.333h-146.517l-88.149 146.944-128-213.333-39.851 66.389h-104.875c33.707 58.624 84.693 113.835 150.912 166.528 31.787 25.259 65.707 48.853 103.296 72.533 12.757 8.064 25.387 15.787 39.851 24.405 14.464-8.619 27.093-16.341 39.851-24.363 37.589-23.723 71.509-47.317 103.253-72.576 127.189-101.12 198.229-211.627 198.229-337.195 0-100.693-65.579-170.667-149.333-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-pulse-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 208,
+ "id": 2141,
+ "name": "heart-pulse-line",
+ "prevSize": 32,
+ "code": 59805
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 157
+ },
+ {
+ "icon": {
+ "paths": [
+ "M563.029 96.768l138.667 240.213c11.776 20.352 4.779 46.464-15.616 58.24l-55.467 32 42.709 73.899-73.899 42.667-42.667-73.941-55.424 32.043c-20.395 11.776-46.507 4.779-58.283-15.616l-78.421-135.765c-87.552 26.539-151.296 107.947-151.296 204.16 0 26.667 4.907 52.224 13.824 75.776 33.109-20.992 72.192-33.109 114.176-33.109 71.851 0 135.424 35.541 174.080 89.984l328.021-189.397 42.667 73.899-336.128 194.091c3.072 14.421 4.693 29.44 4.693 44.757 0 14.635-1.451 28.885-4.267 42.667h345.6v85.333l-725.333 0.043c-26.795-35.669-42.667-80-42.667-128.043 0-42.965 12.715-82.987 34.56-116.48-22.059-41.6-34.56-89.088-34.56-139.52 0-127.787 80.256-236.843 193.152-279.467l-16.768-29.099c-23.552-40.832-9.6-93.013 31.232-116.565l110.848-64c40.832-23.552 93.013-9.6 116.565 31.232zM341.333 682.667c-70.699 0-128 57.301-128 128 0 14.933 2.56 29.312 7.253 42.667h241.493c4.693-13.355 7.253-27.733 7.253-42.667 0-70.699-57.301-128-128-128zM489.131 139.435l-110.848 64 117.333 203.221 110.848-64-117.333-203.221z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["microscope-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 209,
+ "id": 2140,
+ "name": "microscope-line",
+ "prevSize": 32,
+ "code": 59806
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 158
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333v85.333l-170.667-0.043v85.376h128v85.333c94.293 0 170.667 76.373 170.667 170.667v341.333c0 47.147-38.187 85.333-85.333 85.333h-512.002c-47.147 0-85.333-38.187-85.333-85.333v-341.333c0-94.293 76.373-170.667 170.667-170.667v-85.333h128.002v-85.376l-149.335 0.043c-26.88 0-58.453 20.907-93.867 68.267l-68.267-51.2c49.92-66.56 103.68-102.4 162.133-102.4h405.335zM682.667 426.667h-341.335c-47.147 0-85.333 38.187-85.333 85.333v341.333h512.002v-341.333c0-47.147-38.187-85.333-85.333-85.333zM554.667 512v85.333h85.333v85.333h-85.376l0.043 85.333h-85.333l-0.043-85.333h-85.293v-85.333h85.335v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hand-sanitizer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 210,
+ "id": 2139,
+ "name": "hand-sanitizer-line",
+ "prevSize": 32,
+ "code": 59807
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 159
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c23.552 0 42.667 19.115 42.667 42.667v768c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-85.333h-85.333v-85.333h85.333v-85.333h-85.333v-85.333h85.333v-85.333h-85.333v-85.333h85.333v-85.333h-85.333v-85.333h85.333v-85.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM810.667 170.667h-512v682.667h512v-682.667zM597.333 341.333v128h128v85.333h-128.043l0.043 128h-85.333l-0.043-128h-127.957v-85.333h128v-128h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["health-book-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 211,
+ "id": 2138,
+ "name": "health-book-line",
+ "prevSize": 32,
+ "code": 59808
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 160
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333v85.333h-42.667v597.333c0 94.293-76.373 170.667-170.667 170.667s-170.667-76.373-170.667-170.667v-597.333h-42.667v-85.333h426.667zM597.333 426.667h-170.667v341.333c0 47.147 38.187 85.333 85.333 85.333s85.333-38.187 85.333-85.333v-341.333zM554.667 640c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM469.333 512c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM597.333 170.667h-170.667v170.667h170.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["test-tube-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 212,
+ "id": 2137,
+ "name": "test-tube-line",
+ "prevSize": 32,
+ "code": 59809
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 161
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 512c-0.009-76.079-25.434-149.976-72.239-209.955s-112.307-102.601-186.103-121.099c-73.796-18.498-151.659-11.811-221.219 18.998-69.562 30.81-126.837 83.976-162.73 151.056s-48.347 144.231-35.383 219.196c12.964 74.97 50.601 143.454 106.936 194.586 56.335 51.136 128.137 81.98 204.006 87.642 75.87 5.662 151.454-14.187 214.754-56.393l47.36 70.997c-70.050 46.835-152.448 71.774-236.715 71.637-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667v64c0.004 31.949-10.236 63.053-29.218 88.751-18.982 25.694-45.705 44.625-76.241 54.012s-63.275 8.734-93.414-1.865c-30.135-10.598-56.081-30.583-74.022-57.015-28.476 29.611-64.896 50.368-104.887 59.78-39.987 9.412-81.843 7.078-120.538-6.72-38.696-13.803-72.583-38.481-97.591-71.074s-40.074-71.714-43.386-112.661c-3.313-40.947 5.268-81.98 24.712-118.171 19.444-36.189 48.923-65.995 84.896-85.836s76.908-28.873 117.894-26.011c40.981 2.862 80.265 17.495 113.131 42.143h85.333v234.667c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257v-64zM512 384c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["at-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 213, "id": 2136, "name": "at-line", "prevSize": 32, "code": 59810 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 162
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 853.632c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-42.965h768v-499.2l-341.333 307.2-426.667-384v-64c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.965zM189.184 213.333l322.816 290.56 322.816-290.56h-645.632zM0 640h341.333v85.333h-341.333v-85.333zM0 426.667h213.333v85.333h-213.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-send-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 214,
+ "id": 2135,
+ "name": "mail-send-line",
+ "prevSize": 32,
+ "code": 59811
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 163
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128v85.333h-384v-85.333h384zM682.667 810.667v85.333h-554.667v-85.333h554.667zM938.667 469.333v85.333h-810.667v-85.333h810.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-horizontal-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 215,
+ "id": 2134,
+ "name": "bar-chart-horizontal-line",
+ "prevSize": 32,
+ "code": 59812
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 164
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM853.333 469.333h-682.667v341.333h682.667v-341.333zM853.333 384v-170.667h-682.667v170.667h682.667zM384 256h85.333v85.333h-85.333v-85.333zM213.333 256h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["window-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 216,
+ "id": 2133,
+ "name": "window-line",
+ "prevSize": 32,
+ "code": 59813
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 165
+ },
+ {
+ "icon": {
+ "paths": [
+ "M149.973 89.6l814.592 814.592-60.373 60.373-85.931-85.973c-29.623 11.537-61.137 17.442-92.928 17.408h-426.667c-60.449 0.038-118.961-21.316-165.176-60.279-46.215-38.967-77.15-93.026-87.329-152.614-10.179-59.584 1.056-120.849 31.715-172.945 30.659-52.1 78.764-91.665 135.798-111.697-1.826-37.071 3.282-74.157 15.061-109.355l-139.136-139.179 60.373-60.331zM298.667 384c0 3.456 0.085 6.955 0.256 10.368l2.987 63.488-59.904 21.077c-37.952 13.423-69.941 39.821-90.321 74.534-20.38 34.718-27.839 75.516-21.062 115.196s27.356 75.691 58.103 101.675c30.747 25.98 69.686 40.265 109.941 40.329h426.667c7.936 0 15.744-0.555 23.381-1.579l-448.768-448.768c-0.853 7.765-1.28 15.659-1.28 23.68zM512 85.334c40.439-0.001 80.461 8.21 117.632 24.137s70.72 39.235 98.615 68.515c27.895 29.279 49.553 63.919 63.663 101.818s20.373 78.269 18.415 118.662c35.435 12.482 67.691 32.605 94.477 58.948 26.79 26.338 47.454 58.253 60.531 93.47 13.082 35.221 18.249 72.883 15.147 110.323-3.106 37.444-14.409 73.741-33.109 106.325l-63.701-63.701c12.557-31.057 15.689-65.126 9.011-97.954-6.677-32.832-22.869-62.967-46.562-86.656-23.689-23.684-53.828-39.872-86.66-46.545-32.828-6.669-66.897-3.529-97.954 9.033l-63.744-63.786c37.589-21.547 81.109-33.92 127.573-33.92 0-39.063-10.726-77.376-31.010-110.761-20.279-33.385-49.34-60.561-84.006-78.563s-73.613-26.141-112.589-23.529c-38.972 2.613-76.483 15.877-108.437 38.346l-61.013-61.013c52.445-41.023 117.141-63.258 183.723-63.147v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloud-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 217,
+ "id": 2132,
+ "name": "cloud-off-line",
+ "prevSize": 32,
+ "code": 59814
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 166
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM170.667 213.333v597.333h682.667v-597.333h-682.667zM256 298.667h256v256h-256v-256zM341.333 384v85.333h85.333v-85.333h-85.333zM256 640h512v85.333h-512v-85.333zM597.333 298.667h170.667v85.333h-170.667v-85.333zM597.333 469.333h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["profile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 218,
+ "id": 2131,
+ "name": "profile-line",
+ "prevSize": 32,
+ "code": 59815
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 167
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 597.333h-85.333v-288.512l-338.261 302.933-344.405-303.872v502.784h426.667v85.333h-469.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667zM192.469 213.333l322.133 284.245 317.483-284.245h-639.616zM810.667 938.667l-150.869-150.869 60.373-60.331 90.496 90.539 150.869-150.869 60.331 60.331-211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-check-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 219,
+ "id": 2130,
+ "name": "mail-check-line",
+ "prevSize": 32,
+ "code": 59816
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 168
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v597.333h682.667v-597.333zM401.024 341.333l136.491 341.333h-91.947l-17.067-42.667h-140.373l-17.067 42.667h-91.904l136.533-341.333h85.333zM810.667 341.333v341.333h-128c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491h42.624l0.043-85.333h85.333zM725.333 512h-42.667c-10.876 0.013-21.333 4.177-29.244 11.639-7.906 7.467-12.663 17.673-13.303 28.527-0.636 10.854 2.897 21.547 9.877 29.884 6.98 8.341 16.879 13.7 27.678 14.985l4.992 0.299h42.667v-85.333zM358.357 464.427l-36.139 90.24h72.192l-36.053-90.24z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["advertisement-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 220,
+ "id": 2129,
+ "name": "advertisement-line",
+ "prevSize": 32,
+ "code": 59817
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 169
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 308.821l-338.261 302.933-344.405-303.872v502.784h301.653c4.241 29.581 12.928 58.351 25.771 85.333h-370.091c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v352.213c-26.061-18.197-54.874-32.098-85.333-41.173v-172.885zM832.043 213.333h-639.573l322.133 284.245 317.44-284.245zM712.832 883.541c23.893 11.43 50.739 15.168 76.847 10.701 26.103-4.471 50.18-16.926 68.907-35.657 18.731-18.726 31.185-42.803 35.657-68.907 4.467-26.108 0.73-52.954-10.701-76.847l-170.709 170.709zM652.459 823.168l170.709-170.667c-23.893-11.43-50.739-15.168-76.847-10.701-26.103 4.471-50.18 16.926-68.907 35.657-18.731 18.726-31.185 42.803-35.657 68.907-4.467 26.108-0.73 52.954 10.701 76.847v-0.043zM768 981.333c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-forbid-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 221,
+ "id": 2128,
+ "name": "mail-forbid-line",
+ "prevSize": 32,
+ "code": 59818
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 170
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 810.667v85.333h-85.333v-85.333h-682.667v85.333h-85.333v-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h449.195c23.987-26.877 53.389-48.376 86.272-63.083s68.51-22.29 104.533-22.251c75.819 0 143.957 32.981 190.805 85.333h22.528c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM483.883 298.667h-355.883v426.667h768v-150.528c-42.364 37.943-96.154 60.698-152.883 64.678s-113.169-11.042-160.414-42.701c-47.245-31.654-82.607-78.14-100.497-132.122-17.894-53.983-17.306-112.386 1.677-165.995v0zM725.333 554.667c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678 0-45.263-17.98-88.673-49.988-120.679-32.004-32.006-75.413-49.987-120.678-49.987s-88.674 17.981-120.678 49.987c-32.009 32.006-49.988 75.416-49.988 120.679 0 45.265 17.98 88.674 49.988 120.678 32.004 32.009 75.413 49.988 120.678 49.988v0zM213.333 554.667h85.333v85.333h-85.333v-85.333zM341.333 554.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["projector-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 222,
+ "id": 2127,
+ "name": "projector-2-line",
+ "prevSize": 32,
+ "code": 59819
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 171
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 650.453v293.205c0 3.772-0.998 7.479-2.901 10.743-1.899 3.26-4.629 5.961-7.915 7.821-3.281 1.86-7.002 2.816-10.778 2.769-3.772-0.043-7.467-1.092-10.705-3.029l-181.035-108.629-181.035 108.629c-3.241 1.941-6.939 2.987-10.717 3.029-3.778 0.047-7.5-0.913-10.785-2.782-3.285-1.865-6.016-4.57-7.913-7.838s-2.892-6.98-2.884-10.756v-293.12c-55.204-44.198-95.318-104.452-114.796-172.437-19.479-67.982-17.361-140.337 6.060-207.063s66.99-124.532 124.684-165.427c57.695-40.895 126.665-62.86 197.385-62.86s139.691 21.965 197.385 62.86c57.694 40.895 101.265 98.7 124.685 165.427s25.54 139.081 6.059 207.063c-19.477 67.985-59.588 128.239-114.795 172.437v-0.043zM384 700.501v130.133l128-76.8 128 76.8v-130.133c-40.67 16.448-84.13 24.879-128 24.832-43.87 0.047-87.332-8.384-128-24.832v0zM512 640c67.895 0 133.009-26.974 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.019 0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.972-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019 0 67.897 26.971 133.010 74.981 181.019s113.124 74.982 181.019 74.982v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["award-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 223,
+ "id": 2126,
+ "name": "award-line",
+ "prevSize": 32,
+ "code": 59820
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 172
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974v0zM384 341.333c47.147 0 89.813 19.115 120.704 50.048l-60.331 60.331c-11.93-11.942-27.131-20.075-43.683-23.377-16.553-3.3-33.712-1.617-49.309 4.834s-28.929 17.387-38.312 31.415c-9.383 14.029-14.394 30.528-14.4 47.407s4.994 33.378 14.366 47.415c9.373 14.037 22.698 24.981 38.289 31.441 15.592 6.464 32.751 8.158 49.305 4.873 16.555-3.29 31.762-11.413 43.7-23.347l60.331 60.288c-23.876 23.842-54.281 40.068-87.375 46.639s-67.394 3.187-98.566-9.724c-31.172-12.911-57.82-34.769-76.577-62.814s-28.782-61.022-28.81-94.763c0-94.208 76.459-170.667 170.667-170.667zM682.667 341.333c47.147 0 89.813 19.115 120.704 50.048l-60.331 60.331c-11.93-11.942-27.132-20.075-43.682-23.377-16.555-3.3-33.715-1.617-49.31 4.834s-28.928 17.387-38.31 31.415c-9.382 14.029-14.396 30.528-14.4 47.407-0.009 16.879 4.992 33.378 14.366 47.415s22.699 24.981 38.289 31.441c15.59 6.464 32.751 8.158 49.306 4.873 16.555-3.29 31.761-11.413 43.699-23.347l60.331 60.288c-23.876 23.842-54.281 40.068-87.377 46.639-33.092 6.571-67.392 3.187-98.564-9.724s-57.822-34.769-76.578-62.814c-18.756-28.045-28.783-61.022-28.809-94.763 0-94.208 76.459-170.667 170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 224,
+ "id": 2125,
+ "name": "creative-commons-line",
+ "prevSize": 32,
+ "code": 59821
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 173
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 170.667c-188.373 0-341.333 152.96-341.333 341.333s152.96 341.333 341.333 341.333c188.373 0 341.333-152.96 341.333-341.333s-152.96-341.333-341.333-341.333zM512 256c117.803 0 213.333 114.603 213.333 256s-95.531 256-213.333 256c-92.885 0-171.904-71.253-201.173-170.667l90.325 0.043c22.101 50.987 63.488 85.291 110.848 85.291 70.699 0 128-76.373 128-170.667s-57.301-170.667-128-170.667c-47.36 0-88.747 34.347-110.891 85.333h68.224l-106.667 128-106.667-128h54.784c29.312-99.413 108.331-170.667 201.216-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-sa-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 225,
+ "id": 2124,
+ "name": "creative-commons-sa-line",
+ "prevSize": 32,
+ "code": 59822
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 174
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM170.667 213.333v597.333h682.667v-597.333h-682.667zM298.667 554.667h85.333v170.667h-85.333v-170.667zM469.333 298.667h85.333v426.667h-85.333v-426.667zM640 426.667h85.333v298.667h-85.333v-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 226,
+ "id": 2123,
+ "name": "bar-chart-box-line",
+ "prevSize": 32,
+ "code": 59823
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 175
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17l0.043 228.096c-21.961-31.394-51.251-56.951-85.333-74.453l-0.043-110.976h-682.667v341.333h85.333v-42.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h222.165l-3.029 12.075-1.28 0.853c-27.452 18.432-49.993 43.285-65.664 72.405h-109.525v128h87.893c4.881 30.754 16.811 59.959 34.859 85.333h-165.419c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-85.333h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667zM746.667 554.667c39.607 0 77.589 15.731 105.596 43.738s43.738 65.988 43.738 105.596l-0.043 4.395c26.692 7.522 49.856 24.252 65.387 47.228s22.421 50.705 19.452 78.281c-2.97 27.571-15.612 53.197-35.682 72.337-20.066 19.14-46.263 30.554-73.946 32.213l-7.168 0.213-241.835-0.213c-27.678-1.677-53.862-13.103-73.92-32.247-20.053-19.145-32.683-44.774-35.639-72.341-2.961-27.571 3.934-55.296 19.469-78.263s38.699-39.689 65.387-47.206l-0.128-4.395c0-39.607 15.731-77.589 43.738-105.596s65.988-43.738 105.596-43.738v0zM746.667 640c-14.865-0.004-29.269 5.167-40.738 14.63-11.469 9.459-19.285 22.613-22.11 37.21l-0.853 5.973-0.299 6.187v69.12l-61.611 17.323c-7.1 1.894-13.329 6.178-17.647 12.126-4.314 5.948-6.451 13.197-6.054 20.535 0.401 7.339 3.315 14.315 8.252 19.755 4.941 5.444 11.601 9.024 18.863 10.133l4.651 0.341h235.093c7.735-0.060 15.189-2.918 20.979-8.051 5.79-5.129 9.527-12.186 10.517-19.857 0.986-7.671-0.836-15.445-5.137-21.875-4.301-6.434-10.786-11.089-18.253-13.107l-43.221-12.075-18.432-5.248v-69.12l-0.299-6.144c-1.527-15.838-8.9-30.537-20.676-41.233s-27.115-16.623-43.025-16.623v0zM341.333 426.667v85.333h-128v-85.333h128zM682.667 170.667h-341.333v128h341.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["printer-cloud-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 227,
+ "id": 2122,
+ "name": "printer-cloud-line",
+ "prevSize": 32,
+ "code": 59824
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 176
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 682.667c70.699 0 128 57.301 128 128s-57.301 128-128 128c-70.699 0-128-57.301-128-128s57.301-128 128-128zM256 512c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667zM682.667 768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM256 597.333c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333zM618.667 85.333c129.621 0 234.667 105.045 234.667 234.667s-105.045 234.667-234.667 234.667c-129.621 0-234.667-105.045-234.667-234.667s105.045-234.667 234.667-234.667zM618.667 170.667c-82.475 0-149.333 66.859-149.333 149.333s66.859 149.333 149.333 149.333c82.475 0 149.333-66.859 149.333-149.333s-66.859-149.333-149.333-149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bubble-chart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 228,
+ "id": 2121,
+ "name": "bubble-chart-line",
+ "prevSize": 32,
+ "code": 59825
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 177
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 42.667v85.333h256v-85.333h85.333v85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333zM853.333 426.667h-682.667v384h682.667v-384zM641.536 475.136l60.331 60.331-211.2 211.2-150.869-150.869 60.416-60.331 90.496 90.539 150.827-150.869zM298.667 213.333h-128v128h682.667v-128h-128v42.667h-85.333v-42.667h-256v42.667h-85.333v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-check-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 229,
+ "id": 2120,
+ "name": "calendar-check-line",
+ "prevSize": 32,
+ "code": 59826
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 178
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667l85.333 170.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.496l85.333-170.837zM853.333 384h-682.667v426.667h682.667v-426.667zM843.264 298.667l-42.667-85.333h-577.152l-42.667 85.333h662.485zM554.667 597.333h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["inbox-archive-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 230,
+ "id": 2119,
+ "name": "inbox-archive-line",
+ "prevSize": 32,
+ "code": 59827
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 179
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 853.333l-426.667-341.333 426.667-341.333v213.333c235.648 0 426.667 191.019 426.667 426.667 0 11.648-0.427 23.168-1.365 34.56-62.421-118.357-184.747-200.149-326.613-205.013l-13.355-0.213h-85.333v213.333zM384 554.667h172.117l14.805 0.299c54.827 1.835 107.691 13.227 156.843 32.683-62.592-72.448-155.179-118.315-258.432-118.315h-85.333v-121.131l-204.715 163.797 204.715 163.797v-121.131z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reply-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 231,
+ "id": 2118,
+ "name": "reply-line",
+ "prevSize": 32,
+ "code": 59828
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 180
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974v0zM682.667 554.667v85.333h-341.333v-85.333h341.333zM682.667 384v85.333h-341.333v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-nd-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 232,
+ "id": 2117,
+ "name": "creative-commons-nd-line",
+ "prevSize": 32,
+ "code": 59829
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 181
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM853.333 554.667h-682.667v256h682.667v-256zM853.333 298.667h-682.667v170.667h128v-85.333h85.333v85.333h256v-85.333h85.333v85.333h128v-170.667zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 233,
+ "id": 2116,
+ "name": "briefcase-2-line",
+ "prevSize": 32,
+ "code": 59830
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 182
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM640 298.667h-256v512h256v-512zM298.667 298.667h-128v512h128v-512zM725.333 298.667v512h128v-512h-128zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 234,
+ "id": 2115,
+ "name": "briefcase-3-line",
+ "prevSize": 32,
+ "code": 59831
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 183
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 127.659c0-23.381 18.987-42.325 42.368-42.325h683.264c11.204 0.078 21.931 4.561 29.858 12.48s12.42 18.64 12.51 29.845v768.683c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM810.667 469.333v-298.667h-597.333v298.667h597.333zM810.667 554.667h-597.333v298.667h597.333v-298.667zM384 256h256v85.333h-256v-85.333zM384 640h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["archive-drawer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 235,
+ "id": 2114,
+ "name": "archive-drawer-line",
+ "prevSize": 32,
+ "code": 59832
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 184
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667 0-191.061 125.568-352.768 298.667-407.125v90.624c-73.347 29.783-134.067 84.126-171.773 153.733s-50.056 150.152-34.936 227.856c15.12 77.709 56.77 147.746 117.824 198.135s137.721 78.003 216.885 78.11c68.002 0 134.455-20.309 190.839-58.317 56.388-38.007 100.147-91.985 125.662-155.017h90.624c-54.357 173.099-216.064 298.667-407.125 298.667v0zM936.533 554.667h-467.2v-467.2c14.037-1.408 28.288-2.133 42.667-2.133 235.648 0 426.667 191.019 426.667 426.667 0 14.379-0.725 28.629-2.133 42.667zM554.667 173.312v296.021h296.021c-9.498-75.195-43.738-145.095-97.331-198.688s-123.494-87.836-198.69-97.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pie-chart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 236,
+ "id": 2113,
+ "name": "pie-chart-line",
+ "prevSize": 32,
+ "code": 59833
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 185
+ },
+ {
+ "icon": {
+ "paths": [
+ "M557.227 346.026l60.373 60.373c27.738 27.734 49.741 60.66 64.751 96.896 15.010 36.241 22.737 75.081 22.737 114.304s-7.727 78.063-22.737 114.3c-15.010 36.241-37.013 69.167-64.751 96.9l-15.104 15.061c-56.013 56.013-131.985 87.479-211.2 87.479s-155.186-31.467-211.2-87.479c-56.014-56.013-87.482-131.985-87.482-211.2s31.468-155.187 87.482-211.2l60.373 60.374c-19.952 19.776-35.801 43.302-46.638 69.222s-16.446 53.726-16.508 81.818c-0.061 28.096 5.427 55.923 16.149 81.89s26.469 49.562 46.334 69.427c19.866 19.866 43.459 35.61 69.426 46.336 25.967 10.722 53.797 16.209 81.891 16.149 28.094-0.064 55.898-5.675 81.818-16.508 25.92-10.837 49.446-26.688 69.222-46.639l15.104-15.104c39.996-40.004 62.46-94.259 62.46-150.827s-22.464-110.822-62.46-150.827l-60.373-60.374 60.373-60.331-0.043-0.043zM843.861 602.496l-60.331-60.331c19.951-19.78 35.802-43.302 46.639-69.222s16.444-53.726 16.508-81.82c0.060-28.094-5.427-55.923-16.149-81.89s-26.47-49.561-46.336-69.426c-19.866-19.866-43.456-35.611-69.423-46.334-25.971-10.723-53.798-16.211-81.894-16.149-28.092 0.061-55.898 5.671-81.818 16.508s-49.442 26.685-69.222 46.638l-15.104 15.104c-39.991 40.006-62.461 94.258-62.461 150.827s22.469 110.819 62.461 150.827l60.373 60.373-60.373 60.331-60.33-60.331c-27.737-27.733-49.739-60.659-64.751-96.9-15.011-36.237-22.737-75.076-22.737-114.3s7.726-78.064 22.737-114.302c15.011-36.238 37.014-69.164 64.751-96.898l15.104-15.061c56.012-56.014 131.985-87.482 211.2-87.482s155.187 31.468 211.2 87.482c56.013 56.014 87.484 131.985 87.484 211.2s-31.471 155.188-87.484 211.2l-0.043-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["links-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 237,
+ "id": 2112,
+ "name": "links-line",
+ "prevSize": 32,
+ "code": 59834
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 186
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 810.667h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v85.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-85.333zM256 725.333v-42.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v42.667h85.333v-341.333h-682.667v341.333h85.333zM341.333 170.667v128h341.333v-128h-341.333zM341.333 725.333v128h341.333v-128h-341.333zM213.333 426.667h128v85.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["printer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 238,
+ "id": 2111,
+ "name": "printer-line",
+ "prevSize": 32,
+ "code": 59835
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 187
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM414.293 839.125c-42.095-89.289-66.48-185.89-71.808-284.459h-169.173c8.303 65.66 35.495 127.497 78.275 177.993s99.304 87.484 162.706 106.466v0zM427.947 554.667c6.443 104.064 36.181 201.813 84.053 288.085 49.165-88.55 77.884-186.987 84.053-288.085h-168.107zM850.688 554.667h-169.173c-5.329 98.569-29.713 195.17-71.808 284.459 63.403-18.982 119.927-55.97 162.705-106.466 42.782-50.496 69.973-112.333 78.276-177.993v0zM173.312 469.333h169.173c5.328-98.569 29.713-195.171 71.808-284.459-63.402 18.982-119.927 55.968-162.706 106.466s-69.972 112.333-78.275 177.993v0zM427.989 469.333h168.021c-6.153-101.094-34.859-199.529-84.011-288.085-49.165 88.553-77.884 186.988-84.053 288.085h0.043zM609.707 184.875c42.095 89.288 66.479 185.89 71.808 284.459h169.173c-8.303-65.66-35.494-127.495-78.276-177.993-42.778-50.498-99.302-87.485-162.705-106.466v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["global-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 239,
+ "id": 2110,
+ "name": "global-line",
+ "prevSize": 32,
+ "code": 59836
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 188
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM853.333 597.333h-145.749c-16.602 38.063-43.951 70.46-78.69 93.21-34.743 22.75-75.366 34.867-116.894 34.867s-82.15-12.117-116.893-34.867c-34.741-22.75-62.089-55.147-78.691-93.21h-145.749v213.333h682.667v-213.333zM853.333 512v-298.667h-682.667v298.667h213.333c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["inbox-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 240,
+ "id": 2109,
+ "name": "inbox-line",
+ "prevSize": 32,
+ "code": 59837
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 189
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 192v192c235.648 0 426.667 191.019 426.667 426.667 0 11.648-0.427 23.168-1.365 34.56-62.421-118.357-184.747-200.149-326.613-205.013l-13.355-0.213h-85.333v192l-341.333-320 341.333-320zM341.333 192v116.779l-216.747 203.221 216.704 203.136 0.043 116.864-341.333-320 341.333-320zM512 388.949l-131.243 123.051 131.243 123.008v-80.341h172.117l14.805 0.299c54.827 1.835 107.691 13.227 156.843 32.683-62.592-72.448-155.179-118.315-258.432-118.315h-85.333v-80.384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reply-all-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 241,
+ "id": 2108,
+ "name": "reply-all-line",
+ "prevSize": 32,
+ "code": 59838
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 190
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 554.667h-85.333v-245.845l-338.261 302.933-344.405-303.872v502.784h426.667v85.333h-469.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384zM192.469 213.333l322.133 284.245 317.483-284.245h-639.616zM832 928l-112.853 59.307 21.547-125.653-91.307-89.003 126.165-18.347 56.448-114.304 56.448 114.347 126.165 18.347-91.307 88.96 21.547 125.696-112.853-59.349z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-star-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 242,
+ "id": 2107,
+ "name": "mail-star-line",
+ "prevSize": 32,
+ "code": 59839
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 191
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667 0 102.4-36.096 196.437-96.256 269.995l1.451 1.536-60.331 60.331-1.536-1.451c-76.134 62.387-171.563 96.41-269.995 96.256-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM170.667 512c-0.001 63.868 17.918 126.455 51.719 180.646 33.801 54.195 82.129 97.813 139.488 125.905s121.449 39.526 184.984 33.003c63.535-6.524 123.968-30.741 174.421-69.901l-101.333-101.376c-7.433 1.596-15.010 2.398-22.613 2.389h-42.667v85.333h-85.333v-85.333h-106.667v-85.333h234.667c5.329 0.009 10.47-1.975 14.413-5.568 3.938-3.593 6.391-8.529 6.874-13.837 0.482-5.312-1.041-10.607-4.271-14.848-3.23-4.245-7.932-7.121-13.175-8.073l-3.84-0.341h-170.667c-18.724 0-37.117-4.928-53.332-14.293-16.215-9.361-29.68-22.827-39.042-39.040-9.361-16.218-14.29-34.611-14.29-53.333 0-18.726 4.929-37.118 14.291-53.333l-91.989-91.989c-46.559 59.831-71.775 133.513-71.637 209.323v0zM512 170.667c-78.848 0-151.467 26.752-209.28 71.68l101.333 101.333c7.433-1.583 15.014-2.369 22.613-2.347h42.667v-85.333h85.333v85.333h106.667v85.333h-234.667c-5.331-0.010-10.473 1.975-14.412 5.568s-6.392 8.529-6.874 13.837c-0.482 5.312 1.042 10.607 4.271 14.848 3.229 4.245 7.929 7.121 13.175 8.073l3.84 0.341h170.667c18.722 0 37.116 4.928 53.333 14.293 16.213 9.361 29.679 22.827 39.040 39.040 9.361 16.218 14.289 34.611 14.289 53.333 0 18.726-4.928 37.12-14.289 53.333l91.989 91.947c39.164-50.458 63.381-110.891 69.901-174.43s-4.915-127.634-33.011-184.995c-28.096-57.361-71.723-105.688-125.922-139.486s-116.791-51.711-180.663-51.702v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-nc-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 243,
+ "id": 2106,
+ "name": "creative-commons-nc-line",
+ "prevSize": 32,
+ "code": 59840
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 192
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 896v85.333h-85.333v-85.333h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333h853.333v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333zM170.667 810.667h682.667v-469.333h-682.667v469.333zM554.667 426.667h213.333v85.333h-213.333v-85.333zM554.667 597.333h213.333v85.333h-213.333v-85.333zM384 426.667v128h128c0 25.314-7.505 50.065-21.572 71.113-14.063 21.052-34.057 37.457-57.442 47.142-23.391 9.69-49.128 12.224-73.957 7.287-24.829-4.941-47.637-17.131-65.538-35.034-17.901-17.899-30.092-40.708-35.031-65.536-4.939-24.832-2.404-50.569 7.284-73.958 9.688-23.386 26.094-43.379 47.144-57.442 21.050-14.067 45.797-21.572 71.113-21.572v0zM85.333 128h853.333v85.333h-853.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 244,
+ "id": 2105,
+ "name": "slideshow-line",
+ "prevSize": 32,
+ "code": 59841
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 193
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667zM512 853.333c188.587 0 341.333-152.747 341.333-341.333s-152.747-341.333-341.333-341.333c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333zM512 725.333c-77.653 0-145.621-41.515-182.955-103.595l73.131-43.904c22.4 37.248 63.189 62.165 109.824 62.165 70.741 0 128-57.259 128-128s-57.259-128-128-128c-46.635 0-87.381 24.875-109.781 62.123l-73.173-43.861c37.333-62.080 105.301-103.595 182.955-103.595 117.76 0 213.333 95.573 213.333 213.333s-95.573 213.333-213.333 213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copyleft-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 245,
+ "id": 2104,
+ "name": "copyleft-line",
+ "prevSize": 32,
+ "code": 59842
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 194
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM682.667 640h-128v42.667h-85.333v-42.667h-128v170.667h341.333v-170.667zM341.333 298.667v256h128v-42.667h85.333v42.667h128v-256h-341.333zM256 554.667v-256h-85.333v256h85.333zM768 554.667h85.333v-256h-85.333v256zM256 640h-85.333v170.667h85.333v-170.667zM768 640v170.667h85.333v-170.667h-85.333zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 246,
+ "id": 2103,
+ "name": "briefcase-5-line",
+ "prevSize": 32,
+ "code": 59843
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 195
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM384 554.667h-213.333v256h682.667v-256h-213.333v128h-256v-128zM853.333 298.667h-682.667v170.667h213.333v-85.333h256v85.333h213.333v-170.667zM469.333 469.333v128h85.333v-128h-85.333zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 247,
+ "id": 2102,
+ "name": "briefcase-4-line",
+ "prevSize": 32,
+ "code": 59844
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 196
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 298.668c90.526 0 177.348 35.962 241.361 99.974 64.009 64.014 99.972 150.832 99.972 241.358 0 90.53-35.964 177.348-99.972 241.361-64.013 64.013-150.835 99.972-241.361 99.972-90.527 0-177.347-35.959-241.359-99.972s-99.974-150.831-99.974-241.361c0-90.526 35.962-177.344 99.974-241.358 64.012-64.012 150.832-99.974 241.359-99.974v0zM512 384.001c-67.895 0-133.010 26.972-181.019 74.982-48.009 48.009-74.981 113.122-74.981 181.018s26.971 133.009 74.981 181.022c48.009 48.009 113.124 74.978 181.019 74.978s133.009-26.97 181.018-74.978c48.013-48.013 74.982-113.126 74.982-181.022s-26.97-133.009-74.982-181.018c-48.009-48.010-113.122-74.982-181.018-74.982zM512 448l56.448 114.347 126.165 18.347-91.307 88.96 21.547 125.696-112.853-59.349-112.853 59.307 21.547-125.653-91.307-89.003 126.165-18.347 56.448-114.304zM768 85.334v128l-58.155 48.555c-48.26-25.319-100.945-41.095-155.179-46.464v-130.091h213.333zM469.333 85.292v130.133c-54.214 5.361-106.888 21.123-155.136 46.421l-58.197-48.512v-128l213.333-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medal-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 248,
+ "id": 2101,
+ "name": "medal-line",
+ "prevSize": 32,
+ "code": 59845
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 197
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v816.768c0.004 3.814-1.011 7.561-2.948 10.85-1.937 3.285-4.715 5.995-8.055 7.842-3.337 1.847-7.108 2.765-10.923 2.658-3.81-0.102-7.526-1.229-10.756-3.26l-308.651-193.579-308.651 193.536c-3.227 2.027-6.938 3.153-10.748 3.26s-7.578-0.806-10.914-2.65c-3.337-1.843-6.118-4.544-8.056-7.825s-2.961-7.023-2.964-10.833v-816.768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM768 170.667h-512v658.432l256-160.469 256 160.469v-658.432z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bookmark-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 249,
+ "id": 2100,
+ "name": "bookmark-line",
+ "prevSize": 32,
+ "code": 59846
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 198
+ },
+ {
+ "icon": {
+ "paths": [
+ "M856.875 648.529l51.285 30.763c3.162 1.894 5.781 4.578 7.599 7.787 1.822 3.209 2.778 6.831 2.778 10.517 0 3.691-0.956 7.313-2.778 10.522-1.818 3.209-4.437 5.892-7.599 7.782l-374.187 224.512c-6.639 3.989-14.234 6.097-21.973 6.097-7.744 0-15.339-2.108-21.973-6.097l-374.188-224.512c-3.164-1.89-5.783-4.574-7.601-7.782s-2.774-6.831-2.774-10.522c0-3.686 0.956-7.309 2.774-10.517s4.437-5.892 7.601-7.787l51.285-30.763 344.876 206.933 344.875-206.933zM856.875 447.996l51.285 30.763c3.162 1.894 5.781 4.578 7.599 7.787 1.822 3.209 2.778 6.831 2.778 10.517 0 3.691-0.956 7.313-2.778 10.522-1.818 3.209-4.437 5.892-7.599 7.782l-396.16 237.696-396.161-237.696c-3.164-1.89-5.783-4.574-7.601-7.782s-2.774-6.831-2.774-10.522c0-3.686 0.956-7.309 2.774-10.517s4.437-5.892 7.601-7.787l51.285-30.763 344.876 206.933 344.875-206.933zM533.931 55.849l374.229 224.512c3.162 1.894 5.781 4.576 7.599 7.784 1.822 3.208 2.778 6.833 2.778 10.52s-0.956 7.312-2.778 10.52c-1.818 3.208-4.437 5.89-7.599 7.784l-396.16 237.694-396.161-237.694c-3.164-1.894-5.783-4.576-7.601-7.784s-2.774-6.833-2.774-10.52c0-3.688 0.956-7.312 2.774-10.52s4.437-5.89 7.601-7.784l374.188-224.512c6.635-3.987 14.229-6.093 21.973-6.093 7.74 0 15.334 2.106 21.973 6.093h-0.043zM512 142.163l-260.822 156.501 260.822 156.499 260.821-156.499-260.821-156.501z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stack-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 250,
+ "id": 2099,
+ "name": "stack-line",
+ "prevSize": 32,
+ "code": 59847
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 199
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM853.333 469.333h-682.667v341.333h682.667v-341.333zM853.333 384v-170.667h-682.667v170.667h682.667zM640 256h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["window-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 251,
+ "id": 2098,
+ "name": "window-2-line",
+ "prevSize": 32,
+ "code": 59848
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 200
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 618.667v384l-142.208-106.667h-113.792v-170.667h113.792l142.208-106.667zM896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384h-85.333v-245.888l-338.261 302.976-344.405-303.915v502.827h341.333v85.333h-384c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM896 725.333c22.144-0.098 43.456 8.414 59.443 23.74 15.983 15.326 25.382 36.262 26.21 58.389 0.832 22.131-6.972 43.712-21.76 60.194s-35.405 26.569-57.493 28.13l-6.4 0.213v-170.667zM832 213.333h-639.531l322.133 284.245 317.397-284.245z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-volume-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 252,
+ "id": 2097,
+ "name": "mail-volume-line",
+ "prevSize": 32,
+ "code": 59849
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 201
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 554.667h-85.333v-245.845l-338.261 302.933-344.405-303.872v502.784h426.667v85.333h-469.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384zM192.469 213.333l322.133 284.245 317.483-284.245h-639.616zM896 768h128v85.333h-128v128h-85.333v-128h-128v-85.333h128v-128h85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 253,
+ "id": 2096,
+ "name": "mail-add-line",
+ "prevSize": 32,
+ "code": 59850
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 202
+ },
+ {
+ "icon": {
+ "paths": [
+ "M686.933 128c-5.722 28.157-5.722 57.176 0 85.333h-494.464l322.133 284.245 215.424-192.853c18.176 22.485 40.875 41.216 66.688 54.827l-281.643 252.203-344.405-303.872v502.784h682.667v-430.933c28.156 5.72 57.178 5.72 85.333 0v473.6c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h558.933zM896 298.667c-16.811 0-33.455-3.311-48.986-9.743-15.526-6.433-29.636-15.861-41.523-27.747s-21.316-25.996-27.746-41.526c-6.434-15.53-9.745-32.174-9.745-48.983s3.311-33.454 9.745-48.983c6.43-15.53 15.859-29.64 27.746-41.526s25.997-21.314 41.523-27.747c15.531-6.432 32.175-9.743 48.986-9.743 33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.51s-56.563 37.49-90.509 37.49z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-unread-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 254,
+ "id": 2095,
+ "name": "mail-unread-line",
+ "prevSize": 32,
+ "code": 59851
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 203
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 256v85.333h-170.667v426.667h-85.333v-426.667h-170.667v-85.333h426.667zM512 256h106.667l128 221.696 128-221.696h106.667v512h-85.333v-378.325l-149.333 258.688-149.333-258.603v378.24h-85.333v-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["trademark-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 255,
+ "id": 2094,
+ "name": "trademark-line",
+ "prevSize": 32,
+ "code": 59852
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 204
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 512h85.333v384h-85.333v-384zM810.667 341.333h85.333v554.667h-85.333v-554.667zM469.333 85.333h85.333v810.667h-85.333v-810.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 256,
+ "id": 2093,
+ "name": "bar-chart-line",
+ "prevSize": 32,
+ "code": 59853
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 205
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 725.419c-0.017 58.351-19.964 114.944-56.533 160.41-36.57 45.47-87.569 77.086-144.555 89.617l-27.221-81.664c24.926-4.105 48.631-13.692 69.41-28.062 20.774-14.374 38.106-33.173 50.739-55.053h-105.173c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-170.667c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994h125.355c-10.411-82.479-50.564-158.324-112.922-213.304s-142.635-85.316-225.766-85.316c-83.132 0-163.41 30.336-225.768 85.316s-102.508 130.825-112.92 213.304h125.355c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339v170.667c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994h-128c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-213.333c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667v213.419zM853.333 725.333v-170.667h-128v170.667h128zM170.667 554.667v170.667h128v-170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["customer-service-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 257,
+ "id": 2092,
+ "name": "customer-service-line",
+ "prevSize": 32,
+ "code": 59854
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 206
+ },
+ {
+ "icon": {
+ "paths": [
+ "M159.616 60.074l787.712 433.238c3.345 1.839 6.135 4.548 8.077 7.834s2.965 7.036 2.965 10.854c0 3.819-1.024 7.565-2.965 10.854-1.941 3.285-4.732 5.99-8.077 7.834l-787.712 433.237c-3.248 1.788-6.906 2.697-10.612 2.637-3.706-0.055-7.334-1.079-10.525-2.965s-5.836-4.57-7.674-7.791c-1.837-3.221-2.804-6.861-2.804-10.569v-866.476c0-3.707 0.967-7.35 2.804-10.57s4.482-5.905 7.674-7.791c3.191-1.886 6.819-2.909 10.525-2.966s7.364 0.852 10.612 2.639v0zM213.333 554.667v282.325l590.933-324.992-590.933-324.993v282.326h213.333v85.333h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["send-plane-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 258,
+ "id": 2091,
+ "name": "send-plane-2-line",
+ "prevSize": 32,
+ "code": 59855
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 207
+ },
+ {
+ "icon": {
+ "paths": [
+ "M82.049 399.788c-21.76-8.747-21.504-21.76 1.451-29.397l814.335-271.445c22.571-7.509 35.499 5.12 29.184 27.221l-232.704 814.334c-6.4 22.571-20.267 23.595-30.592 2.987l-194.389-388.821-387.284-154.878zM290.689 391.255l240.468 96.212 129.707 259.499 151.296-529.492-521.471 173.781z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["send-plane-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 259,
+ "id": 2090,
+ "name": "send-plane-line",
+ "prevSize": 32,
+ "code": 59856
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 208
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 682.667v256h-85.333v-810.667h400.299c7.923 0.004 15.684 2.214 22.421 6.381s12.181 10.128 15.723 17.214l30.891 61.739h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v469.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-272.299c-7.923-0.004-15.684-2.214-22.421-6.383-6.737-4.164-12.181-10.125-15.723-17.212l-30.891-61.739h-298.667zM213.333 213.333v384h351.403l42.667 85.333h203.264v-384h-266.069l-42.667-85.333h-288.597z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flag-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 260,
+ "id": 2089,
+ "name": "flag-line",
+ "prevSize": 32,
+ "code": 59857
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 209
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM640 213.333h-256v85.333h-85.333v-85.333h-128v170.667h682.667v-170.667h-128v85.333h-85.333v-85.333zM853.333 469.333h-682.667v341.333h682.667v-341.333zM256 597.333h85.333v85.333h-85.333v-85.333zM426.667 597.333h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-todo-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 261,
+ "id": 2088,
+ "name": "calendar-todo-line",
+ "prevSize": 32,
+ "code": 59858
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 210
+ },
+ {
+ "icon": {
+ "paths": [
+ "M348.587 128c8.832-24.963 25.187-46.574 46.812-61.856s47.456-23.485 73.935-23.477h85.333c55.723 0 103.125 35.627 120.747 85.333h220.587c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h220.587zM170.667 213.333v597.333h682.667v-597.333h-177.92c-8.832 24.963-25.186 46.574-46.81 61.856-21.628 15.282-47.458 23.485-73.937 23.477h-85.333c-26.479 0.008-52.311-8.195-73.935-23.477s-37.979-36.893-46.812-61.856h-177.92zM469.333 128c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497h85.333c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497h-85.333zM426.667 384l213.333 128-213.333 128v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 262,
+ "id": 2087,
+ "name": "slideshow-4-line",
+ "prevSize": 32,
+ "code": 59859
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 211
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 725.333v213.333h-85.333v-810.667h816.555c3.738-0.006 7.415 0.971 10.658 2.833s5.939 4.544 7.821 7.776c1.877 3.232 2.876 6.903 2.889 10.642 0.017 3.739-0.951 7.417-2.807 10.664l-152.448 266.752 152.448 266.752c1.856 3.247 2.825 6.925 2.807 10.662-0.013 3.742-1.011 7.411-2.889 10.645-1.882 3.23-4.578 5.914-7.821 7.774-3.243 1.865-6.921 2.837-10.658 2.833h-731.221zM170.667 213.333v426.667h620.971l-121.941-213.333 121.941-213.333h-620.971z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flag-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 263,
+ "id": 2086,
+ "name": "flag-2-line",
+ "prevSize": 32,
+ "code": 59860
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 212
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM213.333 170.667v682.667h597.333v-682.667h-597.333zM298.667 256h426.667v170.667h-426.667v-170.667zM298.667 512h85.333v85.333h-85.333v-85.333zM298.667 682.667h85.333v85.333h-85.333v-85.333zM469.333 512h85.333v85.333h-85.333v-85.333zM469.333 682.667h85.333v85.333h-85.333v-85.333zM640 512h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calculator-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 264,
+ "id": 2085,
+ "name": "calculator-line",
+ "prevSize": 32,
+ "code": 59861
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 213
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM474.709 512h-304.043v298.667h682.667v-298.667h-48.043c-9.489 36.617-30.874 69.047-60.787 92.198-29.918 23.151-66.675 35.712-104.503 35.712s-74.586-12.561-104.503-35.712c-29.914-23.151-51.298-55.582-60.787-92.198v0zM474.709 426.667c9.489-36.618 30.874-69.048 60.787-92.2 29.918-23.151 66.675-35.712 104.503-35.712s74.586 12.561 104.503 35.712c29.914 23.151 51.298 55.581 60.787 92.2h48.043v-213.333h-682.667v213.333h304.043zM640 554.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM256 640h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["projector-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 265,
+ "id": 2084,
+ "name": "projector-line",
+ "prevSize": 32,
+ "code": 59862
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 214
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM853.333 469.333h-682.667v341.333h682.667v-341.333zM640 213.333h-256v85.333h-85.333v-85.333h-128v170.667h682.667v-170.667h-128v85.333h-85.333v-85.333zM256 554.667h85.333v85.333h-85.333v-85.333zM469.333 554.667h85.333v85.333h-85.333v-85.333zM682.667 554.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 266,
+ "id": 2083,
+ "name": "calendar-2-line",
+ "prevSize": 32,
+ "code": 59863
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 215
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM853.333 384v-170.667h-128v85.333h-85.333v-85.333h-256v85.333h-85.333v-85.333h-128v170.667h682.667zM853.333 469.333h-682.667v341.333h682.667v-341.333zM256 554.667h213.333v170.667h-213.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-event-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 267,
+ "id": 2082,
+ "name": "calendar-event-line",
+ "prevSize": 32,
+ "code": 59864
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 216
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 23.168c14.080-1.237 28.288-1.835 42.667-1.835 270.976 0 490.667 219.691 490.667 490.667 0 14.379-0.597 28.587-1.835 42.667h-64.256c-21.419 215.595-203.349 384-424.576 384-235.648 0-426.667-191.019-426.667-426.667 0-221.227 168.405-403.157 384-424.533v-64.299zM469.333 554.667v-381.355c-86.071 10.952-164.742 54.266-220.024 121.14s-83.025 152.289-77.592 238.881c5.433 86.596 43.636 167.872 106.842 227.311s146.676 92.582 233.44 92.689c83.14 0 163.422-30.345 225.779-85.333 62.362-54.989 102.507-130.846 112.909-213.333h-381.355zM915.115 469.333c-9.783-92.25-50.901-178.356-116.497-243.951s-151.701-106.715-243.951-116.497v360.448h360.448z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pie-chart-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 268,
+ "id": 2081,
+ "name": "pie-chart-2-line",
+ "prevSize": 32,
+ "code": 59865
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 217
+ },
+ {
+ "icon": {
+ "paths": [
+ "M95.701 292.437l394.539-236.544c6.63-3.979 14.221-6.080 21.952-6.080s15.322 2.102 21.952 6.080l394.155 236.587c3.162 1.895 5.781 4.577 7.599 7.785 1.813 3.208 2.769 6.832 2.769 10.519v542.55c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-542.592c-0.001-3.687 0.954-7.311 2.771-10.519s4.434-5.891 7.597-7.785zM170.667 347.008v463.659h682.667v-463.702l-341.163-204.8-341.504 204.843zM514.56 584.448l225.963-190.422 54.955 65.28-280.32 236.245-286.293-235.947 54.272-65.878 231.424 190.72z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-open-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 269,
+ "id": 2080,
+ "name": "mail-open-line",
+ "prevSize": 32,
+ "code": 59866
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 218
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 576v-234.667c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987-45.264 0-88.673 17.981-120.68 49.987s-49.987 75.416-49.987 120.68v234.667c0 73.553 29.219 144.094 81.229 196.105s122.551 81.229 196.104 81.229c73.553 0 144.094-29.218 196.105-81.229s81.229-122.551 81.229-196.105v-405.333h85.333v405.333c0 96.183-38.208 188.429-106.223 256.444s-160.26 106.223-256.444 106.223c-96.183 0-188.431-38.208-256.444-106.223s-106.223-160.26-106.223-256.444v-234.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v234.667c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738c-39.607 0-77.589-15.731-105.596-43.738-28.004-28.006-43.738-65.988-43.738-105.596v-234.667h85.333v234.667c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["attachment-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 270,
+ "id": 2079,
+ "name": "attachment-line",
+ "prevSize": 32,
+ "code": 59867
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 219
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM640 213.333h-256v85.333h-85.333v-85.333h-128v170.667h682.667v-170.667h-128v85.333h-85.333v-85.333zM853.333 469.333h-682.667v341.333h682.667v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 271,
+ "id": 2078,
+ "name": "calendar-line",
+ "prevSize": 32,
+ "code": 59868
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 220
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM170.667 213.333v597.333h682.667v-597.333h-682.667zM721.067 554.667c-10.705 51.686-40.183 97.566-82.743 128.789-42.556 31.219-95.172 45.564-147.686 40.26s-101.201-29.879-136.655-68.983c-35.454-39.1-55.161-89.95-55.315-142.733 0.006-49.178 16.994-96.841 48.091-134.935s74.397-64.281 122.575-74.132v251.733h251.733zM721.067 469.333h-166.4v-166.4c40.986 8.392 78.601 28.635 108.181 58.217 29.585 29.582 49.826 67.197 58.219 108.183z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pie-chart-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 272,
+ "id": 2077,
+ "name": "pie-chart-box-line",
+ "prevSize": 32,
+ "code": 59869
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 221
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 308.821l-338.261 302.933-344.405-303.872v502.784h426.667v85.333h-469.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384h-85.333v-245.845zM832.043 213.333h-639.573l322.133 284.245 317.44-284.245zM727.467 834.048c-2.854-15.458-2.854-31.305 0-46.763l-43.264-25.003 42.667-73.899 43.264 25.003c11.861-10.155 25.557-18.133 40.533-23.467v-49.92h85.333v49.92c14.976 5.333 28.672 13.312 40.533 23.467l43.264-25.003 42.667 73.899-43.264 25.003c2.854 15.458 2.854 31.305 0 46.763l43.264 25.003-42.667 73.899-43.264-25.003c-11.951 10.253-25.694 18.206-40.533 23.467v49.92h-85.333v-49.92c-14.839-5.261-28.582-13.214-40.533-23.467l-43.264 25.003-42.667-73.899 43.264-25.003zM853.333 853.333c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-settings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 273,
+ "id": 2076,
+ "name": "mail-settings-line",
+ "prevSize": 32,
+ "code": 59870
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 222
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM853.333 308.821l-338.261 302.933-344.405-303.872v502.784h682.667v-501.845zM192.469 213.333l322.133 284.245 317.483-284.245h-639.616z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 274,
+ "id": 2075,
+ "name": "mail-line",
+ "prevSize": 32,
+ "code": 59871
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 223
+ },
+ {
+ "icon": {
+ "paths": [
+ "M608.299 640c-33.937-41.135-52.847-92.604-53.623-145.929-0.772-53.321 16.64-105.318 49.365-147.421 32.73-42.104 78.822-71.806 130.688-84.212s106.406-6.776 154.645 15.961c48.239 22.737 87.292 61.227 110.733 109.129 23.437 47.902 29.862 102.358 18.21 154.398-11.648 52.041-40.674 98.56-82.295 131.9-41.621 33.335-93.359 51.503-146.688 51.507h-554.666c-53.328-0.004-105.065-18.172-146.687-51.507-41.623-33.34-70.649-79.859-82.297-131.9s-5.224-106.496 18.214-154.398c23.438-47.901 62.493-86.391 110.731-109.129s102.781-28.367 154.646-15.961c51.865 12.406 97.958 42.107 130.686 84.212 32.73 42.104 50.138 94.101 49.365 147.421-0.772 53.325-19.686 104.794-53.623 145.929h192.597zM234.667 640c39.606 0 77.589-15.731 105.595-43.738s43.738-65.988 43.738-105.596c0-39.607-15.733-77.589-43.738-105.594s-65.989-43.739-105.595-43.739c-39.605 0-77.589 15.733-105.594 43.739s-43.739 65.987-43.739 105.594c0 39.607 15.733 77.589 43.739 105.596s65.989 43.738 105.594 43.738v0zM789.333 640c39.607 0 77.589-15.731 105.596-43.738s43.738-65.988 43.738-105.596c0-39.607-15.731-77.589-43.738-105.594s-65.988-43.739-105.596-43.739c-39.603 0-77.589 15.733-105.596 43.739-28.002 28.006-43.738 65.987-43.738 105.594s15.735 77.589 43.738 105.596c28.006 28.006 65.993 43.738 105.596 43.738v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["record-mail-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 275,
+ "id": 2074,
+ "name": "record-mail-line",
+ "prevSize": 32,
+ "code": 59872
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 224
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 87.465v85.845c-168.363 20.992-298.667 164.608-298.667 338.69 0 188.501 152.832 341.333 341.333 341.333 78.891 0 151.467-26.752 209.323-71.68l60.715 60.715c-73.557 60.16-167.637 96.299-270.037 96.299-235.648 0-426.667-191.019-426.667-426.667 0-221.229 168.405-403.159 384-424.535v0zM936.533 554.667c-8.533 85.803-42.411 164.134-94.165 227.324l-60.715-60.668c36.693-47.232 61.269-104.32 69.035-166.656h85.845zM554.752 87.465c201.557 20.011 361.813 180.309 381.867 381.869h-85.888c-19.243-154.37-141.611-276.738-295.979-296.023v-85.845z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["donut-chart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 276,
+ "id": 2073,
+ "name": "donut-chart-line",
+ "prevSize": 32,
+ "code": 59873
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 225
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM170.667 682.667v128h682.667v-128h-682.667zM170.667 597.333h682.667v-298.667h-682.667v298.667zM384 128v85.333h256v-85.333h-256zM469.333 469.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 277,
+ "id": 2072,
+ "name": "briefcase-line",
+ "prevSize": 32,
+ "code": 59874
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 226
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 426.667h-42.667v-255.872c0-23.637 19.413-42.795 42.325-42.795h768.683c5.602-0.012 11.149 1.091 16.32 3.243s9.865 5.312 13.803 9.294c3.938 3.983 7.044 8.709 9.139 13.903s3.136 10.754 3.063 16.355v255.872h-42.667v426.709c0.017 5.581-1.067 11.11-3.187 16.273s-5.235 9.856-9.169 13.815c-3.934 3.955-8.61 7.1-13.76 9.25-5.15 2.155-10.671 3.268-16.252 3.285h-683.264c-5.581-0.017-11.104-1.131-16.253-3.285-5.149-2.15-9.824-5.295-13.759-9.25-3.934-3.959-7.050-8.653-9.17-13.815s-3.203-10.692-3.186-16.273v-426.709zM810.667 426.667h-597.333v384h597.333v-384zM170.667 213.333v128h682.667v-128h-682.667zM384 512h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["archive-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 278,
+ "id": 2071,
+ "name": "archive-line",
+ "prevSize": 32,
+ "code": 59875
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 227
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 308.821l-338.261 302.933-344.405-303.872v502.784h384v85.333h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-160.512zM832.043 213.333h-639.573l322.133 284.245 317.44-284.245zM938.667 725.333h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v42.667zM853.333 725.333v-42.667c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v42.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-lock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 279,
+ "id": 2070,
+ "name": "mail-lock-line",
+ "prevSize": 32,
+ "code": 59876
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 228
+ },
+ {
+ "icon": {
+ "paths": [
+ "M134.871 190.679c49.496-49.505 115.883-78.46 185.839-81.056s138.307 21.361 191.333 67.061c52.983-45.625 121.242-69.554 191.117-66.997 69.871 2.557 136.196 31.412 185.702 80.787s78.532 115.628 81.271 185.492c2.743 69.865-21.009 138.188-66.496 191.286l-331.307 332.373c-15.219 15.228-35.635 24.137-57.148 24.947-21.517 0.806-42.543-6.549-58.863-20.595l-4.693-4.309-331.262-332.416c-45.462-53.052-69.223-121.314-66.534-191.129 2.689-69.816 31.632-136.045 81.040-185.446v0zM195.202 251.010c-34.891 34.901-55.003 81.897-56.163 131.233-1.16 49.335 16.722 97.224 49.934 133.725l6.229 6.571 316.798 316.8 226.261-226.304-150.827-150.827-45.227 45.227c-11.883 11.891-25.993 21.325-41.523 27.759-15.526 6.438-32.175 9.754-48.981 9.758-33.953 0.009-66.516-13.47-90.528-37.474-24.012-24-37.507-56.555-37.515-90.507-0.008-33.951 13.471-66.514 37.472-90.526l89.684-89.728c-35.69-28.485-80.365-43.32-126.006-41.842s-89.263 19.171-123.037 49.906l-6.571 6.229zM557.269 371.671c8.004-7.999 18.854-12.492 30.165-12.492 11.315 0 22.165 4.493 30.165 12.492l180.992 180.99 30.208-30.123c35.477-35.447 55.676-83.371 56.273-133.521 0.597-50.148-18.449-98.54-53.069-134.827s-82.065-57.587-132.186-59.345c-50.121-1.759-98.94 16.164-136.021 49.935l-6.528 6.229-135.764 135.765c-7.395 7.391-11.82 17.239-12.433 27.677s2.627 20.736 9.105 28.94l3.328 3.712c7.392 7.398 17.24 11.823 27.676 12.433 10.436 0.614 20.736-2.624 28.941-9.105l3.712-3.328 75.435-75.433z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["service-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 280,
+ "id": 2069,
+ "name": "service-line",
+ "prevSize": 32,
+ "code": 59877
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 229
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974v0zM533.333 298.667c32.58-0.006 64.273 10.643 90.236 30.324 25.967 19.682 44.783 47.315 53.581 78.687s7.091 64.757-4.851 95.072c-11.947 30.315-33.476 55.889-61.312 72.823l108.715 149.76h-105.472l-93.013-128h-94.549v128h-85.333v-426.667h192zM533.333 384h-106.667v128h106.667c15.91 0 31.249-5.926 43.025-16.623s19.149-25.395 20.676-41.233l0.299-6.144c0-16.973-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["registered-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 281,
+ "id": 2068,
+ "name": "registered-line",
+ "prevSize": 32,
+ "code": 59878
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 230
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 512h85.333v384h-85.333v-384zM213.333 597.333h85.333v298.667h-85.333v-298.667zM682.667 341.333h85.333v554.667h-85.333v-554.667zM810.667 426.667h85.333v469.333h-85.333v-469.333zM384 85.333h85.333v810.667h-85.333v-810.667zM512 170.667h85.333v725.333h-85.333v-725.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-grouped-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 282,
+ "id": 2067,
+ "name": "bar-chart-grouped-line",
+ "prevSize": 32,
+ "code": 59879
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 231
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 170.667v628.096c0.004 4.139-1.195 8.192-3.452 11.661s-5.474 6.208-9.263 7.881l-371.285 164.309-371.285-164.267c-3.8-1.677-7.028-4.429-9.286-7.915s-3.45-7.556-3.428-11.712v-628.053h-85.333v-85.333h938.667v85.333h-85.333zM213.333 170.667v586.453l298.667 132.267 298.667-132.267v-586.453h-597.333zM341.333 341.333h341.333v85.333h-341.333v-85.333zM341.333 512h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["honour-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 283,
+ "id": 2066,
+ "name": "honour-line",
+ "prevSize": 32,
+ "code": 59880
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 232
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 597.333h-85.333v-288.512l-338.261 302.933-344.405-303.872v502.784h469.333v85.333h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667zM192.469 213.333l322.133 284.245 317.483-284.245h-639.616zM913.664 810.667l90.539 90.496-60.373 60.373-90.496-90.539-90.496 90.539-60.373-60.373 90.539-90.496-90.539-90.496 60.373-60.373 90.496 90.539 90.496-90.539 60.373 60.373-90.539 90.496z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-close-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 284,
+ "id": 2065,
+ "name": "mail-close-line",
+ "prevSize": 32,
+ "code": 59881
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 233
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 308.821l-338.261 302.933-344.405-303.872v502.784h384v85.333h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h-85.333v-203.179zM832.043 213.333h-639.573l322.133 284.245 317.44-284.245zM853.333 768h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-download-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 285,
+ "id": 2064,
+ "name": "mail-download-line",
+ "prevSize": 32,
+ "code": 59882
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 234
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 554.667h256v341.333h-256v-341.333zM682.667 341.333h256v554.667h-256v-554.667zM384 128h256v768h-256v-768zM170.667 640v170.667h85.333v-170.667h-85.333zM469.333 213.333v597.333h85.333v-597.333h-85.333zM768 426.667v384h85.333v-384h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 286,
+ "id": 2063,
+ "name": "bar-chart-2-line",
+ "prevSize": 32,
+ "code": 59883
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 235
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v822.443c0.004 3.558-0.883 7.066-2.581 10.193s-4.151 5.786-7.138 7.723c-2.982 1.937-6.409 3.098-9.958 3.375-3.546 0.277-7.108-0.341-10.359-1.792l-353.963-157.995-353.963 157.952c-3.247 1.451-6.805 2.069-10.351 1.792-3.546-0.273-6.967-1.429-9.951-3.362s-5.439-4.582-7.139-7.706c-1.7-3.123-2.593-6.626-2.596-10.18v-822.443c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM810.667 851.84v-681.173h-597.333v681.173l298.667-133.291 298.667 133.291zM512 576l-125.397 65.92 23.936-139.605-101.419-98.901 140.203-20.395 62.677-127.019 62.72 127.019 140.16 20.395-101.419 98.901 23.893 139.605-125.355-65.92z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bookmark-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 287,
+ "id": 2062,
+ "name": "bookmark-3-line",
+ "prevSize": 32,
+ "code": 59884
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 236
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v816.768c0.004 3.814-1.011 7.561-2.948 10.85-1.937 3.285-4.715 5.995-8.055 7.842-3.337 1.847-7.108 2.765-10.923 2.658-3.81-0.102-7.526-1.229-10.756-3.26l-308.651-193.579-308.651 193.536c-3.227 2.027-6.938 3.153-10.748 3.26s-7.578-0.806-10.914-2.65c-3.337-1.843-6.118-4.544-8.056-7.825s-2.961-7.023-2.964-10.833v-816.768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM768 170.667h-512v658.432l256-160.469 256 160.469v-658.432zM341.333 384h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bookmark-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 288,
+ "id": 2061,
+ "name": "bookmark-2-line",
+ "prevSize": 32,
+ "code": 59885
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 237
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 170.667c-188.373 0-341.333 152.96-341.333 341.333s152.96 341.333 341.333 341.333c188.373 0 341.333-152.96 341.333-341.333s-152.96-341.333-341.333-341.333zM512 256c117.803 0 213.333 114.603 213.333 256s-95.531 256-213.333 256c-117.803 0-213.333-114.603-213.333-256s95.531-256 213.333-256zM611.2 404.139l-151.979 263.381c16.085 9.728 33.963 15.147 52.779 15.147 70.699 0 128-76.373 128-170.667 0-40.917-10.795-78.464-28.8-107.861zM512 341.333c-70.699 0-128 76.373-128 170.667 0 40.917 10.795 78.464 28.8 107.861l151.979-263.381c-15.863-9.806-34.129-15.047-52.779-15.147z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-zero-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 289,
+ "id": 2060,
+ "name": "creative-commons-zero-line",
+ "prevSize": 32,
+ "code": 59886
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 238
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 170.667c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333c188.587 0 341.333-152.747 341.333-341.333s-152.747-341.333-341.333-341.333zM512 298.667c77.653 0 145.621 41.515 182.955 103.595l-73.131 43.904c-11.507-19.191-27.849-35.027-47.386-45.933s-41.596-16.5-63.97-16.223c-22.374 0.277-44.284 6.414-63.548 17.8s-35.204 27.622-46.235 47.090c-11.031 19.469-16.765 41.489-16.631 63.863 0.134 22.379 6.131 44.326 17.394 63.663s27.398 35.379 46.795 46.537c19.396 11.153 41.382 17.028 63.757 17.037 22.106 0.013 43.84-5.7 63.083-16.589 19.238-10.889 35.328-26.577 46.699-45.534l73.173 43.861c-23.979 40.047-60.433 71.125-103.77 88.461-43.337 17.34-91.166 19.985-136.149 7.526-44.984-12.454-84.64-39.326-112.886-76.489-28.246-37.158-43.521-82.56-43.483-129.237 0-117.76 95.573-213.333 213.333-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copyright-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 290,
+ "id": 2059,
+ "name": "copyright-line",
+ "prevSize": 32,
+ "code": 59887
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 239
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 362.667l90.283 217.088 234.325 18.773-178.517 152.917 54.528 228.693-200.619-122.539-200.62 122.539 54.528-228.693-178.517-152.917 234.325-18.773 90.284-217.088zM512 584.832l-31.531 75.819-81.751 6.528 62.295 53.376-19.072 79.829 70.059-42.795 70.016 42.795-19.029-79.787 62.251-53.419-81.707-6.528-31.531-75.819zM341.332 85.333v384h-85.333v-384h85.333zM768 85.333v384h-85.333v-384h85.333zM554.667 85.333v213.333h-85.333v-213.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medal-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 291,
+ "id": 2058,
+ "name": "medal-2-line",
+ "prevSize": 32,
+ "code": 59888
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 240
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 896h-426.667c-60.449 0.038-118.961-21.316-165.176-60.279s-77.15-93.026-87.329-152.614c-10.179-59.584 1.056-120.849 31.715-172.945s78.764-91.665 135.798-111.696c-1.932-40.377 4.352-80.726 18.473-118.603s35.783-72.493 63.675-101.752c27.892-29.259 61.434-52.551 98.592-68.465s77.163-24.12 117.585-24.12c40.422 0 80.427 8.206 117.585 24.12s70.699 39.207 98.594 68.465c27.891 29.259 49.553 63.875 63.671 101.752 14.123 37.877 20.407 78.226 18.475 118.603 57.033 20.031 105.139 59.6 135.799 111.696 30.656 52.096 41.894 113.361 31.714 172.945-10.18 59.588-41.114 113.651-87.33 152.614s-104.725 60.318-165.175 60.279zM725.333 384.001c0.009-28.458-5.675-56.631-16.717-82.86s-27.221-49.983-47.582-69.864c-20.365-19.881-44.497-35.487-70.985-45.899-26.483-10.412-54.784-15.419-83.234-14.728s-56.478 7.069-82.424 18.756c-25.948 11.687-49.296 28.447-68.668 49.294s-34.377 45.359-44.133 72.094c-9.755 26.734-14.063 55.15-12.669 83.574l2.987 63.487-59.904 21.077c-37.952 13.423-69.941 39.821-90.321 74.534-20.38 34.718-27.839 75.516-21.062 115.196s27.356 75.691 58.103 101.675c30.747 25.984 69.686 40.265 109.941 40.329h426.667c31.415-0.009 62.221-8.691 89.020-25.088s48.55-39.876 62.861-67.844c14.31-27.968 20.621-59.345 18.24-90.671-2.381-31.33-13.363-61.389-31.74-86.874-18.372-25.485-43.426-45.402-72.393-57.562-28.971-12.156-60.736-16.081-91.793-11.341s-60.203 17.963-84.228 38.208c-24.026 20.245-41.993 46.729-51.93 76.531l-80.981-27.008c17.015-50.97 49.634-95.296 93.235-126.707 43.597-31.409 95.974-48.31 149.709-48.311z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloud-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 292,
+ "id": 2057,
+ "name": "cloud-line",
+ "prevSize": 32,
+ "code": 59889
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 241
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 128v682.667h682.667v85.333h-768v-768h85.333zM865.835 268.501l60.331 60.331-243.499 243.499-128-127.957-183.168 183.125-60.331-60.331 243.499-243.499 128 127.957 183.168-183.125z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["line-chart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 293,
+ "id": 2056,
+ "name": "line-chart-line",
+ "prevSize": 32,
+ "code": 59890
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 242
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974v0zM597.333 426.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v170.667h-64v170.667h-128v-170.667h-64v-170.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM512 213.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-by-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 294,
+ "id": 2055,
+ "name": "creative-commons-by-line",
+ "prevSize": 32,
+ "code": 59891
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 243
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128l85.333 170.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.496l85.333-170.837h682.667zM853.333 384h-682.667v426.667h682.667v-426.667zM512 426.667l170.667 170.667h-128v170.667h-85.333v-170.667h-128l170.667-170.667zM800.597 213.333h-577.195l-42.624 85.333h662.485l-42.667-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["inbox-unarchive-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 295,
+ "id": 2054,
+ "name": "inbox-unarchive-line",
+ "prevSize": 32,
+ "code": 59892
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 244
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 725.333v128h213.333v85.333h-512v-85.333h213.333v-128h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512h-42.667v-85.333h853.333v85.333h-42.667v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667zM213.333 640h597.333v-469.333h-597.333v469.333zM426.667 256l213.333 149.333-213.333 149.333v-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 296,
+ "id": 2053,
+ "name": "slideshow-2-line",
+ "prevSize": 32,
+ "code": 59893
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 245
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v85.333h170.667v85.333h-426.667v-85.333h170.667v-85.333h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333zM170.667 213.333v469.333h682.667v-469.333h-682.667zM426.667 320l213.333 128-213.333 128v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 297,
+ "id": 2052,
+ "name": "slideshow-3-line",
+ "prevSize": 32,
+ "code": 59894
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 246
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 87.465v128.853c-144.725 20.779-256 145.28-256 295.682 0 164.949 133.717 298.667 298.667 298.667 67.072 0 129.024-22.101 178.859-59.477l91.179 91.179c-73.557 60.16-167.637 96.299-270.037 96.299-235.648 0-426.667-191.019-426.667-426.667 0-221.229 168.405-403.159 384-424.535v0zM936.533 554.667c-8.533 85.803-42.411 164.134-94.165 227.324l-91.179-91.136c29.312-39.083 49.195-85.585 56.448-136.188h128.896zM554.752 87.465c201.557 20.011 361.813 180.309 381.867 381.869h-128.939c-18.688-130.775-122.155-234.242-252.928-252.973v-128.896z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["donut-chart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 298,
+ "id": 2051,
+ "name": "donut-chart-fill",
+ "prevSize": 32,
+ "code": 59895
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 247
+ },
+ {
+ "icon": {
+ "paths": [
+ "M850.688 341.334h45.312c22.63 0 44.335 8.991 60.339 24.994s24.994 37.708 24.994 60.339v170.667c0 22.635-8.99 44.339-24.994 60.339-16.004 16.004-37.709 24.994-60.339 24.994h-45.312c-10.402 82.487-50.547 158.345-112.909 213.333-62.357 54.989-142.639 85.333-225.779 85.333v-85.333c67.895 0 133.009-26.97 181.018-74.978 48.013-48.013 74.982-113.126 74.982-181.022v-255.999c0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019v298.666h-128c-22.632 0-44.337-8.99-60.34-24.994-16.003-16-24.994-37.705-24.994-60.339v-170.667c0-22.631 8.99-44.336 24.994-60.339s37.708-24.994 60.34-24.994h45.312c10.412-82.479 50.563-158.324 112.92-213.304s142.636-85.316 225.768-85.316c83.132 0 163.409 30.336 225.766 85.316s102.511 130.825 112.922 213.304v0zM128 426.667v170.667h42.667v-170.667h-42.667zM853.333 426.667v170.667h42.667v-170.667h-42.667zM331.093 673.493l45.227-72.363c40.665 25.476 87.697 38.946 135.68 38.869 47.983 0.077 95.014-13.393 135.68-38.869l45.227 72.363c-54.217 33.971-116.928 51.938-180.907 51.84-63.979 0.098-126.688-17.869-180.907-51.84z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["customer-service-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 299,
+ "id": 2050,
+ "name": "customer-service-2-line",
+ "prevSize": 32,
+ "code": 59896
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 248
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 469.333h364.075c1.877 16.427 2.859 33.28 2.859 50.517 0 116.651-41.813 214.869-114.261 281.6-63.36 58.496-150.101 92.8-253.525 92.8-50.317 0.021-100.148-9.873-146.641-29.116s-88.737-47.462-124.32-83.042c-35.582-35.575-63.805-77.82-83.054-124.309s-29.149-96.32-29.132-146.637c-0.022-50.321 9.873-100.155 29.12-146.65s47.468-88.742 83.052-124.325c35.583-35.583 77.83-63.805 124.325-83.052s96.329-29.142 146.65-29.12c103.253 0 189.995 37.973 256.341 99.797l-62.379 62.336c-49.408-47.744-116.181-76.8-193.109-76.8-39.223 0-78.059 7.725-114.295 22.735s-69.161 37.009-96.895 64.743c-27.734 27.734-49.733 60.659-64.743 96.895s-22.735 75.071-22.735 114.295c0 39.223 7.725 78.059 22.735 114.295s37.009 69.158 64.743 96.892c27.734 27.738 60.659 49.737 96.895 64.747 36.236 15.006 75.071 22.733 114.295 22.733 150.443 0 262.144-111.275 280.619-256h-280.619v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["google-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 300,
+ "id": 2049,
+ "name": "google-line",
+ "prevSize": 32,
+ "code": 59897
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 249
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 106.667v810.667l-768-85.333v-640l768-85.333zM810.667 554.624l-298.667 0.043v234.112l298.667 33.195v-267.349zM213.333 755.584l213.333 23.723v-224.64l-213.333-0.043v200.96zM810.667 469.333v-267.307l-298.667 33.152v234.155h298.667zM426.667 244.693l-213.333 23.68v200.96h213.333v-224.64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["windows-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 301,
+ "id": 2048,
+ "name": "windows-line",
+ "prevSize": 32,
+ "code": 59898
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 250
+ },
+ {
+ "icon": {
+ "paths": [
+ "M501.376 938.539c-222.763-5.461-403.2-181.632-415.403-402.688l-0.512-13.355 415.915 416.043zM512 85.333c68.612-0.049 136.222 16.469 197.082 48.151s113.173 77.59 152.486 133.823l-69.888 48.981c-35.507-50.704-84.126-90.804-140.663-116.009s-118.861-34.568-180.305-27.087c-61.448 7.481-119.705 31.524-168.541 69.558s-86.417 88.627-108.72 146.37l441.43 441.429c50.645-19.597 95.898-50.97 132.015-91.524s62.063-89.122 75.686-141.692h-181.248v-85.333h277.333c0 201.643-139.904 370.603-327.893 415.147l-513.963-513.877c44.587-187.989 213.547-327.936 415.19-327.936z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gatsby-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 302,
+ "id": 2047,
+ "name": "gatsby-line",
+ "prevSize": 32,
+ "code": 59899
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 251
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM379.307 561.92l-106.581-33.237c-23.040-7.040-23.168-22.912 5.163-34.304l415.275-160.427c24.107-9.813 37.76 2.603 29.952 33.707l-70.699 333.653c-4.949 23.765-19.243 29.44-39.083 18.475l-108.843-80.555-50.731 48.981c-5.205 5.035-9.429 9.344-17.451 10.411-7.979 1.109-14.549-1.28-19.371-14.507l-37.12-122.496-0.512 0.341v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["telegram-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 303,
+ "id": 2046,
+ "name": "telegram-line",
+ "prevSize": 32,
+ "code": 59900
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 252
+ },
+ {
+ "icon": {
+ "paths": [
+ "M369.792 822.315l42.923-74.325c36.425 15.33 75.9 22.025 115.341 19.55 39.441-2.47 77.773-14.037 112-33.792 34.223-19.759 63.411-47.168 85.274-80.090 21.862-32.917 35.81-70.451 40.751-109.658h85.845c-4.595 48.879-19.716 96.188-44.331 138.667-16.7 28.992-37.577 55.373-61.952 78.293-13.965-4.258-28.659-5.598-43.162-3.93-14.507 1.668-28.51 6.302-41.148 13.615-12.638 7.279-23.646 17.084-32.337 28.796-8.691 11.716-14.878 25.092-18.18 39.3-79.663 24.183-165.423 18.338-241.067-16.427h0.043zM314.325 790.315c-67.887-48.137-115.791-119.475-134.656-200.533 20.693-19.456 33.664-47.061 33.664-77.781s-12.971-58.411-33.749-77.867c7.659-32.571 20.066-63.839 36.821-92.8 24.485-42.543 57.89-79.282 97.92-107.691l42.923 74.325c-31.488 23.88-57.020 54.723-74.599 90.117-17.579 35.392-26.726 74.376-26.726 113.894s9.147 78.502 26.726 113.894c17.579 35.392 43.111 66.236 74.599 90.116l-42.88 74.325h-0.043zM369.792 201.685c75.635-34.665 161.323-40.536 240.981-16.512 6.485 27.733 23.979 52.821 50.56 68.181s57.045 17.92 84.309 9.685c60.655 56.968 98.432 134.115 106.24 216.96h-85.888c-4.907-39.206-18.842-76.742-40.7-109.657-21.862-32.914-51.059-60.311-85.295-80.039-34.202-19.791-72.525-31.382-111.962-33.862s-78.912 4.218-115.324 19.568l-42.923-74.325zM682.667 216.405c-7.339-4.172-13.777-9.754-18.948-16.424s-8.973-14.298-11.183-22.444c-2.21-8.145-2.79-16.648-1.702-25.018s3.819-16.442 8.043-23.751c4.22-7.31 9.843-13.712 16.546-18.839 6.707-5.127 14.357-8.877 22.519-11.034 8.158-2.157 16.666-2.679 25.028-1.536s16.414 3.93 23.697 8.198c14.579 8.547 25.186 22.514 29.508 38.853 4.318 16.339 2.001 33.723-6.451 48.359-8.448 14.636-22.345 25.335-38.656 29.763s-33.711 2.225-48.401-6.128zM170.667 512c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257zM682.667 807.595c7.283-4.267 15.334-7.053 23.697-8.196s16.87-0.623 25.028 1.536c8.162 2.155 15.812 5.905 22.519 11.034 6.703 5.124 12.326 11.529 16.546 18.837 4.224 7.309 6.955 15.381 8.043 23.753s0.508 16.87-1.702 25.015c-2.21 8.145-6.012 15.774-11.183 22.447-5.171 6.669-11.61 12.25-18.948 16.422-14.69 8.354-32.090 10.556-48.401 6.127s-30.208-15.125-38.656-29.764c-8.452-14.635-10.769-32.017-6.451-48.358 4.322-16.337 14.929-30.306 29.508-38.852z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ubuntu-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 304,
+ "id": 2045,
+ "name": "ubuntu-line",
+ "prevSize": 32,
+ "code": 59901
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 253
+ },
+ {
+ "icon": {
+ "paths": [
+ "M767.701 128.171c103.808 0 170.88 64.512 170.88 191.829 0 73.387-42.581 168.107-78.165 223.36-118.997 184.875-265.941 372.907-411.435 372.907-158.123 0-199.254-291.456-217.259-359.765s-22.741-94.293-49.92-137.941c-13.525 9.387-32.427 22.571-56.747 39.68-9.557 6.699-22.741 4.48-29.568-4.992l-56.021-77.483c-5.803-7.979-5.333-18.944 1.152-26.453 120.619-139.605 220.843-209.451 300.715-209.451 102.059 0 133.291 120.149 141.824 180.181 12.8 90.325 29.44 202.155 53.077 250.539 23.765-33.792 93.013-123.221 83.925-170.24-4.011-20.736-56.192 7.808-80.512 3.328-18.133-3.413-34.389-17.152-34.389-43.776 0-55.893 79.019-231.68 262.443-231.68v-0.043zM768 213.504c-93.653 0-138.709 65.408-155.861 94.208 53.333 1.963 84.053 34.901 91.008 76.928 16.597 99.413-81.749 209.92-99.797 237.44-16.896 25.728-130.603 141.995-181.334-143.36-4.779-26.837-15.659-92.288-28.373-178.603-7.253-49.109-37.248-75.221-52.48-75.221-35.925 0-81.92 27.733-164.48 107.307 81.28-4.907 108.587 97.109 124.416 155.008 34.816 127.317 67.029 343.723 154.454 343.723 73.685 0 189.397-112.896 314.453-300.373 8.917-13.269 83.883-129.024 83.883-214.869 0-102.187-62.677-102.187-85.888-102.187z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vimeo-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 305,
+ "id": 2044,
+ "name": "vimeo-line",
+ "prevSize": 32,
+ "code": 59902
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 254
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 850.688c86.071-10.953 164.74-54.268 220.023-121.139 55.283-66.876 83.025-152.29 77.594-238.882-5.436-86.596-43.635-167.872-106.842-227.312-63.211-59.439-146.675-92.581-233.442-92.688-86.871-0.065-170.498 32.996-233.841 92.445s-101.636 140.813-107.076 227.512c-5.44 86.703 22.383 172.215 77.798 239.117 55.416 66.897 134.255 110.153 220.453 120.947v-253.355h-85.333v-85.333h85.333v-70.571c0-57.045 5.973-77.739 17.067-98.603 10.927-20.643 27.819-37.517 48.469-48.427 16.299-8.747 36.565-13.995 71.979-16.256 14.037-0.896 32.213 0.213 54.528 3.413v81.067h-21.376c-39.125 0-55.296 1.835-64.939 6.997-5.756 2.959-10.436 7.644-13.397 13.397-5.12 9.643-6.997 19.2-6.997 58.368v70.613h106.667l-21.333 85.333h-85.333v253.355zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["facebook-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 306,
+ "id": 2043,
+ "name": "facebook-circle-line",
+ "prevSize": 32,
+ "code": 59903
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 255
+ },
+ {
+ "icon": {
+ "paths": [
+ "M774.784 426.667c-17.643-49.951-50.338-93.202-93.585-123.795s-94.916-47.020-147.887-47.020c-52.975 0-104.644 16.428-147.892 47.020-43.247 30.593-75.942 73.844-93.581 123.795h482.946zM280.873 554.667c8.774 51.699 33.209 99.46 70.002 136.828 36.793 37.363 84.171 62.537 135.729 72.107s104.815 3.085 152.567-18.586c47.753-21.67 87.701-57.476 114.449-102.583h140.971c-18.231 50.487-46.839 96.589-83.981 135.343-37.141 38.75-81.993 69.286-131.661 89.638-49.668 20.356-103.049 30.071-156.702 28.531-53.653-1.545-106.39-14.315-154.805-37.491-117.077 63.616-218.155 76.8-274.005 20.949-57.344-57.173-26.795-206.976 56.021-357.248 30.558-55.351 66.257-107.709 106.624-156.373 15.317-18.475 31.36-36.352 48-53.419-11.733 2.347-80.213 36.309-145.579 115.797 20.184-90.059 72.115-169.841 146.293-224.754s165.649-81.287 257.676-74.297c132.053-59.819 254.891-73.643 306.859-21.76 48 47.915 45.312 127.787 5.333 223.659-0.427 0.896-0.768 1.835-1.152 2.731 28.864 54.98 43.904 116.164 43.819 178.261 0 14.421-0.811 28.672-2.347 42.667h-634.114zM341.545 844.757c-78.549-45.385-138.563-117.035-169.472-202.325-49.536 97.365-62.293 178.773-20.011 221.013 34.688 34.645 104.021 26.624 189.355-18.603l0.128-0.085zM860.672 311.125c0.209-0.484 0.422-0.968 0.64-1.451 32-69.205 34.688-127.744 5.333-162.389-37.077-37.035-108.373-32-192.939 7.168 77.641 30.602 143.249 85.581 186.965 156.672z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ie-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 307, "id": 2042, "name": "ie-line", "prevSize": 32, "code": 59904 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 256
+ },
+ {
+ "icon": {
+ "paths": [
+ "M320 469.333c22.632 0 44.337-8.99 60.34-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.708-24.994-60.34-24.994h-192v170.667h192zM362.667 554.667h-234.667v170.667h234.667c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994zM450.688 493.739c31.979 19.23 56.777 48.41 70.592 83.076 13.815 34.662 15.889 72.9 5.905 108.855-9.988 35.955-31.484 67.648-61.197 90.223s-66.005 34.79-103.322 34.773h-320v-597.333h277.333c32.49 0.004 64.303 9.281 91.702 26.742s49.243 42.38 62.969 71.828c13.726 29.448 18.761 62.202 14.511 94.413-4.25 32.212-17.604 62.539-38.494 87.422zM661.333 256h234.667v64h-234.667v-64zM981.333 618.667h-320v10.667c-0.009 26.355 8.853 51.951 25.165 72.653s39.117 35.311 64.747 41.472c25.626 6.161 52.578 3.516 76.518-7.514 23.936-11.029 43.465-29.798 55.437-53.278h91.051c-13.001 47.287-42.697 88.26-83.593 115.328-40.892 27.068-90.21 38.396-138.82 31.885-48.606-6.507-93.205-30.413-125.538-67.29-32.329-36.873-50.202-84.215-50.3-133.257v-64c0-53.751 21.35-105.301 59.358-143.307 38.007-38.007 89.557-59.36 143.309-59.36s105.301 21.353 143.309 59.36c38.007 38.006 59.358 89.556 59.358 143.307v53.333zM891.563 533.333c-6.985-24.555-21.786-46.161-42.159-61.547s-45.21-23.71-70.737-23.71c-25.527 0-50.364 8.324-70.737 23.71s-35.174 36.992-42.159 61.547h225.792z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["behance-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 308,
+ "id": 2041,
+ "name": "behance-line",
+ "prevSize": 32,
+ "code": 59905
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 257
+ },
+ {
+ "icon": {
+ "paths": [
+ "M242.348 312.064l-77.653 252.331 347.306 265.131 347.307-265.131-77.653-252.331-71.552 157.269h-396.244l-71.467-157.269h-0.043zM655.232 384l123.221-271.104c1.429-3.16 3.789-5.81 6.763-7.596s6.421-2.624 9.882-2.401c3.465 0.222 6.775 1.495 9.493 3.646 2.722 2.152 4.723 5.082 5.734 8.399l143.659 466.987c1.28 4.164 1.254 8.619-0.073 12.77-1.327 4.147-3.891 7.791-7.351 10.441l-434.56 331.733-434.516-331.733c-3.459-2.65-6.025-6.293-7.352-10.441-1.327-4.151-1.352-8.606-0.072-12.77l143.659-466.987c1.013-3.317 3.014-6.247 5.734-8.399s6.032-3.424 9.494-3.646c3.462-0.222 6.909 0.615 9.882 2.401s5.332 4.436 6.762 7.596l123.221 271.104h286.42z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gitlab-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 309,
+ "id": 2040,
+ "name": "gitlab-line",
+ "prevSize": 32,
+ "code": 59906
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 258
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 626.176v-2.645c0-107.008 86.016-197.035 202.795-223.275-15.531-98.219-119.211-178.389-249.728-178.389-141.653 0-251.733 94.421-251.733 203.947 0 41.344 15.36 81.067 44.373 115.115 1.365 1.621 3.541 4.011 6.485 7.040 25.084 25.779 40.23 59.61 42.752 95.488 30.468-17.613 66.047-24.269 100.821-18.859 7.083 1.109 12.885 1.963 17.28 2.56 28.889 3.75 58.162 3.409 86.955-1.024v0.043zM446.165 709.419c-38.815 6.665-78.411 7.454-117.461 2.347-6.468-0.875-12.925-1.826-19.371-2.859-15.945-2.483-32.257 0.717-46.080 9.045l-81.237 48.981c-6.257 3.857-13.583 5.606-20.907 4.992-4.429-0.333-8.749-1.54-12.711-3.546-3.962-2.010-7.49-4.779-10.379-8.154-2.89-3.371-5.085-7.283-6.461-11.507-1.375-4.22-1.903-8.674-1.553-13.103l6.4-75.989c0.797-9.532-0.462-19.123-3.694-28.126s-8.36-17.207-15.037-24.055c-3.546-3.614-6.976-7.343-10.283-11.179-40.704-47.787-64.725-106.752-64.725-170.496 0-159.744 150.912-289.237 337.067-289.237 173.227 0 315.861 112.085 334.933 256.341 143.872 6.528 258.133 107.307 258.133 230.656 0 50.901-19.456 97.963-52.437 136.107-2.176 2.56-4.949 5.547-8.32 8.96-5.393 5.431-9.545 11.964-12.164 19.153-2.624 7.189-3.657 14.861-3.025 22.49l5.163 60.715c0.26 3.558-0.183 7.134-1.31 10.522-1.122 3.388-2.906 6.519-5.248 9.216-2.338 2.697-5.188 4.902-8.38 6.494-3.196 1.596-6.673 2.539-10.236 2.782-5.926 0.486-11.857-0.917-16.939-4.011l-65.835-39.125c-11.221-6.643-24.401-9.19-37.291-7.211-6.272 0.981-11.52 1.707-15.701 2.261-13.483 1.707-27.307 2.645-41.344 2.645-114.944 0-213.248-60.075-253.568-145.109zM743.851 765.312c24.077-3.708 48.704-1.148 71.509 7.424 5.982-24.201 18.381-46.336 35.883-64.085 2.133-2.133 3.712-3.84 4.523-4.779 20.864-24.107 31.701-51.755 31.701-80.341 0-76.971-81.195-145.664-187.733-145.664s-187.733 68.693-187.733 145.664c0 76.971 81.195 145.664 187.733 145.664 10.283 0 20.48-0.683 30.464-1.963 3.413-0.427 8.021-1.067 13.653-1.963v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wechat-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 310,
+ "id": 2039,
+ "name": "wechat-line",
+ "prevSize": 32,
+ "code": 59907
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 259
+ },
+ {
+ "icon": {
+ "paths": [
+ "M630.016 832.427c65.553-24.141 122.125-67.802 162.082-125.099 39.962-57.297 61.385-125.474 61.385-195.328s-21.423-138.030-61.385-195.327c-39.957-57.297-96.529-100.96-162.082-125.1 82.944 63.445 137.984 189.653 137.984 320.427s-54.997 257.024-137.984 320.427zM393.984 191.573c-65.552 24.139-122.124 67.802-162.083 125.1s-61.384 125.473-61.384 195.327c0 69.854 21.425 138.031 61.384 195.328s96.531 100.958 162.083 125.099c-82.944-63.445-137.984-189.653-137.984-320.427s54.997-257.024 137.984-320.427zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 789.333c85.333 0 170.667-129.408 170.667-277.333s-85.333-277.333-170.667-277.333c-85.333 0-170.667 129.408-170.667 277.333s85.333 277.333 170.667 277.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["opera-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 311,
+ "id": 2038,
+ "name": "opera-line",
+ "prevSize": 32,
+ "code": 59908
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 260
+ },
+ {
+ "icon": {
+ "paths": [
+ "M271.531 256l374.784 412.288 30.72-12.075c71.893-28.203 122.197-91.989 131.925-166.229-69.367 4.907-138.052-16.422-192.439-59.755-54.391-43.336-90.522-105.518-101.235-174.229h-243.755zM597.333 213.333c-0.004 33.554 8.789 66.523 25.498 95.622s40.751 53.31 69.73 70.222c28.983 16.912 61.888 25.934 95.441 26.166s66.581-8.332 95.795-24.841c7.936 26.368 12.203 54.229 12.203 83.072 0 123.349-77.739 228.864-187.733 272.085l145.067 160.341h-725.333v-725.333h474.069c-3.162 14.001-4.753 28.312-4.736 42.667zM789.333 320c-28.288 0-55.42-11.238-75.426-31.242-20.002-20.004-31.241-47.135-31.241-75.425s11.238-55.421 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242s55.42 11.238 75.426 31.242c20.002 20.004 31.241 47.135 31.241 75.425s-11.238 55.421-31.241 75.425c-20.006 20.004-47.138 31.242-75.426 31.242zM213.333 318.72v491.947h447.147l-447.147-491.947z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["remixicon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 312,
+ "id": 2037,
+ "name": "remixicon-line",
+ "prevSize": 32,
+ "code": 59909
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 261
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 170.667c117.803 0 213.333 95.531 213.333 213.333s-95.531 213.333-213.333 213.333c-12.971 0-25.728-1.152-38.059-3.413l-113.109 84.864c1.195 8.235 1.835 16.64 1.835 25.216 0 94.293-76.373 170.667-170.666 170.667s-170.667-76.373-170.667-170.667c0-7.552 0.512-15.019 1.451-22.357l-163.243-65.963 32-79.104 163.243 65.92c31.104-41.941 80.981-69.163 137.216-69.163 6.955 0 13.781 0.427 20.48 1.237l87.125-130.603c-0.64-6.571-0.939-13.227-0.939-19.968 0-117.803 95.531-213.333 213.333-213.333zM405.334 618.667c-19.797 0-38.059 6.741-52.523 18.091l68.523 27.691c21.845 8.832 32.426 33.707 23.552 55.552-8.832 21.845-33.706 32.427-55.552 23.552l-68.48-27.605c5.803 41.472 41.429 73.429 84.523 73.429 47.146 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333l-0.043-0.043zM548.864 503.893l-41.941 62.976c12.117 8.96 23.040 19.541 32.341 31.36l58.027-43.52c-18.773-14.165-35.2-31.36-48.427-50.816zM725.333 256c-70.699 0-128 57.301-128 128s57.301 128 128 128c70.699 0 128-57.301 128-128s-57.301-128-128-128zM725.333 298.667c47.147 0 85.333 38.187 85.333 85.333s-38.187 85.333-85.333 85.333c-47.147 0-85.333-38.187-85.333-85.333s38.187-85.333 85.333-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["steam-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 313,
+ "id": 2036,
+ "name": "steam-line",
+ "prevSize": 32,
+ "code": 59910
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 262
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 853.419v-213.419h85.333v298.752h-682.667v-298.752h85.333v213.419h512zM320 768v-85.333h384v85.333h-384zM323.285 581.12l14.805-84.053 378.197 66.688-14.848 84.053-378.155-66.688zM393.003 346.283l42.667-73.899 332.544 192-42.667 73.899-332.544-192zM538.795 149.461l65.365-54.869 246.827 294.187-65.365 54.827-246.827-294.144z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stack-overflow-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 314,
+ "id": 2035,
+ "name": "stack-overflow-line",
+ "prevSize": 32,
+ "code": 59911
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 263
+ },
+ {
+ "icon": {
+ "paths": [
+ "M816.853 383.701l-421.078 241.237c-3.971 1.984-8.362 2.978-12.8 2.901-5.068 0.026-10.048-1.323-14.407-3.908s-7.933-6.31-10.339-10.769l-1.963-3.925-78.080-168.533c-1.024-1.963-1.024-3.925-1.024-5.888 0-7.851 5.931-13.696 13.824-13.696 2.987 0 5.973 0.981 8.917 2.944l91.947 64.64c6.912 3.925 14.848 6.869 23.723 6.869 5.091-0.026 10.131-1.028 14.849-2.944l353.067-155.648c-60.971-69.333-159.104-115.115-271.488-115.115-188.588 0-337.068 128.939-337.068 281.6 0 58.283 21.333 114.048 61.099 161.323 2.048 2.432 5.12 5.845 9.131 10.027 16.771 17.468 29.633 38.302 37.733 61.12s11.25 47.1 9.243 71.232l-1.067 12.672 30.549-18.603c34.544-21.065 75.447-29.167 115.414-22.869 9.045 1.408 16.469 2.517 22.187 3.243 17.323 2.304 34.987 3.456 52.779 3.456 188.587 0 337.067-128.939 337.067-281.6 0-42.496-11.52-83.2-32.213-119.765zM264.191 936.235c-6.717 4.194-14.467 6.434-22.385 6.473s-15.69-2.129-22.447-6.255c-6.757-4.126-12.233-10.052-15.814-17.114s-5.127-14.98-4.464-22.869l8.021-96.384c1.006-12.062-0.566-24.205-4.612-35.614s-10.473-21.828-18.855-30.562c-4.475-4.595-8.801-9.335-12.971-14.208-50.944-60.629-81.067-135.381-81.067-216.235 0-202.667 189.099-366.933 422.401-366.933s422.4 164.267 422.4 366.933c0 202.667-189.099 366.933-422.4 366.933-21.76 0-43.093-1.408-63.957-4.181-8.107-1.097-16.201-2.291-24.278-3.584-19.99-3.153-40.45 0.9-57.728 11.435l-101.845 62.165z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wechat-pay-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 315,
+ "id": 2034,
+ "name": "wechat-pay-line",
+ "prevSize": 32,
+ "code": 59912
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 264
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667 0 187.733-121.216 347.136-289.664 404.181l-9.643 3.157-123.904-322.133c45.611-2.005 81.877-40.235 81.877-85.205 0-47.147-38.187-85.333-85.333-85.333s-85.333 38.187-85.333 85.333c0 45.952 36.309 83.413 81.792 85.248l-123.861 322.091-9.6-3.157c-168.491-57.045-289.664-216.448-289.664-404.181 0-235.648 191.019-426.667 426.667-426.667zM512 170.667c-188.501 0-341.333 152.832-341.333 341.333 0 124.587 66.731 233.6 166.443 293.205l63.147-164.224c-36.139-31.275-58.923-77.483-58.923-128.981 0-94.293 76.373-170.667 170.667-170.667s170.667 76.373 170.667 170.667c0 51.499-22.827 97.707-58.88 128.981 24.107 62.891 45.184 117.632 63.104 164.267 99.669-59.648 166.443-168.661 166.443-293.248 0-188.501-152.832-341.333-341.333-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["open-source-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 316,
+ "id": 2033,
+ "name": "open-source-line",
+ "prevSize": 32,
+ "code": 59913
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 265
+ },
+ {
+ "icon": {
+ "paths": [
+ "M656.896 451.413l0.853-10.624c2.368-33.028 3.55-66.13 3.541-99.243 0-37.12-12.544-63.403-38.997-88.021-28.16-26.197-62.251-40.192-110.507-40.192-48.512 0-83.541 14.293-107.093 37.888-29.696 29.653-40.875 51.968-40.875 89.6 0 22.229 2.603 85.077 4.096 111.701 1.215 21.764-5.945 43.166-20.011 59.819 2.347 4.181 4.48 8.704 6.528 13.525 12.8 32.896 8.448 65.835-6.485 96.896-16.725 34.901-31.189 59.435-60.16 91.904-8.602 9.66-17.747 18.816-27.392 27.435 7.23 6.942 13.181 15.1 17.579 24.107 22.581-2.005 45.33-0.943 67.627 3.157 34.56 6.229 56.491 18.517 93.611 45.269l0.683 0.469 9.088 6.485c26.411 18.773 37.419 23.296 62.848 23.296 25.984 0 38.827-5.163 64.981-23.552l8.832-6.229c37.376-26.965 60.032-39.595 95.189-45.909 21.973-3.652 44.297-4.715 66.517-3.157 4.454-9.054 10.479-17.246 17.792-24.192-9.207-8.303-17.98-17.075-26.283-26.283-24.823-27.657-45.606-58.684-61.739-92.16-15.488-31.957-20.053-65.707-5.845-99.029 1.707-4.181 3.627-8.107 5.632-11.776-14.413-17.011-21.594-38.989-20.011-61.227v0.043zM216.789 447.061c17.877 0 25.6 13.013 52.011 13.013 6.699 0 11.093-1.493 13.909-2.816-0.384-6.656-4.224-84.736-4.224-116.437 0-72.021 30.72-114.773 65.835-149.931s89.813-62.891 167.509-62.891c77.653 0 130.816 27.861 168.619 63.061s66.176 82.347 66.176 150.528c0 66.347-4.224 110.677-4.608 115.883 3.682 1.89 7.77 2.842 11.904 2.773 26.88 0 26.88-13.227 56.747-13.227 29.227 0 41.941 24.32 41.941 35.115 0 26.496-35.541 41.259-56.747 48.043-15.744 4.992-39.723 12.416-45.867 27.093-3.157 7.424-1.835 17.067 3.925 28.928 0.128 0.341 53.76 123.008 167.68 141.909 10.027 1.493 16.683 10.283 16.683 20.608 0 14.165-15.787 26.325-30.976 33.365-18.901 8.533-46.549 15.787-83.285 21.547-1.835 3.328-5.717 20.693-10.027 37.845-5.76 23.125-34.176 15.616-42.283 13.909-25.207-5.308-51.17-5.999-76.629-2.048-20.565 3.712-38.955 16.128-59.52 30.976-30.421 21.504-62.507 45.909-123.733 45.909-61.269 0-91.477-24.405-121.899-45.909-20.565-14.848-38.613-27.179-59.563-30.976-38.315-6.955-66.987 1.536-76.587 2.432-9.643 0.853-35.925 10.411-42.496-13.952-1.92-7.083-8.149-34.475-10.027-38.187-36.523-5.76-64.341-13.355-83.285-21.888-15.573-7.040-30.976-18.901-30.976-33.237 0-10.027 6.741-18.773 16.683-20.565 112.811-20.608 160.683-128.213 167.339-142.080 5.632-11.776 6.869-21.333 3.883-28.971-6.101-14.635-30.037-21.888-45.781-27.093-4.48-1.451-57.003-15.915-57.003-47.659 0-10.24 8.747-24.448 24.832-31.147 6.333-2.462 13.048-3.789 19.84-3.925z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["snapchat-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 317,
+ "id": 2032,
+ "name": "snapchat-line",
+ "prevSize": 32,
+ "code": 59914
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 266
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM554.667 597.333c-0.009 26.769-7.211 53.043-20.851 76.075-13.645 23.031-33.229 41.971-56.704 54.835-23.471 12.868-49.971 19.191-76.727 18.304-26.754-0.887-52.778-8.951-75.348-23.343-22.57-14.396-40.855-34.59-52.944-58.475s-17.534-50.577-15.768-77.286c1.766-26.714 10.679-52.459 25.807-74.543s35.914-39.693 60.182-50.991c5.079-2.368 10.575-3.712 16.173-3.955s11.19 0.619 16.456 2.539c5.265 1.916 10.102 4.851 14.232 8.64 4.131 3.785 7.476 8.35 9.843 13.427s3.711 10.573 3.954 16.175c0.243 5.598-0.618 11.187-2.536 16.452s-4.854 10.103-8.64 14.234c-3.787 4.13-8.35 7.475-13.429 9.843-10.406 4.834-19.32 12.378-25.811 21.837-6.49 9.463-10.318 20.497-11.082 31.945s1.564 22.891 6.74 33.131c5.176 10.24 13.009 18.901 22.681 25.075s20.825 9.634 32.292 10.018c11.468 0.384 22.828-2.321 32.891-7.834 10.065-5.513 18.458-13.628 24.311-23.497 5.85-9.869 8.939-21.133 8.943-32.606v-170.667c0.009-26.769 7.211-53.044 20.851-76.074 13.645-23.031 33.229-41.971 56.704-54.838 23.471-12.867 49.971-19.187 76.727-18.3 26.752 0.887 52.779 8.949 75.345 23.343 22.571 14.394 40.858 34.589 52.945 58.473s17.536 50.578 15.77 77.287c-1.766 26.714-10.679 52.459-25.809 74.543-15.125 22.084-35.913 39.693-60.181 50.991-5.077 2.368-10.573 3.712-16.175 3.955-5.598 0.243-11.187-0.619-16.452-2.539-5.265-1.916-10.103-4.851-14.234-8.64-4.13-3.785-7.475-8.35-9.843-13.427-4.783-10.257-5.291-21.995-1.417-32.627 3.87-10.637 11.81-19.294 22.067-24.077 10.406-4.834 19.319-12.378 25.809-21.837 6.494-9.463 10.321-20.497 11.085-31.945s-1.566-22.892-6.741-33.132c-5.175-10.24-13.009-18.9-22.682-25.074s-20.826-9.634-32.29-10.019c-11.469-0.384-22.827 2.321-32.892 7.833s-18.458 13.628-24.311 23.498c-5.85 9.871-8.939 21.132-8.943 32.606v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mini-program-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 318,
+ "id": 2031,
+ "name": "mini-program-line",
+ "prevSize": 32,
+ "code": 59915
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 267
+ },
+ {
+ "icon": {
+ "paths": [
+ "M369.791 491.136c-7.215 0.051-14.367-1.331-21.041-4.070-6.675-2.735-12.739-6.771-17.841-11.874s-9.138-11.166-11.875-17.839c-2.737-6.677-4.12-13.828-4.069-21.043 0-30.635 24.192-54.869 54.827-54.869 30.592 0 54.827 24.235 54.827 54.869 0 30.592-24.235 54.827-54.827 54.827zM654.208 491.136c-7.215 0.051-14.366-1.331-21.043-4.070-6.673-2.735-12.74-6.771-17.839-11.874-5.103-5.103-9.139-11.166-11.874-17.839-2.739-6.677-4.122-13.828-4.070-21.043 0-30.635 24.235-54.869 54.827-54.869 30.635 0 54.827 24.235 54.827 54.869 0 30.592-24.192 54.827-54.827 54.827zM291.114 819.84l30.507-18.603c34.544-21.060 75.447-29.167 115.414-22.869 9.045 1.408 16.469 2.517 22.187 3.243 17.323 2.304 34.987 3.456 52.779 3.456 188.587 0 337.067-128.939 337.067-281.6s-148.48-281.6-337.067-281.6c-188.588 0-337.068 128.939-337.068 281.6 0 58.283 21.333 114.048 61.099 161.323 2.048 2.432 5.12 5.845 9.131 10.027 16.771 17.468 29.633 38.302 37.733 61.12s11.25 47.1 9.243 71.232l-1.067 12.672h0.043zM264.234 936.192c-6.711 4.198-14.458 6.447-22.374 6.494s-15.689-2.108-22.45-6.225c-6.761-4.117-12.243-10.035-15.833-17.088-3.59-7.057-5.146-14.972-4.495-22.861l8.021-96.427c1.006-12.062-0.566-24.205-4.612-35.614s-10.473-21.828-18.855-30.562c-4.475-4.595-8.801-9.335-12.971-14.208-50.944-60.629-81.067-135.381-81.067-216.235 0-202.667 189.099-366.933 422.401-366.933s422.4 164.267 422.4 366.933c0 202.667-189.099 366.933-422.4 366.933-21.76 0-43.093-1.408-63.957-4.181-8.107-1.097-16.201-2.291-24.278-3.584-19.99-3.153-40.45 0.9-57.728 11.435l-101.803 62.123z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wechat-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 319,
+ "id": 2030,
+ "name": "wechat-2-line",
+ "prevSize": 32,
+ "code": 59916
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 268
+ },
+ {
+ "icon": {
+ "paths": [
+ "M204.672 660.693c47.957-107.52 136.533-232.107 191.445-297.045-53.248-53.163-92.245-82.389-120.235-98.133-33.306 31.826-59.805 70.082-77.89 112.451s-27.382 87.968-27.326 134.035c0 53.333 12.203 103.765 34.005 148.693zM377.515 198.187c68.267 17.28 134.485 56.064 134.485 56.064v-0.213c0 0 66.219-38.571 134.443-55.893-42.483-18.195-88.226-27.544-134.443-27.477-47.787 0-93.227 9.813-134.485 27.52zM748.117 265.515c-27.947 15.787-66.901 45.013-120.149 98.133 54.912 64.981 143.445 189.483 191.403 297.003 22.43-46.34 34.044-97.169 33.963-148.651 0-96.853-40.363-184.32-105.216-246.485zM765.525 740.523c-59.861-95.403-174.507-210.944-253.525-270.635-78.933 59.733-193.664 175.275-253.483 270.72 31.972 35.529 71.067 63.927 114.74 83.349s90.947 29.431 138.743 29.376c47.812 0.051 95.095-9.967 138.778-29.406 43.682-19.435 82.778-47.855 114.748-83.405zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["xbox-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 320,
+ "id": 2029,
+ "name": "xbox-line",
+ "prevSize": 32,
+ "code": 59917
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 269
+ },
+ {
+ "icon": {
+ "paths": [
+ "M963.584 725.803c-18.347 23.168-63.232 39.68-63.232 39.68l-334.208 120.192v-88.661l245.931-87.765c27.947-9.984 32.213-24.149 9.515-31.573-22.613-7.467-63.616-5.333-91.563 4.736l-163.84 57.771v-91.947l9.387-3.2c0 0 47.36-16.811 113.963-24.192 66.56-7.339 148.139 1.024 212.139 25.301 72.107 22.827 80.213 56.448 61.909 79.616v0.043zM597.931 574.891v-226.645c0-26.624-4.864-51.115-29.824-58.027-19.072-6.144-30.933 11.605-30.933 38.187v567.595l-152.918-48.597v-676.736c65.024 12.075 159.744 40.661 210.646 57.813 129.493 44.501 173.397 99.925 173.397 224.725 0 121.643-75.008 167.765-170.325 121.685h-0.043zM103.722 787.797c-74.027-20.907-86.358-64.427-52.608-89.472 31.189-23.125 84.224-40.533 84.224-40.533l219.221-78.080v89.003l-157.739 56.533c-27.861 9.984-32.171 24.149-9.515 31.573 22.656 7.467 63.701 5.333 91.605-4.693l75.648-27.477v79.573l-15.061 2.56c-75.691 12.373-156.331 7.211-235.776-18.987z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["playstation-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 321,
+ "id": 2028,
+ "name": "playstation-line",
+ "prevSize": 32,
+ "code": 59918
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 270
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM568.917 512c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745h-120.917v128h120.917zM568.917 298.667c39.607 0 77.589 15.733 105.596 43.739s43.738 65.989 43.738 105.594c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738h-120.917v128h-85.333v-426.667h206.251z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["product-hunt-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 322,
+ "id": 2027,
+ "name": "product-hunt-line",
+ "prevSize": 32,
+ "code": 59919
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 271
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362.24 818.816c1.024-14.336 3.072-28.629 6.144-42.709 2.688-12.587 10.837-48.213 22.784-99.84l0.299-1.28 16.512-71.168c3.371-14.507 5.973-25.771 7.723-29.525-8.285-19.153-12.415-39.846-12.117-60.715 0-57.045 32.256-101.248 74.069-101.248 15.36-0.256 30.037 6.4 40.192 18.176 10.155 11.733 14.848 27.477 12.885 42.496 0 19.328-3.627 34.048-19.328 86.827-3.029 10.155-5.12 17.237-7.083 24.363-2.176 8.021-4.053 15.275-5.632 22.272-4.096 16.469-0.341 34.005 10.112 47.189 5.073 6.443 11.618 11.575 19.089 14.959 7.471 3.388 15.646 4.928 23.834 4.497 63.659 0 110.933-84.693 110.933-194.048 0-84.053-55.040-139.691-146.432-139.691-22.878-0.85-45.683 3.056-66.974 11.473s-40.604 21.159-56.717 37.423c-16.458 16.62-29.443 36.351-38.196 58.039-8.754 21.692-13.102 44.907-12.79 68.297-1.061 25.207 6.661 49.997 21.845 70.144 7.723 5.973 10.667 16.341 7.467 25.173-1.749 7.168-5.973 23.552-7.509 29.013-0.445 2.684-1.51 5.227-3.11 7.424-1.6 2.202-3.69 3.998-6.106 5.248-2.336 1.22-4.928 1.86-7.563 1.877-2.634 0.013-5.234-0.602-7.584-1.792-49.493-20.437-76.629-75.861-76.629-146.773 0-127.36 106.283-238.251 264.192-238.251 133.76 0 233.856 99.371 233.856 219.307 0 150.699-82.432 260.437-200.107 260.437-16.738 0.486-33.357-2.965-48.516-10.069-15.164-7.108-28.446-17.673-38.78-30.848l-10.667 43.904-0.085 0.299c-6.229 25.6-10.581 43.392-12.288 50.091-4.523 15.147-10.24 29.995-17.067 44.373 84.902 20.211 174.319 7.134 249.877-36.544 75.558-43.682 131.516-114.641 156.369-198.302s16.721-173.662-22.733-251.511c-39.454-77.847-107.226-137.626-189.393-167.049-82.163-29.423-172.48-26.255-252.381 8.853s-143.32 99.488-177.221 179.909c-33.901 80.422-35.71 170.772-5.054 252.483 30.656 81.715 91.447 148.582 169.879 186.859v-0.043zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pinterest-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 323,
+ "id": 2026,
+ "name": "pinterest-line",
+ "prevSize": 32,
+ "code": 59920
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 272
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM298.155 600.107l32.853-139.563h-50.944l15.445-59.307h122.368l-48.299 199.253c-2.72 10.027-4.238 20.335-4.523 30.72 0 12.715 6.016 16.469 15.445 18.645 5.76 1.365 51.541 0.427 76.416-57.173l31.744-132.139h-51.541l15.488-59.307h110.080l-14.123 67.328c19.285-37.547 57.941-73.173 95.915-73.173 40.533 0 74.069 30.037 74.069 87.68 0 14.72-1.963 30.763-7.083 48.853l-20.608 77.013c-1.869 6.78-2.957 13.751-3.243 20.779 0 13.397 5.163 20.053 14.805 20.053 9.685 0 21.931-7.339 36.096-48.213l28.331 11.392c-16.768 60.971-47.019 86.4-85.035 86.4-44.416 0-65.664-27.435-65.664-64.981 0-10.667 1.28-22.101 4.523-33.493l21.248-79.061c2.56-8.704 3.2-16.725 3.2-24.107 0-25.429-14.805-40.875-38.613-40.875-30.293 0-50.261 22.613-60.544 66.133l-41.216 172.032h-72.107l12.928-54.059c-21.205 36.267-50.645 58.667-86.955 58.667-43.776 0-64.384-26.24-64.384-65.792 0-10.027 1.28-22.315 3.84-33.707h0.085zM368 368c-12.73 0-24.94-5.057-33.941-14.059s-14.059-21.211-14.059-33.941c0-12.73 5.057-24.94 14.059-33.941s21.211-14.059 33.941-14.059c12.73 0 24.94 5.057 33.941 14.059s14.059 21.211 14.059 33.941c0 12.73-5.057 24.94-14.059 33.941s-21.211 14.059-33.941 14.059z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["invision-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 324,
+ "id": 2025,
+ "name": "invision-line",
+ "prevSize": 32,
+ "code": 59921
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 273
+ },
+ {
+ "icon": {
+ "paths": [
+ "M651.648 640h-438.315v-341.333h597.333v341.333h-69.291l-55.467 170.667h210.091v85.333h-768v-85.333h196.779l-34.645-106.667 81.152-26.368 43.221 133.035h181.717l55.467-170.667h-0.043zM149.333 128h725.333v85.333h-725.333v-85.333zM298.667 384v170.667h426.667v-170.667h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["douban-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 325,
+ "id": 2024,
+ "name": "douban-line",
+ "prevSize": 32,
+ "code": 59922
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 274
+ },
+ {
+ "icon": {
+ "paths": [
+ "M748.16 533.931l-29.696-76.629c0-0.896 0.427-16 0.427-23.808-0.043-131.072-59.861-262.827-206.891-262.827s-206.849 131.755-206.849 262.827c0 7.808 0.384 22.912 0.427 23.808l-29.696 76.629c-8.107 21.973-16.213 44.8-22.059 64.427-28.032 93.397-18.944 132.053-12.032 132.907 14.848 1.835 57.771-70.315 57.771-70.315 0 41.813 20.821 96.341 65.792 135.68-16.811 5.419-37.461 13.653-50.688 23.765-11.947 9.131-10.453 18.389-8.277 22.187 9.387 16.427 161.708 10.453 205.654 5.333 43.947 5.12 196.224 11.093 205.653-5.376 2.133-3.755 3.627-13.013-8.277-22.144-13.269-10.112-33.92-18.347-50.773-23.723 45.013-39.381 65.792-93.952 65.792-135.723 0 0 42.965 72.149 57.813 70.315 6.912-0.853 16.128-39.595-12.075-132.949-5.973-19.755-13.867-42.411-22.016-64.384zM791.723 884.949c-15.915 27.819-35.541 38.059-61.355 45.099-10.24 2.773-21.248 4.608-33.877 5.888-18.773 1.92-42.069 2.773-68.821 2.731-38.596-0.077-77.167-1.728-115.627-4.949-29.525 2.773-76.16 4.864-115.628 4.949-22.986 0.243-45.969-0.666-68.864-2.731-11.42-1.037-22.736-3.008-33.835-5.888-25.813-6.997-45.44-17.28-61.44-45.184-12.211-21.355-15.856-46.545-10.197-70.485-25.259-5.632-42.709-20.608-54.571-38.869-5.985-9.327-10.437-19.554-13.184-30.293-3.823-15.424-5.489-31.305-4.949-47.189 0.555-33.493 7.979-75.179 22.699-124.245 5.973-19.883 13.952-43.008 24.235-70.613l23.595-61.013c-0.047-2.889-0.076-5.773-0.085-8.661 0-194.347 103.936-348.16 292.182-348.16 188.288 0 292.181 153.813 292.181 348.16l-0.043 8.661 24.021 62.123c9.6 25.856 17.621 49.195 23.723 69.376 14.848 49.067 22.272 90.837 22.827 124.416 0.299 17.365-1.28 33.109-5.035 47.275-2.816 10.496-6.869 20.48-13.227 30.208-11.776 18.219-29.184 33.109-54.485 38.827 5.547 23.637 2.347 48.64-10.24 70.571z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qq-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 326, "id": 2023, "name": "qq-line", "prevSize": 32, "code": 59923 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 275
+ },
+ {
+ "icon": {
+ "paths": [
+ "M473.685 333.44l32.043-150.869c2.33-10.963 6.801-21.36 13.15-30.596 6.353-9.236 14.46-17.13 23.863-23.232 9.399-6.102 19.913-10.292 30.933-12.33s22.336-1.885 33.301 0.451l136.363 29.013c12.57-13.96 29.393-23.381 47.868-26.804 18.47-3.422 37.555-0.654 54.289 7.876 16.738 8.529 30.195 22.344 38.281 39.3s10.347 36.107 6.443 54.481c-3.908 18.374-13.773 34.946-28.058 47.144s-32.196 19.342-50.957 20.322c-18.761 0.98-37.321-4.257-52.8-14.9s-27.012-26.096-32.815-43.963l-136.363-29.013-28.416 133.76c76.117 5.845 151.765 31.147 220.288 72.533 20.361-11.322 43.285-17.23 66.586-17.161 23.296 0.069 46.187 6.114 66.483 17.556 20.292 11.442 37.312 27.897 49.434 47.797 12.117 19.9 18.927 42.573 19.78 65.856v0.896c0.324 20.868-4.147 41.532-13.077 60.399-8.93 18.863-22.076 35.426-38.421 48.401-0.077 1.754-0.192 3.503-0.341 5.248 0 170.581-189.867 299.947-418.091 299.947-227.5 0-414.209-129.024-414.081-296.661-0.186-2.573-0.329-5.146-0.427-7.723-27.558-20.685-46.251-51.046-52.311-84.966s0.961-68.877 19.65-97.826c18.689-28.947 47.657-49.735 81.065-58.174s68.773-3.9 98.967 12.7c68.911-41.53 147.016-65.391 227.372-69.461zM869.888 569.216c17.408-8.661 28.331-26.453 28.203-45.867-0.444-9.762-3.691-19.191-9.353-27.157-5.662-7.962-13.5-14.127-22.575-17.758-9.075-3.627-18.999-4.565-28.595-2.697-9.591 1.865-18.441 6.455-25.493 13.222l-24.96 23.893-28.587-19.413c-68.907-46.848-147.285-73.6-223.147-75.264h-42.923c-80.001 1.237-155.777 25.6-223.446 71.467l-28.288 19.2-24.917-23.467c-5.373-5.043-11.779-8.858-18.773-11.183s-14.409-3.098-21.733-2.274c-7.323 0.828-14.38 3.234-20.681 7.057s-11.696 8.969-15.811 15.083c-4.115 6.114-6.853 13.047-8.023 20.322-1.17 7.279-0.745 14.72 1.246 21.815s5.5 13.675 10.285 19.281c4.785 5.606 10.731 10.103 17.425 13.184l27.008 12.373-2.304 29.653c-0.555 7.253-0.554 14.464 0.128 24.917 0 115.627 143.189 214.613 328.876 214.613 186.496 0 332.757-99.669 332.885-217.856 0.555-7.215 0.555-14.46 0-21.675l-2.219-28.672 25.771-12.8zM298.666 576c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.252 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257zM597.333 576c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.25 6.741 45.252 18.743s18.748 28.284 18.748 45.257c0 16.973-6.746 33.254-18.748 45.257s-28.279 18.743-45.252 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257zM512.683 793.728c-59.605 0-118.060-15.787-165.633-51.627-2.874-3.469-4.35-7.885-4.139-12.386s2.093-8.759 5.279-11.947c3.186-3.183 7.445-5.069 11.945-5.278s8.917 1.263 12.387 4.139c40.32 29.568 90.582 42.24 139.478 42.24s99.413-11.733 140.117-40.917c2.351-2.295 5.269-3.934 8.457-4.745s6.532-0.768 9.698 0.124c3.162 0.887 6.037 2.598 8.333 4.954 2.295 2.351 3.934 5.269 4.745 8.457 0.691 3.196 0.589 6.511-0.294 9.655-0.887 3.145-2.53 6.029-4.783 8.393-29.184 34.005-105.984 48.939-165.589 48.939z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reddit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 327,
+ "id": 2022,
+ "name": "reddit-line",
+ "prevSize": 32,
+ "code": 59924
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 276
+ },
+ {
+ "icon": {
+ "paths": [
+ "M785.408 716.373c-92.715-40.533-158.72-70.229-197.973-89.003-59.733 72.363-122.539 116.053-216.747 116.053s-157.355-58.027-149.845-129.365c5.12-46.763 37.205-123.221 176.128-109.909 73.387 6.827 106.837 20.48 166.912 40.277 15.36-28.331 28.331-59.733 37.888-92.843h-265.557v-26.283h131.072v-47.104h-160.085v-29.013h160.085v-67.925c0 0 1.365-10.581 13.312-10.581h65.536v78.848h170.667v29.013h-170.667v47.104h139.264c-11.844 49.685-30.814 97.399-56.32 141.653 21.76 7.765 89.472 28.843 203.093 63.275 29.999-80.905 28.245-170.163-4.907-249.827-33.156-79.662-95.249-143.812-173.79-179.542s-167.697-40.389-249.534-13.039c-81.836 27.35-150.278 84.679-191.554 160.452s-52.323 164.367-30.918 247.956c21.405 83.588 73.673 155.968 146.287 202.577s160.185 63.987 245.096 48.636c84.911-15.347 160.858-62.285 212.557-131.366v-0.043zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM359.765 698.368c61.44 0 120.491-37.205 168.96-100.352-68.608-33.109-125.611-49.493-189.44-49.493-55.637 0-84.651 34.133-89.771 60.416s10.581 89.429 110.251 89.429z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alipay-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 328,
+ "id": 2021,
+ "name": "alipay-line",
+ "prevSize": 32,
+ "code": 59925
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 277
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.632 597.376c-0.196 3.537-0.296 7.083-0.299 10.624 0 101.632 74.795 202.667 213.333 202.667 101.248 0 193.195-27.947 256-66.261v142.933c-76.331 32.725-165.845 51.328-256 51.328-234.752 0-341.333-148.053-341.333-330.667 0-137.856 87.083-256 210.901-305.664-59.904 67.285-82.901 138.88-82.901 166.827l426.667 0.171c0-145.323-108.715-256-256-256-213.333 0-341.376 170.155-384 255.957 12.373-203.179 171.093-383.957 384-383.957 221.867 0 384 171.947 384 384v128l-554.368 0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edge-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 329,
+ "id": 2020,
+ "name": "edge-line",
+ "prevSize": 32,
+ "code": 59926
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 278
+ },
+ {
+ "icon": {
+ "paths": [
+ "M388.139 262.4l-204.245 353.835 74.88 129.365 204.16-353.707-74.795-129.493zM332.672 788.224h408.235l74.709-129.451h-408.149l-74.795 129.451zM815.403 573.44l-204.203-353.707h-149.12l204.245 353.707h149.077zM363.52 134.4h296.96l278.187 481.878-148.48 257.28h-555.947l-148.907-257.28 278.187-481.878zM512.213 477.269l-55.552 96.171h111.061l-55.509-96.171z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drive-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 330,
+ "id": 2019,
+ "name": "drive-line",
+ "prevSize": 32,
+ "code": 59927
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 279
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 407.467c39.125-39.979 90.069-66.133 149.333-66.133 62.238 0 121.924 24.724 165.935 68.732 44.006 44.010 68.732 103.697 68.732 165.935v320h-85.333v-320c0-39.607-15.731-77.589-43.738-105.596s-65.988-43.738-105.596-43.738c-39.607 0-77.589 15.731-105.596 43.738s-43.738 65.988-43.738 105.596v320h-85.333v-533.333h85.333v44.8zM213.333 277.333c-16.974 0-33.253-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.253-18.745 45.255s-28.281 18.745-45.255 18.745zM170.667 362.667h85.333v533.333h-85.333v-533.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["linkedin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 331,
+ "id": 2018,
+ "name": "linkedin-line",
+ "prevSize": 32,
+ "code": 59928
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 280
+ },
+ {
+ "icon": {
+ "paths": [
+ "M732.672 597.333h-114.005v58.667c23.467-9.429 49.195-20.907 77.312-34.56l-3.499-10.155 40.192-13.952zM768 585.088l5.12-1.792c27.349 78.976 44.117 128.512 50.56 149.333l-81.579 25.173c-3.157-10.24-9.216-28.672-18.219-55.168-259.456 123.093-369.964 87.637-384.343-81.365l85.035-7.253c4.268 49.707 14.679 69.205 38.273 74.752 16.768 3.968 40.107 2.688 70.485-4.437v-86.997h-149.335v-85.333h21.888l-49.792-59.307c44.501-37.376 79.276-78.080 104.449-122.197-22.101 5.76-44.247 11.947-66.177 18.56-21.93 32.38-46.997 62.52-74.837 89.984l-59.733-60.928c54.272-53.248 99.541-124.16 135.509-213.077l79.105 32c-6.391 15.845-13.222 31.509-20.48 46.976 157.952-39.936 310.4-56.192 389.888-29.013 52.181 17.835 81.877 59.349 93.312 110.251 7.253 32.256 13.355 114.731 13.355 218.581 0 119.765-2.389 160.853-14.507 197.205-12.672 37.973-29.696 60.501-60.032 84.651-28.032 22.315-66.261 32.555-112.853 35.115-28.715 1.579-58.368 0.128-89.387-3.413-8.495-0.939-16.973-2.005-25.429-3.2l11.264-84.565c7.902 1.033 15.808 2.031 23.723 2.987 26.667 2.987 51.883 4.267 75.179 2.987 30.464-1.707 53.12-7.723 64.341-16.64 18.176-14.507 25.216-23.808 32.256-44.971 7.936-23.637 10.112-61.781 10.112-170.155 0-98.091-5.675-175.019-11.264-199.808-5.547-24.619-17.493-41.387-37.675-48.299-51.499-17.579-162.176-8.277-283.819 17.792l26.24 11.179c-5.547 12.885-11.648 25.6-18.347 37.973h227.712v85.333h-149.333v64h149.333v73.088zM533.333 448h-51.541c-19.563 22.946-40.875 44.343-63.745 64h115.287v-64zM105.001 429.312l46.037-71.893c45.312 28.971 125.227 103.552 142.421 134.869 52.864 96.427 8.405 178.176-133.205 341.205l-64.427-55.936c114.645-132.011 149.333-195.84 122.795-244.224-9.131-16.64-79.232-82.091-113.579-104.021h-0.043zM219.348 323.541c-44.757 0-80.341-32.512-80.555-72.235 0-40.107 35.84-72.576 80.512-72.576 44.373 0 80.341 32.341 80.341 72.576 0 39.893-35.968 72.235-80.341 72.235h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["taobao-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 332,
+ "id": 2017,
+ "name": "taobao-line",
+ "prevSize": 32,
+ "code": 59929
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 281
+ },
+ {
+ "icon": {
+ "paths": [
+ "M141.483 128l370.517 640 370.517-640h98.816l-469.333 810.667-469.333-810.667h98.816zM326.741 128l185.259 320 185.259-320h98.816l-284.075 490.667-284.075-490.667h98.816z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vuejs-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 333,
+ "id": 2016,
+ "name": "vuejs-line",
+ "prevSize": 32,
+ "code": 59930
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 282
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM810.667 213.333h-597.333v597.333h597.333v-597.333zM725.333 298.667v426.667h-106.667v-320h-106.667v320h-213.333v-426.667h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["npmjs-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 334,
+ "id": 2015,
+ "name": "npmjs-line",
+ "prevSize": 32,
+ "code": 59931
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 283
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.837 786.048c18.082-2.79 36.587 0.307 52.779 8.832 26.185 13.769 56.090 18.799 85.342 14.353 29.248-4.442 56.311-18.121 77.235-39.040 20.919-20.919 34.598-47.983 39.040-77.235 4.442-29.248-0.589-59.153-14.353-85.342-8.529-16.192-11.622-34.692-8.832-52.779 6.754-43.157 3.221-87.296-10.317-128.828-13.534-41.531-36.689-79.278-67.575-110.165-30.891-30.887-68.634-54.042-110.165-67.578s-85.675-17.070-128.828-10.315c-18.086 2.791-36.591-0.305-52.78-8.832-26.192-13.777-56.105-18.814-85.364-14.373s-56.331 18.127-77.254 39.055c-20.924 20.929-34.604 48.003-39.038 77.263s0.609 59.172 14.392 85.361c8.527 16.192 11.623 34.692 8.832 52.779-6.755 43.157-3.22 87.296 10.315 128.828s36.691 79.279 67.578 110.165c30.887 30.886 68.634 54.042 110.164 67.575 41.533 13.538 85.672 17.071 128.829 10.317v-0.043zM512 874.667c-52.361 0.009-104.099-11.319-151.663-33.203-47.565-21.888-89.826-53.811-123.881-93.581s-59.093-86.443-73.396-136.811c-14.303-50.368-17.531-103.232-9.462-154.965-22.24-42.304-30.368-90.612-23.193-137.864s29.275-90.971 63.070-124.766c33.795-33.795 77.514-55.895 124.766-63.070s95.56 0.952 137.865 23.193c56.418-8.813 114.121-4.179 168.41 13.524 54.285 17.703 103.629 47.976 144.004 88.353 40.38 40.378 70.652 89.719 88.354 144.007s22.336 111.991 13.525 168.409c22.238 42.304 30.366 90.611 23.194 137.865-7.177 47.253-29.278 90.97-63.070 124.766-33.796 33.796-77.517 55.893-124.766 63.070-47.253 7.172-95.561-0.951-137.865-23.194-18.219 2.816-36.907 4.267-55.893 4.267zM514.261 725.333c-119.596 0-172.929-58.88-172.929-102.997 0-22.699 16.64-38.485 39.595-38.485 51.201 0 37.845 73.6 133.335 73.6 48.768 0 75.776-26.624 75.776-53.803 0-16.384-8.021-34.475-40.235-42.496l-106.24-26.581c-85.591-21.504-101.121-67.925-101.121-111.445 0-90.453 84.993-124.459 164.865-124.459 73.387 0 160.256 40.789 160.256 95.061 0 23.253-20.48 36.821-43.179 36.821-43.648 0-35.627-60.501-123.733-60.501-43.648 0-68.096 19.712-68.096 48.043 0 28.288 34.261 37.376 64.085 44.16l78.336 17.451c85.931 19.285 107.691 69.675 107.691 117.163 0 73.557-56.533 128.469-170.027 128.469h1.621z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skype-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 335,
+ "id": 2014,
+ "name": "skype-line",
+ "prevSize": 32,
+ "code": 59932
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 284
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 341.333c45.867 0 149.205-28.715 149.205-192v-64h64v256h213.461v85.333h-213.461v124.16c0.128 105.813 0.128 157.227 0.128 174.507-0.085 94.208 68.907 145.067 204.16 145.067v68.267h-95.659c-102.485 0.085-193.963-86.827-193.963-193.92v-318.080h-170.539v-85.333h42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tumblr-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 336,
+ "id": 2013,
+ "name": "tumblr-line",
+ "prevSize": 32,
+ "code": 59933
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 285
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 426.667v170.667h170.667v-170.667h298.667v469.333h-768v-469.333h298.667zM341.333 512h-128v298.667h597.333v-298.667h-128l-0.043 170.667h-341.291v-170.667zM682.667 128v256h-341.333v-256h341.333zM597.333 213.333h-170.667v85.333h170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["unsplash-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 337,
+ "id": 2012,
+ "name": "unsplash-line",
+ "prevSize": 32,
+ "code": 59934
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 286
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 73.984c7.508 0.006 14.882 1.993 21.376 5.76l682.837 395.35c6.464 3.75 11.831 9.135 15.565 15.612 3.729 6.477 5.692 13.82 5.692 21.295s-1.963 14.818-5.692 21.295c-3.733 6.477-9.101 11.861-15.565 15.612l-682.837 395.349c-6.484 3.755-13.842 5.734-21.334 5.739-7.492 0.009-14.854-1.954-21.346-5.696s-11.883-9.126-15.633-15.612c-3.75-6.485-5.726-13.845-5.73-21.338v-790.699c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM524.459 572.331l-191.915 191.915 243.157-140.757-51.2-51.2-0.043 0.043zM213.333 261.034v501.76l250.88-250.88-250.88-250.88zM652.117 444.587l-67.328 67.413 67.328 67.285 116.224-67.285-116.224-67.413zM332.544 259.584l192 192 51.157-51.2-243.157-140.8z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["google-play-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 338,
+ "id": 2011,
+ "name": "google-play-line",
+ "prevSize": 32,
+ "code": 59935
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 287
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362.453 881.792h66.176l22.955-144.043c4.459-28.139 18.812-53.769 40.474-72.273 21.666-18.505 49.22-28.672 77.713-28.676h21.333c114.219 0 173.227-41.941 194.133-149.461 8.875-45.483 4.992-73.813-7.296-89.685-51.499 130.304-161.707 177.493-297.045 177.493h-37.717c-16.384 0-33.877 8.917-36.352 24.747l-44.373 281.899zM151.509 869.248c-3.397 0-6.753-0.738-9.837-2.163-3.084-1.421-5.824-3.494-8.030-6.080-2.206-2.581-3.825-5.611-4.748-8.883-0.922-3.268-1.126-6.699-0.595-10.052l114.048-723.627c1.464-9.24 6.181-17.654 13.3-23.724s16.172-9.399 25.527-9.385h274.091c94.379 0 168.192 19.925 209.024 66.475 37.12 42.24 47.915 88.917 37.163 157.525 15.36 8.149 28.501 18.133 39.083 30.123 34.901 39.808 41.728 96.427 28.501 164.267-31.573 162.347-139.776 218.453-277.931 218.453h-21.333c-8.171 0.013-16.068 2.935-22.276 8.243s-10.321 12.659-11.601 20.727l-29.952 187.008c-1.271 8.073-5.38 15.428-11.593 20.736-6.212 5.312-14.114 8.23-22.285 8.235h-185.344c-2.976 0-5.917-0.644-8.62-1.89-2.703-1.25-5.104-3.063-7.038-5.329-1.934-2.261-3.355-4.915-4.165-7.778s-0.991-5.871-0.528-8.811l11.691-74.069h-126.549zM443.179 489.771h37.717c136.107 0 208.853-51.712 233.941-180.437 0.853-4.309 1.579-8.661 2.261-13.184 7.083-45.227 2.133-66.261-16.981-88.021-19.84-22.613-68.395-37.461-144.896-37.461h-234.667l-96.725 613.248h66.603l31.147-197.461 0.299 0.043c6.266-27.482 21.681-52.019 43.72-69.594s49.393-27.14 77.581-27.132z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["paypal-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 339,
+ "id": 2010,
+ "name": "paypal-line",
+ "prevSize": 32,
+ "code": 59936
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 288
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974zM512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM703.573 471.040l-0.256 0.597c-17.92 38.315-64.683 113.493-64.683 113.493l-0.213-0.512-13.653 23.808h65.835l-125.781 167.211 28.587-113.749h-51.84l18.005-75.221c-14.549 3.499-31.787 8.32-52.181 14.891 0 0-27.563 16.128-79.445-31.104 0 0-34.987-30.805-14.677-38.485 8.619-3.285 41.856-7.467 68.011-10.965 35.413-4.779 57.131-7.339 57.131-7.339s-109.013 1.621-134.869-2.432c-25.856-4.053-58.667-47.232-65.664-85.163 0 0-10.795-20.821 23.253-10.965s174.976 38.4 174.976 38.4c0 0-183.253-56.192-195.499-69.931-12.203-13.653-35.883-74.837-32.811-112.384 0 0 1.323-9.387 10.965-6.827 0 0 135.509 61.867 228.139 95.787 92.672 33.92 173.227 51.157 162.816 95.061-0.853 3.712-3.072 9.216-6.144 15.787v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dingding-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 340,
+ "id": 2009,
+ "name": "dingding-line",
+ "prevSize": 32,
+ "code": 59937
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 289
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 810.667h213.333v-597.333h-597.333v597.333h298.667v-213.333h-85.333v-85.333h85.333v-70.571c0-57.045 5.973-77.739 17.067-98.603 10.927-20.643 27.819-37.517 48.469-48.427 16.299-8.747 36.565-13.995 71.979-16.256 14.037-0.896 32.213 0.213 54.528 3.413v81.067h-21.376c-39.125 0-55.296 1.835-64.939 6.997-5.756 2.959-10.436 7.644-13.397 13.397-5.12 9.643-6.997 19.2-6.997 58.368v70.613h106.667l-21.333 85.333h-85.333v213.333zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["facebook-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 341,
+ "id": 2008,
+ "name": "facebook-box-line",
+ "prevSize": 32,
+ "code": 59938
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 290
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128v768h-187.733c-52.053 0-101.974-20.676-138.781-57.485s-57.485-86.729-57.485-138.782v-375.467c0-52.053 20.678-101.974 57.485-138.781s86.728-57.485 138.781-57.485h187.733zM426.667 213.333h-102.4c-29.421 0-57.638 11.688-78.442 32.492s-32.492 49.021-32.492 78.442v375.467c0 29.423 11.688 57.638 32.492 78.443s49.021 32.491 78.442 32.491h102.4v-597.333zM320 426.667c-16.974 0-33.253-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.253-18.745 45.255s-28.281 18.745-45.255 18.745zM597.333 128h102.4c25.775 0 51.294 5.076 75.106 14.94s45.449 24.32 63.676 42.545c18.223 18.225 32.683 39.861 42.543 63.674 9.865 23.812 14.942 49.334 14.942 75.108v375.467c0 25.775-5.077 51.294-14.942 75.106-9.86 23.812-24.32 45.449-42.543 63.676-18.227 18.223-39.863 32.683-63.676 42.543-23.812 9.865-49.331 14.942-75.106 14.942h-102.4v-768zM725.333 627.2c10.086 0 20.070-1.988 29.389-5.845 9.318-3.861 17.783-9.519 24.917-16.649 7.13-7.134 12.787-15.599 16.649-24.917 3.857-9.318 5.845-19.302 5.845-29.389s-1.988-20.070-5.845-29.389c-3.861-9.318-9.519-17.783-16.649-24.917-7.134-7.13-15.599-12.787-24.917-16.649-9.318-3.857-19.302-5.845-29.389-5.845-20.369 0-39.902 8.090-54.306 22.494s-22.494 33.937-22.494 54.306c0 20.369 8.090 39.902 22.494 54.306s33.937 22.494 54.306 22.494z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["switch-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 342,
+ "id": 2007,
+ "name": "switch-line",
+ "prevSize": 32,
+ "code": 59939
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 291
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 576c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743zM489.472 703.744c7.467 8.96 14.976 17.664 22.528 25.984 7.552-8.32 15.061-16.981 22.528-25.984-15.019 0.32-30.037 0.32-45.056 0zM404.352 698.411c-32.765-3.409-65.314-8.653-97.493-15.701-3.2 14.933-5.632 29.44-7.253 43.349-8.107 67.541 3.2 108.587 20.395 118.485 17.195 9.941 58.368-0.811 112.853-41.557 11.221-8.405 22.528-17.749 33.877-27.947-22.208-24.358-43.034-49.941-62.379-76.629zM717.141 682.709c-30.592 6.827-63.275 12.117-97.493 15.701-19.345 26.688-40.171 52.271-62.379 76.629 11.349 10.24 22.656 19.541 33.877 27.947 54.485 40.747 95.659 51.499 112.853 41.557 17.195-9.899 28.459-50.944 20.437-118.485-1.762-14.554-4.181-29.018-7.253-43.349h-0.043zM779.008 666.197c24.619 112.597 11.691 202.24-43.008 233.813s-138.795-2.048-224-79.659c-85.205 77.611-169.301 111.189-224 79.616s-67.627-121.173-43.051-233.813c-109.824-34.944-180.949-91.008-180.949-154.155s71.125-119.168 180.949-154.197c-24.576-112.597-11.648-202.24 43.051-233.813s138.795 2.048 224 79.659c85.205-77.611 169.301-111.189 224-79.616s67.627 121.173 43.051 233.813c109.824 34.944 180.949 91.008 180.949 154.155s-71.125 119.168-180.949 154.197h-0.043zM466.688 248.96c-10.85-9.821-22.14-19.147-33.835-27.947-54.485-40.747-95.659-51.499-112.853-41.557-17.195 9.899-28.459 50.944-20.437 118.485 1.707 13.952 4.096 28.416 7.253 43.349 32.193-7.052 64.756-12.294 97.536-15.701 20.267-27.861 41.173-53.504 62.379-76.629h-0.043zM619.648 325.589c34.219 3.584 66.901 8.917 97.493 15.701 3.2-14.933 5.632-29.44 7.253-43.349 8.107-67.541-3.2-108.587-20.395-118.485-17.195-9.941-58.368 0.811-112.853 41.557-11.708 8.799-23.014 18.124-33.877 27.947 21.205 23.125 42.112 48.768 62.379 76.629zM534.528 320.256c-7.467-8.96-14.976-17.664-22.528-25.984-7.552 8.32-15.061 16.981-22.528 25.984 15.019-0.319 30.037-0.319 45.056 0zM357.205 627.371c-7.784-12.838-15.295-25.839-22.528-38.997-4.053 10.965-7.808 21.76-11.221 32.469 10.965 2.389 22.229 4.565 33.707 6.528h0.043zM439.637 637.355c48.175 3.58 96.55 3.58 144.725 0 27.187-39.936 51.375-81.839 72.363-125.355-20.988-43.516-45.175-85.417-72.363-125.355-48.175-3.578-96.55-3.578-144.725 0-27.187 39.938-51.375 81.839-72.363 125.355 20.988 43.516 45.175 85.419 72.363 125.355zM689.323 435.627c4.053-10.965 7.808-21.76 11.221-32.469-11.187-2.427-22.426-4.604-33.707-6.528 7.77 12.839 15.266 25.841 22.485 38.997zM261.547 419.712c-14.507 4.693-28.245 9.813-41.131 15.36-62.507 26.795-92.416 57.088-92.416 76.928s29.867 50.133 92.416 76.928c12.885 5.547 26.624 10.667 41.131 15.36 9.472-29.867 21.205-60.843 35.2-92.288-13.448-30.080-25.199-60.894-35.2-92.288zM323.413 403.157c3.456 10.667 7.211 21.504 11.264 32.427 7.233-13.143 14.744-26.13 22.528-38.955-11.52 1.963-22.784 4.139-33.749 6.528h-0.043zM762.453 604.288c14.507-4.693 28.245-9.813 41.131-15.36 62.507-26.795 92.416-57.088 92.416-76.928s-29.867-50.133-92.416-76.928c-13.47-5.739-27.196-10.864-41.131-15.36-9.472 29.867-21.205 60.843-35.2 92.288 13.995 31.445 25.728 62.379 35.2 92.288zM700.587 620.843c-3.456-10.667-7.211-21.504-11.264-32.427-7.232 13.141-14.746 26.129-22.528 38.955 11.52-1.963 22.784-4.139 33.749-6.528h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reactjs-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 343,
+ "id": 2006,
+ "name": "reactjs-line",
+ "prevSize": 32,
+ "code": 59940
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 292
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 384c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49zM512 298.667c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.269-62.484 150.849-62.484zM789.333 288c0 14.145-5.619 27.71-15.62 37.712s-23.569 15.621-37.713 15.621c-14.144 0-27.712-5.619-37.713-15.621s-15.62-23.567-15.62-37.712c0-14.145 5.619-27.71 15.62-37.712s23.569-15.621 37.713-15.621c14.144 0 27.712 5.619 37.713 15.621s15.62 23.567 15.62 37.712zM512 170.667c-105.557 0-122.795 0.299-171.904 2.475-33.451 1.579-55.893 6.059-76.715 14.165-18.517 7.168-31.872 15.744-46.080 29.995-13.354 12.902-23.622 28.654-30.037 46.080-8.107 20.907-12.587 43.307-14.123 76.715-2.219 47.104-2.475 63.573-2.475 171.904 0 105.557 0.299 122.795 2.475 171.904 1.579 33.408 6.059 55.893 14.123 76.672 7.253 18.56 15.787 31.915 29.952 46.080 14.379 14.336 27.733 22.912 46.080 29.995 21.077 8.149 43.52 12.672 76.8 14.208 47.104 2.219 63.573 2.475 171.904 2.475 105.557 0 122.795-0.299 171.904-2.475 33.365-1.579 55.851-6.059 76.672-14.123 18.475-7.211 31.915-15.787 46.080-29.952 14.379-14.379 22.955-27.733 30.037-46.080 8.107-21.035 12.629-43.52 14.165-76.8 2.219-47.104 2.475-63.573 2.475-171.904 0-105.557-0.299-122.795-2.475-171.904-1.579-33.365-6.059-55.893-14.165-76.715-6.43-17.408-16.678-33.154-29.995-46.080-12.898-13.361-28.651-23.63-46.080-30.037-20.907-8.107-43.349-12.587-76.715-14.123-47.104-2.219-63.573-2.475-171.904-2.475zM512 85.333c115.925 0 130.389 0.427 175.872 2.56 45.44 2.133 76.373 9.259 103.595 19.84 28.16 10.837 51.883 25.515 75.605 49.195 21.696 21.329 38.485 47.129 49.195 75.605 10.539 27.179 17.707 58.155 19.84 103.595 2.005 45.483 2.56 59.947 2.56 175.872s-0.427 130.389-2.56 175.872c-2.133 45.44-9.301 76.373-19.84 103.595-10.679 28.493-27.473 54.298-49.195 75.605-21.333 21.687-47.134 38.477-75.605 49.195-27.179 10.539-58.155 17.707-103.595 19.84-45.483 2.005-59.947 2.56-175.872 2.56s-130.389-0.427-175.872-2.56c-45.44-2.133-76.373-9.301-103.595-19.84-28.487-10.688-54.292-27.482-75.605-49.195-21.7-21.325-38.488-47.125-49.195-75.605-10.581-27.179-17.707-58.155-19.84-103.595-2.005-45.483-2.56-59.947-2.56-175.872s0.427-130.389 2.56-175.872c2.133-45.483 9.259-76.373 19.84-103.595 10.677-28.494 27.469-54.301 49.195-75.605 21.319-21.708 47.122-38.497 75.605-49.195 27.221-10.581 58.112-17.707 103.595-19.84 45.483-2.005 59.947-2.56 175.872-2.56z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["instagram-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 344,
+ "id": 2005,
+ "name": "instagram-line",
+ "prevSize": 32,
+ "code": 59941
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 293
+ },
+ {
+ "icon": {
+ "paths": [
+ "M183.467 128h712.533v499.2l-200.533 200.533h-166.4l-106.667 102.4h-123.733v-102.4h-170.667v-563.2l55.467-136.533zM213.333 742.4h170.667v102.4h4.053l106.667-102.4h165.419l150.528-150.528v-378.539h-597.333v529.067zM640 341.333h85.333v200.533h-85.333v-200.533zM640 341.333h85.333v200.533h-85.333v-200.533zM426.667 341.333h85.333v200.533h-85.333v-200.533z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["twitch-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 345,
+ "id": 2004,
+ "name": "twitch-line",
+ "prevSize": 32,
+ "code": 59942
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 294
+ },
+ {
+ "icon": {
+ "paths": [
+ "M368.895 736.427l144.727 92.245 144.725-92.203 79.36 50.56-224.085 142.763-224.087-142.763 79.36-50.603zM331.476 383.146l102.103-66.261-103.468-67.157-104.832 64.725 106.197 68.693zM409.983 433.92l102.017 66.091 101.973-66.005-101.973-66.262-102.017 66.176zM590.507 550.827l103.424 66.901 104.533-64.085-106.027-68.779-101.931 65.963zM512 265.984l180.779-117.248 265.515 164.011-187.392 121.302 187.435 121.6-265.643 162.944-180.693-116.992-180.695 116.907-265.813-162.859 187.563-121.643-187.392-121.259 265.557-163.968 180.78 117.205zM590.379 316.842l102.101 66.304 106.197-68.693-104.789-64.725-103.509 67.115zM433.493 550.827l-101.975-65.963-106.069 68.821 104.576 64.085 103.468-66.944z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dropbox-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 346,
+ "id": 2003,
+ "name": "dropbox-line",
+ "prevSize": 32,
+ "code": 59943
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 295
+ },
+ {
+ "icon": {
+ "paths": [
+ "M331.264 820.267c25.173-11.093 53.333-13.184 79.701-5.931 32.853 8.96 66.773 13.483 101.035 13.397 195.627 0 341.333-140.245 341.333-328.533s-145.707-328.533-341.333-328.533c-195.627 0-341.333 140.245-341.333 328.533 0 96.853 38.229 182.272 105.216 242.176 12.171 10.782 22.013 23.932 28.924 38.647 6.911 14.72 10.745 30.69 11.268 46.942l15.189-6.699zM512 85.333c240.384 0 426.667 176.085 426.667 413.867s-186.283 413.867-426.667 413.867c-41.724 0.107-83.268-5.406-123.52-16.384-7.561-2.078-15.606-1.489-22.784 1.664l-84.651 37.376c-5.114 2.261-10.706 3.23-16.283 2.825-5.577-0.41-10.968-2.18-15.7-5.158s-8.66-7.074-11.438-11.93c-2.778-4.851-4.321-10.313-4.494-15.902l-2.347-75.947c-0.154-4.617-1.247-9.156-3.213-13.338s-4.764-7.919-8.222-10.982c-83.029-74.197-134.016-181.632-134.016-306.091 0-237.781 186.325-413.867 426.667-413.867zM255.787 620.245l125.312-198.827c4.715-7.486 10.93-13.913 18.255-18.875s15.597-8.352 24.297-9.956c8.699-1.604 17.638-1.386 26.248 0.639 8.614 2.025 16.713 5.813 23.787 11.126l99.669 74.667c4.442 3.354 9.856 5.167 15.424 5.167s10.982-1.813 15.424-5.167l134.613-102.229c17.963-13.611 41.429 7.893 29.397 27.008l-125.312 198.827c-4.715 7.484-10.931 13.914-18.253 18.876-7.326 4.962-15.599 8.35-24.299 9.954s-17.638 1.387-26.249-0.636c-8.614-2.027-16.713-5.815-23.787-11.127l-99.669-74.667c-4.442-3.354-9.856-5.167-15.424-5.167s-10.981 1.813-15.424 5.167l-134.613 102.187c-17.963 13.611-41.429-7.893-29.397-27.008v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["messenger-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 347,
+ "id": 2002,
+ "name": "messenger-line",
+ "prevSize": 32,
+ "code": 59944
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 296
+ },
+ {
+ "icon": {
+ "paths": [
+ "M306.005 117.632l138.325 138.368h135.296l138.368-138.325c8.004-8.006 18.863-12.504 30.187-12.504s22.182 4.498 30.187 12.504c8.004 8.006 12.506 18.864 12.506 30.187s-4.501 22.181-12.506 30.187l-78.037 77.952h89.003c39.607 0 77.589 15.733 105.596 43.738s43.738 65.989 43.738 105.595v341.333c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738h-554.667c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v-341.333c0-39.606 15.733-77.589 43.739-105.595s65.989-43.738 105.594-43.738h88.96l-77.995-78.037c-8.006-8.006-12.504-18.865-12.504-30.187s4.498-22.181 12.504-30.187c8.006-8.006 18.865-12.504 30.187-12.504s22.181 4.498 30.187 12.504v0.043zM789.333 341.334h-554.667c-15.91 0.001-31.249 5.927-43.026 16.624s-19.148 25.396-20.675 41.232l-0.299 6.144v341.333c0.001 15.91 5.927 31.249 16.624 43.025 10.697 11.78 25.396 19.149 41.232 20.676l6.144 0.299h554.667c15.91 0 31.249-5.926 43.025-16.623s19.149-25.395 20.676-41.233l0.299-6.144v-341.333c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745zM341.333 469.333c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17v85.333c0 11.315-4.495 22.17-12.497 30.17-8.002 8.004-18.854 12.497-30.17 12.497s-22.168-4.493-30.17-12.497c-8.001-8-12.497-18.854-12.497-30.17v-85.333c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497zM682.667 469.333c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v85.333c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497s-22.17-4.493-30.17-12.497c-8-8-12.497-18.854-12.497-30.17v-85.333c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bilibili-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 348,
+ "id": 2001,
+ "name": "bilibili-line",
+ "prevSize": 32,
+ "code": 59945
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 297
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 554.667h-597.333v298.667h597.333v-298.667zM810.667 469.333c0-79.211-31.467-155.178-87.479-211.189-56.009-56.011-131.977-87.477-211.187-87.477s-155.178 31.467-211.189 87.477c-56.011 56.011-87.477 131.978-87.477 211.189h597.333zM272.299 169.302c68-54.482 152.567-84.107 239.701-83.968 90.667 0 173.995 31.403 239.701 83.968l61.995-61.995 60.331 60.331-61.995 61.995c54.481 68 84.109 152.568 83.968 239.701v426.667c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-426.667c0-90.666 31.403-173.994 83.968-239.701l-61.995-61.952 60.331-60.331 61.995 61.952zM384 384c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 11.316-4.495 22.168-12.497 30.17s-18.854 12.497-30.17 12.497zM640 384c-11.315 0-22.17-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["android-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 349,
+ "id": 2000,
+ "name": "android-line",
+ "prevSize": 32,
+ "code": 59946
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 298
+ },
+ {
+ "icon": {
+ "paths": [
+ "M836.523 298.453c-3.243-12.715-12.459-22.315-22.997-25.259-18.645-5.248-109.525-17.195-301.525-17.195s-282.795 11.947-301.611 17.195c-10.411 2.901-19.627 12.501-22.912 25.259-4.651 18.091-16.811 93.909-16.811 213.547s12.16 195.413 16.811 213.589c3.243 12.672 12.459 22.272 22.955 25.173 18.773 5.291 109.568 17.237 301.568 17.237s282.837-11.947 301.611-17.195c10.411-2.901 19.627-12.501 22.912-25.259 4.651-18.091 16.811-94.080 16.811-213.547s-12.16-195.413-16.811-213.547zM919.168 277.248c19.499 76.032 19.499 234.752 19.499 234.752s0 158.72-19.499 234.752c-10.837 42.027-42.539 75.093-82.688 86.272-72.917 20.309-324.48 20.309-324.48 20.309s-251.435 0-324.48-20.309c-40.32-11.349-71.979-44.373-82.688-86.272-19.499-76.032-19.499-234.752-19.499-234.752s0-158.72 19.499-234.752c10.837-42.027 42.539-75.093 82.688-86.272 73.045-20.309 324.48-20.309 324.48-20.309s251.563 0 324.48 20.309c40.32 11.349 71.979 44.373 82.688 86.272zM426.667 661.333v-298.667l256 149.333-256 149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["youtube-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 350,
+ "id": 1999,
+ "name": "youtube-line",
+ "prevSize": 32,
+ "code": 59947
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 299
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667 0-62.464 13.397-121.771 37.547-175.189 19.883-40.064 52.608-79.957 78.933-93.611-27.861 54.741-41.515 108.373-44.373 144.341 19.371-64 56.107-117.632 107.52-155.477 88.149-64.811 206.848-67.712 254.123-26.453-87.723 30.165-183.296 151.381-162.261 293.376 3.413 23.467 10.453 46.251 20.864 67.499-16.384-43.093-17.835-103.808 8.619-143.275 29.525-43.947 71.595-53.248 94.123-48.469-8.875-1.877-28.501 35.669-31.403 42.283-7.381 16.811-11.051 34.987-10.709 53.333 0.636 38.332 16.439 74.846 43.947 101.547 82.005 79.829 214.315 48.427 273.579-42.752 40.661-62.763 45.611-169.301-6.613-253.952-13.030-20.613-28.565-39.53-46.251-56.32-78.933-75.349-191.147-109.653-297.899-94.080-47.189 7.552-87.339 21.163-120.491 40.789 46.293-46.208 138.24-80.256 227.413-80.256zM293.333 328.747c-96.128 33.323-149.376 135.253-110.037 275.627 19.68 69.901 61.129 131.708 118.327 176.448 57.199 44.736 127.172 70.080 199.753 72.341l10.624 0.171c86.865 0.004 170.466-33.109 233.766-92.599 63.305-59.486 101.542-140.873 106.927-227.571l0.384-9.045c-5.547 14.891-12.075 28.757-19.755 41.813l-5.973 9.685c-89.771 138.197-285.056 173.867-404.48 57.515-16.246-15.761-30.076-33.835-41.045-53.632l-4.523-8.576c-74.069-16.512-110.251-56.576-108.501-120.192 1.152-42.283 9.813-83.627 24.533-122.027v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["firefox-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 351,
+ "id": 1998,
+ "name": "firefox-line",
+ "prevSize": 32,
+ "code": 59948
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 300
+ },
+ {
+ "icon": {
+ "paths": [
+ "M242.261 773.248c-110.336-66.432-178.261-171.136-178.261-286.635 0-200.704 202.581-358.613 448-358.613s448 157.909 448 358.613c0 200.704-202.581 358.613-448 358.613-18.859 0-37.632-0.939-56.235-2.773l-160.64 104.875c-26.24 13.909-40.832 18.133-63.36 2.816-26.453-18.091-25.429-38.059-16.256-66.56l26.752-110.336zM149.333 486.613c0 90.965 60.501 175.915 161.323 226.987l30.123 15.317-7.936 32.853-17.109 70.315 119.467-78.080 15.616 1.963c20.181 2.603 40.619 3.925 61.184 3.925 202.283 0 362.667-125.013 362.667-273.28s-160.384-273.28-362.667-273.28c-202.283 0-362.667 125.013-362.667 273.28zM764.032 471.851l64.597 91.947c1.523 2.167 2.603 4.608 3.179 7.194 0.576 2.581 0.64 5.252 0.183 7.859s-1.421 5.099-2.842 7.334c-1.417 2.231-3.26 4.164-5.427 5.687s-4.608 2.603-7.194 3.179c-2.581 0.576-5.252 0.64-7.859 0.183s-5.099-1.421-7.334-2.842c-2.231-1.417-4.164-3.26-5.687-5.427l-60.928-86.741-18.219 17.621v58.155c0 5.342-2.121 10.462-5.897 14.242-3.78 3.776-8.9 5.897-14.242 5.897s-10.462-2.121-14.242-5.897c-3.776-3.78-5.897-8.9-5.897-14.242v-61.397c-0.755-3.11-0.755-6.362 0-9.472v-109.099c0-5.341 2.121-10.464 5.897-14.24 3.78-3.777 8.9-5.899 14.242-5.899s10.462 2.122 14.242 5.899c3.776 3.776 5.897 8.899 5.897 14.24v65.792l82.261-79.616c3.874-3.493 8.956-5.346 14.17-5.167s10.159 2.374 13.786 6.124c3.627 3.75 5.658 8.761 5.666 13.979 0.004 5.218-2.014 10.234-5.632 13.993l-62.72 60.715zM637.824 553.984c5.342 0 10.462 2.121 14.242 5.897 3.776 3.78 5.897 8.9 5.897 14.242s-2.121 10.462-5.897 14.242c-3.78 3.776-8.9 5.897-14.242 5.897h-82.432c-5.333-0.013-10.445-2.138-14.212-5.914s-5.884-8.892-5.884-14.225v-177.451c-0.124-2.72 0.303-5.437 1.259-7.987 0.951-2.55 2.415-4.88 4.297-6.848 1.877-1.969 4.139-3.537 6.643-4.607 2.5-1.071 5.197-1.623 7.919-1.623s5.419 0.552 7.919 1.623c2.505 1.071 4.766 2.638 6.643 4.607 1.882 1.969 3.345 4.299 4.297 6.848 0.956 2.55 1.382 5.267 1.259 7.987v157.312h62.293zM387.925 507.392h56.917l-27.221-72.832-29.696 72.832zM495.573 528.213l14.72 39.467c1.015 2.496 1.523 5.171 1.485 7.863-0.034 2.697-0.61 5.355-1.694 7.825-1.079 2.466-2.645 4.693-4.604 6.545-1.958 1.847-4.271 3.29-6.793 4.233-2.526 0.943-5.214 1.37-7.906 1.25-2.692-0.115-5.333-0.768-7.77-1.924-2.436-1.152-4.612-2.786-6.404-4.796-1.792-2.014-3.166-4.365-4.032-6.916l-12.715-34.091h-88.32l-14.123 34.688c-1 2.449-2.473 4.676-4.334 6.554-1.861 1.882-4.074 3.375-6.513 4.399s-5.055 1.557-7.7 1.57c-2.645 0.013-5.266-0.495-7.715-1.493s-4.676-2.475-6.556-4.335c-1.879-1.86-3.374-4.075-4.398-6.511-1.024-2.441-1.558-5.056-1.571-7.701s0.495-5.265 1.495-7.714l70.827-173.867c2.16-5.639 5.988-10.486 10.974-13.893s10.892-5.214 16.93-5.179c5.987 0.247 11.759 2.317 16.538 5.93s8.346 8.601 10.214 14.294l44.629 119.467c3.473 3.699 5.41 8.58 5.419 13.653l-0.085 0.683zM353.835 396.885c0 11.093-8.96 20.139-20.096 20.139h-48.64v159.403c0 5.346-2.124 10.475-5.905 14.255s-8.909 5.905-14.255 5.905c-5.347 0-10.475-2.125-14.255-5.905s-5.905-8.909-5.905-14.255v-159.403h-49.493c-5.341 0-10.464-2.122-14.24-5.899s-5.899-8.899-5.899-14.24c0-5.341 2.122-10.464 5.899-14.24s8.899-5.899 14.24-5.899h138.453c11.093 0 20.096 9.003 20.096 20.139z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["kakao-talk-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 352,
+ "id": 1997,
+ "name": "kakao-talk-line",
+ "prevSize": 32,
+ "code": 59949
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 301
+ },
+ {
+ "icon": {
+ "paths": [
+ "M509.867 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-98.391 0-191.66-33.451-266.625-93.525l-201.301 25.173 73.387-195.669c-21.163-51.115-32.128-106.155-32.128-162.645 0-235.648 191.019-426.667 426.668-426.667zM509.867 170.667c-188.503 0-341.335 152.832-341.335 341.333 0 50.261 10.837 98.901 31.488 143.445l7.509 16.213-36.139 96.427 98.773-12.331 14.421 12.672c61.867 54.443 141.141 84.907 225.281 84.907 188.501 0 341.333-152.832 341.333-341.333s-152.832-341.333-341.333-341.333zM341.332 298.667h161.708c145.92 0 232.107 83.456 236.373 201.771l0.128 9.173v1.152c0 120.064-83.712 210.005-227.712 214.4l-11.221 0.171h-159.276v-426.667 0zM504.789 403.541h-47.275v216.96h47.275c66.816 0 112-36.053 115.371-100.053l0.213-7.808v-1.195c0-68.267-46.080-107.947-115.584-107.947v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["disqus-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 353,
+ "id": 1996,
+ "name": "disqus-line",
+ "prevSize": 32,
+ "code": 59950
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 302
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-188.501 0-341.333 152.832-341.333 341.333s152.832 341.333 341.333 341.333c188.501 0 341.333-152.832 341.333-341.333s-152.832-341.333-341.333-341.333zM555.989 345.557c73.088 0 132.309 57.387 132.309 128.213s-59.221 128.213-132.267 128.213h-77.611l-110.72 105.429v-287.915c0-40.832 34.176-73.941 76.373-73.941h111.915z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pixelfed-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 354,
+ "id": 1995,
+ "name": "pixelfed-line",
+ "prevSize": 32,
+ "code": 59951
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 303
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333l183.125 183.125 45.269-45.227-52.565-52.565h165.504v165.504l-52.608-52.608-45.227 45.269 183.168 183.168-183.125 183.168 45.184 45.184 52.608-52.523v165.504h-165.547l52.565-52.608-45.184-45.227-183.168 183.168-183.168-183.168-45.269 45.227 52.608 52.608h-165.504v-165.547l52.523 52.565 45.269-45.227-183.125-183.125 183.168-183.168-45.312-45.269-52.523 52.608v-165.504h165.504l-52.608 52.48 45.312 45.312 183.125-183.125zM512 572.288l-122.88 122.837 122.88 122.88 122.837-122.88-122.837-122.837zM328.832 389.12l-122.837 122.88 122.795 122.795 122.88-122.88-122.837-122.795zM695.125 389.12l-122.752 122.795 122.795 122.837 122.837-122.752-122.88-122.88zM512 205.995l-122.795 122.837 122.837 122.795 122.752-122.837-122.795-122.795z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["centos-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 355,
+ "id": 1994,
+ "name": "centos-line",
+ "prevSize": 32,
+ "code": 59952
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 304
+ },
+ {
+ "icon": {
+ "paths": [
+ "M671.104 350.208c-20.181-1.579-41.856 3.243-75.051 15.915 2.816-1.067-31.659 12.373-41.301 15.787-21.419 7.467-39.040 11.563-58.795 11.563-19.541 0-37.547-3.925-58.283-10.88-6.613-2.261-13.269-4.693-21.547-7.936-3.499-1.365-16.299-6.485-19.115-7.552-27.648-10.837-43.221-14.933-56.149-14.592-49.152 0.64-95.701 29.013-122.709 76.032-55.125 95.744-24.619 268.757 55.979 385.323 42.923 61.611 66.389 83.627 75.861 83.328 9.472-0.427 16.427-2.432 33.408-9.6l7.125-3.029c42.88-18.304 72.96-26.368 118.229-26.368 43.563 0 72.661 7.936 113.835 25.685l7.168 3.072c16.981 7.253 23.125 8.875 33.792 8.619 15.275-0.213 34.091-17.792 75.861-79.104 11.435-16.683 21.547-34.261 30.293-52.053-5.747-4.736-11.328-9.673-16.725-14.805-54.997-52.395-89.003-123.051-89.941-210.347-0.917-64.589 20.314-127.547 60.16-178.389-16.725-6.174-34.291-9.771-52.096-10.667zM677.717 265.131c30.208 2.048 116.736 11.264 173.056 93.696-4.608 2.56-103.424 59.904-102.4 179.712 1.536 143.36 125.44 190.976 126.976 191.488-1.024 3.584-19.968 68.096-65.536 134.656-39.424 57.856-80.384 115.2-144.896 116.224-63.488 1.536-83.968-37.376-156.16-37.376-72.704 0-95.232 36.352-155.136 38.912-62.464 2.048-109.568-62.464-149.504-119.808-81.408-117.76-143.36-331.776-59.904-476.672 41.472-72.192 115.2-117.76 195.584-118.784 60.928-1.536 118.784 40.96 156.16 40.96 36.864 0 102.912-49.152 181.76-43.008zM629.077 187.307c-33.28 39.936-87.552 71.168-140.288 67.072-7.168-54.272 19.456-111.104 50.176-146.432 34.304-39.936 91.648-69.632 139.264-71.68 6.144 55.296-15.872 111.104-49.152 151.040z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["apple-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 356,
+ "id": 1993,
+ "name": "apple-line",
+ "prevSize": 32,
+ "code": 59953
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 305
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 213.333v597.333h597.333v-597.333h-597.333zM213.333 128h597.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v597.333c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-597.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-597.333c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994zM341.333 298.667h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM597.333 298.667h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["trello-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 357,
+ "id": 1992,
+ "name": "trello-line",
+ "prevSize": 32,
+ "code": 59954
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 306
+ },
+ {
+ "icon": {
+ "paths": [
+ "M526.677 766.421l-72.021 45.824-90.924-142.933c-18.773 59.819-50.005 113.707-91.264 163.2-17.152 20.608-34.987 39.168-55.509 58.667-6.613 6.272-33.067 30.592-37.461 34.987l-60.331-60.331c5.931-5.931 33.579-31.36 39.040-36.523 18.347-17.408 33.92-33.707 48.725-51.456 54.016-64.768 86.613-136.96 91.179-223.189h-170.112v-85.333h170.667v-170.667h-37.035c-29.397 54.016-66.475 94.805-111.701 121.899l-43.861-73.131c59.52-35.755 103.467-111.104 129.621-228.693l83.285 18.517c-5.973 27.008-12.928 52.352-20.864 76.075h192.556v85.333h-106.668v170.667h106.668v85.333h-98.775l134.786 211.755zM690.432 763.435l47.616-38.101h72.619v-426.667h-170.667v426.667h31.403l19.029 38.101zM554.667 213.333h341.333v597.333h-128l-106.667 85.333-42.667-85.333h-64v-597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zhihu-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 358,
+ "id": 1991,
+ "name": "zhihu-line",
+ "prevSize": 32,
+ "code": 59955
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 307
+ },
+ {
+ "icon": {
+ "paths": [
+ "M747.648 710.4l20.907-11.52 47.701-414.293-304.256-108.672-304.256 108.629 47.744 414.293 20.181 11.221 236.33-530.432 235.648 530.773zM700.757 736.427h-34.048l-49.877-124.587h-210.517l-49.92 124.587h-33.152l188.757 104.661 188.757-104.661zM512 85.333l396.8 141.653-60.501 525.227-336.299 186.453-336.298-186.453-60.501-525.227 396.8-141.653zM584.448 535.040l-72.448-174.507-72.448 174.507h144.896z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["angularjs-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 359,
+ "id": 1990,
+ "name": "angularjs-line",
+ "prevSize": 32,
+ "code": 59956
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 308
+ },
+ {
+ "icon": {
+ "paths": [
+ "M781.995 181.589l-60.715 60.715c-133.888-104.192-327.553-94.72-450.647 28.331-101.291 101.291-125.611 250.368-72.96 374.613l103.125-103.125c-9.088-64.128 11.008-131.627 60.331-180.992 72.961-72.96 185.687-82.005 268.503-27.136l-62.464 62.464c-47.573-22.699-106.24-14.379-145.665 25.045-39.424 39.381-47.787 98.091-25.045 145.664l-275.2 275.2c-1.451-149.333-25.216-205.312-33.621-285.952-12.843-123.477 28.032-251.477 122.667-346.112 156.416-156.416 404.097-165.973 571.735-28.715h-0.043zM902.741 181.675c1.451 149.333 25.216 205.269 33.621 285.909 12.843 123.477-28.032 251.477-122.667 346.112-156.416 156.416-404.097 165.973-571.735 28.715l60.757-60.715c133.889 104.192 327.553 94.72 450.647-28.331 101.291-101.291 125.611-250.368 72.96-374.613l-103.125 103.125c9.088 64.128-11.008 131.627-60.331 180.992-72.96 72.96-185.685 82.005-268.503 27.136l62.465-62.464c47.573 22.699 106.24 14.379 145.664-25.045 39.424-39.381 47.787-98.091 25.045-145.664l275.2-275.157z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["honor-of-kings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 360,
+ "id": 1989,
+ "name": "honor-of-kings-line",
+ "prevSize": 32,
+ "code": 59957
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 309
+ },
+ {
+ "icon": {
+ "paths": [
+ "M618.667 128c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255v213.333c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.283-18.743-45.257v-213.333c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745zM192 554.667h64v64c0 12.659-3.753 25.033-10.786 35.558-7.032 10.522-17.028 18.726-28.722 23.569-11.695 4.847-24.563 6.114-36.977 3.644s-23.819-8.567-32.769-17.515c-8.951-8.951-15.046-20.356-17.516-32.772-2.47-12.412-1.202-25.28 3.642-36.975s13.047-21.692 23.572-28.723c10.525-7.031 22.898-10.786 35.556-10.786zM554.667 768h64c12.659 0 25.033 3.755 35.558 10.786 10.522 7.031 18.726 17.028 23.569 28.723 4.847 11.695 6.114 24.563 3.644 36.975-2.47 12.416-8.567 23.821-17.515 32.772-8.951 8.947-20.356 15.044-32.772 17.515-12.412 2.47-25.28 1.199-36.975-3.644s-21.692-13.047-28.723-23.569c-7.031-10.526-10.786-22.899-10.786-35.558v-64zM618.667 554.667h213.333c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743h-213.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM832 341.333c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743h-64v-64c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745zM192 341.333h213.333c16.974 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.282 18.743-45.257 18.743h-213.333c-16.974 0-33.252-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745zM405.333 128c16.974 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255v64h-64c-16.974 0-33.253-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745zM405.333 554.667c16.974 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257v213.333c0 16.973-6.741 33.254-18.743 45.257s-28.282 18.743-45.257 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257v-213.333c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slack-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 361,
+ "id": 1988,
+ "name": "slack-line",
+ "prevSize": 32,
+ "code": 59958
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 310
+ },
+ {
+ "icon": {
+ "paths": [
+ "M406.869 554.667h-94.165c-17.579 49.749-64.981 85.333-120.704 85.333-70.699 0-128-57.301-128-128s57.301-128 128-128c55.723 0 103.168 35.627 120.747 85.333h94.123l147.797-256h135.253c17.579-49.707 65.024-85.333 120.747-85.333 70.699 0 128 57.301 128 128s-57.301 128-128 128c-55.723 0-103.125-35.584-120.704-85.333h-86.059l-123.136 213.291 123.179 213.376h86.016c17.536-49.707 64.981-85.333 120.704-85.333 70.699 0 128 57.301 128 128s-57.301 128-128 128c-55.723 0-103.125-35.584-120.704-85.333h-135.296l-147.797-256zM810.667 725.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM192 469.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM810.667 213.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stackshare-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 362,
+ "id": 1987,
+ "name": "stackshare-line",
+ "prevSize": 32,
+ "code": 59959
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 311
+ },
+ {
+ "icon": {
+ "paths": [
+ "M872.277 149.333l-283.051 490.24 172.672 299.093h-98.56l-172.672-299.051 283.051-490.283h98.56zM354.561 298.667l103.338 179.029-0.085 0.043-130.559 226.261h-98.517l130.56-226.347-103.211-178.987h98.475z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["xing-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 363,
+ "id": 1986,
+ "name": "xing-line",
+ "prevSize": 32,
+ "code": 59960
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 312
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 384h192l-21.333 85.333h-170.667v384h-85.333v-384h-170.667v-85.333h170.667v-79.872c0-76.075 7.936-103.68 22.784-131.499 14.549-27.485 37.026-49.962 64.512-64.512 27.819-14.848 55.424-22.784 131.499-22.784 22.272 0 41.813 2.133 58.539 6.4v78.933h-58.539c-56.491 0-73.685 3.328-91.221 12.715-12.971 6.912-22.613 16.555-29.525 29.525-9.387 17.536-12.715 34.731-12.715 91.221v79.872z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["facebook-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 364,
+ "id": 1985,
+ "name": "facebook-line",
+ "prevSize": 32,
+ "code": 59961
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 313
+ },
+ {
+ "icon": {
+ "paths": [
+ "M593.664 622.080c-6.839 1.668-13.726 3.149-20.651 4.437-37.572 7.074-76.147 6.929-113.664-0.427-6.571-1.28-15.872-3.541-27.861-6.741l-39.296 51.072c-96.981-3.115-133.845-68.096-133.845-68.096 0-144.256 63.189-261.205 63.189-261.205 63.189-48.341 123.307-47.019 123.307-47.019l17.195 22.4c1.583-0.222 3.179-0.364 4.779-0.427 32.777-4.345 65.993-4.201 98.731 0.427l18.859-22.4c0 0 60.16-1.323 123.307 47.061 0 0 63.232 116.907 63.232 261.163 0 0-37.333 64.939-134.315 68.096l-42.965-48.341zM429.909 469.333c-25.643 0-45.909 19.2-45.909 42.667s20.693 42.667 45.909 42.667c25.6 0 45.867-19.2 45.867-42.667 0.427-23.467-20.224-42.667-45.867-42.667zM594.091 469.333c-25.6 0-45.867 19.2-45.867 42.667s20.693 42.667 45.867 42.667c25.643 0 45.909-19.2 45.909-42.667s-20.267-42.667-45.909-42.667zM896 981.333l-212.907-213.333h127.573v-597.333h-597.333v597.333h469.461l24.32 85.333h-493.781c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-597.333c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h597.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v810.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["discord-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 365,
+ "id": 1984,
+ "name": "discord-line",
+ "prevSize": 32,
+ "code": 59962
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 314
+ },
+ {
+ "icon": {
+ "paths": [
+ "M444.629 485.333c-12.544 43.861 0.512 88.064 33.451 113.195 45.269 34.56 109.44 12.8 122.624-42.453 3.413-14.379 4.395-30.805 1.152-45.056-9.813-42.709-22.187-84.821-33.792-127.829-56.747 6.571-108.501 50.005-123.435 102.144zM681.344 473.088c11.648 43.179 12.16 86.059-5.419 128-48.128 114.773-201.429 133.973-280.448 35.243-55.552-69.419-54.613-169.003 2.56-244.651 33.28-44.032 76.971-72.832 130.048-87.637l16.171-4.437c-3.584-17.707-8.021-34.816-10.368-52.224-7.509-56.192 21.845-106.795 74.411-129.707 52.309-22.827 115.541-9.216 150.613 32.427 17.323 20.437 16.853 46.080-1.067 62.464-17.579 16.085-42.496 14.763-61.227-3.84-10.539-10.496-21.76-18.773-37.419-18.603-22.4 0.256-42.112 17.835-40.32 39.979 1.579 19.968 7.381 39.68 12.8 59.136 0.939 3.328 9.216 5.76 14.421 6.528 56.917 8.405 106.837 31.189 148.139 71.509 109.141 106.368 122.069 278.656 28.672 402.773-65.237 86.699-154.027 135.168-261.419 145.451-197.163 18.773-369.664-107.947-413.867-301.141-40.32-176.811 58.88-365.568 227.627-433.024 25.003-9.984 48.768-1.323 58.496 21.248 9.899 22.912-0.811 46.336-26.027 57.6-101.035 45.227-162.859 121.813-179.84 231.424-22.741 146.475 70.656 289.109 213.333 329.387 116.181 32.853 241.408-7.083 311.808-99.413 67.669-88.747 59.733-217.557-18.219-293.248-21.623-21.067-48.474-35.986-77.781-43.221 8.448 30.549 16.597 59.221 24.32 87.979z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["netease-cloud-music-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 366,
+ "id": 1983,
+ "name": "netease-cloud-music-line",
+ "prevSize": 32,
+ "code": 59963
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 315
+ },
+ {
+ "icon": {
+ "paths": [
+ "M442.24 846.208l82.347-142.592c-36.382 2.394-72.695-5.623-104.688-23.117s-58.341-43.733-75.962-75.657l-139.392-241.323c-22.544 46.698-34.155 97.916-33.954 149.773 0.201 51.853 12.21 102.98 35.116 149.504s56.105 87.215 97.082 118.997c40.976 31.778 88.652 53.807 139.41 64.414h0.043zM537.173 852.437c51.716-3.806 101.884-19.345 146.697-45.436 44.817-26.095 83.093-62.054 111.932-105.152s47.479-92.198 54.507-143.578c7.023-51.379 2.253-103.68-13.956-152.939h-164.693c21.137 31.552 32.397 68.689 32.341 106.667 0.055 34.846-9.417 69.047-27.392 98.901l-139.435 241.536zM603.435 566.955l0.939-1.621c9.318-16.141 14.242-34.441 14.285-53.077 0.047-18.633-4.791-36.958-14.033-53.141s-22.562-29.662-38.635-39.097c-16.068-9.434-34.334-14.493-52.966-14.673-18.637-0.18-36.992 4.526-53.244 13.649-16.252 9.124-29.828 22.342-39.38 38.347-9.551 16-14.743 34.227-15.058 52.86s4.256 37.026 13.26 53.342l1.024 1.792c9.271 16.090 22.588 29.478 38.626 38.844 16.038 9.361 34.244 14.374 52.813 14.537 18.573 0.162 36.864-4.527 53.065-13.602 16.201-9.079 29.747-22.234 39.305-38.157zM257.493 284.501l82.304 142.507c15.86-32.127 40.394-59.176 70.826-78.086 30.431-18.911 65.55-28.929 101.377-28.922h282.24c-31.283-46.036-73.361-83.714-122.56-109.745s-104.021-39.622-159.68-39.589c-48.055-0.054-95.579 10.065-139.444 29.692s-83.079 48.318-115.062 84.185v-0.043zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chrome-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 367,
+ "id": 1982,
+ "name": "chrome-line",
+ "prevSize": 32,
+ "code": 59964
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 316
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 563.285l-149.333 99.541v153.429l264.405-176.256-115.072-76.715zM627.072 512l-115.072-76.715-115.072 76.715 115.072 76.715 115.072-76.715zM853.333 463.744l-72.405 48.256 72.405 48.256v-96.512zM819.072 384l-264.405-176.256v153.429l149.333 99.541 115.072-76.715zM320 460.715l149.333-99.541v-153.429l-264.405 176.256 115.072 76.715zM204.928 640l264.405 176.256v-153.429l-149.333-99.541-115.072 76.715zM170.667 560.256l72.405-48.256-72.405-48.256v96.512zM85.333 384c-0.001-7.023 1.731-13.937 5.044-20.13s8.101-11.471 13.943-15.369l384-256c7.010-4.678 15.253-7.174 23.68-7.174s16.67 2.496 23.68 7.174l384 256c5.841 3.898 10.633 9.177 13.943 15.369s5.043 13.107 5.043 20.13v256c0 7.023-1.732 13.935-5.043 20.13-3.311 6.191-8.102 11.469-13.943 15.369l-384 256c-7.010 4.676-15.253 7.172-23.68 7.172s-16.67-2.496-23.68-7.172l-384-256c-5.842-3.9-10.631-9.178-13.943-15.369-3.312-6.195-5.044-13.107-5.044-20.13v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["codepen-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 368,
+ "id": 1981,
+ "name": "codepen-line",
+ "prevSize": 32,
+ "code": 59965
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 317
+ },
+ {
+ "icon": {
+ "paths": [
+ "M622.805 455.851h120.661l-241.365 241.408 241.365 241.323h-120.661l-241.364-241.408 241.364-241.323zM614.528 85.504h120.704l-482.729 482.731-60.331-60.331 422.356-422.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flutter-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 369,
+ "id": 1980,
+ "name": "flutter-line",
+ "prevSize": 32,
+ "code": 59966
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 318
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 725.333c-84.868 0-166.263-33.715-226.274-93.726s-93.726-141.406-93.726-226.274c0-84.869 33.714-166.263 93.726-226.274s141.406-93.726 226.274-93.726c84.868 0 166.263 33.714 226.274 93.726s93.726 141.405 93.726 226.274c0 84.868-33.715 166.263-93.726 226.274s-141.406 93.726-226.274 93.726zM640 640c62.238 0 121.924-24.725 165.935-68.732 44.006-44.011 68.732-103.697 68.732-165.935s-24.725-121.926-68.732-165.935c-44.011-44.009-103.697-68.732-165.935-68.732s-121.924 24.724-165.935 68.732c-44.006 44.009-68.732 103.697-68.732 165.935s24.725 121.924 68.732 165.935c44.011 44.006 103.697 68.732 165.935 68.732zM85.333 85.333h213.333v853.333h-213.333v-853.333zM170.667 170.667v682.667h42.667v-682.667h-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["patreon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 370,
+ "id": 1979,
+ "name": "patreon-line",
+ "prevSize": 32,
+ "code": 59967
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 319
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 213.333h-256v256h256v-256zM554.667 213.333v256h256v-256h-256zM810.667 554.667h-256v256h256v-256zM469.333 810.667v-256h-256v256h256zM128 128h768v768h-768v-768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["microsoft-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 371,
+ "id": 1978,
+ "name": "microsoft-line",
+ "prevSize": 32,
+ "code": 59968
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 320
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 426.667c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497zM298.667 469.333c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497zM426.667 298.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM640 256c66.236-0.003 129.894 25.667 177.6 71.615s75.746 108.596 78.229 174.785l0.128 11.093c36.719 5.231 70.174 23.945 93.858 52.489s35.895 64.879 34.261 101.931c-1.634 37.056-16.998 72.175-43.102 98.522s-61.082 42.039-98.116 44.019l-8.192 0.213h-149.376c-10.876-0.013-21.333-4.177-29.244-11.639-7.906-7.467-12.663-17.673-13.303-28.527-0.636-10.854 2.897-21.547 9.877-29.884 6.98-8.341 16.879-13.7 27.678-14.985l5.035-0.299 152.96-0.085c15.364-0.828 29.914-7.159 40.986-17.839 11.076-10.679 17.933-24.99 19.315-40.311 1.382-15.326-2.799-30.63-11.78-43.123-8.981-12.489-22.161-21.325-37.129-24.892l-5.76-1.109-75.52-10.752 2.261-76.245-0.171-7.509c-2.116-42.266-19.861-82.24-49.788-112.16-29.931-29.921-69.909-47.655-112.175-49.76l-8.533-0.213c-11.435 0-22.656 1.109-33.621 3.285l-9.045 2.091v421.291c0 10.449-3.84 20.535-10.782 28.348-6.946 7.808-16.512 12.796-26.893 14.020l-4.992 0.299c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17l-0.043-477.739c38.912-22.516 83.085-34.336 128.043-34.261zM42.667 512c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17v170.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["soundcloud-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 372,
+ "id": 1977,
+ "name": "soundcloud-line",
+ "prevSize": 32,
+ "code": 59969
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 321
+ },
+ {
+ "icon": {
+ "paths": [
+ "M352.427 352.427c-103.339 23.168-181.76 125.781-181.76 242.133-0.001 62.724 23.404 123.196 65.635 169.574s100.248 75.332 162.7 81.19c62.452 5.858 124.843-11.797 174.964-49.51 50.121-37.717 84.365-92.774 96.030-154.406 2.513-13.397 8.196-25.997 16.576-36.745s19.217-19.337 31.595-25.037c20.565-9.472 38.827-20.181 54.784-31.701-36.821-25.728-50.603-79.445-20.053-120.917 25.463-34.44 45.478-72.588 59.349-113.109-50.193 23.273-102.63 41.359-156.501 53.973-53.803 12.928-102.059-27.221-105.216-77.397-50.347 24.405-113.92 43.093-198.059 61.952h-0.043zM821.589 477.611c49.749 0 81.792-18.091 117.077-25.045-13.867 61.781-64 148.907-184.747 204.587-15.522 82.59-61.329 156.412-128.439 206.993s-150.69 74.278-234.362 66.449c-83.672-7.825-161.406-46.618-217.97-108.77-56.564-62.148-87.881-143.185-87.816-227.221 0-155.563 105.259-293.376 248.491-325.461 167.296-37.461 243.371-66.816 301.909-183.808 29.397 56.875 29.397 123.392 0 199.552 120.149-28.587 216.491-79.019 289.024-151.381 0 204.885-77.739 306.603-103.211 344.107h0.043zM572.416 645.376c24.917 6.187 24.917 35.499 24.917 43.52v43.605c0 23.936-14.592 32.981-36.011 32.981h-230.997c-20.267-3.712-31.317-14.763-31.317-33.195v-40.533c0-20.267 9.216-34.987 18.432-46.080l134.485-143.744h-130.816c-12.885 0-22.101-9.216-22.101-25.771-1.877-31.36 3.669-81.067 27.605-92.16 3.712 0 3.712 5.547 3.712 7.381-3.712 7.381 0 12.885 9.216 12.885h165.845c36.821 0 58.923 0 71.851-3.669 5.547-1.835 9.216 0 7.381 5.547-3.712 12.885-1.877 27.605-1.877 40.533 0 42.368 0 58.965-33.152 92.117l-114.261 125.312 121.6-0.085c13.483 0 15.531-6.229 15.531-18.645h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zcool-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 373,
+ "id": 1976,
+ "name": "zcool-line",
+ "prevSize": 32,
+ "code": 59970
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 322
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM320 384c-16.974 0-33.253-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.253-18.745 45.255s-28.281 18.745-45.255 18.745zM277.333 426.667h85.333v320h-85.333v-320zM512 445.013c24.917-24.107 54.016-39.68 85.333-39.68 88.363 0 149.333 71.637 149.333 160v181.333h-85.333v-181.333c0-19.802-7.868-38.793-21.871-52.796s-32.994-21.871-52.796-21.871c-19.802 0-38.793 7.868-52.796 21.871s-21.871 32.994-21.871 52.796v181.333h-85.333v-320h85.333v18.347z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["linkedin-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 374,
+ "id": 1975,
+ "name": "linkedin-box-line",
+ "prevSize": 32,
+ "code": 59971
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 323
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974zM376.448 654.635l-33.707 58.453c-2.303 4.002-5.371 7.509-9.030 10.325-3.659 2.812-7.836 4.881-12.293 6.080s-9.107 1.51-13.684 0.913c-4.577-0.597-8.992-2.086-12.993-4.39s-7.508-5.372-10.323-9.028c-2.815-3.661-4.881-7.838-6.082-12.292-1.2-4.459-1.511-9.109-0.914-13.687s2.089-8.99 4.392-12.992l25.131-43.349c28.16-8.789 51.243-2.048 69.504 19.968zM563.627 369.493l103.381 178.944h91.349c4.612-0.017 9.182 0.879 13.449 2.633 4.262 1.758 8.141 4.339 11.405 7.599s5.85 7.134 7.612 11.396c1.762 4.262 2.662 8.832 2.65 13.444 0.017 4.617-0.879 9.19-2.637 13.457-1.762 4.267-4.348 8.145-7.612 11.409s-7.142 5.85-11.409 7.612c-4.267 1.758-8.841 2.654-13.457 2.637h-50.773l34.261 59.349c4.339 8.055 5.372 17.481 2.871 26.283-2.496 8.802-8.329 16.282-16.256 20.855-7.923 4.57-17.318 5.871-26.189 3.627s-16.516-7.859-21.312-15.65l-129.707-224.683c-29.44-50.773-8.448-101.675 12.373-118.912zM575.488 239.616c16.853 9.643 22.528 31.147 12.885 48l-150.528 260.651h108.928c35.243 0 55.040 41.472 39.723 70.187h-319.147c-4.613 0.013-9.182-0.892-13.445-2.65-4.263-1.762-8.136-4.348-11.395-7.612s-5.841-7.142-7.598-11.405c-1.756-4.267-2.651-8.836-2.634-13.449-0.011-4.608 0.888-9.173 2.647-13.436 1.759-4.258 4.342-8.128 7.601-11.388s7.13-5.845 11.39-7.603c4.26-1.758 8.826-2.658 13.435-2.645h89.472l114.56-198.528-35.755-62.123c-4.339-8.054-5.372-17.483-2.871-26.284 2.496-8.801 8.329-16.282 16.256-20.853 7.923-4.571 17.318-5.872 26.189-3.628s16.516 7.859 21.312 15.65l15.317 27.008 15.659-27.008c2.304-4 5.372-7.508 9.033-10.321s7.838-4.877 12.297-6.074c4.459-1.197 9.109-1.503 13.683-0.901 4.578 0.602 8.99 2.101 12.988 4.41z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["app-store-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 375,
+ "id": 1974,
+ "name": "app-store-line",
+ "prevSize": 32,
+ "code": 59972
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 324
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h768zM447.147 213.291l-276.48 0.043v597.333h373.163c-2.645-14.677-4.949-29.184-6.955-43.52-12.672 0.555-20.949 0.853-24.875 0.853-94.208 0-187.648-31.147-279.68-92.501l47.36-70.997c78.635 52.437 155.861 78.165 232.32 78.165 5.675 0 11.307-0.128 16.981-0.427-1.024-21.205-1.024-60.16 0.299-84.907h-123.947v-42.667c0-139.733 13.653-253.44 41.813-341.376zM537.6 213.291c-28.373 67.541-44.544 188.203-46.507 298.709h133.248l-5.973 47.957c-4.309 34.347-5.845 70.187-4.608 107.52 43.221-12.8 86.656-33.707 130.56-62.976l47.36 70.997c-56.32 37.547-113.152 63.787-170.368 78.507 2.432 18.475 5.547 37.376 9.344 56.619l222.677 0.043v-597.333l-315.733-0.043zM298.667 298.667c23.552 0 42.667 19.115 42.667 42.667v42.667c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-42.667c0-23.552 19.115-42.667 42.667-42.667zM725.333 298.667c23.552 0 42.667 19.115 42.667 42.667v42.667c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-42.667c0-23.552 19.115-42.667 42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["finder-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 376,
+ "id": 1973,
+ "name": "finder-line",
+ "prevSize": 32,
+ "code": 59973
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 325
+ },
+ {
+ "icon": {
+ "paths": [
+ "M309.462 789.077l30.891 18.048c52.093 30.383 111.343 46.332 171.648 46.208 67.511 0 133.504-20.019 189.636-57.523 56.132-37.508 99.878-90.816 125.717-153.186 25.835-62.37 32.593-131.004 19.422-197.214-13.171-66.213-45.679-127.033-93.414-174.769-47.74-47.736-108.557-80.245-174.771-93.416-66.21-13.17-134.839-6.411-197.212 19.424-62.371 25.835-115.68 69.584-153.186 125.716s-57.525 122.123-57.525 189.635c0 61.269 16.085 120.021 46.251 171.691l18.005 30.891-27.861 102.443 102.4-27.947zM85.504 938.667l57.685-211.968c-38.010-65.156-57.98-139.264-57.856-214.699 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-75.401 0.124-149.475-19.831-214.613-57.813l-211.883 57.813zM358.016 311.808c5.717-0.427 11.477-0.427 17.195-0.171 2.304 0.171 4.608 0.427 6.912 0.683 6.784 0.768 14.251 4.907 16.768 10.624 12.715 28.843 25.088 57.899 37.034 87.040 2.645 6.485 1.067 14.805-3.968 22.912-3.46 5.483-7.208 10.778-11.221 15.872-4.821 6.187-15.189 17.536-15.189 17.536s-4.224 5.035-2.603 11.307c0.597 2.389 2.56 5.845 4.352 8.747l2.517 4.053c10.923 18.219 25.6 36.693 43.52 54.101 5.12 4.949 10.112 10.027 15.488 14.763 19.968 17.621 42.581 32 66.987 42.667l0.213 0.085c3.627 1.579 5.461 2.432 10.752 4.693 2.645 1.109 5.376 2.091 8.149 2.816 2.867 0.73 5.884 0.593 8.674-0.397 2.786-0.986 5.218-2.778 6.985-5.15 30.891-37.419 33.707-39.851 33.963-39.851v0.085c2.146-2.001 4.698-3.52 7.479-4.454s5.73-1.263 8.649-0.964c2.56 0.171 5.163 0.64 7.552 1.707 22.656 10.368 59.733 26.539 59.733 26.539l24.832 11.136c4.181 2.005 7.979 6.741 8.107 11.307 0.171 2.859 0.427 7.467-0.555 15.915-1.365 11.051-4.693 24.32-8.021 31.275-2.278 4.745-5.303 9.097-8.96 12.885-4.305 4.518-9.020 8.636-14.080 12.288-1.749 1.318-3.529 2.598-5.333 3.84-5.308 3.366-10.761 6.498-16.341 9.387-10.987 5.837-23.117 9.186-35.541 9.813-7.893 0.427-15.787 1.024-23.723 0.597-0.341 0-24.235-3.712-24.235-3.712-60.659-15.957-116.762-45.845-163.84-87.296-9.643-8.491-18.56-17.621-27.691-26.709-37.973-37.76-66.645-78.507-84.053-116.992-8.91-18.889-13.723-39.45-14.123-60.331-0.176-25.905 8.292-51.129 24.064-71.68 3.115-4.011 6.059-8.192 11.136-13.013 5.419-5.12 8.832-7.851 12.544-9.728 4.936-2.473 10.32-3.924 15.829-4.267l0.043 0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["whatsapp-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 377,
+ "id": 1972,
+ "name": "whatsapp-line",
+ "prevSize": 32,
+ "code": 59974
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 326
+ },
+ {
+ "icon": {
+ "paths": [
+ "M681.984 734.208l0.683-648.875h85.333v853.333c-27.614-11.034-56.614-18.21-86.187-21.333l-340.48-648.448v648.448c-29.307 3.059-58.035 10.24-85.333 21.333v-853.333h85.333l340.651 648.875z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["netflix-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 378,
+ "id": 1971,
+ "name": "netflix-line",
+ "prevSize": 32,
+ "code": 59975
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 327
+ },
+ {
+ "icon": {
+ "paths": [
+ "M759.979 277.461l-187.648 294.869-294.869 187.648c52.647 49.924 119.878 81.707 191.872 90.709v-82.688h85.333v82.688c60.757-7.569 118.345-31.42 166.656-69.035l-58.453-58.453 60.331-60.331 58.453 58.453c37.615-48.311 61.466-105.899 69.035-166.656h-82.688v-85.333h82.688c-9.003-71.994-40.785-139.225-90.709-191.872zM746.539 264.021c-52.646-49.924-119.876-81.708-191.872-90.709v82.688h-85.333v-82.688c-60.759 7.568-118.342 31.421-166.656 69.035l58.453 58.453-60.331 60.331-58.453-58.453c-37.614 48.314-61.466 105.897-69.035 166.656h82.688v85.333h-82.688c9.001 71.996 40.785 139.226 90.709 191.872l187.648-294.869 294.869-187.648zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["safari-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 379,
+ "id": 1970,
+ "name": "safari-line",
+ "prevSize": 32,
+ "code": 59976
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 328
+ },
+ {
+ "icon": {
+ "paths": [
+ "M652.8 236.8c-32.427-0.006-63.561 12.72-86.703 35.438-23.138 22.717-36.437 53.612-37.030 86.034l-1.195 67.2c-0.068 3.61-0.9 7.159-2.441 10.423s-3.75 6.165-6.49 8.516c-2.739 2.347-5.948 4.092-9.408 5.116-3.46 1.020-7.1 1.301-10.675 0.819l-66.603-9.045c-87.636-11.947-171.604-52.309-252.159-119.424-25.515 141.227 24.32 239.061 144.341 314.539l74.539 46.848c3.542 2.227 6.484 5.286 8.57 8.913 2.086 3.622 3.251 7.706 3.394 11.887s-0.74 8.333-2.573 12.092c-1.833 3.759-4.559 7.014-7.94 9.476l-67.925 49.621c40.405 2.517 78.763 0.725 110.591-5.589 201.301-40.192 335.147-191.659 335.147-441.515 0-20.395-43.179-91.349-125.44-91.349zM443.733 356.693c0.747-41.129 13.606-81.123 36.975-114.977 23.364-33.854 56.201-60.062 94.391-75.343 38.195-15.281 80.043-18.956 120.316-10.565 40.269 8.391 77.167 28.476 106.078 57.739 30.336-0.213 56.149 7.467 113.877-27.52-14.293 69.973-21.333 100.352-51.797 142.123 0 326.059-200.405 484.608-403.755 525.184-139.434 27.819-342.186-17.877-400.298-78.549 29.611-2.304 149.931-15.232 219.477-66.133-58.837-38.784-293.035-176.597-139.136-547.115 72.235 84.352 145.493 141.781 219.733 172.245 49.408 20.267 61.525 19.84 84.18 22.955l-0.043-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["twitter-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 380,
+ "id": 1969,
+ "name": "twitter-line",
+ "prevSize": 32,
+ "code": 59977
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 329
+ },
+ {
+ "icon": {
+ "paths": [
+ "M251.007 795.861c-12.8-8.533-23.808-19.413-36.693-34.816-6.688-8.188-13.316-16.422-19.883-24.704-19.755-24.533-32.213-35.84-45.099-40.491-10.654-3.827-19.352-11.725-24.181-21.965-4.829-10.236-5.393-21.973-1.568-32.627s11.725-19.354 21.963-24.183c10.238-4.826 21.975-5.393 32.629-1.566 32.085 11.52 53.803 31.36 83.072 67.755-4.011-4.992 14.507 18.219 18.475 22.997 8.107 9.685 14.080 15.573 18.773 18.688 8.704 5.845 25.045 8.363 49.067 5.973 0.981-16.299 4.011-32.128 8.619-46.72-126.635-30.976-198.315-112.64-198.315-272.896 0-52.907 15.787-100.523 45.141-140.459-9.301-38.144-7.893-84.267 12.885-136.192 2.358-5.873 5.993-11.149 10.643-15.444s10.196-7.502 16.237-9.388c3.456-1.024 5.419-1.493 8.875-2.005 34.261-5.248 82.645 7.253 145.707 46.763 37.582-8.785 76.050-13.196 114.646-13.141 38.912 0 77.568 4.437 114.517 13.141 63.019-39.808 111.488-52.309 146.005-46.763 3.627 0.555 6.699 1.28 9.301 2.133 5.922 1.953 11.345 5.181 15.885 9.457 4.544 4.275 8.090 9.495 10.398 15.29 20.779 51.883 22.187 98.005 12.885 136.107 29.483 39.936 45.141 87.253 45.141 140.501 0 160.299-71.424 241.707-198.059 272.726 5.333 17.707 8.107 37.504 8.107 58.88 0.004 38.626-0.166 77.257-0.512 115.883 9.583 2.091 18.15 7.415 24.265 15.087 6.114 7.667 9.399 17.207 9.306 27.012-0.094 9.809-3.567 19.281-9.826 26.829-6.263 7.548-14.933 12.71-24.555 14.613-48.597 9.728-84.608-22.699-84.608-65.067l0.085-19.029 0.213-30.080c0.213-30.208 0.299-57.088 0.299-85.248 0-29.739-7.808-49.152-18.133-58.027-28.203-24.32-13.909-70.613 23.040-74.752 126.592-14.208 185.045-63.232 185.045-198.827 0-40.747-13.312-74.411-38.955-102.571-5.402-5.92-9.028-13.242-10.462-21.128s-0.619-16.015 2.355-23.459c7.083-17.664 10.112-40.832 4.096-68.864l-0.427 0.128c-20.949 5.931-47.36 18.773-79.275 40.491-5.146 3.493-10.995 5.818-17.135 6.813s-12.42 0.636-18.406-1.053c-36.015-9.972-73.225-14.982-110.592-14.891-37.973 0-75.605 5.077-110.593 14.933-5.964 1.675-12.221 2.031-18.337 1.044s-11.942-3.295-17.076-6.761c-32.085-21.632-58.624-34.432-79.701-40.405-6.144 27.861-3.115 50.944 3.925 68.565 2.979 7.439 3.802 15.567 2.376 23.452s-5.044 15.21-10.44 21.135c-25.472 27.904-38.955 62.208-38.955 102.571 0 135.339 58.496 184.662 184.406 198.827 36.907 4.139 51.243 50.219 23.211 74.581-8.192 7.168-18.304 31.232-18.304 58.197v134.4c0 42.069-35.628 73.6-83.628 65.195-9.738-1.711-18.58-6.75-25.015-14.255s-10.063-17.015-10.265-26.901c-0.201-9.882 3.036-19.533 9.16-27.294s14.753-13.158 24.413-15.262v-42.24c-38.827 2.603-70.912-3.755-96.171-20.693z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["github-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 381,
+ "id": 1968,
+ "name": "github-line",
+ "prevSize": 32,
+ "code": 59978
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 330
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128.768 512.341c-1.365-53.76-0.512-104.448-0.512-146.859 0-185.088 121.301-239.36 121.301-239.36 61.141-28.075 166.059-39.893 275.2-40.789h2.645c109.099 0.853 214.101 12.715 275.243 40.789 0 0 121.301 54.272 121.301 239.36 0 0 1.536 136.576-16.896 231.424-11.733 60.16-104.832 126.080-211.755 138.837-55.723 6.656-110.635 12.8-169.173 10.069-95.701-4.395-171.264-22.827-171.264-22.827 0 9.301 0.597 18.176 1.707 26.453 3.584 27.008 12.757 46.72 25.813 61.227 32.683 36.267 89.856 39.68 144.854 41.557 77.653 2.688 146.773-19.157 146.773-19.157l3.243 70.229c0 0-54.357 29.184-151.125 34.56-53.333 2.901-119.595-1.365-196.779-21.76-65.365-17.323-109.568-55.040-139.52-105.429-46.635-78.635-58.368-187.989-61.056-298.325zM269.568 722.987v-108.715l105.557 25.813c18.414 4.083 36.955 7.569 55.595 10.453 32.128 4.949 65.621 8.533 99.328 10.027 43.477 2.005 81.109-0.725 155.136-9.557 70.955-8.491 134.315-51.029 138.069-70.4 3.499-18.005 6.443-39.339 8.789-63.232 3.017-31.855 4.966-63.799 5.845-95.787 0.64-21.76 0.853-40.32 0.725-53.589v-2.517c0-61.013-15.744-104.021-41.088-134.741-7.228-8.87-15.607-16.733-24.917-23.381-3.84-2.731-5.76-3.797-5.547-3.712-43.221-19.84-131.968-32.085-239.659-32.981h-1.963c-108.374 0.853-197.12 13.141-241.067 33.365 0.981-0.427-0.896 0.597-4.779 3.328-9.311 6.648-17.691 14.512-24.917 23.381-25.344 30.72-41.088 73.771-41.088 134.741 0 9.899 0 16.939-0.128 37.333-0.383 35.814-0.184 71.629 0.597 107.435 2.304 93.739 11.264 163.627 29.867 215.083 9.045 25.045 20.139 45.653 33.28 61.867-5.407-20.966-7.99-42.564-7.68-64.213h0.043zM344.917 271.787c12.94 0 25.35 5.14 34.499 14.29s14.29 21.56 14.29 34.499c0 12.94-5.14 25.35-14.29 34.499s-21.56 14.29-34.499 14.29c-12.94 0-25.35-5.14-34.499-14.29s-14.29-21.559-14.29-34.499c0-12.94 5.14-25.35 14.29-34.499s21.559-14.29 34.499-14.29z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mastodon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 382,
+ "id": 1967,
+ "name": "mastodon-line",
+ "prevSize": 32,
+ "code": 59979
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 331
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 780.544c-47.313 27.797-101.13 42.603-156.004 42.918-54.874 0.311-108.857-13.875-156.484-41.135-47.628-27.255-87.208-66.611-114.736-114.082s-42.026-101.372-42.026-156.245c0-54.874 14.498-108.776 42.026-156.247s67.109-86.826 114.736-114.083c47.627-27.256 101.61-41.446 156.484-41.132s108.691 15.119 156.004 42.918c47.313-27.799 101.129-42.604 156.002-42.918 54.878-0.314 108.86 13.876 156.484 41.132 47.629 27.256 87.211 66.612 114.739 114.083s42.027 101.373 42.027 156.247c0 54.874-14.498 108.774-42.027 156.245s-67.11 86.827-114.739 114.082c-47.625 27.26-101.606 41.446-156.484 41.135-54.874-0.316-108.689-15.121-156.002-42.918zM584.619 721.493c34.334 13.952 71.569 19.255 108.433 15.437s72.222-16.636 102.967-37.329c30.746-20.689 55.932-48.623 73.348-81.335s26.526-69.205 26.526-106.266c0-37.060-9.109-73.553-26.526-106.266s-42.603-60.645-73.348-81.337c-30.746-20.692-66.103-33.511-102.967-37.328s-74.099 1.484-108.433 15.437c52.203 57.27 81.092 132.002 80.981 209.493 0 80.64-30.677 154.197-80.981 209.493zM439.381 302.507c-34.333-13.953-71.569-19.255-108.432-15.437s-72.223 16.636-102.968 37.328c-30.746 20.692-55.934 48.624-73.35 81.337s-26.524 69.205-26.524 106.266c0 37.060 9.108 73.553 26.524 106.266s42.604 60.646 73.35 81.335c30.745 20.693 66.105 33.51 102.968 37.329s74.099-1.485 108.432-15.437c-52.204-57.271-81.092-132.002-80.981-209.493 0-80.64 30.677-154.197 80.981-209.493zM512 350.080c-21.641 21.045-38.831 46.221-50.56 74.035-11.725 27.814-17.745 57.698-17.707 87.885 0 63.488 26.155 120.832 68.267 161.92 21.641-21.043 38.831-46.221 50.56-74.035 11.725-27.814 17.745-57.698 17.707-87.885 0.038-30.187-5.982-60.070-17.707-87.885-11.729-27.814-28.919-52.99-50.56-74.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mastercard-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 383,
+ "id": 1966,
+ "name": "mastercard-line",
+ "prevSize": 32,
+ "code": 59980
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 332
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM738.133 680.107l40.747 40.704v2.133h-209.963v-2.133l42.837-40.704c4.267-4.267 6.4-8.533 6.4-14.976v-252.8c0-10.752 0-25.728 2.176-38.571l-141.397 353.493h-2.133l-145.707-325.675c-2.133-8.533-4.267-8.533-6.4-12.8v214.187c-2.176 15.019 0 27.861 6.4 40.747l57.856 77.099v2.133h-154.283v-2.133l57.856-79.275c6.4-12.8 8.533-27.819 6.4-40.704v-235.605c0-10.709-2.133-23.595-10.667-32.128l-38.613-53.632v-2.133h149.973l124.245 276.395 109.312-276.395h145.707v2.133l-40.704 47.147c-4.267 4.267-6.4 10.709-6.4 14.976v325.675c0 4.267 2.133 10.709 6.4 12.843h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medium-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 384,
+ "id": 1965,
+ "name": "medium-line",
+ "prevSize": 32,
+ "code": 59981
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 333
+ },
+ {
+ "icon": {
+ "paths": [
+ "M852.864 493.739c-3.499-67.161-26.854-131.772-67.115-185.643-12.267 13.211-25.378 25.61-39.253 37.12-42.628 35.407-90.261 64.307-141.355 85.76 7.125 14.933 13.653 29.397 19.413 43.051v0.128c1.626 3.814 3.191 7.654 4.693 11.52 64.597-7.253 132.693-4.608 198.699 4.309 8.789 1.195 17.067 2.475 24.917 3.755zM452.437 175.872c41.579 58.589 79.923 119.409 114.859 182.187 52.181-20.565 95.317-46.507 130.048-75.392 12.058-9.936 23.403-20.7 33.963-32.213-61.397-51.639-139.081-79.901-219.307-79.787-19.968-0.014-39.898 1.714-59.563 5.163v0.043zM181.461 426.539c29.066-0.733 58.097-2.484 87.040-5.248 69.958-6.257 139.319-17.984 207.445-35.072-35.605-61.858-74.046-122.039-115.2-180.352-43.959 21.777-82.72 52.753-113.654 90.828s-53.317 82.357-65.632 129.844zM246.741 726.827c16.555-24.192 38.315-51.413 67.2-81.024 62.037-63.573 135.253-113.067 219.989-140.373l2.645-0.768c-7.040-15.531-13.653-29.397-20.309-42.453-78.336 22.827-160.853 37.077-243.072 44.459-40.107 3.627-76.075 5.205-102.528 5.461-0.076 78.191 26.807 154.018 76.117 214.699h-0.043zM640.213 828.373c-16.452-82.974-39.744-164.45-69.632-243.584-85.419 31.019-153.472 76.373-206.080 130.475-21.231 21.436-40.072 45.111-56.192 70.613 58.829 43.895 130.291 67.563 203.691 67.456 43.942 0.064 87.484-8.384 128.213-24.875v-0.085zM720.128 782.507c66.615-51.209 111.991-125.197 127.445-207.787-14.507-3.627-32.896-7.253-53.12-10.069-44.966-6.477-90.59-6.95-135.68-1.408 25.391 71.629 45.888 144.9 61.355 219.307v-0.043zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dribbble-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 385,
+ "id": 1964,
+ "name": "dribbble-line",
+ "prevSize": 32,
+ "code": 59982
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 334
+ },
+ {
+ "icon": {
+ "paths": [
+ "M322.73 822.613c35.75 1.536 71.548-1.579 106.496-9.259 41.754-9.084 84.753-10.974 127.147-5.589 23.339 2.859 42.027 7.040 54.955 10.965 45.995 11.733 111.36 9.515 128.213-17.493 12.416-19.968 10.795-33.579-1.109-51.157-2.679-3.959-5.709-7.671-9.045-11.093-10.735-8.585-21.303-17.374-31.701-26.368-26.031-22.421-50.991-46.054-74.795-70.827-24.452-25.169-46.946-52.173-67.285-80.768l-1.536-2.261c-31.659-48.597-66.475-45.525-85.419-13.525-11.942 20.058-25.57 39.053-40.747 56.789-17.494 20.565-35.414 37.973-55.68 55.339-5.248 4.48-21.461 17.92-17.579 14.677-0.171 0.128-0.725 0.64 2.176-3.029-4.181 5.12-40.533 37.419-51.2 49.579-21.973 24.875-30.848 46.080-27.52 63.147 3.072 16.043 9.344 25.045 19.2 31.787 6.23 4.16 13.172 7.138 20.48 8.789l4.949 0.299zM625.579 512.171c58.709 84.053 159.232 161.835 159.232 161.835s88.021 74.581 27.179 172.288c-60.843 97.707-224.128 54.528-224.128 54.528s-64.853-20.907-140.203-4.181c-75.307 16.853-140.203 10.453-140.203 10.453s-94.123-10.453-113.152-109.184c-19.029-98.731 87.893-172.373 96.341-182.784 8.32-10.539 64.512-45.781 104.619-113.408 40.107-67.669 152.875-108.373 230.315 10.453zM861.909 451.584c0 19.541 8.107 102.101-66.261 103.765-74.325 1.621-77.483-50.261-77.483-87.467 0-38.955 8.021-94.080 67.84-94.080 59.733 0 75.904 58.411 75.904 77.824v-0.043zM630.229 333.099c-50.347-6.485-61.739-52.139-56.875-97.835 4.096-37.333 48.768-94.677 84.523-86.443 35.712 8.107 68.267 55.467 61.696 96.171-6.443 40.832-38.869 94.635-89.344 88.107zM416.213 317.44c-36.693 0-66.56-42.368-66.56-94.72s29.824-94.72 66.56-94.72c36.822 0 66.56 42.368 66.56 94.72s-29.739 94.72-66.56 94.72zM254.378 512.256c-72.32 15.573-99.243-68.139-91.307-107.307 0 0 8.533-84.779 67.243-90.027 46.635-4.053 80.981 46.976 84.523 76.16 2.176 18.944 12.075 105.6-60.459 121.173z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["baidu-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 386,
+ "id": 1963,
+ "name": "baidu-line",
+ "prevSize": 32,
+ "code": 59983
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 335
+ },
+ {
+ "icon": {
+ "paths": [
+ "M401.92 187.733c-55.486 18.641-105.246 51.238-144.5 94.659s-66.681 96.207-79.648 153.286c-12.967 57.079-11.037 116.535 5.603 172.655s47.433 107.012 89.419 147.797c41.986 40.785 93.755 70.089 150.333 85.090 56.577 15.006 116.063 15.211 172.742 0.589 56.678-14.618 108.646-43.567 150.912-84.062 42.261-40.499 73.399-91.183 90.423-147.187-145.067 62.293-309.248 84.48-492.587 66.773-30.336-176.043-11.264-339.2 57.301-489.6zM506.368 170.069c-28.369 50.738-50.462 104.738-65.792 160.811 66.014 1.316 128.947 28.172 175.573 74.923 44.1 43.977 70.583 102.575 74.453 164.736 56.747-14.549 110.464-34.987 161.28-61.141-0.226-45.022-9.365-89.549-26.884-131.020-17.523-41.471-43.081-79.063-75.2-110.607s-70.165-56.419-111.949-73.188c-41.779-16.769-86.464-25.1-131.482-24.514zM208.853 813.099c-166.613-166.613-166.613-436.779 0-603.392s436.779-166.613 603.392 0c166.613 166.613 166.613 436.779 0 603.392s-436.779 166.613-603.392 0zM423.040 416.597c-8.214 59.806-9.303 120.376-3.243 180.438 62.165 2.739 124.45-0.405 186.027-9.387 0.137-22.558-4.215-44.919-12.8-65.779s-21.231-39.808-37.205-55.735c-17.276-17.31-38.076-30.694-60.992-39.241-22.912-8.549-47.394-12.061-71.787-10.296z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coreos-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 387,
+ "id": 1962,
+ "name": "coreos-line",
+ "prevSize": 32,
+ "code": 59984
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 336
+ },
+ {
+ "icon": {
+ "paths": [
+ "M448 362.667c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497h-149.291c-14.336 0-21.376 11.136-21.376 22.699 0 56.32 10.837 101.205 28.331 136.235 9.216 18.475 17.024 28.587 22.315 33.707 31.36 32.427 80.469 49.493 131.925 46.464 4.053-0.256 8.491-2.731 14.165-8.875 3.537-3.785 6.601-7.983 9.131-12.501 8.738-19.989 24.798-35.87 44.881-44.386 20.083-8.512 42.667-9.011 63.108-1.395 29.568 11.008 54.485 18.517 77.355 23.893 8.363 1.963 16 3.541 25.003 5.205-3.285-0.597 17.152 3.157 22.101 4.181 14.507 2.987 25.515 6.229 37.675 12.373 29.734 14.899 55.642 36.429 75.733 62.933 1.92-25.216 3.285-54.101 3.712-86.443 1.387-95.458-6.601-190.819-23.851-284.715-3.157-16.981-10.069-23.979-28.288-30.635-8.162-2.861-16.538-5.072-25.045-6.613-6.272-1.195-27.733-4.693-29.568-5.035-33.284-5.786-66.564-11.603-99.84-17.451l-22.528-3.925c-14.566-2.557-28.22-8.857-39.62-18.282s-20.156-21.65-25.404-35.478c-0.478-1.254-0.96-2.505-1.451-3.755-9.941-1.139-19.947-1.652-29.952-1.536-11.563 0-16.555 5.291-16.555 19.755v150.912zM713.813 859.264c15.019-15.189 23.893-35.371 25.045-56.619 2.304-44.203-35.157-105.813-98.859-112.384-26.325-2.688-67.669-13.056-121.259-33.024 0 0-29.867 68.395-96.427 72.363-71.040 4.267-146.347-18.475-198.4-72.363 0 0-74.581-69.973-74.581-229.205 0-34.731 12.373-60.672 27.648-81.237 40.96-55.125 106.88-118.613 176.341-183.637 30.677-28.757 60.587-56.491 111.232-56.491 87.040 0 98.987 28.331 111.147 60.331l121.771 21.291c38.699 7.083 134.4 13.483 152.661 110.677 42.923 231.253 19.541 421.12 14.805 455.467-30.293 218.496-203.605 207.829-210.389 207.829-87.851 0-135.595-58.581-135.808-114.219-0.064-16.947 3.925-33.664 11.627-48.759 7.706-15.095 18.901-28.13 32.661-38.025 19.017-13.517 41.826-20.655 65.152-20.395 13.013 0 29.312 13.568 29.312 32.128 0 15.787-10.88 24.533-16.299 27.52-9.515 5.291-47.872 7.424-47.872 36.907 0 13.525 14.933 47.531 59.136 47.531 25.088 0 46.677-10.923 61.312-25.685h0.043zM637.184 453.504c7.083-17.707 26.752-26.965 50.005-24.832 23.211 2.859 40.789 17.067 42.923 36.181 0 3.541 0.725 7.808-0.725 9.941-1.365 2.133-2.816 2.859-4.267 2.859-9.088 1.408-23.168 0-43.563-2.133-20.48-2.133-34.475-4.267-42.923-8.533-1.408-0.725-2.816-1.408-3.541-3.541s0.683-6.4 2.133-9.941h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["evernote-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 388,
+ "id": 1961,
+ "name": "evernote-line",
+ "prevSize": 32,
+ "code": 59985
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 337
+ },
+ {
+ "icon": {
+ "paths": [
+ "M948.139 672.768l-9.6-48h-107.264l-17.067 47.659-85.973 0.171c40.93-98.428 81.946-196.817 123.051-295.168 6.997-16.683 19.413-25.173 37.717-25.088 13.995 0.128 36.821 0.128 68.523 0.043l66.475 320.256-75.861 0.128zM855.424 559.019h69.12l-25.813-120.32-43.307 120.32zM301.227 352.299l86.443 0.085-133.632 320.427-87.509-0.085c-22.005-84.638-43.737-169.344-65.195-254.123-4.267-16.896-12.715-28.715-28.971-34.304-14.464-4.992-38.571-12.672-72.363-23.125v-8.747h138.112c23.893 0 37.845 11.563 42.325 35.285 4.523 23.765 15.872 84.267 34.133 181.504l86.656-216.917zM506.453 352.384l-68.352 320.341-82.261-0.085 68.267-320.341 82.347 0.085zM673.28 346.453c24.619 0 55.637 7.68 73.472 14.72l-14.421 66.432c-16.128-6.485-42.667-15.232-64.981-14.933-32.427 0.555-52.48 14.165-52.48 27.221 0 21.248 34.816 31.957 70.656 55.168 40.917 26.453 46.293 50.219 45.781 76.032-0.555 53.589-45.781 106.453-141.184 106.453-43.52-0.64-59.221-4.309-94.72-16.896l15.019-69.333c36.139 15.147 51.456 19.968 82.347 19.968 28.288 0 52.565-11.435 52.779-31.36 0.171-14.165-8.533-21.205-40.277-38.699-31.744-17.536-76.288-41.813-75.691-90.539 0.725-62.379 59.819-104.235 143.744-104.235h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["visa-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 389,
+ "id": 1960,
+ "name": "visa-line",
+ "prevSize": 32,
+ "code": 59986
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 338
+ },
+ {
+ "icon": {
+ "paths": [
+ "M666.667 623.787c-47.232 69.077-116.395 101.717-197.333 101.717-98.304 0-182.443-75.648-170.368-175.957 13.44-111.275 99.84-159.147 243.542-176.768 25.643-3.115 36.267-4.011 91.605-8.107l5.888-0.427v-9.173c0-76.629-45.568-128.939-106.667-128.939-61.312 0-104.107 31.872-130.347 107.776l-80.64-27.819c37.845-109.653 112.555-165.291 210.987-165.291 111.061 0 192 92.928 192 214.272 0 113.024 6.955 202.923 20.608 237.099 15.189 38.059 20.736 47.659 37.717 68.821l-66.56 53.376c-22.315-27.819-32.128-44.757-50.389-90.539v-0.043h-0.043zM906.965 876.587c-11.563 8.533-31.659 3.456-22.571-18.773 11.307-27.648 23.339-60.075 11.179-74.752-8.96-10.88-19.925-16.299-43.819-16.299-19.627 0-29.44 2.56-42.453 3.413-8.704 0.555-12.501-12.672-3.883-18.773 11.285-8.085 23.825-14.255 37.12-18.261 49.067-14.677 106.88-6.613 113.92 3.541 15.573 22.613-8.491 109.611-49.493 139.947v-0.043zM856.533 830.336c-11.081 10.718-22.916 20.629-35.413 29.653-90.539 68.949-207.787 104.96-309.675 104.96-163.968 0-310.614-76.501-421.888-204.587-9.515-9.813-1.621-24.149 9.515-16.384 119.893 88.619 268.288 142.208 421.931 142.208 96.64 0 200.875-22.912 300.16-72.235 6.912-3.243 14.677-7.68 21.461-10.837 15.659-8.96 29.44 13.056 13.909 27.221zM640.427 449.749c-53.675 4.011-63.829 4.821-87.552 7.723-108.885 13.355-162.006 42.795-169.174 102.315-5.376 44.501 34.56 80.384 85.632 80.384 86.997 0 150.059-52.395 171.605-190.421h-0.512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["amazon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 390,
+ "id": 1959,
+ "name": "amazon-line",
+ "prevSize": 32,
+ "code": 59987
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 339
+ },
+ {
+ "icon": {
+ "paths": [
+ "M485.888 85.376l77.269 0.213 36.011 0.597c305.536 6.997 338.688 64.512 339.499 412.459l-0.256 64.512-0.597 36.011c-6.997 305.536-64.512 338.688-412.459 339.499l-64.512-0.256-37.888-0.64c-292.395-6.955-333.952-60.928-337.365-374.613l-0.256-64.341 0.256-37.973 0.597-36.907c7.040-300.928 63.445-336.939 399.701-338.56zM602.453 171.093l-138.155-0.427-56.405 0.427c-234.197 3.499-236.544 34.987-237.184 315.861l0.043 92.8 0.427 44.373c3.797 212.565 33.835 227.968 273.067 229.077l147.371-0.085 33.109-0.384c217.941-3.883 228.139-35.712 228.608-293.419l-0.128-117.035-0.512-45.013c-4.011-204.629-33.493-224-250.24-226.261v0.085zM352 298.667c99.012 0 193.971 39.333 263.987 109.347 70.012 70.015 109.346 164.974 109.346 263.986v24.875c0 3.738-0.738 7.437-2.167 10.889-1.429 3.456-3.524 6.592-6.17 9.233-2.641 2.645-5.777 4.74-9.233 6.17-3.452 1.429-7.151 2.167-10.889 2.167h-156.416c-3.738 0-7.437-0.738-10.893-2.167-3.452-1.429-6.588-3.524-9.229-6.17-2.645-2.641-4.74-5.777-6.17-9.233-1.429-3.452-2.167-7.151-2.167-10.889v-24.875c0-42.436-16.858-83.132-46.861-113.139-30.007-30.003-70.705-46.861-113.139-46.861h-24.875c-7.548 0-14.786-2.999-20.123-8.337-5.337-5.333-8.335-12.574-8.335-20.122v-156.416c0-15.701 12.757-28.459 28.459-28.459h24.875z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spectrum-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 391,
+ "id": 1958,
+ "name": "spectrum-line",
+ "prevSize": 32,
+ "code": 59988
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 340
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 456.107c0 76.245-29.312 145.067-90.581 212.224-89.6 102.997-289.621 228.821-335.531 247.979-45.824 19.243-38.869-12.245-37.291-22.912l5.845-36.267c1.451-11.179 2.901-27.733-1.365-38.4-4.779-11.819-23.723-18.091-37.589-20.992-205.013-27.221-356.821-170.539-356.821-341.632 0-190.933 191.445-346.368 426.667-346.368 235.179 0 426.667 155.435 426.667 346.368zM785.067 610.773c47.488-52.053 68.267-100.736 68.267-154.667 0-139.434-149.76-261.034-341.333-261.034s-341.333 121.6-341.333 261.034c0 123.947 116.395 234.965 282.709 257.024l6.272 1.109c45.995 9.643 80.384 26.197 99.371 72.875l1.536 4.096c77.056-50.176 178.091-127.147 224.469-180.437h0.043zM773.888 440.107c5.7 0.354 11.055 2.867 14.967 7.027 3.913 4.164 6.093 9.66 6.093 15.373s-2.18 11.213-6.093 15.373c-3.913 4.16-9.267 6.677-14.967 7.027h-62.421v40.021h62.379c3.021-0.132 6.037 0.35 8.866 1.417 2.833 1.062 5.419 2.692 7.599 4.783 2.185 2.091 3.925 4.599 5.111 7.381 1.19 2.782 1.801 5.773 1.801 8.798s-0.61 6.016-1.801 8.798c-1.186 2.782-2.927 5.291-5.111 7.381-2.18 2.095-4.766 3.721-7.599 4.787-2.829 1.062-5.845 1.545-8.866 1.412h-84.779c-5.909-0.043-11.558-2.419-15.731-6.605-4.169-4.186-6.519-9.843-6.541-15.753v-169.642c0-12.245 10.027-22.4 22.4-22.4h84.821c5.939 0.017 11.631 2.393 15.821 6.606s6.532 9.917 6.515 15.858c-0.017 5.941-2.394 11.631-6.605 15.82-4.215 4.189-9.92 6.532-15.859 6.516h-62.379v40.021h62.379zM636.8 547.328c-0.013 2.935-0.602 5.841-1.737 8.55-1.131 2.709-2.786 5.167-4.873 7.232-2.082 2.069-4.553 3.708-7.27 4.821s-5.628 1.681-8.563 1.668c-3.511 0.077-6.993-0.687-10.146-2.231-3.157-1.545-5.892-3.823-7.987-6.643l-86.869-117.931v104.533c-0.427 5.632-2.965 10.893-7.108 14.733-4.139 3.84-9.579 5.973-15.228 5.973s-11.089-2.133-15.228-5.973c-4.143-3.84-6.682-9.101-7.108-14.733v-169.642c-0.013-5.9 2.317-11.563 6.477-15.746s9.809-6.546 15.71-6.569c6.912 0 13.312 3.669 17.579 9.003l87.552 118.4v-105.088c0-12.245 10.027-22.4 22.4-22.4 12.245 0 22.4 10.155 22.4 22.4v169.642zM432.683 547.328c-0.034 5.935-2.411 11.614-6.616 15.804-4.204 4.186-9.893 6.541-15.827 6.554-5.915-0.034-11.578-2.402-15.757-6.588s-6.535-9.856-6.558-15.77v-169.642c0-12.245 10.069-22.4 22.4-22.4s22.357 10.155 22.357 22.4v169.642zM345.003 569.685h-84.864c-5.923-0.034-11.595-2.398-15.787-6.583-4.192-4.181-6.568-9.852-6.613-15.774v-169.642c0.489-5.603 3.061-10.82 7.208-14.62s9.567-5.908 15.192-5.908c5.625 0 11.045 2.108 15.192 5.908s6.719 9.017 7.208 14.62v147.2h62.464c5.941 0 11.639 2.359 15.839 6.562 4.201 4.198 6.561 9.899 6.561 15.838s-2.36 11.639-6.561 15.838c-4.201 4.203-9.898 6.562-15.839 6.562z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["line-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 392,
+ "id": 1957,
+ "name": "line-line",
+ "prevSize": 32,
+ "code": 59989
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 341
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c236.8 0 426.667 192 426.667 426.667s-192 426.667-426.667 426.667c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667zM512 170.667c-187.52 0-341.333 153.813-341.333 341.333s153.813 341.333 341.333 341.333c187.52 0 341.333-153.813 341.333-341.333 0-188.331-152.448-341.333-341.333-341.333zM672 710.4c-100.267-61.867-226.133-74.667-375.467-40.533-14.933 4.267-27.733-6.4-32-19.2-4.267-14.933 6.4-27.733 19.2-32 162.133-36.267 302.933-21.333 413.867 46.933 14.933 6.4 17.067 23.467 10.667 36.267-8.533 12.8-23.467 17.067-36.267 8.533zM714.667 595.2c-115.2-70.4-290.133-91.733-424.533-49.067-17.067 4.267-36.267-4.267-40.533-21.333s4.267-36.267 21.333-40.533c155.733-46.933 347.733-23.467 480 57.6 12.8 6.4 19.2 27.733 8.533 42.667s-29.867 21.333-44.8 10.667zM268.8 416c-21.333 6.4-42.667-6.4-49.067-25.6-6.4-21.333 6.4-42.667 25.6-49.067 151.467-44.8 401.067-36.267 558.933 57.6 19.2 10.667 25.6 36.267 14.933 55.467-10.667 14.933-36.267 21.333-55.467 10.667-136.533-81.067-364.8-89.6-494.933-49.067z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spotify-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 393,
+ "id": 1956,
+ "name": "spotify-line",
+ "prevSize": 32,
+ "code": 59990
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 342
+ },
+ {
+ "icon": {
+ "paths": [
+ "M861.611 605.739c0 143.445-193.28 274.091-423.509 274.091-211.2-0.043-395.435-103.765-395.435-259.712 0-83.072 50.347-174.379 138.24-259.755 120.832-117.163 265.771-172.075 335.275-104.448 21.248 20.565 30.848 47.872 30.677 79.275 84.267-24.576 155.733-17.237 191.275 32.085 19.157 26.581 22.699 58.88 13.909 94.165 64.469 26.027 109.568 75.52 109.568 144.299zM672.171 517.419c-16.469-17.493-17.067-39.253-8.448-60.16 8.875-21.675 9.088-34.645 5.12-40.107-11.264-15.701-65.408-15.488-136.277 13.269-6.95 2.923-14.251 4.928-21.717 5.973-14.677 1.963-28.629 0.043-41.941-11.307-17.877-15.317-20.224-36.48-13.739-56.149 9.173-28.587 7.68-45.909 1.579-51.84-7.936-7.68-33.152-8.149-70.784 6.101-45.611 17.28-98.048 52.224-145.664 98.389-72.832 70.784-112.299 142.379-112.299 198.528 0 95.659 139.776 174.379 310.101 174.379 188.587 0 338.176-101.12 338.176-188.757 0-31.488-27.179-57.131-71.381-70.485-16.811-4.821-22.869-7.296-32.725-17.792v-0.043zM973.141 448.427c-2.842 10.953-9.916 20.331-19.669 26.069-9.754 5.734-21.389 7.364-32.341 4.523s-20.331-9.916-26.069-19.669c-5.734-9.754-7.364-21.389-4.523-32.341 7.334-28.13 7.364-57.667 0.085-85.811s-21.628-53.963-41.685-75.006c-20.058-21.044-45.154-36.616-72.917-45.239s-57.267-10.012-85.717-4.035c-5.513 1.216-11.213 1.326-16.772 0.322-5.555-1.004-10.859-3.1-15.599-6.168s-8.823-7.046-12.015-11.704c-3.191-4.658-5.427-9.904-6.575-15.432-1.152-5.528-1.19-11.23-0.119-16.774s3.23-10.82 6.357-15.523c3.123-4.703 7.151-8.739 11.849-11.873 4.693-3.135 9.967-5.306 15.509-6.388 42.654-8.93 86.882-6.823 128.495 6.121s79.232 36.297 109.295 67.847c30.063 31.55 51.575 70.252 62.498 112.441s10.893 86.467-0.085 128.641z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["weibo-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 394,
+ "id": 1955,
+ "name": "weibo-line",
+ "prevSize": 32,
+ "code": 59991
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 343
+ },
+ {
+ "icon": {
+ "paths": [
+ "M425.513 768h172.972c5.632-51.285 31.787-93.611 74.24-139.819 4.821-5.205 35.499-36.992 39.125-41.515 30.131-37.649 49.020-83.042 54.49-130.957 5.466-47.91-2.709-96.392-23.59-139.861-20.877-43.468-53.611-80.156-94.426-105.837-40.819-25.681-88.055-39.312-136.282-39.322-48.222-0.010-95.467 13.6-136.294 39.264s-73.575 62.337-94.473 105.797c-20.898 43.46-29.095 91.939-23.649 139.853s24.316 93.316 54.435 130.978c3.669 4.565 34.432 36.395 39.168 41.557 42.496 46.251 68.651 88.576 74.283 139.861zM597.333 853.333h-170.668v42.667h170.668v-42.667zM245.502 640c-40.184-50.206-65.367-110.746-72.65-174.639-7.282-63.892 3.633-128.543 31.488-186.504s71.517-106.874 125.957-141.105c54.439-34.231 117.439-52.387 181.746-52.377s127.305 18.186 181.734 52.435c54.426 34.249 98.074 83.176 125.909 141.146s38.733 122.624 31.428 186.516c-7.305 63.889-32.508 124.42-72.704 174.613-26.453 32.939-95.744 85.248-95.744 149.248v106.667c0 22.63-8.994 44.335-24.994 60.339-16.004 16.004-37.709 24.994-60.339 24.994h-170.668c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-106.667c0-64-69.333-116.309-95.829-149.333zM554.667 426.837h106.667l-192 256v-170.667h-106.668l192.002-256.172v170.839z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lightbulb-flash-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 395,
+ "id": 1954,
+ "name": "lightbulb-flash-line",
+ "prevSize": 32,
+ "code": 59992
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 344
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM469.333 545.792c-22.46-9.801-40.858-27.038-52.105-48.811-11.246-21.773-14.651-46.754-9.645-70.744s18.121-45.522 37.136-60.979c19.017-15.457 42.773-23.895 67.281-23.895s48.265 8.438 67.281 23.895c19.017 15.457 32.128 36.99 37.137 60.979 5.005 23.99 1.6 48.971-9.647 70.744s-29.645 39.010-52.105 48.811v136.875h-85.333v-136.875z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-lock-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 396,
+ "id": 1953,
+ "name": "door-lock-box-line",
+ "prevSize": 32,
+ "code": 59993
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 345
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 441.216v93.611c-51.029 29.525-85.333 84.693-85.333 147.84 0 94.293 76.373 170.667 170.667 170.667 63.147 0 118.315-34.304 147.84-85.333h93.568c-35.115 99.413-129.963 170.667-241.408 170.667-141.397 0-256-114.603-256-256 0-111.488 71.253-206.293 170.667-241.451zM512 725.333c-70.699 0-128-57.301-128-128v-170.667c0-44.544 22.784-83.797 57.301-106.709-34.56-22.827-57.301-62.080-57.301-106.624 0-70.699 57.301-128 128-128s128 57.301 128 128c0 44.544-22.784 83.797-57.301 106.709 34.56 22.827 57.301 62.080 57.301 106.624v213.291l61.184 0.043c27.648 0 53.461 13.397 69.376 35.669l3.797 5.76 115.541 192.64-73.131 43.861-115.627-192.597h-189.141zM512 384c-23.552 0-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667h42.624l0.043-213.333c0-23.552-19.115-42.667-42.667-42.667zM512 170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wheelchair-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 397,
+ "id": 1952,
+ "name": "wheelchair-line",
+ "prevSize": 32,
+ "code": 59994
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 346
+ },
+ {
+ "icon": {
+ "paths": [
+ "M185.258 60.076l769.323 769.364c12.006 12.002 18.752 28.279 18.756 45.257 0.004 16.973-6.733 33.254-18.735 45.261s-28.279 18.756-45.257 18.756c-16.973 0.004-33.254-6.733-45.261-18.735l-196.096-196.139-150.869 150.827-175.787-175.787v111.787c0 11.315-4.495 22.17-12.497 30.17-8.002 8.004-18.854 12.497-30.17 12.497s-22.168-4.493-30.17-12.497c-8.002-8-12.497-18.854-12.497-30.17v-170.667c-0.012-10.876-4.176-21.333-11.641-29.239-7.465-7.91-17.669-12.668-28.525-13.308-10.856-0.636-21.546 2.897-29.885 9.877s-13.699 16.879-14.983 27.678l-0.299 4.992v42.667c0 11.315-4.495 22.17-12.497 30.17-8.002 8.004-18.854 12.497-30.17 12.497s-22.168-4.493-30.17-12.497c-8.002-8-12.497-18.854-12.497-30.17v-374.868c-1.772-89.050 31.438-175.245 92.501-240.085l7.424-7.637zM195.541 191.062l-2.176 4.693c-12.814 28.308-20.361 58.714-22.272 89.728l-0.427 13.184-0.043 5.12c0.514 63.322 24.54 124.193 67.413 170.794l7.552 7.893 271.488 271.488 120.704-120.661-442.24-442.239z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["knife-blood-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 398,
+ "id": 1951,
+ "name": "knife-blood-line",
+ "prevSize": 32,
+ "code": 59995
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 347
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 256v170.624h128v-170.624h85.333v170.624h128v-170.624h85.333v170.624l42.667 0.043c32.649-0.002 64.064 12.471 87.821 34.871 23.753 22.396 38.050 53.026 39.966 85.619l0.213 7.509v42.667c0 43.264-16.085 82.773-42.624 112.853l-0.043 185.813c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-186.027c-22.926-26.121-37.387-58.586-41.472-93.099l-0.939-10.795-0.256-8.747v-42.667c-0.002-32.649 12.473-64.064 34.871-87.821 22.398-23.753 53.027-38.050 85.62-39.966l7.509-0.213 42.667-0.043v-170.624h85.333zM384.085 710.016l-2.304 2.688c-27.968 30.537-66.098 49.843-107.264 54.315l-9.813 0.768-8.704 0.213c-14.72 0-29.013-1.877-42.667-5.376v90.709h597.333v-90.709c-27.93 7.181-57.225 7.177-85.154-0.004-27.93-7.185-53.589-21.316-74.59-41.084l-6.4-6.4-4.523-4.992-4.565 5.035c-27.665 29.047-64.704 47.39-104.576 51.797l-10.325 0.853-8.533 0.171c-44.651 0.064-87.531-17.472-119.339-48.811l-6.4-6.699-2.176-2.475zM810.667 512h-597.333c-10.45 0-20.537 3.84-28.346 10.782-7.81 6.946-12.799 16.512-14.022 26.893l-0.299 4.992v41.429l0.128 6.272c1.284 21.726 10.821 42.142 26.659 57.067s36.782 23.236 58.546 23.232c20.435 0.034 40.204-7.266 55.709-20.578s25.714-31.748 28.771-51.955l0.64-6.528 0.213-7.509c1.536-53.248 77.952-55.168 84.864-5.717l0.427 5.717 0.171 6.272c1.195 21.67 10.603 42.074 26.308 57.058 15.706 14.98 36.527 23.411 58.231 23.582 21.705 0.166 42.658-7.94 58.594-22.677 15.94-14.733 25.66-34.991 27.191-56.64l0.512-12.032c5.291-49.323 79.445-49.323 84.736 0l0.512 12.032c1.527 21.534 11.157 41.69 26.953 56.405s36.578 22.899 58.167 22.899c21.589 0 42.372-8.183 58.167-22.899s25.425-34.871 26.953-56.405l0.213-6.357v-42.667c0-10.449-3.84-20.535-10.782-28.348-6.946-7.808-16.512-12.796-26.893-14.020l-4.992-0.299zM298.667 42.667c56.32 37.163 70.955 89.088 61.824 123.221-4.39 16.397-15.115 30.378-29.814 38.867s-32.168 10.793-48.565 6.402c-16.397-4.39-30.378-15.115-38.867-29.814s-10.793-32.168-6.402-48.565c12.757-47.36 61.824-26.112 61.824-90.112zM512 42.667c56.32 37.163 70.955 89.088 61.824 123.221-4.39 16.397-15.117 30.378-29.815 38.867s-32.166 10.793-48.563 6.402c-16.397-4.39-30.379-15.115-38.869-29.814-8.486-14.699-10.79-32.168-6.4-48.565 12.757-47.36 61.824-26.112 61.824-90.112zM725.333 42.667c56.32 37.163 70.955 89.088 61.824 123.221-4.39 16.397-15.117 30.378-29.815 38.867s-32.166 10.793-48.563 6.402c-16.397-4.39-30.379-15.115-38.869-29.814-8.486-14.699-10.79-32.168-6.4-48.565 12.757-47.36 61.824-26.112 61.824-90.112z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cake-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 399,
+ "id": 1950,
+ "name": "cake-2-line",
+ "prevSize": 32,
+ "code": 59996
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 348
+ },
+ {
+ "icon": {
+ "paths": [
+ "M661.338 85.333c22.007-0.002 43.746 4.861 63.659 14.241 19.908 9.38 37.5 23.045 51.511 40.018 14.016 16.972 24.102 36.833 29.542 58.159s6.101 43.592 1.933 65.203l-0.64 2.816c37.116 12.382 69.568 35.805 93.013 67.136 23.441 31.33 36.757 69.073 38.165 108.177 1.404 39.104-9.165 77.709-30.298 110.639-21.133 32.934-51.819 58.628-87.953 73.643l-46.336 277.632c-1.66 9.963-6.797 19.017-14.498 25.545-7.701 6.532-17.472 10.121-27.571 10.125h-439.724c-10.1-0.004-19.87-3.593-27.573-10.125-7.703-6.528-12.84-15.582-14.496-25.545l-43.904-263.253c-29.529-1.677-57.566-13.525-79.346-33.532-21.78-20.011-35.959-46.946-40.127-76.224-4.168-29.282 1.932-59.102 17.265-84.395 15.332-25.291 38.95-44.492 66.838-54.34l-0.128-7.253c-0.009-43.202 10.916-85.703 31.757-123.546s50.92-69.795 87.435-92.882c36.515-23.087 78.28-36.558 121.403-39.158 43.122-2.6 86.203 5.757 125.23 24.29 13.577-20.711 32.102-37.715 53.897-49.477 21.798-11.761 46.178-17.911 70.946-17.894zM384.003 640h-91.307l35.584 213.333h55.723v-213.333zM554.671 640h-85.333v213.333h85.333v-213.333zM731.268 640h-91.264v213.333h55.68l35.584-213.333zM426.671 213.333c-91.394 0-166.018 71.851-170.455 160.725l-0.213 8.405 0.128 7.253c0.302 16.754-4.336 33.226-13.335 47.36-8.999 14.135-21.961 25.31-37.268 32.128l-6.4 2.517c-9.474 3.375-17.454 9.98-22.534 18.662-5.080 8.678-6.934 18.871-5.236 28.783s6.839 18.91 14.518 25.399c7.679 6.494 17.403 10.069 27.46 10.099h533.335c15.77 0 31.343-3.499 45.602-10.24 14.255-6.741 26.837-16.563 36.843-28.753 10.010-12.19 17.186-26.445 21.018-41.745 3.836-15.296 4.228-31.253 1.156-46.72-3.076-15.47-9.54-30.064-18.935-42.733-9.391-12.669-21.474-23.098-35.383-30.535-13.905-7.437-29.286-11.699-45.039-12.477s-31.479 1.946-46.050 7.977l-7.467 3.456c-19.691 10.145-42.551 12.238-63.753 5.836s-39.087-20.795-49.869-40.14l-2.987-5.845c-13.636-29.678-35.503-54.819-63.002-72.441s-59.477-26.983-92.134-26.972zM661.338 170.667c-11.063-0.002-21.935 2.862-31.556 8.313-9.626 5.451-17.673 13.303-23.356 22.791 22.029 21.691 39.953 47.19 52.907 75.264 18.944-9.728 39.68-16.384 61.696-19.328 3.738-9.694 5.065-20.154 3.857-30.474s-4.911-20.192-10.786-28.762c-5.879-8.57-13.751-15.579-22.946-20.424-9.19-4.844-19.426-7.377-29.815-7.38z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cake-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 400,
+ "id": 1949,
+ "name": "cake-3-line",
+ "prevSize": 32,
+ "code": 59997
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 349
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 128c148.907 0 272.341 108.971 294.955 251.52 50.133-49.963 119.339-80.853 195.712-80.853h192v106.667c0 153.173-124.16 277.333-277.333 277.333h-106.667v213.333h-85.333v-341.333h-85.333c-164.949 0-298.667-133.717-298.667-298.667v-128h170.667zM853.333 384h-106.667c-106.027 0-192 85.973-192 192v21.333h106.667c106.027 0 192-85.973 192-192v-21.333zM256 213.333h-85.333v42.667c0 117.803 95.531 213.333 213.333 213.333h85.333v-42.667c0-117.803-95.531-213.333-213.333-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["seedling-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 401,
+ "id": 1948,
+ "name": "seedling-line",
+ "prevSize": 32,
+ "code": 59998
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 350
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 87.467c215.595 21.376 384 203.307 384 424.533v42.667h-384v256c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339v-42.667h85.333v42.667c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.674-17.98-120.678-49.988c-32.009-32.004-49.988-75.413-49.988-120.678v-256h-384v-42.667c0-221.227 168.405-403.157 384-424.533v-2.133c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v2.133zM850.688 469.333c-10.411-82.479-50.564-158.324-112.922-213.304s-142.635-85.316-225.766-85.316c-83.132 0-163.41 30.336-225.768 85.316s-102.508 130.825-112.92 213.304h677.376z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["umbrella-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 402,
+ "id": 1947,
+ "name": "umbrella-line",
+ "prevSize": 32,
+ "code": 59999
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 351
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c94.293 0 170.667 76.373 170.667 170.667v384h42.667c23.467 0 42.667-19.2 42.667-42.667v-256c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v256c0 70.827-57.173 128-128 128h-42.667v128h85.333v85.333h-512v-85.333h85.333v-256h-42.667c-70.699 0-128-57.301-128-128v-85.333c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v85.333c0 23.467 19.2 42.667 42.667 42.667h42.667v-256c0-94.293 76.373-170.667 170.667-170.667zM512 170.667c-47.147 0-85.333 38.187-85.333 85.333v597.333h170.667v-597.333c0-47.147-38.187-85.333-85.333-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cactus-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 403,
+ "id": 1946,
+ "name": "cactus-line",
+ "prevSize": 32,
+ "code": 60000
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 352
+ },
+ {
+ "icon": {
+ "paths": [
+ "M185.257 60.076l769.324 769.364c12.006 12.002 18.752 28.279 18.756 45.257 0.004 16.973-6.737 33.254-18.735 45.261-12.002 12.006-28.279 18.756-45.257 18.756-16.973 0.004-33.254-6.733-45.261-18.735l-196.096-196.139-150.869 150.827-331.863-331.861c-62.717-62.707-98.564-147.364-99.95-236.042s31.799-174.414 92.526-239.051l7.424-7.637zM195.54 191.062l-2.176 4.693c-20.69 45.741-27.486 96.553-19.544 146.123s30.272 95.715 64.216 132.703l7.552 7.893 271.49 271.488 120.704-120.661-442.242-442.239z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["knife-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 404,
+ "id": 1945,
+ "name": "knife-line",
+ "prevSize": 32,
+ "code": 60001
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 353
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM597.333 426.667h85.333v170.667h-85.333v-170.667zM341.333 426.667h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["outlet-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 405,
+ "id": 1944,
+ "name": "outlet-line",
+ "prevSize": 32,
+ "code": 60002
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 354
+ },
+ {
+ "icon": {
+ "paths": [
+ "M459.008 504.661l334.891-334.891 60.331 60.331-60.331 60.373 105.557 105.557-60.331 60.373-105.6-105.6-60.331 60.331 90.496 90.496-60.331 60.373-90.496-90.539-93.525 93.525c29.035 44.117 40.678 97.434 32.683 149.636-8 52.207-35.068 99.588-75.977 132.992s-92.748 50.453-145.497 47.851c-52.749-2.598-102.66-24.67-140.082-61.935-37.503-37.363-59.775-87.334-62.487-140.203s14.328-104.853 47.811-145.86c33.482-41.003 81.014-68.096 133.357-76.006s105.758 3.921 149.862 33.195zM431.829 773.163c12.433-11.755 22.379-25.886 29.252-41.553 6.878-15.667 10.543-32.55 10.778-49.66 0.239-17.105-2.953-34.086-9.391-49.937-6.438-15.855-15.987-30.255-28.087-42.351-12.096-12.096-26.496-21.649-42.348-28.083-15.852-6.438-32.833-9.634-49.94-9.395s-33.993 3.904-49.659 10.778c-15.666 6.878-29.795 16.823-41.552 29.252-23.316 24.141-36.218 56.474-35.926 90.035s13.753 65.664 37.485 89.399c23.732 23.731 55.836 37.193 89.397 37.483 33.561 0.294 65.894-12.608 90.034-35.925l-0.043-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["key-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 406,
+ "id": 1943,
+ "name": "key-2-line",
+ "prevSize": 32,
+ "code": 60003
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 355
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-512c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h512zM725.333 213.333h-426.667v597.333h426.667v-597.333zM640 469.333v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 407,
+ "id": 1942,
+ "name": "door-line",
+ "prevSize": 32,
+ "code": 60004
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 356
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 640v170.667h170.667v85.333h-256v-256h85.333zM896 640v256h-256v-85.333h170.667v-170.667h85.333zM554.667 256v512h-85.333v-512h85.333zM384 384v256h-85.333v-256h85.333zM725.333 384v256h-85.333v-256h85.333zM384 128v85.333h-170.667v170.667h-85.333v-256h256zM896 128v256h-85.333v-170.667h-170.667v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["voice-recognition-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 408,
+ "id": 1941,
+ "name": "voice-recognition-line",
+ "prevSize": 32,
+ "code": 60005
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 357
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 298.666v170.668h298.667c11.315 0 22.17 4.493 30.17 12.497 8 8 12.497 18.854 12.497 30.17v341.333h85.333v85.333h-938.667v-85.333h85.333v-341.333c0-11.315 4.495-22.17 12.497-30.17 8.002-8.004 18.854-12.497 30.17-12.497h298.667v-170.668h85.333zM810.667 554.667h-597.333v298.667h597.333v-298.667zM590.080 17.151c16.973 29.399 21.572 64.336 12.787 97.126s-30.238 60.748-59.635 77.722l-73.899 42.667c-16.973-29.399-21.572-64.336-12.787-97.126s30.238-60.748 59.635-77.722l73.899-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cake-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 409,
+ "id": 1940,
+ "name": "cake-line",
+ "prevSize": 32,
+ "code": 60006
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 358
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128v85.333c0 410.752-229.248 597.333-512 597.333h-160.299c-6.955 38.912-10.368 81.365-10.368 128h-85.333c0-58.155 4.949-110.933 14.763-159.232-9.813-55.211-14.763-130.133-14.763-224.768 0-235.648 191.019-426.667 426.667-426.667 85.333 0 170.667 42.667 341.333 0zM554.667 213.333c-188.501 0-341.333 152.832-341.333 341.333 0 15.445 0.128 30.336 0.427 44.629 53.504-84.395 131.883-151.083 234.411-209.664l42.325 74.069c-121.813 69.632-202.624 148.736-244.053 261.632h137.557c256.64 0 421.163-169.515 426.539-495.445-58.539 5.675-112.939 2.048-180.053-8.021-49.067-7.381-58.709-8.533-75.819-8.533z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["leaf-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 410,
+ "id": 1939,
+ "name": "leaf-line",
+ "prevSize": 32,
+ "code": 60007
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 359
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 85.333c114.773 0 214.357 64.725 264.405 159.616 50.219-70.741 132.821-116.949 226.261-116.949h149.333v106.667c0 153.173-124.16 277.333-277.333 277.333h-64v42.667h213.333v298.667c0 47.147-38.187 85.333-85.333 85.333h-341.333c-47.147 0-85.333-38.187-85.333-85.333v-298.667h213.333v-85.333h-85.333c-164.949 0-298.667-133.717-298.667-298.667v-85.333h170.667zM682.667 640h-341.333v213.333h341.333v-213.333zM810.667 213.333h-64c-106.027 0-192 85.973-192 192v21.333h64c106.027 0 192-85.973 192-192v-21.333zM256 170.667h-85.333c0 117.803 95.531 213.333 213.333 213.333h85.333c0-117.803-95.531-213.333-213.333-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plant-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 411,
+ "id": 1938,
+ "name": "plant-line",
+ "prevSize": 32,
+ "code": 60008
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 360
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v85.333h256v85.333h-256c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-85.333h-128c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333v-170.667h85.333v170.667h256v-170.667h85.333v170.667h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-128zM341.333 682.667h341.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339v-128h-512v128c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994zM768 341.333h-512v42.667h512v-42.667zM512 618.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM469.333 85.333h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plug-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 412,
+ "id": 1937,
+ "name": "plug-2-line",
+ "prevSize": 32,
+ "code": 60009
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 361
+ },
+ {
+ "icon": {
+ "paths": [
+ "M425.513 768h43.82v-213.333h85.333v213.333h43.819c5.632-51.285 31.787-93.611 74.24-139.819 4.821-5.205 35.499-36.992 39.125-41.515 30.131-37.649 49.020-83.042 54.49-130.957 5.466-47.91-2.709-96.392-23.59-139.861-20.877-43.468-53.611-80.156-94.426-105.837-40.819-25.681-88.055-39.312-136.282-39.322-48.222-0.010-95.467 13.6-136.294 39.264s-73.575 62.337-94.473 105.797c-20.898 43.46-29.095 91.939-23.649 139.853s24.316 93.316 54.435 130.978c3.669 4.565 34.432 36.395 39.168 41.557 42.496 46.251 68.651 88.576 74.283 139.861zM426.665 853.333v42.667h170.668v-42.667h-170.668zM245.502 640c-40.184-50.206-65.367-110.746-72.65-174.639-7.282-63.892 3.633-128.543 31.488-186.504s71.517-106.874 125.957-141.105c54.439-34.231 117.439-52.387 181.746-52.377s127.305 18.186 181.734 52.435c54.426 34.249 98.074 83.176 125.909 141.146s38.733 122.624 31.428 186.516c-7.305 63.889-32.508 124.42-72.704 174.613-26.453 32.939-95.744 85.248-95.744 149.248v106.667c0 22.63-8.994 44.335-24.994 60.339-16.004 16.004-37.709 24.994-60.339 24.994h-170.668c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-106.667c0-64-69.333-116.309-95.829-149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lightbulb-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 413,
+ "id": 1936,
+ "name": "lightbulb-line",
+ "prevSize": 32,
+ "code": 60010
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 362
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 85.333v54.528l213.333 71.168 154.965-51.627 27.008 80.896-129.365 43.136 132.096 363.179c-46.592 48.512-112.171 78.72-184.704 78.72-72.576 0-138.112-30.208-184.704-78.72l132.011-363.179-160.64-53.589v580.821h170.667v85.333h-426.666v-85.333h170.666v-580.821l-160.767 53.589 132.095 363.179c-46.548 48.512-112.127 78.72-184.66 78.72-72.576 0-138.112-30.208-184.704-78.72l132.011-363.179-129.28-43.093 27.008-80.981 154.965 51.627 213.332-71.125v-54.528h85.333zM768 388.395l-83.541 229.803c25.045 14.123 53.632 21.803 83.541 21.803 29.867 0 58.453-7.68 83.541-21.76l-83.541-229.845zM256.001 388.395l-83.541 229.803c25.045 14.123 53.632 21.803 83.541 21.803 29.867 0 58.453-7.68 83.541-21.76l-83.541-229.845z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scales-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 414,
+ "id": 1935,
+ "name": "scales-3-line",
+ "prevSize": 32,
+ "code": 60011
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 363
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 85.333c0 21.888 20.907 42.667 42.667 42.667h426.667c21.888 0 42.667-20.907 42.667-42.667h85.333c0 70.699-57.301 128-128 128h-170.667l0.043 87.979c168.363 21.035 298.624 164.651 298.624 338.688v256c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-256c0-174.080 130.304-317.696 298.667-338.688v-87.979h-170.667c-70.827 0-128-57.173-128-128h85.333zM512 384c-138.155 0-256 117.76-256 256v213.333h512v-213.333c0-138.155-117.845-256-256-256zM512 469.333c31.659 0 61.269 8.619 86.699 23.637l-116.907 116.864c-16.64 16.64-16.64 43.691 0 60.331 15.403 15.36 39.637 16.555 56.32 3.541l4.053-3.541 116.907-116.864c14.976 25.429 23.595 55.040 23.595 86.699 0 94.293-76.373 170.667-170.667 170.667s-170.667-76.373-170.667-170.667c0-94.293 76.373-170.667 170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scales-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 415,
+ "id": 1934,
+ "name": "scales-2-line",
+ "prevSize": 32,
+ "code": 60012
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 364
+ },
+ {
+ "icon": {
+ "paths": [
+ "M744.832 128l151.168 0.128 0.085 150.315-233.259 233.216 120.661 120.704 60.373-60.331 60.331 60.331-105.557 105.6 120.661 120.704-60.331 60.331-120.704-120.704-105.6 105.6-60.331-60.331 60.331-60.373-120.704-120.661-120.662 120.661 60.374 60.373-60.332 60.331-105.6-105.6-120.704 120.704-60.331-60.331 120.704-120.747-105.6-105.557 60.331-60.331 60.331 60.288 120.619-120.661-232.96-232.96-0.128-150.699 151.296 0.128 232.662 232.704 232.875-232.832zM421.418 571.989l-120.619 120.661 30.208 30.165 120.62-120.661-30.166-30.165h-0.043zM810.709 213.376h-30.592l-207.787 207.744 30.123 30.165 208.256-208.171v-29.739zM213.375 213.376v29.867l479.617 479.616 30.165-30.165-479.276-479.275-30.507-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sword-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 416,
+ "id": 1933,
+ "name": "sword-line",
+ "prevSize": 32,
+ "code": 60013
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 365
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 42.667c23.552 0 42.667 19.115 42.667 42.667v853.333c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-853.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM768 512h-512v384h512v-384zM426.667 597.333v170.667h-85.333v-170.667h85.333zM768 128h-512v298.667h512v-298.667zM426.667 213.333v128h-85.333v-128h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fridge-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 417,
+ "id": 1932,
+ "name": "fridge-line",
+ "prevSize": 32,
+ "code": 60014
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 366
+ },
+ {
+ "icon": {
+ "paths": [
+ "M834.641 516.139l65.323 113.195c41.259 71.424 16.768 162.773-54.613 203.989-22.741 13.099-48.469 20.011-74.667 20.011h-88.021v106.667l-213.333-149.333 213.333-149.333v106.667h87.979c11.221 0 22.272-2.987 32-8.576 30.635-17.664 41.088-56.832 23.467-87.424l-65.365-113.195 73.899-42.667zM311.635 389.717l22.613 259.413-92.331-53.333-43.989 76.203c-5.632 9.728-8.576 20.779-8.576 32 0 35.328 28.629 64 64 64h130.645v85.333h-130.645c-82.475 0-149.333-66.859-149.333-149.333 0-26.197 6.912-51.968 20.011-74.667l43.947-76.245-92.331-53.291 235.989-110.080zM586.662 126.677c22.699 13.099 41.557 31.957 54.656 54.656l43.951 76.16 92.412-53.333-22.613 259.456-236.032-110.080 92.373-53.333-43.989-76.203c-5.632-9.728-13.696-17.792-23.424-23.424-30.592-17.664-69.76-7.168-87.424 23.424l-65.363 113.195-73.899-42.667 65.408-113.195c41.216-71.424 132.567-95.915 203.987-54.656h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["recycle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 418,
+ "id": 1931,
+ "name": "recycle-line",
+ "prevSize": 32,
+ "code": 60015
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 367
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 85.333c62.238 0 121.924 24.724 165.935 68.732 44.006 44.009 68.732 103.697 68.732 165.935v106.667c0 37.888-16.469 71.936-42.667 95.36v203.307c0 26.47-8.209 52.292-23.488 73.911-15.283 21.615-36.89 37.961-61.845 46.793v49.963c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-49.92c-24.963-8.832-46.574-25.186-61.856-46.81-15.282-21.628-23.485-47.458-23.477-73.937v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h405.333zM405.333 469.333h-192v256c0.001 10.449 3.838 20.535 10.783 28.348 6.944 7.808 16.513 12.796 26.892 14.020l4.992 0.299h512c10.449 0 20.535-3.84 28.348-10.782 7.808-6.946 12.796-16.512 14.020-26.893l0.299-4.992v-170.667h-257.536c-5.129 35.541-22.895 68.041-50.039 91.55s-61.85 36.45-97.758 36.45h-149.333v-85.333h149.333c15.91 0 31.249-5.926 43.025-16.623s19.149-25.395 20.676-41.233l0.299-6.144c0-15.91-5.926-31.249-16.623-43.025s-25.395-19.149-41.233-20.676l-6.144-0.299zM704 170.667h-405.333c-21.529-0.007-42.264 8.124-58.050 22.763s-25.455 34.703-27.070 56.171l-0.213 6.4v128h192c28.262-0.006 55.949 8.010 79.838 23.116 23.893 15.105 43.004 36.682 55.117 62.218h270.379c10.449 0 20.535-3.84 28.348-10.782 7.808-6.946 12.796-16.512 14.020-26.893l0.299-4.992v-106.667c0.004-38.19-14.626-74.929-40.879-102.665-26.249-27.736-62.131-44.36-100.262-46.455l-8.192-0.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["boxing-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 419,
+ "id": 1930,
+ "name": "boxing-line",
+ "prevSize": 32,
+ "code": 60016
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 368
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490.667 85.333c107.503 0 210.598 42.705 286.613 118.72s118.72 179.113 118.72 286.614c0.098 63.014-14.558 125.171-42.795 181.504l105.088 105.131c8 8 12.493 18.85 12.493 30.165s-4.493 22.165-12.493 30.165l-120.661 120.661c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-105.131-105.088c-56.333 28.237-118.49 42.893-181.504 42.795-107.501 0-210.599-42.705-286.614-118.72s-118.72-179.11-118.72-286.613c0-107.501 42.705-210.599 118.72-286.614s179.113-118.72 286.614-118.72zM716.928 656.555l-60.331 60.331 150.869 150.827 60.331-60.331-150.869-150.827zM796.459 396.075l-400.384 400.384c29.867 9.216 61.653 14.208 94.592 14.208 40.004 0.051 79.663-7.415 116.907-22.016l-41.472-41.557c-8-8-12.493-18.85-12.493-30.165s4.493-22.165 12.493-30.165l120.661-120.661c8-8 18.85-12.493 30.165-12.493s22.165 4.493 30.165 12.493l41.557 41.472c14.601-37.244 22.067-76.902 22.016-116.907 0-32.939-4.992-64.683-14.208-94.592zM490.667 170.667c-68.792-0.007-135.756 22.155-190.962 63.2s-95.715 98.788-115.522 164.667c-19.806 65.88-17.856 136.387 5.564 201.070 23.419 64.687 67.059 120.098 124.451 158.029l443.435-443.435c-29.15-44.144-68.8-80.364-115.392-105.414s-98.675-38.147-151.573-38.117z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ping-pong-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 420,
+ "id": 1929,
+ "name": "ping-pong-line",
+ "prevSize": 32,
+ "code": 60017
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 369
+ },
+ {
+ "icon": {
+ "paths": [
+ "M602.496 421.505c183.296 183.252 291.371 372.394 241.365 422.399-20.267 20.224-63.403 14.507-119.765-11.648-67.78 44.83-148.028 67.025-229.21 63.39-81.184-3.635-159.127-32.909-222.631-83.614l-1.621 1.707-60.331-60.373 1.621-1.707c-50.677-63.497-79.925-141.419-83.543-222.579s18.579-161.378 63.404-229.132c-26.197-56.405-31.915-99.541-11.648-119.808 48.128-48.128 225.152 50.219 401.793 221.099l20.565 20.267zM542.165 481.835c-80.384-80.383-163.713-147.242-233.43-188.714l-7.936 7.68c-50.776 50.79-81.557 118.172-86.705 189.806s15.681 142.724 58.673 200.252l78.763-78.763c-4.858-18.142-3.595-37.38 3.593-54.729 7.188-17.353 19.899-31.846 36.163-41.237 16.264-9.395 35.172-13.158 53.792-10.709 18.624 2.445 35.917 10.97 49.199 24.243 13.286 13.274 21.82 30.562 24.282 49.182 2.458 18.62-1.293 37.53-10.671 53.798-9.382 16.273-23.868 28.992-41.212 36.194-17.348 7.202-36.582 8.478-54.729 3.631l-78.848 78.763c57.532 43.004 128.632 63.842 200.274 58.692 71.646-5.15 139.034-35.934 189.828-86.724l7.637-8.021-2.261-3.797c-41.643-68.907-107.52-150.613-186.411-229.547zM843.861 180.14c8.486 8.484 15.091 18.663 19.379 29.872s6.161 23.197 5.5 35.18c-0.661 11.983-3.84 23.692-9.331 34.362-5.495 10.671-13.175 20.062-22.545 27.562 33.148 52.64 53.035 112.535 57.954 174.548 4.919 62.016-5.274 124.297-29.709 181.504-17.609-34.018-37.359-66.88-59.136-98.389 8.55-47.415 5.487-96.196-8.926-142.167-14.417-45.972-39.757-87.768-73.847-121.811-34.048-34.087-75.844-59.421-121.813-73.836-45.973-14.415-94.75-17.481-142.165-8.937-31.505-21.786-64.369-41.538-98.39-59.136 57.224-24.44 119.523-34.634 181.552-29.707s121.937 24.828 174.588 57.995c7.497-9.359 16.879-17.032 27.541-22.52s22.357-8.669 34.33-9.332c11.972-0.664 23.953 1.202 35.153 5.478 11.204 4.275 21.38 10.863 29.867 19.335z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bell-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 421,
+ "id": 1928,
+ "name": "bell-line",
+ "prevSize": 32,
+ "code": 60018
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 370
+ },
+ {
+ "icon": {
+ "paths": [
+ "M619.307 213.334l111.189-111.232c3.964-3.967 8.666-7.114 13.845-9.261s10.735-3.252 16.341-3.252c5.606 0 11.157 1.105 16.337 3.252s9.886 5.294 13.85 9.261l180.992 181.035c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-161.195 161.194v391.339c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.493-30.17-12.497-8.002-8-12.497-18.854-12.497-30.17v-391.339l-161.195-161.194c-7.999-8.001-12.492-18.852-12.492-30.165s4.493-22.164 12.492-30.165l180.992-181.035c3.962-3.967 8.668-7.114 13.848-9.261s10.732-3.252 16.339-3.252c5.607 0 11.159 1.105 16.339 3.252s9.885 5.294 13.848 9.261l111.189 111.232h214.614zM654.635 298.668h-285.27l-106.027-106.027-120.704 120.661 156.032 156.031v384h426.667v-384l156.032-156.031-120.704-120.661-106.027 106.027z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-shirt-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 422,
+ "id": 1927,
+ "name": "t-shirt-line",
+ "prevSize": 32,
+ "code": 60019
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 371
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 85.333v42.667h298.667v85.333h-298.667v597.333h170.667v85.333h-426.667v-85.333h170.667v-597.333h-298.667v-85.333h298.667v-42.667h85.333zM213.333 270.635l120.661 120.704c30.891 30.848 50.005 73.515 50.005 120.661 0 94.293-76.373 170.667-170.667 170.667s-170.667-76.373-170.667-170.667c0-47.147 19.115-89.813 50.005-120.661l120.661-120.704zM810.667 270.635l120.661 120.704c30.891 30.848 50.005 73.515 50.005 120.661 0 94.293-76.373 170.667-170.667 170.667s-170.667-76.373-170.667-170.667c0-47.147 19.115-89.813 50.005-120.661l120.661-120.704zM213.333 391.339l-60.331 60.331c-15.957 15.957-25.003 37.291-25.003 60.331 0 47.147 38.187 85.333 85.333 85.333s85.333-38.187 85.333-85.333c0-23.040-9.045-44.373-25.003-60.331l-60.331-60.331zM810.667 391.339l-60.331 60.331c-15.957 15.957-25.003 37.291-25.003 60.331 0 47.147 38.187 85.333 85.333 85.333s85.333-38.187 85.333-85.333c0-23.040-9.045-44.373-25.003-60.331l-60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scales-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 423,
+ "id": 1926,
+ "name": "scales-line",
+ "prevSize": 32,
+ "code": 60020
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 372
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974zM512 256c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982s-133.010-26.97-181.019-74.982c-48.009-48.009-74.981-113.122-74.981-181.018s26.971-133.010 74.981-181.019c48.009-48.009 113.124-74.981 181.019-74.981zM512 330.667c-20.493 0.006-40.55 5.916-57.775 17.022-17.22 11.106-30.88 26.938-39.341 45.603s-11.367 39.37-8.37 59.645c2.998 20.271 11.772 39.253 25.272 54.669-24.107 19.499-39.253 47.701-39.253 79.061 0 58.88 53.504 106.667 119.467 106.667s119.467-47.787 119.467-106.667c0-31.36-15.147-59.563-39.253-79.019 13.513-15.415 22.298-34.402 25.306-54.682 3.004-20.279 0.102-40.994-8.363-59.666-8.461-18.673-22.127-34.511-39.356-45.619-17.233-11.108-37.299-17.015-57.801-17.015zM512 544c32.128 0 55.467 20.821 55.467 42.667s-23.339 42.667-55.467 42.667c-32.128 0-55.467-20.821-55.467-42.667s23.339-42.667 55.467-42.667zM512 394.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["billiards-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 424,
+ "id": 1925,
+ "name": "billiards-line",
+ "prevSize": 32,
+ "code": 60021
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 373
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 853.333h256v-170.667h-170.667v-85.333h170.667v-341.333h-85.333v213.333l-170.667-68.267v452.267zM469.333 853.333v-452.267l-170.667 68.267v-213.333h-85.333v597.333h256zM298.667 170.667v-42.667h426.667v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM512 341.333l149.333-128h-298.667l149.333 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shirt-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 425,
+ "id": 1924,
+ "name": "shirt-line",
+ "prevSize": 32,
+ "code": 60022
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 374
+ },
+ {
+ "icon": {
+ "paths": [
+ "M542.165 759.168c35.285 35.285 67.755 51.499 97.835 51.499 16.128 0 29.013-2.859 52.779-11.776l16.725-6.485c44.8-18.005 67.413-24.405 101.163-24.405 51.797 0 101.504 23.253 148.736 67.413l9.429 9.088-60.331 60.331c-35.285-35.285-67.755-51.499-97.835-51.499-16.128 0-29.013 2.859-52.779 11.776l-16.725 6.485c-44.8 17.963-67.413 24.405-101.163 24.405-51.797 0-101.504-23.253-148.736-67.413l-9.429-9.088 60.331-60.331zM384 128c0 33.948 13.486 66.505 37.49 90.51s56.564 37.49 90.51 37.49c33.946 0 66.505-13.486 90.509-37.49s37.491-56.562 37.491-90.51h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.752v-85.333l128.085-0.043v-213.333h-145.792l-0.725 1.749c-16.179 36.175-42.112 67.13-74.893 89.399s-71.117 34.97-110.707 36.681l-9.216 0.213c-41.199 0.004-81.519-11.92-116.088-34.331s-61.914-54.351-78.728-91.962l-0.768-1.707h-145.749v213.333l127.957-0.043v384.043h128.043v85.333h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17l-0.043-341.376-85.291 0.043c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM542.165 588.501c35.285 35.285 67.755 51.499 97.835 51.499 16.128 0 29.013-2.859 52.779-11.776l16.725-6.485c44.8-18.005 67.413-24.405 101.163-24.405 51.797 0 101.504 23.253 148.736 67.413l9.429 9.088-60.331 60.331c-35.285-35.285-67.755-51.499-97.835-51.499-16.128 0-29.013 2.859-52.779 11.776l-16.725 6.485c-44.8 17.963-67.413 24.405-101.163 24.405-51.797 0-101.504-23.253-148.736-67.413l-9.429-9.088 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-shirt-air-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 426,
+ "id": 1923,
+ "name": "t-shirt-air-line",
+ "prevSize": 32,
+ "code": 60023
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 375
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 640v170.667h170.667v85.333h-256v-256h85.333zM896 640v256h-256v-85.333h170.667v-170.667h85.333zM554.624 256l187.733 469.333h-91.947l-51.243-128h-174.507l-51.157 128h-91.904l187.691-469.333h85.333zM511.957 379.093l-53.205 132.907h106.325l-53.12-132.907zM384 128v85.333h-170.667v170.667h-85.333v-256h256zM896 128v256h-85.333v-170.667h-170.667v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["character-recognition-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 427,
+ "id": 1922,
+ "name": "character-recognition-line",
+ "prevSize": 32,
+ "code": 60024
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 376
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 896v-85.333h85.333v-604.374c0-20.651 14.763-38.315 35.029-41.984l404.139-73.472c13.909-2.56 27.221 6.699 29.739 20.608 0.299 1.493 0.427 2.987 0.427 4.565v54.613l170.667 0.043c23.552 0 42.667 19.115 42.667 42.667v597.334h85.333v85.333h-170.667v-640h-128v640h-554.667zM554.667 187.562l-298.667 54.357v568.747h298.667v-623.104zM512 469.333v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-open-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 428,
+ "id": 1921,
+ "name": "door-open-line",
+ "prevSize": 32,
+ "code": 60025
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 377
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 640v170.667h128v85.333h-341.333v-85.333h128v-170.667h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667zM213.333 554.667h597.333v-341.333h-597.333v341.333zM341.333 341.333h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reserved-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 429,
+ "id": 1920,
+ "name": "reserved-line",
+ "prevSize": 32,
+ "code": 60026
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 378
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.334c63.241-0.064 125.705 13.959 182.852 41.052 57.143 27.093 107.537 66.575 147.516 115.577l-270.037 270.037 270.037 270.037c-39.979 49.003-90.372 88.486-147.516 115.575-57.148 27.093-119.612 41.118-182.852 41.054-235.648 0-426.667-191.019-426.667-426.667s191.019-426.666 426.667-426.666zM512 170.667c-53.85 0.009-106.931 12.759-154.909 37.207s-89.492 59.9-121.149 103.461c-31.657 43.561-52.559 93.993-60.997 147.174-8.439 53.184-4.175 107.61 12.444 158.831 16.618 51.217 45.119 97.779 83.173 135.881 38.055 38.097 84.583 66.654 135.784 83.328 51.199 16.678 105.62 21.005 158.813 12.629s103.65-29.218 147.247-60.826l8.875-6.699-269.653-269.653 269.653-269.696-8.875-6.656c-54.665-39.739-119.94-62.275-187.477-64.725l-12.928-0.256zM512 213.334c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.252-18.743 45.255s-28.284 18.745-45.257 18.745c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["game-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 430,
+ "id": 1919,
+ "name": "game-line",
+ "prevSize": 32,
+ "code": 60027
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 379
+ },
+ {
+ "icon": {
+ "paths": [
+ "M551.125 554.667c-10.867 63.151-45.018 119.927-95.706 159.13-50.687 39.202-114.229 57.98-178.083 52.621s-123.378-34.462-166.824-81.562c-43.445-47.1-67.654-108.779-67.847-172.855-0.058-64.23 24.029-126.135 67.485-173.434s103.103-76.533 167.108-81.904c64.005-5.371 127.691 13.515 178.42 52.909 50.731 39.395 84.8 96.42 95.445 159.761h430.208v85.333h-85.333v170.667h-85.333v-170.667h-85.333v170.667h-85.333v-170.667h-88.875zM298.667 682.667c45.264 0 88.673-17.98 120.68-49.988 32.007-32.004 49.987-75.413 49.987-120.678s-17.98-88.674-49.987-120.68c-32.006-32.006-75.416-49.987-120.68-49.987s-88.673 17.981-120.679 49.987c-32.006 32.006-49.987 75.415-49.987 120.68s17.981 88.674 49.987 120.678c32.006 32.009 75.416 49.988 120.679 49.988z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["key-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 431, "id": 1918, "name": "key-line", "prevSize": 32, "code": 60028 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 380
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v85.333h256v85.333h-256c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-85.333h-128c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-170.667h85.333v170.667h170.667v-170.667h85.333v170.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-128zM341.333 682.667h341.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339v-128h-512v128c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994zM768 341.333h-512v42.667h512v-42.667zM512 618.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plug-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 432,
+ "id": 1917,
+ "name": "plug-line",
+ "prevSize": 32,
+ "code": 60029
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 381
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM469.333 298.667h85.333v170.667h-85.333v-170.667zM597.333 512h85.333v170.667h-85.333v-170.667zM341.333 512h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["outlet-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 433,
+ "id": 1916,
+ "name": "outlet-2-line",
+ "prevSize": 32,
+ "code": 60030
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 382
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 896v-85.333h85.333v-640c0-23.552 19.115-42.667 42.667-42.667h512c23.552 0 42.667 19.115 42.667 42.667v640h85.333v85.333h-768zM725.333 213.333h-426.667v597.333h426.667v-597.333zM640 469.333v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-closed-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 434,
+ "id": 1915,
+ "name": "door-closed-line",
+ "prevSize": 32,
+ "code": 60031
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 383
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM527.616 570.283l-148.011 256.427c60.075 25.135 126.054 32.683 190.251 21.76-11.337-79.727 0.265-161.037 33.451-234.411l-75.691-43.776zM677.717 656.939c-22.14 52.407-30.75 109.538-25.045 166.144 51.789-23.484 96.909-59.499 131.285-104.789l-106.24-61.355zM377.984 483.925c-46.95 65.434-111.544 116.16-186.24 146.261 22.566 61.065 62.105 114.415 113.963 153.771l148.011-256.341-75.733-43.691zM851.712 478.379l-11.008 5.12c-47.305 23.369-88.503 57.451-120.32 99.541l106.325 61.397c22.084-52.407 30.682-109.517 25.003-166.101v0.043zM170.667 512c0 11.349 0.555 22.613 1.621 33.664 51.861-23.339 97.022-59.345 131.328-104.704l-106.325-61.355c-17.631 41.91-26.684 86.929-26.624 132.395zM718.293 240.043l-148.011 256.341 75.733 43.733c46.95-65.468 111.561-116.228 186.283-146.347-20.979-56.651-56.589-106.734-103.211-145.152l-10.795-8.576zM512 170.667c-19.755 0-39.083 1.707-57.899 4.907 11.358 79.728-0.243 161.042-33.451 234.411l75.733 43.733 148.011-256.427c-41.911-17.631-86.929-26.684-132.395-26.624zM371.328 200.96l-8.149 3.755c-48.405 23.529-90.589 58.127-123.136 100.992l106.24 61.355c22.132-52.395 30.744-109.51 25.045-166.101z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["basketball-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 435,
+ "id": 1914,
+ "name": "basketball-line",
+ "prevSize": 32,
+ "code": 60032
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 384
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM469.333 545.792c-22.46-9.801-40.858-27.038-52.105-48.811-11.246-21.773-14.651-46.754-9.645-70.744s18.121-45.522 37.136-60.979c19.017-15.457 42.773-23.895 67.281-23.895s48.265 8.438 67.281 23.895c19.017 15.457 32.128 36.99 37.137 60.979 5.005 23.99 1.6 48.971-9.647 70.744s-29.645 39.010-52.105 48.811v136.875h-85.333v-136.875z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-lock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 436,
+ "id": 1913,
+ "name": "door-lock-line",
+ "prevSize": 32,
+ "code": 60033
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 385
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM583.253 682.667h-142.507l-58.88 80.939 23.637 72.789c34.377 11.26 70.323 16.977 106.496 16.939 37.163 0 72.96-5.973 106.496-16.939l23.595-72.789-58.837-80.939zM225.877 463.872l-55.125 39.979-0.085 8.149c0 73.813 23.424 142.123 63.232 197.973h81.493l56.448-77.653-43.861-135.253-102.101-33.195zM798.123 463.872l-102.101 33.195-43.861 135.253 56.405 77.653h81.493c41.25-57.762 63.377-126.993 63.275-197.973l-0.128-8.107-55.083-40.021zM512 406.869l-100.011 72.619 38.229 117.845h123.52l38.229-117.845-99.968-72.619zM609.749 184.875l-55.083 40.107v107.392l114.944 83.499 95.531-31.019 23.637-72.661c-44.049-60.976-106.974-105.726-179.029-127.317zM414.208 184.875c-72.047 21.611-134.957 66.376-178.987 127.36l23.637 72.619 95.531 31.019 114.944-83.499v-107.392l-55.125-40.107z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["football-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 437,
+ "id": 1912,
+ "name": "football-line",
+ "prevSize": 32,
+ "code": 60034
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 386
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c79.211 0 155.174 31.467 211.187 87.477s87.479 131.978 87.479 211.189h45.824c10.743 0 21.094 4.056 28.983 11.357 7.885 7.301 12.727 17.309 13.555 28.024l36.096 469.333c0.87 11.281-2.778 22.447-10.138 31.040-7.364 8.593-17.835 13.914-29.116 14.784l-3.285 0.128h-761.175c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17l0.128-3.285 36.096-469.333c0.827-10.715 5.668-20.723 13.554-28.024s18.237-11.357 28.984-11.357h45.824c0-79.212 31.466-155.178 87.477-211.189s131.976-87.477 211.191-87.477zM816.939 469.333h-609.922l-29.568 384h669.058l-29.568-384zM597.333 554.667v85.333h-170.668v-85.333h170.668zM512 170.667c-54.976 0.003-107.827 21.228-147.534 59.249s-63.202 89.903-65.588 144.825l-0.213 9.259h426.668c-0.004-54.974-21.231-107.825-59.251-147.532s-89.903-63.202-144.823-65.588l-9.259-0.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["handbag-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 438,
+ "id": 1911,
+ "name": "handbag-line",
+ "prevSize": 32,
+ "code": 60035
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 387
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128c0 33.948 13.486 66.505 37.49 90.51s56.564 37.49 90.51 37.49c33.946 0 66.505-13.486 90.509-37.49s37.491-56.562 37.491-90.51h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.376l0.043 341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17l-0.043-341.376-85.291 0.043c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM853.333 213.291h-145.792l-0.725 1.749c-16.179 36.175-42.112 67.13-74.893 89.399s-71.117 34.97-110.707 36.681l-9.216 0.213c-41.199 0.004-81.519-11.92-116.088-34.331s-61.914-54.351-78.728-91.962l-0.768-1.707h-145.749v213.333l127.957-0.043v384.043h426.709l-0.043-384 128.043-0.043v-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-shirt-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 439,
+ "id": 1910,
+ "name": "t-shirt-2-line",
+ "prevSize": 32,
+ "code": 60036
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 388
+ },
+ {
+ "icon": {
+ "paths": [
+ "M42.667 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-85.333c0-67.895-26.97-133.009-74.982-181.018-48.009-48.013-113.122-74.982-181.018-74.982s-133.010 26.97-181.019 74.982c-48.009 48.009-74.981 113.122-74.981 181.018h-85.333zM384 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM384 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM919.381 33.451c40.883 82.424 62.089 173.209 61.952 265.216 0 95.275-22.315 185.344-61.952 265.216l-70.187-51.029c30.942-67.157 46.912-140.243 46.805-214.187 0-76.459-16.768-149.035-46.805-214.187l70.187-51.029zM778.496 135.851c21.308 51.633 32.239 106.958 32.171 162.816 0.068 55.857-10.863 111.183-32.171 162.816l-71.552-52.053c12.211-35.651 18.423-73.079 18.389-110.763 0.047-37.681-6.153-75.11-18.347-110.763l71.509-52.053z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-voice-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 440,
+ "id": 1909,
+ "name": "user-voice-line",
+ "prevSize": 32,
+ "code": 60037
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 389
+ },
+ {
+ "icon": {
+ "paths": [
+ "M381.867 364.244c64.533-49.239 145.365-72.114 226.129-63.993s155.422 46.63 208.858 107.731c53.44 61.1 81.66 140.225 78.946 221.352-2.709 81.126-36.147 158.191-93.547 215.586-57.395 57.395-134.46 90.837-215.586 93.547-81.126 2.714-160.25-25.51-221.35-78.946s-99.61-128.098-107.731-208.862c-8.121-80.764 14.755-161.596 63.993-226.126l-122.667-122.667-105.643 105.6-60.331-60.331 271.531-271.531 60.331 60.331-105.6 105.6 122.667 122.709zM576 853.333c62.238 0 121.924-24.725 165.935-68.732 44.006-44.011 68.732-103.697 68.732-165.935s-24.725-121.929-68.732-165.935c-44.011-44.009-103.697-68.733-165.935-68.733s-121.924 24.724-165.934 68.733c-44.009 44.006-68.733 103.697-68.733 165.935s24.724 121.924 68.733 165.935c44.010 44.006 103.696 68.732 165.934 68.732z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["travesti-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 441,
+ "id": 1908,
+ "name": "travesti-line",
+ "prevSize": 32,
+ "code": 60038
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 390
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 725.333v213.333h-85.333v-213.333c0-189.909 112.811-353.493 275.072-427.349l35.328 77.653c-67.127 30.531-124.045 79.74-163.955 141.751s-61.124 134.199-61.111 207.945zM341.333 725.333v213.333h-85.333v-213.333c0.006-73.737-21.213-145.916-61.123-207.919s-96.823-111.206-163.944-141.734l35.328-77.696c82.035 37.312 151.595 97.449 200.372 173.231 48.777 75.776 74.71 163.998 74.7 254.118zM512 512c-56.58 0-110.842-22.477-150.85-62.485-40.008-40.006-62.484-94.269-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.269-62.484 150.85-62.484s110.839 22.476 150.848 62.484c40.009 40.008 62.485 94.27 62.485 150.849s-22.477 110.842-62.485 150.848c-40.009 40.009-94.268 62.485-150.848 62.485zM512 426.667c16.811 0 33.455-3.311 48.981-9.743 15.531-6.433 29.641-15.861 41.527-27.747s21.316-25.996 27.746-41.526c6.434-15.53 9.745-32.174 9.745-48.983s-3.311-33.454-9.745-48.983c-6.43-15.53-15.859-29.64-27.746-41.526s-25.997-21.314-41.527-27.747c-15.526-6.432-32.171-9.743-48.981-9.743-33.95 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51c0 33.948 13.486 66.505 37.49 90.51s56.56 37.49 90.51 37.49z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["open-arm-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 442,
+ "id": 1907,
+ "name": "open-arm-line",
+ "prevSize": 32,
+ "code": 60039
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 391
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM298.667 725.333c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.269-62.485 150.849-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848h-85.333c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491c-33.946 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509h-85.333zM341.333 469.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM682.667 469.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.283-18.743-45.257c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-unhappy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 443,
+ "id": 1906,
+ "name": "emotion-unhappy-line",
+ "prevSize": 32,
+ "code": 60040
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 392
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c96.183 0 188.429 38.209 256.444 106.223s106.223 160.259 106.223 256.444c0 277.333-234.667 512-362.667 512s-362.667-234.667-362.667-512c0-96.185 38.209-188.431 106.223-256.444s160.259-106.223 256.444-106.223zM512 170.667c-73.553 0-144.094 29.219-196.104 81.229s-81.229 122.551-81.229 196.104c0 204.544 177.707 426.667 277.333 426.667s277.333-222.123 277.333-426.667c0-73.553-29.218-144.094-81.229-196.104s-122.551-81.229-196.105-81.229zM746.667 469.333c6.827 0 13.611 0.341 20.267 1.067 3.025 28.476-0.363 57.267-9.907 84.267s-25.007 51.52-45.257 71.77c-20.25 20.25-44.77 35.712-71.77 45.257s-55.791 12.932-84.267 9.907c-2.842-26.773-0.021-53.845 8.277-79.458 8.303-25.613 21.897-49.195 39.902-69.21 18.005-20.019 40.021-36.023 64.614-46.98s51.217-16.619 78.14-16.619zM277.333 469.333c26.924 0 53.547 5.662 78.141 16.619s46.608 26.961 64.614 46.98c18.005 20.015 31.599 43.597 39.902 69.21 8.299 25.613 11.119 52.685 8.277 79.458-28.476 3.025-57.268-0.363-84.268-9.907s-51.521-25.007-71.77-45.257c-20.249-20.25-35.712-44.77-45.257-71.77s-12.929-55.791-9.905-84.267c6.613-0.725 13.44-1.067 20.267-1.067z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["aliens-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 444,
+ "id": 1905,
+ "name": "aliens-line",
+ "prevSize": 32,
+ "code": 60041
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 393
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 554.667c33.754 0 66.752 10.010 94.818 28.762s49.941 45.41 62.857 76.595c12.919 31.185 16.299 65.498 9.711 98.607-6.583 33.105-22.839 63.514-46.707 87.381s-54.276 40.124-87.381 46.707c-33.109 6.588-67.422 3.209-98.607-9.711-31.185-12.915-57.843-34.79-76.595-62.857s-28.762-61.065-28.762-94.818h-85.333c-0.017 41.404-15.083 81.395-42.398 112.512-27.312 31.121-65.007 51.251-106.061 56.636-41.053 5.389-82.666-4.331-117.084-27.349s-59.294-57.762-69.994-97.762c-10.7-40-6.493-82.526 11.836-119.65 18.329-37.129 49.531-66.33 87.791-82.155 38.261-15.829 80.971-17.212 120.173-3.883 39.202 13.325 72.223 40.452 92.91 76.318h130.987c14.976-25.954 36.527-47.509 62.477-62.49 25.954-14.98 55.398-22.861 85.363-22.844zM298.667 640c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994zM725.333 640c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994zM682.667 128c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v128h85.333v85.333h-853.333v-85.333h85.333v-128c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h341.333zM682.667 213.333h-341.333c-44.971 0-85.333 40.533-85.333 85.333v128h512v-128c0-44.971-40.533-85.333-85.333-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spy-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 445, "id": 1904, "name": "spy-line", "prevSize": 32, "code": 60042 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 394
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v89.173c-38.618-13.653-79.945-17.839-120.516-12.211s-79.198 20.911-112.639 44.561c-33.441 23.65-60.719 54.98-79.542 91.358s-28.644 76.74-28.636 117.7l-85.333-0.043c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814v0.043zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM810.667 750.336l90.496-90.539 60.373 60.373-90.539 90.496 90.539 90.496-60.373 60.373-90.496-90.539-90.496 90.539-60.373-60.373 90.539-90.496-90.539-90.496 60.373-60.373 90.496 90.539z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-unfollow-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 446,
+ "id": 1903,
+ "name": "user-unfollow-line",
+ "prevSize": 32,
+ "code": 60043
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 395
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-682.667zM554.667 686.208v167.125h198.784c-15.253-43.034-41.719-81.212-76.668-110.592-34.944-29.385-77.103-48.9-122.116-56.533zM469.333 853.333v-167.125c-45.013 7.633-87.172 27.149-122.118 56.533-34.947 29.38-61.414 67.558-76.666 110.592h198.784zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 447,
+ "id": 1902,
+ "name": "user-2-line",
+ "prevSize": 32,
+ "code": 60044
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 396
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667v160.597c0 15.851-4.416 31.386-12.749 44.868-8.337 13.483-20.262 24.375-34.441 31.462l-123.477 61.739v42.667c0 32.649-12.471 64.064-34.871 87.821-22.396 23.753-53.026 38.050-85.619 39.966l-9.643 0.213c0.939-4.646 1.566-9.348 1.877-14.080l0.256-7.253v-21.333c0.009-21.53-8.124-42.266-22.763-58.048-14.639-15.787-34.701-25.459-56.171-27.072l-6.4-0.213h-85.333c-21.53-0.009-42.266 8.124-58.050 22.763-15.786 14.639-25.455 34.701-27.070 56.171l-0.213 6.4v21.333c0 7.296 0.725 14.464 2.133 21.333h-2.133c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-42.667l-123.477-61.739c-14.185-7.087-26.115-17.988-34.45-31.479s-12.747-29.035-12.739-44.894v-160.555c0-235.648 191.019-426.667 426.667-426.667zM512 170.667c-88.68 0.001-173.878 34.515-237.555 96.233s-100.836 145.797-103.607 234.433l-0.171 10.667v160.597l170.667 85.333v67.883l3.2-3.584c30.221-32.439 71.9-51.819 116.181-54.016l8.619-0.213 88.448 0.043 9.515 0.427c42.624 3.157 80.64 21.76 108.8 50.219l6.571 7.125v-67.883l170.667-85.333v-160.597c0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974zM341.333 469.333c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.708-24.994 60.34-24.994zM682.667 469.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skull-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 448,
+ "id": 1901,
+ "name": "skull-2-line",
+ "prevSize": 32,
+ "code": 60045
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 397
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-85.333v-85.333c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491h-256c-33.948 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509v85.333h-85.333v-85.333c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.27-62.485 150.849-62.485h256c56.58 0 110.844 22.477 150.848 62.485 40.009 40.004 62.485 94.268 62.485 150.848v85.333zM512 554.667c-33.617 0-66.906-6.622-97.967-19.486-31.059-12.868-59.281-31.723-83.052-55.497-23.772-23.77-42.629-51.989-55.494-83.051-12.865-31.059-19.487-64.349-19.487-97.967s6.621-66.908 19.487-97.967c12.865-31.059 31.722-59.281 55.494-83.052s51.993-42.629 83.052-55.494c31.061-12.865 64.35-19.487 97.967-19.487 67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982zM512 469.333c45.265 0 88.674-17.98 120.678-49.987 32.009-32.006 49.988-75.416 49.988-120.68s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68s17.981 88.673 49.987 120.68c32.006 32.007 75.415 49.987 120.68 49.987z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 449,
+ "id": 1900,
+ "name": "user-3-line",
+ "prevSize": 32,
+ "code": 60046
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 398
+ },
+ {
+ "icon": {
+ "paths": [
+ "M761.216 668.117l7.509 7.552 7.595-7.552c8.913-8.913 19.499-15.987 31.147-20.809 11.644-4.826 24.128-7.309 36.736-7.309s25.092 2.483 36.736 7.309c11.648 4.821 22.234 11.895 31.147 20.809s15.987 19.499 20.809 31.147c4.826 11.644 7.309 24.128 7.309 36.736s-2.483 25.092-7.309 36.736c-4.821 11.648-11.895 22.234-20.809 31.147l-143.36 143.317-143.275-143.317c-18.005-18.005-28.117-42.423-28.117-67.883s10.112-49.877 28.117-67.883c18.005-18.005 42.423-28.117 67.883-28.117s49.877 10.112 67.883 28.117zM512 597.333v85.333c-67.895 0-133.010 26.97-181.019 74.982-48.009 48.009-74.981 113.122-74.981 181.018h-85.333c0.001-88.678 34.515-173.879 96.233-237.555 61.719-63.68 145.797-100.834 234.433-103.607l10.667-0.171zM512 42.667c141.44 0 256 114.56 256 256 0.026 66.241-25.638 129.911-71.59 177.621s-108.612 75.746-174.81 78.208l-9.6 0.171c-141.44 0-256-114.56-256-256-0.024-66.241 25.638-129.911 71.591-177.622s108.612-75.745 174.809-78.208l9.6-0.171zM512 128c-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.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-heart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 450,
+ "id": 1899,
+ "name": "user-heart-line",
+ "prevSize": 32,
+ "code": 60047
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 399
+ },
+ {
+ "icon": {
+ "paths": [
+ "M415.787 927.787c-189.312-43.648-330.453-213.248-330.453-415.787 0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667c0 202.539-141.141 372.139-330.453 415.787l-96.213 96.213-96.213-96.213zM299.179 778.965c39.757 31.795 86.158 54.238 135.765 65.664l23.893 5.504 53.163 53.205 53.205-53.205 23.893-5.547c52.847-12.181 102.007-36.851 143.36-71.936-27.785-28.518-61.005-51.179-97.698-66.633-36.698-15.458-76.117-23.398-115.934-23.351-86.869 0-165.12 37.12-219.648 96.299zM239.616 717.653c35.859-38.054 79.133-68.365 127.153-89.058s99.77-31.33 152.058-31.262c50.419-0.064 100.352 9.83 146.931 29.116 46.583 19.285 88.9 47.582 124.514 83.268 36.527-51.409 58.095-111.932 62.319-174.852 4.22-62.921-9.071-125.782-38.404-181.608s-73.557-102.436-127.765-134.656c-54.212-32.221-116.288-48.794-179.345-47.881s-124.627 19.278-177.881 53.056c-53.254 33.778-96.109 81.649-123.811 138.301s-39.168 119.872-33.125 182.643c6.042 62.775 29.357 122.645 67.357 172.975v-0.043zM512 554.667c-45.265 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678 0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68 0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988zM512 469.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-pin-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 451,
+ "id": 1898,
+ "name": "account-pin-circle-line",
+ "prevSize": 32,
+ "code": 60048
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 400
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v85.333c-67.895 0-133.010 26.97-181.019 74.982-48.009 48.009-74.981 113.122-74.981 181.018h-85.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM768 917.333l-125.397 65.92 23.936-139.605-101.419-98.901 140.203-20.395 62.677-127.019 62.72 127.019 140.16 20.395-101.419 98.901 23.893 139.605-125.355-65.92z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-star-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 452,
+ "id": 1897,
+ "name": "user-star-line",
+ "prevSize": 32,
+ "code": 60049
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 401
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 173.013c192 21.205 341.333 183.979 341.333 381.653v384h-768v-384c0-197.675 149.333-360.448 341.333-381.653v-130.347h85.333v130.347zM810.667 853.333v-298.667c0-79.211-31.467-155.178-87.479-211.189-56.009-56.011-131.977-87.477-211.187-87.477s-155.178 31.467-211.189 87.477c-56.011 56.011-87.477 131.979-87.477 211.189v298.667h597.333zM512 768c-56.58 0-110.842-22.477-150.849-62.485-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.844 62.484-150.849c40.008-40.008 94.269-62.484 150.849-62.484s110.844 22.476 150.848 62.484c40.009 40.006 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM512 682.667c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491c-33.946 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491zM512 597.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["robot-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 453,
+ "id": 1896,
+ "name": "robot-line",
+ "prevSize": 32,
+ "code": 60050
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 402
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM341.333 554.667h341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.673-17.98-120.68-49.988c-32.006-32.004-49.987-75.413-49.987-120.678z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 454,
+ "id": 1895,
+ "name": "emotion-2-line",
+ "prevSize": 32,
+ "code": 60051
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 403
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v85.333c-67.895 0-133.010 26.97-181.019 74.982-48.009 48.009-74.981 113.122-74.981 181.018h-85.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM896 725.333h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v42.667zM810.667 725.333v-42.667c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v42.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["admin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 455,
+ "id": 1894,
+ "name": "admin-line",
+ "prevSize": 32,
+ "code": 60052
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 404
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 85.333c39.121 0.003 77.303 11.955 109.444 34.257s56.7 53.889 70.396 90.534c13.692 36.645 15.863 76.598 6.225 114.512-9.634 37.914-30.626 71.979-60.156 97.635 15.147 41.259 23.424 85.888 23.424 132.395-0.030 56.102-12.356 111.518-36.105 162.342-23.748 50.829-58.347 95.834-101.359 131.853-43.017 36.019-93.397 62.174-147.605 76.629-54.208 14.451-110.925 16.853-166.161 7.031-55.235-9.822-107.648-31.629-153.55-63.885s-84.179-74.176-112.138-122.816c-27.959-48.64-44.921-102.814-49.692-158.711s2.764-112.166 22.075-164.838c-20.903-18.165-37.629-40.637-49.031-65.873s-17.209-52.641-17.024-80.334c0.185-27.692 6.359-55.017 18.097-80.099s28.762-47.328 49.906-65.212c21.144-17.884 45.906-30.982 72.588-38.397s54.652-8.969 81.991-4.558c27.339 4.412 53.4 14.685 76.396 30.115s42.38 35.653 56.827 59.279c46.814-8.735 94.839-8.735 141.653 0 17.131-28.074 41.199-51.269 69.884-67.357s61.026-24.526 93.914-24.505zM746.667 170.667c-35.115 0-67.2 17.067-86.955 44.885l-4.053 6.144-30.635 50.176-57.813-10.795c-31.91-5.954-64.576-6.703-96.725-2.219l-13.483 2.219-57.856 10.88-30.72-50.176c-7.85-12.858-18.334-23.907-30.762-32.419s-26.519-14.297-41.344-16.971c-14.825-2.674-30.049-2.177-44.668 1.457s-28.303 10.324-40.151 19.629c-11.847 9.305-21.589 21.013-28.584 34.355s-11.085 28.014-12 43.051c-0.915 15.037 1.365 30.097 6.69 44.188s13.575 26.896 24.207 37.569l5.589 5.248 44.416 38.571-20.267 55.253c-15.004 40.969-20.851 84.723-17.13 128.192s16.92 85.594 38.67 123.413c21.749 37.82 51.52 70.417 87.219 95.497s76.458 42.035 119.415 49.668c42.953 7.637 87.057 5.773 129.212-5.466 42.159-11.238 81.34-31.578 114.79-59.584s60.361-63.002 78.835-102.524c18.479-39.522 28.070-82.615 28.105-126.242 0-30.549-4.565-60.416-13.397-88.875l-4.779-14.080-20.267-55.253 44.373-38.571c16.418-14.25 28.087-33.176 33.451-54.243s4.16-43.27-3.447-63.635c-7.607-20.365-21.252-37.919-39.113-50.312s-39.083-19.033-60.821-19.031zM426.666 554.667c0 22.63 8.99 44.335 24.995 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339h85.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.674-17.98-120.68-49.988c-32.006-32.004-49.987-75.413-49.987-120.678h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bear-smile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 456,
+ "id": 1893,
+ "name": "bear-smile-line",
+ "prevSize": 32,
+ "code": 60053
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 405
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM299.221 778.923c60.397 48.286 135.454 74.534 212.779 74.411 84.053 0 160.981-30.379 220.459-80.725-27.789-28.514-61.009-51.162-97.707-66.611-36.693-15.45-76.113-23.381-115.925-23.33-41.276-0.047-82.112 8.486-119.916 25.054-37.804 16.572-71.752 40.819-99.689 71.202zM239.616 717.653c35.859-38.054 79.133-68.365 127.153-89.058s99.77-31.33 152.058-31.262c50.419-0.064 100.352 9.83 146.931 29.116 46.583 19.285 88.9 47.582 124.514 83.268 36.527-51.409 58.095-111.932 62.319-174.852 4.22-62.921-9.071-125.782-38.404-181.608s-73.557-102.436-127.765-134.656c-54.212-32.221-116.288-48.794-179.345-47.881s-124.627 19.278-177.881 53.056c-53.254 33.778-96.109 81.649-123.811 138.301s-39.168 119.872-33.125 182.643c6.042 62.775 29.357 122.645 67.357 172.975v-0.043zM512 554.667c-45.265 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678 0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68 0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988zM512 469.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 457,
+ "id": 1892,
+ "name": "account-circle-line",
+ "prevSize": 32,
+ "code": 60054
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 406
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v89.173c-38.618-13.653-79.945-17.839-120.516-12.211s-79.198 20.911-112.639 44.561c-33.441 23.65-60.719 54.98-79.542 91.358s-28.644 76.74-28.636 117.7l-85.333-0.043c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814v0.043zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM768 725.333v-149.333l213.333 192-213.333 192v-149.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-shared-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 458,
+ "id": 1891,
+ "name": "user-shared-2-line",
+ "prevSize": 32,
+ "code": 60055
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 407
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v85.333c-67.895 0-133.010 26.97-181.019 74.982-48.009 48.009-74.981 113.122-74.981 181.018h-85.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM888.661 899.029l-120.661 124.971-120.661-124.971c-66.688-69.035-66.688-180.907 0-249.941 15.556-16.35 34.278-29.363 55.019-38.259 20.74-8.892 43.076-13.478 65.643-13.478s44.902 4.587 65.643 13.478c20.74 8.896 39.458 21.909 55.019 38.259 66.688 69.035 66.688 180.907 0 249.941zM827.307 839.723c34.688-35.925 34.688-95.403 0-131.328-7.599-8.119-16.785-14.588-26.987-19.012s-21.201-6.707-32.32-6.707c-11.119 0-22.118 2.283-32.32 6.707s-19.388 10.893-26.987 19.012c-34.688 35.925-34.688 95.403 0 131.371l59.307 61.355 59.307-61.397z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-location-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 459,
+ "id": 1890,
+ "name": "user-location-line",
+ "prevSize": 32,
+ "code": 60056
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 408
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v89.173c-38.618-13.653-79.945-17.839-120.516-12.211s-79.198 20.911-112.639 44.561c-33.441 23.65-60.719 54.98-79.542 91.358s-28.644 76.74-28.636 117.7l-85.333-0.043c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814v0.043zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM828.501 725.333h153.003v85.333h-153.003l78.037 77.995-60.331 60.373-181.035-181.035 181.035-181.035 60.331 60.373-78.037 77.995z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-received-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 460,
+ "id": 1889,
+ "name": "user-received-line",
+ "prevSize": 32,
+ "code": 60057
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 409
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 679.851c-80.386-10.897-153.635-51.917-204.933-114.761s-76.818-142.822-71.398-223.763c5.42-80.941 41.375-156.804 100.594-212.247s137.282-86.33 218.404-86.413c81.225-0.078 159.437 30.732 218.782 86.184s95.386 131.396 100.813 212.436c5.427 81.040-20.164 161.113-71.59 223.983-51.422 62.869-124.83 103.829-205.338 114.581v88.149h213.333v85.333h-213.333v170.667h-85.333v-170.667h-213.332v-85.333h213.332v-88.149zM512 597.333c62.238 0 121.929-24.725 165.935-68.732 44.011-44.011 68.732-103.697 68.732-165.935s-24.721-121.926-68.732-165.934c-44.006-44.009-103.697-68.733-165.935-68.733s-121.925 24.724-165.933 68.733c-44.009 44.009-68.732 103.697-68.732 165.934s24.724 121.924 68.732 165.935c44.009 44.006 103.695 68.732 165.933 68.732z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["women-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 461,
+ "id": 1888,
+ "name": "women-line",
+ "prevSize": 32,
+ "code": 60058
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 410
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974zM512 469.333c85.333 0 156.459 14.208 213.333 42.667 0 56.58-22.477 110.844-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848 56.875-28.459 128-42.667 213.333-42.667zM362.667 298.667c24.59-0.005 48.426 8.486 67.477 24.036 19.046 15.55 32.137 37.204 37.056 61.297h-209.067c4.918-24.093 18.009-45.747 37.058-61.297s42.885-24.041 67.475-24.036zM661.333 298.667c24.589-0.005 48.427 8.486 67.477 24.036 19.046 15.55 32.137 37.204 37.056 61.297h-209.067c4.919-24.093 18.010-45.747 37.056-61.297 19.051-15.55 42.889-24.041 67.477-24.036z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-laugh-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 462,
+ "id": 1887,
+ "name": "emotion-laugh-line",
+ "prevSize": 32,
+ "code": 60059
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 411
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v320c0.017 31.91-10.193 62.989-29.129 88.678-18.935 25.685-45.598 44.634-76.087 54.063-30.49 9.425-63.194 8.841-93.325-1.677-30.127-10.513-56.098-30.404-74.099-56.755-11.145 19.742-27.337 36.164-46.912 47.595-19.58 11.43-41.843 17.451-64.512 17.451s-44.932-6.020-64.512-17.451c-19.575-11.43-35.766-27.853-46.912-47.595-17.62 25.719-42.85 45.282-72.15 55.94s-61.201 11.878-91.229 3.49c-30.028-8.393-56.678-25.967-76.211-50.27-19.533-24.299-30.971-54.106-32.708-85.235l-0.213-8.277v-319.957c0-101.843 40.457-199.515 112.471-271.529s169.686-112.471 271.529-112.471zM512 170.667c-77.44-0.001-151.852 30.075-207.54 83.886s-88.3 127.148-90.956 204.541l-0.171 10.24v317.696l0.085 5.888c0.735 12.791 5.292 25.067 13.082 35.238s18.452 17.771 30.609 21.815c12.157 4.045 25.248 4.348 37.578 0.87s23.334-10.577 31.585-20.378l3.755-4.949c8.17-11.981 19.258-21.679 32.217-28.186 12.959-6.502 27.362-9.6 41.85-8.994s28.581 4.894 40.95 12.463c12.373 7.565 22.609 18.155 29.751 30.775 3.699 6.583 9.084 12.066 15.599 15.885s13.931 5.841 21.483 5.854c7.552 0.013 14.976-1.98 21.504-5.777s11.93-9.263 15.654-15.834c6.831-12.126 16.521-22.396 28.228-29.914 11.712-7.522 25.079-12.066 38.946-13.235s27.81 1.071 40.614 6.524c12.8 5.453 24.077 13.956 32.841 24.764l4.139 5.547c7.407 10.876 17.988 19.209 30.298 23.855 12.314 4.646 25.758 5.385 38.502 2.116 12.749-3.268 24.179-10.389 32.734-20.386 8.555-10.001 13.815-22.396 15.074-35.494l0.256-6.144v-320c0-79.212-31.467-155.178-87.479-211.189-56.009-56.011-131.977-87.477-211.187-87.477zM512 512c47.147 0 85.333 47.787 85.333 106.667s-38.187 106.667-85.333 106.667c-47.147 0-85.333-47.787-85.333-106.667s38.187-106.667 85.333-106.667zM405.333 341.333c16.974 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.283 18.743-45.257 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745zM618.667 341.333c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.283-18.743-45.257c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ghost-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 463,
+ "id": 1886,
+ "name": "ghost-line",
+ "prevSize": 32,
+ "code": 60060
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 412
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 682.667v170.667h170.667v85.333h-256v-256h85.333zM938.667 682.667v256h-256v-85.333h170.667v-170.667h85.333zM320 298.667c0.001 43.513 14.775 85.737 41.905 119.758s65.005 57.821 107.428 67.506v239.403h85.333l0.043-239.445c42.406-9.69 80.269-33.489 107.388-67.501 27.123-34.011 41.894-76.22 41.903-119.721h85.333c0.009 50.747-13.905 100.525-40.23 143.91-26.321 43.388-64.047 78.72-109.060 102.148l-0.043 265.941h-256v-265.899c-45.030-23.428-82.766-58.765-109.097-102.157-26.332-43.396-40.249-93.185-40.236-143.945h85.333zM512 213.333c28.288 0 55.42 11.238 75.426 31.242 20.002 20.004 31.241 47.135 31.241 75.425s-11.238 55.421-31.241 75.425c-20.006 20.004-47.138 31.242-75.426 31.242s-55.42-11.238-75.426-31.242c-20.003-20.004-31.241-47.135-31.241-75.425s11.238-55.421 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242zM341.333 85.333v85.333l-170.667-0.043v170.709h-85.333v-256h256zM938.667 85.333v256h-85.333v-170.667h-170.667v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["body-scan-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 464,
+ "id": 1885,
+ "name": "body-scan-line",
+ "prevSize": 32,
+ "code": 60061
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 413
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v89.173c-38.618-13.653-79.945-17.839-120.516-12.211s-79.198 20.911-112.639 44.561c-33.441 23.65-60.719 54.98-79.542 91.358s-28.644 76.74-28.636 117.7l-85.333-0.043c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814v0.043zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM759.168 849.664l150.827-150.827 60.373 60.331-211.2 211.2-150.869-150.869 60.373-60.331 90.496 90.496z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-follow-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 465,
+ "id": 1884,
+ "name": "user-follow-line",
+ "prevSize": 32,
+ "code": 60062
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 414
+ },
+ {
+ "icon": {
+ "paths": [
+ "M315.307 705.664c-59.244-41.779-103.648-101.338-126.778-170.039-23.13-68.706-23.785-142.991-1.871-212.093s65.262-129.432 123.76-172.25c58.498-42.817 129.108-65.898 201.603-65.898s143.104 23.081 201.604 65.898c58.496 42.818 101.845 103.148 123.759 172.25s21.261 143.387-1.869 212.093c-23.13 68.702-67.537 128.26-126.78 170.039l88.875 203.093c1.429 3.251 2.022 6.805 1.728 10.347-0.294 3.537-1.468 6.946-3.413 9.916s-4.599 5.41-7.727 7.091c-3.123 1.685-6.622 2.564-10.172 2.556h-532.053c-3.545 0.004-7.035-0.875-10.156-2.556s-5.772-4.117-7.716-7.078c-1.943-2.965-3.118-6.37-3.417-9.899-0.299-3.533 0.287-7.087 1.705-10.334l88.875-203.136h0.043zM602.667 676.096l56.832-40.149c44.446-31.326 77.764-75.989 95.125-127.522 17.361-51.529 17.86-107.25 1.429-159.085s-48.939-97.091-92.813-129.211c-43.878-32.12-96.841-49.434-151.219-49.434-54.374 0-107.341 17.315-151.217 49.434s-76.385 77.376-92.816 129.211c-16.431 51.835-15.93 107.556 1.431 159.085 17.36 51.533 50.678 96.196 95.125 127.522l56.789 40.149-77.525 177.237h336.384l-77.525-177.237zM346.411 468.053l82.773-20.693c4.595 18.492 15.245 34.91 30.251 46.647 15.010 11.738 33.515 18.112 52.565 18.112s37.555-6.374 52.565-18.112c15.010-11.738 25.655-28.156 30.251-46.647l82.773 20.693c-9.28 36.885-30.613 69.615-60.612 93.001-29.995 23.381-66.944 36.079-104.977 36.079s-74.982-12.698-104.978-36.079c-29.997-23.386-51.329-56.115-60.611-93.001z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 466,
+ "id": 1883,
+ "name": "user-5-line",
+ "prevSize": 32,
+ "code": 60063
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 415
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 853.333h597.333v85.333h-597.333v-85.333zM512 768c-90.527 0-177.347-35.964-241.359-99.972-64.013-64.013-99.974-150.835-99.974-241.361 0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359 0 90.526-35.964 177.348-99.972 241.361-64.013 64.009-150.835 99.972-241.361 99.972zM512 682.667c67.895 0 133.009-26.97 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019s26.971 133.009 74.981 181.018c48.009 48.013 113.124 74.982 181.019 74.982z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 467,
+ "id": 1882,
+ "name": "user-4-line",
+ "prevSize": 32,
+ "code": 60064
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 416
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 469.333c56.58 0 110.844 22.477 150.848 62.485 40.009 40.004 62.485 94.268 62.485 150.848v256h-85.333v-256c0-32.649-12.471-64.064-34.871-87.821-22.396-23.753-53.026-38.050-85.619-39.966l-7.509-0.213c-32.649 0-64.064 12.471-87.819 34.871-23.755 22.396-38.052 53.026-39.968 85.619l-0.213 7.509v256h-85.333v-256c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.269-62.485 150.849-62.485zM234.667 597.333c11.904 0 23.467 1.408 34.56 4.011-7.295 21.717-11.615 44.322-12.843 67.2l-0.384 14.123v3.669c-4.905-1.754-10.006-2.901-15.189-3.413l-6.144-0.256c-15.91 0-31.249 5.926-43.026 16.623s-19.148 25.395-20.675 41.233l-0.299 6.144v192h-85.333v-192c0-39.607 15.733-77.589 43.739-105.596s65.989-43.738 105.594-43.738zM789.333 597.333c39.607 0 77.589 15.731 105.596 43.738s43.738 65.988 43.738 105.596v192h-85.333v-192c0-15.91-5.926-31.249-16.623-43.025s-25.395-19.149-41.233-20.676l-6.144-0.299c-7.467 0-14.635 1.28-21.333 3.627v-3.627c0-28.416-4.608-55.723-13.184-81.237 11.051-2.688 22.613-4.096 34.517-4.096zM234.667 341.333c28.29 0 55.421 11.238 75.425 31.242s31.242 47.135 31.242 75.425c0 28.288-11.238 55.42-31.242 75.426-20.004 20.002-47.135 31.241-75.425 31.241s-55.421-11.238-75.425-31.241c-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.425-31.242zM789.333 341.333c28.288 0 55.42 11.238 75.426 31.242 20.002 20.004 31.241 47.135 31.241 75.425 0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.002-20.006-31.241-47.138-31.241-75.426 0-28.29 11.238-55.421 31.241-75.425 20.006-20.004 47.138-31.242 75.426-31.242zM234.667 426.667c-5.658 0-11.084 2.249-15.085 6.246-4.001 4.002-6.249 9.429-6.249 15.087s2.248 11.085 6.249 15.087c4 3.998 9.427 6.246 15.085 6.246s11.084-2.249 15.085-6.246c4.001-4.002 6.249-9.429 6.249-15.087s-2.248-11.085-6.249-15.087c-4-3.998-9.427-6.246-15.085-6.246zM789.333 426.667c-5.658 0-11.085 2.249-15.087 6.246-3.998 4.002-6.246 9.429-6.246 15.087s2.249 11.085 6.246 15.087c4.002 3.998 9.429 6.246 15.087 6.246s11.085-2.249 15.087-6.246c3.998-4.002 6.246-9.429 6.246-15.087s-2.249-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246zM512 85.333c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68s-17.98 88.673-49.988 120.68c-32.004 32.006-75.413 49.987-120.678 49.987s-88.673-17.981-120.68-49.987c-32.006-32.006-49.987-75.416-49.987-120.68s17.981-88.673 49.987-120.68c32.006-32.006 75.415-49.987 120.68-49.987zM512 170.667c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["team-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 468,
+ "id": 1881,
+ "name": "team-line",
+ "prevSize": 32,
+ "code": 60065
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 417
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 384c28.29 0 55.421-11.238 75.425-31.242s31.242-47.135 31.242-75.425c0-28.29-11.238-55.421-31.242-75.425s-47.135-31.242-75.425-31.242c-28.29 0-55.421 11.238-75.425 31.242s-31.242 47.135-31.242 75.425c0 28.29 11.238 55.421 31.242 75.425s47.135 31.242 75.425 31.242zM298.667 469.333c-25.214 0-50.181-4.966-73.475-14.613-23.294-9.651-44.46-23.795-62.289-41.622-17.829-17.829-31.971-38.995-41.62-62.289s-14.615-48.262-14.615-73.475c0-25.214 4.966-50.181 14.615-73.475s23.792-44.46 41.62-62.289c17.829-17.829 38.995-31.971 62.289-41.62s48.262-14.615 73.475-14.615c50.921 0 99.758 20.229 135.765 56.236 36.006 36.007 56.235 84.843 56.235 135.764s-20.228 99.758-56.235 135.764c-36.008 36.007-84.844 56.236-135.765 56.236zM746.667 554.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM746.667 640c-45.265 0-88.674-17.98-120.678-49.988-32.009-32.004-49.988-75.413-49.988-120.678 0-45.264 17.98-88.673 49.988-120.68 32.004-32.006 75.413-49.987 120.678-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.416 49.988 120.68 0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988zM853.333 896v-21.333c0-28.288-11.238-55.42-31.241-75.426-20.006-20.002-47.138-31.241-75.426-31.241s-55.42 11.238-75.426 31.241c-20.002 20.006-31.241 47.138-31.241 75.426v21.333h-85.333v-21.333c0-25.212 4.966-50.18 14.613-73.476 9.651-23.292 23.795-44.459 41.621-62.289 17.83-17.826 38.997-31.97 62.289-41.621 23.296-9.647 48.265-14.613 73.476-14.613s50.18 4.966 73.476 14.613c23.292 9.651 44.459 23.795 62.289 41.621 17.826 17.83 31.97 38.997 41.621 62.289 9.647 23.296 14.613 48.265 14.613 73.476v21.333h-85.333zM426.667 896v-170.667c0-33.946-13.486-66.505-37.49-90.509s-56.562-37.491-90.51-37.491c-33.948 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509v170.667h-85.333v-170.667c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.27-62.485 150.849-62.485s110.842 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848v170.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parent-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 469,
+ "id": 1880,
+ "name": "parent-line",
+ "prevSize": 32,
+ "code": 60066
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 418
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v320c0.017 31.91-10.193 62.989-29.129 88.678-18.935 25.685-45.598 44.634-76.087 54.063-30.49 9.425-63.194 8.841-93.325-1.677-30.127-10.513-56.098-30.404-74.099-56.755-11.145 19.742-27.337 36.164-46.912 47.595-19.58 11.43-41.843 17.451-64.512 17.451s-44.932-6.020-64.512-17.451c-19.575-11.43-35.766-27.853-46.912-47.595-17.62 25.719-42.85 45.282-72.15 55.94s-61.201 11.878-91.229 3.49c-30.028-8.393-56.678-25.967-76.211-50.27-19.533-24.299-30.971-54.106-32.708-85.235l-0.213-8.277v-319.957c0-101.843 40.457-199.515 112.471-271.529s169.686-112.471 271.529-112.471zM512 170.667c-77.44-0.001-151.852 30.075-207.54 83.886s-88.3 127.148-90.956 204.541l-0.171 10.24v317.696l0.085 5.888c0.735 12.791 5.292 25.067 13.082 35.238s18.452 17.771 30.609 21.815c12.157 4.045 25.248 4.348 37.578 0.87s23.334-10.577 31.585-20.378l3.755-4.949c8.17-11.981 19.258-21.679 32.217-28.186 12.959-6.502 27.362-9.6 41.85-8.994s28.581 4.894 40.95 12.463c12.373 7.565 22.609 18.155 29.751 30.775 3.699 6.583 9.084 12.066 15.599 15.885s13.931 5.841 21.483 5.854c7.552 0.013 14.976-1.98 21.504-5.777s11.93-9.263 15.654-15.834c6.831-12.126 16.521-22.396 28.228-29.914 11.712-7.522 25.079-12.066 38.946-13.235s27.81 1.071 40.614 6.524c12.8 5.453 24.077 13.956 32.841 24.764l4.139 5.547c7.407 10.876 17.988 19.209 30.298 23.855 12.314 4.646 25.758 5.385 38.502 2.116 12.749-3.268 24.179-10.389 32.734-20.386 8.555-10.001 13.815-22.396 15.074-35.494l0.256-6.144v-320c0-79.212-31.467-155.178-87.479-211.189-56.009-56.011-131.977-87.477-211.187-87.477zM682.667 554.667c0 44.527-17.399 87.287-48.486 119.164s-73.399 50.338-117.914 51.452c-44.51 1.114-87.693-15.211-120.336-45.491-32.643-30.285-52.159-72.124-54.384-116.591l-0.213-8.533h85.333c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339h85.333zM512 298.667c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ghost-smile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 470,
+ "id": 1879,
+ "name": "ghost-smile-line",
+ "prevSize": 32,
+ "code": 60067
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 419
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-85.333c0-67.895-26.97-133.009-74.982-181.018-48.009-48.013-113.122-74.982-181.018-74.982s-133.010 26.97-181.019 74.982c-48.009 48.009-74.981 113.122-74.981 181.018h-85.333zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 471,
+ "id": 1878,
+ "name": "user-line",
+ "prevSize": 32,
+ "code": 60068
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 420
+ },
+ {
+ "icon": {
+ "paths": [
+ "M642.133 364.245l150.827-150.912h-195.627v-85.333h341.333v341.333h-85.333v-195.669l-150.912 150.912c49.233 64.533 72.098 145.365 63.974 226.125-8.128 80.764-46.639 155.418-107.742 208.849s-140.224 81.651-221.346 78.938c-81.124-2.714-158.185-36.151-215.581-93.547s-90.834-134.455-93.547-215.582c-2.713-81.122 25.504-160.243 78.936-221.346 53.432-61.101 128.087-99.614 208.848-107.74s161.593 14.742 226.126 63.973h0.043zM448 853.333c62.238 0 121.924-24.725 165.935-68.732 44.006-44.011 68.732-103.697 68.732-165.935s-24.725-121.924-68.732-165.935c-44.011-44.008-103.697-68.732-165.935-68.732s-121.926 24.724-165.935 68.732c-44.009 44.011-68.732 103.697-68.732 165.935s24.724 121.924 68.732 165.935c44.009 44.006 103.697 68.732 165.935 68.732z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["men-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 472, "id": 1877, "name": "men-line", "prevSize": 32, "code": 60069 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 421
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v85.333c-67.895 0-133.010 26.97-181.019 74.982-48.009 48.009-74.981 113.122-74.981 181.018h-85.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM622.72 802.645c-5.41-22.767-5.41-46.481 0-69.248l-42.325-24.448 42.667-73.899 42.325 24.448c16.99-16.090 37.525-27.959 59.947-34.645v-48.853h85.333v48.853c22.699 6.741 43.179 18.773 59.947 34.645l42.325-24.448 42.667 73.899-42.325 24.448c5.402 22.75 5.402 46.455 0 69.205l42.325 24.448-42.667 73.899-42.325-24.448c-16.99 16.090-37.525 27.959-59.947 34.645v48.853h-85.333v-48.853c-22.421-6.686-42.957-18.556-59.947-34.645l-42.325 24.448-42.667-73.899 42.325-24.405zM768 832c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-settings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 473,
+ "id": 1876,
+ "name": "user-settings-line",
+ "prevSize": 32,
+ "code": 60070
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 422
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c73.101-0.003 144.687 20.861 206.34 60.138s110.814 95.338 141.705 161.592c30.891 66.254 42.231 139.951 32.683 212.424-9.549 72.478-39.586 140.723-86.583 196.715 53.547 35.413 86.741 80.64 89.643 130.091l0.213 7.040-384 85.333-384-85.333 0.213-7.040c2.859-49.493 36.096-94.72 89.6-130.133-58.133-69.094-89.948-156.531-89.813-246.827 0-101.843 40.457-199.515 112.471-271.529s169.686-112.471 271.529-112.471zM512 170.667c-79.211 0-155.178 31.467-211.189 87.477s-87.477 131.978-87.477 211.189c0 66.859 21.931 130.133 61.653 181.803l8.192 10.197 61.568 73.259-83.712 55.424-5.845 4.139 256.81 57.088 256.768-57.088-2.091-1.536-7.595-5.248-79.829-52.779 61.568-73.301c45.239-53.717 69.986-121.728 69.845-191.957 0-79.212-31.467-155.178-87.475-211.189-56.013-56.011-131.981-87.477-211.191-87.477zM512 554.667c58.88 0 106.667 28.672 106.667 64s-47.787 64-106.667 64c-58.88 0-106.666-28.672-106.666-64s47.786-64 106.666-64zM384 341.333c47.146 0 85.333 28.672 85.333 64s-38.187 64-85.333 64c-47.147 0-85.333-28.672-85.333-64s38.187-64 85.333-64zM640 341.333c47.147 0 85.333 28.672 85.333 64s-38.187 64-85.333 64c-47.147 0-85.333-28.672-85.333-64s38.187-64 85.333-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["criminal-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 474,
+ "id": 1875,
+ "name": "criminal-line",
+ "prevSize": 32,
+ "code": 60071
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 423
+ },
+ {
+ "icon": {
+ "paths": [
+ "M407.467 490.667c-25.461 0-49.879-10.116-67.882-28.117-18.004-18.005-28.118-42.422-28.118-67.883s10.114-49.879 28.118-67.882c18.004-18.004 42.421-28.118 67.882-28.118 25.459 0 49.877 10.114 67.883 28.118 18.001 18.004 28.117 42.421 28.117 67.882s-10.116 49.877-28.117 67.883c-18.005 18.001-42.423 28.117-67.883 28.117zM426.667 842.581v-142.848c0-20.821 6.144-39.979 17.237-57.088-38.031-5.41-76.771-2.829-113.747 7.582s-71.373 28.42-100.995 52.877c46.638 69.018 116.87 118.63 197.504 139.52v-0.043zM189.995 625.493c62.314-46.114 137.817-70.95 215.339-70.827 44.501 0 87.168 8.021 126.592 22.699 37.461-14.635 82.133-22.699 129.408-22.699 70.827 0 135.893 18.091 179.456 49.323 14.4-51.631 16.439-105.929 5.952-158.498-10.487-52.566-33.212-101.924-66.325-144.075s-75.691-75.911-124.279-98.545c-48.589-22.634-101.828-33.506-155.401-31.736-53.577 1.77-105.98 16.133-152.97 41.926s-87.245 62.289-117.504 106.534c-30.26 44.245-49.673 94.995-56.669 148.139-6.996 53.146-1.377 107.191 16.402 157.76zM805.504 686.336c-16.768-22.741-72.875-46.336-144.171-46.336-85.589 0-149.333 34.005-149.333 59.733v153.6c59.213 0.034 117.419-15.347 168.887-44.629 51.469-29.278 94.43-71.45 124.659-122.368h-0.043zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM661.333 533.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["group-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 475,
+ "id": 1874,
+ "name": "group-2-line",
+ "prevSize": 32,
+ "code": 60072
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 424
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667 0 31.019-3.285 61.227-9.6 90.368l-76.032-76.075c3.132-74.889-18.479-148.73-61.487-210.118-43.012-61.388-105.033-106.911-176.491-129.542s-148.382-21.111-218.888 4.325c-70.508 25.436-130.684 73.374-171.236 136.413s-59.226 137.674-53.14 212.383c6.086 74.709 36.595 145.335 86.816 200.981 50.221 55.642 117.362 93.205 191.059 106.897 73.694 13.687 149.845 2.735 216.7-31.164 16.286 25.809 39.198 46.775 66.347 60.715-66.551 40.324-142.899 61.589-220.715 61.483-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM810.667 604.672l60.331 60.331c11.746 11.742 19.81 26.654 23.202 42.906 3.396 16.256 1.971 33.148-4.092 48.61-6.063 15.458-16.508 28.813-30.050 38.421-13.542 9.613-29.594 15.066-46.187 15.689-16.597 0.623-33.011-3.61-47.236-12.181-14.225-8.567-25.638-21.099-32.845-36.062-7.206-14.959-9.89-31.697-7.727-48.162 2.167-16.465 9.088-31.94 19.921-44.527l4.352-4.693 60.331-60.331zM512 640c62.549 0 118.827 26.923 157.867 69.845l-40.32 36.693c-33.707-13.44-74.112-21.205-117.547-21.205s-83.84 7.808-117.547 21.163l-40.32-36.693c19.977-22.020 44.346-39.607 71.537-51.627 27.189-12.023 56.599-18.214 86.329-18.176zM362.667 426.667c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743zM661.333 426.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-sad-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 476,
+ "id": 1873,
+ "name": "emotion-sad-line",
+ "prevSize": 32,
+ "code": 60073
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 425
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 21.333l180.309 263.808 306.645 89.984-195.2 253.013 9.173 319.403-300.928-107.435-300.928 107.435 9.173-319.403-195.2-253.013 306.646-89.984 180.309-263.808zM512 172.544l-127.061 185.941-216.107 63.36 137.6 178.261-6.528 225.067 212.096-75.691 212.053 75.691-6.485-225.067 137.557-178.261-216.064-63.36-127.061-185.941zM426.667 512c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339h85.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.673-17.98-120.679-49.988c-32.006-32.004-49.987-75.413-49.987-120.678h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-smile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 477,
+ "id": 1872,
+ "name": "star-smile-line",
+ "prevSize": 32,
+ "code": 60074
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 426
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-85.333c0-67.895-26.97-133.009-74.982-181.018-48.009-48.013-113.122-74.982-181.018-74.982s-133.010 26.97-181.019 74.982c-48.009 48.009-74.981 113.122-74.981 181.018h-85.333zM426.667 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM426.667 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM780.117 627.328c59.959 27.004 110.848 70.75 146.543 125.982s54.682 119.595 54.673 185.357h-85.333c0.009-49.323-14.225-97.6-40.998-139.025s-64.939-74.236-109.914-94.49l34.987-77.824h0.043zM750.763 145.621c42.987 17.719 79.744 47.81 105.6 86.452 25.86 38.643 39.654 84.096 39.637 130.593 0.017 58.553-21.858 114.995-61.333 158.242-39.471 43.247-93.687 70.174-152 75.486v-85.888c31.612-4.527 60.941-19.072 83.682-41.493 22.741-22.426 37.692-51.549 42.662-83.096 4.966-31.547-0.307-63.856-15.053-92.185s-38.187-51.183-66.876-65.21l23.68-82.901z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["group-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 478,
+ "id": 1871,
+ "name": "group-line",
+ "prevSize": 32,
+ "code": 60075
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 427
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 896l-85.333 85.333-85.333-85.333h-213.547c-22.575 0-44.226-8.969-60.189-24.93-15.963-15.966-24.931-37.615-24.931-60.19v-597.76c0-47.019 38.101-85.12 85.12-85.12h597.76c47.019 0 85.12 38.101 85.12 85.12v597.76c0 22.575-8.969 44.224-24.93 60.19-15.966 15.962-37.615 24.93-60.19 24.93h-213.547zM810.667 810.667v-597.333h-597.333v597.333h248.661l50.005 50.005 50.005-50.005h248.661zM340.139 775.68c-26.241-11.366-51.27-25.344-74.709-41.728 27.062-41.941 64.212-76.425 108.049-100.292s92.963-36.356 142.874-36.326c102.4 0 192.725 51.499 246.528 130.005-22.989 17.007-47.633 31.659-73.557 43.733-19.759-27.392-45.747-49.694-75.823-65.067-30.076-15.369-63.373-23.369-97.148-23.339-73.173 0-137.813 36.864-176.213 93.013zM512 554.667c-19.61 0-39.031-3.861-57.148-11.366s-34.58-18.505-48.447-32.371c-13.867-13.867-24.867-30.332-32.372-48.448s-11.367-37.537-11.367-57.148c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.33-24.867 48.447-32.372s37.538-11.367 57.148-11.367c39.607 0 77.589 15.733 105.596 43.739s43.738 65.989 43.738 105.594c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738zM512 469.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-pin-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 479,
+ "id": 1870,
+ "name": "account-pin-box-line",
+ "prevSize": 32,
+ "code": 60076
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 428
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM298.667 512h85.333c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509h85.333c0 56.58-22.477 110.844-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-smile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 480,
+ "id": 1869,
+ "name": "user-smile-line",
+ "prevSize": 32,
+ "code": 60077
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 429
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 213.12c0-47.019 38.101-85.12 85.12-85.12h597.76c47.019 0 85.12 38.101 85.12 85.12v597.76c0 22.575-8.969 44.224-24.93 60.19-15.966 15.962-37.615 24.93-60.19 24.93h-597.76c-22.575 0-44.226-8.969-60.189-24.93-15.963-15.966-24.931-37.615-24.931-60.19v-597.76zM213.333 213.333v597.333h597.333v-597.333h-597.333zM340.139 775.68c-26.241-11.366-51.27-25.344-74.709-41.728 27.062-41.941 64.212-76.425 108.049-100.292s92.963-36.356 142.874-36.326c102.4 0 192.725 51.499 246.528 130.005-22.989 17.007-47.633 31.659-73.557 43.733-19.759-27.392-45.747-49.694-75.823-65.067-30.076-15.369-63.373-23.369-97.148-23.339-73.173 0-137.813 36.864-176.213 93.013zM512 554.667c-19.61 0-39.031-3.861-57.148-11.366s-34.58-18.505-48.447-32.371c-13.867-13.867-24.867-30.332-32.372-48.448s-11.367-37.537-11.367-57.148c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.33-24.867 48.447-32.372s37.538-11.367 57.148-11.367c39.607 0 77.589 15.733 105.596 43.739s43.738 65.989 43.738 105.594c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738zM512 469.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 481,
+ "id": 1868,
+ "name": "account-box-line",
+ "prevSize": 32,
+ "code": 60078
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 430
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v89.173c-38.618-13.653-79.945-17.839-120.516-12.211s-79.198 20.911-112.639 44.561c-33.441 23.65-60.719 54.98-79.542 91.358s-28.644 76.74-28.636 117.7l-85.333-0.043c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814v0.043zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM793.003 725.333l-78.037-77.995 60.373-60.373 180.992 181.035-180.992 181.035-60.373-60.373 78.037-77.995h-153.003v-85.333h153.003z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-shared-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 482,
+ "id": 1867,
+ "name": "user-shared-line",
+ "prevSize": 32,
+ "code": 60079
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 431
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 725.333c156.245 0 292.907 67.2 367.232 167.467l-78.592 37.163c-60.501-71.68-167.168-119.296-288.64-119.296s-228.139 47.616-288.64 119.296l-78.549-37.205c74.325-100.267 210.944-167.424 367.189-167.424zM512 85.333c56.58 0 110.839 22.476 150.848 62.484s62.485 94.27 62.485 150.849v128c-0.004 54.976-21.227 107.827-59.251 147.533-38.020 39.706-89.903 63.202-144.823 65.587l-9.259 0.213c-56.58 0-110.842-22.477-150.85-62.485-40.008-40.004-62.484-94.268-62.484-150.848v-128c0.003-54.974 21.228-107.825 59.249-147.532s89.9-63.202 144.825-65.588l9.259-0.213zM512 170.667c-32.649-0.002-64.064 12.473-87.819 34.871s-38.052 53.027-39.968 85.62l-0.213 7.509v128c-0.032 33.318 12.929 65.335 36.129 89.25s54.811 37.841 88.116 38.818c33.301 0.977 65.677-11.068 90.24-33.583 24.563-22.511 39.377-53.713 41.301-86.976l0.213-7.509v-128c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-6-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 483,
+ "id": 1866,
+ "name": "user-6-line",
+ "prevSize": 32,
+ "code": 60080
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 432
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v85.333c-67.895 0-133.010 26.97-181.019 74.982-48.009 48.009-74.981 113.122-74.981 181.018h-85.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM915.029 854.699l64.171 64.171-60.331 60.331-64.171-64.171c-35.785 21.099-78.033 28.42-118.827 20.599-40.798-7.825-77.342-30.259-102.78-63.1s-38.025-73.83-35.405-115.285c2.624-41.459 20.275-80.533 49.647-109.909 29.376-29.372 68.45-47.023 109.909-49.647 41.455-2.62 82.445 9.967 115.285 35.405s55.275 61.982 63.1 102.78c7.821 40.794 0.499 83.042-20.599 118.827zM768 853.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-search-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 484,
+ "id": 1865,
+ "name": "user-search-line",
+ "prevSize": 32,
+ "code": 60081
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 433
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM341.333 554.667h341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.673-17.98-120.68-49.988c-32.006-32.004-49.987-75.413-49.987-120.678zM341.333 469.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM682.667 469.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.283-18.743-45.257c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 485,
+ "id": 1864,
+ "name": "emotion-line",
+ "prevSize": 32,
+ "code": 60082
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 434
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM341.333 597.333h341.333v85.333h-341.333v-85.333zM341.333 469.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM682.667 469.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.283-18.743-45.257c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-normal-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 486,
+ "id": 1863,
+ "name": "emotion-normal-line",
+ "prevSize": 32,
+ "code": 60083
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 435
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v89.173c-38.618-13.653-79.945-17.839-120.516-12.211s-79.198 20.911-112.639 44.561c-33.441 23.65-60.719 54.98-79.542 91.358s-28.644 76.74-28.636 117.7l-85.333-0.043c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814v0.043zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM853.333 725.333h128v85.333h-128v149.333l-213.333-192 213.333-192v149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-received-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 487,
+ "id": 1862,
+ "name": "user-received-2-line",
+ "prevSize": 32,
+ "code": 60084
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 436
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v89.173c-38.618-13.653-79.945-17.839-120.516-12.211s-79.198 20.911-112.639 44.561c-33.441 23.65-60.719 54.98-79.542 91.358s-28.644 76.74-28.636 117.7l-85.333-0.043c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814v0.043zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM512 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667zM768 725.333v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 488,
+ "id": 1861,
+ "name": "user-add-line",
+ "prevSize": 32,
+ "code": 60085
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 437
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 301.483c80.388 10.898 153.634 51.916 204.932 114.76 51.302 62.844 76.821 142.823 71.398 223.766-5.419 80.939-41.374 156.804-100.591 212.245-59.221 55.445-137.284 86.327-218.406 86.413-81.22 0.077-159.434-30.733-218.781-86.182-59.347-55.454-95.386-131.396-100.813-212.437s20.166-161.114 71.59-223.981c51.424-62.869 124.83-103.832 205.337-114.583v-258.816h85.333v258.816zM512 853.333c62.238 0 121.924-24.725 165.935-68.732 44.006-44.011 68.732-103.697 68.732-165.935s-24.725-121.924-68.732-165.935c-44.011-44.008-103.697-68.732-165.935-68.732s-121.926 24.724-165.935 68.732c-44.009 44.011-68.733 103.697-68.733 165.935s24.724 121.924 68.733 165.935c44.009 44.006 103.697 68.732 165.935 68.732z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["genderless-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 489,
+ "id": 1860,
+ "name": "genderless-line",
+ "prevSize": 32,
+ "code": 60086
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 438
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 298.667h213.333v85.333h-213.333v-85.333zM725.333 512h298.667v85.333h-298.667v-85.333zM853.333 725.333h170.667v85.333h-170.667v-85.333zM85.333 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-85.333c0-67.895-26.97-133.009-74.982-181.018-48.009-48.013-113.122-74.982-181.018-74.982s-133.010 26.97-181.019 74.982c-48.009 48.009-74.981 113.122-74.981 181.018h-85.333zM426.667 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM426.667 469.333c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 490,
+ "id": 1859,
+ "name": "contacts-line",
+ "prevSize": 32,
+ "code": 60087
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 439
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM298.667 554.667h85.333c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509h85.333c0 56.58-22.477 110.844-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848zM341.333 469.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM682.667 469.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.283-18.743-45.257c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-happy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 491,
+ "id": 1858,
+ "name": "emotion-happy-line",
+ "prevSize": 32,
+ "code": 60088
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 440
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c149.333 0 256 128 298.667 256 128 42.667 170.667 159.147 170.667 256l-118.4 33.835c-8.909 2.547-16.747 7.927-22.327 15.326s-8.602 16.41-8.606 25.677v63.829c0 19.802-7.868 38.793-21.871 52.796s-32.994 21.871-52.796 21.871h-25.429c-14.097-0.004-27.977 3.49-40.393 10.159-12.42 6.673-22.993 16.316-30.775 28.070-39.595 59.904-89.173 89.771-148.736 89.771s-109.141-29.909-148.736-89.771c-7.782-11.755-18.354-21.397-30.773-28.070-12.419-6.669-26.297-10.163-40.395-10.159h-25.429c-19.803 0-38.795-7.868-52.797-21.871s-21.869-32.994-21.869-52.796v-63.829c-0.004-9.267-3.025-18.278-8.606-25.677s-13.418-12.779-22.327-15.326l-118.4-33.835c0-96.683 42.667-213.333 170.667-256 42.667-128 149.333-256 298.667-256zM512 170.667c-90.027 0-173.44 76.288-213.803 186.496l-3.925 11.136-13.483 40.533-40.491 13.44c-53.547 17.877-88.192 57.216-103.424 109.227l-0.981 3.669 48.64 13.952c25.469 7.279 48.052 22.285 64.635 42.94s26.349 45.948 27.951 72.388l0.213 7.723v53.163h14.763c26.495 0 52.626 6.17 76.324 18.018s44.312 29.052 60.209 50.249l5.803 8.192c24.576 37.163 48.384 51.541 77.568 51.541 27.221 0 49.792-12.501 72.661-44.373l4.907-7.168c14.622-22.089 34.189-40.469 57.143-53.687 22.959-13.222 48.678-20.915 75.123-22.473l10.069-0.299h14.763v-53.163c-0.004-26.496 8.213-52.343 23.522-73.971 15.305-21.628 36.949-37.969 61.939-46.775l7.381-2.304 48.597-13.952-0.981-3.712c-14.379-49.109-46.080-86.912-94.72-105.984l-8.704-3.2-40.533-13.483-13.44-40.491c-38.741-116.139-124.715-197.632-217.728-197.632zM512 512c35.328 0 64 47.787 64 106.667s-28.672 106.667-64 106.667c-35.328 0-64-47.787-64-106.667s28.672-106.667 64-106.667zM405.333 341.333c16.974 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.283 18.743-45.257 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745zM618.667 341.333c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.283-18.743-45.257c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ghost-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 492,
+ "id": 1857,
+ "name": "ghost-2-line",
+ "prevSize": 32,
+ "code": 60089
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 441
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 512c0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359v170.667h128c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17v128h341.333v-128c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h128v-170.667zM768 768v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667v213.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128zM320 597.333c-8.404 0-16.727-1.655-24.492-4.873s-14.82-7.932-20.763-13.871c-5.943-5.943-10.657-13.001-13.873-20.766s-4.872-16.085-4.872-24.491c0-8.405 1.655-16.725 4.872-24.491s7.93-14.822 13.873-20.766c5.943-5.939 12.998-10.654 20.763-13.871s16.087-4.873 24.492-4.873c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM704 597.333c-8.405 0-16.725-1.655-24.491-4.873s-14.822-7.932-20.766-13.871c-5.939-5.943-10.654-13.001-13.871-20.766s-4.873-16.085-4.873-24.491c0-8.405 1.655-16.725 4.873-24.491s7.932-14.822 13.871-20.766c5.943-5.939 13.001-10.654 20.766-13.871s16.085-4.873 24.491-4.873c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skull-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 493,
+ "id": 1856,
+ "name": "skull-line",
+ "prevSize": 32,
+ "code": 60090
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 442
+ },
+ {
+ "icon": {
+ "paths": [
+ "M789.333 85.333c47.663-0.026 93.632 17.678 128.964 49.666s57.506 75.975 62.204 123.406c4.698 47.43-8.41 94.912-36.783 133.212-28.369 38.301-69.969 64.678-116.71 74.004l0.469 1.152c21.129 51.038 29.551 106.436 24.555 161.446-5.001 55.006-23.275 107.981-53.257 154.372s-70.771 84.813-118.869 111.97c-48.102 27.153-102.071 42.231-157.282 43.934l-10.624 0.171c-56.243 0.013-111.618-13.871-161.202-40.418s-91.839-64.939-123.008-111.757c-31.169-46.814-50.287-100.608-55.652-156.595s3.187-112.431 24.897-164.318c-46.774-9.28-88.42-35.635-116.827-73.936s-41.541-85.804-36.845-133.257c4.696-47.454 26.887-91.461 62.251-123.45s81.368-49.672 129.053-49.602c49.103 0.003 96.338 18.819 131.994 52.578s57.023 79.897 59.707 128.926l3.114-0.811c26.995-6.684 54.707-10.051 82.517-10.027l10.667 0.171c25.293 0.768 50.423 4.345 74.923 10.667 2.684-49.036 24.060-95.18 59.725-128.94s82.91-52.571 132.019-52.564zM512 341.333c-33.617 0-66.906 6.622-97.966 19.487-31.059 12.865-59.281 31.722-83.052 55.494s-42.629 51.995-55.494 83.052c-12.865 31.061-19.487 64.35-19.487 97.967s6.621 66.91 19.487 97.967c12.865 31.061 31.722 59.281 55.494 83.051 23.772 23.774 51.993 42.633 83.052 55.497 31.060 12.864 64.349 19.486 97.966 19.486 67.895 0 133.009-26.97 181.022-74.982 48.009-48.009 74.978-113.122 74.978-181.018s-26.97-133.009-74.978-181.019c-48.013-48.009-113.126-74.981-181.022-74.981zM234.668 170.667c-28.29 0-55.421 11.238-75.425 31.242s-31.242 47.135-31.242 75.424c0 28.29 11.238 55.421 31.242 75.425s47.135 31.242 75.425 31.242l6.997-0.213 4.395-0.427c22.169-27.555 48.463-51.517 77.952-71.040l14.080-8.789c3.988-15.743 4.33-32.189 0.998-48.084s-10.25-30.819-20.226-43.634c-9.976-12.815-22.746-23.183-37.338-30.314s-30.618-10.835-46.858-10.832zM789.333 170.667c-15.514-0.005-30.839 3.373-44.911 9.9-14.076 6.526-26.556 16.044-36.57 27.889-10.018 11.845-17.331 25.732-21.431 40.694s-4.885 30.637-2.304 45.933l1.835 8.533 1.195 0.683c34.688 20.783 65.425 47.534 90.795 79.019 14.451 1.641 29.082 0.309 42.999-3.913 13.914-4.221 26.82-11.244 37.922-20.636s20.169-20.954 26.637-33.978c6.473-13.023 10.21-27.232 10.987-41.753 0.781-14.521-1.421-29.048-6.464-42.688-5.039-13.64-12.817-26.105-22.852-36.629s-22.118-18.885-35.503-24.569c-13.385-5.684-27.793-8.571-42.334-8.484z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mickey-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 494,
+ "id": 1855,
+ "name": "mickey-line",
+ "prevSize": 32,
+ "code": 60091
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 443
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 554.667h-85.333v-256h-358.997l-85.333-85.333h-238.336v597.333h384v85.333h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667zM768 725.333v-149.333l213.333 192-213.333 192v-149.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-shared-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 495,
+ "id": 1854,
+ "name": "folder-shared-line",
+ "prevSize": 32,
+ "code": 60092
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 444
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v85.333h-85.333v512c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-85.333h682.667v85.333c0 10.449 3.84 20.535 10.782 28.348 6.946 7.808 16.512 12.796 26.893 14.020l4.992 0.299c10.449 0 20.535-3.84 28.348-10.782 7.808-6.946 12.796-16.512 14.020-26.893l0.299-4.992v-640h-554.667c-10.45 0.001-20.537 3.838-28.346 10.783s-12.799 16.513-14.022 26.892l-0.299 4.992v426.667h-85.333v-426.667c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-paper-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 496,
+ "id": 1853,
+ "name": "file-paper-2-line",
+ "prevSize": 32,
+ "code": 60093
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 445
+ },
+ {
+ "icon": {
+ "paths": [
+ "M444.331 128l85.333 85.333h366.336c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h316.331zM409.003 213.333h-238.336v597.333h682.667v-512h-358.997l-85.333-85.333zM554.667 384v170.667h128v85.333h-213.333v-256h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-history-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 497,
+ "id": 1852,
+ "name": "folder-history-line",
+ "prevSize": 32,
+ "code": 60094
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 446
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM554.667 554.667h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-download-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 498,
+ "id": 1851,
+ "name": "folder-download-line",
+ "prevSize": 32,
+ "code": 60095
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 447
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM554.667 512v170.667h-85.333v-170.667h-128l170.667-170.667 170.667 170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-upload-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 499,
+ "id": 1850,
+ "name": "file-upload-line",
+ "prevSize": 32,
+ "code": 60096
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 448
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM469.333 469.333h85.333v256h-85.333v-256zM469.333 298.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-info-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 500,
+ "id": 1849,
+ "name": "file-info-line",
+ "prevSize": 32,
+ "code": 60097
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 449
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384.001 85.461v-0.128h469.247c23.552 0 42.752 19.413 42.752 42.325v768.683c-0.009 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.263c-5.603-0.038-11.143-1.182-16.305-3.362s-9.843-5.355-13.777-9.344c-3.934-3.989-7.044-8.717-9.152-13.909s-3.173-10.748-3.133-16.35v-554.368l256-255.872zM248.748 341.333h135.253v-135.253l-135.253 135.253zM469.333 170.667v213.333c0 11.316-4.493 22.168-12.497 30.17-8 8.001-18.854 12.497-30.17 12.497h-213.332v426.667h597.332v-682.667h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 501,
+ "id": 1848,
+ "name": "file-line",
+ "prevSize": 32,
+ "code": 60098
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 450
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 127.659v768.683c-0.090 11.204-4.582 21.926-12.51 29.845s-18.654 12.403-29.858 12.48h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0.089-11.205 4.583-21.925 12.511-29.845s18.652-12.402 29.857-12.48h683.264c23.381 0 42.368 18.944 42.368 42.325v0zM810.667 170.667h-597.333v682.667h597.333v-682.667zM481.835 559.829l181.035-180.992 60.331 60.331-241.365 241.365-165.973-165.973 60.373-60.331 105.6 105.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["task-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 502,
+ "id": 1847,
+ "name": "task-line",
+ "prevSize": 32,
+ "code": 60099
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 451
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM341.333 768c0-45.265 17.981-88.674 49.987-120.678 32.006-32.009 75.415-49.988 120.68-49.988s88.674 17.98 120.678 49.988c32.009 32.004 49.988 75.413 49.988 120.678h-341.333zM512 554.667c-28.288 0-55.42-11.238-75.426-31.241-20.003-20.006-31.241-47.138-31.241-75.426 0-28.29 11.238-55.421 31.241-75.425 20.006-20.004 47.138-31.242 75.426-31.242s55.42 11.238 75.426 31.242c20.002 20.004 31.241 47.135 31.241 75.425 0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-user-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 503,
+ "id": 1846,
+ "name": "folder-user-line",
+ "prevSize": 32,
+ "code": 60100
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 452
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM554.667 554.667v170.667h-85.333v-170.667h-128l170.667-170.667 170.667 170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-upload-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 504,
+ "id": 1845,
+ "name": "folder-upload-line",
+ "prevSize": 32,
+ "code": 60101
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 453
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 170.667h-597.333c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.708 24.994 60.34 24.994h597.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-554.667c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-512c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h554.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667zM213.333 768c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994h512v-426.667h-512c-29.96 0.047-59.399-7.827-85.333-22.827v364.16zM853.333 298.667h-554.667c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 505,
+ "id": 1844,
+ "name": "book-3-line",
+ "prevSize": 32,
+ "code": 60102
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 454
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768h-640c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h640v85.333h-640c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-640c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h682.667v682.667zM213.333 684.8c6.912-1.408 14.037-2.133 21.333-2.133h576v-512h-597.333v514.133zM682.667 384h-341.333v-85.333h341.333v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 506,
+ "id": 1843,
+ "name": "book-2-line",
+ "prevSize": 32,
+ "code": 60103
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 455
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 789.333v-576c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-576c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v0zM810.667 853.333v-128h-533.333c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h533.333zM426.667 170.667h-170.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v441.045c19.997-9.498 41.862-14.409 64-14.379h533.333v-469.333h-85.333v341.333l-149.333-85.333-149.333 85.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-mark-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 507,
+ "id": 1842,
+ "name": "book-mark-line",
+ "prevSize": 32,
+ "code": 60104
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 456
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 298.667v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h273.664l85.333 85.333h238.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM256 384h-85.333v426.667h512v-85.333h-426.667v-341.333zM341.333 213.333v426.667h512v-341.333h-230.997l-85.333-85.333h-195.669z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folders-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 508,
+ "id": 1841,
+ "name": "folders-line",
+ "prevSize": 32,
+ "code": 60105
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 457
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 19.072-42.325 42.624-42.325h512.043zM682.667 369.792h-341.333v-56.917h142.208v-56.875h56.917l-0.043 56.875h99.541l0.043-142.208h-426.667v682.667h597.333v-512l-128-0.043v28.501zM398.208 625.792v85.291h284.459v56.917h-341.333v-142.208h56.875zM512 611.541c5.602 0 11.153 1.105 16.329 3.247 5.175 2.146 9.877 5.286 13.841 9.25s7.104 8.666 9.25 13.841c2.142 5.175 3.247 10.726 3.247 16.329s-1.105 11.153-3.247 16.329c-2.146 5.175-5.286 9.877-9.25 13.841s-8.666 7.104-13.841 9.25c-5.175 2.142-10.726 3.247-16.329 3.247-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497v0zM512 384c28.288 0 55.42 11.238 75.426 31.242 20.002 20.005 31.241 47.137 31.241 75.425s-11.238 55.42-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.006-31.241-47.138-31.241-75.426s11.238-55.42 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242v0zM512 440.875c-13.205 0-25.869 5.248-35.209 14.583-9.335 9.34-14.583 22.003-14.583 35.209s5.248 25.869 14.583 35.209c9.34 9.335 22.003 14.583 35.209 14.583s25.869-5.248 35.209-14.583c9.335-9.34 14.583-22.003 14.583-35.209s-5.248-25.869-14.583-35.209c-9.34-9.335-22.003-14.583-35.209-14.583v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-hwp-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 509,
+ "id": 1840,
+ "name": "file-hwp-line",
+ "prevSize": 32,
+ "code": 60106
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 458
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 288.299l-85.333 85.333v-202.965h-384v213.333h-213.332v469.333h597.332v-117.632l85.333-85.333v245.973c-0.009 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.263c-5.603-0.038-11.143-1.182-16.305-3.362s-9.843-5.355-13.777-9.344c-3.934-3.989-7.044-8.717-9.152-13.909s-3.173-10.748-3.133-16.35v-554.368l256.128-256h469.119c23.552 0 42.752 19.413 42.752 42.325v160.64zM929.195 375.765l60.331 60.373-331.861 331.861-60.416-0.085 0.085-60.245 331.861-331.904z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-edit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 510,
+ "id": 1839,
+ "name": "file-edit-line",
+ "prevSize": 32,
+ "code": 60107
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 459
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM577.237 616.363c-35.785 20.907-77.948 28.087-118.635 20.203-40.688-7.889-77.117-30.302-102.497-63.066s-37.977-73.643-35.443-115.008c2.534-41.366 20.026-80.399 49.215-109.82 29.374-29.368 68.45-47.016 109.905-49.636s82.441 9.968 115.277 35.405c32.836 25.437 55.27 61.976 63.095 102.769s0.508 83.042-20.587 118.822l94.293 94.293-60.331 60.373-94.293-94.336zM550.869 529.664c8.149-7.872 14.652-17.289 19.123-27.699s6.827-21.606 6.925-32.939c0.098-11.332-2.061-22.566-6.353-33.054-4.288-10.487-10.624-20.015-18.637-28.027s-17.54-14.348-28.028-18.639c-10.487-4.291-21.722-6.45-33.054-6.351s-22.528 2.452-32.939 6.925c-10.411 4.472-19.827 10.973-27.699 19.123-15.544 16.094-24.145 37.649-23.951 60.023s9.169 43.776 24.992 59.597c15.821 15.825 37.222 24.798 59.597 24.99 22.374 0.196 43.93-8.405 60.023-23.949v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-search-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 511,
+ "id": 1838,
+ "name": "file-search-line",
+ "prevSize": 32,
+ "code": 60108
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 460
+ },
+ {
+ "icon": {
+ "paths": [
+ "M121.985 122.752l536.319-76.587c3.029-0.434 6.114-0.212 9.045 0.65 2.935 0.862 5.649 2.345 7.957 4.348 2.313 2.003 4.164 4.479 5.436 7.261 1.267 2.781 1.924 5.804 1.924 8.861v889.429c0 3.055-0.657 6.071-1.924 8.849s-3.115 5.252-5.419 7.253c-2.308 2.005-5.018 3.486-7.945 4.352s-6.007 1.092-9.033 0.666l-536.404-76.587c-10.171-1.446-19.477-6.519-26.211-14.276-6.733-7.761-10.44-17.69-10.44-27.964v-694.016c0-10.274 3.707-20.202 10.44-27.962s16.040-12.829 26.211-14.278h0.043zM170.668 202.027v619.947l426.666 60.971v-741.888l-426.666 60.971zM725.333 810.667h128v-597.333h-128v-85.333h170.667c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v682.667c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-170.667v-85.333zM435.2 512l119.467 170.667h-102.4l-68.266-97.536-68.267 97.536h-102.4l119.467-170.667-119.467-170.667h102.4l68.267 97.536 68.266-97.536h102.4l-119.467 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-excel-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 512,
+ "id": 1837,
+ "name": "file-excel-2-line",
+ "prevSize": 32,
+ "code": 60109
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 461
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 341.333v85.333h-128v192c-0.004 22.012-6.818 43.482-19.507 61.47-12.689 17.984-30.63 31.603-51.366 38.989s-43.247 8.179-64.448 2.266c-21.202-5.914-40.056-18.24-53.975-35.294-13.92-17.050-22.223-37.99-23.772-59.947s3.732-43.853 15.121-62.69c11.388-18.837 28.324-33.69 48.486-42.522s42.561-11.209 64.129-6.805v-172.8h170.667v-170.667h-426.667v682.667h597.333v-512h-128zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-music-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 513,
+ "id": 1836,
+ "name": "file-music-line",
+ "prevSize": 32,
+ "code": 60110
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 462
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v128c0 23.552-19.2 42.667-42.965 42.667h-511.403c-5.626 0.034-11.204-1.045-16.413-3.174s-9.945-5.265-13.937-9.229c-3.993-3.964-7.162-8.678-9.327-13.875-2.164-5.193-3.282-10.761-3.287-16.388l0.128-597.333c0-23.552 19.2-42.667 42.923-42.667h127.616zM213.419 341.333l-0.085 512h426.667v-512h-426.581zM384 256h341.333v426.667h85.333v-512h-426.667v85.333zM298.667 469.333h256v85.333h-256v-85.333zM298.667 640h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-copy-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 514,
+ "id": 1835,
+ "name": "file-copy-2-line",
+ "prevSize": 32,
+ "code": 60111
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 463
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM170.667 213.333v597.333h682.667v-597.333h-682.667zM298.667 661.333h-85.333v-298.667h85.333l85.333 85.333 85.333-85.333h85.333v298.667h-85.333v-170.667l-85.333 85.333-85.333-85.333v170.667zM768 533.333h85.333l-128 128-128-128h85.333v-170.667h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["markdown-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 515,
+ "id": 1834,
+ "name": "markdown-line",
+ "prevSize": 32,
+ "code": 60112
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 464
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.035c0 23.723-18.987 42.965-42.368 42.965h-683.264c-23.381 0-42.368-19.413-42.368-42.325v-768.683c0-23.381 19.072-42.325 42.624-42.325h512.043zM640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM554.667 384v170.667h128v85.333h-213.333v-256h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-history-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 516,
+ "id": 1833,
+ "name": "file-history-line",
+ "prevSize": 32,
+ "code": 60113
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 465
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-682.667h-597.333v682.667h597.333zM341.333 384h341.333v85.333h-341.333v-85.333zM341.333 554.667h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bill-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 517,
+ "id": 1832,
+ "name": "bill-line",
+ "prevSize": 32,
+ "code": 60114
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 466
+ },
+ {
+ "icon": {
+ "paths": [
+ "M131.712 384h760.576c5.905-0.003 11.742 1.22 17.148 3.59s10.266 5.836 14.263 10.179c3.998 4.343 7.049 9.469 8.964 15.052s2.654 11.504 2.163 17.387l-35.584 426.667c-0.887 10.662-5.747 20.599-13.619 27.849-7.872 7.245-18.176 11.273-28.877 11.277h-689.493c-10.699-0.004-21.005-4.032-28.876-11.277-7.871-7.249-12.732-17.186-13.62-27.849l-35.584-426.667c-0.49-5.883 0.246-11.803 2.161-17.387s4.969-10.709 8.967-15.052c3.998-4.343 8.854-7.809 14.261-10.179s11.246-3.592 17.149-3.59v0zM206.507 810.667h610.987l28.416-341.333h-667.819l28.416 341.333zM572.331 213.333h281.003c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h-768v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 518,
+ "id": 1831,
+ "name": "folder-5-line",
+ "prevSize": 32,
+ "code": 60115
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 467
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM341.333 810.667h512v-341.333h-512v341.333zM256 810.667v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667v-85.333h-358.997l-85.333-85.333h-238.336v597.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 519,
+ "id": 1830,
+ "name": "folder-4-line",
+ "prevSize": 32,
+ "code": 60116
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 468
+ },
+ {
+ "icon": {
+ "paths": [
+ "M366.72 546.645c-5.41-22.767-5.41-46.481 0-69.248l-42.325-24.448 42.667-73.899 42.325 24.448c16.988-16.090 37.525-27.959 59.947-34.645v-48.853h85.333v48.853c22.699 6.741 43.179 18.773 59.947 34.645l42.325-24.448 42.667 73.899-42.325 24.448c5.402 22.754 5.402 46.451 0 69.205l42.325 24.448-42.667 73.899-42.325-24.448c-16.99 16.090-37.525 27.959-59.947 34.645v48.853h-85.333v-48.853c-22.421-6.686-42.959-18.556-59.947-34.645l-42.325 24.448-42.667-73.899 42.325-24.405zM512 576c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743zM640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-settings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 520,
+ "id": 1829,
+ "name": "file-settings-line",
+ "prevSize": 32,
+ "code": 60117
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 469
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 896c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h323.669c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h-85.333v-85.333h-316.331l-85.333-85.333h-238.336v511.915l64-255.915h725.333l-98.56 394.368c-2.313 9.225-7.637 17.417-15.138 23.266-7.497 5.854-16.738 9.033-26.249 9.033h-692.053zM850.688 554.667h-549.376l-64 256h549.376l64-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-open-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 521,
+ "id": 1828,
+ "name": "folder-open-line",
+ "prevSize": 32,
+ "code": 60118
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 470
+ },
+ {
+ "icon": {
+ "paths": [
+ "M121.985 122.752l536.319-76.587c3.029-0.434 6.114-0.212 9.045 0.65 2.935 0.862 5.649 2.345 7.957 4.348 2.313 2.003 4.164 4.479 5.436 7.261 1.267 2.781 1.924 5.804 1.924 8.861v889.429c0 3.055-0.657 6.071-1.924 8.849s-3.115 5.252-5.419 7.253c-2.308 2.005-5.018 3.486-7.945 4.352s-6.007 1.092-9.033 0.666l-536.404-76.587c-10.171-1.446-19.477-6.519-26.211-14.276-6.733-7.761-10.44-17.69-10.44-27.964v-694.016c0-10.274 3.707-20.202 10.44-27.962s16.040-12.829 26.211-14.278h0.043zM170.668 202.027v619.947l426.666 60.971v-741.888l-426.666 60.971zM725.333 810.667h128v-597.333h-128v-85.333h170.667c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v682.667c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-170.667v-85.333zM213.334 341.333h341.332v256h-255.999v85.333h-85.333v-341.333zM298.668 426.667v85.333h170.666v-85.333h-170.666z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-ppt-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 522,
+ "id": 1827,
+ "name": "file-ppt-2-line",
+ "prevSize": 32,
+ "code": 60119
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 471
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 341.333v341.333h-85.333l-85.333-85.333-85.333 85.333h-85.333v-341.333h85.333v213.333l85.333-85.333 85.333 85.333v-213.333h42.667v-170.667h-426.667v682.667h597.333v-512h-128zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-word-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 523,
+ "id": 1826,
+ "name": "file-word-line",
+ "prevSize": 32,
+ "code": 60120
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 472
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM298.667 170.667h-85.333v682.667h597.333v-682.667h-213.333v384l-149.333-85.333-149.333 85.333v-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-mark-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 524,
+ "id": 1825,
+ "name": "file-mark-line",
+ "prevSize": 32,
+ "code": 60121
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 473
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 682.667h-170.667v-341.333h170.667c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.415 49.988 120.68s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988zM426.667 426.667v170.667h85.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994h-85.333zM640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-pdf-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 525,
+ "id": 1824,
+ "name": "file-pdf-line",
+ "prevSize": 32,
+ "code": 60122
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 474
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM512 384v170.667h170.667c0 33.754-10.010 66.752-28.762 94.818s-45.41 49.941-76.595 62.857c-31.185 12.919-65.498 16.299-98.607 9.711-33.105-6.583-63.514-22.839-87.383-46.707s-40.122-54.276-46.708-87.381c-6.585-33.109-3.206-67.422 9.712-98.607s34.792-57.843 62.858-76.594c28.065-18.753 61.064-28.762 94.817-28.762z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-chart-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 526,
+ "id": 1823,
+ "name": "folder-chart-2-line",
+ "prevSize": 32,
+ "code": 60123
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 475
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM213.333 170.667v682.667h597.333v-512h-128v256h-256v85.333h-85.333v-341.333h298.667v-170.667h-426.667zM426.667 426.667v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-ppt-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 527,
+ "id": 1822,
+ "name": "file-ppt-line",
+ "prevSize": 32,
+ "code": 60124
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 476
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 789.333v-576c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-576c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v0zM810.667 853.333v-128h-533.333c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h533.333zM213.333 654.379c19.997-9.498 41.862-14.409 64-14.379h533.333v-469.333h-554.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v441.045z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 528,
+ "id": 1821,
+ "name": "book-line",
+ "prevSize": 32,
+ "code": 60125
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 477
+ },
+ {
+ "icon": {
+ "paths": [
+ "M563.2 512l119.467 170.667h-102.4l-68.267-97.536-68.267 97.536h-102.4l119.467-170.667-119.467-170.667h102.4l68.267 97.536 68.267-97.536h59.733v-170.667h-426.667v682.667h597.333v-512h-128l-119.467 170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-excel-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 529,
+ "id": 1820,
+ "name": "file-excel-line",
+ "prevSize": 32,
+ "code": 60126
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 478
+ },
+ {
+ "icon": {
+ "paths": [
+ "M444.331 128l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331zM409.003 213.333h-238.336v597.333h682.667v-512h-358.997l-85.333-85.333zM512 384c18.786-0.009 37.052 6.183 51.964 17.615 14.908 11.432 25.63 27.466 30.494 45.612 4.868 18.146 3.61 37.389-3.575 54.75-7.189 17.357-19.904 31.859-36.173 41.254l-0.043 182.101h-85.333v-182.101c-16.269-9.391-28.979-23.889-36.169-41.246-7.188-17.353-8.448-36.595-3.588-54.737 4.864-18.146 15.578-34.179 30.477-45.614 14.903-11.436 33.161-17.634 51.947-17.635v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-keyhole-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 530,
+ "id": 1819,
+ "name": "folder-keyhole-line",
+ "prevSize": 32,
+ "code": 60127
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 479
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 531,
+ "id": 1818,
+ "name": "folder-line",
+ "prevSize": 32,
+ "code": 60128
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 480
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 512h512v-170.667h-170.667v-170.667h-341.333v341.333zM170.667 512v-384.213c0-23.467 18.987-42.453 42.496-42.453h426.837l213.333 213.333v213.333h85.333v85.333h-853.333v-85.333h85.333zM128 682.667h85.333v256h-85.333v-256zM810.667 682.667h85.333v256h-85.333v-256zM640 682.667h85.333v256h-85.333v-256zM469.333 682.667h85.333v256h-85.333v-256zM298.667 682.667h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-shred-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 532,
+ "id": 1817,
+ "name": "file-shred-line",
+ "prevSize": 32,
+ "code": 60129
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 481
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.88 85.333c47.019 0 85.12 38.315 85.12 84.907v683.52c0 46.891-38.101 84.907-85.12 84.907h-682.88v-853.333h682.88zM298.667 170.667h-85.333v682.667h85.333v-682.667zM810.667 170.667h-426.667v682.667h426.667v-682.667zM597.333 341.333l170.667 170.667h-128v170.667h-85.333v-170.667h-128l170.667-170.667zM1024 512v170.667h-85.333v-170.667h85.333zM1024 256v170.667h-85.333v-170.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-book-upload-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 533,
+ "id": 1816,
+ "name": "contacts-book-upload-line",
+ "prevSize": 32,
+ "code": 60130
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 482
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 853.333v-682.667h-512v640c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h469.333zM810.667 938.667h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h170.667v384c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM768 512v298.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667h-85.333zM256 256h256v256h-256v-256zM341.333 341.333v85.333h85.333v-85.333h-85.333zM256 554.667h341.333v85.333h-341.333v-85.333zM256 682.667h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["newspaper-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 534,
+ "id": 1815,
+ "name": "newspaper-line",
+ "prevSize": 32,
+ "code": 60131
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 483
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM753.365 512l-150.869 150.869-60.331-60.373 90.496-90.496-90.453-90.496 60.288-60.373 150.869 150.869zM270.635 512l150.912-150.869 60.331 60.373-90.539 90.496 90.453 90.496-60.288 60.373-150.869-150.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-code-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 535,
+ "id": 1814,
+ "name": "file-code-line",
+ "prevSize": 32,
+ "code": 60132
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 484
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM853.333 469.333h-682.667v341.333h682.667v-341.333zM853.333 384v-85.333h-358.997l-85.333-85.333h-238.336v170.667h682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 536,
+ "id": 1813,
+ "name": "folder-2-line",
+ "prevSize": 32,
+ "code": 60133
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 485
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 298.667v512h682.667v-512h-682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 537,
+ "id": 1812,
+ "name": "folder-3-line",
+ "prevSize": 32,
+ "code": 60134
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 486
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 725.333v85.333c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-640h-597.333v469.333h-85.333v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-85.333h682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-paper-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 538,
+ "id": 1811,
+ "name": "file-paper-line",
+ "prevSize": 32,
+ "code": 60135
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 487
+ },
+ {
+ "icon": {
+ "paths": [
+ "M639.872 85.333l256.128 256 0.043 181.76c-25.007-20.753-54.071-36.053-85.333-44.928l-0.043-94.165h-213.333v-213.333h-384v682.667h215.893c4.881 30.754 16.811 59.959 34.859 85.333h-293.717c-10.371 0-20.383-3.806-28.136-10.697-7.754-6.886-12.711-16.38-13.933-26.679l-0.299-4.949v-768.683c0-21.248 16.512-39.552 37.76-42.027l4.992-0.299h469.12zM746.667 554.667c39.607 0 77.589 15.731 105.596 43.738s43.738 65.988 43.738 105.596l-0.043 4.395c26.692 7.522 49.856 24.252 65.387 47.228s22.421 50.705 19.452 78.281c-2.97 27.571-15.612 53.197-35.682 72.337-20.066 19.14-46.263 30.554-73.946 32.213l-7.168 0.213-241.835-0.213c-27.678-1.677-53.862-13.103-73.92-32.247-20.053-19.145-32.683-44.774-35.639-72.341-2.961-27.571 3.934-55.296 19.469-78.263s38.699-39.689 65.387-47.206l-0.128-4.395c0-39.607 15.731-77.589 43.738-105.596s65.988-43.738 105.596-43.738v0zM746.667 640c-14.865-0.004-29.269 5.167-40.738 14.63-11.469 9.459-19.285 22.613-22.11 37.21l-0.853 5.973-0.299 6.187v69.12l-61.611 17.323c-7.1 1.894-13.329 6.178-17.647 12.126-4.314 5.948-6.451 13.197-6.054 20.535 0.401 7.339 3.315 14.315 8.252 19.755 4.941 5.444 11.601 9.024 18.863 10.133l4.651 0.341h235.093c7.735-0.060 15.189-2.918 20.979-8.051 5.79-5.129 9.527-12.186 10.517-19.857 0.986-7.671-0.836-15.445-5.137-21.875-4.301-6.434-10.786-11.089-18.253-13.107l-43.221-12.075-18.432-5.248v-69.12l-0.299-6.144c-1.527-15.838-8.9-30.537-20.676-41.233s-27.115-16.623-43.025-16.623v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-cloud-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 539,
+ "id": 1810,
+ "name": "file-cloud-line",
+ "prevSize": 32,
+ "code": 60136
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 488
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM366.549 589.184c-5.406-22.75-5.406-46.455 0-69.205l-42.283-24.405 42.667-73.899 42.283 24.448c16.975-16.085 37.495-27.954 59.904-34.645v-48.811h85.333v48.811c22.699 6.784 43.093 18.773 59.861 34.645l42.325-24.448 42.667 73.856-42.283 24.448c5.406 22.75 5.406 46.455 0 69.205l42.283 24.405-42.667 73.856-42.283-24.405c-16.981 16.073-37.5 27.925-59.904 34.603v48.853h-85.333v-48.896c-22.404-6.677-42.924-18.53-59.904-34.603l-42.283 24.405-42.667-73.813 42.283-24.448v0.043zM511.787 618.539c8.597 0.316 17.165-1.109 25.199-4.181s15.369-7.731 21.559-13.705c6.191-5.969 11.115-13.124 14.481-21.039 3.362-7.919 5.099-16.431 5.099-25.033s-1.737-17.114-5.099-25.033c-3.366-7.915-8.29-15.070-14.481-21.039-6.191-5.973-13.525-10.633-21.559-13.705s-16.602-4.497-25.199-4.181c-16.559 0.606-32.235 7.607-43.738 19.537-11.499 11.925-17.924 27.853-17.924 44.42s6.426 32.495 17.924 44.42c11.503 11.93 27.179 18.931 43.738 19.537v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-settings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 540,
+ "id": 1809,
+ "name": "folder-settings-line",
+ "prevSize": 32,
+ "code": 60137
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 489
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM469.333 640h85.333v85.333h-85.333v-85.333zM469.333 384h85.333v213.333h-85.333v-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-warning-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 541,
+ "id": 1808,
+ "name": "folder-warning-line",
+ "prevSize": 32,
+ "code": 60138
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 490
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM469.333 213.333h-298.667v597.333h298.667v-597.333zM554.667 213.333v597.333h298.667v-597.333h-298.667zM597.333 298.667h213.333v85.333h-213.333v-85.333zM597.333 426.667h213.333v85.333h-213.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-read-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 542,
+ "id": 1807,
+ "name": "book-read-line",
+ "prevSize": 32,
+ "code": 60139
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 491
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 512h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667zM640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-download-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 543,
+ "id": 1806,
+ "name": "file-download-line",
+ "prevSize": 32,
+ "code": 60140
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 492
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.581 896c-11.263 0.021-22.075-4.429-30.059-12.373-7.984-7.94-12.489-18.731-12.522-29.995v-683.264c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 19.072 42.368 42.624v512.043l-213.461 213.333h-511.957zM213.333 810.667h433.877l163.456-163.371v-433.963h-597.333v597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sticky-note-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 544,
+ "id": 1805,
+ "name": "sticky-note-2-line",
+ "prevSize": 32,
+ "code": 60141
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 493
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 341.333v512h597.333v-512h-597.333zM213.333 256h597.333v-85.333h-597.333v85.333zM853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM298.667 426.667h170.667v170.667h-170.667v-170.667zM298.667 682.667h426.667v85.333h-426.667v-85.333zM554.667 469.333h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pages-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 545,
+ "id": 1804,
+ "name": "pages-line",
+ "prevSize": 32,
+ "code": 60142
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 494
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM640 554.667h42.667v170.667h-341.333v-170.667h42.667v-42.667c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51v42.667zM554.667 554.667v-42.667c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v42.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-lock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 546,
+ "id": 1803,
+ "name": "folder-lock-line",
+ "prevSize": 32,
+ "code": 60143
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 495
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM469.333 640h85.333v85.333h-85.333v-85.333zM469.333 298.667h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-warning-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 547,
+ "id": 1802,
+ "name": "file-warning-line",
+ "prevSize": 32,
+ "code": 60144
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 496
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM512 341.333v170.667h170.667c0 33.754-10.010 66.752-28.762 94.818s-45.41 49.941-76.595 62.857c-31.185 12.919-65.498 16.299-98.607 9.711-33.105-6.583-63.514-22.839-87.383-46.707s-40.122-54.276-46.708-87.381c-6.585-33.109-3.206-67.422 9.712-98.607 12.917-31.187 34.792-57.841 62.858-76.594s61.064-28.762 94.817-28.762z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-chart-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 548,
+ "id": 1801,
+ "name": "file-chart-2-line",
+ "prevSize": 32,
+ "code": 60145
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 497
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 85.333h682.88c47.019 0 85.12 38.315 85.12 84.907v683.52c0 46.891-38.101 84.907-85.12 84.907h-682.88v-853.333zM298.667 170.667h-85.333v682.667h85.333v-682.667zM384 853.333h426.667v-682.667h-426.667v682.667zM469.333 682.667c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509h-256zM597.333 512c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM938.667 256h85.333v170.667h-85.333v-170.667zM938.667 512h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-book-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 549,
+ "id": 1800,
+ "name": "contacts-book-line",
+ "prevSize": 32,
+ "code": 60146
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 498
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c23.552 0 42.667 19.115 42.667 42.667v160.299l-85.333 85.333v-202.965h-597.333v682.667h597.333v-117.675l85.333-85.333v245.675c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-768c0-23.552 19.115-42.667 42.667-42.667h682.667zM929.195 375.808l60.331 60.331-331.861 331.861-60.416-0.085 0.085-60.245 331.861-331.861zM554.667 512v85.333h-213.333v-85.333h213.333zM682.667 341.333v85.333h-341.333v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["draft-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 550,
+ "id": 1799,
+ "name": "draft-line",
+ "prevSize": 32,
+ "code": 60147
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 499
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-682.667h-597.333v682.667h597.333zM298.667 256h170.667v170.667h-170.667v-170.667zM298.667 512h426.667v85.333h-426.667v-85.333zM298.667 682.667h426.667v85.333h-426.667v-85.333zM554.667 298.667h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["article-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 551,
+ "id": 1798,
+ "name": "article-line",
+ "prevSize": 32,
+ "code": 60148
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 500
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM469.333 556.8v-172.8h213.333v85.333h-128v192c-0.004 22.012-6.818 43.482-19.507 61.47-12.689 17.984-30.63 31.603-51.366 38.989s-43.247 8.179-64.448 2.266c-21.202-5.914-40.056-18.24-53.975-35.294-13.92-17.050-22.223-37.99-23.772-59.947s3.732-43.853 15.121-62.69c11.388-18.837 28.324-33.69 48.486-42.522s42.561-11.209 64.129-6.805v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-music-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 552,
+ "id": 1797,
+ "name": "folder-music-line",
+ "prevSize": 32,
+ "code": 60149
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 501
+ },
+ {
+ "icon": {
+ "paths": [
+ "M481.707 853.333c9.173 30.805 23.168 59.563 41.173 85.333h-352.512c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v199.424c-26.987-12.826-55.757-21.5-85.333-25.728v-131.029h-170.667v-170.667h-426.667v682.667h268.373zM768 981.333c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485v0zM712.832 883.541c23.893 11.43 50.739 15.168 76.847 10.701 26.103-4.471 50.18-16.926 68.907-35.657 18.731-18.726 31.185-42.803 35.657-68.907 4.467-26.108 0.73-52.954-10.701-76.847l-170.709 170.709zM652.459 823.168l170.709-170.667c-23.893-11.43-50.739-15.168-76.847-10.701-26.103 4.471-50.18 16.926-68.907 35.657-18.731 18.726-31.185 42.803-35.657 68.907-4.467 26.108-0.73 52.954 10.701 76.847v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-forbid-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 553,
+ "id": 1796,
+ "name": "file-forbid-line",
+ "prevSize": 32,
+ "code": 60150
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 502
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.547 85.333c47.019 0 85.12 38.315 85.12 84.907v683.52c0 46.891-38.101 84.907-85.12 84.907h-682.88v-170.667h-85.333v-85.333h85.333v-128h-85.333v-85.333h85.333v-128h-85.333v-85.333h85.333v-170.667h682.88zM341.333 170.667h-85.333v682.667h85.333v-682.667zM853.333 170.667h-426.667v682.667h426.667v-682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["booklet-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 554,
+ "id": 1795,
+ "name": "booklet-line",
+ "prevSize": 32,
+ "code": 60151
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 503
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 341.333v-170.667h-384v682.667h597.333v-469.333h-128v197.12c0 36.011-19.029 69.675-50.645 89.643l-120.021 75.819-120.021-75.861c-31.616-19.925-50.645-53.589-50.645-89.6v-239.787h256zM896 341.333v554.368c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.157-42.325 42.752-42.325h469.12l256.128 256zM426.667 581.12c0 6.4 3.712 12.971 10.88 17.493l74.453 47.019 74.453-47.019c7.168-4.523 10.88-11.093 10.88-17.493v-154.453h-170.667v154.453z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-shield-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 555,
+ "id": 1794,
+ "name": "file-shield-line",
+ "prevSize": 32,
+ "code": 60152
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 504
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM341.333 384h341.333v209.237c0 38.059-19.029 73.557-50.645 94.677l-120.021 80-120.021-80c-15.582-10.394-28.357-24.474-37.192-40.99s-13.456-34.957-13.454-53.687v-209.237zM426.667 593.237c0 9.515 4.736 18.389 12.672 23.68l72.661 48.427 72.661-48.427c3.9-2.598 7.095-6.118 9.306-10.253 2.21-4.13 3.366-8.742 3.366-13.427v-123.904h-170.667v123.904z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-shield-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 556,
+ "id": 1793,
+ "name": "folder-shield-line",
+ "prevSize": 32,
+ "code": 60153
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 505
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 480.213c-26.061-18.197-54.874-32.098-85.333-41.173v-140.373h-358.997l-85.333-85.333h-238.336v597.333h311.040c9.173 30.805 23.168 59.563 41.173 85.333h-394.88c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v224.213zM768 938.667c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM712.832 840.875c23.893 11.43 50.739 15.168 76.847 10.701 26.103-4.471 50.18-16.926 68.907-35.657 18.731-18.726 31.185-42.803 35.657-68.907 4.467-26.108 0.73-52.954-10.701-76.847l-170.709 170.709zM652.459 780.501l170.709-170.667c-23.893-11.43-50.739-15.168-76.847-10.701-26.103 4.471-50.18 16.926-68.907 35.657-18.731 18.726-31.185 42.803-35.657 68.907-4.467 26.108-0.73 52.954 10.701 76.847v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-forbid-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 557,
+ "id": 1792,
+ "name": "folder-forbid-line",
+ "prevSize": 32,
+ "code": 60154
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 506
+ },
+ {
+ "icon": {
+ "paths": [
+ "M444.331 128l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331zM768 768h-170.667v-128h85.333v-85.333h-85.333v-85.333h85.333v-85.333h-85.333v-85.333h-102.997l-85.333-85.333h-238.336v597.333h682.667v-512h-170.667v85.333h85.333v85.333h-85.333v85.333h85.333v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-zip-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 558,
+ "id": 1791,
+ "name": "folder-zip-line",
+ "prevSize": 32,
+ "code": 60155
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 507
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 384h-85.333v-85.333h-358.997l-85.333-85.333h-238.336v597.333h317.739c15.667 34.244 40.175 63.697 70.997 85.333h-431.403c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM554.667 469.333h384v253.824c0 42.24-21.376 81.749-57.003 105.173l-134.997 88.917-134.997-88.917c-17.468-11.43-31.821-27.021-41.771-45.372s-15.185-38.886-15.232-59.759v-253.867zM640 723.157c0 13.483 6.912 26.197 18.603 33.92l88.064 58.027 88.064-58.027c5.67-3.665 10.342-8.687 13.589-14.609s4.971-12.557 5.013-19.311v-168.491h-213.333v168.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-shield-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 559,
+ "id": 1790,
+ "name": "folder-shield-2-line",
+ "prevSize": 32,
+ "code": 60156
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 508
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM469.333 512v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 560,
+ "id": 1789,
+ "name": "folder-add-line",
+ "prevSize": 32,
+ "code": 60157
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 509
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 554.667h-85.333v-256h-358.997l-85.333-85.333h-238.336v597.333h384v85.333h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667zM853.333 725.333h128v85.333h-128v149.333l-213.333-192 213.333-192v149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-received-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 561,
+ "id": 1788,
+ "name": "folder-received-line",
+ "prevSize": 32,
+ "code": 60158
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 510
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v128c0 23.552-19.2 42.667-42.965 42.667h-511.403c-5.626 0.034-11.204-1.045-16.413-3.174s-9.945-5.265-13.937-9.229c-3.993-3.964-7.162-8.678-9.327-13.875-2.164-5.193-3.282-10.761-3.287-16.388l0.128-597.333c0-23.552 19.2-42.667 42.965-42.667h127.573zM213.461 341.333l-0.128 512h426.667v-512h-426.539zM384 256h341.333v426.667h85.333v-512h-426.667v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-copy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 562,
+ "id": 1787,
+ "name": "file-copy-line",
+ "prevSize": 32,
+ "code": 60159
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 511
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-682.667h-597.333v682.667h597.333zM597.333 512v213.333h-170.667v-128h85.333v-85.333h85.333zM512 170.667h85.333v85.333h-85.333v-85.333zM426.667 256h85.333v85.333h-85.333v-85.333zM512 341.333h85.333v85.333h-85.333v-85.333zM426.667 426.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-zip-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 563,
+ "id": 1786,
+ "name": "file-zip-line",
+ "prevSize": 32,
+ "code": 60160
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 512
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM512 512v-128l170.667 170.667-170.667 170.667v-128h-170.667v-85.333h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-transfer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 564,
+ "id": 1785,
+ "name": "folder-transfer-line",
+ "prevSize": 32,
+ "code": 60161
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 513
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333v85.333h128.299c23.381 0 42.368 18.987 42.368 42.368v683.264c0 23.381-18.987 42.368-42.368 42.368h-683.264c-23.381 0-42.368-18.987-42.368-42.368v-683.264c0-23.381 18.987-42.368 42.368-42.368h128.299v-85.333h426.667zM298.667 256h-85.333v597.333h597.333v-597.333h-85.333v85.333h-426.667v-85.333zM384 682.667v85.333h-85.333v-85.333h85.333zM384 554.667v85.333h-85.333v-85.333h85.333zM384 426.667v85.333h-85.333v-85.333h85.333zM640 170.667h-256v85.333h256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["survey-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 565,
+ "id": 1784,
+ "name": "survey-line",
+ "prevSize": 32,
+ "code": 60162
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 514
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-682.667h-597.333v682.667h597.333zM341.333 298.667h341.333v85.333h-341.333v-85.333zM341.333 469.333h341.333v85.333h-341.333v-85.333zM341.333 640h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-list-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 566,
+ "id": 1783,
+ "name": "file-list-line",
+ "prevSize": 32,
+ "code": 60163
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 515
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM469.333 469.333v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 567,
+ "id": 1782,
+ "name": "file-add-line",
+ "prevSize": 32,
+ "code": 60164
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 516
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM640 469.333h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v42.667zM554.667 469.333v-42.667c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v42.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-lock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 568,
+ "id": 1781,
+ "name": "file-lock-line",
+ "prevSize": 32,
+ "code": 60165
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 517
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 298.667h85.333v426.667h-85.333v-426.667zM640 469.333h85.333v256h-85.333v-256zM298.667 554.667h85.333v170.667h-85.333v-170.667zM640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-chart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 569,
+ "id": 1780,
+ "name": "file-chart-line",
+ "prevSize": 32,
+ "code": 60166
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 518
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128.001 341.333l256.128-256h469.119c23.552 0 42.752 19.413 42.752 42.325v768.683c-0.009 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.263c-5.603-0.038-11.143-1.182-16.305-3.362s-9.843-5.355-13.777-9.344c-3.934-3.989-7.044-8.717-9.152-13.909s-3.173-10.748-3.133-16.35v-554.368zM426.667 170.667v213.333h-213.332v469.333h597.332v-682.667h-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 570,
+ "id": 1779,
+ "name": "file-2-line",
+ "prevSize": 32,
+ "code": 60167
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 519
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 341.333v554.368c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.157-42.325 42.752-42.325h469.12l256.128 256zM810.667 384h-213.333v-213.333h-384v682.667h597.333v-469.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 571,
+ "id": 1778,
+ "name": "file-3-line",
+ "prevSize": 32,
+ "code": 60168
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 520
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM725.333 170.667v85.333h-85.333v-85.333h-256v85.333h-85.333v-85.333h-85.333v682.667h597.333v-682.667h-85.333zM298.667 341.333h426.667v85.333h-426.667v-85.333zM298.667 512h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["todo-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 572,
+ "id": 1777,
+ "name": "todo-line",
+ "prevSize": 32,
+ "code": 60169
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 521
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 768h-213.333v-341.333h213.333v341.333zM298.667 682.667v-170.667h-42.667v170.667h42.667zM554.667 682.667v-341.333h-42.667v341.333h42.667zM640 768h-213.333v-512h213.333v512zM810.667 682.667v-512h-42.667v512h42.667zM896 768h-213.333v-682.667h213.333v682.667zM938.667 938.667h-810.667v-85.333h810.667v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["numbers-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 573,
+ "id": 1776,
+ "name": "numbers-line",
+ "prevSize": 32,
+ "code": 60170
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 522
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM512 469.333v-128l170.667 170.667-170.667 170.667v-128h-170.667v-85.333h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-transfer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 574,
+ "id": 1775,
+ "name": "file-transfer-line",
+ "prevSize": 32,
+ "code": 60171
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 523
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-597.333c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-85.333h-554.667c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h554.667zM213.333 689.92c13.355-4.693 27.733-7.253 42.667-7.253h554.667v-512h-554.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v476.587zM512 426.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994zM384 597.333c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-book-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 575,
+ "id": 1774,
+ "name": "contacts-book-2-line",
+ "prevSize": 32,
+ "code": 60172
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 524
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM469.333 512h85.333v213.333h-85.333v-213.333zM469.333 384h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-info-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 576,
+ "id": 1773,
+ "name": "folder-info-line",
+ "prevSize": 32,
+ "code": 60173
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 525
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 170.667v-85.333h426.667v85.333h128.299c23.381 0 42.368 18.987 42.368 42.368v683.264c-0.013 11.234-4.48 22.003-12.42 29.948-7.945 7.94-18.714 12.407-29.948 12.42h-683.264c-11.233-0.013-22.003-4.48-29.946-12.42-7.943-7.945-12.411-18.714-12.422-29.948v-683.264c0-23.381 18.987-42.368 42.368-42.368h128.299zM298.667 256h-85.333v597.333h597.333v-597.333h-85.333v85.333h-426.667v-85.333zM384 170.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clipboard-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 577,
+ "id": 1772,
+ "name": "clipboard-line",
+ "prevSize": 32,
+ "code": 60174
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 526
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 384h-213.333v-213.333h-384v335.232l64 59.435 149.333-160 128 213.333 85.333-106.667 128 128-128-21.333-85.333 106.667-128-170.667-128 149.333-85.333-53.333v202.667h597.333v-469.333zM896 341.333v554.368c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.157-42.325 42.752-42.325h469.12l256.128 256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-damage-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 578,
+ "id": 1771,
+ "name": "file-damage-line",
+ "prevSize": 32,
+ "code": 60175
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 527
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 341.333v554.368c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.157-42.325 42.752-42.325h469.12l256.128 256zM810.667 384h-213.333v-213.333h-384v682.667h597.333v-469.333zM341.333 298.667h128v85.333h-128v-85.333zM341.333 469.333h341.333v85.333h-341.333v-85.333zM341.333 640h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-text-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 579,
+ "id": 1770,
+ "name": "file-text-line",
+ "prevSize": 32,
+ "code": 60176
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 528
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 896v85.333h-85.333v-85.333h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256c24.217-0.029 48.162 5.11 70.234 15.072 22.076 9.962 41.766 24.519 57.766 42.699 16-18.179 35.691-32.736 57.766-42.699 22.071-9.962 46.016-15.101 70.234-15.072h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333zM853.333 810.667v-597.333h-213.333c-22.63 0-44.335 8.991-60.339 24.994s-24.994 37.708-24.994 60.34v512h298.667zM469.333 810.667v-512c0-22.632-8.99-44.337-24.994-60.34s-37.708-24.994-60.339-24.994h-213.333v597.333h298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-open-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 580,
+ "id": 1769,
+ "name": "book-open-line",
+ "prevSize": 32,
+ "code": 60177
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 529
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682.667l-256.128 256h-469.205c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v554.667zM810.667 640v-469.333h-597.333v682.667h384v-213.333h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 581,
+ "id": 1768,
+ "name": "file-4-line",
+ "prevSize": 32,
+ "code": 60178
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 530
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM512 490.667c-28.288 0-55.42-11.238-75.426-31.241-20.003-20.006-31.241-47.136-31.241-75.426s11.238-55.421 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242s55.42 11.238 75.426 31.242c20.002 20.004 31.241 47.135 31.241 75.425s-11.238 55.42-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241v0zM321.152 725.333c5.172-47.002 27.506-90.441 62.723-121.997 35.217-31.552 80.841-49.003 128.125-49.003s92.907 17.451 128.124 49.003c35.217 31.556 57.553 74.995 62.724 121.997h-381.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-user-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 582,
+ "id": 1767,
+ "name": "file-user-line",
+ "prevSize": 32,
+ "code": 60179
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 531
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.035c0 23.723-18.987 42.965-42.368 42.965h-683.264c-23.381 0-42.368-19.413-42.368-42.325v-768.683c0-23.381 19.072-42.325 42.624-42.325h512.043zM640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM554.667 426.667v213.333h-42.667v-213.333h42.667zM469.333 426.667v42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667v42.667c0 23.552 19.115 42.667 42.667 42.667h42.667v-42.667h-42.667v-42.667h85.333v85.333c0 23.552-19.115 42.667-42.667 42.667h-42.667c-47.147 0-85.333-38.187-85.333-85.333v-42.667c0-47.147 38.187-85.333 85.333-85.333h85.333zM725.333 426.667v42.667h-85.333v42.667h85.333v42.667h-85.333v85.333h-42.667v-213.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-gif-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 583,
+ "id": 1766,
+ "name": "file-gif-line",
+ "prevSize": 32,
+ "code": 60180
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 532
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 640l-256 255.829-469.248 0.171c-11.286 0.047-22.128-4.39-30.144-12.335s-12.551-18.748-12.608-30.033v-683.264c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 19.456 42.368 42.752v469.248zM810.667 213.333h-597.333v597.333h341.333v-213.333c0-10.449 3.84-20.535 10.782-28.348 6.946-7.808 16.512-12.796 26.893-14.020l4.992-0.299 213.333-0.043v-341.291zM775.296 639.957l-135.296 0.043v135.211l135.296-135.253z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sticky-note-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 584,
+ "id": 1765,
+ "name": "sticky-note-line",
+ "prevSize": 32,
+ "code": 60181
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 533
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683zM682.667 469.333v85.333h-341.333v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-reduce-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 585,
+ "id": 1764,
+ "name": "file-reduce-line",
+ "prevSize": 32,
+ "code": 60182
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 534
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 810.667h128v-597.335h-128v-85.333h170.667c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v682.668c0 11.315-4.493 22.165-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-170.667v-85.333zM121.985 122.751l536.319-76.587c3.029-0.434 6.114-0.212 9.045 0.65 2.935 0.862 5.649 2.345 7.957 4.348 2.313 2.003 4.164 4.479 5.436 7.261 1.267 2.781 1.924 5.804 1.924 8.861v889.431c0 3.051-0.657 6.071-1.924 8.849s-3.115 5.252-5.419 7.253c-2.308 2.001-5.018 3.486-7.945 4.352s-6.007 1.092-9.033 0.666l-536.404-76.587c-10.171-1.451-19.477-6.519-26.211-14.281-6.733-7.757-10.44-17.685-10.44-27.959v-694.017c0-10.274 3.707-20.202 10.44-27.962s16.040-12.829 26.211-14.278h0.043zM170.668 202.025v619.948l426.666 60.971v-741.889l-426.666 60.971zM469.333 341.332h85.333v341.335h-85.333l-85.332-85.333-85.333 85.333h-85.333v-341.335h85.333l0.427 213.335 84.907-85.333 85.332 84.864v-212.865z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-word-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 586,
+ "id": 1763,
+ "name": "file-word-2-line",
+ "prevSize": 32,
+ "code": 60183
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 535
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM469.333 682.667h85.333v85.333h-85.333v-85.333zM365.525 461.355c5.543-27.742 18.851-53.34 38.374-73.814s44.459-34.984 71.906-41.84c27.447-6.856 56.277-5.777 83.136 3.113s50.637 25.222 68.578 47.1c17.937 21.877 29.291 48.4 32.747 76.479 3.452 28.079-1.139 56.559-13.244 82.129-12.1 25.574-31.215 47.181-55.121 62.315-23.902 15.134-51.61 23.164-79.902 23.164h-42.667v-85.333h42.667c12.122 0 23.991-3.443 34.231-9.929 10.24-6.481 18.432-15.74 23.616-26.697s7.151-23.159 5.67-35.191c-1.481-12.028-6.345-23.39-14.033-32.764-7.684-9.374-17.873-16.371-29.38-20.177-11.507-3.81-23.859-4.272-35.618-1.335-11.759 2.935-22.443 9.152-30.805 17.924-8.367 8.772-14.067 19.738-16.444 31.625l-83.712-16.768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-unknow-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 587,
+ "id": 1762,
+ "name": "folder-unknow-line",
+ "prevSize": 32,
+ "code": 60184
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 536
+ },
+ {
+ "icon": {
+ "paths": [
+ "M189.441 426.667h645.119l-51.2-256h-542.719l-51.2 256zM554.667 512v341.333h170.667v85.333h-426.666v-85.333h170.666v-341.333h-341.674c-23.381 0-38.656-18.347-34.005-41.685l68.693-343.296c4.608-23.040 27.307-41.685 50.987-41.685h597.247c23.595 0 46.379 18.347 51.029 41.685l68.693 343.296c4.608 23.040-11.093 41.685-34.005 41.685h-341.632z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["keynote-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 588,
+ "id": 1761,
+ "name": "keynote-line",
+ "prevSize": 32,
+ "code": 60185
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 537
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-682.667h-597.333v682.667h597.333zM341.333 298.667h341.333v85.333h-341.333v-85.333zM341.333 469.333h341.333v85.333h-341.333v-85.333zM341.333 640h213.333v85.333h-213.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-list-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 589,
+ "id": 1760,
+ "name": "file-list-2-line",
+ "prevSize": 32,
+ "code": 60186
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 538
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 938.667h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512h170.667v170.667c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM768 725.333v85.333c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-85.333h-85.333zM682.667 853.333v-682.667h-512v640c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h469.333zM256 298.667h341.333v85.333h-341.333v-85.333zM256 469.333h341.333v85.333h-341.333v-85.333zM256 640h213.333v85.333h-213.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-list-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 590,
+ "id": 1759,
+ "name": "file-list-3-line",
+ "prevSize": 32,
+ "code": 60187
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 539
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 640h85.333v85.333h-85.333v-85.333zM554.667 569.813v27.52h-85.333v-64c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c12.122 0 23.991-3.443 34.231-9.929 10.24-6.481 18.432-15.74 23.616-26.697s7.151-23.159 5.67-35.19c-1.481-12.030-6.345-23.392-14.033-32.765-7.684-9.373-17.873-16.37-29.38-20.179s-23.859-4.271-35.618-1.334c-11.759 2.937-22.443 9.153-30.805 17.925-8.367 8.771-14.067 19.738-16.444 31.624l-83.712-16.768c5.19-25.938 17.174-50.032 34.727-69.82s40.046-34.56 65.181-42.806c25.135-8.246 52.006-9.67 77.871-4.126s49.792 17.856 69.338 35.678c19.546 17.823 34.010 40.516 41.911 65.76s8.96 52.132 3.063 77.92c-5.897 25.788-18.534 49.545-36.625 68.847-18.086 19.298-40.977 33.451-66.325 41.007v0zM640 170.667h-426.667v682.667h597.333v-512h-170.667v-170.667zM128 127.659c0-23.381 19.072-42.325 42.624-42.325h512.043l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-unknow-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 591,
+ "id": 1758,
+ "name": "file-unknow-line",
+ "prevSize": 32,
+ "code": 60188
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 540
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM341.333 512h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-reduce-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 592,
+ "id": 1757,
+ "name": "folder-reduce-line",
+ "prevSize": 32,
+ "code": 60189
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 541
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM170.667 213.333v597.333h682.667v-512h-358.997l-85.333-85.333h-238.336zM469.333 384h85.333v341.333h-85.333v-341.333zM640 512h85.333v213.333h-85.333v-213.333zM298.667 597.333h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-chart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 593,
+ "id": 1756,
+ "name": "folder-chart-line",
+ "prevSize": 32,
+ "code": 60190
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 542
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 384v-213.333h-384v682.667h258.389c13.995 17.792 30.891 33.493 50.347 46.293l59.307 39.040h-411.008c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.157-42.325 42.752-42.325h469.12l256.128 256v42.667h-298.667zM512 469.333h384v253.824c0 42.24-21.376 81.749-57.003 105.173l-134.997 88.917-134.997-88.917c-17.468-11.43-31.821-27.021-41.771-45.372s-15.185-38.886-15.232-59.759v-253.867zM597.333 723.157c0 13.483 6.912 26.197 18.603 33.92l88.064 58.027 88.064-58.027c5.67-3.665 10.342-8.687 13.589-14.609s4.971-12.557 5.013-19.311v-168.491h-213.333v168.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-shield-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 594,
+ "id": 1755,
+ "name": "file-shield-2-line",
+ "prevSize": 32,
+ "code": 60191
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 543
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 469.333h768v85.333h-768v-85.333zM128 768h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 595,
+ "id": 1754,
+ "name": "menu-line",
+ "prevSize": 32,
+ "code": 60192
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 544
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 128v85.333h-213.333v597.333h597.333v-213.333h85.333v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM750.336 213.333h-195.669v-85.333h341.333v341.333h-85.333v-195.669l-298.667 298.667-60.331-60.331 298.667-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 596,
+ "id": 1753,
+ "name": "share-box-line",
+ "prevSize": 32,
+ "code": 60193
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 545
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.666 647.339l392.192-392.235 60.373 60.331-452.566 452.565-271.531-271.531 60.331-60.331 211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["check-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 597,
+ "id": 1752,
+ "name": "check-line",
+ "prevSize": 32,
+ "code": 60194
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 546
+ },
+ {
+ "icon": {
+ "paths": [
+ "M278.826 128h617.174c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-617.174c-7.023 0-13.937-1.732-20.129-5.043s-11.472-8.102-15.369-13.943l-227.541-341.333c-4.678-7.010-7.174-15.253-7.174-23.68s2.496-16.67 7.174-23.68l227.541-341.333c3.898-5.842 9.177-10.631 15.369-13.943s13.107-5.044 20.129-5.044zM301.653 213.333l-199.083 298.667 199.083 298.667h551.68v-597.333h-551.68zM682.667 469.333v85.333h-298.667v-85.333h298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-back-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 598,
+ "id": 1751,
+ "name": "delete-back-line",
+ "prevSize": 32,
+ "code": 60195
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 547
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 196.437v391.893c0 28.096 6.936 55.753 20.192 80.525 13.256 24.768 32.422 45.884 55.797 61.47l222.677 148.48 222.677-148.48c23.369-15.582 42.53-36.689 55.787-61.453 13.257-24.759 20.194-52.412 20.203-80.499v-391.936l-298.667-66.304-298.667 66.304zM161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM512 576l-125.397 65.92 23.936-139.605-101.419-98.901 140.203-20.395 62.677-127.019 62.72 127.019 140.16 20.395-101.419 98.901 23.893 139.605-125.355-65.92z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-star-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 599,
+ "id": 1750,
+ "name": "shield-star-line",
+ "prevSize": 32,
+ "code": 60196
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 548
+ },
+ {
+ "icon": {
+ "paths": [
+ "M248.661 298.669l108.203 108.203-60.331 60.329-211.2-211.198 211.2-211.2 60.331 60.331-108.203 108.203h306.005c90.526 0 177.348 35.962 241.361 99.974 64.009 64.013 99.972 150.831 99.972 241.357 0 90.53-35.964 177.348-99.972 241.361-64.013 64.013-150.835 99.972-241.361 99.972h-384v-85.333h384c67.895 0 133.009-26.97 181.018-74.978 48.013-48.009 74.982-113.126 74.982-181.022s-26.97-133.008-74.982-181.017c-48.009-48.009-113.122-74.981-181.018-74.981h-306.005z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-go-back-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 600,
+ "id": 1749,
+ "name": "arrow-go-back-line",
+ "prevSize": 32,
+ "code": 60197
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 549
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM512 725.333c-56.58 0-110.842-22.477-150.849-62.485-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.269-62.484 150.849-62.484s110.844 22.476 150.848 62.484c40.009 40.008 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radio-button-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 601,
+ "id": 1748,
+ "name": "radio-button-line",
+ "prevSize": 32,
+ "code": 60198
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 550
+ },
+ {
+ "icon": {
+ "paths": [
+ "M684.8 514.133l211.2 211.2-211.2 211.2-60.331-60.331 108.203-108.245-562.005 0.043v-85.333h562.005l-108.203-108.203 60.331-60.331zM339.2 87.466l60.331 60.331-108.203 108.203h562.005v85.333h-562.005l108.203 108.203-60.331 60.331-211.2-211.2 211.2-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-right-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 602,
+ "id": 1747,
+ "name": "arrow-left-right-line",
+ "prevSize": 32,
+ "code": 60199
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 551
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95l350.592-77.909zM512 130.091l-298.667 66.347v391.893c0 28.096 6.936 55.753 20.192 80.525 13.256 24.768 32.422 45.884 55.797 61.47l222.677 148.48 222.677-148.48c23.369-15.582 42.53-36.689 55.787-61.453 13.257-24.759 20.194-52.412 20.203-80.499v-391.936l-298.667-66.347zM512 298.667c18.786-0.009 37.052 6.183 51.964 17.615 14.908 11.432 25.63 27.465 30.494 45.611 4.868 18.147 3.61 37.392-3.575 54.751-7.189 17.357-19.904 31.86-36.173 41.255l-0.043 182.101h-85.333v-182.101c-16.269-9.391-28.979-23.889-36.169-41.245-7.188-17.355-8.448-36.596-3.588-54.74 4.864-18.144 15.578-34.177 30.477-45.612 14.903-11.436 33.161-17.634 51.947-17.635z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-keyhole-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 603,
+ "id": 1746,
+ "name": "shield-keyhole-line",
+ "prevSize": 32,
+ "code": 60200
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 552
+ },
+ {
+ "icon": {
+ "paths": [
+ "M562.005 512l-211.201-211.2 60.331-60.331 271.532 271.531-271.532 271.531-60.331-60.331 211.201-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-s-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 604,
+ "id": 1745,
+ "name": "arrow-right-s-line",
+ "prevSize": 32,
+ "code": 60201
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 553
+ },
+ {
+ "icon": {
+ "paths": [
+ "M762.965 823.339c-75.042 47.599-162.099 72.802-250.965 72.661-230.057 0-421.46-165.547-461.609-384 18.348-99.383 68.336-190.17 142.507-258.816l-133.504-133.376 60.373-60.373 844.756 844.8-60.373 60.331-141.184-141.227zM253.228 313.6c-57.984 52.719-98.376 121.975-115.712 198.4 13.324 58.304 40.075 112.687 78.123 158.831 38.048 46.14 86.342 82.765 141.037 106.953s114.284 35.277 174.017 32.375c59.738-2.897 117.969-19.699 170.065-49.071l-86.528-86.528c-36.834 23.202-80.461 33.199-123.721 28.348-43.264-4.847-83.594-24.256-114.377-55.040-30.783-30.78-50.191-71.113-55.040-114.372-4.849-43.264 5.146-86.891 28.349-123.724l-96.213-96.171zM550.997 611.328l-138.324-138.325c-7.592 19.324-9.379 40.448-5.141 60.774 4.237 20.322 14.315 38.972 28.995 53.653 14.682 14.682 33.331 24.759 53.658 28.996s41.446 2.449 60.77-5.141l0.043 0.043zM887.765 707.925l-61.056-61.013c28.523-40.649 48.828-86.477 59.776-134.912-11.593-50.786-33.395-98.682-64.077-140.779s-69.606-77.516-114.402-104.102c-44.796-26.586-94.532-43.786-146.18-50.553-51.652-6.767-104.141-2.961-154.273 11.189l-67.328-67.328c53.205-20.907 111.188-32.427 171.775-32.427 230.059 0 421.461 165.547 461.611 384-13.073 71.070-42.458 138.138-85.845 195.925zM500.181 320.342c27.157-1.679 54.362 2.435 79.812 12.067 25.446 9.632 48.555 24.563 67.797 43.803 19.238 19.24 34.172 42.35 43.802 67.799 9.634 25.446 13.747 52.651 12.066 79.808l-203.477-203.477z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 605,
+ "id": 1744,
+ "name": "eye-off-line",
+ "prevSize": 32,
+ "code": 60202
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 554
+ },
+ {
+ "icon": {
+ "paths": [
+ "M519.339 512l-120.703-120.66 60.33-60.373 181.035 181.034-181.035 181.035-60.33-60.373 120.703-120.661z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-right-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 606,
+ "id": 1743,
+ "name": "arrow-drop-right-line",
+ "prevSize": 32,
+ "code": 60203
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 555
+ },
+ {
+ "icon": {
+ "paths": [
+ "M401.664 341.333l367.232 367.232-60.331 60.331-367.232-367.232v323.669h-85.333v-469.333h469.333v85.333h-323.669z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-up-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 607,
+ "id": 1742,
+ "name": "arrow-left-up-line",
+ "prevSize": 32,
+ "code": 60204
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 556
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h341.333v341.333h-341.333v-341.333zM128 554.667h341.333v341.333h-341.333v-341.333zM554.667 128h341.333v341.333h-341.333v-341.333zM554.667 554.667h341.333v341.333h-341.333v-341.333zM640 213.333v170.667h170.667v-170.667h-170.667zM640 640v170.667h170.667v-170.667h-170.667zM213.333 213.333v170.667h170.667v-170.667h-170.667zM213.333 640v170.667h170.667v-170.667h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["function-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 608,
+ "id": 1741,
+ "name": "function-line",
+ "prevSize": 32,
+ "code": 60205
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 557
+ },
+ {
+ "icon": {
+ "paths": [
+ "M622.933 341.335h273.067c22.63 0 44.335 8.99 60.339 24.993s24.994 37.708 24.994 60.339v89.771c0.013 11.153-2.163 22.199-6.4 32.512l-132.053 320.64c-3.221 7.817-8.691 14.502-15.718 19.204s-15.292 7.211-23.748 7.206h-718.080c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.167 12.497-30.169s18.854-12.497 30.17-12.497h148.565c6.831 0.002 13.562-1.637 19.628-4.777s11.289-7.692 15.231-13.271l232.661-329.686c2.94-4.168 7.279-7.144 12.224-8.389 4.949-1.245 10.176-0.675 14.741 1.605l77.397 38.699c21.781 10.887 39.181 28.899 49.31 51.043s12.378 47.087 6.37 70.685l-38.528 151.424zM298.667 451.755v358.912h476.16l121.173-294.229v-89.771h-273.067c-12.996-0.001-25.822-2.971-37.495-8.684s-21.888-14.015-29.862-24.276c-7.979-10.26-13.504-22.208-16.162-34.929-2.654-12.722-2.372-25.882 0.832-38.478l38.528-151.381c1.207-4.722 0.759-9.715-1.267-14.147s-5.508-8.038-9.869-10.215l-28.203-14.080-200.96 284.672c-10.667 15.103-24.32 27.476-39.808 36.607zM213.333 469.333h-85.333v341.333h85.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thumb-up-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 609,
+ "id": 1740,
+ "name": "thumb-up-line",
+ "prevSize": 32,
+ "code": 60206
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 558
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM512 451.669l120.661-120.704 60.373 60.373-120.704 120.661 120.704 120.661-60.373 60.373-120.661-120.704-120.661 120.704-60.373-60.373 120.704-120.661-120.704-120.661 60.373-60.373 120.661 120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["close-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 610,
+ "id": 1739,
+ "name": "close-circle-line",
+ "prevSize": 32,
+ "code": 60207
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 559
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333c211.968 0 384 172.032 384 384s-172.032 384-384 384c-211.968 0-384-172.032-384-384s172.032-384 384-384zM469.333 768c164.992 0 298.667-133.675 298.667-298.667 0-165.035-133.675-298.667-298.667-298.667-165.035 0-298.667 133.632-298.667 298.667 0 164.992 133.632 298.667 298.667 298.667zM831.36 771.029l120.704 120.661-60.373 60.373-120.661-120.704 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["search-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 611,
+ "id": 1738,
+ "name": "search-2-line",
+ "prevSize": 32,
+ "code": 60208
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 560
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c230.059 0 421.461 165.547 461.611 384-40.107 218.453-231.552 384-461.611 384-230.057 0-421.46-165.547-461.609-384 40.107-218.453 231.552-384 461.609-384zM512 810.667c87.019-0.017 171.452-29.577 239.484-83.831 68.032-54.259 115.627-130.001 135.002-214.835-19.443-84.766-67.072-160.427-135.095-214.612-68.028-54.186-152.422-83.691-239.39-83.691-86.966 0-171.361 29.505-239.385 83.691s-115.653 129.846-135.099 214.612c19.375 84.834 66.973 160.576 135.003 214.835 68.031 54.255 152.465 83.814 239.481 83.831zM512 704c-50.918 0-99.756-20.228-135.763-56.235s-56.236-84.843-56.236-135.765c0-50.923 20.229-99.758 56.236-135.764s84.845-56.236 135.763-56.236c50.923 0 99.759 20.229 135.765 56.236s56.235 84.842 56.235 135.764c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235zM512 618.667c28.292 0 55.424-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.002-20.003-47.134-31.241-75.426-31.241-28.288 0-55.42 11.238-75.422 31.241-20.006 20.006-31.244 47.138-31.244 75.426s11.238 55.42 31.244 75.426c20.002 20.002 47.134 31.241 75.422 31.241z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 612, "id": 1737, "name": "eye-line", "prevSize": 32, "code": 60209 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 561
+ },
+ {
+ "icon": {
+ "paths": [
+ "M775.339 298.669h-306.005c-67.895 0-133.010 26.971-181.019 74.981s-74.981 113.122-74.981 181.017c0 67.895 26.971 133.013 74.981 181.022s113.124 74.978 181.019 74.978h384v85.333h-384c-90.527 0-177.347-35.959-241.359-99.972s-99.974-150.831-99.974-241.361c0-90.526 35.962-177.344 99.974-241.357s150.832-99.974 241.359-99.974h306.005l-108.203-108.203 60.331-60.331 211.2 211.2-211.2 211.198-60.331-60.329 108.203-108.203z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-go-forward-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 613,
+ "id": 1736,
+ "name": "arrow-go-forward-line",
+ "prevSize": 32,
+ "code": 60210
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 562
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 779.093l-300.926 168.448 67.2-338.261-253.227-234.155 342.486-40.619 144.468-313.173 144.469 313.173 342.485 40.619-253.227 234.155 67.2 338.261-300.928-168.448zM512 681.301l181.205 101.419-40.491-203.648 152.448-141.013-206.208-24.448-86.955-188.544-86.953 188.587-206.208 24.405 152.448 141.013-40.491 203.648 181.204-101.419z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 614,
+ "id": 1735,
+ "name": "star-line",
+ "prevSize": 32,
+ "code": 60211
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 563
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-blank-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 615,
+ "id": 1734,
+ "name": "checkbox-blank-circle-line",
+ "prevSize": 32,
+ "code": 60212
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 564
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 625.323l120.192 73.387-32.683-136.96 106.965-91.605-140.373-11.264-54.101-130.005v296.448zM512 725.333l-250.795 153.173 68.181-285.867-223.147-191.147 292.907-23.467 112.854-271.36 112.853 271.36 292.949 23.467-223.189 191.147 68.181 285.867-250.795-153.173z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-half-s-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 616,
+ "id": 1733,
+ "name": "star-half-s-line",
+ "prevSize": 32,
+ "code": 60213
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 565
+ },
+ {
+ "icon": {
+ "paths": [
+ "M495.019 587.093l60.245 60.245 361.216-361.216 60.331 60.331-421.547 421.547-271.531-271.531 60.331-60.331 150.955 150.955zM495.104 466.432l211.285-211.328 60.16 60.16-211.285 211.328-60.16-60.16zM374.485 707.712l-60.288 60.288-271.531-271.531 60.331-60.331 60.288 60.288-0.043 0.043 211.243 211.243z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["check-double-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 617,
+ "id": 1732,
+ "name": "check-double-line",
+ "prevSize": 32,
+ "code": 60214
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 566
+ },
+ {
+ "icon": {
+ "paths": [
+ "M679.936 106.667l237.397 237.525v335.787l-237.397 237.355h-335.787l-237.483-237.397v-335.787l237.483-237.483h335.787zM644.565 192h-265.088l-187.435 187.52v265.088l187.435 187.477h265.088l187.477-187.477v-265.131l-187.477-187.477zM341.333 469.333h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spam-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 618,
+ "id": 1731,
+ "name": "spam-3-line",
+ "prevSize": 32,
+ "code": 60215
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 567
+ },
+ {
+ "icon": {
+ "paths": [
+ "M679.936 106.667l237.397 237.525v335.787l-237.397 237.355h-335.787l-237.483-237.397v-335.787l237.483-237.483h335.787zM644.565 192h-265.088l-187.435 187.52v265.088l187.435 187.477h265.088l187.477-187.477v-265.131l-187.477-187.477zM469.333 640h85.333v85.333h-85.333v-85.333zM469.333 298.667h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spam-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 619,
+ "id": 1730,
+ "name": "spam-2-line",
+ "prevSize": 32,
+ "code": 60216
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 568
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667h768v85.333h-768v-85.333zM554.667 562.005l259.029-259.072 60.331 60.331-362.027 362.069-362.027-362.027 60.331-60.373 259.029 258.987v-476.587h85.333v476.672z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 620,
+ "id": 1729,
+ "name": "download-line",
+ "prevSize": 32,
+ "code": 60217
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 569
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 597.333h-85.333c-69.99-0.026-138.657 19.076-198.576 55.249s-108.812 88.034-141.392 149.978c-0.916-11.499-1.371-23.027-1.365-34.56 0-235.648 191.019-426.667 426.667-426.667v-234.667l448 362.667-448 362.667v-234.667zM469.333 512h170.667v141.141l227.029-183.808-227.029-183.808v141.141h-85.333c-49.054-0.055-97.545 10.487-142.149 30.908s-84.27 50.236-116.283 87.407c55.096-21.837 113.833-33.028 173.099-32.981z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-forward-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 621,
+ "id": 1728,
+ "name": "share-forward-line",
+ "prevSize": 32,
+ "code": 60218
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 570
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 640l-0.043 128h128.043v85.333h-128.043l0.043 128h-85.333l-0.043-128h-127.957v-85.333h127.957l0.043-128h85.333zM469.333 768v85.333h-341.333v-85.333h341.333zM896 469.333v85.333h-768v-85.333h768zM896 170.667v85.333h-768v-85.333h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 622,
+ "id": 1727,
+ "name": "menu-add-line",
+ "prevSize": 32,
+ "code": 60219
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 571
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM469.461 682.667l-181.035-181.035 60.331-60.331 120.704 120.704 241.323-241.365 60.373 60.331-301.696 301.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 623,
+ "id": 1726,
+ "name": "checkbox-circle-line",
+ "prevSize": 32,
+ "code": 60220
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 572
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 768v85.333h-512v-85.333h512zM896 469.333v85.333h-768v-85.333h768zM768 170.667v85.333h-512v-85.333h512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 624,
+ "id": 1725,
+ "name": "menu-5-line",
+ "prevSize": 32,
+ "code": 60221
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 573
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 768v85.333h-469.333v-85.333h469.333zM896 469.333v85.333h-768v-85.333h768zM810.667 170.667v85.333h-469.333v-85.333h469.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 625,
+ "id": 1724,
+ "name": "menu-4-line",
+ "prevSize": 32,
+ "code": 60222
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 574
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 341.333h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667zM213.333 426.667v426.667h597.333v-426.667h-597.333zM469.333 597.333h85.333v85.333h-85.333v-85.333zM298.667 597.333h85.333v85.333h-85.333v-85.333zM640 597.333h85.333v85.333h-85.333v-85.333zM682.667 341.333v-42.667c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68v42.667h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-password-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 626,
+ "id": 1723,
+ "name": "lock-password-line",
+ "prevSize": 32,
+ "code": 60223
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 575
+ },
+ {
+ "icon": {
+ "paths": [
+ "M192 448c-35.2 0-64 28.8-64 64s28.8 64 64 64c35.2 0 64-28.8 64-64s-28.8-64-64-64zM832 448c-35.2 0-64 28.8-64 64s28.8 64 64 64c35.2 0 64-28.8 64-64s-28.8-64-64-64zM512 448c-35.2 0-64 28.8-64 64s28.8 64 64 64c35.2 0 64-28.8 64-64s-28.8-64-64-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["more-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 627,
+ "id": 1722,
+ "name": "more-line",
+ "prevSize": 32,
+ "code": 60224
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 576
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 426.667h213.333l-256 256-256-256h213.333v-298.667h85.333v298.667zM170.667 810.667h682.667v-298.667h85.333v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h85.333v298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 628,
+ "id": 1721,
+ "name": "download-2-line",
+ "prevSize": 32,
+ "code": 60225
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 577
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM213.333 196.437v391.893c0 28.096 6.936 55.753 20.192 80.525 13.256 24.768 32.422 45.884 55.797 61.47l222.677 148.48 222.677-148.48c23.369-15.582 42.53-36.689 55.787-61.453 13.257-24.759 20.194-52.412 20.203-80.499v-391.936l-298.667-66.304-298.667 66.304zM469.333 426.667v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-cross-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 629,
+ "id": 1720,
+ "name": "shield-cross-line",
+ "prevSize": 32,
+ "code": 60226
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 578
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.662c-50.428 0-100.361-9.929-146.95-29.227s-88.921-47.586-124.579-83.243c-35.658-35.657-63.943-77.99-83.241-124.578s-29.23-96.525-29.23-146.953c0-50.423 9.932-100.361 29.23-146.948 19.298-46.589 47.583-88.921 83.241-124.579s77.99-63.943 124.579-83.241c46.589-19.298 96.522-29.23 146.95-29.23 101.845 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.527 0 101.845-40.457 199.518-112.469 271.531-72.017 72.013-169.685 112.469-271.531 112.469zM512 853.329c39.223 0 78.059-7.723 114.295-22.733s69.158-37.009 96.896-64.742c27.733-27.733 49.732-60.659 64.742-96.896 15.010-36.233 22.733-75.072 22.733-114.295 0-39.219-7.723-78.059-22.733-114.291-15.010-36.237-37.009-69.162-64.742-96.896-27.738-27.734-60.659-49.734-96.896-64.743s-75.072-22.735-114.295-22.735c-79.211 0-155.178 31.467-211.189 87.477s-87.477 131.977-87.477 211.187c0 79.215 31.467 155.179 87.477 211.191s131.978 87.475 211.189 87.475zM554.667 554.662h128v85.333h-213.333v-298.665h85.333v213.331zM74.539 268.030l150.827-150.827 60.373 60.331-150.912 150.869-60.288-60.373zM798.592 117.203l150.869 150.827-60.331 60.373-150.869-150.869 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alarm-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 630,
+ "id": 1719,
+ "name": "alarm-line",
+ "prevSize": 32,
+ "code": 60227
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 579
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 105.557l234.667 406.443-234.667 406.443h-469.333l-234.667-406.443 234.667-406.443h469.333zM697.387 190.891h-370.773l-185.429 321.109 185.429 321.109h370.773l185.429-321.109-185.429-321.109zM368.384 348.587l73.899-42.667 213.333 369.493-73.899 42.667-213.333-369.493z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-6-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 631,
+ "id": 1718,
+ "name": "settings-6-line",
+ "prevSize": 32,
+ "code": 60228
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 580
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 298.667v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333h-85.333v-85.333h853.333v85.333h-85.333zM256 298.667v554.667h512v-554.667h-512zM298.667 85.333h426.667v85.333h-426.667v-85.333zM469.333 426.667h85.333v298.667h-85.333v-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 632,
+ "id": 1717,
+ "name": "delete-bin-4-line",
+ "prevSize": 32,
+ "code": 60229
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 581
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 341.333h682.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667zM256 426.667v426.667h512v-426.667h-512zM384 512h85.333v256h-85.333v-256zM554.667 512h85.333v256h-85.333v-256zM298.667 213.333v-85.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h213.333v85.333h-853.333v-85.333h213.333zM384 170.667v42.667h256v-42.667h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 633,
+ "id": 1716,
+ "name": "delete-bin-5-line",
+ "prevSize": 32,
+ "code": 60230
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 582
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 853.333c188.587 0 341.333-152.747 341.333-341.333s-152.747-341.333-341.333-341.333c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333zM554.667 512h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-down-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 634,
+ "id": 1715,
+ "name": "arrow-down-circle-line",
+ "prevSize": 32,
+ "code": 60231
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 583
+ },
+ {
+ "icon": {
+ "paths": [
+ "M398.593 801.365l-82.389-22.101 33.579-125.397c-50.263-18.539-96.977-45.555-138.112-79.872l-91.861 91.904-60.373-60.373 91.904-91.861c-51.88-62.135-86.738-136.672-101.163-216.32l83.968-15.317c32.384 179.286 189.227 315.307 377.855 315.307 188.587 0 345.472-136.021 377.856-315.307l83.968 15.275c-14.404 79.659-49.25 154.215-101.12 216.363l91.861 91.861-60.373 60.373-91.861-91.904c-41.135 34.317-87.846 61.333-138.112 79.872l33.579 125.44-82.389 22.059-33.621-125.44c-52.804 9.050-106.765 9.050-159.573 0l-33.62 125.44z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-close-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 635,
+ "id": 1714,
+ "name": "eye-close-line",
+ "prevSize": 32,
+ "code": 60232
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 584
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 640h85.333v213.333h512v-682.667h-512v213.333h-85.333v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256zM426.667 469.333v-128l213.333 170.667-213.333 170.667v-128h-341.333v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["login-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 636,
+ "id": 1713,
+ "name": "login-box-line",
+ "prevSize": 32,
+ "code": 60233
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 585
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM683.733 677.333c54.148-55.684 84.39-130.33 84.267-208 0-165.035-133.675-298.667-298.667-298.667-165.035 0-298.667 133.632-298.667 298.667 0 164.992 133.632 298.667 298.667 298.667 77.67 0.124 152.316-30.118 208-84.267l6.4-6.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["search-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 637,
+ "id": 1712,
+ "name": "search-line",
+ "prevSize": 32,
+ "code": 60234
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 586
+ },
+ {
+ "icon": {
+ "paths": [
+ "M690.005 469.333l-228.864-228.862 60.331-60.331 331.861 331.859-331.861 331.861-60.331-60.331 228.864-228.864h-519.339v-85.333h519.339z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 638,
+ "id": 1711,
+ "name": "arrow-right-line",
+ "prevSize": 32,
+ "code": 60235
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 587
+ },
+ {
+ "icon": {
+ "paths": [
+ "M42.667 618.667c-0.026-47.125 11.965-93.483 34.839-134.686s55.878-75.892 95.891-100.791c10.56-82.343 50.765-158.016 113.089-212.857s142.497-85.093 225.514-85.093c83.017 0 163.191 30.252 225.515 85.093s102.528 130.514 113.088 212.857c49.63 30.877 88.239 76.646 110.306 130.773s26.47 113.839 12.578 170.62c-13.888 56.777-45.367 107.712-89.933 145.536-44.565 37.82-99.938 60.595-158.221 65.071l-426.667 0.811c-143.189-11.691-256-131.328-256-277.333zM718.848 810.112c40.354-3.102 78.699-18.88 109.551-45.077 30.852-26.193 52.638-61.47 62.246-100.791 9.604-39.317 6.541-80.666-8.759-118.135-15.296-37.474-42.048-69.15-76.425-90.513l-34.432-21.461-5.12-40.192c-7.974-61.709-38.148-118.403-84.881-159.484s-106.829-63.74-169.050-63.74c-62.221 0-122.316 22.658-169.049 63.74s-76.906 97.775-84.882 159.484l-5.12 40.192-34.347 21.461c-34.377 21.359-61.125 53.035-76.425 90.505-15.3 37.466-18.368 78.81-8.768 118.127s31.38 74.594 62.227 100.796c30.847 26.197 69.184 41.98 109.536 45.090l7.381 0.555h398.933l7.381-0.555zM554.667 554.667v170.667h-85.333v-170.667h-128l170.667-213.333 170.667 213.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-cloud-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 639,
+ "id": 1710,
+ "name": "upload-cloud-line",
+ "prevSize": 32,
+ "code": 60236
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 588
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 298.667v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v170.368c0 23.723-19.157 42.965-42.965 42.965h-554.069c-5.644 0.004-11.233-1.101-16.449-3.26-5.215-2.155-9.954-5.321-13.945-9.314-3.991-3.989-7.155-8.725-9.312-13.943-2.157-5.214-3.265-10.803-3.259-16.448l0.128-554.069c0-23.723 19.157-42.965 42.965-42.965h170.24zM384 298.667h298.368c23.723 0 42.965 19.157 42.965 42.965v298.368h128v-469.333h-469.333v128zM170.795 384l-0.128 469.333h469.333v-469.333h-469.205z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-multiple-blank-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 640,
+ "id": 1709,
+ "name": "checkbox-multiple-blank-line",
+ "prevSize": 32,
+ "code": 60237
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 589
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 554.667v238.293l77.995-77.995 60.373 60.373-181.035 180.992-181.034-180.992 60.373-60.373 77.994 77.995v-238.293h85.333zM512 85.333c73.259 0.003 143.962 26.927 198.665 75.653s89.596 115.855 98.039 188.624c53.090 14.478 99.401 47.151 130.846 92.309 31.441 45.163 46.016 99.934 41.169 154.748-4.843 54.814-28.796 106.18-67.669 145.126-38.878 38.946-90.202 62.993-145.007 67.934v-85.931c19.635-2.803 38.515-9.489 55.535-19.669s31.846-23.65 43.605-39.62c11.759-15.97 20.22-34.125 24.887-53.402 4.668-19.273 5.449-39.287 2.295-58.867-3.149-19.584-10.172-38.34-20.651-55.181-10.479-16.836-24.205-31.42-40.384-42.893-16.175-11.477-34.475-19.614-53.833-23.94-19.354-4.325-39.377-4.752-58.901-1.254 6.682-31.109 6.323-63.319-1.058-94.27-7.377-30.951-21.585-59.86-41.583-84.609s-45.278-44.711-73.988-58.425c-28.71-13.713-60.126-20.831-91.947-20.831-31.817 0-63.232 7.117-91.945 20.831-28.711 13.714-53.992 33.676-73.989 58.425s-34.206 53.658-41.584 84.609c-7.378 30.951-7.739 63.161-1.057 94.27-38.927-7.31-79.163 1.143-111.857 23.501-32.694 22.353-55.168 56.785-62.479 95.71s1.143 79.164 23.499 111.859c22.356 32.691 56.785 55.168 95.712 62.477l7.68 1.28v85.931c-54.807-4.937-106.138-28.975-145.018-67.917s-62.84-90.308-67.689-145.126c-4.849-54.814 9.72-109.589 41.161-154.752 31.44-45.164 77.753-77.841 130.843-92.322 8.435-72.773 43.324-139.908 98.030-188.635s125.414-75.648 198.673-75.642z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-cloud-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 641,
+ "id": 1708,
+ "name": "download-cloud-2-line",
+ "prevSize": 32,
+ "code": 60238
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 590
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM469.333 469.333v-170.667h85.333v170.667h170.667v85.333h-170.667v170.667h-85.333v-170.667h-170.667v-85.333h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["add-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 642,
+ "id": 1707,
+ "name": "add-box-line",
+ "prevSize": 32,
+ "code": 60239
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 591
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 768h85.333v85.333h512v-682.667h-512v85.333h-85.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128zM256 469.333h298.667v85.333h-298.667v128l-213.333-170.667 213.333-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 643,
+ "id": 1706,
+ "name": "logout-box-line",
+ "prevSize": 32,
+ "code": 60240
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 592
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 341.333v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333zM810.667 426.667h-597.333v426.667h597.333v-426.667zM469.333 671.232c-16.269-9.391-28.983-23.889-36.173-41.246-7.187-17.353-8.448-36.595-3.588-54.741 4.864-18.146 15.578-34.176 30.481-45.615 14.903-11.435 33.161-17.634 51.947-17.634s37.043 6.199 51.947 17.634c14.903 11.439 25.617 27.469 30.481 45.615 4.86 18.146 3.597 37.389-3.588 54.741-7.189 17.357-19.904 31.855-36.173 41.246v96.768h-85.333v-96.768zM341.333 341.333h341.333v-42.667c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68v42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 644,
+ "id": 1705,
+ "name": "lock-2-line",
+ "prevSize": 32,
+ "code": 60241
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 593
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 810.667h682.667v-298.667h85.333v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h85.333v298.667zM554.667 384v298.667h-85.333v-298.667h-213.333l256-256 256 256h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 645,
+ "id": 1704,
+ "name": "upload-2-line",
+ "prevSize": 32,
+ "code": 60242
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 594
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 469.333h512v85.333h-512v-85.333zM128 768h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 646,
+ "id": 1703,
+ "name": "menu-2-line",
+ "prevSize": 32,
+ "code": 60243
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 595
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM384 469.333h512v85.333h-512v-85.333zM128 768h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 647,
+ "id": 1702,
+ "name": "menu-3-line",
+ "prevSize": 32,
+ "code": 60244
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 596
+ },
+ {
+ "icon": {
+ "paths": [
+ "M622.507 682.837l-367.275-367.233 60.331-60.331 367.232 367.191v-323.628h85.333v469.335h-469.334v-85.333h323.712z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 648,
+ "id": 1701,
+ "name": "arrow-right-down-line",
+ "prevSize": 32,
+ "code": 60245
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 597
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 469.333h597.333v85.333h-597.333v-85.333zM512 341.333c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745zM512 810.667c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["divide-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 649,
+ "id": 1700,
+ "name": "divide-line",
+ "prevSize": 32,
+ "code": 60246
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 598
+ },
+ {
+ "icon": {
+ "paths": [
+ "M295.637 21.974l603.349 603.391-60.331 60.331-163.115-163.072-35.541 53.376v362.667h-256v-362.667l-213.333-320h-42.667v-85.333h195.627l-88.32-88.363 60.331-60.33zM408.96 256h-135.723l196.096 294.144v303.189h85.333v-303.189l59.392-89.045-205.099-205.098zM896 170.667v85.333h-42.667l-81.707 122.539-61.525-61.568 40.661-60.971h-101.675l-85.333-85.333h332.245z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 650,
+ "id": 1699,
+ "name": "filter-off-line",
+ "prevSize": 32,
+ "code": 60247
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 599
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 298.667v554.667c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-512c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-554.667h-85.333v-85.333h853.333v85.333h-85.333zM256 298.667v554.667h512v-554.667h-512zM469.333 384h85.333v85.333h-85.333v-85.333zM469.333 512h85.333v85.333h-85.333v-85.333zM469.333 640h85.333v85.333h-85.333v-85.333zM298.667 85.333h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 651,
+ "id": 1698,
+ "name": "delete-bin-3-line",
+ "prevSize": 32,
+ "code": 60248
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 600
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 256h213.333v85.333h-85.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h-85.333v-85.333h213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM768 341.333h-512v512h512v-512zM572.331 597.333l75.435 75.435-60.331 60.331-75.435-75.435-75.435 75.435-60.331-60.331 75.435-75.435-75.435-75.435 60.331-60.331 75.435 75.435 75.435-75.435 60.331 60.331-75.435 75.435zM384 170.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 652,
+ "id": 1697,
+ "name": "delete-bin-2-line",
+ "prevSize": 32,
+ "code": 60249
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 601
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 87.467v85.845c-86.071 10.952-164.742 54.266-220.024 121.14s-83.025 152.289-77.592 238.881c5.433 86.596 43.636 167.872 106.842 227.311s146.676 92.582 233.44 92.689c83.14 0 163.422-30.345 225.779-85.333 62.362-54.989 102.507-130.846 112.909-213.333h85.888c-21.419 215.595-203.349 384-424.576 384-235.648 0-426.667-191.019-426.667-426.667 0-221.227 168.405-403.157 384-424.533zM853.333 230.997l-341.333 341.333-60.331-60.331 341.333-341.333h-195.669v-85.333h341.333v341.333h-85.333v-195.669z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 653,
+ "id": 1696,
+ "name": "share-circle-line",
+ "prevSize": 32,
+ "code": 60250
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 602
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 725.333l-250.795 153.173 68.181-285.867-223.147-191.147 292.907-23.467 112.854-271.36 112.853 271.36 292.949 23.467-223.189 191.147 68.181 285.867-250.795-153.173zM512 625.323l120.192 73.387-32.683-136.96 106.965-91.605-140.373-11.264-54.101-130.005-54.101 130.005-140.374 11.264 106.965 91.605-32.683 136.96 120.192-73.387z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-s-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 654,
+ "id": 1695,
+ "name": "star-s-line",
+ "prevSize": 32,
+ "code": 60251
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 603
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM683.733 677.333c54.148-55.684 84.39-130.33 84.267-208 0-165.035-133.675-298.667-298.667-298.667-165.035 0-298.667 133.632-298.667 298.667 0 164.992 133.632 298.667 298.667 298.667 77.67 0.124 152.316-30.118 208-84.267l6.4-6.4zM519.595 306.176c-12.582 5.683-23.595 14.334-32.098 25.21s-14.242 23.652-16.721 37.233c-2.479 13.581-1.626 27.561 2.487 40.739s11.358 25.164 21.12 34.926c9.762 9.762 21.747 17.007 34.927 21.12 13.175 4.113 27.157 4.966 40.738 2.487s26.355-8.218 37.231-16.721c10.88-8.503 19.529-19.516 25.212-32.098 11.213 36.42 9.911 75.546-3.691 111.147-13.606 35.597-38.733 65.613-71.377 85.274-32.649 19.661-70.933 27.827-108.762 23.202-37.826-4.629-73.015-21.781-99.962-48.725-26.947-26.948-44.099-62.14-48.725-99.964-4.625-37.828 3.542-76.114 23.2-108.76s49.679-57.773 85.276-71.378c35.599-13.605 74.724-14.904 111.145-3.692z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["search-eye-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 655,
+ "id": 1694,
+ "name": "search-eye-line",
+ "prevSize": 32,
+ "code": 60252
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 604
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 562.005l211.2-211.201 60.331 60.331-271.531 271.532-271.531-271.532 60.331-60.331 211.2 211.201z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-down-s-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 656,
+ "id": 1693,
+ "name": "arrow-down-s-line",
+ "prevSize": 32,
+ "code": 60253
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 605
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 896v-426.667h341.333v426.667h-341.333zM128 554.667v-426.667h341.333v426.667h-341.333zM384 469.333v-256h-170.667v256h170.667zM128 896v-256h341.333v256h-341.333zM213.333 810.667h170.667v-85.333h-170.667v85.333zM640 810.667h170.667v-256h-170.667v256zM554.667 128h341.333v256h-341.333v-256zM640 213.333v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dashboard-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 657,
+ "id": 1692,
+ "name": "dashboard-line",
+ "prevSize": 32,
+ "code": 60254
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 606
+ },
+ {
+ "icon": {
+ "paths": [
+ "M751.701 254.635l61.995-61.995 60.331 60.331-61.995 61.995c61.261 76.679 90.833 173.905 82.65 271.706-8.188 97.805-53.508 188.762-126.66 254.191s-168.58 100.369-266.688 97.638c-98.108-2.731-191.445-42.923-260.844-112.324-69.399-69.397-109.591-162.735-112.322-260.843s32.206-193.535 97.637-266.688c65.431-73.152 156.387-118.475 254.192-126.66 97.801-8.185 195.025 21.389 271.706 82.649zM512 853.333c39.223 0 78.059-7.727 114.295-22.733 36.237-15.010 69.158-37.009 96.892-64.747 27.738-27.733 49.737-60.655 64.747-96.892 15.006-36.237 22.733-75.072 22.733-114.295s-7.727-78.059-22.733-114.295c-15.010-36.235-37.009-69.16-64.747-96.894-27.733-27.734-60.655-49.733-96.892-64.743s-75.072-22.735-114.295-22.735c-79.211 0-155.178 31.467-211.189 87.477s-87.477 131.979-87.477 211.189c0 79.211 31.467 155.179 87.477 211.187 56.011 56.013 131.979 87.479 211.189 87.479zM469.333 341.333h85.333v256h-85.333v-256zM341.333 42.667h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["timer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 658,
+ "id": 1691,
+ "name": "timer-line",
+ "prevSize": 32,
+ "code": 60255
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 607
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 298.667c-56.579 0-110.842 22.476-150.849 62.484s-62.484 94.269-62.484 150.849c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.27 62.485 150.849 62.485h341.333c56.58 0 110.844-22.477 150.848-62.485 40.009-40.004 62.485-94.268 62.485-150.848s-22.477-110.842-62.485-150.849c-40.004-40.008-94.268-62.484-150.848-62.484h-341.333zM341.333 213.333h341.333c79.211 0 155.179 31.467 211.187 87.477 56.013 56.011 87.479 131.979 87.479 211.189s-31.467 155.179-87.479 211.187c-56.009 56.013-131.977 87.479-211.187 87.479h-341.333c-79.212 0-155.178-31.467-211.189-87.479-56.011-56.009-87.477-131.977-87.477-211.187s31.467-155.178 87.477-211.189c56.011-56.011 131.978-87.477 211.189-87.477zM341.333 640c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49c33.948 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.561 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["toggle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 659,
+ "id": 1690,
+ "name": "toggle-line",
+ "prevSize": 32,
+ "code": 60256
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 608
+ },
+ {
+ "icon": {
+ "paths": [
+ "M233.088 189.142c77.421-67.087 176.469-103.951 278.912-103.808 235.648 0 426.667 191.019 426.667 426.666 0 91.136-28.587 175.616-77.227 244.907l-136.107-244.907h128c0.004-66.918-19.661-132.36-56.546-188.191-36.89-55.831-89.378-99.588-150.933-125.83-61.559-26.241-129.472-33.81-195.294-21.764-65.826 12.045-126.658 43.174-174.933 89.514l-42.539-76.587zM790.912 834.859c-77.423 67.085-176.469 103.953-278.912 103.808-235.648 0-426.667-191.019-426.667-426.667 0-91.136 28.587-175.616 77.227-244.906l136.107 244.906h-128c-0.006 66.918 19.659 132.361 56.548 188.194 36.889 55.829 89.375 99.588 150.932 125.828 61.559 26.24 129.471 33.809 195.293 21.764 65.826-12.045 126.656-43.174 174.933-89.515l42.539 76.587z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["refresh-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 660,
+ "id": 1689,
+ "name": "refresh-line",
+ "prevSize": 32,
+ "code": 60257
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 609
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 537.003l181.035 180.992-60.373 60.373-77.995-77.995v238.293h-85.333v-238.379l-77.994 78.080-60.373-60.373 181.034-180.992zM512 85.333c73.259 0.003 143.962 26.927 198.665 75.653s89.596 115.855 98.039 188.624c53.090 14.478 99.401 47.151 130.846 92.309 31.441 45.163 46.016 99.934 41.169 154.748-4.843 54.814-28.796 106.18-67.669 145.126-38.878 38.946-90.202 62.993-145.007 67.934v-85.931c19.635-2.803 38.515-9.489 55.535-19.669s31.846-23.65 43.605-39.62c11.759-15.97 20.22-34.125 24.887-53.402 4.668-19.273 5.449-39.287 2.295-58.867-3.149-19.584-10.172-38.34-20.651-55.181-10.479-16.836-24.205-31.42-40.384-42.893-16.175-11.477-34.475-19.614-53.833-23.94-19.354-4.325-39.377-4.752-58.901-1.254 6.682-31.109 6.323-63.319-1.058-94.27-7.377-30.951-21.585-59.86-41.583-84.609s-45.278-44.711-73.988-58.425c-28.71-13.713-60.126-20.831-91.947-20.831-31.817 0-63.232 7.117-91.945 20.831-28.711 13.714-53.992 33.676-73.989 58.425s-34.206 53.658-41.584 84.609c-7.378 30.951-7.739 63.161-1.057 94.27-38.927-7.31-79.163 1.143-111.857 23.501-32.694 22.353-55.168 56.785-62.479 95.71s1.143 79.164 23.499 111.859c22.356 32.691 56.785 55.168 95.712 62.477l7.68 1.28v85.931c-54.807-4.937-106.138-28.975-145.018-67.917s-62.84-90.308-67.689-145.126c-4.849-54.814 9.72-109.589 41.161-154.752 31.44-45.164 77.753-77.841 130.843-92.322 8.435-72.773 43.324-139.908 98.030-188.635s125.414-75.648 198.673-75.642z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-cloud-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 661,
+ "id": 1688,
+ "name": "upload-cloud-2-line",
+ "prevSize": 32,
+ "code": 60258
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 610
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 690.005l228.864-228.864 60.331 60.331-331.861 331.861-331.859-331.861 60.331-60.331 228.862 228.864v-519.339h85.333v519.339z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 662,
+ "id": 1687,
+ "name": "arrow-down-line",
+ "prevSize": 32,
+ "code": 60259
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 611
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l405.333 234.667v469.333l-405.333 234.667-405.333-234.667v-469.333l405.333-234.667zM512 141.269l-320 185.259v370.944l320 185.259 320-185.259v-370.944l-320-185.259zM512 682.667c-45.265 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678s17.981-88.673 49.987-120.68c32.006-32.006 75.415-49.987 120.68-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.415 49.988 120.68s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988zM512 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 663,
+ "id": 1686,
+ "name": "settings-line",
+ "prevSize": 32,
+ "code": 60260
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 612
+ },
+ {
+ "icon": {
+ "paths": [
+ "M504.661 512l120.704 120.661-60.331 60.373-181.035-181.035 181.035-181.036 60.331 60.373-120.704 120.663z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-left-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 664,
+ "id": 1685,
+ "name": "arrow-drop-left-line",
+ "prevSize": 32,
+ "code": 60261
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 613
+ },
+ {
+ "icon": {
+ "paths": [
+ "M559.787 726.315l-179.156-97.707c-23.39 25.007-53.76 42.398-87.165 49.916s-68.298 4.813-100.145-7.757c-31.847-12.574-59.177-34.436-78.436-62.746s-29.558-61.76-29.558-96c0-34.24 10.299-67.686 29.558-95.997s46.589-50.172 78.436-62.746c31.848-12.573 66.741-15.277 100.145-7.759s63.775 24.91 87.165 49.915l179.199-97.707c-10.172-40.274-5.308-82.876 13.683-119.821 18.987-36.944 50.799-65.695 89.472-80.862 38.669-15.167 81.545-15.709 120.589-1.526s71.573 42.12 91.49 78.572c19.921 36.452 25.86 78.918 16.708 119.436s-32.764 76.309-66.415 100.662c-33.655 24.353-75.034 35.596-116.382 31.624s-79.829-22.89-108.228-53.205l-179.199 97.706c6.877 27.366 6.877 56.009 0 83.371l179.156 97.707c28.399-30.315 66.88-49.233 108.228-53.205s82.726 7.27 116.382 31.625c33.651 24.354 57.263 60.143 66.415 100.663 9.152 40.516 3.213 82.982-16.708 119.437-19.917 36.45-52.446 64.388-91.49 78.571s-81.92 13.641-120.589-1.527c-38.673-15.168-70.485-43.917-89.472-80.862-18.991-36.945-23.855-79.548-13.683-119.821v0.043zM256.001 597.333c22.632 0 44.337-8.99 60.34-24.994 16.003-16 24.993-37.705 24.993-60.339 0-22.63-8.99-44.335-24.993-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.635 8.991 44.339 24.994 60.339 16.003 16.004 37.708 24.994 60.34 24.994zM725.333 341.334c22.635 0 44.339-8.99 60.339-24.994 16.004-16.003 24.994-37.708 24.994-60.34s-8.99-44.337-24.994-60.34c-16-16.003-37.705-24.994-60.339-24.994-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994zM725.333 853.333c22.635 0 44.339-8.99 60.339-24.994 16.004-16 24.994-37.705 24.994-60.339 0-22.63-8.99-44.335-24.994-60.339-16-16.004-37.705-24.994-60.339-24.994-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.635 8.99 44.339 24.994 60.339 16.004 16.004 37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 665,
+ "id": 1684,
+ "name": "share-line",
+ "prevSize": 32,
+ "code": 60262
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 614
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 333.995v519.339h-85.333v-519.339l-228.865 228.864-60.331-60.331 331.862-331.861 331.861 331.861-60.331 60.331-228.864-228.864z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 666,
+ "id": 1683,
+ "name": "arrow-up-line",
+ "prevSize": 32,
+ "code": 60263
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 615
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c66.249-0.049 131.593 15.351 190.844 44.977 59.255 29.626 110.78 72.663 150.49 125.69h-115.627c-49.271-43.445-110.029-71.75-174.989-81.519-64.956-9.769-131.354-0.586-191.224 26.446-59.869 27.031-110.666 70.764-146.296 125.951s-54.579 119.48-54.574 185.169c0.006 65.69 18.965 129.98 54.604 185.161s86.444 98.906 146.317 125.926c59.874 27.021 126.272 36.194 191.228 26.415 64.96-9.779 125.713-38.097 174.976-81.549h115.627c-39.714 53.035-91.247 96.073-150.507 125.7s-124.617 45.022-190.869 44.966zM810.667 682.667v-128h-341.333v-85.333h341.333v-128l213.333 170.667-213.333 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-circle-r-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 667,
+ "id": 1682,
+ "name": "logout-circle-r-line",
+ "prevSize": 32,
+ "code": 60264
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 616
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM213.333 196.437v391.893c0 28.096 6.936 55.753 20.192 80.525 13.256 24.768 32.422 45.884 55.797 61.47l222.677 148.48 222.677-148.48c23.369-15.582 42.53-36.689 55.787-61.453 13.257-24.759 20.194-52.412 20.203-80.499v-391.936l-298.667-66.304-298.667 66.304zM554.667 426.667h128l-213.333 298.667v-213.333h-128l213.333-298.667v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-flash-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 668,
+ "id": 1681,
+ "name": "shield-flash-line",
+ "prevSize": 32,
+ "code": 60265
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 617
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM469.333 640h85.333v85.333h-85.333v-85.333zM469.333 298.667h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["error-warning-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 669,
+ "id": 1680,
+ "name": "error-warning-line",
+ "prevSize": 32,
+ "code": 60266
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 618
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 469.333v-256h85.333v256h256v85.333h-256v256h-85.333v-256h-256v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["add-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 670, "id": 1679, "name": "add-line", "prevSize": 32, "code": 60267 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 619
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667h768v85.333h-768v-85.333zM554.667 248.661v476.672h-85.333v-476.672l-259.029 259.072-60.331-60.331 362.027-362.069 362.027 362.027-60.331 60.331-259.029-259.029z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 671,
+ "id": 1678,
+ "name": "upload-line",
+ "prevSize": 32,
+ "code": 60268
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 620
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-blank-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 672,
+ "id": 1677,
+ "name": "checkbox-blank-line",
+ "prevSize": 32,
+ "code": 60269
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 621
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 469.333v-128l213.333 170.667-213.333 170.667v-128h-384v-85.333h384zM104.875 640h90.624c29.783 73.348 84.126 134.067 153.733 171.772 69.606 37.709 150.152 50.057 227.856 34.935 77.709-15.117 147.746-56.768 198.135-117.824 50.389-61.052 78.003-137.719 78.11-216.883 0.043-79.245-27.486-156.039-77.871-217.207s-120.482-102.897-198.268-118.033c-77.79-15.136-158.419-2.734-228.063 35.079s-123.96 98.679-153.633 172.161h-90.624c54.357-173.099 216.064-298.667 407.125-298.667 235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-191.061 0-352.768-125.568-407.125-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["login-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 673,
+ "id": 1676,
+ "name": "login-circle-line",
+ "prevSize": 32,
+ "code": 60270
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 622
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM683.733 677.333c54.148-55.684 84.39-130.33 84.267-208 0-165.035-133.675-298.667-298.667-298.667-165.035 0-298.667 133.632-298.667 298.667 0 164.992 133.632 298.667 298.667 298.667 77.67 0.124 152.316-30.118 208-84.267l6.4-6.4zM426.667 426.667v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zoom-in-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 674,
+ "id": 1675,
+ "name": "zoom-in-line",
+ "prevSize": 32,
+ "code": 60271
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 623
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 853.333c188.587 0 341.333-152.747 341.333-341.333s-152.747-341.333-341.333-341.333c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333zM512 469.333h170.667v85.333h-170.667v128l-170.667-170.667 170.667-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 675,
+ "id": 1674,
+ "name": "arrow-left-circle-line",
+ "prevSize": 32,
+ "code": 60272
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 624
+ },
+ {
+ "icon": {
+ "paths": [
+ "M42.667 618.667c-0.026-47.125 11.965-93.483 34.839-134.686s55.878-75.892 95.891-100.791c10.56-82.343 50.765-158.016 113.089-212.857s142.497-85.093 225.514-85.093c83.017 0 163.191 30.252 225.515 85.093s102.528 130.514 113.088 212.857c49.63 30.877 88.239 76.646 110.306 130.773s26.47 113.839 12.578 170.62c-13.888 56.777-45.367 107.712-89.933 145.536-44.565 37.82-99.938 60.595-158.221 65.071l-426.667 0.811c-143.189-11.691-256-131.328-256-277.333zM718.848 810.112c40.354-3.102 78.699-18.88 109.551-45.077 30.852-26.193 52.638-61.47 62.246-100.791 9.604-39.317 6.541-80.666-8.759-118.135-15.296-37.474-42.048-69.15-76.425-90.513l-34.432-21.461-5.12-40.192c-7.974-61.709-38.148-118.403-84.881-159.484s-106.829-63.74-169.050-63.74c-62.221 0-122.316 22.658-169.049 63.74s-76.906 97.775-84.882 159.484l-5.12 40.192-34.347 21.461c-34.377 21.359-61.125 53.035-76.425 90.505-15.3 37.466-18.368 78.81-8.768 118.127s31.38 74.594 62.227 100.796c30.847 26.197 69.184 41.98 109.536 45.090l7.381 0.555h398.933l7.381-0.555zM554.667 512h128l-170.667 213.333-170.667-213.333h128v-170.666h85.333v170.666z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-cloud-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 676,
+ "id": 1673,
+ "name": "download-cloud-line",
+ "prevSize": 32,
+ "code": 60273
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 625
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 461.995l-211.2 211.2-60.331-60.331 271.531-271.531 271.531 271.531-60.331 60.331-211.2-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-s-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 677,
+ "id": 1672,
+ "name": "arrow-up-s-line",
+ "prevSize": 32,
+ "code": 60274
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 626
+ },
+ {
+ "icon": {
+ "paths": [
+ "M94.422 599.893c-12.271-57.954-12.271-117.833 0-175.786 47.36 5.546 88.747-10.112 102.229-42.709 13.525-32.64-4.608-72.96-42.069-102.528 32.3-49.65 74.638-91.988 124.288-124.288 29.525 37.419 69.888 55.595 102.528 42.069s48.298-54.869 42.709-102.229c57.954-12.271 117.832-12.271 175.786 0-5.547 47.36 10.112 88.747 42.709 102.229 32.64 13.525 72.96-4.608 102.528-42.069 49.651 32.3 91.989 74.638 124.288 124.288-37.419 29.525-55.595 69.888-42.069 102.528s54.869 48.298 102.229 42.709c12.271 57.954 12.271 117.832 0 175.786-47.36-5.547-88.747 10.112-102.229 42.709-13.525 32.64 4.608 72.96 42.069 102.528-32.299 49.651-74.637 91.989-124.288 124.288-29.525-37.419-69.888-55.595-102.528-42.069s-48.299 54.869-42.709 102.229c-57.954 12.271-117.833 12.271-175.786 0 5.546-47.36-10.112-88.747-42.709-102.229-32.64-13.525-72.96 4.608-102.528 42.069-49.65-32.299-91.988-74.637-124.288-124.288 37.419-29.525 55.595-69.888 42.069-102.528s-54.869-48.299-102.229-42.709zM170.667 520.96c46.933 13.013 85.632 42.752 104.832 89.003 19.157 46.293 12.8 94.72-11.179 137.045 4.096 4.352 8.32 8.576 12.672 12.672 42.368-23.979 90.752-30.293 137.045-11.179 46.25 19.2 75.989 57.899 89.002 104.832 5.973 0.171 11.947 0.171 17.92 0 13.013-46.933 42.752-85.632 89.003-104.832 46.293-19.157 94.72-12.8 137.045 11.179 4.352-4.096 8.576-8.32 12.672-12.672-23.979-42.368-30.293-90.752-11.179-137.045 19.2-46.251 57.899-75.989 104.832-89.003 0.171-5.973 0.171-11.947 0-17.92-46.933-13.013-85.632-42.752-104.832-89.002-19.157-46.293-12.8-94.72 11.179-137.045-4.113-4.335-8.337-8.561-12.672-12.672-42.368 23.979-90.752 30.293-137.045 11.179-46.251-19.2-75.989-57.899-89.003-104.832-5.973-0.158-11.947-0.158-17.92 0-13.013 46.933-42.752 85.632-89.002 104.832-46.293 19.157-94.72 12.8-137.045-11.179-4.352 4.096-8.576 8.32-12.672 12.672 23.979 42.368 30.293 90.752 11.179 137.045-19.2 46.25-57.899 75.989-104.832 89.002-0.171 5.973-0.171 11.947 0 17.92zM512 640c-33.946 0-66.505-13.487-90.509-37.491s-37.49-56.559-37.49-90.509c0-33.946 13.486-66.505 37.49-90.509s56.564-37.49 90.509-37.49c33.95 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.509c0 33.95-13.487 66.505-37.491 90.509s-56.559 37.491-90.509 37.491zM512 554.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 678,
+ "id": 1671,
+ "name": "settings-5-line",
+ "prevSize": 32,
+ "code": 60275
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 627
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 512c0-36.907 4.693-72.661 13.483-106.837 23.572 1.239 47.027-4.064 67.773-15.323s37.975-28.035 49.782-48.475c11.807-20.439 17.732-43.745 17.12-67.342s-7.735-46.564-20.585-66.365c51.581-50.749 115.234-87.531 184.96-106.88 10.709 21.055 27.035 38.736 47.172 51.085 20.134 12.349 43.298 18.886 66.918 18.886s46.784-6.537 66.918-18.886c20.139-12.349 36.463-30.031 47.172-51.085 69.726 19.349 133.38 56.131 184.96 106.88-12.864 19.804-19.998 42.781-20.617 66.388-0.614 23.607 5.312 46.925 17.126 67.373s29.052 37.229 49.813 48.486c20.757 11.258 44.228 16.553 67.81 15.3 8.789 34.133 13.483 69.888 13.483 106.795s-4.693 72.661-13.483 106.837c-23.573-1.246-47.036 4.049-67.789 15.305s-37.986 28.032-49.801 48.474c-11.81 20.442-17.741 43.75-17.131 67.349s7.735 46.575 20.587 66.377c-51.58 50.748-115.234 87.531-184.96 106.88-10.709-21.056-27.034-38.737-47.172-51.085-20.134-12.352-43.298-18.889-66.918-18.889s-46.784 6.537-66.918 18.889c-20.137 12.348-36.463 30.029-47.172 51.085-69.726-19.349-133.379-56.132-184.96-106.88 12.864-19.806 19.999-42.782 20.615-66.389s-5.311-46.925-17.125-67.371c-11.814-20.45-29.054-37.231-49.813-48.486-20.759-11.26-44.229-16.555-67.811-15.3-8.747-34.091-13.44-69.845-13.44-106.795zM290.304 640c26.88 46.549 34.56 100.096 24.064 150.357 17.408 12.373 35.925 23.083 55.339 32 39.111-35.038 89.783-54.396 142.293-54.357 53.76 0 104.021 20.096 142.293 54.357 19.413-8.917 37.931-19.627 55.339-32-10.778-51.371-2.206-104.913 24.064-150.357 26.223-45.466 68.309-79.65 118.187-96 1.971-21.286 1.971-42.714 0-64-49.894-16.337-91.994-50.526-118.229-96-26.27-45.443-34.842-98.985-24.064-150.357-17.404-12.377-35.93-23.090-55.339-32-39.1 35.026-89.758 54.383-142.251 54.357-52.51 0.036-103.182-19.321-142.293-54.357-19.408 8.91-37.935 19.624-55.339 32 10.776 51.372 2.207 104.914-24.064 150.357-26.224 45.466-68.31 79.65-118.187 96-1.973 21.286-1.973 42.714 0 64 49.892 16.337 91.995 50.526 118.229 96h-0.043zM512 640c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM512 554.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 679,
+ "id": 1670,
+ "name": "settings-4-line",
+ "prevSize": 32,
+ "code": 60276
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 628
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 469.333v-170.667h85.333v170.667h170.667v85.333h-170.667v170.667h-85.333v-170.667h-170.667v-85.333h170.667zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["add-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 680,
+ "id": 1669,
+ "name": "add-circle-line",
+ "prevSize": 32,
+ "code": 60277
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 629
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 256h213.333v85.333h-85.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h-85.333v-85.333h213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM768 341.333h-512v512h512v-512zM384 170.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-7-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 681,
+ "id": 1668,
+ "name": "delete-bin-7-line",
+ "prevSize": 32,
+ "code": 60278
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 630
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 170.667v-85.333h426.667v85.333h213.333v85.333h-85.333v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640h-85.333v-85.333h213.333zM256 256v597.333h512v-597.333h-512zM384 384h85.333v341.333h-85.333v-341.333zM554.667 384h85.333v341.333h-85.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-6-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 682,
+ "id": 1667,
+ "name": "delete-bin-6-line",
+ "prevSize": 32,
+ "code": 60279
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 631
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 810.667h682.667v-213.333h85.333v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256h85.333v213.333zM690.005 298.666l-168.533-168.533 60.331-60.331 271.531 271.531-271.531 271.531-60.331-60.331 168.533-168.534h-476.672v-85.333h476.672z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-forward-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 683,
+ "id": 1666,
+ "name": "share-forward-2-line",
+ "prevSize": 32,
+ "code": 60280
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 632
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 170.667v85.333h-42.667l-213.333 320v362.667h-256v-362.667l-213.333-320h-42.667v-85.333h768zM273.237 256l196.096 294.144v303.189h85.333v-303.189l196.096-294.144h-477.525z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 684,
+ "id": 1665,
+ "name": "filter-line",
+ "prevSize": 32,
+ "code": 60281
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 633
+ },
+ {
+ "icon": {
+ "paths": [
+ "M509.867 339.2l-60.331 60.331-108.201-108.203v562.005h-85.333v-562.005l-108.16 108.203-60.373-60.331 211.2-211.2 211.198 211.2zM936.538 684.8l-211.204 211.2-211.2-211.2 60.331-60.331 108.245 108.203-0.043-562.005h85.333v562.005l108.203-108.203 60.335 60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 685,
+ "id": 1664,
+ "name": "arrow-up-down-line",
+ "prevSize": 32,
+ "code": 60282
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 634
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.666 853.333v-256c0-90.526 35.962-177.347 99.974-241.359s150.832-99.974 241.36-99.974c90.526 0 177.344 35.962 241.357 99.974s99.977 150.833 99.977 241.359v256h42.667v85.333h-768.001v-85.333h42.667zM255.999 853.333h512.001v-256c0-67.895-26.974-133.009-74.982-181.019s-113.122-74.981-181.018-74.981c-67.895 0-133.011 26.971-181.020 74.981s-74.981 113.124-74.981 181.019v256zM469.333 85.333h85.333v128h-85.333v-128zM843.861 205.141l60.331 60.331-90.453 90.496-60.373-60.331 90.496-90.496zM119.807 265.472l60.331-60.331 90.496 90.453-60.288 60.416-90.539-90.539zM298.666 597.333c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.27-62.485 150.85-62.485v85.333c-33.95 0-66.505 13.487-90.511 37.491-24.005 24.004-37.49 56.563-37.49 90.509h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alarm-warning-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 686,
+ "id": 1663,
+ "name": "alarm-warning-line",
+ "prevSize": 32,
+ "code": 60283
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 635
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM213.333 196.437v391.893c0 28.096 6.936 55.753 20.192 80.525 13.256 24.768 32.422 45.884 55.797 61.47l222.677 148.48 222.677-148.48c23.369-15.582 42.53-36.689 55.787-61.453 13.257-24.759 20.194-52.412 20.203-80.499v-391.936l-298.667-66.304-298.667 66.304zM512 469.333c-28.288 0-55.42-11.238-75.426-31.241-20.003-20.005-31.241-47.136-31.241-75.426s11.238-55.421 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242s55.42 11.238 75.426 31.242c20.002 20.004 31.241 47.135 31.241 75.425s-11.238 55.421-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241zM321.152 682.667c5.172-47.002 27.506-90.441 62.723-121.997 35.217-31.552 80.841-49.003 128.125-49.003s92.907 17.451 128.124 49.003c35.217 31.556 57.553 74.995 62.724 121.997h-381.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-user-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 687,
+ "id": 1662,
+ "name": "shield-user-line",
+ "prevSize": 32,
+ "code": 60284
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 636
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.837 401.664l-367.233 367.232-60.331-60.331 367.191-367.232h-323.628v-85.333h469.335v469.333h-85.333v-323.669z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-up-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 688,
+ "id": 1661,
+ "name": "arrow-right-up-line",
+ "prevSize": 32,
+ "code": 60285
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 637
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 240.468l-60.331 60.331c-48.858-48.862-113.143-79.272-181.909-86.048s-137.752 10.5-195.207 48.885c-57.455 38.385-99.823 95.505-119.885 161.626s-16.577 137.153 9.862 200.995c26.439 63.838 74.195 116.535 135.132 149.111 60.935 32.576 131.284 43.017 199.056 29.542 67.772-13.478 128.772-50.035 172.612-103.445 43.836-53.41 67.802-120.367 67.806-189.466h85.333c0 88.841-30.805 174.929-87.168 243.605-56.358 68.672-134.788 115.682-221.922 133.013-87.13 17.331-177.579 3.913-255.929-37.965-78.35-41.882-139.755-109.632-173.752-191.71s-38.483-173.406-12.693-258.42c25.789-85.015 80.259-158.457 154.127-207.814s162.563-71.573 250.977-62.865c88.414 8.708 171.072 47.803 233.89 110.623z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 689,
+ "id": 1660,
+ "name": "loader-4-line",
+ "prevSize": 32,
+ "code": 60286
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 638
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529h-85.333c0-79.211-31.467-155.178-87.479-211.189-56.009-56.011-131.977-87.477-211.187-87.477v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 690,
+ "id": 1659,
+ "name": "loader-5-line",
+ "prevSize": 32,
+ "code": 60287
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 639
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM469.333 298.667h85.333v85.333h-85.333v-85.333zM469.333 469.333h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["information-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 691,
+ "id": 1658,
+ "name": "information-line",
+ "prevSize": 32,
+ "code": 60288
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 640
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM341.333 213.333h-170.667v597.333h170.667v-597.333zM426.667 213.333v597.333h426.667v-597.333h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["side-bar-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 692,
+ "id": 1657,
+ "name": "side-bar-line",
+ "prevSize": 32,
+ "code": 60289
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 641
+ },
+ {
+ "icon": {
+ "paths": [
+ "M278.826 128h617.174c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-617.174c-7.023 0-13.937-1.732-20.129-5.043s-11.472-8.102-15.369-13.943l-227.541-341.333c-4.678-7.010-7.174-15.253-7.174-23.68s2.496-16.67 7.174-23.68l227.541-341.333c3.898-5.842 9.177-10.631 15.369-13.943s13.107-5.044 20.129-5.044zM301.653 213.333l-199.083 298.667 199.083 298.667h551.68v-597.333h-551.68zM554.667 451.669l120.661-120.704 60.373 60.373-120.704 120.661 120.704 120.661-60.373 60.373-120.661-120.704-120.661 120.704-60.374-60.373 120.704-120.661-120.704-120.661 60.374-60.373 120.661 120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-back-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 693,
+ "id": 1656,
+ "name": "delete-back-2-line",
+ "prevSize": 32,
+ "code": 60290
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 642
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 469.333h341.333v85.333h-341.333v128l-213.333-170.667 213.333-170.667v128zM170.667 768h115.541c49.267 43.447 110.024 71.761 174.98 81.532 64.96 9.775 131.358 0.597 191.228-26.428s110.673-70.754 146.308-125.939c35.635-55.181 54.588-119.475 54.588-185.165s-18.953-129.982-54.588-185.165c-35.635-55.183-86.438-98.912-146.308-125.939s-126.268-36.204-191.228-26.429c-64.956 9.775-125.713 38.085-174.98 81.533h-115.541c39.708-53.027 91.235-96.064 150.488-125.69s124.596-45.026 190.845-44.977c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-66.249 0.051-131.592-15.351-190.845-44.975-59.253-29.628-110.78-72.666-150.488-125.692z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 694,
+ "id": 1655,
+ "name": "logout-circle-line",
+ "prevSize": 32,
+ "code": 60291
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 643
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.408 709.035l182.613 182.656-60.331 60.373-182.613-182.656c-68.019 54.473-152.602 84.083-239.744 83.925-71.537 0.030-141.66-19.925-202.461-57.617-60.8-37.696-109.86-91.627-141.646-155.716h258.773l-55.637 92.715c43.351 23.236 91.786 35.358 140.971 35.285 77.67 0.124 152.316-30.118 208-84.267l6.4-6.4c54.148-55.684 84.39-130.33 84.267-208 0-29.653-4.309-58.283-12.373-85.333h88.192c6.229 27.435 9.515 56.021 9.515 85.333 0.149 87.13-29.461 171.695-83.925 239.701zM813.44 298.667h-258.773l55.637-92.715c-43.349-23.235-91.785-35.359-140.971-35.285-165.035 0-298.667 133.632-298.667 298.667 0 29.653 4.309 58.283 12.373 85.333h-88.192c-6.338-28.002-9.53-56.623-9.515-85.333 0-212.181 171.819-384 384-384 71.539-0.032 141.662 19.925 202.462 57.619s109.858 91.626 141.645 155.714z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["find-replace-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 695,
+ "id": 1654,
+ "name": "find-replace-line",
+ "prevSize": 32,
+ "code": 60292
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 644
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 298.667v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v170.368c0 23.723-19.157 42.965-42.965 42.965h-554.069c-5.644 0.004-11.233-1.101-16.449-3.26-5.215-2.155-9.954-5.321-13.945-9.314-3.991-3.989-7.155-8.725-9.312-13.943-2.157-5.214-3.265-10.803-3.259-16.448l0.128-554.069c0-23.723 19.157-42.965 42.965-42.965h170.24zM384 298.667h298.368c23.723 0 42.965 19.157 42.965 42.965v298.368h128v-469.333h-469.333v128zM640 384h-469.205l-0.128 469.333h469.333v-469.333zM362.795 768l-150.869-150.869 60.331-60.331 90.539 90.539 180.992-181.035 60.331 60.331-241.323 241.365z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-multiple-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 696,
+ "id": 1653,
+ "name": "checkbox-multiple-line",
+ "prevSize": 32,
+ "code": 60293
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 645
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 853.333c188.587 0 341.333-152.747 341.333-341.333s-152.747-341.333-341.333-341.333c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333zM554.667 512v170.667h-85.333v-170.667h-128l170.667-170.667 170.667 170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 697,
+ "id": 1652,
+ "name": "arrow-up-circle-line",
+ "prevSize": 32,
+ "code": 60294
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 646
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768.004v85.333h-768v-85.333h768zM281.429 166.573l60.331 60.331-135.765 135.765 135.765 135.767-60.331 60.331-196.096-196.098 196.096-196.096zM896 469.338v85.333h-384v-85.333h384zM896 170.669v85.333h-384v-85.333h384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-fold-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 698,
+ "id": 1651,
+ "name": "menu-fold-line",
+ "prevSize": 32,
+ "code": 60295
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 647
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 106.667l234.667 405.333-234.667 405.333h-469.333l-234.667-405.333 234.667-405.333h469.333zM697.472 192h-370.944l-185.259 320 185.259 320h370.944l185.259-320-185.259-320zM469.333 640h85.333v85.333h-85.333v-85.333zM469.333 298.667h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spam-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 699,
+ "id": 1650,
+ "name": "spam-line",
+ "prevSize": 32,
+ "code": 60296
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 648
+ },
+ {
+ "icon": {
+ "paths": [
+ "M288 106.667c23.813 0 47.393 4.69 69.393 13.803s41.99 22.47 58.829 39.308c16.84 16.838 30.195 36.828 39.308 58.829s13.803 45.58 13.803 69.393v181.333h-181.333c-48.093 0-94.215-19.106-128.222-53.111-34.007-34.007-53.111-80.129-53.111-128.222s19.105-94.215 53.111-128.222c34.007-34.007 80.129-53.111 128.222-53.111zM384 384v-96c0-18.987-5.63-37.548-16.179-53.335s-25.542-28.092-43.084-35.358c-17.542-7.266-36.844-9.167-55.466-5.463s-35.728 12.847-49.154 26.273c-13.426 13.426-22.569 30.531-26.273 49.154s-1.803 37.924 5.463 55.466c7.266 17.542 19.571 32.535 35.358 43.084s34.348 16.179 53.335 16.179h96zM288 554.667h181.333v181.333c0 35.866-10.637 70.925-30.562 100.745-19.923 29.82-48.244 53.060-81.378 66.786s-69.594 17.314-104.77 10.317c-35.175-6.997-67.486-24.265-92.846-49.626s-42.63-57.668-49.627-92.847c-6.996-35.174-3.406-71.633 10.319-104.768s36.967-61.453 66.787-81.378c29.82-19.925 64.879-30.562 100.743-30.562zM288 640c-18.987 0-37.548 5.632-53.335 16.179s-28.092 25.54-35.358 43.085c-7.266 17.54-9.167 36.843-5.463 55.467 3.704 18.62 12.847 35.725 26.273 49.152s30.531 22.566 49.154 26.274c18.622 3.703 37.925 1.801 55.466-5.466s32.535-19.571 43.084-35.358c10.548-15.787 16.179-34.347 16.179-53.333v-96h-96zM736 106.667c48.094 0 94.217 19.105 128.222 53.111s53.111 80.129 53.111 128.222c0 48.093-19.106 94.215-53.111 128.222-34.005 34.005-80.128 53.111-128.222 53.111h-181.333v-181.333c0-48.093 19.106-94.215 53.111-128.222s80.128-53.111 128.222-53.111zM736 384c18.987 0 37.547-5.63 53.333-16.179s28.092-25.542 35.358-43.084c7.266-17.542 9.169-36.844 5.466-55.466s-12.847-35.728-26.274-49.154c-13.427-13.426-30.532-22.569-49.152-26.273-18.624-3.704-37.926-1.803-55.467 5.463-17.545 7.266-32.538 19.571-43.085 35.358s-16.179 34.348-16.179 53.335v96h96zM554.667 554.667h181.333c35.866 0 70.925 10.637 100.745 30.562s53.060 48.243 66.786 81.378c13.726 33.135 17.314 69.594 10.317 104.768-6.993 35.179-24.265 67.486-49.626 92.847s-57.668 42.628-92.847 49.626c-35.174 6.997-71.633 3.409-104.768-10.317s-61.453-36.966-81.378-66.786c-19.925-29.82-30.562-64.879-30.562-100.745v-181.333zM640 640v96c0 18.987 5.632 37.547 16.179 53.333s25.54 28.092 43.085 35.358c17.54 7.266 36.843 9.169 55.467 5.466 18.62-3.708 35.725-12.847 49.152-26.274s22.571-30.532 26.274-49.152c3.703-18.624 1.801-37.926-5.466-55.467-7.266-17.545-19.571-32.538-35.358-43.085s-34.347-16.179-53.333-16.179h-96z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["apps-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 700,
+ "id": 1649,
+ "name": "apps-line",
+ "prevSize": 32,
+ "code": 60297
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 649
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.495-30.17-12.497s-12.497-18.854-12.497-30.17v-128c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497zM881.493 298.667c5.658 9.8 7.189 21.446 4.262 32.375s-10.078 20.249-19.878 25.907l-110.848 64c-4.855 2.846-10.223 4.703-15.799 5.466-5.572 0.764-11.243 0.414-16.683-1.024s-10.543-3.938-15.014-7.356c-4.467-3.418-8.218-7.686-11.034-12.559-2.812-4.873-4.634-10.255-5.359-15.834s-0.341-11.248 1.135-16.678c1.472-5.431 4.006-10.516 7.454-14.962s7.744-8.169 12.634-10.95l110.848-64c9.801-5.658 21.444-7.191 32.375-4.262s20.25 10.079 25.907 19.878zM327.253 618.667c5.658 9.801 7.191 21.444 4.262 32.375s-10.079 20.25-19.878 25.907l-110.848 64c-4.854 2.846-10.223 4.702-15.798 5.466s-11.246 0.414-16.686-1.024c-5.44-1.438-10.542-3.938-15.011-7.356s-8.219-7.689-11.033-12.561c-2.813-4.873-4.635-10.253-5.361-15.834s-0.34-11.247 1.135-16.678c1.474-5.431 4.008-10.513 7.456-14.963 3.448-4.446 7.741-8.166 12.632-10.948l110.848-64c9.8-5.658 21.446-7.189 32.375-4.262s20.249 10.078 25.907 19.878zM881.493 725.333c-5.658 9.801-14.976 16.951-25.907 19.878s-22.575 1.395-32.375-4.262l-110.848-64c-9.719-5.7-16.789-15.010-19.669-25.903s-1.335-22.481 4.297-32.239c5.636-9.758 14.899-16.892 25.771-19.84 10.876-2.953 22.473-1.485 32.269 4.083l110.848 64c9.801 5.658 16.951 14.976 19.878 25.907s1.395 22.575-4.262 32.375zM327.253 405.333c-5.658 9.799-14.977 16.95-25.907 19.878-10.93 2.927-22.576 1.395-32.375-4.262l-110.848-64c-4.891-2.781-9.184-6.502-12.632-10.95s-5.981-9.532-7.456-14.962c-1.474-5.43-1.86-11.098-1.135-16.678s2.547-10.961 5.361-15.834c2.813-4.873 6.563-9.141 11.033-12.559s9.572-5.918 15.011-7.356c5.44-1.438 11.111-1.786 16.686-1.024s10.944 2.62 15.798 5.466l110.848 64c9.799 5.658 16.95 14.977 19.878 25.907s1.395 22.576-4.262 32.375z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 701,
+ "id": 1648,
+ "name": "loader-line",
+ "prevSize": 32,
+ "code": 60298
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 650
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c-35.2 0-64 28.8-64 64s28.8 64 64 64c35.2 0 64-28.8 64-64s-28.8-64-64-64zM512 768c-35.2 0-64 28.8-64 64s28.8 64 64 64c35.2 0 64-28.8 64-64s-28.8-64-64-64zM512 448c-35.2 0-64 28.8-64 64s28.8 64 64 64c35.2 0 64-28.8 64-64s-28.8-64-64-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["more-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 702,
+ "id": 1647,
+ "name": "more-2-line",
+ "prevSize": 32,
+ "code": 60299
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 651
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768v85.333h-768v-85.333h768zM742.571 166.57l196.096 196.096-196.096 196.096-60.331-60.331 135.765-135.766-135.765-135.765 60.331-60.331zM512 469.333v85.333h-384v-85.333h384zM512 170.666v85.333h-384v-85.333h384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-unfold-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 703,
+ "id": 1646,
+ "name": "menu-unfold-line",
+ "prevSize": 32,
+ "code": 60300
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 652
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 938.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h-85.333v-85.333h-512v682.667h512v-85.333h85.333v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333zM768 682.667v-128h-298.667v-85.333h298.667v-128l213.333 170.667-213.333 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-box-r-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 704,
+ "id": 1645,
+ "name": "logout-box-r-line",
+ "prevSize": 32,
+ "code": 60301
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 653
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM683.733 677.333c54.148-55.684 84.39-130.33 84.267-208 0-165.035-133.675-298.667-298.667-298.667-165.035 0-298.667 133.632-298.667 298.667 0 164.992 133.632 298.667 298.667 298.667 77.67 0.124 152.316-30.118 208-84.267l6.4-6.4zM298.667 426.667h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zoom-out-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 705,
+ "id": 1644,
+ "name": "zoom-out-line",
+ "prevSize": 32,
+ "code": 60302
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 654
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM554.667 512h170.667v85.333h-256v-298.667h85.333v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["time-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 706,
+ "id": 1643,
+ "name": "time-line",
+ "prevSize": 32,
+ "code": 60303
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 655
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 426.667h554.667c11.315 0 22.17 4.497 30.17 12.497 8 8.004 12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.165 12.497-30.17 8.002-8 18.854-12.497 30.17-12.497h42.667v-42.665c-0.024-67.298 22.681-132.632 64.435-185.411s100.109-89.909 165.607-105.373c65.498-15.463 134.298-8.352 195.247 20.179 60.954 28.532 110.481 76.812 140.557 137.015l-76.331 38.144c-21.483-43.007-56.862-77.498-100.403-97.879-43.537-20.382-92.685-25.46-139.473-14.412s-88.472 37.576-118.295 75.282c-29.823 37.706-46.036 84.38-46.010 132.454v42.665zM213.333 512v341.333h597.333v-341.333h-597.333zM426.667 640h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-unlock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 707,
+ "id": 1642,
+ "name": "lock-unlock-line",
+ "prevSize": 32,
+ "code": 60304
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 656
+ },
+ {
+ "icon": {
+ "paths": [
+ "M461.995 512l211.2 211.2-60.331 60.331-271.531-271.531 271.531-271.531 60.331 60.331-211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-s-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 708,
+ "id": 1641,
+ "name": "arrow-left-s-line",
+ "prevSize": 32,
+ "code": 60305
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 657
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 451.669l211.2-211.2 60.331 60.331-211.2 211.2 211.2 211.2-60.331 60.331-211.2-211.2-211.2 211.2-60.331-60.331 211.2-211.2-211.2-211.2 60.331-60.331 211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["close-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 709,
+ "id": 1640,
+ "name": "close-line",
+ "prevSize": 32,
+ "code": 60306
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 658
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM469.333 640h85.333v85.333h-85.333v-85.333zM554.667 569.813v27.52h-85.333v-64c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c12.122 0 23.991-3.443 34.231-9.929 10.24-6.481 18.432-15.74 23.616-26.697s7.151-23.159 5.67-35.19c-1.481-12.030-6.345-23.392-14.033-32.765-7.684-9.373-17.873-16.37-29.38-20.179s-23.859-4.271-35.618-1.334c-11.759 2.937-22.443 9.153-30.805 17.925-8.367 8.771-14.067 19.738-16.444 31.624l-83.712-16.768c5.19-25.938 17.174-50.032 34.727-69.82s40.046-34.56 65.181-42.806c25.135-8.246 52.006-9.67 77.871-4.126s49.792 17.856 69.338 35.678c19.546 17.823 34.010 40.516 41.911 65.76s8.96 52.132 3.063 77.92c-5.897 25.788-18.534 49.545-36.625 68.847-18.086 19.298-40.977 33.451-66.325 41.007z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["question-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 710,
+ "id": 1639,
+ "name": "question-line",
+ "prevSize": 32,
+ "code": 60307
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 659
+ },
+ {
+ "icon": {
+ "paths": [
+ "M569.216 170.667c-9.668 27.41-14.588 56.268-14.549 85.333h-341.333v597.333h597.333v-341.333c29.065 0.038 57.924-4.881 85.333-14.549v398.549c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h398.549zM810.667 341.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994zM810.667 426.667c-45.265 0-88.674-17.981-120.678-49.987-32.009-32.006-49.988-75.416-49.988-120.68s17.98-88.673 49.988-120.68c32.004-32.006 75.413-49.987 120.678-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.416 49.988 120.68s-17.98 88.673-49.988 120.68c-32.004 32.006-75.413 49.987-120.678 49.987z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-badge-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 711,
+ "id": 1638,
+ "name": "notification-badge-line",
+ "prevSize": 32,
+ "code": 60308
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 660
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 579.84l367.232-367.233 60.331 60.331-367.232 367.233h323.669v85.333h-469.333v-469.335h85.333v323.671z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 712,
+ "id": 1637,
+ "name": "arrow-left-down-line",
+ "prevSize": 32,
+ "code": 60309
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 661
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 256h213.333v85.333h-85.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h-85.333v-85.333h213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM768 341.333h-512v512h512v-512zM384 469.333h85.333v256h-85.333v-256zM554.667 469.333h85.333v256h-85.333v-256zM384 170.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 713,
+ "id": 1636,
+ "name": "delete-bin-line",
+ "prevSize": 32,
+ "code": 60310
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 662
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l350.592 77.909c19.499 4.352 33.408 21.632 33.408 41.643v426.112c0 85.589-42.795 165.547-114.005 212.992l-269.995 180.011-269.995-180.011c-71.253-47.488-114.005-127.403-114.005-212.949v-426.155c0-20.011 13.909-37.291 33.408-41.643l350.592-77.909zM512 130.091l-298.667 66.347v391.893c0 57.045 28.501 110.336 75.989 141.995l222.677 148.48 222.677-148.48c47.488-31.659 75.989-84.907 75.989-141.952v-391.936l-298.667-66.347zM701.952 350.805l60.373 60.331-271.531 271.531-181.035-181.035 60.331-60.331 120.661 120.661 211.2-211.157z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-check-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 714,
+ "id": 1635,
+ "name": "shield-check-line",
+ "prevSize": 32,
+ "code": 60311
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 663
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974zM512 298.667c44.911 0.017 88.67 14.207 125.043 40.548s63.509 63.489 77.538 106.153c14.025 42.662 14.229 88.666 0.585 131.452s-40.448 80.179-76.582 106.842c-36.139 26.667-79.77 41.246-124.681 41.664-44.907 0.418-88.801-13.346-125.429-39.334s-64.12-62.874-78.56-105.399c-14.44-42.522-15.091-88.521-1.861-131.439 9.981 22.302 27.318 40.499 49.112 51.55 21.793 11.046 46.72 14.276 70.607 9.143 23.889-5.133 45.291-18.317 60.625-37.342 15.33-19.025 23.663-42.735 23.603-67.17 0.004-20.545-5.922-40.655-17.071-57.912s-27.046-30.928-45.777-39.368c19.883-6.101 40.96-9.387 62.848-9.387z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 715,
+ "id": 1634,
+ "name": "eye-2-line",
+ "prevSize": 32,
+ "code": 60312
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 664
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 256v85.333h-213.333v469.333h469.333v-213.333h85.333v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-554.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM896 128v341.333h-85.333v-195.712l-332.501 332.544-60.331-60.331 332.459-332.501h-195.627v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["external-link-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 716,
+ "id": 1633,
+ "name": "external-link-line",
+ "prevSize": 32,
+ "code": 60313
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 665
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 853.333c188.587 0 341.333-152.747 341.333-341.333s-152.747-341.333-341.333-341.333c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333zM662.869 300.8l60.331 60.331-211.2 211.2-60.331-60.331 211.2-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["timer-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 717,
+ "id": 1632,
+ "name": "timer-2-line",
+ "prevSize": 32,
+ "code": 60314
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 666
+ },
+ {
+ "icon": {
+ "paths": [
+ "M401.067 682.667h-273.067c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-89.771c-0.011-11.153 2.163-22.195 6.4-32.512l132.096-320.597c3.212-7.819 8.674-14.507 15.693-19.217s15.279-7.228 23.731-7.237h718.080c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-148.565c-6.831 0-13.564 1.638-19.627 4.779-6.067 3.14-11.29 7.689-15.232 13.269l-232.661 329.643c-2.94 4.169-7.279 7.142-12.224 8.388-4.949 1.246-10.176 0.674-14.741-1.604l-77.397-38.741c-21.781-10.889-39.182-28.898-49.311-51.042s-12.376-47.087-6.369-70.686l38.528-151.339zM725.333 572.245v-358.912h-476.16l-121.173 294.229v89.771h273.067c12.996 0 25.822 2.974 37.495 8.683 11.674 5.713 21.888 14.016 29.862 24.277 7.979 10.261 13.504 22.208 16.162 34.931 2.654 12.719 2.372 25.882-0.832 38.477l-38.528 151.381c-1.207 4.723-0.759 9.715 1.267 14.148s5.508 8.038 9.869 10.214l28.203 14.080 200.96-284.672c10.667-15.104 24.32-27.477 39.808-36.608zM810.667 554.667h85.333v-341.333h-85.333v341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thumb-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 718,
+ "id": 1631,
+ "name": "thumb-down-line",
+ "prevSize": 32,
+ "code": 60315
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 667
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 504.661l-120.66 120.704-60.373-60.331 181.034-181.035 181.035 181.035-60.373 60.331-120.661-120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-up-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 719,
+ "id": 1630,
+ "name": "arrow-drop-up-line",
+ "prevSize": 32,
+ "code": 60316
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 668
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667h85.333c0 188.501 152.832 341.333 341.333 341.333s341.333-152.832 341.333-341.333c0-188.501-152.832-341.333-341.333-341.333-117.333 0-220.843 59.179-282.24 149.333h111.573v85.333h-256v-256h85.333v106.667c77.824-103.68 201.771-170.667 341.333-170.667zM554.667 298.667v195.627l138.368 138.368-60.373 60.373-163.328-163.413v-230.955h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["history-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 720,
+ "id": 1629,
+ "name": "history-line",
+ "prevSize": 32,
+ "code": 60317
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 669
+ },
+ {
+ "icon": {
+ "paths": [
+ "M277.333 490.667c-25.214 0-50.181-4.966-73.475-14.613-23.294-9.651-44.46-23.795-62.289-41.621-17.829-17.83-31.971-38.996-41.62-62.29s-14.615-48.262-14.615-73.475c0-25.214 4.966-50.181 14.615-73.475s23.792-44.46 41.62-62.289c17.829-17.829 38.995-31.971 62.289-41.62s48.262-14.615 73.475-14.615c50.921 0 99.758 20.229 135.764 56.236s56.236 84.843 56.236 135.764c0 50.921-20.228 99.758-56.236 135.765-36.007 36.006-84.843 56.235-135.764 56.235zM298.667 917.333c-50.921 0-99.758-20.228-135.764-56.235s-56.236-84.843-56.236-135.765c0-50.923 20.229-99.759 56.236-135.765s84.843-56.235 135.764-56.235c50.921 0 99.758 20.228 135.765 56.235 36.006 36.006 56.235 84.843 56.235 135.765s-20.228 99.759-56.235 135.765c-36.008 36.006-84.844 56.235-135.765 56.235zM725.333 490.667c-25.212 0-50.18-4.966-73.476-14.613-23.292-9.651-44.459-23.795-62.289-41.621-17.826-17.83-31.97-38.996-41.621-62.29-9.647-23.295-14.613-48.262-14.613-73.475s4.966-50.181 14.613-73.475c9.651-23.294 23.795-44.46 41.621-62.289 17.83-17.829 38.997-31.971 62.289-41.62 23.296-9.649 48.265-14.615 73.476-14.615 50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.765-36.006 36.006-84.843 56.235-135.765 56.235zM725.333 917.333c-50.923 0-99.759-20.228-135.765-56.235s-56.235-84.843-56.235-135.765c0-50.923 20.228-99.759 56.235-135.765s84.843-56.235 135.765-56.235c50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235zM277.333 405.333c28.29 0 55.421-11.238 75.425-31.242s31.242-47.135 31.242-75.425c0-28.29-11.238-55.421-31.242-75.425s-47.135-31.242-75.425-31.242c-28.29 0-55.421 11.238-75.425 31.242s-31.242 47.135-31.242 75.425c0 28.29 11.238 55.421 31.242 75.425s47.135 31.242 75.425 31.242zM298.667 832c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.002-47.135-31.241-75.425-31.241s-55.421 11.238-75.425 31.241c-20.004 20.006-31.242 47.138-31.242 75.426s11.238 55.42 31.242 75.426c20.004 20.002 47.135 31.241 75.425 31.241zM725.333 405.333c28.288 0 55.42-11.238 75.426-31.242 20.002-20.004 31.241-47.135 31.241-75.425s-11.238-55.421-31.241-75.425c-20.006-20.004-47.138-31.242-75.426-31.242s-55.42 11.238-75.426 31.242c-20.002 20.004-31.241 47.135-31.241 75.425s11.238 55.421 31.241 75.425c20.006 20.004 47.138 31.242 75.426 31.242zM725.333 832c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241s-55.42 11.238-75.426 31.241c-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["apps-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 721,
+ "id": 1628,
+ "name": "apps-2-line",
+ "prevSize": 32,
+ "code": 60318
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 670
+ },
+ {
+ "icon": {
+ "paths": [
+ "M370.603 170.667l111.232-111.232c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l111.232 111.232h157.269c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v157.269l111.232 111.232c8 8 12.493 18.85 12.493 30.165s-4.493 22.165-12.493 30.165l-111.232 111.232v157.269c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-157.269l-111.232 111.232c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-111.232-111.232h-157.269c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-157.269l-111.232-111.232c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l111.232-111.232v-157.269c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h157.269zM256 256v149.973l-106.027 106.026 106.027 106.027v149.973h149.973l106.026 106.027 106.027-106.027h149.973v-149.973l106.027-106.027-106.027-106.026v-149.973h-149.973l-106.027-106.027-106.026 106.027h-149.973zM512 682.667c-45.265 0-88.673-17.98-120.679-49.988-32.006-32.004-49.987-75.413-49.987-120.678s17.981-88.673 49.987-120.679c32.006-32.006 75.414-49.987 120.679-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.414 49.988 120.679s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988zM512 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 722,
+ "id": 1627,
+ "name": "settings-2-line",
+ "prevSize": 32,
+ "code": 60319
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 671
+ },
+ {
+ "icon": {
+ "paths": [
+ "M142.507 725.329c-18.036-31.189-32.057-64.533-41.728-99.243 21.048-10.705 38.724-27.021 51.073-47.151 12.349-20.126 18.89-43.277 18.899-66.889 0.009-23.616-6.515-46.771-18.849-66.91-12.334-20.134-29.998-36.467-51.038-47.188 19.287-69.739 56.010-133.42 106.709-185.045 19.801 12.874 42.778 20.018 66.388 20.642s46.932-5.297 67.386-17.107c20.454-11.81 37.24-29.049 48.503-49.809s16.562-44.231 15.312-67.817c70.063-18.106 143.582-18.077 213.632 0.086-1.237 23.584 4.070 47.052 15.343 67.806s28.066 37.985 48.521 49.786c20.459 11.801 43.78 17.712 67.392 17.079 23.607-0.633 46.579-7.785 66.377-20.666 24.704 25.173 46.635 53.803 65.067 85.76 18.475 31.957 32.299 65.28 41.728 99.243-21.047 10.705-38.724 27.024-51.072 47.153-12.352 20.126-18.893 43.277-18.901 66.889-0.009 23.616 6.515 46.771 18.85 66.906 12.335 20.139 29.999 36.471 51.038 47.189-19.285 69.743-56.009 133.423-106.709 185.045-19.802-12.873-42.778-20.015-66.389-20.638-23.607-0.627-46.933 5.295-67.383 17.105-20.454 11.81-37.244 29.047-48.503 49.809-11.264 20.762-16.563 44.233-15.313 67.814-70.063 18.108-143.582 18.078-213.632-0.085 1.239-23.582-4.070-47.049-15.342-67.806-11.272-20.753-28.065-37.982-48.523-49.783s-43.781-17.711-67.389-17.079c-23.609 0.631-46.582 7.787-66.378 20.663-25.216-25.728-47.079-54.545-65.067-85.76zM384 733.692c45.466 26.227 79.65 68.314 96 118.187 21.291 2.005 42.667 2.048 63.957 0.043 16.358-49.882 50.56-91.968 96.043-118.187 45.449-26.295 99.008-34.88 150.4-24.107 12.373-17.408 23.040-35.968 31.915-55.381-35.012-39.104-54.353-89.758-54.315-142.251 0-53.76 20.053-103.977 54.315-142.249-8.939-19.407-19.648-37.946-32-55.381-51.358 10.765-104.883 2.196-150.315-24.064-45.466-26.224-79.65-68.31-96-118.187-21.291-2.005-42.667-2.048-63.957-0.043-16.358 49.884-50.56 91.971-96.043 118.187-45.449 26.296-99.009 34.88-150.4 24.107-12.349 17.42-23.034 35.962-31.915 55.381 35.011 39.106 54.352 89.76 54.315 142.249 0 53.76-20.053 103.979-54.315 142.251 8.937 19.409 19.65 37.948 32 55.381 51.359-10.765 104.884-2.193 150.315 24.064zM512 639.996c-33.946 0-66.505-13.483-90.51-37.487s-37.49-56.563-37.49-90.513c0-33.946 13.486-66.505 37.49-90.508s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.508c0 33.95-13.487 66.509-37.491 90.513s-56.563 37.487-90.509 37.487zM512 554.662c11.315 0 22.17-4.493 30.17-12.493 8-8.004 12.497-18.854 12.497-30.174 0-11.315-4.497-22.165-12.497-30.17-8-8-18.854-12.497-30.17-12.497s-22.17 4.497-30.17 12.497c-8 8.004-12.497 18.854-12.497 30.17 0 11.319 4.497 22.17 12.497 30.174 8 8 18.854 12.493 30.17 12.493z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 723,
+ "id": 1626,
+ "name": "settings-3-line",
+ "prevSize": 32,
+ "code": 60320
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 672
+ },
+ {
+ "icon": {
+ "paths": [
+ "M272.299 254.635c68-54.482 152.568-84.107 239.701-83.968 90.667 0 173.995 31.403 239.701 83.968l61.995-61.995 60.331 60.331-61.995 61.995c45.129 56.497 73.391 124.587 81.527 196.437 8.141 71.846-4.173 144.533-35.52 209.694s-80.457 120.149-141.675 158.63c-61.218 38.481-132.058 58.897-204.365 58.897s-143.148-20.416-204.365-58.897c-61.218-38.481-110.326-93.47-141.673-158.63s-43.66-137.847-35.521-209.694c8.139-71.851 36.399-139.94 81.528-196.437l-61.995-61.952 60.331-60.331 61.994 61.952zM512 853.333c39.223 0 78.059-7.727 114.295-22.733 36.237-15.010 69.158-37.009 96.896-64.747 27.733-27.733 49.732-60.655 64.742-96.892 15.006-36.237 22.733-75.072 22.733-114.295s-7.727-78.059-22.733-114.295c-15.010-36.235-37.009-69.16-64.742-96.894-27.738-27.734-60.659-49.733-96.896-64.743s-75.072-22.735-114.295-22.735c-79.211 0-155.178 31.467-211.189 87.477s-87.477 131.979-87.477 211.189c0 79.211 31.466 155.179 87.477 211.187 56.011 56.013 131.978 87.479 211.189 87.479zM554.667 512h128l-213.333 277.333v-192h-128l213.333-277.547v192.213zM341.334 42.667h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["timer-flash-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 724,
+ "id": 1625,
+ "name": "timer-flash-line",
+ "prevSize": 32,
+ "code": 60321
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 673
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 768h298.667v85.333h-298.667v-85.333zM85.333 469.333h384v85.333h-384v-85.333zM85.333 170.667h853.333v85.333h-853.333v-85.333zM882.091 555.733l49.323-16.683 42.667 73.899-39.083 34.347c4.919 23.326 4.919 47.415 0 70.741l39.083 34.347-42.667 73.899-49.323-16.683c-17.493 15.787-38.315 27.947-61.227 35.413l-10.197 50.987h-85.333l-10.24-51.029c-22.643-7.398-43.486-19.465-61.184-35.413l-49.323 16.725-42.667-73.899 39.083-34.347c-4.919-23.326-4.919-47.415 0-70.741l-39.083-34.347 42.667-73.899 49.323 16.683c17.493-15.787 38.315-27.947 61.227-35.413l10.197-50.987h85.333l10.24 51.029c22.869 7.424 43.691 19.627 61.184 35.413v-0.043zM768 768c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["list-settings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 725,
+ "id": 1624,
+ "name": "list-settings-line",
+ "prevSize": 32,
+ "code": 60322
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 674
+ },
+ {
+ "icon": {
+ "paths": [
+ "M333.995 469.333h519.339v85.333h-519.339l228.864 228.864-60.331 60.331-331.861-331.861 331.861-331.862 60.331 60.331-228.864 228.865z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 726,
+ "id": 1623,
+ "name": "arrow-left-line",
+ "prevSize": 32,
+ "code": 60323
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 675
+ },
+ {
+ "icon": {
+ "paths": ["M213.333 469.333h597.333v85.333h-597.333v-85.333z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subtract-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 727,
+ "id": 1622,
+ "name": "subtract-line",
+ "prevSize": 32,
+ "code": 60324
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 676
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM469.461 682.667l-181.035-181.035 60.331-60.331 120.704 120.704 241.323-241.365 60.373 60.331-301.696 301.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 728,
+ "id": 1621,
+ "name": "checkbox-line",
+ "prevSize": 32,
+ "code": 60325
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 677
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 469.333v-128l170.667 170.667-170.667 170.667v-128h-170.667v-85.333h170.667zM512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 853.333c188.587 0 341.333-152.747 341.333-341.333s-152.747-341.333-341.333-341.333c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 729,
+ "id": 1620,
+ "name": "arrow-right-circle-line",
+ "prevSize": 32,
+ "code": 60326
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 678
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 640l-181.034-181.035 60.373-60.33 120.66 120.703 120.661-120.703 60.373 60.33-181.035 181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 730,
+ "id": 1619,
+ "name": "arrow-drop-down-line",
+ "prevSize": 32,
+ "code": 60327
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 679
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM298.667 469.333h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-indeterminate-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 731,
+ "id": 1618,
+ "name": "checkbox-indeterminate-line",
+ "prevSize": 32,
+ "code": 60328
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 680
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM363.648 303.317l357.035 357.035c-16.619 23.322-37.009 43.712-60.331 60.331l-357.035-357.035c16.622-23.308 37.012-43.683 60.331-60.288v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["forbid-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 732,
+ "id": 1617,
+ "name": "forbid-line",
+ "prevSize": 32,
+ "code": 60329
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 681
+ },
+ {
+ "icon": {
+ "paths": [
+ "M130.348 554.667h85.973c10.338 71.031 45.904 135.966 100.191 182.921 54.287 46.959 123.667 72.802 195.445 72.802s141.158-25.843 195.447-72.802c54.285-46.955 89.852-111.889 100.19-182.921h86.016c-10.517 93.858-55.258 180.553-125.662 243.507-70.404 62.959-161.545 97.762-255.991 97.762s-185.584-34.803-255.99-97.762c-70.406-62.955-115.144-149.649-125.663-243.507h0.043zM130.348 469.333c10.519-93.862 55.257-180.555 125.663-243.511s161.542-97.76 255.99-97.76c94.447 0 185.587 34.804 255.991 97.76s115.145 149.649 125.662 243.511h-85.973c-10.338-71.031-45.905-135.966-100.19-182.924-54.289-46.959-123.669-72.801-195.447-72.801s-141.158 25.843-195.445 72.801c-54.287 46.959-89.853 111.893-100.191 182.924h-86.059z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 733,
+ "id": 1616,
+ "name": "loader-3-line",
+ "prevSize": 32,
+ "code": 60330
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 682
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM720.683 363.648l-357.035 357.035c-23.322-16.619-43.712-37.009-60.331-60.331l357.035-357.035c23.322 16.618 43.712 37.008 60.331 60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["forbid-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 734,
+ "id": 1615,
+ "name": "forbid-2-line",
+ "prevSize": 32,
+ "code": 60331
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 683
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.495-30.17-12.497s-12.497-18.854-12.497-30.17v-128c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497zM938.667 512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h128c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17zM298.667 512c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h128c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17zM813.696 813.696c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-90.496-90.496c-7.774-8.047-12.075-18.825-11.977-30.012s4.587-21.888 12.497-29.798c7.91-7.91 18.611-12.399 29.798-12.497s21.965 4.203 30.012 11.977l90.496 90.453c3.968 3.964 7.113 8.67 9.263 13.85 2.146 5.18 3.251 10.731 3.251 16.337s-1.105 11.157-3.251 16.337c-2.15 5.18-5.295 9.886-9.263 13.85zM361.131 361.131c-8.001 7.999-18.852 12.492-30.165 12.492s-22.164-4.494-30.165-12.492l-90.453-90.453c-8.006-8-12.506-18.854-12.51-30.172s4.488-22.174 12.489-30.18c8-8.006 18.854-12.506 30.172-12.51s22.174 4.488 30.18 12.489l90.453 90.496c7.999 8.001 12.492 18.852 12.492 30.165s-4.494 22.164-12.492 30.165zM210.347 813.696c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l90.496-90.496c3.936-4.075 8.644-7.326 13.85-9.562s10.804-3.413 16.469-3.465c5.665-0.047 11.284 1.033 16.527 3.179s10.007 5.312 14.014 9.318c4.006 4.006 7.174 8.768 9.319 14.012s3.225 10.863 3.176 16.529c-0.049 5.666-1.226 11.264-3.462 16.469s-5.487 9.916-9.562 13.85l-90.453 90.496c-3.962 3.968-8.668 7.113-13.848 9.263-5.18 2.146-10.732 3.251-16.339 3.251s-11.159-1.105-16.339-3.251c-5.18-2.15-9.885-5.295-13.848-9.263zM662.869 361.131c-8-8.001-12.493-18.852-12.493-30.165s4.493-22.164 12.493-30.165l90.453-90.496c8-8.006 18.854-12.506 30.17-12.51 11.319-0.004 22.178 4.488 30.182 12.489s12.506 18.854 12.51 30.172c0.004 11.318-4.489 22.174-12.489 30.18l-90.496 90.496c-8 7.999-18.85 12.492-30.165 12.492s-22.165-4.494-30.165-12.492z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 735,
+ "id": 1614,
+ "name": "loader-2-line",
+ "prevSize": 32,
+ "code": 60332
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 684
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM298.667 469.333h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["indeterminate-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 736,
+ "id": 1613,
+ "name": "indeterminate-circle-line",
+ "prevSize": 32,
+ "code": 60333
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 685
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM213.333 196.437v391.893c0 28.096 6.936 55.753 20.192 80.525 13.256 24.768 32.422 45.884 55.797 61.47l222.677 148.48 222.677-148.48c23.369-15.582 42.53-36.689 55.787-61.453 13.257-24.759 20.194-52.412 20.203-80.499v-391.936l-298.667-66.304-298.667 66.304z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 737,
+ "id": 1612,
+ "name": "shield-line",
+ "prevSize": 32,
+ "code": 60334
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 686
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 426.667h42.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h42.667v-42.667c0-39.221 7.725-78.059 22.735-114.295s37.009-69.161 64.743-96.895c27.734-27.734 60.659-49.733 96.895-64.743s75.071-22.735 114.295-22.735c39.223 0 78.059 7.725 114.295 22.735s69.158 37.009 96.892 64.743c27.738 27.734 49.737 60.659 64.747 96.895 15.006 36.236 22.733 75.073 22.733 114.295v42.667zM213.333 512v341.333h597.333v-341.333h-597.333zM469.333 597.333h85.333v170.667h-85.333v-170.667zM725.333 426.667v-42.667c0-56.579-22.477-110.842-62.485-150.849-40.004-40.008-94.268-62.484-150.848-62.484s-110.842 22.476-150.849 62.484c-40.008 40.008-62.484 94.27-62.484 150.849v42.667h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 738,
+ "id": 1611,
+ "name": "lock-line",
+ "prevSize": 32,
+ "code": 60335
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 687
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 597.333v256l-170.667 85.333v-341.333l-256-384v-85.333h682.667v85.333l-256 384zM273.237 213.333l238.763 358.144 238.763-358.144h-477.525z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 739,
+ "id": 1610,
+ "name": "filter-2-line",
+ "prevSize": 32,
+ "code": 60336
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 688
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 768h170.667v-85.333h-170.667v85.333zM128 256v85.333h768v-85.333h-768zM256 554.667h512v-85.333h-512v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 740,
+ "id": 1609,
+ "name": "filter-3-line",
+ "prevSize": 32,
+ "code": 60337
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 689
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128v85.333h-213.333v597.334h682.667v-384h85.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM808.533 213.333l-125.867-125.867 60.331-60.331 227.84 227.84c3.575 3.58 6.012 8.14 6.997 13.103s0.478 10.106-1.459 14.782c-1.933 4.675-5.214 8.671-9.417 11.485-4.207 2.813-9.152 4.317-14.212 4.322h-355.413c-22.63 0-44.335 8.99-60.339 24.993s-24.994 37.708-24.994 60.34v256h-85.333v-256c0-45.264 17.98-88.674 49.988-120.68 32.004-32.006 75.413-49.987 120.678-49.987h211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-forward-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 741,
+ "id": 1608,
+ "name": "share-forward-box-line",
+ "prevSize": 32,
+ "code": 60338
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 690
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548.949 128.001l406.443 703.999c3.742 6.485 5.713 13.845 5.713 21.333s-1.971 14.848-5.713 21.333c-3.746 6.485-9.131 11.874-15.616 15.616-6.49 3.746-13.845 5.717-21.333 5.717h-812.887c-7.489 0-14.847-1.971-21.333-5.717-6.486-3.742-11.872-9.131-15.616-15.616s-5.716-13.845-5.716-21.333c0-7.488 1.972-14.848 5.716-21.333l406.444-703.999c3.742-6.486 9.131-11.872 15.616-15.616s13.841-5.716 21.333-5.716c7.488 0 14.844 1.971 21.333 5.716 6.485 3.744 11.87 9.13 15.616 15.616zM179.455 810.667h665.089l-332.544-575.999-332.545 575.999zM469.333 682.667h85.333v85.333h-85.333v-85.333zM469.333 384.001h85.333v213.332h-85.333v-213.332z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alert-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 742,
+ "id": 1607,
+ "name": "alert-line",
+ "prevSize": 32,
+ "code": 60339
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 691
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 681.301l181.205 101.419-40.491-203.648 152.448-141.013-206.208-24.448-86.955-188.544v456.235zM512 779.093l-300.929 168.448 67.2-338.261-253.227-234.155 342.486-40.619 144.47-313.173 144.469 313.173 342.485 40.619-253.227 234.155 67.2 338.261-300.928-168.448z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-half-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 743,
+ "id": 1606,
+ "name": "star-half-line",
+ "prevSize": 32,
+ "code": 60340
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 692
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 1012.395l-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.283-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617l-271.531 271.531zM723.2 680.533c41.766-41.771 70.208-94.989 81.728-152.922 11.524-57.937 5.606-117.986-16.998-172.559s-60.89-101.216-110.003-134.032c-49.114-32.817-106.859-50.333-165.926-50.333s-116.812 17.516-165.927 50.333c-49.115 32.816-87.396 79.46-110.002 134.032s-28.523 114.622-17.001 172.559c11.522 57.933 39.964 111.151 81.73 152.922l211.2 211.2 211.2-211.2zM512 554.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.337 24.994-60.34s37.709-24.993 60.339-24.993c22.63 0 44.335 8.99 60.339 24.993s24.994 37.71 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 744,
+ "id": 1605,
+ "name": "map-pin-2-line",
+ "prevSize": 32,
+ "code": 60341
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 693
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 850.987c-97.451-11.021-186.994-58.901-250.269-133.833-63.275-74.927-95.486-171.226-90.030-269.146s48.168-190.043 119.376-257.478c71.209-67.436 165.517-105.073 263.589-105.197 98.193-0.071 192.683 37.476 264.047 104.923 71.36 67.447 114.176 159.671 119.637 257.709 5.466 98.044-26.837 194.453-90.266 269.41-63.428 74.961-153.161 122.773-250.752 133.611v173.013h-85.333v-173.013zM512 768c39.223 0 78.059-7.727 114.295-22.733 36.237-15.010 69.158-37.009 96.896-64.747 27.733-27.733 49.732-60.655 64.742-96.892 15.006-36.237 22.733-75.072 22.733-114.295s-7.727-78.059-22.733-114.295c-15.010-36.236-37.009-69.161-64.742-96.895-27.738-27.734-60.659-49.733-96.896-64.742s-75.072-22.735-114.295-22.735c-79.211 0-155.178 31.467-211.189 87.477s-87.477 131.978-87.477 211.189c0 79.211 31.466 155.179 87.477 211.187 56.011 56.013 131.978 87.479 211.189 87.479z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 745,
+ "id": 1604,
+ "name": "map-pin-3-line",
+ "prevSize": 32,
+ "code": 60342
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 694
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 128v85.333h-42.667v256l85.333 128v85.333h-256v298.667h-85.333v-298.667h-256v-85.333l85.333-128v-256h-42.667v-85.333h512zM384 213.333v281.856l-68.096 102.144h392.192l-68.096-102.144v-281.856h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pushpin-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 746,
+ "id": 1603,
+ "name": "pushpin-2-line",
+ "prevSize": 32,
+ "code": 60343
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 695
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 213.333l298.667-128 256 128 268.928-115.243c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v692.949l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-692.949zM637.227 307.371l-256-128-210.56 90.24v539.648l216.107-92.587 256 128 210.56-90.325v-539.605l-216.107 92.629z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 747, "id": 1602, "name": "map-line", "prevSize": 32, "code": 60344 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 696
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 810.667h42.667v85.333h-554.667v-85.333h42.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h85.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667h-85.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-153.003l-70.699-70.699 60.331-60.331 211.2 211.2c3.968 3.957 7.117 8.659 9.259 13.836 2.146 5.177 3.247 10.726 3.243 16.33v384c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509v-170.667h-85.333v213.333zM213.333 810.667h298.667v-256h-298.667v256zM213.333 213.333v256h298.667v-256h-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gas-station-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 748,
+ "id": 1601,
+ "name": "gas-station-line",
+ "prevSize": 32,
+ "code": 60345
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 697
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 443.733v-273.067c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333v-85.333h170.667v85.333h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v273.067l46.336 13.909c10.5 3.162 19.379 10.24 24.798 19.776 5.419 9.532 6.959 20.787 4.301 31.424l-64.683 258.901c-27.546 1.421-55.108-2.517-81.152-11.605l53.333-228.352-324.267-101.12-324.267 101.12 53.333 228.309c-26.041 9.101-53.602 13.056-81.152 11.648l-64.683-258.901c-2.658-10.637-1.119-21.892 4.3-31.424 5.418-9.536 14.299-16.614 24.799-19.776l46.336-13.909zM256 418.133l256-76.8 256 76.8v-204.8h-512v204.8zM170.667 853.333c62.987 0.085 123.779-23.134 170.667-65.195 46.888 42.061 107.678 65.28 170.667 65.195 62.989 0.085 123.78-23.134 170.667-65.195 46.886 42.061 107.678 65.28 170.667 65.195h85.333v85.333h-85.333c-59.921 0.098-118.797-15.654-170.667-45.653-51.87 29.999-110.746 45.751-170.667 45.653-59.921 0.098-118.799-15.654-170.667-45.653-51.868 29.999-110.747 45.751-170.667 45.653h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ship-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 749,
+ "id": 1600,
+ "name": "ship-line",
+ "prevSize": 32,
+ "code": 60346
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 698
+ },
+ {
+ "icon": {
+ "paths": [
+ "M608.768 518.229l-36.437 36.437 301.696 301.696-60.331 60.331-301.696-301.653-301.696 301.653-60.331-60.331 398.464-398.464c-25.088-62.165 0.853-151.68 69.12-220.032 83.328-83.285 198.144-103.552 256.469-45.227s38.059 173.141-45.227 256.427c-68.352 68.352-157.867 94.293-220.032 69.163zM180.139 162.475l286.592 286.592-120.661 120.704-165.973-165.973c-31.995-32.005-49.969-75.407-49.969-120.661s17.974-88.657 49.969-120.661h0.043zM768.427 388.693c53.675-53.632 64.725-116.309 45.269-135.765s-82.133-8.405-135.765 45.227c-53.632 53.675-64.683 116.352-45.227 135.808 19.413 19.413 82.091 8.363 135.723-45.269z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["restaurant-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 750,
+ "id": 1599,
+ "name": "restaurant-2-line",
+ "prevSize": 32,
+ "code": 60347
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 699
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 341.333v341.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-92.587c-10.065 28.48-29.875 52.484-55.928 67.772-26.053 15.283-56.67 20.868-86.442 15.761s-56.779-20.574-76.249-43.665c-19.47-23.095-30.149-52.326-30.149-82.534s10.679-59.439 30.149-82.534c19.47-23.091 46.478-38.558 76.249-43.665s60.389 0.478 86.442 15.761c26.053 15.287 45.862 39.292 55.928 67.772h92.587c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-341.333c0-33.948 13.487-66.505 37.491-90.51s56.563-37.49 90.509-37.49h128v-128l213.333 170.667-213.333 170.667v-128h-128c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17zM213.333 810.667c11.316 0 22.168-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.495-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["guide-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 751,
+ "id": 1598,
+ "name": "guide-line",
+ "prevSize": 32,
+ "code": 60348
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 700
+ },
+ {
+ "icon": {
+ "paths": [
+ "M324.993 371.712l136.746-99.328c15.351-11.234 34.022-17.002 53.035-16.384 23.189 0.578 45.623 8.367 64.183 22.284 18.556 13.917 32.32 33.27 39.369 55.369 7.936 24.875 15.189 41.685 21.76 50.432 19.853 26.487 45.606 47.983 75.217 62.78 29.611 14.801 62.263 22.49 95.364 22.468v85.333c-44.062 0.047-87.586-9.673-127.441-28.463s-75.046-46.187-103.044-80.209l-29.739 168.747 87.936 73.813 94.848 260.608-80.213 29.184-87.040-239.104-144.639-121.387c-11.87-9.583-20.953-22.178-26.303-36.463-5.35-14.289-6.772-29.751-4.118-44.774l21.717-123.093-28.885 20.992-90.752 124.928-69.035-50.176 100.309-138.069 0.725 0.512zM576 234.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.635 0 44.339 8.99 60.339 24.994 16.004 16.003 24.994 37.708 24.994 60.34s-8.99 44.337-24.994 60.34c-16 16.003-37.705 24.994-60.339 24.994zM449.195 797.056l-137.13 163.413-65.365-54.827 126.976-151.296 31.829-93.013 76.415 64-32.725 71.723z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["walk-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 752,
+ "id": 1597,
+ "name": "walk-line",
+ "prevSize": 32,
+ "code": 60349
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 701
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 810.667v-218.069l-341.333-379.264v-85.333h768v85.333l-341.333 379.264v218.069h213.333v85.333h-512v-85.333h213.333zM319.573 298.667h384.853l76.8-85.333h-538.453l76.8 85.333zM396.373 384l115.627 128.427 115.627-128.427h-231.253z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["goblet-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 753,
+ "id": 1596,
+ "name": "goblet-line",
+ "prevSize": 32,
+ "code": 60350
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 702
+ },
+ {
+ "icon": {
+ "paths": [
+ "M533.248 128c-11.324 27.171-18.223 55.98-20.437 85.333h-214.144c-21.529-0.007-42.264 8.124-58.050 22.763s-25.455 34.703-27.070 56.171l-0.213 6.4v469.333h597.333v-256.811c29.355-2.227 58.163-9.143 85.333-20.48v277.291c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h234.581zM512 554.667c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994zM519.424 298.667c16.811 70.684 60.646 131.968 122.112 170.709l-385.536-0.043v-170.667h263.424zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["train-wifi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 754,
+ "id": 1595,
+ "name": "train-wifi-line",
+ "prevSize": 32,
+ "code": 60351
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 703
+ },
+ {
+ "icon": {
+ "paths": [
+ "M234.667 896c-25.214 0-50.181-4.966-73.475-14.613-23.294-9.651-44.46-23.795-62.289-41.621-17.829-17.83-31.971-38.997-41.62-62.289-9.649-23.296-14.615-48.265-14.615-73.476s4.966-50.18 14.615-73.476c9.649-23.292 23.792-44.459 41.62-62.289 17.829-17.826 38.995-31.97 62.289-41.621 23.295-9.647 48.262-14.613 73.475-14.613 50.921 0 99.758 20.228 135.764 56.235s56.236 84.843 56.236 135.765c0 50.923-20.229 99.759-56.236 135.765s-84.843 56.235-135.764 56.235zM234.667 810.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.002-47.135-31.241-75.425-31.241s-55.421 11.238-75.425 31.241c-20.004 20.006-31.242 47.138-31.242 75.426s11.238 55.42 31.242 75.426c20.004 20.002 47.135 31.241 75.425 31.241zM789.333 896c-25.212 0-50.18-4.966-73.476-14.613-23.292-9.651-44.459-23.795-62.289-41.621-17.826-17.83-31.97-38.997-41.621-62.289-9.647-23.296-14.613-48.265-14.613-73.476s4.966-50.18 14.613-73.476c9.651-23.292 23.795-44.459 41.621-62.289 17.83-17.826 38.997-31.97 62.289-41.621 23.296-9.647 48.265-14.613 73.476-14.613 50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235zM789.333 810.667c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241s-55.42 11.238-75.426 31.241c-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241zM470.315 439.68l84.352 72.32v256h-85.333v-213.333l-116.011-96.683c-10.324-7.095-18.959-16.375-25.292-27.183-6.334-10.806-10.21-22.875-11.354-35.349s0.471-25.047 4.733-36.826c4.261-11.779 11.063-22.476 19.924-31.33l120.661-120.661c7.923-7.927 17.331-14.216 27.686-18.507 10.359-4.291 21.457-6.499 32.666-6.499s22.306 2.208 32.666 6.499c10.355 4.291 19.763 10.579 27.686 18.507l60.331 60.331c45.184 45.347 103.799 74.9 167.125 84.267l-0.427 85.973c-85.922-9.89-165.956-48.622-227.029-109.867l-112.384 112.341zM682.667 213.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["riding-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 755,
+ "id": 1594,
+ "name": "riding-line",
+ "prevSize": 32,
+ "code": 60352
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 704
+ },
+ {
+ "icon": {
+ "paths": [
+ "M930.133 597.376c-17.673 86.302-61.598 165.026-125.76 225.382-64.162 60.361-145.421 99.401-232.64 111.77v-86.4c64.418-11.49 124.186-41.229 172.194-85.687 48.013-44.454 82.253-101.76 98.654-165.107l87.552 0.043zM181.419 597.376c16.223 62.613 49.88 119.339 97.062 163.584 47.182 44.241 105.951 74.189 169.476 86.357v86.613c-86.36-13.158-166.609-52.484-229.925-112.67-63.315-60.19-106.652-138.342-124.165-223.927l87.552 0.043zM768 469.333v85.333h-128c-21.53-0.009-42.266 8.124-58.048 22.763-15.787 14.639-25.455 34.701-27.072 56.171l-0.213 6.4v128h-85.333v-128c0.009-21.53-8.124-42.266-22.763-58.048-14.639-15.787-34.702-25.459-56.17-27.072l-6.4-0.213h-128v-85.333h512zM512 85.333c221.227 0 403.157 168.405 424.533 384h-85.845c-10.411-82.479-50.564-158.324-112.922-213.304s-142.63-85.316-225.766-85.316c-83.132 0-163.41 30.336-225.767 85.316s-102.508 130.825-112.92 213.304h-85.888c21.419-215.595 203.349-384 424.576-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["steering-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 756,
+ "id": 1593,
+ "name": "steering-line",
+ "prevSize": 32,
+ "code": 60353
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 705
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 42.667c23.565 0 42.667 19.103 42.667 42.667v42.624l213.333 0.043v256l-86.187-0.043 118.046 324.109c6.989 18.633 10.807 38.818 10.807 59.891 0 94.259-76.412 170.667-170.667 170.667-79.497 0-146.3-54.353-165.269-127.923h-181.449c-18.957 73.591-85.77 127.966-165.282 127.966-82.981 0-152.13-59.221-167.487-137.707-27.262-14.229-45.847-42.756-45.847-75.627v-554.667c0-23.564 19.103-42.667 42.667-42.667h298.667c23.565 0 42.667 19.103 42.667 42.667v341.333c0 21.879 16.469 39.915 37.692 42.381l4.975 0.286h85.333c21.879 0 39.915-16.469 42.381-37.692l0.286-4.975v-384h-128v-85.333h170.667zM298.667 682.667c-47.128 0-85.333 38.204-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.204 85.333-85.333s-38.205-85.333-85.333-85.333zM810.667 682.624c-47.13 0-85.333 38.204-85.333 85.333s38.204 85.333 85.333 85.333c47.13 0 85.333-38.204 85.333-85.333s-38.204-85.333-85.333-85.333zM761.685 383.957h-36.352v128.043c0 70.694-57.306 128-128 128h-85.333c-55.718 0-103.12-35.601-120.703-85.295l-220.633-0.038v100.446c31.273-35.43 77.028-57.779 128.003-57.779 79.528 0 146.351 54.396 165.291 128.013h181.406c18.927-73.638 85.76-128.055 165.303-128.055 10.125 0 20.041 0.883 29.683 2.573l-78.665-215.906zM384 341.333h-213.333v128h213.333v-128zM853.333 213.333h-128v85.333h128v-85.333zM384 213.333h-213.333v42.667h213.333v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["takeaway-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 757,
+ "id": 1592,
+ "name": "takeaway-line",
+ "prevSize": 32,
+ "code": 60354
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 706
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667zM810.667 170.667h-597.333v682.667h597.333v-682.667zM682.667 682.667v85.333h-341.333v-85.333h341.333zM512 256c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68 0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.673-17.98-120.68-49.988c-32.006-32.004-49.987-75.413-49.987-120.678 0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987zM512 341.333c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["passport-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 758,
+ "id": 1591,
+ "name": "passport-line",
+ "prevSize": 32,
+ "code": 60355
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 707
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 853.333v-298.667h-85.333v-128h256v128h-85.333v298.667h213.333v85.333h-512v-85.333h213.333zM426.667 94.848v-52.181h170.667v52.181c73.19 16.711 139.878 54.504 191.825 108.705s86.869 122.437 100.454 196.271c13.585 73.836 5.239 150.034-24.013 219.175-29.248 69.141-78.118 128.196-140.565 169.865l-47.36-70.997c53.329-35.563 93.803-87.334 115.443-147.674 21.636-60.335 23.287-126.033 4.71-187.379-18.581-61.347-56.401-115.090-107.878-153.286-51.473-38.196-113.873-58.817-177.971-58.817s-126.496 20.622-177.972 58.817c-51.476 38.196-89.297 91.939-107.875 153.286-18.578 61.346-16.926 127.044 4.71 187.379 21.637 60.339 62.111 112.111 115.441 147.674l-47.317 70.997c-62.448-41.668-111.317-100.723-140.567-169.865s-37.597-145.34-24.011-219.175c13.585-73.834 48.509-142.069 100.454-196.271s118.634-91.994 191.824-108.705z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["china-railway-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 759,
+ "id": 1590,
+ "name": "china-railway-line",
+ "prevSize": 32,
+ "code": 60356
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 708
+ },
+ {
+ "icon": {
+ "paths": [
+ "M425.6 382.933c20.885-20.885 35.106-47.494 40.866-76.461s2.803-58.993-8.503-86.279c-11.302-27.286-30.443-50.608-54.999-67.016s-53.429-25.167-82.964-25.167c-29.535 0-58.406 8.758-82.964 25.167s-43.697 39.73-55.001 67.016c-11.303 27.286-14.261 57.311-8.5 86.279s19.982 55.576 40.865 76.461l105.6 105.6 105.6-105.6zM320 609.195l-165.973-165.888c-32.808-32.823-55.147-74.637-64.192-120.155s-4.392-92.695 13.373-135.569c17.765-42.873 47.843-79.517 86.431-105.297s83.955-39.541 130.362-39.541c46.408 0 91.774 13.76 130.364 39.541 38.588 25.78 68.663 62.424 86.43 105.297s22.417 90.051 13.372 135.569c-9.045 45.518-31.386 87.332-64.192 120.155l-165.973 165.888zM320 341.333c-16.974 0-33.252-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.252 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.253-18.745 45.255s-28.281 18.745-45.255 18.745zM704 872.533l105.6-105.6c20.885-20.885 35.106-47.492 40.866-76.463 5.76-28.966 2.803-58.991-8.503-86.276-11.302-27.285-30.443-50.607-54.997-67.017-24.559-16.41-53.431-25.165-82.965-25.165s-58.406 8.755-82.965 25.165c-24.555 16.41-43.695 39.731-54.997 67.017-11.307 27.285-14.263 57.31-8.503 86.276 5.76 28.971 19.985 55.578 40.866 76.463l105.6 105.6zM869.973 827.307l-165.973 165.888-165.973-165.931c-32.806-32.823-55.147-74.637-64.192-120.154-9.045-45.521-4.39-92.698 13.372-135.569 17.766-42.876 47.842-79.518 86.43-105.297 38.588-25.783 83.955-39.543 130.364-39.543s91.776 13.76 130.364 39.543c38.588 25.779 68.663 62.421 86.43 105.297 17.762 42.871 22.417 90.048 13.372 135.569-9.045 45.517-31.386 87.33-64.192 120.154v0.043zM704 725.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pin-distance-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 760,
+ "id": 1589,
+ "name": "pin-distance-line",
+ "prevSize": 32,
+ "code": 60357
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 709
+ },
+ {
+ "icon": {
+ "paths": [
+ "M386.987 298.667l-130.987 196.523v358.144h512v-554.667h-381.013zM341.333 213.333h469.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667l170.667-256zM554.667 42.667h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h-298.667v-85.333c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM341.333 512h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["oil-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 761, "id": 1588, "name": "oil-line", "prevSize": 32, "code": 60358 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 710
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM659.029 425.301l-233.728 233.728c-24.871-14.707-45.623-35.46-60.331-60.331l233.728-233.728c24.87 14.708 45.623 35.46 60.331 60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 762,
+ "id": 1587,
+ "name": "compass-4-line",
+ "prevSize": 32,
+ "code": 60359
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 711
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667l103.125-171.904c7.581-12.636 18.306-23.093 31.13-30.353s27.308-11.076 42.044-11.076h500.736c14.737-0 29.222 3.816 42.044 11.076s23.548 17.717 31.13 30.353l103.125 171.904v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM853.333 597.333h-682.667v213.333h682.667v-213.333zM184.832 512h654.336l-76.8-128h-500.736l-76.8 128zM232.107 146.774l45.227-45.312 45.227 45.227c8.952 8.95 15.050 20.353 17.521 32.768s1.205 25.285-3.639 36.98c-4.844 11.695-13.046 21.692-23.572 28.725s-22.9 10.787-35.558 10.787c-12.659 0-25.033-3.754-35.558-10.787s-18.728-17.030-23.572-28.725c-4.844-11.696-6.11-24.565-3.639-36.98s8.568-23.819 17.521-32.768l0.043 0.085zM466.773 146.774l45.227-45.312 45.227 45.227c8.951 8.95 15.049 20.353 17.519 32.768 2.475 12.416 1.207 25.285-3.635 36.98-4.847 11.695-13.047 21.692-23.573 28.725s-22.899 10.787-35.558 10.787c-12.659 0-25.033-3.754-35.558-10.787s-18.726-17.030-23.573-28.725c-4.843-11.696-6.11-24.565-3.635-36.98 2.47-12.415 8.567-23.819 17.519-32.768l0.043 0.085zM701.44 146.774l45.227-45.312 45.227 45.227c8.951 8.95 15.049 20.353 17.519 32.768 2.475 12.416 1.207 25.285-3.635 36.98-4.847 11.695-13.047 21.692-23.573 28.725s-22.899 10.787-35.558 10.787c-12.659 0-25.033-3.754-35.558-10.787s-18.726-17.030-23.573-28.725c-4.843-11.696-6.11-24.565-3.635-36.98 2.47-12.415 8.567-23.819 17.519-32.768l0.043 0.085zM277.333 768c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM746.667 768c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["car-washing-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 763,
+ "id": 1586,
+ "name": "car-washing-line",
+ "prevSize": 32,
+ "code": 60360
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 712
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 554.667v213.333h682.667v-213.333h-682.667zM239.701 469.333h544.597c7.27-0.004 14.417-1.865 20.766-5.406 6.349-3.546 11.686-8.649 15.509-14.835s5.999-13.244 6.327-20.506c0.324-7.263-1.207-14.489-4.459-20.992l-54.443-108.928h-512l-54.443 108.928c-3.249 6.503-4.784 13.729-4.457 20.992 0.327 7.262 2.505 14.319 6.326 20.506s9.159 11.29 15.508 14.835c6.349 3.541 13.497 5.402 20.767 5.406zM938.667 576v320c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-320l-53.035-13.227c-9.227-2.313-17.416-7.637-23.268-15.138-5.852-7.497-9.030-16.738-9.031-26.249v-30.72c0-5.658 2.248-11.085 6.248-15.087 4.001-3.998 9.427-6.246 15.085-6.246h64l104.405-208.811c7.088-14.185 17.989-26.115 31.479-34.45s29.036-12.747 44.894-12.739h75.221v-85.333h128v85.333h85.333v-85.333h128v85.333h75.264c15.851 0 31.386 4.416 44.868 12.751s24.375 20.26 31.462 34.439l104.405 208.811h64c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087v30.72c0 9.51-3.179 18.752-9.033 26.249-5.85 7.501-14.042 12.826-23.266 15.138l-53.035 13.227zM213.333 597.333c98.859 0 165.504 32.213 199.936 96.597 1.74 3.251 2.609 6.899 2.52 10.586s-1.132 7.287-3.028 10.449c-1.895 3.162-4.578 5.781-7.787 7.599s-6.833 2.769-10.521 2.769h-138.453c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-85.333zM810.667 597.333v85.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-138.453c-3.682-0.004-7.305-0.964-10.505-2.786-3.204-1.822-5.884-4.437-7.774-7.599s-2.927-6.763-3.017-10.445c-0.085-3.682 0.781-7.326 2.522-10.573 34.347-64.427 100.992-96.597 199.893-96.597z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["police-car-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 764,
+ "id": 1585,
+ "name": "police-car-line",
+ "prevSize": 32,
+ "code": 60361
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 713
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 853.333h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667l105.813-246.955c6.584-15.36 17.534-28.448 31.49-37.641s30.305-14.086 47.017-14.071h484.693c16.695 0.002 33.028 4.902 46.967 14.094s24.875 22.271 31.454 37.618l105.899 246.955v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM853.333 554.667h-682.667v213.333h682.667v-213.333zM178.176 469.333h667.648l-91.435-213.333h-484.736l-91.435 213.333h-0.043zM277.333 725.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM746.667 725.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["car-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 765, "id": 1584, "name": "car-line", "prevSize": 32, "code": 60362 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 714
+ },
+ {
+ "icon": {
+ "paths": [
+ "M437.504 446.72l-15.788-357.632 82.476 22.101 119.893 385.493 224.469 60.16c8.119 2.172 15.731 5.926 22.4 11.042s12.262 11.494 16.465 18.773c4.207 7.275 6.933 15.313 8.034 23.646 1.097 8.333 0.542 16.798-1.63 24.917-2.176 8.119-5.926 15.731-11.042 22.4s-11.494 12.262-18.773 16.469c-7.279 4.203-15.313 6.929-23.646 8.030-8.333 1.097-16.798 0.546-24.917-1.63l-638.806-171.179 33.109-123.648 10.325 2.773 38.997 142.933-112.085-29.995c-9.184-2.47-17.28-7.94-23-15.539s-8.738-16.892-8.573-26.402l3.84-230.528 61.824 16.555 38.997 142.976 217.43 58.283zM170.666 810.667h682.668v85.333h-682.668v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flight-land-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 766,
+ "id": 1583,
+ "name": "flight-land-line",
+ "prevSize": 32,
+ "code": 60363
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 715
+ },
+ {
+ "icon": {
+ "paths": [
+ "M382.507 768c-5.072 35.597-22.818 68.169-49.976 91.729-27.159 23.565-61.908 36.54-97.864 36.54s-70.705-12.975-97.864-36.54c-27.159-23.561-44.904-56.132-49.976-91.729h-44.16v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h128l128 173.056v253.611h-86.827c-5.073 35.597-22.818 68.169-49.975 91.729-27.162 23.565-61.909 36.54-97.865 36.54s-70.703-12.975-97.865-36.54c-27.157-23.561-44.902-56.132-49.975-91.729h-216.32zM640 298.667h-512v343.467c16.835-17.186 37.572-30.050 60.448-37.5 22.876-7.445 47.212-9.259 70.939-5.278s46.139 13.632 65.332 28.139c19.193 14.507 34.597 33.434 44.902 55.172h242.091c7.168-15.061 16.768-28.757 28.288-40.533v-343.467zM725.333 554.667h170.667v-12.16l-85.675-115.84h-84.992v128zM746.667 810.667c16.981 0 33.263-6.746 45.269-18.752s18.752-28.288 18.752-45.269c0-16.981-6.746-33.263-18.752-45.269s-28.288-18.752-45.269-18.752c-16.981 0-33.263 6.746-45.269 18.752s-18.752 28.288-18.752 45.269c0 16.981 6.746 33.263 18.752 45.269s28.288 18.752 45.269 18.752zM298.667 746.667c0-8.405-1.655-16.725-4.872-24.491s-7.93-14.822-13.873-20.766c-5.943-5.939-12.998-10.654-20.763-13.871s-16.087-4.873-24.492-4.873c-8.404 0-16.727 1.655-24.492 4.873s-14.82 7.932-20.763 13.871c-5.943 5.943-10.657 13.001-13.873 20.766s-4.872 16.085-4.872 24.491c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["truck-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 767,
+ "id": 1582,
+ "name": "truck-line",
+ "prevSize": 32,
+ "code": 60364
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 716
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 725.333c-26.692 0.030-53.15-4.966-77.995-14.72l-95.403 95.445c52.508 31.036 112.401 47.369 173.397 47.275 60.996 0.094 120.887-16.239 173.397-47.275l-95.403-95.445c-24.845 9.754-51.302 14.75-77.995 14.72zM170.667 512c0 63.317 17.237 122.581 47.275 173.397l95.445-95.403c-9.755-24.845-14.749-51.302-14.72-77.995 0-27.52 5.205-53.803 14.72-77.995l-95.445-95.403c-31.037 52.508-47.367 112.401-47.275 173.397zM806.059 338.603l-95.445 95.403c9.515 24.192 14.72 50.475 14.72 77.995s-5.205 53.803-14.72 77.995l95.445 95.403c31.036-52.51 47.369-112.401 47.275-173.397 0.094-60.996-16.239-120.89-47.275-173.397zM512 384c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49zM512 170.667c-60.996-0.092-120.89 16.238-173.397 47.275l95.403 95.445c24.845-9.755 51.302-14.749 77.995-14.72 27.52 0 53.803 5.205 77.995 14.72l95.403-95.445c-52.51-31.037-112.401-47.367-173.397-47.275z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lifebuoy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 768,
+ "id": 1581,
+ "name": "lifebuoy-line",
+ "prevSize": 32,
+ "code": 60365
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 717
+ },
+ {
+ "icon": {
+ "paths": [
+ "M447.061 496.299l-192.427-301.739 82.389-22.101 296.576 273.92 224.512-60.16c16.397-4.39 33.865-2.088 48.563 6.402s25.425 22.47 29.815 38.868c4.39 16.397 2.086 33.865-6.4 48.563-8.491 14.699-22.473 25.425-38.869 29.815l-638.805 171.093-33.109-123.648 10.283-2.773 105.259 104.32-112.043 30.037c-9.187 2.462-18.935 1.788-27.693-1.924s-16.026-10.244-20.648-18.556l-111.915-201.643 61.824-16.555 105.216 104.32 217.472-58.24zM170.667 810.667h682.667v85.333h-682.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flight-takeoff-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 769,
+ "id": 1580,
+ "name": "flight-takeoff-line",
+ "prevSize": 32,
+ "code": 60366
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 718
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 765.355c-86.071-10.953-164.742-54.268-220.024-121.139-55.282-66.876-83.025-152.29-77.592-238.883 5.433-86.595 43.636-167.871 106.842-227.311s146.676-92.581 233.44-92.688c86.869-0.064 170.5 32.996 233.843 92.445s101.636 140.814 107.076 227.514c5.44 86.701-22.383 172.214-77.798 239.115-55.42 66.897-134.255 110.153-220.454 120.947v88.491c168.363 3.925 298.667 30.848 298.667 63.488 0 35.328-152.832 64-341.333 64s-341.333-28.672-341.333-64c0-32.64 130.304-59.563 298.667-63.488v-88.491zM512 682.667c67.895 0 133.009-26.97 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019s26.971 133.009 74.981 181.018c48.009 48.013 113.124 74.982 181.019 74.982zM512 512c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.991 60.339 24.994s24.994 37.708 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-range-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 770,
+ "id": 1579,
+ "name": "map-pin-range-line",
+ "prevSize": 32,
+ "code": 60367
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 719
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 469.333v384h-85.333v-128h-682.667v128h-85.333v-682.667h85.333v426.667h341.333v-298.667h256c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68zM853.333 597.333v-128c0-22.63-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-170.667v213.333h256zM341.333 469.333c11.316 0 22.168-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM341.333 554.667c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49c33.948 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.561 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hotel-bed-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 771,
+ "id": 1578,
+ "name": "hotel-bed-line",
+ "prevSize": 32,
+ "code": 60368
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 720
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM704 320l-106.667 277.333-277.333 106.667 106.667-277.333 277.333-106.667zM512 554.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 772,
+ "id": 1577,
+ "name": "compass-3-line",
+ "prevSize": 32,
+ "code": 60369
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 721
+ },
+ {
+ "icon": {
+ "paths": [
+ "M709.333 133.675l-64 64c-42.176-17.88-87.526-27.066-133.333-27.008-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333c188.587 0 341.333-152.747 341.333-341.333 0.060-45.807-9.126-91.158-27.008-133.333l64-64c31.846 60.896 48.435 128.614 48.341 197.333 0 235.52-191.147 426.667-426.667 426.667s-426.667-191.147-426.667-426.667c0-235.52 191.147-426.667 426.667-426.667 71.168 0 138.283 17.493 197.333 48.341zM783.531 180.139l60.331 60.331-331.861 331.861-60.331-60.331 331.861-331.861z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 773,
+ "id": 1576,
+ "name": "compass-2-line",
+ "prevSize": 32,
+ "code": 60370
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 722
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 149.974l-362.026 362.026 362.026 362.027 362.027-362.027-362.027-362.026zM542.165 59.435l422.4 422.4c8 8 12.493 18.85 12.493 30.165s-4.493 22.165-12.493 30.165l-422.4 422.4c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-422.4-422.4c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l422.4-422.4c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492zM554.667 426.667v-106.666l149.333 149.333-149.333 149.333v-106.667h-128v128h-85.333v-170.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h170.666z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["direction-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 774,
+ "id": 1575,
+ "name": "direction-line",
+ "prevSize": 32,
+ "code": 60371
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 723
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 85.333v853.333h-85.333v-298.667h-170.667v-298.667c0-67.895 26.97-133.010 74.982-181.019 48.009-48.009 113.122-74.981 181.018-74.981zM810.667 193.28c-35.413 20.053-85.333 69.973-85.333 148.053v213.333h85.333v-361.387zM384 593.067v345.6h-85.333v-345.6c-48.179-9.852-91.478-36.036-122.575-74.133-31.097-38.093-48.085-85.756-48.091-134.933v-256h85.333v298.667h85.333v-298.667h85.333v298.667h85.333v-298.667h85.333v256c-0.004 49.178-16.994 96.841-48.090 134.933-31.1 38.097-74.398 64.282-122.577 74.133z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["restaurant-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 775,
+ "id": 1574,
+ "name": "restaurant-line",
+ "prevSize": 32,
+ "code": 60372
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 724
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 469.333h-42.667v-170.667h42.667v-128h85.333v128h42.667v170.667h-42.667v298.667c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509v-170.667h-85.333v213.333h42.667v85.333h-554.667v-85.333h42.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h85.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667zM512 810.667v-597.333h-298.667v597.333h298.667zM384 469.333h128l-170.667 256v-170.667h-128l170.667-256v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["charging-pile-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 776,
+ "id": 1573,
+ "name": "charging-pile-2-line",
+ "prevSize": 32,
+ "code": 60373
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 725
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 788.693l181.035-180.992c35.797-35.806 60.177-81.421 70.050-131.076 9.873-49.66 4.8-101.129-14.575-147.905-19.379-46.775-52.19-86.755-94.289-114.882s-91.593-43.141-142.221-43.141c-50.628 0-100.123 15.013-142.221 43.141s-74.91 68.107-94.288 114.882c-19.377 46.775-24.449 98.245-14.575 147.905 9.874 49.655 34.252 95.27 70.049 131.076l181.035 180.992zM753.365 668.032l-241.365 241.365-241.365-241.365c-47.735-47.735-80.241-108.557-93.411-174.767-13.169-66.214-6.409-134.843 19.427-197.213s69.585-115.677 125.716-153.183c56.132-37.505 122.126-57.524 189.633-57.524s133.5 20.018 189.632 57.524c56.132 37.506 99.883 90.813 125.717 153.183s32.597 130.998 19.426 197.213c-13.167 66.21-45.675 127.031-93.41 174.767zM213.333 938.667h597.333v85.333h-597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 777,
+ "id": 1572,
+ "name": "map-pin-5-line",
+ "prevSize": 32,
+ "code": 60374
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 726
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 765.355c-86.071-10.953-164.742-54.268-220.024-121.139-55.281-66.876-83.025-152.29-77.592-238.883 5.434-86.595 43.636-167.871 106.843-227.311s146.675-92.581 233.44-92.688c86.869-0.064 170.5 32.996 233.843 92.445s101.636 140.814 107.076 227.514c5.44 86.701-22.383 172.214-77.798 239.115-55.415 66.897-134.255 110.153-220.454 120.947v130.645h-85.333v-130.645zM512 682.667c67.895 0 133.009-26.97 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019s26.972 133.009 74.981 181.018c48.009 48.013 113.124 74.982 181.019 74.982zM213.333 938.667h597.333v85.333h-597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 778,
+ "id": 1571,
+ "name": "map-pin-4-line",
+ "prevSize": 32,
+ "code": 60375
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 727
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM661.333 362.667l-85.333 213.333-213.333 85.333 85.333-213.333 213.333-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 779,
+ "id": 1570,
+ "name": "compass-line",
+ "prevSize": 32,
+ "code": 60376
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 728
+ },
+ {
+ "icon": {
+ "paths": [
+ "M211.84 217.429l151.296 529.493 129.707-259.413 240.512-96.213-521.515-173.867zM123.691 98.133l802.389 267.435c4.151 1.376 7.782 3.997 10.398 7.505 2.611 3.508 4.083 7.736 4.215 12.109 0.128 4.373-1.088 8.681-3.49 12.339-2.398 3.658-5.867 6.49-9.929 8.111l-372.608 149.035-188.8 377.6c-1.921 3.844-4.959 7.019-8.716 9.109s-8.057 2.995-12.337 2.598c-4.28-0.397-8.34-2.078-11.649-4.821s-5.712-6.421-6.894-10.556l-229.845-804.395c-1.065-3.737-1.088-7.694-0.069-11.443s3.044-7.15 5.854-9.833c2.81-2.683 6.301-4.548 10.093-5.393s7.744-0.638 11.428 0.599h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["navigation-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 780,
+ "id": 1569,
+ "name": "navigation-line",
+ "prevSize": 32,
+ "code": 60377
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 729
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h256v341.333h341.333v298.667zM810.667 554.667h-597.333v213.333h597.333v-213.333zM320 597.333c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743zM704 597.333c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM469.333 213.333h-170.667c-21.529-0.007-42.264 8.124-58.050 22.763s-25.455 34.703-27.070 56.171l-0.213 6.4v170.667h256v-256zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subway-wifi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 781,
+ "id": 1568,
+ "name": "subway-wifi-line",
+ "prevSize": 32,
+ "code": 60378
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 730
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 213.333l298.667-128 256 128 268.928-115.243c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v692.949l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-692.949zM682.667 827.52l170.667-73.131v-539.648l-170.667 73.131v539.648zM597.333 821.931v-534.528l-170.667-85.333v534.528l170.667 85.333zM341.333 736.128v-539.648l-170.667 73.131v539.648l170.667-73.131z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 782,
+ "id": 1567,
+ "name": "map-2-line",
+ "prevSize": 32,
+ "code": 60379
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 731
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128v170.667h-245.931l-85.376 170.667h757.973v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667l104.405-208.811c7.088-14.185 17.989-26.115 31.479-34.45s29.036-12.747 44.894-12.739h117.888v-85.333h128zM853.333 554.667h-682.667v213.333h682.667v-213.333zM277.333 597.333c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743zM746.667 597.333c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["taxi-wifi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 783,
+ "id": 1566,
+ "name": "taxi-wifi-line",
+ "prevSize": 32,
+ "code": 60380
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 732
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 170.667h232.363c7.236 0 14.353 1.841 20.685 5.349 6.327 3.508 11.661 8.568 15.497 14.705l147.456 235.947h188.075c3.703-0.003 7.347 0.96 10.564 2.79 3.221 1.835 5.909 4.471 7.799 7.659s2.918 6.81 2.982 10.513c0.064 3.703-0.836 7.36-2.615 10.611l-168.96 309.76h-27.179c-22.106 0.017-44.117-2.82-65.493-8.448l135.040-247.552h-735.147l44.715 248.491c-20.213 5.001-40.959 7.522-61.781 7.509h-23.253l-52.907-291.029c-1.117-6.144-0.873-12.454 0.715-18.492s4.483-11.657 8.478-16.452c3.996-4.796 8.995-8.657 14.646-11.311 5.651-2.658 11.816-4.036 18.059-4.049h34.261v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h42.667v-128h170.667v128zM213.333 426.667h486.059l-106.667-170.667h-379.392v170.667zM128 853.333c62.987 0.085 123.779-23.134 170.667-65.195 46.888 42.061 107.68 65.28 170.667 65.195 62.989 0.085 123.78-23.134 170.667-65.195 46.886 42.061 107.678 65.28 170.667 65.195h85.333v85.333h-85.333c-59.921 0.098-118.797-15.654-170.667-45.653-51.87 29.999-110.746 45.751-170.667 45.653-59.919 0.098-118.799-15.654-170.667-45.653-51.868 29.999-110.747 45.751-170.667 45.653h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ship-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 784,
+ "id": 1565,
+ "name": "ship-2-line",
+ "prevSize": 32,
+ "code": 60381
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 733
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 128c23.552 0 42.667 19.115 42.667 42.667v85.333h213.333c23.552 0 42.667 19.115 42.667 42.667v554.667c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-554.667c0-23.552 19.115-42.667 42.667-42.667h213.333v-85.333c0-23.552 19.115-42.667 42.667-42.667h256zM682.667 341.333h-341.333v469.333h341.333v-469.333zM170.667 341.333v469.333h85.333v-469.333h-85.333zM597.333 213.333h-170.667v42.667h170.667v-42.667zM768 341.333v469.333h85.333v-469.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["suitcase-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 785,
+ "id": 1564,
+ "name": "suitcase-line",
+ "prevSize": 32,
+ "code": 60382
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 734
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM341.333 554.667l-168.021 0.043c9.506 75.187 43.752 145.079 97.344 198.665s123.488 87.821 198.677 97.314v-168.021c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509zM850.688 554.709l-168.021-0.043c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491l0.043 168.021c75.183-9.502 145.067-43.742 198.652-97.327s87.825-123.469 97.327-198.652zM597.333 512h-170.667v42.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497h85.333c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-42.667zM512 170.667c-83.14 0.001-163.423 30.344-225.781 85.333s-102.505 130.846-112.907 213.333h168.021c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h256c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17h168.021c-10.402-82.487-50.547-158.344-112.909-213.333-62.357-54.989-142.639-85.332-225.779-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["steering-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 786,
+ "id": 1563,
+ "name": "steering-2-line",
+ "prevSize": 32,
+ "code": 60383
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 735
+ },
+ {
+ "icon": {
+ "paths": [
+ "M604.672 128c22.613 0 44.331 8.96 60.331 25.003l205.995 205.995c16 16 25.003 37.717 25.003 60.331v306.005h85.333v85.333h-346.709c-18.987 73.643-85.76 128-165.291 128s-146.347-54.357-165.291-128h-176.043c-23.552 0-42.667-19.115-42.667-42.667v-554.667c0-47.147 38.187-85.333 85.333-85.333h434.005zM469.333 682.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333zM604.672 213.333h-434.005v512h133.376c18.944-73.6 85.76-128 165.291-128s146.347 54.4 165.291 128h176.043v-306.005l-205.995-205.995zM597.333 298.667v256h-341.333v-256h341.333zM512 384h-170.667v85.333h170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["caravan-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 787,
+ "id": 1562,
+ "name": "caravan-line",
+ "prevSize": 32,
+ "code": 60384
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 736
+ },
+ {
+ "icon": {
+ "paths": [
+ "M266.027 275.328c-54.398 56.46-87.701 129.926-94.312 208.051-6.61 78.123 13.875 156.139 58.013 220.937s109.237 112.427 184.356 134.878c75.119 22.451 155.677 18.359 228.134-11.588 4.907-32-5.845-62.72-10.24-73.472-9.813-23.893-42.155-64.725-96.128-121.344-14.421-15.147-13.483-26.795-8.32-61.312l0.555-3.883c3.499-23.637 9.387-37.632 88.96-50.261 40.448-6.4 51.072 9.728 65.792 32.128l4.949 7.339c13.995 20.48 24.363 25.173 40.021 32.256 7.040 3.2 15.787 7.253 27.52 13.867 27.819 15.915 27.819 33.877 27.819 73.216v4.48c0 16.683-1.621 31.36-4.181 44.117 32.742-41.092 55.556-89.186 66.671-140.535 11.115-51.354 10.227-104.576-2.594-155.529-12.817-50.951-37.227-98.257-71.317-138.234s-76.949-71.547-125.239-92.251c-23.595 15.915-55.979 38.485-67.285 53.973-5.76 7.893-13.952 48.299-40.533 51.627-6.912 0.853-16.256 0.256-26.155-0.384-26.539-1.707-62.805-4.053-74.411 27.477-7.381 19.968-8.661 74.24 15.189 102.4 3.84 4.48 4.565 12.8 1.963 22.144-3.413 12.245-10.283 19.712-12.459 21.248-4.096-2.389-12.288-11.904-17.877-18.347-13.355-15.573-30.080-34.987-51.669-40.96-7.851-2.176-16.469-3.968-24.875-5.76-23.424-4.907-49.92-10.496-56.107-23.637-4.523-9.643-4.48-22.912-4.48-36.907 0-17.792 0-37.888-8.704-57.387-3.026-6.959-7.473-13.208-13.056-18.347zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["earth-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 788,
+ "id": 1561,
+ "name": "earth-line",
+ "prevSize": 32,
+ "code": 60385
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 737
+ },
+ {
+ "icon": {
+ "paths": [
+ "M589.995 71.936l362.069 362.069-60.373 60.331-30.165-30.165-180.992 180.992-30.165 150.869-60.373 60.331-180.992-181.035-211.2 211.2-60.331-60.331 211.2-211.2-181.035-180.992 60.331-60.373 150.912-30.165 180.993-180.992-30.165-30.165 60.288-60.373zM620.203 222.805l-199.297 199.253-120.405 24.107 277.334 277.333 24.064-120.405 199.296-199.253-180.992-181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pushpin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 789,
+ "id": 1560,
+ "name": "pushpin-line",
+ "prevSize": 32,
+ "code": 60386
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 738
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 381.739l341.333 215.595v85.333l-341.333-107.776v228.693l128 71.083v64l-192-42.667-192 42.667v-64l128-71.125v-228.693l-341.333 107.819v-85.333l341.333-215.595v-232.405c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255v232.405z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plane-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 790,
+ "id": 1559,
+ "name": "plane-line",
+ "prevSize": 32,
+ "code": 60387
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 739
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 891.733l211.2-211.2c41.766-41.771 70.208-94.989 81.732-152.922 11.52-57.937 5.602-117.986-17.003-172.559s-60.89-101.216-110.003-134.032c-49.114-32.817-106.859-50.333-165.926-50.333s-116.812 17.516-165.927 50.333c-49.115 32.816-87.396 79.46-110.002 134.032s-28.523 114.622-17.001 172.559c11.522 57.933 39.964 111.151 81.73 152.922l211.2 211.2zM512 1012.395l-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617l-271.531 271.531zM469.333 426.667v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 791,
+ "id": 1558,
+ "name": "map-pin-add-line",
+ "prevSize": 32,
+ "code": 60388
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 740
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.867 853.333l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h426.667c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v469.333c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8zM298.667 213.333c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34v469.333h597.333v-469.333c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-426.667zM512 725.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM256 298.667h512v170.667h-512v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["train-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 792,
+ "id": 1557,
+ "name": "train-line",
+ "prevSize": 32,
+ "code": 60389
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 741
+ },
+ {
+ "icon": {
+ "paths": [
+ "M728.917 674.645c40.124-42.394 66.944-95.616 77.15-153.088s3.345-116.676-19.733-170.292c-23.078-53.616-61.359-99.294-110.114-131.389s-105.847-49.199-164.22-49.199c-58.372 0-115.463 17.104-164.219 49.199s-87.038 77.773-110.115 131.389c-23.077 53.616-29.938 112.82-19.733 170.292s37.026 110.694 77.15 153.088c23.026-36.745 55.013-67.029 92.957-88.017s80.599-31.987 123.961-31.962c43.362-0.026 86.016 10.974 123.959 31.962s69.931 51.273 92.958 88.017zM357.76 737.493l154.24 154.197 154.24-154.197c-13.833-29.201-35.669-53.879-62.976-71.159-27.302-17.28-58.953-26.453-91.264-26.453s-63.962 9.173-91.266 26.453c-27.305 17.28-49.142 41.958-62.974 71.159zM512 1012.395l-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617l-271.531 271.531zM512 426.667c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM512 512c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.561-37.49-90.509c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.95 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.509s-56.559 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-user-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 793,
+ "id": 1556,
+ "name": "map-pin-user-line",
+ "prevSize": 32,
+ "code": 60390
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 742
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 469.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667l104.405-208.811c7.088-14.185 17.989-26.115 31.479-34.45s29.036-12.747 44.894-12.739h117.888v-85.333h256v85.333h117.931c15.851 0 31.386 4.416 44.868 12.751s24.375 20.26 31.462 34.439l104.405 208.811zM853.333 554.667h-682.667v213.333h682.667v-213.333zM180.736 469.333h662.528l-85.333-170.667h-491.861l-85.333 170.667zM277.333 725.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM746.667 725.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["taxi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 794,
+ "id": 1555,
+ "name": "taxi-line",
+ "prevSize": 32,
+ "code": 60391
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 743
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 128h298.667c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982h-213.333v256h-85.333v-768zM341.333 213.333v341.333h213.333c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678 0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parking-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 795,
+ "id": 1554,
+ "name": "parking-line",
+ "prevSize": 32,
+ "code": 60392
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 744
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 128c23.552 0 42.667 19.115 42.667 42.667v85.333h170.667c23.552 0 42.667 19.115 42.667 42.667v512h85.333v85.333h-938.667v-85.333h85.333v-512c0-23.552 19.115-42.667 42.667-42.667h170.667v-85.333c0-23.552 19.115-42.667 42.667-42.667h256zM341.333 341.333h-128v469.333h128v-469.333zM597.333 341.333h-170.667v469.333h170.667v-469.333zM810.667 341.333h-128v469.333h128v-469.333zM597.333 213.333h-170.667v42.667h170.667v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["luggage-deposit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 796,
+ "id": 1553,
+ "name": "luggage-deposit-line",
+ "prevSize": 32,
+ "code": 60393
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 745
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 896h213.333v85.333h-512v-85.333h213.334v-44.8c-67.649-6.793-132.696-29.649-189.724-66.671-57.027-37.018-104.384-87.125-138.127-146.15l74.112-42.325c26.060 45.534 62.267 84.45 105.807 113.724s93.243 48.115 145.248 55.061c52.002 6.946 104.909 1.813 154.607-15.006 49.694-16.815 94.848-44.864 131.947-81.963s65.148-82.253 81.963-131.947c16.819-49.698 21.952-102.605 15.006-154.608s-25.788-101.706-55.061-145.247c-29.274-43.54-68.19-79.747-113.724-105.807l42.325-74.112c65.323 37.314 119.616 91.243 157.367 156.315s57.617 138.972 57.587 214.202c0 221.227-168.405 403.158-384 424.534v44.8zM512 725.333c-39.223 0-78.059-7.727-114.295-22.733-36.236-15.010-69.161-37.009-96.894-64.747-27.734-27.733-49.734-60.655-64.743-96.892s-22.735-75.076-22.735-114.296c0-39.221 7.725-78.059 22.735-114.295s37.009-69.161 64.743-96.894c27.734-27.734 60.658-49.734 96.894-64.743s75.072-22.735 114.295-22.735c79.211 0 155.179 31.467 211.187 87.478 56.013 56.011 87.479 131.978 87.479 211.189s-31.467 155.179-87.479 211.188c-56.009 56.013-131.977 87.479-211.187 87.479zM512 640c56.58 0 110.839-22.477 150.848-62.485s62.485-94.268 62.485-150.848c0-56.579-22.477-110.842-62.485-150.849s-94.268-62.484-150.848-62.484c-56.58 0-110.842 22.476-150.85 62.484s-62.484 94.27-62.484 150.849c0 56.581 22.476 110.84 62.484 150.848s94.269 62.485 150.85 62.485z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["globe-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 797,
+ "id": 1552,
+ "name": "globe-line",
+ "prevSize": 32,
+ "code": 60394
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 746
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 853.333h-426.667v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-42.667v-341.333h-42.667v-170.667h42.667v-128c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h597.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v128h42.667v170.667h-42.667v341.333h-42.667v42.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM810.667 512v-298.667h-597.333v298.667h597.333zM810.667 597.333h-597.333v170.667h597.333v-170.667zM256 640h170.667v85.333h-170.667v-85.333zM597.333 640h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bus-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 798, "id": 1551, "name": "bus-line", "prevSize": 32, "code": 60395 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 747
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 213.333v597.333h597.333v-597.333h-597.333zM384 298.667h149.333c39.607 0 77.589 15.733 105.596 43.739s43.738 65.989 43.738 105.594c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738h-64v128h-85.333v-426.667zM469.333 384v128h64c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745h-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parking-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 799,
+ "id": 1550,
+ "name": "parking-box-line",
+ "prevSize": 32,
+ "code": 60396
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 748
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM298.667 490.667l384-149.333-149.333 384.085-64-170.752-170.667-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-discover-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 800,
+ "id": 1549,
+ "name": "compass-discover-line",
+ "prevSize": 32,
+ "code": 60397
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 749
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 554.667v-341.333h-426.667v341.333c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994h256c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339zM213.333 128h640c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v128c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994h-85.333v128c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-256c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM768 213.333v128h85.333v-128h-85.333zM85.333 810.667h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cup-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 801, "id": 1548, "name": "cup-line", "prevSize": 32, "code": 60398 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 750
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 768h768c3.964 0 7.846 1.105 11.217 3.187s6.093 5.060 7.863 8.606c1.771 3.541 2.522 7.509 2.167 11.456-0.358 3.947-1.805 7.714-4.181 10.884l-89.6 119.467c-3.972 5.299-9.126 9.6-15.053 12.561-5.922 2.965-12.459 4.506-19.081 4.506h-554.667c-6.624 0-13.157-1.54-19.081-4.506-5.925-2.961-11.078-7.262-15.052-12.561l-89.6-119.467c-2.377-3.17-3.825-6.938-4.18-10.884s0.394-7.915 2.166-11.456c1.772-3.546 4.495-6.524 7.865-8.606s7.254-3.187 11.216-3.187zM305.536 597.333h249.131v-311.381l-249.131 311.381zM640 103.467v536.533c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-424.96c-4.014-0.004-7.945-1.143-11.342-3.285-3.396-2.138-6.12-5.193-7.858-8.811s-2.42-7.654-1.967-11.644c0.453-3.989 2.022-7.77 4.527-10.906l446.293-557.867c2.765-3.444 6.524-5.945 10.769-7.16s8.764-1.083 12.928 0.378c4.169 1.46 7.778 4.178 10.334 7.777s3.934 7.903 3.942 12.317z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sailboat-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 802,
+ "id": 1547,
+ "name": "sailboat-line",
+ "prevSize": 32,
+ "code": 60399
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 751
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 891.733l211.2-211.2c41.766-41.771 70.208-94.989 81.732-152.922 11.52-57.937 5.602-117.986-17.003-172.559s-60.89-101.216-110.003-134.032c-49.114-32.817-106.859-50.333-165.926-50.333s-116.812 17.516-165.927 50.333c-49.115 32.816-87.396 79.46-110.002 134.032s-28.523 114.622-17.001 172.559c11.522 57.933 39.964 111.151 81.73 152.922l211.2 211.2zM512 1012.395l-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617l-271.531 271.531zM512 554.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.337-24.994-60.34s-37.709-24.993-60.339-24.993c-22.63 0-44.335 8.99-60.339 24.993s-24.994 37.71-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 640c-45.265 0-88.673-17.98-120.679-49.988-32.006-32.004-49.987-75.413-49.987-120.678 0-45.264 17.981-88.673 49.987-120.68s75.414-49.987 120.679-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68 0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 803,
+ "id": 1546,
+ "name": "map-pin-line",
+ "prevSize": 32,
+ "code": 60400
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 752
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.334 554.667c0-217.088 123.861-402.603 298.666-477.099 174.805 74.496 298.667 260.011 298.667 477.099 0 35.115-3.243 69.376-9.387 102.528l82.773 78.165c3.422 3.238 5.675 7.518 6.409 12.173s-0.094 9.421-2.355 13.555l-106.453 195.2c-1.587 2.914-3.831 5.419-6.558 7.313s-5.854 3.127-9.139 3.597c-3.285 0.474-6.635 0.171-9.783-0.879s-6.007-2.816-8.354-5.167l-95.317-95.317c-8-8.004-18.85-12.497-30.165-12.501h-220.672c-11.315 0.004-22.166 4.497-30.165 12.501l-95.317 95.317c-2.344 2.351-5.204 4.117-8.353 5.167s-6.498 1.353-9.783 0.879c-3.285-0.469-6.415-1.702-9.14-3.597s-4.971-4.399-6.559-7.313l-106.453-195.2c-2.26-4.134-3.088-8.9-2.355-13.555s2.987-8.934 6.409-12.173l82.773-78.165c-6.101-33.152-9.387-67.413-9.387-102.528zM276.31 840.363l34.859-34.859c23.999-24.009 56.551-37.495 90.496-37.504h220.672c33.946 0.009 66.496 13.495 90.496 37.504l34.859 34.859 41.899-76.8-46.933-44.373c-10.372-9.796-18.125-22.037-22.545-35.605-4.42-13.564-5.367-28.019-2.756-42.048 5.291-28.331 7.979-57.387 7.979-86.869 0-165.12-85.12-311.467-213.333-382.293-128.213 70.827-213.333 217.173-213.333 382.293 0 29.483 2.688 58.539 7.979 86.912 2.611 14.029 1.663 28.484-2.757 42.052-4.42 13.564-12.171 25.805-22.544 35.601l-46.933 44.331 41.899 76.8zM512 554.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.339 8.99 60.339 24.994 16.004 16.003 24.994 37.709 24.994 60.34s-8.99 44.335-24.994 60.339c-16 16.004-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rocket-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 804,
+ "id": 1545,
+ "name": "rocket-line",
+ "prevSize": 32,
+ "code": 60401
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 753
+ },
+ {
+ "icon": {
+ "paths": [
+ "M661.333 295.979c45.419 26.207 83.132 63.913 109.346 109.325 26.214 45.414 40.004 96.925 39.987 149.363v341.333h-177.92c-8.815 24.981-25.161 46.618-46.788 61.918-21.628 15.305-47.467 23.522-73.958 23.522s-52.331-8.218-73.958-23.522c-21.626-15.3-37.973-36.937-46.788-61.918h-177.92v-341.333c-0.019-52.437 13.773-103.949 39.988-149.363 26.215-45.412 63.929-83.119 109.346-109.325-7.011-12.592-12.387-26.026-16-39.979h-133.333v-85.333h133.376c9.491-36.618 30.872-69.048 60.789-92.199s66.673-35.713 104.502-35.713c37.828 0 74.586 12.561 104.503 35.713 29.914 23.151 51.298 55.581 60.787 92.199h133.376v85.333h-133.376c-3.627 14.080-9.045 27.52-15.915 39.979h-0.043zM599.339 359.979c-25.557 15.275-55.424 24.021-87.339 24.021-30.75 0.047-60.937-8.256-87.339-24.021-37.536 16.849-69.4 44.192-91.754 78.733-22.354 34.543-34.245 74.812-34.24 115.955v256h85.333v-170.667c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491c33.95 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v170.667h85.333v-256c0.004-41.143-11.887-81.412-34.24-115.955-22.353-34.541-54.217-61.883-91.755-78.733zM512 597.333c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v213.333c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-213.333c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497zM512 298.667c22.63 0 44.335-8.99 60.339-24.993s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.991-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.993 60.339 24.993z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["e-bike-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 805,
+ "id": 1544,
+ "name": "e-bike-line",
+ "prevSize": 32,
+ "code": 60402
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 754
+ },
+ {
+ "icon": {
+ "paths": [
+ "M637.227 307.371l-256-128-210.56 90.24v539.648l216.107-92.587 256 128 210.56-90.325v-539.605l-216.107 92.629zM85.333 213.333l298.667-128 256 128 268.928-115.243c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v692.949l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-692.949zM256 469.333h85.333v85.333h-85.333v-85.333zM426.667 469.333h85.333v85.333h-85.333v-85.333zM682.581 466.645l52.821-52.779 45.227 45.227-52.779 52.821 52.779 52.821-45.227 45.227-52.821-52.779-52.779 52.779-45.269-45.227 52.779-52.821-52.779-52.779 45.227-45.269 52.821 52.779z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["treasure-map-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 806,
+ "id": 1543,
+ "name": "treasure-map-line",
+ "prevSize": 32,
+ "code": 60403
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 755
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 810.667h42.667v85.333h-554.667v-85.333h42.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h85.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667h-85.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-153.003l-70.699-70.699 60.331-60.331 211.2 211.2c3.968 3.957 7.117 8.659 9.259 13.836 2.146 5.177 3.247 10.726 3.243 16.33v384c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509v-170.667h-85.333v213.333zM213.333 810.667h298.667v-597.333h-298.667v597.333zM384 469.333h128l-170.667 256v-170.667h-128l170.667-256v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["charging-pile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 807,
+ "id": 1542,
+ "name": "charging-pile-line",
+ "prevSize": 32,
+ "code": 60404
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 756
+ },
+ {
+ "icon": {
+ "paths": [
+ "M277.035 810.667h469.931l-28.459-128h-413.013l-28.459 128zM834.389 810.667h61.611v85.333h-768v-85.333h61.611l144.299-649.259c2.106-9.475 7.38-17.948 14.95-24.022s16.986-9.385 26.692-9.386h272.896c9.707 0.002 19.123 3.313 26.692 9.386s12.843 14.547 14.95 24.022l144.299 649.259zM324.437 597.333h375.125l-37.973-170.667h-299.179l-37.931 170.667h-0.043zM381.355 341.333h261.291l-28.416-128h-204.459l-28.416 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["barricade-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 808,
+ "id": 1541,
+ "name": "barricade-line",
+ "prevSize": 32,
+ "code": 60405
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 757
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 565.589v-53.589h-85.333v-85.333h271.573l120.96-85.333h148.949l-46.549-128h-110.933v-85.333h170.667l46.592 128h166.741v128h-120.149l62.123 170.752c47.138 1.498 92.075 20.292 126.242 52.8s55.177 76.45 59.017 123.456c3.844 47.002-9.745 93.777-38.178 131.401-28.429 37.628-69.717 63.471-115.985 72.61-46.263 9.135-94.276 0.926-134.878-23.070-40.602-23.991-70.95-62.089-85.261-107.025-14.315-44.937-11.588-93.568 7.659-136.623 19.243-43.055 53.662-77.521 96.691-96.823l-52.736-144.811h-40.405l-67.499 250.453-0.085-0.043 0.085 0.256-124.8 45.397c4.506 35.934-1.247 72.414-16.59 105.22s-39.652 60.604-70.12 80.183c-30.468 19.58-65.853 30.14-102.068 30.468-36.215 0.324-71.785-9.596-102.601-28.625-30.816-19.025-55.622-46.383-71.555-78.903-15.932-32.525-22.34-68.894-18.485-104.905s17.818-70.195 40.274-98.611c22.456-28.416 52.492-49.899 86.637-61.969zM256 555.819c28.307 3.17 55.555 12.595 79.767 27.601 24.212 15.002 44.784 35.204 60.222 59.14l83.499-30.421 49.707-185.472h-23.339l-121.856 85.333h-128v43.819zM234.667 853.333c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.002-47.135-31.241-75.425-31.241s-55.421 11.238-75.424 31.241c-20.004 20.006-31.242 47.138-31.242 75.426s11.238 55.42 31.242 75.426c20.004 20.002 47.135 31.241 75.424 31.241zM789.333 853.333c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241s-55.42 11.238-75.426 31.241c-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["motorbike-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 809,
+ "id": 1540,
+ "name": "motorbike-line",
+ "prevSize": 32,
+ "code": 60406
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 758
+ },
+ {
+ "icon": {
+ "paths": [
+ "M419.414 375.040l-78.080 28.416v151.211h-85.333v-211.2h0.64l224.768-81.835c10.411-3.968 21.76-5.973 33.365-5.589 23.189 0.578 45.623 8.367 64.183 22.284 18.556 13.917 32.316 33.27 39.369 55.369 7.936 24.875 15.189 41.685 21.76 50.432 19.857 26.48 45.615 47.966 75.226 62.758 29.606 14.788 62.259 22.477 95.356 22.447v85.333c-44.062 0.047-87.586-9.673-127.441-28.463s-75.046-46.187-103.044-80.209l-29.739 168.789 89.557 75.136v291.413h-85.333v-251.648l-96.853-81.237-31.019 176.085-294.144-51.84 14.848-84.053 210.091 37.035 61.824-350.635zM576 234.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["run-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 810, "id": 1539, "name": "run-line", "prevSize": 32, "code": 60407 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 759
+ },
+ {
+ "icon": {
+ "paths": [
+ "M87.467 469.333h211.2v85.333h-125.355c9.497 75.196 43.739 145.097 97.333 198.69s123.493 87.834 198.688 97.331v-429.397c-40.128-10.484-75.067-35.215-98.295-69.575s-33.156-75.999-27.931-117.143c5.225-41.144 25.247-78.98 56.327-106.443 31.078-27.463 71.090-42.675 112.567-42.796 41.57-0.041 81.724 15.091 112.926 42.555 31.206 27.464 51.311 65.372 56.55 106.61 5.235 41.237-4.757 82.968-28.105 117.361s-58.445 59.081-98.705 69.432v429.397c75.196-9.498 145.097-43.738 198.69-97.331s87.834-123.494 97.331-198.69h-125.355v-85.333h211.2c1.408 14.037 2.133 28.288 2.133 42.667 0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c0-14.379 0.725-28.629 2.133-42.667zM512 341.333c22.63 0 44.335-8.99 60.339-24.993s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.991-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.993 60.339 24.993z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["anchor-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 811,
+ "id": 1538,
+ "name": "anchor-line",
+ "prevSize": 32,
+ "code": 60408
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 760
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128v85.333h-298.667v298.667h682.667v341.333h-42.667v42.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-426.667v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-42.667v-341.333h-42.667v-170.667h42.667v-128c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h298.667zM810.667 597.333h-597.333v170.667h597.333v-170.667zM426.667 640v85.333h-170.667v-85.333h170.667zM768 640v85.333h-170.667v-85.333h170.667zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bus-wifi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 812,
+ "id": 1537,
+ "name": "bus-wifi-line",
+ "prevSize": 32,
+ "code": 60409
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 761
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 853.333h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-320l-53.035-13.227c-9.227-2.313-17.416-7.637-23.268-15.138-5.852-7.497-9.030-16.738-9.031-26.249v-30.72c0-5.658 2.248-11.085 6.248-15.087 4.001-3.998 9.427-6.246 15.085-6.246h64l105.813-246.955c6.584-15.36 17.534-28.448 31.49-37.641s30.305-14.086 47.017-14.071h484.693c16.695 0.002 33.028 4.902 46.967 14.094s24.875 22.271 31.454 37.618l105.899 246.955h64c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087v30.72c0 9.51-3.179 18.752-9.033 26.249-5.85 7.501-14.042 12.826-23.266 15.138l-53.035 13.227v320c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM853.333 768v-213.333h-682.667v213.333h682.667zM233.685 469.333h556.629c6.967-0.004 13.828-1.715 19.985-4.983s11.413-7.996 15.322-13.769c3.904-5.769 6.34-12.407 7.087-19.337s-0.213-13.936-2.799-20.407l-61.909-154.837h-512l-61.909 154.837c-2.586 6.471-3.546 13.478-2.799 20.407s3.181 13.568 7.087 19.337c3.906 5.773 9.167 10.5 15.321 13.769s13.016 4.979 19.985 4.983zM213.333 597.333c98.859 0 165.504 32.213 199.936 96.597 1.74 3.251 2.609 6.899 2.52 10.586s-1.132 7.287-3.028 10.449c-1.895 3.162-4.578 5.781-7.787 7.599s-6.833 2.769-10.521 2.769h-138.453c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-85.333zM810.667 597.333v85.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-138.453c-3.682-0.004-7.305-0.964-10.505-2.786-3.204-1.822-5.884-4.437-7.774-7.599s-2.927-6.763-3.017-10.445c-0.085-3.682 0.781-7.326 2.522-10.573 34.347-64.427 100.992-96.597 199.893-96.597z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["roadster-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 813,
+ "id": 1536,
+ "name": "roadster-line",
+ "prevSize": 32,
+ "code": 60410
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 762
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 853.333h-426.667v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384h-42.667v-170.667h42.667v-128c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h597.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v128h42.667v170.667h-42.667v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM213.333 213.333v256h597.333v-256h-597.333zM810.667 554.667h-597.333v213.333h597.333v-213.333zM320 725.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM704 725.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bus-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 814,
+ "id": 1535,
+ "name": "bus-2-line",
+ "prevSize": 32,
+ "code": 60411
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 763
+ },
+ {
+ "icon": {
+ "paths": [
+ "M723.2 680.533c41.766-41.771 70.208-94.989 81.732-152.922 11.52-57.937 5.602-117.986-17.003-172.559s-60.89-101.216-110.003-134.032c-49.114-32.817-106.859-50.333-165.926-50.333s-116.812 17.516-165.927 50.333c-49.115 32.816-87.396 79.46-110.002 134.032s-28.523 114.622-17.001 172.559c11.522 57.933 39.964 111.151 81.73 152.922l211.2 211.2 211.2-211.2zM512 1012.395l-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617l-271.531 271.531zM554.667 469.333h170.667v85.333h-256v-298.667h85.333v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-time-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 815,
+ "id": 1534,
+ "name": "map-pin-time-line",
+ "prevSize": 32,
+ "code": 60412
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 764
+ },
+ {
+ "icon": {
+ "paths": [
+ "M260.949 857.045c-54.441-39.556-98.738-91.447-129.263-151.424-30.525-59.972-46.409-126.327-46.353-193.621 0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667c0.055 67.294-15.829 133.649-46.353 193.621-30.524 59.977-74.82 111.868-129.263 151.424l-43.307-74.197c56.593-43.409 98.167-103.458 118.878-171.708 20.715-68.25 19.529-141.274-3.392-208.816-22.921-67.541-66.423-126.205-124.399-167.753s-127.505-63.89-198.831-63.89c-71.326 0-140.857 22.343-198.831 63.89s-101.477 100.212-124.397 167.753c-22.921 67.543-24.108 140.567-3.395 208.816s62.286 128.299 118.879 171.708l-43.307 74.197zM347.733 708.352c-40.319-33.732-69.276-79.057-82.937-129.818-13.661-50.765-11.365-104.499 6.579-153.911 17.943-49.411 50.663-92.1 93.713-122.268s94.342-46.351 146.912-46.351c52.57 0 103.863 16.183 146.914 46.351s75.767 72.857 93.713 122.268c17.941 49.412 20.237 103.147 6.579 153.911-13.662 50.761-42.62 96.085-82.94 129.818l-43.947-75.349c23.97-23.829 40.324-54.234 46.993-87.369s3.345-67.503-9.54-98.748c-12.89-31.243-34.761-57.958-62.848-76.755-28.092-18.798-61.129-28.833-94.925-28.833s-66.833 10.035-94.923 28.833c-28.088 18.798-49.962 45.513-62.85 76.755-12.887 31.245-16.208 65.613-9.54 98.748s23.023 63.539 46.993 87.369l-43.947 75.349zM469.333 554.667h85.333v384h-85.333v-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-tower-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 816,
+ "id": 1533,
+ "name": "signal-tower-line",
+ "prevSize": 32,
+ "code": 60413
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 765
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 42.667c23.552 0 42.667 19.115 42.667 42.667v213.333h42.667v-42.667h85.333v42.667h42.667c23.552 0 42.667 19.115 42.667 42.667v512c0 23.552-19.115 42.667-42.667 42.667h-42.667v42.667h-85.333v-42.667h-426.667v42.667h-85.333v-42.667h-42.667c-23.552 0-42.667-19.115-42.667-42.667v-512c0-23.552 19.115-42.667 42.667-42.667h42.667v-42.667h85.333v42.667h42.667v-213.333c0-23.552 19.115-42.667 42.667-42.667h256zM810.667 384h-597.333v426.667h597.333v-426.667zM384 426.667v341.333h-85.333v-341.333h85.333zM554.667 426.667v341.333h-85.333v-341.333h85.333zM725.333 426.667v341.333h-85.333v-341.333h85.333zM597.333 128h-170.667v170.667h170.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["suitcase-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 817,
+ "id": 1532,
+ "name": "suitcase-3-line",
+ "prevSize": 32,
+ "code": 60414
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 766
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 981.333h-85.333v-42.667h-341.333v42.667h-85.333v-42.667h-42.667c-47.147 0-85.333-38.187-85.333-85.333v-554.667c0-47.147 38.187-85.333 85.333-85.333h128v-85.333c0-23.552 19.115-42.667 42.667-42.667h256c23.552 0 42.667 19.115 42.667 42.667v85.333h128c47.147 0 85.333 38.187 85.333 85.333v554.667c0 47.147-38.187 85.333-85.333 85.333h-42.667v42.667zM810.667 298.667h-597.333v554.667h597.333v-554.667zM426.667 384v384h-85.333v-384h85.333zM682.667 384v384h-85.333v-384h85.333zM597.333 170.667h-170.667v42.667h170.667v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["suitcase-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 818,
+ "id": 1531,
+ "name": "suitcase-2-line",
+ "prevSize": 32,
+ "code": 60415
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 767
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 640v-277.333c0-50.921 20.229-99.758 56.236-135.764s84.843-56.236 135.764-56.236c50.921 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764v298.667c0 28.288 11.238 55.42 31.241 75.426 20.006 20.002 47.138 31.241 75.426 31.241s55.42-11.238 75.426-31.241c20.002-20.006 31.241-47.138 31.241-75.426v-284.587c-28.48-10.065-52.484-29.875-67.772-55.928-15.283-26.052-20.868-56.67-15.761-86.442s20.574-56.779 43.665-76.249c23.095-19.47 52.326-30.149 82.534-30.149s59.439 10.679 82.534 30.149c23.091 19.47 38.558 46.478 43.665 76.249s-0.478 60.39-15.761 86.442c-15.287 26.053-39.292 45.862-67.772 55.928v284.587c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235c-50.923 0-99.759-20.228-135.765-56.235s-56.235-84.843-56.235-135.765v-298.667c0-28.29-11.238-55.421-31.241-75.425-20.005-20.004-47.136-31.242-75.426-31.242s-55.421 11.238-75.425 31.242c-20.004 20.004-31.242 47.135-31.242 75.425v277.333h128l-170.667 213.333-170.667-213.333h128zM810.667 298.667c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["route-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 819,
+ "id": 1530,
+ "name": "route-line",
+ "prevSize": 32,
+ "code": 60416
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 768
+ },
+ {
+ "icon": {
+ "paths": [
+ "M661.419 853.333c-28.228 67.511-81.907 121.19-149.419 149.419-67.511-28.228-121.192-81.907-149.419-149.419h96.427c13.909 20.864 31.872 38.912 52.992 53.035 21.12-14.080 39.083-32.171 53.035-53.035h96.384zM768 631.68l85.333 96.768v82.219h-682.667v-82.219l85.333-96.768v-247.68c0-148.608 106.837-275.072 256-321.92 149.163 46.848 256 173.312 256 321.92v247.68zM736.853 725.333l-54.187-61.44v-279.893c0-98.901-66.987-189.013-170.667-231.253-103.68 42.24-170.667 132.309-170.667 231.253v279.893l-54.187 61.44h449.707zM512 469.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rocket-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 820,
+ "id": 1529,
+ "name": "rocket-2-line",
+ "prevSize": 32,
+ "code": 60417
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 769
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 42.667c23.565 0 42.667 19.103 42.667 42.667v42.667h213.333v256h-86.131l117.154 321.873c7.518 19.238 11.644 40.179 11.644 62.084 0 94.259-76.412 170.667-170.667 170.667-79.509 0-146.317-54.37-165.278-127.957h-181.431c-18.948 73.609-85.767 128-165.291 128-82.965 0-152.103-59.2-167.478-137.66-27.255-14.251-45.856-42.79-45.856-75.674v-426.667c0-23.564 19.103-42.667 42.667-42.667h298.667c23.565 0 42.667 19.103 42.667 42.667v213.333c0 23.565 19.102 42.667 42.667 42.667h85.333c23.565 0 42.667-19.102 42.667-42.667v-384h-128v-85.333h170.667zM298.667 682.667c-47.128 0-85.333 38.204-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.204 85.333-85.333s-38.205-85.333-85.333-85.333zM810.667 682.624c-47.13 0-85.333 38.204-85.333 85.333s38.204 85.333 85.333 85.333c47.13 0 85.333-38.204 85.333-85.333 0-10.253-1.809-20.087-5.124-29.193l-0.7-1.852c-12.416-31.778-43.332-54.289-79.509-54.289zM761.728 384h-36.395v128c0 70.694-57.306 128-128 128h-85.333c-70.694 0-128-57.306-128-128h-213.333v143.113c31.272-35.43 77.027-57.779 128-57.779 79.524 0 146.342 54.391 165.291 128h181.41c18.931-73.63 85.76-128.043 165.299-128.043 10.103 0 20.002 0.879 29.623 2.564l-78.562-215.855zM384 341.333h-213.333v85.333h213.333v-85.333zM853.333 213.333h-128v85.333h128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["e-bike-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 821,
+ "id": 1528,
+ "name": "e-bike-2-line",
+ "prevSize": 32,
+ "code": 60418
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 770
+ },
+ {
+ "icon": {
+ "paths": [
+ "M122.88 770.304c58.717-259.81 184.175-499.813 363.989-696.32 3.196-3.478 7.083-6.255 11.409-8.155 4.322-1.899 8.998-2.88 13.722-2.88s9.399 0.981 13.722 2.88c4.326 1.9 8.213 4.677 11.409 8.155 7.083 7.68 12.971 14.165 17.621 19.413 170.522 192.933 289.647 425.745 346.368 676.907-91.349 19.243-185.173 31.872-280.917 37.291l-89.131 178.261c-1.775 3.537-4.497 6.515-7.863 8.593-3.371 2.082-7.249 3.183-11.209 3.183s-7.838-1.101-11.209-3.183c-3.366-2.078-6.089-5.056-7.863-8.593l-89.131-178.261c-94.444-5.338-188.351-17.805-280.917-37.291zM408.661 722.389l49.365 2.816 53.973 107.947 53.973-107.947 49.365-2.816c60.403-3.418 120.597-9.882 180.352-19.371-56.61-194.052-153.25-374.091-283.691-528.512-130.442 154.421-227.082 334.46-283.691 528.512 59.52 9.472 119.68 15.957 180.352 19.371zM512 640c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.559-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.95 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.95-13.487 66.505-37.491 90.509s-56.559 37.491-90.509 37.491zM512 554.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["space-ship-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 822,
+ "id": 1527,
+ "name": "space-ship-line",
+ "prevSize": 32,
+ "code": 60419
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 771
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 170.667v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c0 106.667-106.667 149.333-128 149.333v106.667h128c0 106.667-106.667 149.333-128 149.333v106.667h128c0 106.667-106.667 149.333-128 149.333v64c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-64c-21.333 0-128-42.667-128-149.333h128v-106.667c-21.333 0-128-42.667-128-149.333h128v-106.667c-21.333 0-128-42.667-128-149.333h128zM512 853.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 341.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["traffic-light-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 823,
+ "id": 1526,
+ "name": "traffic-light-line",
+ "prevSize": 32,
+ "code": 60420
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 772
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 768h234.667v53.333c0 31.117-12.362 60.962-34.366 82.965-22.004 22.007-51.848 34.368-82.967 34.368s-60.963-12.361-82.967-34.368c-22.004-22.003-34.366-51.849-34.366-82.965v-53.333zM343.808 597.333l1.92-5.632c32.725-89.856 38.272-106.581 38.272-122.368 0-32-8.661-70.101-22.528-96.981-10.325-20.053-17.579-25.899-20.139-25.899-54.613 0-106.667 58.197-106.667 122.88 0 40.917 3.2 75.648 9.685 117.675l1.621 10.325h97.835zM341.333 261.12c85.333 0 128 122.88 128 208.213 0 42.667-21.333 85.333-42.667 149.333l-21.333 64h-234.667c0-42.667-21.333-106.667-21.333-213.333s85.248-208.213 192-208.213zM855.637 601.515l-9.259 52.523c-5.402 30.647-22.763 57.899-48.252 75.746-25.493 17.852-57.037 24.845-87.684 19.443s-57.894-22.763-75.746-48.252c-17.852-25.493-24.845-57.037-19.443-87.684l9.301-52.48 231.083 40.704zM810.837 420.352c7.040-21.333 12.843-38.187 12.928-38.4 8.619-28.075 15.403-55.595 20.693-85.675 11.221-63.659-29.952-130.005-83.712-139.52-2.517-0.427-10.667 4.053-24.32 21.973-18.347 24.107-33.451 60.16-39.040 91.605-2.475 14.080-2.091 17.28 11.52 96.555 1.92 10.923 3.499 20.736 4.949 30.592l0.853 5.888 96.128 16.981zM775.595 72.747c105.131 18.517 171.435 133.291 152.917 238.336-18.517 105.088-50.645 164.395-58.027 206.421l-231.125-40.747-9.899-66.731c-9.899-66.731-23.467-112.469-16.085-154.453 14.805-84.053 78.165-197.632 162.219-182.827z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["footprint-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 824,
+ "id": 1525,
+ "name": "footprint-line",
+ "prevSize": 32,
+ "code": 60421
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 773
+ },
+ {
+ "icon": {
+ "paths": [
+ "M234.667 512h-64v-213.333h-85.333v-85.333h256v85.333h-85.333v119.253l418.688-112.171-24.747-92.416h-137.941v-85.333h169.728c9.553-0.211 18.897 2.79 26.543 8.523 7.642 5.732 13.141 13.864 15.612 23.093l66.261 247.296-82.432 22.059-10.923-40.789-462.123 123.819zM213.333 810.667c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994zM213.333 896c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678s17.981-88.674 49.987-120.678c32.006-32.009 75.416-49.988 120.68-49.988s88.673 17.98 120.68 49.988c32.006 32.004 49.987 75.413 49.987 120.678s-17.981 88.674-49.987 120.678c-32.006 32.009-75.416 49.988-120.68 49.988zM768 810.667c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.95-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491c-33.946 0-66.505 13.487-90.509 37.491s-37.491 56.559-37.491 90.509c0 33.946 13.487 66.505 37.491 90.509s56.563 37.491 90.509 37.491zM768 896c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bike-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 825,
+ "id": 1524,
+ "name": "bike-line",
+ "prevSize": 32,
+ "code": 60422
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 774
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.867 853.333l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h426.667c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v469.333c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8zM554.667 213.333v256h256v-170.667c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-170.667zM469.333 213.333h-170.667c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34v170.667h256v-256zM810.667 554.667h-597.333v213.333h597.333v-213.333zM320 725.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM704 725.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subway-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 826,
+ "id": 1523,
+ "name": "subway-line",
+ "prevSize": 32,
+ "code": 60423
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 775
+ },
+ {
+ "icon": {
+ "paths": [
+ "M234.667 853.333c35.328 0 64 28.672 64 64s-28.672 64-64 64c-35.328 0-64-28.672-64-64s28.672-64 64-64zM789.333 853.333c35.328 0 64 28.672 64 64s-28.672 64-64 64c-35.328 0-64-28.672-64-64s28.672-64 64-64zM92.672 74.965l163.285 163.328v487.040h597.376v85.333h-640c-23.552 0-42.667-19.115-42.667-42.667v-494.379l-138.411-138.283 60.416-60.373zM682.667 128c23.552 0 42.667 19.115 42.667 42.667v85.333h127.701c23.765 0 42.965 19.456 42.965 42.453v341.76c0 23.467-19.2 42.453-42.965 42.453h-511.402c-23.765 0-42.965-19.456-42.965-42.453v-341.76c0-23.467 19.2-42.453 42.965-42.453h127.658l0.043-85.333c0-23.552 19.115-42.667 42.667-42.667h170.667zM426.667 341.333h-42.666v256h42.666v-256zM682.667 341.333h-170.667v256h170.667v-256zM810.667 341.333h-42.667v256h42.667v-256zM640 213.333h-85.333v42.667h85.333v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["luggage-cart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 827,
+ "id": 1522,
+ "name": "luggage-cart-line",
+ "prevSize": 32,
+ "code": 60424
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 776
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 262.101v547.157l216.107-92.587 256 128 210.56-90.325v-547.115l55.595-23.808c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v607.616l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-607.616l85.333-36.565zM693.035 479.701l-181.035 180.992-181.035-180.992c-35.798-35.806-60.175-81.419-70.050-131.077s-4.802-101.129 14.575-147.904c19.377-46.775 52.189-86.755 94.287-114.882s91.593-43.141 142.222-43.141c50.628 0 100.122 15.013 142.221 43.141s74.91 68.107 94.289 114.882c19.375 46.775 24.448 98.246 14.575 147.904s-34.253 95.271-70.050 131.077zM512 540.032l120.661-120.704c23.872-23.866 40.132-54.276 46.724-87.383 6.588-33.108 3.209-67.425-9.707-98.614s-34.79-57.846-62.857-76.601c-28.066-18.755-61.065-28.766-94.822-28.766s-66.756 10.010-94.823 28.766c-28.067 18.755-49.942 45.413-62.857 76.601s-16.293 65.506-9.703 98.614c6.589 33.108 22.849 63.517 46.722 87.383l120.661 120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["road-map-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 828,
+ "id": 1521,
+ "name": "road-map-line",
+ "prevSize": 32,
+ "code": 60425
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 777
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM428.8 469.333h211.2v85.333h-211.2c3.695 18.146 12.053 35.021 24.252 48.956 12.194 13.939 27.81 24.461 45.308 30.528 17.493 6.071 36.271 7.484 54.477 4.096 18.21-3.392 35.221-11.46 49.361-23.42l72.533 48.341c-24.926 27.132-57.131 46.519-92.77 55.851-35.644 9.331-73.216 8.213-108.237-3.226-35.025-11.439-66.015-32.713-89.278-61.282s-37.814-63.232-41.918-99.844h-43.861v-85.333h43.819c4.090-36.634 18.638-71.313 41.905-99.9s54.274-49.872 89.312-61.313c35.038-11.441 72.631-12.555 108.288-3.208 35.652 9.347 67.861 28.76 92.783 55.919l-72.576 48.341c-14.14-11.959-31.151-20.029-49.361-23.418-18.206-3.389-36.983-1.978-54.477 4.093-17.498 6.070-33.114 16.592-45.308 30.529-12.198 13.936-20.557 30.81-24.252 48.957z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-euro-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 829,
+ "id": 1520,
+ "name": "money-euro-circle-line",
+ "prevSize": 32,
+ "code": 60426
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 778
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 85.333c78.076-0.037 153.809 26.695 214.562 75.739s102.857 117.434 119.287 193.764c16.431 76.332 6.199 155.986-28.996 225.682-35.191 69.7-93.218 125.222-164.395 157.316-22.754 50.3-57.365 94.332-100.873 128.316-43.503 33.988-94.605 56.913-148.915 66.812-54.31 9.903-110.214 6.481-162.913-9.967s-100.622-45.436-139.659-84.471c-39.037-39.036-68.023-86.959-84.471-139.661-16.449-52.698-19.87-108.599-9.969-162.91 9.9-54.315 32.826-105.412 66.813-148.918s78.016-78.118 128.317-100.87c27.057-59.866 70.809-110.656 126.010-146.278 55.202-35.622 119.505-54.564 185.203-54.554zM426.665 341.333c-33.618 0-66.907 6.622-97.967 19.487s-59.281 31.722-83.052 55.494c-23.772 23.771-42.628 51.991-55.494 83.052s-19.487 64.35-19.487 97.967c0 33.617 6.622 66.906 19.487 97.967s31.722 59.281 55.494 83.051c23.772 23.774 51.993 42.628 83.052 55.497 31.060 12.864 64.349 19.486 97.967 19.486 67.897 0 133.011-26.97 181.019-74.982 48.009-48.009 74.982-113.122 74.982-181.018s-26.974-133.009-74.982-181.019c-48.009-48.009-113.122-74.981-181.019-74.981zM469.333 384v42.667h85.333v85.333h-170.668c-5.331-0.009-10.473 1.975-14.412 5.568s-6.391 8.529-6.873 13.837c-0.482 5.312 1.042 10.607 4.271 14.848 3.229 4.245 7.929 7.121 13.175 8.073l3.84 0.341h85.335c28.288 0 55.42 11.238 75.422 31.241 20.006 20.006 31.245 47.138 31.245 75.426s-11.238 55.42-31.245 75.426c-20.002 20.002-47.134 31.241-75.422 31.241v42.667h-85.335v-42.667h-85.333v-85.333h170.668c5.329 0.009 10.47-1.975 14.409-5.568 3.942-3.593 6.391-8.529 6.874-13.837 0.482-5.312-1.041-10.607-4.271-14.848-3.226-4.245-7.927-7.121-13.171-8.073l-3.84-0.341h-85.335c-28.29 0-55.421-11.238-75.424-31.241-20.004-20.006-31.242-47.138-31.242-75.426s11.238-55.42 31.242-75.426c20.004-20.002 47.135-31.241 75.424-31.241v-42.667h85.335zM597.333 170.667c-36.156-0.042-71.902 7.592-104.883 22.398s-62.443 36.447-86.436 63.49c48.224-2.927 96.522 4.416 141.698 21.545s86.199 43.652 120.358 77.817c34.163 34.165 60.681 75.192 77.803 120.368 17.122 45.18 24.461 93.474 21.53 141.7 38.793-34.492 66.185-79.962 78.541-130.377s9.097-103.398-9.353-151.918c-18.449-48.52-51.209-90.286-93.939-119.759s-93.41-45.258-145.318-45.264z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coins-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 830,
+ "id": 1519,
+ "name": "coins-line",
+ "prevSize": 32,
+ "code": 60427
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 779
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170.667c259.2 0 469.333 114.603 469.333 256v170.667c0 141.397-210.133 256-469.333 256-254.592 0-461.824-110.549-469.12-248.448l-0.213-7.552v-170.667c0-141.397 210.133-256 469.333-256zM512 682.667c-158.72 0-299.093-42.965-384-108.8v23.467c0 80.299 165.675 170.667 384 170.667 213.76 0 377.088-86.613 383.787-165.632l0.213-5.035 0.043-23.467c-84.907 65.792-225.28 108.8-384.043 108.8zM512 256c-218.325 0-384 90.368-384 170.667s165.675 170.667 384 170.667c218.325 0 384-90.368 384-170.667s-165.675-170.667-384-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 831,
+ "id": 1518,
+ "name": "coin-line",
+ "prevSize": 32,
+ "code": 60428
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 780
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM298.667 384l128-149.333 128 149.333h-85.333v170.667h-85.333v-170.667h-85.333zM725.333 640l-128 149.333-128-149.333h85.333v-170.667h85.333v170.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["swap-line-1"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 832,
+ "id": 1517,
+ "name": "swap-line-1",
+ "prevSize": 32,
+ "code": 60429
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 781
+ },
+ {
+ "icon": {
+ "paths": [
+ "M229.248 192.427c77.939-69.147 178.561-107.258 282.752-107.093 235.648 0 426.667 191.019 426.667 426.667 0.141 87.206-26.573 172.343-76.501 243.84l-115.499-243.84h106.667c0-67.866-20.228-134.195-58.108-190.509-37.875-56.314-91.682-100.058-154.543-125.645-62.857-25.586-131.917-31.853-198.357-17.999-66.438 13.853-127.239 47.198-174.635 95.774l-38.4-81.152-0.043-0.043zM794.752 831.573c-77.939 69.146-178.56 107.255-282.752 107.093-235.648 0-426.667-191.019-426.667-426.667 0-90.667 28.288-174.72 76.501-243.84l115.499 243.84h-106.667c-0.001 67.866 20.229 134.195 58.107 190.507 37.878 56.316 91.683 100.062 154.543 125.645 62.858 25.587 131.918 31.855 198.359 18.001 66.436-13.854 127.241-47.198 174.635-95.774l38.4 81.152 0.043 0.043zM572.331 632.661l-120.661-120.661-120.704 120.661-60.331-60.331 181.035-180.992 120.661 120.661 120.704-120.661 60.331 60.331-181.035 180.992z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-funds-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 833,
+ "id": 1516,
+ "name": "exchange-funds-fill",
+ "prevSize": 32,
+ "code": 60430
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 782
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 298.667l360.32-240.213c7.010-4.678 15.253-7.174 23.68-7.174s16.67 2.496 23.68 7.174l360.32 240.213v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333zM213.333 344.32v509.013h597.333v-509.013l-298.667-199.083-298.667 199.083zM512 469.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["price-tag-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 834,
+ "id": 1515,
+ "name": "price-tag-line",
+ "prevSize": 32,
+ "code": 60431
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 783
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM554.667 554.667h128v85.333h-128v85.333h-85.333v-85.333h-128v-85.333h128v-42.667h-128v-85.333h110.336l-90.539-90.496 60.416-60.373 90.453 90.539 90.496-90.539 60.373 60.373-90.539 90.496h110.336v85.333h-128v42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-cny-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 835,
+ "id": 1514,
+ "name": "money-cny-circle-line",
+ "prevSize": 32,
+ "code": 60432
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 784
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.665 273.664l-138.368-138.325 60.373-60.373 138.325 138.368h650.327c6.647-0 13.205 1.553 19.149 4.538s11.106 7.317 15.078 12.652c3.972 5.335 6.639 11.523 7.795 18.073 1.152 6.549 0.759 13.278-1.148 19.648l-102.4 341.333c-2.637 8.794-8.034 16.503-15.398 21.982-7.364 5.483-16.299 8.439-25.476 8.439h-522.924v85.333h469.335v85.333h-512.002c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-494.336zM255.998 298.667v256h491.18l76.8-256h-567.98zM234.665 981.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.252 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM746.667 981.333c-16.977 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.279-18.743 45.257-18.743c16.973 0 33.25 6.741 45.252 18.743s18.748 28.284 18.748 45.257c0 16.973-6.746 33.254-18.748 45.257s-28.279 18.743-45.252 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-cart-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 836,
+ "id": 1513,
+ "name": "shopping-cart-2-line",
+ "prevSize": 32,
+ "code": 60433
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 785
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 597.333v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM810.667 659.84c-25.954-14.976-47.509-36.527-62.49-62.477-14.98-25.954-22.861-55.398-22.844-85.363 0-63.147 34.304-118.315 85.333-147.84v-193.493h-597.333v193.493c51.029 29.525 85.333 84.693 85.333 147.84s-34.304 118.315-85.333 147.84v193.493h597.333v-193.493zM384 256h256v85.333h-256v-85.333zM384 682.667h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-5-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 837,
+ "id": 1512,
+ "name": "coupon-5-line",
+ "prevSize": 32,
+ "code": 60434
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 786
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 896h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34h298.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339zM364.16 810.667c14.976-25.954 36.525-47.509 62.479-62.49 25.952-14.98 55.397-22.861 85.361-22.844 63.147 0 118.315 34.304 147.84 85.333h193.493v-597.333h-193.493c-14.976 25.956-36.527 47.509-62.477 62.489-25.954 14.981-55.398 22.86-85.363 22.844-29.965 0.015-59.409-7.863-85.361-22.844-25.954-14.98-47.503-36.533-62.479-62.489h-193.493v597.333h193.493zM256 341.333h85.333v341.333h-85.333v-341.333zM682.667 341.333h85.333v341.333h-85.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 838,
+ "id": 1511,
+ "name": "coupon-4-line",
+ "prevSize": 32,
+ "code": 60435
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 787
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 853.333h-512v85.333h-85.333v-85.333h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667v85.333h-85.333v-85.333zM170.667 768h682.667v-554.667h-682.667v554.667zM554.667 591.957v133.376h-85.333v-133.376c-40.128-10.483-75.067-35.217-98.295-69.577s-33.156-75.998-27.931-117.142c5.225-41.144 25.247-78.98 56.327-106.443 31.078-27.463 71.090-42.675 112.567-42.796 41.57-0.041 81.724 15.090 112.926 42.554 31.206 27.464 51.311 65.373 56.55 106.61 5.235 41.235-4.757 82.967-28.105 117.361s-58.445 59.081-98.705 69.431zM512 512c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["safe-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 839,
+ "id": 1510,
+ "name": "safe-line",
+ "prevSize": 32,
+ "code": 60436
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 788
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 85.333c29.965-0.004 59.401 7.882 85.35 22.863s47.501 36.532 62.477 62.482c14.98 25.951 22.865 55.389 22.861 85.353-0.009 29.964-7.902 59.398-22.891 85.344l193.536-0.043v85.333h-85.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h-85.333v-85.333l193.536 0.043c-21.169-36.655-27.96-79.869-19.056-121.251s32.869-77.978 67.241-102.682c34.372-24.704 76.698-35.755 118.759-31.005 42.063 4.75 80.855 24.961 108.853 56.709 15.983-18.202 35.674-32.778 57.749-42.749s46.029-15.107 70.251-15.065zM469.333 426.667h-256v384h256v-384zM810.667 426.667h-256v384h256v-384zM384 170.667c-22.143-0.099-43.458 8.413-59.441 23.739s-25.383 36.264-26.214 58.392c-0.831 22.128 6.973 43.712 21.761 60.193s35.405 26.568 57.494 28.129l6.4 0.213h85.333v-85.333c0-20.392-7.3-40.111-20.582-55.584s-31.666-25.679-51.823-28.768l-6.571-0.768-6.357-0.213zM640 170.667c-21.53-0.007-42.266 8.124-58.048 22.763-15.787 14.639-25.459 34.703-27.072 56.171l-0.213 6.4v85.333h85.333c21.53 0.007 42.266-8.124 58.048-22.763 15.787-14.639 25.459-34.703 27.072-56.171l0.213-6.4c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.993-60.339-24.993z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gift-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 840,
+ "id": 1509,
+ "name": "gift-line",
+ "prevSize": 32,
+ "code": 60437
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 789
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM170.667 213.333v597.333h682.667v-597.333h-682.667zM362.667 597.333h234.667c5.658 0 11.085-2.249 15.087-6.246 3.998-4.002 6.246-9.429 6.246-15.087s-2.249-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246h-170.667c-28.29 0-55.421-11.238-75.425-31.241-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.425-31.242h42.667v-85.333h85.333v85.333h106.667v85.333h-234.667c-5.658 0-11.084 2.249-15.085 6.246-4.001 4.002-6.249 9.429-6.249 15.087s2.248 11.085 6.249 15.087c4 3.998 9.427 6.246 15.085 6.246h170.667c28.288 0 55.42 11.238 75.426 31.241 20.002 20.006 31.241 47.138 31.241 75.426s-11.238 55.42-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241h-42.667v85.333h-85.333v-85.333h-106.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-dollar-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 841,
+ "id": 1508,
+ "name": "money-dollar-box-line",
+ "prevSize": 32,
+ "code": 60438
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 790
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM853.333 512h-682.667v298.667h682.667v-298.667zM853.333 341.333v-128h-682.667v128h682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bank-card-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 842,
+ "id": 1507,
+ "name": "bank-card-2-line",
+ "prevSize": 32,
+ "code": 60439
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 791
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 341.333v-85.333c0-56.579 22.476-110.842 62.484-150.849s94.269-62.484 150.849-62.484c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849v85.333h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM298.667 426.667h-85.333v426.667h597.333v-426.667h-85.333v85.333h-85.333v-85.333h-256v85.333h-85.333v-85.333zM384 341.333h256v-85.333c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-bag-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 843,
+ "id": 1506,
+ "name": "shopping-bag-line",
+ "prevSize": 32,
+ "code": 60440
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 792
+ },
+ {
+ "icon": {
+ "paths": [
+ "M148.992 344.107l54.869 466.56h616.277l54.869-466.56-171.093 114.048-191.915-268.672-191.914 268.672-171.093-114.048zM119.51 221.867l179.157 119.467 178.602-250.027c3.947-5.531 9.156-10.039 15.198-13.15s12.74-4.733 19.533-4.733c6.797 0 13.491 1.623 19.533 4.733s11.251 7.619 15.198 13.15l178.603 250.027 179.2-119.467c6.784-4.512 14.716-6.989 22.861-7.137 8.141-0.148 16.158 2.039 23.1 6.301s12.518 10.423 16.073 17.754c3.55 7.331 4.928 15.525 3.972 23.615l-70.101 595.925c-1.225 10.381-6.212 19.947-14.020 26.893-7.812 6.942-17.899 10.782-28.348 10.782h-692.138c-10.451 0-20.537-3.84-28.346-10.782-7.81-6.946-12.799-16.512-14.022-26.893l-70.101-595.968c-0.947-8.086 0.439-16.274 3.994-23.598s9.132-13.478 16.072-17.735c6.94-4.257 14.953-6.44 23.092-6.291s16.067 2.624 22.846 7.133h0.043zM512 640c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-crown-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 844,
+ "id": 1505,
+ "name": "vip-crown-2-line",
+ "prevSize": 32,
+ "code": 60441
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 793
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM298.667 554.667h384v85.333h-170.667v128l-213.333-213.333zM512 384v-128l213.333 213.333h-384v-85.333h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 845,
+ "id": 1504,
+ "name": "exchange-line",
+ "prevSize": 32,
+ "code": 60442
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 794
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v126.635l6.656 3.456c28.942 15.789 53.33 38.764 70.817 66.712s27.482 59.931 29.023 92.861l0.171 9.003c0.006 34.483-9.279 68.335-26.878 97.993-17.599 29.653-42.861 54.025-73.133 70.541l-6.656 3.499v126.635h682.667v-126.677l-6.656-3.413c-28.941-15.787-53.329-38.763-70.818-66.714-17.485-27.947-27.482-59.93-29.022-92.86l-0.171-9.003c0-72.704 40.405-135.979 100.011-168.533l6.656-3.541v-126.592z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ticket-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 846,
+ "id": 1503,
+ "name": "ticket-line",
+ "prevSize": 32,
+ "code": 60443
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 795
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM384 554.667h-42.667v-85.333h42.667v-42.667c-0.020-34.676 12.029-68.279 34.079-95.043s52.727-45.018 86.766-51.633c34.039-6.615 69.321-1.178 99.789 15.379s54.225 43.201 67.196 75.361l-84.736 21.163c-7.479-11.639-18.534-20.538-31.501-25.362s-27.145-5.315-40.414-1.396c-13.269 3.918-24.909 12.033-33.178 23.127-8.265 11.094-12.71 24.57-12.668 38.405v42.667h128v85.333h-128v85.333h213.333v85.333h-341.333v-85.333h42.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-pound-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 847,
+ "id": 1502,
+ "name": "money-pound-circle-line",
+ "prevSize": 32,
+ "code": 60444
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 796
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM170.667 213.333v597.333h682.667v-597.333h-682.667zM554.667 554.667h128v85.333h-128v85.333h-85.333v-85.333h-128v-85.333h128v-42.667h-128v-85.333h110.336l-90.539-90.496 60.416-60.373 90.453 90.539 90.496-90.539 60.373 60.373-90.539 90.496h110.336v85.333h-128v42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-cny-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 848,
+ "id": 1501,
+ "name": "money-cny-box-line",
+ "prevSize": 32,
+ "code": 60445
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 797
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 341.333v-128h-682.667v128h682.667zM853.333 426.667h-682.667v384h682.667v-384zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM469.333 597.333h256v85.333h-448l192-192v106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["refund-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 849,
+ "id": 1500,
+ "name": "refund-line",
+ "prevSize": 32,
+ "code": 60446
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 798
+ },
+ {
+ "icon": {
+ "paths": [
+ "M689.229 213.333l206.771 179.2-206.771 179.2v-119.467h-236.305v-119.467h236.305v-119.467zM334.769 810.667l-206.769-179.2 206.769-179.2v119.467h236.307v119.467h-236.307v119.467z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["swap-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 850,
+ "id": 1499,
+ "name": "swap-line",
+ "prevSize": 32,
+ "code": 60447
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 799
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 682.667h85.333v-512h-426.667v85.333h341.333v426.667zM725.333 768v128c0 23.552-19.2 42.667-42.965 42.667h-511.403c-5.626 0.034-11.204-1.045-16.413-3.174s-9.945-5.265-13.937-9.229c-3.993-3.964-7.162-8.678-9.327-13.875-2.164-5.193-3.282-10.761-3.287-16.388l0.128-597.333c0-23.552 19.2-42.667 42.965-42.667h127.573v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128zM213.461 341.333l-0.128 512h426.667v-512h-426.539zM298.667 682.667h192c5.658 0 11.085-2.249 15.087-6.246 3.998-4.002 6.246-9.429 6.246-15.087s-2.249-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246h-128c-28.29 0-55.421-11.238-75.425-31.241-20.004-20.006-31.242-47.138-31.242-75.426s11.238-55.42 31.242-75.426c20.004-20.002 47.135-31.241 75.425-31.241h21.333v-42.667h85.333v42.667h85.333v85.333h-192c-5.658 0-11.084 2.249-15.085 6.246-4.001 4.002-6.249 9.429-6.249 15.087s2.248 11.085 6.249 15.087c4 3.998 9.427 6.246 15.085 6.246h128c28.288 0 55.42 11.238 75.426 31.241 20.002 20.006 31.241 47.138 31.241 75.426s-11.238 55.42-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241h-21.333v42.667h-85.333v-42.667h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["currency-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 851,
+ "id": 1498,
+ "name": "currency-line",
+ "prevSize": 32,
+ "code": 60448
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 800
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 384v-128l213.333 213.333h-384v-85.333h170.667zM298.667 554.667h384v85.333h-170.667v128l-213.333-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 852,
+ "id": 1497,
+ "name": "exchange-box-line",
+ "prevSize": 32,
+ "code": 60449
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 801
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM640 298.667l149.333 128-149.333 128v-85.333h-170.667v-85.333h170.667v-85.333zM384 725.333l-149.333-128 149.333-128v85.333h170.667v85.333h-170.667v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["swap-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 853,
+ "id": 1496,
+ "name": "swap-box-line",
+ "prevSize": 32,
+ "code": 60450
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 802
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 867.541v71.125h-85.333v-56.875l-316.501 52.736c-3.055 0.508-6.182 0.346-9.169-0.478s-5.756-2.287-8.119-4.288c-2.364-2.001-4.262-4.493-5.564-7.305-1.301-2.807-1.98-5.867-1.98-8.964v-60.16h-170.667v85.333h-85.333v-85.333h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667v-60.16c0-3.097 0.678-6.156 1.98-8.966s3.2-5.301 5.564-7.303c2.364-2.001 5.133-3.465 8.119-4.288s6.114-0.986 9.169-0.478l451.499 75.264c9.963 1.656 19.017 6.793 25.545 14.496 6.532 7.703 10.121 17.473 10.125 27.573v91.861h42.667v85.333h-42.667v298.667h42.667v85.333h-42.667v91.861c-0.004 10.099-3.593 19.87-10.125 27.571-6.528 7.706-15.582 12.843-25.545 14.498l-49.664 8.277zM170.667 213.333v554.667h256v-554.667h-256zM512 837.973l341.333-56.917v-580.779l-341.333-56.875v694.571zM704 597.333c-35.328 0-64-47.787-64-106.667s28.672-106.667 64-106.667c35.328 0 64 47.787 64 106.667s-28.672 106.667-64 106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["safe-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 854,
+ "id": 1495,
+ "name": "safe-2-line",
+ "prevSize": 32,
+ "code": 60451
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 803
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 405.333v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241zM170.667 339.968c32.052 15.885 59.028 40.407 77.888 70.804 18.86 30.397 28.854 65.457 28.854 101.228s-9.993 70.831-28.854 101.227c-18.86 30.4-45.836 54.921-77.888 70.805v126.635h682.667v-126.635c-32.051-15.885-59.029-40.405-77.888-70.805-18.859-30.396-28.855-65.455-28.855-101.227s9.997-70.831 28.855-101.228c18.859-30.396 45.837-54.919 77.888-70.804v-126.635h-682.667v126.635zM384 384h256v85.333h-256v-85.333zM384 554.667h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 855,
+ "id": 1494,
+ "name": "coupon-line",
+ "prevSize": 32,
+ "code": 60452
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 804
+ },
+ {
+ "icon": {
+ "paths": [
+ "M241.963 181.632c167.595-137.344 415.274-127.787 571.733 28.672 166.613 166.613 166.613 436.779 0 603.392s-436.778 166.613-603.392 0c-51.13-51.059-88.445-114.278-108.439-183.718s-22.012-142.818-5.865-213.252l3.285-13.355 82.517 21.76c-20.457 77.751-12.813 160.226 21.584 232.892s93.34 130.859 166.441 164.322c73.099 33.463 155.667 40.047 233.15 18.598 77.478-21.453 144.905-69.564 190.383-135.859 45.483-66.291 66.108-146.513 58.236-226.522-7.876-80.012-43.738-154.674-101.265-210.833-57.532-56.158-133.039-90.208-213.214-96.146s-159.876 16.613-225.053 63.681l-9.429 7.083 43.392 43.392-196.096 45.227 45.227-196.096 46.805 46.763zM554.667 256v85.333h106.667v85.333h-234.667c-5.33-0.010-10.472 1.975-14.412 5.568s-6.391 8.529-6.873 13.837c-0.482 5.312 1.042 10.607 4.271 14.848 3.229 4.245 7.929 7.121 13.175 8.073l3.84 0.341h170.667c28.292 0 55.42 11.238 75.426 31.241 20.002 20.006 31.241 47.138 31.241 75.426s-11.238 55.42-31.241 75.426c-20.006 20.002-47.134 31.241-75.426 31.241h-42.667v85.333h-85.333v-85.333h-106.666v-85.333h234.666c5.333 0.009 10.475-1.975 14.413-5.568s6.391-8.529 6.874-13.837c0.482-5.312-1.041-10.607-4.271-14.848-3.23-4.245-7.927-7.121-13.175-8.073l-3.84-0.341h-170.667c-28.289 0-55.42-11.238-75.424-31.241-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.424-31.242h42.667v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["refund-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 856,
+ "id": 1493,
+ "name": "refund-2-line",
+ "prevSize": 32,
+ "code": 60453
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 805
+ },
+ {
+ "icon": {
+ "paths": [
+ "M618.667 85.333c25.199-0.009 49.993 6.361 72.073 18.514 22.076 12.154 40.717 29.697 54.187 50.996s21.333 45.66 22.852 70.815c1.523 25.155-3.349 50.286-14.157 73.051l142.379-0.043c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497l142.379 0.043c-15.2-31.928-18.576-68.215-9.527-102.4s29.935-64.049 58.94-84.277c29.005-20.228 64.247-29.507 99.453-26.184 35.207 3.322 68.090 19.031 92.799 44.328 13.867-14.228 30.451-25.528 48.764-33.231 18.317-7.703 37.99-11.651 57.86-11.612zM768 554.667h-512v298.667h512v-298.667zM853.333 384h-682.667v85.333h682.667v-85.333zM405.333 170.667c-16.436 0.008-32.239 6.339-44.134 17.681s-18.97 26.826-19.76 43.243c-0.79 16.417 4.766 32.509 15.518 44.94s25.873 20.25 42.232 21.836l6.144 0.299h64v-64c0-15.91-5.926-31.249-16.623-43.026s-25.395-19.148-41.233-20.675l-6.144-0.299zM618.667 170.667l-6.144 0.299c-14.788 1.417-28.625 7.935-39.134 18.437s-17.037 24.332-18.466 39.121l-0.256 6.144v64h64l6.144-0.299c15.829-1.535 30.524-8.909 41.212-20.685 10.692-11.776 16.614-27.111 16.614-43.016s-5.922-31.239-16.614-43.016c-10.688-11.776-25.382-19.151-41.212-20.686l-6.144-0.299z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gift-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 857,
+ "id": 1492,
+ "name": "gift-2-line",
+ "prevSize": 32,
+ "code": 60454
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 806
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 405.333v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241zM597.333 213.333h-426.667v126.635c32.052 15.885 59.028 40.407 77.888 70.804 18.86 30.397 28.854 65.457 28.854 101.228s-9.993 70.831-28.854 101.227c-18.86 30.4-45.836 54.921-77.888 70.805v126.635h426.667v-597.333zM682.667 213.333v597.333h170.667v-126.635c-32.051-15.885-59.029-40.405-77.888-70.805-18.859-30.396-28.855-65.455-28.855-101.227s9.997-70.831 28.855-101.228c18.859-30.396 45.837-54.919 77.888-70.804v-126.635h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 858,
+ "id": 1491,
+ "name": "coupon-2-line",
+ "prevSize": 32,
+ "code": 60455
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 807
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667zM344.96 810.667c4.398-12.501 12.567-23.33 23.382-30.989s23.739-11.772 36.992-11.772c13.252 0 26.176 4.113 36.992 11.772 10.812 7.659 18.982 18.487 23.381 30.989h387.627v-126.635c-32.051-15.885-59.029-40.405-77.888-70.805-18.859-30.396-28.855-65.455-28.855-101.227s9.997-70.831 28.855-101.228c18.859-30.396 45.837-54.919 77.888-70.804v-126.635h-387.627c-4.399 12.501-12.57 23.329-23.381 30.988-10.816 7.66-23.74 11.773-36.992 11.773s-26.177-4.114-36.992-11.773c-10.814-7.66-18.984-18.487-23.382-30.988h-174.293v597.333h174.293zM405.333 469.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.283-18.745-45.257c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.254-18.743 45.257s-28.283 18.743-45.257 18.743zM405.333 682.667c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.283 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 859,
+ "id": 1490,
+ "name": "coupon-3-line",
+ "prevSize": 32,
+ "code": 60456
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 808
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM170.667 213.333v597.333h682.667v-597.333h-682.667zM384 554.667h-42.667v-85.333h42.667v-42.667c-0.020-34.676 12.029-68.279 34.079-95.043s52.727-45.018 86.766-51.633c34.039-6.615 69.321-1.178 99.789 15.379s54.225 43.201 67.196 75.361l-84.736 21.163c-7.479-11.639-18.534-20.538-31.501-25.362s-27.145-5.315-40.414-1.396c-13.269 3.918-24.909 12.033-33.178 23.127-8.265 11.094-12.71 24.57-12.668 38.405v42.667h128v85.333h-128v85.333h213.333v85.333h-341.333v-85.333h42.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-pound-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 860,
+ "id": 1489,
+ "name": "money-pound-box-line",
+ "prevSize": 32,
+ "code": 60457
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 809
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM853.333 469.333h-682.667v341.333h682.667v-341.333zM853.333 384v-170.667h-682.667v170.667h682.667zM597.333 640h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bank-card-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 861,
+ "id": 1488,
+ "name": "bank-card-line",
+ "prevSize": 32,
+ "code": 60458
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 810
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM512 300.8l211.2 211.2-211.2 211.2-211.2-211.2 211.2-211.2zM512 421.504l-90.496 90.496 90.496 90.496 90.496-90.496-90.496-90.496z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copper-coin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 862,
+ "id": 1487,
+ "name": "copper-coin-line",
+ "prevSize": 32,
+ "code": 60459
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 811
+ },
+ {
+ "icon": {
+ "paths": [
+ "M655.616 146.688l137.003 237.312h146.048v85.333h-49.792l-32.299 387.541c-0.887 10.662-5.747 20.599-13.619 27.849-7.872 7.245-18.176 11.273-28.877 11.277h-604.16c-10.699-0.004-21.005-4.032-28.876-11.277-7.871-7.249-12.732-17.186-13.62-27.849l-32.341-387.541h-49.749v-85.333h146.005l137.045-237.312 73.899 42.667-112.384 194.645h364.16l-112.341-194.645 73.899-42.667zM803.243 469.333h-582.528l28.459 341.333h525.611l28.459-341.333zM554.667 554.667v170.667h-85.333v-170.667h85.333zM384 554.667v170.667h-85.333v-170.667h85.333zM725.333 554.667v170.667h-85.333v-170.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-basket-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 863,
+ "id": 1486,
+ "name": "shopping-basket-2-line",
+ "prevSize": 32,
+ "code": 60460
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 812
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 384c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17c67.035-0.099 132.138 22.455 184.747 64h92.587c56.875 0 107.947 24.747 143.104 64h134.229c40.333-0.013 79.838 11.409 113.941 32.939 34.103 21.534 61.406 52.288 78.741 88.704-100.907 133.163-264.277 219.691-448.683 219.691-119.040 0-219.733-25.728-301.227-70.741-2.985 8.239-8.438 15.351-15.615 20.378s-15.73 7.71-24.492 7.697h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM256.043 512l-0.043 214.272 1.92 1.365c76.587 53.76 176.341 83.029 296.747 83.029 128.171 0 247.424-49.323 334.293-133.547l5.675-5.675-5.12-4.267c-20.147-15.778-44.57-25.143-70.101-26.88l-8.747-0.299h-90.069c3.072 13.739 4.736 27.989 4.736 42.667v42.667h-384v-85.333l289.707-0.043-1.451-3.328c-8.175-17.088-20.753-31.689-36.442-42.304-15.684-10.62-33.916-16.87-52.817-18.112l-6.997-0.213h-125.013c-19.827-20.279-43.508-36.386-69.652-47.377s-54.222-16.644-82.582-16.623h-0.043zM170.667 469.333h-42.667v298.667h42.667v-298.667zM768 213.333c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.561-37.491-90.509c0-33.948 13.487-66.505 37.491-90.51s56.563-37.49 90.509-37.49zM768 298.667c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497zM469.333 85.333c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.51s-56.563 37.49-90.509 37.49c-33.946 0-66.505-13.486-90.51-37.49s-37.49-56.562-37.49-90.51c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49zM469.333 170.667c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hand-coin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 864,
+ "id": 1485,
+ "name": "hand-coin-line",
+ "prevSize": 32,
+ "code": 60461
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 813
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM362.667 597.333h234.667c5.658 0 11.085-2.249 15.087-6.246 3.998-4.002 6.246-9.429 6.246-15.087s-2.249-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246h-170.667c-28.29 0-55.421-11.238-75.425-31.241-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.425-31.242h42.667v-85.333h85.333v85.333h106.667v85.333h-234.667c-5.658 0-11.084 2.249-15.085 6.246-4.001 4.002-6.249 9.429-6.249 15.087s2.248 11.085 6.249 15.087c4 3.998 9.427 6.246 15.085 6.246h170.667c28.288 0 55.42 11.238 75.426 31.241 20.002 20.006 31.241 47.138 31.241 75.426s-11.238 55.42-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241h-42.667v85.333h-85.333v-85.333h-106.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-dollar-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 865,
+ "id": 1484,
+ "name": "money-dollar-circle-line",
+ "prevSize": 32,
+ "code": 60462
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 814
+ },
+ {
+ "icon": {
+ "paths": [
+ "M826.667 644.395c27.686-65.779 34.061-138.581 18.223-208.171-15.834-69.587-53.082-132.463-106.5-179.787-53.423-47.323-120.333-76.714-191.322-84.040-70.993-7.326-142.493 7.781-204.453 43.197l-42.325-74.112c64.752-37.008 138.076-56.39 212.657-56.21 74.586 0.18 147.814 19.914 212.386 57.234 191.573 110.592 264.96 347.392 175.659 544.853l57.259 33.024-177.707 94.464-7.040-201.131 53.163 30.677zM197.335 379.605c-27.685 65.779-34.057 138.581-18.222 208.171s53.081 132.463 106.502 179.785c53.421 47.326 120.331 76.715 191.321 84.041 70.989 7.326 142.494-7.778 204.45-43.196l42.325 74.112c-64.751 37.009-138.078 56.388-212.659 56.209s-147.811-19.913-212.384-57.233c-191.573-110.592-264.96-347.392-175.659-544.853l-57.301-32.981 177.707-94.464 7.040 201.131-53.163-30.677 0.043-0.043zM362.668 597.333h234.665c5.658 0 11.085-2.249 15.087-6.246 4.002-4.002 6.246-9.429 6.246-15.087s-2.244-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246h-170.667c-28.288 0-55.419-11.238-75.423-31.241-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.423-31.242h42.667v-42.667h85.333v42.667h106.667v85.333h-234.667c-5.656 0-11.083 2.249-15.083 6.246-4.001 4.002-6.249 9.429-6.249 15.087s2.248 11.085 6.249 15.087c4 3.998 9.427 6.246 15.083 6.246h170.667c28.292 0 55.424 11.238 75.426 31.241 20.002 20.006 31.241 47.138 31.241 75.426s-11.238 55.42-31.241 75.426c-20.002 20.002-47.134 31.241-75.426 31.241h-42.667v42.667h-85.333v-42.667h-106.665v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-dollar-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 866,
+ "id": 1483,
+ "name": "exchange-dollar-line",
+ "prevSize": 32,
+ "code": 60463
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 815
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 213.333h128v384h-128v128h-85.333v-128h-128v-384h128v-128h85.333v128zM213.333 298.667v213.333h170.667v-213.333h-170.667zM768 426.667h128v384h-128v128h-85.333v-128h-128v-384h128v-128h85.333v128zM640 512v213.333h170.667v-213.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 867,
+ "id": 1482,
+ "name": "stock-line",
+ "prevSize": 32,
+ "code": 60464
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 816
+ },
+ {
+ "icon": {
+ "paths": [
+ "M277.333 85.333h469.333c6.622 0 13.158 1.542 19.081 4.504 5.926 2.962 11.081 7.263 15.053 12.562l115.2 153.6v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640l115.2-153.6c3.974-5.299 9.128-9.6 15.052-12.562s12.457-4.504 19.081-4.504zM810.667 341.333h-597.333v512h597.333v-512zM789.333 256l-64-85.333h-426.667l-64 85.333h554.667zM384 426.667v85.333c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509v-85.333h85.333v85.333c0 56.58-22.477 110.844-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-bag-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 868,
+ "id": 1481,
+ "name": "shopping-bag-3-line",
+ "prevSize": 32,
+ "code": 60465
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 817
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-682.667h-597.333v682.667h597.333zM384 256v85.333c0 33.948 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.561 37.491-90.509v-85.333h85.333v85.333c0 56.579-22.477 110.844-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.269-62.484-150.848v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-bag-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 869,
+ "id": 1480,
+ "name": "shopping-bag-2-line",
+ "prevSize": 32,
+ "code": 60466
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 818
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v126.635l6.656 3.456c28.942 15.789 53.33 38.764 70.817 66.712s27.482 59.931 29.023 92.861l0.171 9.003c0.006 34.483-9.279 68.335-26.878 97.993-17.599 29.653-42.861 54.025-73.133 70.541l-6.656 3.499v126.635h682.667v-126.677l-6.656-3.413c-28.941-15.787-53.329-38.763-70.818-66.714-17.485-27.947-27.482-59.93-29.022-92.86l-0.171-9.003c0-72.704 40.405-135.979 100.011-168.533l6.656-3.541v-126.592zM682.667 384v256h-341.333v-256h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ticket-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 870,
+ "id": 1479,
+ "name": "ticket-2-line",
+ "prevSize": 32,
+ "code": 60467
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 819
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 722.688v87.979h213.333v85.333h-512v-85.333h213.333v-87.979c-82.487-10.402-158.344-50.547-213.333-112.909-54.989-62.357-85.332-142.639-85.333-225.779v-256h682.667v256c0 83.14-30.345 163.422-85.333 225.779-54.989 62.362-130.846 102.507-213.333 112.909zM256 213.333v170.667c0 67.895 26.971 133.009 74.981 181.018 48.009 48.013 113.124 74.982 181.019 74.982s133.009-26.97 181.018-74.982c48.013-48.009 74.982-113.122 74.982-181.018v-170.667h-512zM42.667 213.333h85.333v170.667h-85.333v-170.667zM896 213.333h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["trophy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 871,
+ "id": 1478,
+ "name": "trophy-line",
+ "prevSize": 32,
+ "code": 60468
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 820
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 298.667h42.667v426.667h-42.667v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM853.333 725.333h-256c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.476-110.842 62.485-150.849c40.004-40.008 94.268-62.484 150.848-62.484h256v-85.333h-682.667v597.333h682.667v-85.333zM896 640v-256h-298.667c-33.946 0-66.505 13.486-90.509 37.49s-37.491 56.564-37.491 90.51c0 33.946 13.487 66.505 37.491 90.509s56.563 37.491 90.509 37.491h298.667zM597.333 469.333h128v85.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wallet-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 872,
+ "id": 1477,
+ "name": "wallet-3-line",
+ "prevSize": 32,
+ "code": 60469
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 821
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 298.667v-85.333h-682.667v597.333h682.667v-85.333h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM554.667 384v256h298.667v-256h-298.667zM640 469.333h128v85.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wallet-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 873,
+ "id": 1476,
+ "name": "wallet-2-line",
+ "prevSize": 32,
+ "code": 60470
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 822
+ },
+ {
+ "icon": {
+ "paths": [
+ "M207.916 128h608.169c6.733-0.001 13.372 1.591 19.371 4.646s11.191 7.487 15.147 12.932l163.115 224.256c2.901 3.99 4.331 8.862 4.041 13.786-0.286 4.924-2.274 9.596-5.619 13.222l-484.48 524.843c-3.836 4.147-9.165 6.605-14.814 6.831-5.645 0.222-11.153-1.805-15.309-5.636-0.299-0.256-162.132-175.573-485.673-526.037-3.345-3.625-5.33-8.297-5.618-13.222s1.14-9.796 4.039-13.786l163.115-224.256c3.959-5.446 9.15-9.877 15.149-12.932s12.636-4.647 19.369-4.646zM229.676 213.333l-119.467 164.267 401.791 435.2 401.792-435.2-119.467-164.267h-564.649z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-diamond-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 874,
+ "id": 1475,
+ "name": "vip-diamond-line",
+ "prevSize": 32,
+ "code": 60471
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 823
+ },
+ {
+ "icon": {
+ "paths": [
+ "M826.667 644.395c27.686-65.779 34.061-138.581 18.223-208.171-15.834-69.587-53.082-132.463-106.5-179.787-53.423-47.323-120.333-76.714-191.322-84.040-70.993-7.326-142.493 7.781-204.453 43.197l-42.325-74.112c64.752-37.008 138.076-56.39 212.657-56.21 74.586 0.18 147.814 19.914 212.386 57.234 191.573 110.592 264.96 347.392 175.659 544.853l57.259 33.024-177.707 94.464-7.040-201.131 53.163 30.677zM197.335 379.605c-27.685 65.779-34.057 138.581-18.222 208.171s53.081 132.463 106.502 179.785c53.421 47.326 120.331 76.715 191.321 84.041 70.989 7.326 142.494-7.778 204.45-43.196l42.325 74.112c-64.751 37.009-138.078 56.388-212.659 56.209s-147.811-19.913-212.384-57.233c-191.573-110.592-264.96-347.392-175.659-544.853l-57.301-32.981 177.707-94.464 7.040 201.131-53.163-30.677 0.043-0.043zM554.667 577.536h128v85.333h-128v85.333h-85.333v-85.333h-127.998v-85.333h127.998v-42.667h-127.998v-85.333h110.334l-90.537-90.539 60.416-60.331 90.452 90.496 90.496-90.496 60.373 60.331-90.539 90.539h110.336v85.333h-128v42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-cny-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 875,
+ "id": 1474,
+ "name": "exchange-cny-line",
+ "prevSize": 32,
+ "code": 60472
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 824
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM170.667 213.333v597.333h682.667v-597.333h-682.667zM428.8 469.333h211.2v85.333h-211.2c3.695 18.146 12.053 35.021 24.252 48.956 12.194 13.939 27.81 24.461 45.308 30.528 17.493 6.071 36.271 7.484 54.477 4.096 18.21-3.392 35.221-11.46 49.361-23.42l72.533 48.341c-24.926 27.132-57.131 46.519-92.77 55.851-35.644 9.331-73.216 8.213-108.237-3.226-35.025-11.439-66.015-32.713-89.278-61.282s-37.814-63.232-41.918-99.844h-43.861v-85.333h43.819c4.090-36.634 18.638-71.313 41.905-99.9s54.274-49.872 89.312-61.313c35.038-11.441 72.631-12.555 108.288-3.208 35.652 9.347 67.861 28.76 92.783 55.919l-72.576 48.341c-14.14-11.959-31.151-20.029-49.361-23.418-18.206-3.389-36.983-1.978-54.477 4.093-17.498 6.070-33.114 16.592-45.308 30.529-12.198 13.936-20.557 30.81-24.252 48.957z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-euro-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 876,
+ "id": 1473,
+ "name": "money-euro-box-line",
+ "prevSize": 32,
+ "code": 60473
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 825
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 298.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h640v170.667zM170.667 384v426.667h682.667v-426.667h-682.667zM170.667 213.333v85.333h512v-85.333h-512zM640 554.667h128v85.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wallet-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 877,
+ "id": 1472,
+ "name": "wallet-line",
+ "prevSize": 32,
+ "code": 60474
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 826
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 853.333v85.333h-512v-85.333h512zM622.336 29.27l331.861 331.861-60.331 60.416-45.227-15.104-105.685 105.557 241.365 241.365-60.331 60.331-241.323-241.365-102.571 102.571 12.075 48.299-60.373 60.331-331.861-331.861 60.373-60.331 48.213 12.032 268.544-268.502-15.061-45.227 60.331-60.373zM652.501 180.139l-301.696 301.653 150.827 150.869 301.696-301.653-150.827-150.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["auction-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 878,
+ "id": 1471,
+ "name": "auction-line",
+ "prevSize": 32,
+ "code": 60475
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 827
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 132.267l-211.2 211.2c-41.766 41.771-70.208 94.989-81.73 152.922-11.521 57.937-5.605 117.986 17.001 172.557 22.606 54.575 60.887 101.218 110.002 134.033 49.115 32.819 106.859 50.334 165.927 50.334s116.813-17.515 165.926-50.334c49.114-32.815 87.398-79.458 110.003-134.033 22.605-54.571 28.523-114.62 17.003-172.557-11.524-57.933-39.966-111.151-81.732-152.922l-211.2-211.2zM512 11.605l271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.617 14.814 74.487 7.211 151.697-21.854 221.862s-78.281 130.138-141.431 172.335c-63.147 42.193-137.391 64.713-213.338 64.713s-150.19-22.519-213.338-64.713c-63.148-42.197-112.367-102.17-141.431-172.335s-36.669-147.375-21.853-221.862c14.816-74.49 51.388-142.913 105.091-196.617l271.531-271.531zM554.667 469.333h106.667l-192 277.333v-192h-106.667l192-277.333v192z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["water-flash-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 879,
+ "id": 1470,
+ "name": "water-flash-line",
+ "prevSize": 32,
+ "code": 60476
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 828
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM384 341.333h256l106.667 149.333-234.667 234.667-234.667-234.667 106.667-149.333zM427.947 426.667l-39.253 55.040 123.307 123.307 123.307-123.307-39.253-55.040h-168.107z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copper-diamond-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 880,
+ "id": 1469,
+ "name": "copper-diamond-line",
+ "prevSize": 32,
+ "code": 60477
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 829
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 896c-39.607 0-77.589-15.731-105.596-43.738s-43.738-65.988-43.738-105.596c0-39.607 15.731-77.589 43.738-105.596s65.988-43.738 105.596-43.738c39.607 0 77.589 15.731 105.596 43.738s43.738 65.988 43.738 105.596c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738zM746.667 810.667c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743zM277.333 426.667c-19.611 0-39.029-3.863-57.147-11.367s-34.58-18.505-48.447-32.372c-13.867-13.867-24.867-30.329-32.372-48.447s-11.367-37.536-11.367-57.147c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.329-24.867 48.447-32.372s37.536-11.367 57.147-11.367c39.606 0 77.589 15.733 105.594 43.739s43.739 65.989 43.739 105.594c0 39.606-15.733 77.589-43.739 105.594s-65.989 43.739-105.594 43.739zM277.333 341.333c16.974 0 33.253-6.743 45.255-18.745s18.745-28.281 18.745-45.255c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.253 18.745 45.255s28.281 18.745 45.255 18.745zM813.696 149.973l60.331 60.331-663.68 663.723-60.331-60.331 663.68-663.723z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["percent-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 881,
+ "id": 1468,
+ "name": "percent-line",
+ "prevSize": 32,
+ "code": 60478
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 830
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 810.667h853.333v85.333h-853.333v-85.333zM469.333 341.333h85.333v341.333h-85.333v-341.333zM339.84 341.333h90.667l-127.403 339.797h-85.333l-127.403-339.797h90.667l79.403 218.155 79.403-218.155zM725.333 597.333v85.333h-85.333v-341.333h170.667c33.946 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-85.333zM725.333 426.667v85.333h85.333c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497h-85.333zM85.333 128h853.333v85.333h-853.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 882, "id": 1467, "name": "vip-line", "prevSize": 32, "code": 60479 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 831
+ },
+ {
+ "icon": {
+ "paths": [
+ "M187.99 619.648l145.152-145.152 120.661 120.704 134.699-134.699-76.501-76.501h213.333v213.333l-76.501-76.501-195.029 195.029-120.661-120.661-105.6 105.557c47.932 72.145 121.498 123.366 205.789 143.287 84.292 19.925 173.009 7.057 248.166-35.994 75.162-43.051 131.14-113.062 156.599-195.853 25.463-82.786 18.496-172.16-19.482-250.004-37.982-77.844-104.137-138.338-185.054-169.224-80.922-30.886-170.56-29.853-250.748 2.89s-144.929 94.745-181.105 173.444c-36.176 78.7-41.080 168.207-13.719 250.387v-0.043zM122.368 686.123l-0.427-0.427 0.171-0.171c-24.323-54.613-36.855-113.741-36.779-173.525 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-173.653 0-322.986-103.68-389.632-252.544z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["funds-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 883,
+ "id": 1466,
+ "name": "funds-line",
+ "prevSize": 32,
+ "code": 60480
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 832
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 682.667v-512h-85.333v-85.333h128c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512h530.688l85.333-341.333h-530.688v-85.333h585.387c6.485 0 12.885 1.479 18.714 4.324s10.931 6.981 14.921 12.094c3.994 5.113 6.763 11.068 8.107 17.413s1.22 12.913-0.354 19.204l-106.667 426.667c-2.313 9.225-7.637 17.417-15.138 23.266-7.497 5.854-16.738 9.033-26.249 9.033h-606.72c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17zM256 981.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.708-24.994 60.34-24.994c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994zM768 981.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-cart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 884,
+ "id": 1465,
+ "name": "shopping-cart-line",
+ "prevSize": 32,
+ "code": 60481
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 833
+ },
+ {
+ "icon": {
+ "paths": [
+ "M604.715 416.555c77.764-17.291 149.116-56.050 205.952-111.872v-134.016h-597.333v134.016c56.834 55.822 128.188 94.581 205.952 111.872 9.314-16.375 22.801-29.991 39.087-39.463s34.79-14.461 53.628-14.461c18.837 0 37.342 4.99 53.628 14.461s29.773 23.088 39.087 39.463zM613.589 501.888c-6.912 21.508-20.476 40.265-38.733 53.572s-40.265 20.48-62.857 20.48c-22.592 0-44.599-7.172-62.857-20.48s-31.819-32.064-38.733-53.572c-71.057-14.298-138.246-43.593-197.077-85.931v437.376h597.333v-437.419c-58.825 42.368-126.012 71.693-197.077 86.016v-0.043zM170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["red-packet-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 885,
+ "id": 1464,
+ "name": "red-packet-line",
+ "prevSize": 32,
+ "code": 60482
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 834
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 298.667l360.32-240.213c7.010-4.678 15.253-7.174 23.68-7.174s16.67 2.496 23.68 7.174l360.32 240.213v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333zM213.333 344.32v509.013h597.333v-509.013l-298.667-199.083-298.667 199.083zM341.333 682.667h341.333v85.333h-341.333v-85.333zM341.333 554.667h341.333v85.333h-341.333v-85.333zM512 469.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["price-tag-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 886,
+ "id": 1463,
+ "name": "price-tag-2-line",
+ "prevSize": 32,
+ "code": 60483
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 835
+ },
+ {
+ "icon": {
+ "paths": [
+ "M465.067 89.6l422.357 60.373 60.331 422.4-392.192 392.192c-8.004 8-18.854 12.493-30.165 12.493-11.315 0-22.165-4.493-30.165-12.493l-422.401-422.4c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l392.236-392.235zM495.232 180.139l-331.905 331.861 362.071 362.027 331.861-331.861-45.227-316.8-316.8-45.227zM585.685 451.669c-16.009-16.013-24.998-37.727-24.994-60.367 0.004-11.211 2.214-22.311 6.502-32.667 4.292-10.356 10.586-19.766 18.513-27.692s17.34-14.212 27.695-18.5c10.359-4.288 21.461-6.494 32.67-6.492 22.643 0.004 44.352 9.002 60.361 25.014 16.004 16.012 24.994 37.727 24.99 60.367s-8.998 44.354-25.011 60.358c-16.013 16.004-37.726 24.998-60.369 24.994-22.639-0.004-44.352-9.003-60.356-25.015z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["price-tag-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 887,
+ "id": 1462,
+ "name": "price-tag-3-line",
+ "prevSize": 32,
+ "code": 60484
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 836
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 384c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17c67.035-0.099 132.138 22.455 184.747 64h92.587c56.832 0 107.947 24.704 143.061 63.957l134.272 0.043c40.333-0.013 79.838 11.409 113.941 32.939 34.103 21.534 61.406 52.288 78.741 88.704-100.907 133.163-264.277 219.691-448.683 219.691-119.040 0-219.733-25.728-301.227-70.741-2.985 8.239-8.438 15.351-15.615 20.378s-15.73 7.714-24.492 7.697h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM256.043 512l-0.043 214.229 1.92 1.408c76.587 53.76 176.341 83.029 296.747 83.029 128.171 0 247.424-49.323 334.293-133.547l5.675-5.675-5.12-4.267c-20.147-15.778-44.57-25.143-70.101-26.88l-8.747-0.299-90.112-0.043c3.115 13.739 4.779 28.032 4.779 42.709v42.667h-384v-85.333l289.707-0.043-1.451-3.328c-8.175-17.088-20.753-31.689-36.442-42.304-15.684-10.62-33.916-16.87-52.817-18.112l-6.997-0.213h-125.013c-19.827-20.279-43.508-36.386-69.652-47.377s-54.222-16.644-82.582-16.623h-0.043zM170.667 469.333h-42.667v298.667h42.667v-298.667zM582.229 152.533l15.104 15.147 15.104-15.104c9.89-9.975 21.653-17.897 34.615-23.314 12.958-5.416 26.863-8.219 40.909-8.248s27.964 2.717 40.943 8.081c12.983 5.363 24.781 13.238 34.714 23.172 9.929 9.934 17.801 21.732 23.159 34.716s8.102 26.9 8.068 40.946c-0.030 14.047-2.837 27.949-8.26 40.908-5.419 12.959-13.346 24.72-23.322 34.608l-165.931 165.888-165.973-165.973c-9.975-9.891-17.897-21.654-23.314-34.615s-8.219-26.863-8.248-40.911c-0.029-14.047 2.717-27.961 8.080-40.944s13.238-24.779 23.17-34.71c9.937-9.932 21.734-17.803 34.718-23.162s26.901-8.102 40.947-8.069c14.046 0.033 27.947 2.839 40.909 8.259 12.958 5.42 24.721 13.346 34.607 23.324zM491.776 212.907c-3.537 3.517-5.73 8.161-6.195 13.126-0.469 4.965 0.819 9.937 3.635 14.052l2.475 2.944 105.643 105.557 105.643-105.557c3.533-3.53 5.717-8.188 6.17-13.162s-0.853-9.95-3.695-14.059l-2.475-2.987c-3.537-3.527-8.196-5.703-13.171-6.147s-9.946 0.87-14.050 3.715l-2.987 2.475-75.477 75.435-75.392-75.52-2.901-2.389c-4.109-2.839-9.084-4.147-14.059-3.695s-9.634 2.636-13.163 6.17v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hand-heart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 888,
+ "id": 1461,
+ "name": "hand-heart-line",
+ "prevSize": 32,
+ "code": 60485
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 837
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 810.667h853.333v85.333h-853.333v-85.333zM85.333 213.333l213.333 149.333 213.333-277.333 213.333 277.333 213.333-149.333v512h-853.333v-512zM170.667 377.216v262.784h682.667v-262.784l-145.92 102.144-195.413-254.080-195.413 254.080-145.92-102.144z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-crown-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 889,
+ "id": 1460,
+ "name": "vip-crown-line",
+ "prevSize": 32,
+ "code": 60486
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 838
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333l311.381 97.28c8.683 2.711 16.273 8.127 21.662 15.458s8.294 16.191 8.29 25.289v75.307h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497l-137.387 0.043c-16.512 21.76-36.565 40.96-59.733 56.747l-229.547 156.544-229.547-156.501c-34.452-23.488-62.645-55.040-82.127-91.908s-29.664-77.935-29.659-119.633v-347.264c0.005-9.091 2.914-17.942 8.301-25.263s12.973-12.732 21.651-15.441l311.381-97.323zM469.333 174.677l-256 80.043v315.904c-0.006 26.121 5.984 51.895 17.509 75.337 11.525 23.445 28.277 43.925 48.966 59.874l8.064 5.803 181.461 123.776 161.365-110.080h-204.032c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667v-43.947l-256-80.043zM469.333 512v128h384v-128h-384zM469.333 426.667h384v-42.667h-384v42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["secure-payment-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 890,
+ "id": 1459,
+ "name": "secure-payment-line",
+ "prevSize": 32,
+ "code": 60487
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 839
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667h170.667v85.333h-49.792l-32.299 387.541c-0.887 10.662-5.747 20.599-13.619 27.849-7.872 7.245-18.176 11.273-28.877 11.277h-604.16c-10.699-0.004-21.005-4.032-28.876-11.277-7.871-7.249-12.732-17.186-13.62-27.849l-32.341-387.541h-49.749v-85.333h170.667v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981zM803.243 469.333h-582.528l28.459 341.333h525.611l28.459-341.333zM554.667 554.667v170.667h-85.333v-170.667h85.333zM384 554.667v170.667h-85.333v-170.667h85.333zM725.333 554.667v170.667h-85.333v-170.667h85.333zM512 170.667c-43.785 0-85.898 16.829-117.624 47.007s-50.64 71.395-52.829 115.127l-0.213 8.533v42.667h341.333v-42.667c0-43.786-16.828-85.898-47.006-117.624s-71.394-50.64-115.127-52.829l-8.533-0.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-basket-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 891,
+ "id": 1458,
+ "name": "shopping-basket-line",
+ "prevSize": 32,
+ "code": 60488
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 840
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554.667c70.699 0 128 57.301 128 128 0 36.267-15.061 68.949-39.253 92.245l-81.493 78.421h120.747v85.333h-256v-73.557l157.568-151.68c8.107-7.808 13.099-18.688 13.099-30.763 0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667h-85.333c0-70.699 57.301-128 128-128zM768 554.667v170.667h85.333v-170.667h85.333v384h-85.333v-128h-170.667v-256h85.333zM170.667 512c0 107.819 49.963 203.947 128 266.496v103.083c-127.531-73.771-213.333-211.627-213.333-369.579h85.333zM512 85.333c221.227 0 403.157 168.405 424.533 384h-85.845c-20.992-168.363-164.608-298.667-338.688-298.667-117.333 0-220.843 59.179-282.24 149.333h111.573v85.333h-256v-256h85.333v106.667c77.824-103.68 201.771-170.667 341.333-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hours-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 892,
+ "id": 1457,
+ "name": "hours-line",
+ "prevSize": 32,
+ "code": 60489
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 841
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM469.333 682.667h-128v-341.333h128v-85.333h85.333v85.333h42.667c19.81 0 39.228 5.516 56.077 15.93 16.853 10.415 30.468 25.315 39.33 43.034 8.858 17.718 12.608 37.552 10.829 57.281s-9.015 38.575-20.902 54.421c11.887 15.846 19.123 34.692 20.902 54.421s-1.971 39.565-10.829 57.28c-8.862 17.719-22.477 32.619-39.33 43.034-16.849 10.415-36.267 15.932-56.077 15.932h-42.667v85.333h-85.333v-85.333zM426.667 554.667v42.667h170.667c5.658 0 11.085-2.249 15.087-6.246 3.998-4.002 6.246-9.429 6.246-15.087s-2.249-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246h-170.667zM426.667 426.667v42.667h170.667c5.658 0 11.085-2.249 15.087-6.246 3.998-4.002 6.246-9.429 6.246-15.087s-2.249-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bit-coin-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 893,
+ "id": 1456,
+ "name": "bit-coin-line",
+ "prevSize": 32,
+ "code": 60490
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 842
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM170.667 213.333v597.333h682.667v-597.333h-682.667zM384 469.333h85.333v85.333h-85.333v85.333h-85.333v-85.333h-85.333v-85.333h85.333v-85.333h85.333v85.333zM554.667 469.333h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["increase-decrease-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 894,
+ "id": 1455,
+ "name": "increase-decrease-line",
+ "prevSize": 32,
+ "code": 60491
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 843
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM631.168 417.835l-76.501-76.501h213.333v213.333l-76.501-76.501-164.864 164.864-90.496-90.496-120.704 120.661-60.331-60.331 181.035-181.035 90.496 90.539 104.533-104.533z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["funds-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 895,
+ "id": 1454,
+ "name": "funds-box-line",
+ "prevSize": 32,
+ "code": 60492
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 844
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 341.333v469.333h512v-469.333h-128v-256h85.333v170.667h213.333v85.333h-85.333v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512h-85.333v-85.333h213.333v-170.667h85.333v256h-128zM554.667 85.333v256h-85.333v-256h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sensor-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 896,
+ "id": 1453,
+ "name": "sensor-line",
+ "prevSize": 32,
+ "code": 60493
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 845
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v469.333h682.667v-469.333h-682.667zM85.333 170.965c0-23.723 19.413-42.965 42.325-42.965h768.683c23.381 0 42.325 19.157 42.325 42.965v597.035h-853.333v-597.035zM42.667 810.667h938.667v85.333h-938.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["macbook-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 897,
+ "id": 1452,
+ "name": "macbook-line",
+ "prevSize": 32,
+ "code": 60494
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 846
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 810.667h42.667v-519.339l-77.995-77.995h-50.005v170.667h-384v-170.667h-85.333v597.333h42.667v-298.667h512v298.667zM170.667 128h597.333l115.499 115.499c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM341.333 597.333v213.333h341.333v-213.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["save-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 898,
+ "id": 1451,
+ "name": "save-3-line",
+ "prevSize": 32,
+ "code": 60495
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 847
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 213.333v597.333h597.333v-476.672l-120.661-120.661h-476.672zM170.667 128h554.667l158.165 158.165c8.004 8 12.497 18.851 12.501 30.165v537.003c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM512 768c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM256 256h384v170.667h-384v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["save-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 899,
+ "id": 1450,
+ "name": "save-2-line",
+ "prevSize": 32,
+ "code": 60496
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 848
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 85.333v85.333h-170.667l-0.043 426.667h597.333l0.043-426.667h-170.667v-85.333h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333zM810.624 682.667h-597.333l0.043 170.667h597.333l-0.043-170.667zM725.333 725.333v85.333h-85.333v-85.333h85.333zM554.667 85.333v213.333h128l-170.667 170.667-170.667-170.667h128v-213.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["install-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 900,
+ "id": 1449,
+ "name": "install-line",
+ "prevSize": 32,
+ "code": 60497
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 849
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.558-597.461c131.84-106.667 299.691-170.539 482.558-170.539zM511.996 512c-60.587 0-117.929 14.080-168.916 39.040l168.916 209.152 168.875-209.152c-50.944-25.003-108.288-39.040-168.875-39.040zM511.996 213.333c-129.193 0-252.713 35.925-359.252 102.059l135.595 167.893c66.475-36.096 142.676-56.619 223.657-56.619s157.141 20.48 223.616 56.619l135.637-167.979c-106.581-66.091-230.101-101.973-359.253-101.973z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 901,
+ "id": 1448,
+ "name": "signal-wifi-2-line",
+ "prevSize": 32,
+ "code": 60498
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 850
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.558-597.461c131.84-106.667 299.691-170.539 482.558-170.539zM511.996 426.667c-80.981 0-157.14 20.48-223.614 56.619l223.572 276.907 223.659-276.907c-66.475-36.139-142.635-56.619-223.616-56.619zM511.996 213.333c-129.193 0-252.713 35.925-359.252 102.059l81.237 100.565c81.749-47.445 176.683-74.624 278.014-74.624 101.333 0 196.267 27.179 278.016 74.624l81.237-100.651c-106.581-66.091-230.101-101.973-359.253-101.973z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 902,
+ "id": 1447,
+ "name": "signal-wifi-3-line",
+ "prevSize": 32,
+ "code": 60499
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 851
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667 0 91.136-28.587 175.616-77.269 244.949l-136.064-244.949h128c-0.009-78.669-27.187-154.92-76.941-215.855-49.758-60.935-119.031-102.814-196.113-118.551-77.077-15.737-157.225-4.367-226.885 32.188s-124.555 96.049-155.399 168.419c-30.844 72.372-35.742 153.174-13.868 228.737 21.875 75.567 69.18 141.257 133.913 185.963 64.733 44.702 142.921 65.673 221.334 59.362 78.417-6.31 152.247-39.514 208.998-93.99l42.581 76.587c-77.431 67.098-176.495 103.962-278.955 103.808-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 298.667c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v42.667h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49v0zM597.333 554.667h-170.667v42.667h170.667v-42.667zM512 384c-10.449 0.001-20.535 3.838-28.348 10.783-7.808 6.944-12.796 16.513-14.020 26.892l-0.299 4.992v42.667h85.333v-42.667c0-10.45-3.84-20.537-10.782-28.346-6.946-7.81-16.512-12.799-26.893-14.022l-4.992-0.299z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rotate-lock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 903,
+ "id": 1446,
+ "name": "rotate-lock-line",
+ "prevSize": 32,
+ "code": 60500
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 852
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 597.333v-128h85.333v128h213.333c11.315 0 22.17 4.497 30.17 12.497 8.004 8 12.497 18.854 12.497 30.17v256c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h213.333zM107.094 377.045c56.533-169.515 216.491-291.712 404.906-291.712s348.416 122.197 404.907 291.712l-80.981 26.965c-22.669-67.98-66.15-127.104-124.288-169.001-58.133-41.897-127.979-64.441-199.637-64.441s-141.503 22.545-199.639 64.441c-58.135 41.897-101.617 101.021-124.286 169.001l-80.981-26.965zM269.056 431.019c17.018-50.969 49.635-95.295 93.235-126.703s95.974-48.309 149.708-48.309c53.734 0 106.108 16.9 149.709 48.309s76.22 75.734 93.235 126.703l-80.981 27.008c-11.345-33.979-33.088-63.53-62.157-84.469-29.065-20.939-63.983-32.206-99.806-32.206s-70.737 11.267-99.805 32.206c-29.067 20.939-50.812 50.49-62.157 84.469l-80.981-27.008zM298.667 682.667v170.667h426.666v-170.667h-426.666z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["router-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 904,
+ "id": 1445,
+ "name": "router-line",
+ "prevSize": 32,
+ "code": 60501
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 853
+ },
+ {
+ "icon": {
+ "paths": [
+ "M790.912 834.859c-77.423 67.085-176.469 103.949-278.912 103.808-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667 0 91.136-28.587 175.616-77.227 244.907l-136.107-244.907h128c-0.009-78.669-27.187-154.92-76.941-215.855-49.758-60.935-119.031-102.814-196.113-118.551-77.077-15.737-157.225-4.367-226.885 32.188s-124.555 96.049-155.399 168.419c-30.844 72.372-35.742 153.174-13.868 228.737 21.875 75.567 69.18 141.257 133.913 185.963 64.733 44.702 142.921 65.673 221.334 59.362 78.417-6.31 152.247-39.514 208.998-93.99l42.539 76.587z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["restart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 905,
+ "id": 1444,
+ "name": "restart-line",
+ "prevSize": 32,
+ "code": 60502
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 854
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 533.333c0 13.355 19.669 36.608 65.28 59.435 59.051 29.525 142.805 47.232 233.387 47.232s174.336-17.707 233.387-47.232c45.611-22.827 65.28-46.080 65.28-59.435v-92.629c-70.4 43.52-178.048 71.296-298.667 71.296s-228.267-27.819-298.667-71.296v92.629zM810.667 654.037c-70.4 43.52-178.048 71.296-298.667 71.296s-228.267-27.819-298.667-71.296v92.629c0 13.355 19.669 36.608 65.28 59.435 59.051 29.525 142.805 47.232 233.387 47.232s174.336-17.707 233.387-47.232c45.611-22.827 65.28-46.080 65.28-59.435v-92.629zM128 746.667v-426.667c0-106.027 171.947-192 384-192s384 85.973 384 192v426.667c0 106.027-171.947 192-384 192s-384-85.973-384-192zM512 426.667c90.581 0 174.336-17.707 233.387-47.232 45.611-22.827 65.28-46.080 65.28-59.435s-19.669-36.608-65.28-59.435c-59.051-29.525-142.805-47.232-233.387-47.232s-174.336 17.707-233.387 47.232c-45.611 22.827-65.28 46.080-65.28 59.435s19.669 36.608 65.28 59.435c59.051 29.525 142.805 47.232 233.387 47.232z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["database-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 906,
+ "id": 1443,
+ "name": "database-2-line",
+ "prevSize": 32,
+ "code": 60503
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 855
+ },
+ {
+ "icon": {
+ "paths": [
+ "M241.963 181.632l330.368 330.368-60.331 60.331-269.653-269.653c-50.253 64.809-75.493 145.544-71.101 227.439 4.392 81.89 38.121 159.462 95.017 218.526s133.155 95.667 214.826 103.117c81.673 7.45 163.294-14.758 229.935-62.554s113.847-117.986 132.979-197.734c19.136-79.748 8.917-163.716-28.783-236.547s-100.365-129.653-176.525-160.072c-76.16-30.419-160.725-32.401-238.225-5.583l-65.536-65.536c55.577-25.376 115.972-38.473 177.066-38.4 235.648 0 426.667 191.019 426.667 426.666s-191.019 426.667-426.667 426.667c-235.648 0-426.666-191.019-426.666-426.667-0.064-63.241 13.959-125.705 41.052-182.85s66.575-107.538 115.577-147.517v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scan-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 907,
+ "id": 1442,
+ "name": "scan-line",
+ "prevSize": 32,
+ "code": 60504
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 856
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682.667v213.333h-768v-213.333h85.333v128h597.333v-128h85.333zM128 469.333h768v85.333h-768v-85.333zM896 341.333h-85.333v-128h-597.333v128h-85.333v-213.333h768v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qr-scan-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 908,
+ "id": 1441,
+ "name": "qr-scan-line",
+ "prevSize": 32,
+ "code": 60505
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 857
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 466.688c75.195-9.498 145.095-43.739 198.688-97.333 53.595-53.594 87.835-123.493 97.333-198.688h-296.021v296.021zM213.333 552.576v300.757h597.333v-682.667h-215.467c-9.865 97.92-53.265 189.421-122.854 259.012-69.591 69.589-161.093 112.99-259.012 122.854v0.043zM170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM640 682.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hard-drive-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 909,
+ "id": 1440,
+ "name": "hard-drive-line",
+ "prevSize": 32,
+ "code": 60506
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 858
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h-85.333v-42.667h-170.667v-85.333h-85.333v85.333h-170.667v597.333h426.667v-128h85.333v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM640 341.333l213.333 170.667-213.333 170.667v-128h-42.667c-44.971 0-85.333 40.533-85.333 85.333v128h-85.333v-128c0-45.265 17.98-88.674 49.988-120.678 32.004-32.009 75.413-49.988 120.678-49.988h42.667v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-share-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 910,
+ "id": 1439,
+ "name": "battery-share-line",
+ "prevSize": 32,
+ "code": 60507
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 859
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 512h128l-213.333 298.667v-213.333h-128l213.333-298.667v213.333zM469.333 256h-170.667v597.333h426.667v-597.333h-170.667v-85.333h-85.333v85.333zM384 170.667v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-2-charge-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 911,
+ "id": 1438,
+ "name": "battery-2-charge-line",
+ "prevSize": 32,
+ "code": 60508
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 860
+ },
+ {
+ "icon": {
+ "paths": [
+ "M611.883 513.28l185.301 185.301-241.323 241.323h-85.333v-285.269l-186.197 186.197-60.373-60.331 246.571-246.528v-41.387l-246.571-246.614 60.373-60.331 186.197 186.197v-285.269h85.333l241.323 241.365-185.301 185.344zM555.861 577.877v241.365l120.661-120.661-120.661-120.704zM555.861 448.597l120.661-120.662-120.661-120.661v241.323zM832 576c-16.973 0-33.254-6.741-45.257-18.743-12.002-12.006-18.743-28.284-18.743-45.257s6.741-33.254 18.743-45.257c12.002-12.002 28.284-18.743 45.257-18.743s33.254 6.741 45.257 18.743c12.002 12.002 18.743 28.284 18.743 45.257s-6.741 33.25-18.743 45.257c-12.002 12.002-28.284 18.743-45.257 18.743zM277.333 576c-16.974 0-33.253-6.741-45.255-18.743-12.002-12.006-18.745-28.284-18.745-45.257s6.743-33.254 18.745-45.257c12.002-12.002 28.281-18.743 45.255-18.743s33.253 6.741 45.255 18.743c12.002 12.002 18.745 28.284 18.745 45.257s-6.743 33.25-18.745 45.257c-12.002 12.002-28.281 18.743-45.255 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bluetooth-connect-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 912,
+ "id": 1437,
+ "name": "bluetooth-connect-line",
+ "prevSize": 32,
+ "code": 60509
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 861
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 725.333v-42.667h-128v-128h128v85.333h85.333v85.333h-42.667v85.333h-85.333v85.333h-85.333v-128h85.333v-42.667h42.667zM896 896h-170.667v-85.333h85.333v-85.333h85.333v170.667zM128 128h341.333v341.333h-341.333v-341.333zM213.333 213.333v170.667h170.667v-170.667h-170.667zM554.667 128h341.333v341.333h-341.333v-341.333zM640 213.333v170.667h170.667v-170.667h-170.667zM128 554.667h341.333v341.333h-341.333v-341.333zM213.333 640v170.667h170.667v-170.667h-170.667zM768 554.667h128v85.333h-128v-85.333zM256 256h85.333v85.333h-85.333v-85.333zM256 682.667h85.333v85.333h-85.333v-85.333zM682.667 256h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qr-code-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 913,
+ "id": 1436,
+ "name": "qr-code-line",
+ "prevSize": 32,
+ "code": 60510
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 862
+ },
+ {
+ "icon": {
+ "paths": [
+ "M267.307 162.432l48.939 69.931c-59.47 41.633-104.117 101.141-127.456 169.882s-24.155 143.13-2.329 212.365c21.827 69.235 65.158 129.711 123.7 172.638s129.247 66.069 201.84 66.069c72.593 0 143.296-23.142 201.839-66.069s101.875-103.403 123.703-172.638c21.824-69.235 21.009-143.625-2.33-212.365-23.343-68.74-67.989-128.249-127.458-169.882l48.939-69.931c56.235 39.314 102.14 91.625 133.824 152.485 31.68 60.86 48.201 128.471 48.149 197.083 0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c-0.049-68.612 16.469-136.223 48.151-197.083s77.59-113.171 133.823-152.485v0zM469.333 512v-426.667h85.333v426.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shut-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 914,
+ "id": 1435,
+ "name": "shut-down-line",
+ "prevSize": 32,
+ "code": 60511
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 863
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170.667v682.667h512v-519.339l-163.328-163.328h-348.672zM213.333 85.333h426.667l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM554.667 426.667v341.333h-85.333v-256h-128v-85.333h213.333zM341.333 554.667h85.333v85.333h-85.333v-85.333zM597.333 554.667h85.333v85.333h-85.333v-85.333zM597.333 426.667h85.333v85.333h-85.333v-85.333zM341.333 682.667h85.333v85.333h-85.333v-85.333zM597.333 682.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sim-card-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 915,
+ "id": 1434,
+ "name": "sim-card-2-line",
+ "prevSize": 32,
+ "code": 60512
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 864
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 469.333h597.333v-256h-597.333v256zM896 170.667v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17zM810.667 554.667h-597.333v256h597.333v-256zM298.667 640h128v85.333h-128v-85.333zM298.667 298.667h128v85.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["server-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 916,
+ "id": 1433,
+ "name": "server-line",
+ "prevSize": 32,
+ "code": 60513
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 865
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 768v85.333l85.333 42.667v42.667h-341.332l-0.171-42.496 85.502-42.837v-85.333h-299.006c-5.603-0.034-11.144-1.173-16.305-3.349-5.162-2.18-9.843-5.359-13.775-9.348-3.932-3.994-7.037-8.721-9.139-13.914s-3.157-10.752-3.106-16.354v-554.069c0-23.723 19.413-42.965 42.325-42.965h768.681c23.381 0 42.325 19.157 42.325 42.965v554.069c0 23.723-19.413 42.965-42.325 42.965h-299.008zM170.668 213.333v384h682.665v-384h-682.665z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mac-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 917, "id": 1432, "name": "mac-line", "prevSize": 32, "code": 60514 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 866
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333zM768 170.667h-512v682.667h512v-682.667zM512 298.667c46.421-0.005 91.58 15.132 128.619 43.115s63.94 67.284 76.625 111.94c12.681 44.655 10.449 92.228-6.353 135.505-16.806 43.273-47.266 79.885-86.763 104.277l-90.795-181.504h106.667c0-25.314-7.505-50.065-21.572-71.113-14.063-21.050-34.057-37.456-57.442-47.144-23.39-9.688-49.126-12.223-73.958-7.284-24.828 4.939-47.637 17.13-65.537 35.031-17.901 17.9-30.092 40.709-35.031 65.537-4.939 24.832-2.404 50.569 7.284 73.958 9.688 23.386 26.094 43.379 47.144 57.442 21.047 14.067 45.798 21.572 71.113 21.572l40.747 81.451c-29.18 5.645-59.217 5.129-88.188-1.51-28.971-6.643-56.233-19.264-80.041-37.060-23.807-17.792-43.633-40.363-58.208-66.266s-23.577-54.566-26.428-84.147c-2.851-29.585 0.511-59.439 9.871-87.65 9.36-28.209 24.511-54.151 44.482-76.163s44.321-39.608 71.489-51.66c27.166-12.052 56.555-18.295 86.277-18.327v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["device-recover-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 918,
+ "id": 1431,
+ "name": "device-recover-line",
+ "prevSize": 32,
+ "code": 60515
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 867
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 810.667h-213.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h282.667l-49.792 85.333h-190.208v426.667h170.667v85.333zM528 810.667l49.792-85.333h190.208v-426.667h-170.667v-85.333h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-282.667zM896 384h85.333v256h-85.333v-256zM512 469.333h128l-213.333 341.333v-256h-128l213.333-341.333v256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-charge-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 919,
+ "id": 1430,
+ "name": "battery-charge-line",
+ "prevSize": 32,
+ "code": 60516
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 868
+ },
+ {
+ "icon": {
+ "paths": [
+ "M87.465 554.667h85.845c10.412 82.479 50.563 158.323 112.92 213.303s142.634 85.316 225.77 85.316c83.132 0 163.409-30.336 225.766-85.316s102.507-130.825 112.922-213.303h85.888c-21.419 215.595-203.349 384-424.576 384-221.229 0-403.159-168.405-424.535-384v0zM87.465 469.333c21.333-215.595 203.264-384 424.535-384 221.269 0 403.157 168.405 424.533 384h-85.845c-10.415-82.479-50.564-158.324-112.922-213.304s-142.635-85.316-225.766-85.316c-83.136 0-163.412 30.336-225.77 85.316s-102.508 130.825-112.92 213.304h-85.845zM512 597.333c-22.635 0-44.339-8.99-60.343-24.994-16-16.004-24.992-37.709-24.992-60.339s8.992-44.335 24.992-60.339c16.004-16.004 37.709-24.994 60.343-24.994 22.63 0 44.335 8.99 60.339 24.994 16 16.004 24.994 37.709 24.994 60.339s-8.994 44.335-24.994 60.339c-16.004 16.004-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gradienter-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 920,
+ "id": 1429,
+ "name": "gradienter-line",
+ "prevSize": 32,
+ "code": 60517
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 869
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 333.995v519.339h512v-682.667h-348.672l-163.328 163.328zM183.168 286.208l200.832-200.875h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-579.669c0.003-11.315 4.499-22.166 12.501-30.165v0.043zM640 213.333h85.333v170.667h-85.333v-170.667zM512 213.333h85.333v170.667h-85.333v-170.667zM384 256h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sd-card-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 921,
+ "id": 1428,
+ "name": "sd-card-line",
+ "prevSize": 32,
+ "code": 60518
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 870
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 298.667v426.667h597.333v-426.667h-597.333zM128 213.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM896 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 922,
+ "id": 1427,
+ "name": "battery-line",
+ "prevSize": 32,
+ "code": 60519
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 871
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 170.667v682.667h426.667v-682.667h-426.667zM256 85.333h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["smartphone-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 923,
+ "id": 1426,
+ "name": "smartphone-line",
+ "prevSize": 32,
+ "code": 60520
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 872
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170.667v682.667h512v-682.667h-512zM213.333 85.333h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tablet-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 924,
+ "id": 1425,
+ "name": "tablet-line",
+ "prevSize": 32,
+ "code": 60521
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 873
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.334 170.667c0-23.552 19.413-42.667 42.325-42.667h768.682c23.381 0 42.325 18.987 42.325 42.667v597.333c0 23.552-19.413 42.667-42.325 42.667h-768.682c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.333zM170.668 213.333v512h682.666v-512h-682.666zM213.334 853.333h597.332v85.333h-597.332v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tv-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 925,
+ "id": 1424,
+ "name": "tv-2-line",
+ "prevSize": 32,
+ "code": 60522
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 874
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 341.333h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333zM725.333 341.333v-170.667h-512v597.333h298.667v-384c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM597.333 426.667v426.667h256v-426.667h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["device-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 926,
+ "id": 1423,
+ "name": "device-line",
+ "prevSize": 32,
+ "code": 60523
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 875
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512zM725.333 170.667h-426.667v682.667h426.667v-682.667zM640 640v85.333h-85.333v-85.333h85.333zM469.333 640v85.333h-85.333v-85.333h85.333zM554.667 256v85.333h85.333v85.333h-85.376l0.043 85.333h-85.333l-0.043-85.333h-85.291v-85.333h85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["remote-control-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 927,
+ "id": 1422,
+ "name": "remote-control-2-line",
+ "prevSize": 32,
+ "code": 60524
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 876
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 85.333l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667zM604.629 170.667h-348.629v682.667h512v-519.296l-163.371-163.371zM554.667 682.667h-85.333v-256h-42.667v-85.333h128v341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dual-sim-1-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 928,
+ "id": 1421,
+ "name": "dual-sim-1-line",
+ "prevSize": 32,
+ "code": 60525
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 877
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 554.667v42.667c0 118.187-28.331 232.32-81.707 334.763l-9.685 17.92-74.539-41.557c49.493-88.747 77.227-188.16 80.299-291.669l0.299-19.456v-42.667h85.333zM469.333 426.667h85.333v170.667l-0.213 16.171c-3.226 116.809-43.426 229.581-114.816 322.091l-9.856 12.373-66.133-53.931c65.126-79.535 102.187-178.342 105.429-281.088l0.256-15.616v-170.667zM512 256c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849h-85.333c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.49-90.509-37.49c-33.95 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.509v128c0 95.36-34.987 185.344-96.896 255.019l-9.045 9.813-61.781-58.88c49.918-52.228 79.114-120.841 82.133-193.024l0.256-12.928v-128c0-56.579 22.476-110.841 62.484-150.849s94.269-62.484 150.849-62.484v0zM512 85.334c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v128c0 72.448-8.619 143.787-25.472 212.907l-5.931 22.997-82.347-22.443c16.725-61.312 26.155-124.672 28.075-189.227l0.341-24.235v-128c0-55.43-15.424-109.766-44.548-156.928s-70.801-85.288-120.358-110.112c-49.562-24.824-105.054-35.367-160.265-30.448s-107.963 25.105-152.354 58.299l-60.8-60.843c67.988-54.473 152.54-84.097 239.659-83.968v0zM211.968 229.675l60.843 60.8c-36.594 48.778-57.299 107.631-59.307 168.576l-0.171 10.283 0.171 85.333c0 47.787-11.264 93.995-32.512 135.552l-6.656 12.373-74.112-42.325c16.213-28.373 25.685-60.032 27.563-93.141l0.384-12.459v-85.333c-0.253-87.111 29.318-171.684 83.797-239.658v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fingerprint-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 929,
+ "id": 1420,
+ "name": "fingerprint-line",
+ "prevSize": 32,
+ "code": 60526
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 878
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 725.333c45.264 0 88.673 17.98 120.68 49.988 32.006 32.004 49.987 75.413 49.987 120.678h-170.667v-170.667zM128 426.667c259.2 0 469.333 210.133 469.333 469.333h-85.333c0-101.841-40.457-199.514-112.471-271.531-72.014-72.013-169.686-112.469-271.529-112.469v-85.333zM128 128c424.149 0 768 343.851 768 768h-85.333c0-377.045-305.621-682.667-682.667-682.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rss-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 930, "id": 1419, "name": "rss-line", "prevSize": 32, "code": 60527 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 879
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM256 298.667h128v426.667h-128v-426.667zM426.667 298.667h85.333v426.667h-85.333v-426.667zM554.667 298.667h42.667v426.667h-42.667v-426.667zM640 298.667h128v426.667h-128v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["barcode-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 931,
+ "id": 1418,
+ "name": "barcode-box-line",
+ "prevSize": 32,
+ "code": 60528
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 880
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 85.333h469.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-896h85.333v85.333zM298.667 384h426.667v-213.333h-426.667v213.333zM298.667 469.333v384h426.667v-384h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cellphone-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 932,
+ "id": 1417,
+ "name": "cellphone-line",
+ "prevSize": 32,
+ "code": 60529
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 881
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 128h256v213.333h-85.333v-128h-170.667v-85.333zM384 128v85.333h-170.667v128h-85.333v-213.333h256zM640 896v-85.333h170.667v-128h85.333v213.333h-256zM384 896h-256v-213.333h85.333v128h170.667v85.333zM128 469.333h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qr-scan-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 933,
+ "id": 1416,
+ "name": "qr-scan-2-line",
+ "prevSize": 32,
+ "code": 60530
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 882
+ },
+ {
+ "icon": {
+ "paths": [
+ "M611.883 513.28l185.301 185.301-241.323 241.323h-85.333v-285.269l-186.196 186.197-60.373-60.331 246.57-246.528v-41.387l-246.57-246.614 60.373-60.331 186.196 186.197v-285.269h85.333l241.323 241.365-185.301 185.344zM555.861 577.877v241.365l120.661-120.661-120.661-120.704zM555.861 448.597l120.661-120.662-120.661-120.661v241.323z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bluetooth-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 934,
+ "id": 1415,
+ "name": "bluetooth-line",
+ "prevSize": 32,
+ "code": 60531
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 883
+ },
+ {
+ "icon": {
+ "paths": [
+ "M304.299 884.779c-66.402-36.992-121.714-91.051-160.211-156.591s-58.782-140.177-58.754-216.188c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667c0.026 76.011-20.258 150.647-58.752 216.188-38.498 65.54-93.811 119.599-160.213 156.591l-38.229-76.416c65.323-37.367 116.463-95.279 145.468-164.719s34.249-146.517 14.916-219.249c-19.332-72.729-62.161-137.030-121.818-182.902-59.661-45.872-132.804-70.742-208.060-70.742s-148.401 24.87-208.059 70.742c-59.658 45.871-102.485 110.173-121.818 182.902-19.333 72.731-14.089 149.809 14.916 219.249s80.146 127.351 145.468 164.719l-38.187 76.416zM380.757 731.861c-48.113-28.723-85.474-72.439-106.35-124.437-20.876-52.002-24.113-109.414-9.216-163.435 14.897-54.017 47.107-101.655 91.686-135.605s99.067-52.335 155.101-52.335c56.034 0 110.524 18.385 155.102 52.335s76.787 81.588 91.686 135.605c14.895 54.020 11.657 111.433-9.216 163.435-20.877 51.998-58.236 95.714-106.351 124.437l-38.315-76.672c30.882-20.036 54.46-49.519 67.213-84.049 12.753-34.534 13.999-72.265 3.55-107.563-10.445-35.298-32.026-66.271-61.517-88.3-29.495-22.029-65.318-33.931-102.131-33.931s-72.636 11.902-102.13 33.931c-29.493 22.029-51.073 53.002-61.52 88.3s-9.201 73.028 3.552 107.563c12.753 34.53 36.33 64.013 67.212 84.049l-38.357 76.672zM512 682.667l128 256h-256l128-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gps-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 935, "id": 1414, "name": "gps-line", "prevSize": 32, "code": 60532 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 884
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM256 298.667h85.333v85.333h-85.333v-85.333zM256 469.333h85.333v85.333h-85.333v-85.333zM256 640h512v85.333h-512v-85.333zM469.333 469.333h85.333v85.333h-85.333v-85.333zM469.333 298.667h85.333v85.333h-85.333v-85.333zM682.667 298.667h85.333v85.333h-85.333v-85.333zM682.667 469.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["keyboard-box-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 936,
+ "id": 1413,
+ "name": "keyboard-box-line",
+ "prevSize": 32,
+ "code": 60533
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 885
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-426.667v682.667h213.333v85.333h-256c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512zM768 512c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v42.667h42.667v213.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-256c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h42.667v-42.667c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491zM853.333 768h-170.667v85.333h170.667v-85.333zM768 597.333c-21.675 0-42.667 19.2-42.667 42.667v42.667h85.333v-42.667c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-lock-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 937,
+ "id": 1412,
+ "name": "phone-lock-line",
+ "prevSize": 32,
+ "code": 60534
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 886
+ },
+ {
+ "icon": {
+ "paths": [
+ "M241.963 181.632l330.368 330.368-60.331 60.331-147.029-147.029c-18.887 32.021-26.801 69.337-22.538 106.269s20.468 71.462 46.153 98.342c25.685 26.88 59.444 44.634 96.145 50.569s74.334-0.277 107.183-17.694c32.849-17.412 59.11-45.077 74.795-78.784s19.934-71.612 12.1-107.955c-7.834-36.343-27.319-69.136-55.492-93.391-28.177-24.254-63.505-38.645-100.608-40.983l-77.013-77.013c58.206-15.609 120.055-10.183 174.656 15.323s98.453 69.457 123.836 124.115c25.382 54.656 30.669 116.519 14.929 174.691s-51.499 108.928-100.979 143.326c-49.481 34.402-109.513 50.244-169.523 44.74-60.015-5.508-116.159-32.009-158.554-74.842-42.394-42.829-68.32-99.243-73.212-159.309s11.564-119.931 46.469-169.058l-60.971-60.971c-50.881 65.594-76.113 147.481-70.975 230.336s40.296 160.998 98.892 219.802c58.596 58.807 136.613 94.242 219.451 99.674 82.833 5.431 164.813-19.511 230.583-70.157 65.775-50.65 110.839-123.529 126.754-205.005 15.915-81.472 1.596-165.955-40.286-237.632-41.877-71.677-108.442-125.636-187.23-151.777-78.793-26.141-164.407-22.672-240.827 9.757l-64.085-64.043c60.916-31.828 128.644-48.402 197.376-48.299 235.648 0 426.667 191.019 426.667 426.666s-191.019 426.667-426.667 426.667c-235.648 0-426.666-191.019-426.666-426.667-0.064-63.241 13.959-125.705 41.052-182.85s66.575-107.538 115.577-147.518v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scan-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 938,
+ "id": 1411,
+ "name": "scan-2-line",
+ "prevSize": 32,
+ "code": 60535
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 887
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 768h512v-512h-512v512zM597.333 853.333h-170.667v85.333h-85.333v-85.333h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128h-85.333v-85.333h85.333v-170.667h-85.333v-85.333h85.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-85.333h85.333v85.333h170.667v-85.333h85.333v85.333h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h85.333v85.333h-85.333v170.667h85.333v85.333h-85.333v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v85.333h-85.333v-85.333zM341.333 341.333h341.333v341.333h-341.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cpu-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 939, "id": 1410, "name": "cpu-line", "prevSize": 32, "code": 60536 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 888
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-256c0.009-28.57-2.176-57.097-6.528-85.333h219.861v-597.333h-682.667v134.528c-28.236-4.354-56.764-6.536-85.333-6.528v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM554.667 896h-85.333c0-101.841-40.457-199.514-112.471-271.531-72.014-72.013-169.686-112.469-271.529-112.469v-85.333c259.2 0 469.333 210.133 469.333 469.333zM384 896h-85.333c0-28.015-5.518-55.757-16.239-81.638s-26.435-49.399-46.245-69.21c-19.81-19.81-43.327-35.524-69.21-46.246s-53.624-16.239-81.639-16.239v-85.333c79.212 0 155.178 31.467 211.189 87.479 56.011 56.009 87.477 131.977 87.477 211.187v0zM213.333 896h-128v-128c33.948 0 66.505 13.487 90.51 37.491s37.49 56.563 37.49 90.509v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cast-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 940,
+ "id": 1409,
+ "name": "cast-line",
+ "prevSize": 32,
+ "code": 60537
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 889
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 170.667c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v170.667c0 67.895-26.97 133.009-74.982 181.018-48.009 48.013-113.122 74.982-181.018 74.982h-426.667c-67.895 0-133.010-26.97-181.019-74.982-48.009-48.009-74.981-113.122-74.981-181.018v-170.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981h426.667zM725.333 256h-426.667c-43.786 0-85.898 16.829-117.624 47.007s-50.64 71.395-52.829 115.127l-0.213 8.533v170.667c0 43.785 16.829 85.897 47.007 117.623s71.395 50.641 115.127 52.83l8.533 0.213h426.667c43.785 0 85.897-16.828 117.623-47.006s50.641-71.394 52.83-115.127l0.213-8.533v-170.667c0-43.786-16.828-85.898-47.006-117.624s-71.394-50.64-115.127-52.829l-8.533-0.213zM426.667 384v85.333h85.333v85.333h-85.376l0.043 85.333h-85.333l-0.043-85.333h-85.291v-85.333h85.333v-85.333h85.333zM768 554.667v85.333h-85.333v-85.333h85.333zM682.667 384v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gamepad-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 941,
+ "id": 1408,
+ "name": "gamepad-line",
+ "prevSize": 32,
+ "code": 60538
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 890
+ },
+ {
+ "icon": {
+ "paths": [
+ "M475.349 170.667c-67.499 0-101.845 7.211-133.461 24.107-26.367 13.873-47.908 35.414-61.781 61.781-16.896 31.573-24.107 65.963-24.107 133.419v243.968c0 67.499 7.211 101.845 24.107 133.461 14.379 26.88 34.901 47.403 61.781 61.781 31.573 16.896 65.963 24.107 133.461 24.107h73.301c67.499 0 101.845-7.211 133.461-24.107 26.368-13.871 47.906-35.413 61.781-61.781 16.896-31.573 24.107-65.963 24.107-133.461v-243.968c0-67.499-7.211-101.845-24.107-133.461-13.875-26.367-35.413-47.908-61.781-61.781-31.573-16.853-65.963-24.064-133.419-24.064h-73.344zM475.349 85.333h73.301c85.931 0 132.011 11.861 173.739 34.176 41.229 21.824 74.944 55.539 96.768 96.768 22.315 41.728 34.176 87.808 34.176 173.739v243.968c0 85.931-11.861 132.011-34.176 173.739-21.824 41.229-55.539 74.944-96.768 96.768-41.728 22.315-87.808 34.176-173.739 34.176h-73.344c-85.931 0-132.011-11.861-173.739-34.176-41.229-21.824-74.944-55.539-96.768-96.768-22.272-41.728-34.133-87.808-34.133-173.739v-244.011c0-85.931 11.861-132.011 34.176-173.739 21.842-41.219 55.572-74.92 96.811-96.725 41.685-22.315 87.765-34.176 173.696-34.176zM469.333 256h85.333v213.333h-85.333v-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mouse-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 942,
+ "id": 1407,
+ "name": "mouse-line",
+ "prevSize": 32,
+ "code": 60539
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 891
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 298.667v426.667h597.333v-426.667h-597.333zM128 213.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM213.333 341.333h170.667v341.333h-170.667v-341.333zM896 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-low-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 943,
+ "id": 1406,
+ "name": "battery-low-line",
+ "prevSize": 32,
+ "code": 60540
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 892
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM554.667 170.667h-85.333v85.333h-170.667v597.333h426.667v-597.333h-170.667v-85.333zM554.667 384v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128v-128h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-saver-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 944,
+ "id": 1405,
+ "name": "battery-saver-line",
+ "prevSize": 32,
+ "code": 60541
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 893
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 512c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v384h-85.333v-341.333h-341.334v341.333h-85.333v-384c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h426.668zM512 682.667v85.333h-85.334v-85.333h85.334zM512 256c47.548-0.014 94.161 13.215 134.618 38.204 40.452 24.989 73.148 60.752 94.417 103.279l-76.373 38.187c-14.17-28.367-35.959-52.225-62.925-68.901-26.97-16.675-58.052-25.509-89.758-25.509-31.71 0-62.788 8.833-89.758 25.509-26.968 16.676-48.758 40.535-62.926 68.901l-76.331-38.187c21.27-42.527 53.965-78.289 94.418-103.279s87.066-38.218 134.618-38.204v0zM512 85.333c79.245-0.017 156.928 22.036 224.346 63.687s121.903 101.255 157.35 172.131l-76.331 38.187c-28.356-56.705-71.945-104.393-125.879-137.717s-116.087-50.968-179.486-50.955c-63.403-0.014-125.551 17.63-179.487 50.955s-97.524 81.012-125.879 137.717l-76.373-38.187c35.45-70.883 89.941-130.491 157.367-172.143s145.12-63.701 224.373-63.676v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["remote-control-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 945,
+ "id": 1404,
+ "name": "remote-control-line",
+ "prevSize": 32,
+ "code": 60542
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 894
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 512h-597.333v341.333h597.333v-341.333zM213.333 426.667v-341.333h597.333v341.333h42.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h42.667zM298.667 426.667h426.667v-256h-426.667v256zM384 256h85.333v85.333h-85.333v-85.333zM554.667 256h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["u-disk-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 946,
+ "id": 1403,
+ "name": "u-disk-line",
+ "prevSize": 32,
+ "code": 60543
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 895
+ },
+ {
+ "icon": {
+ "paths": [
+ "M657.664 213.333h238.677c23.381 0 42.325 18.987 42.325 42.667v597.334c0 23.552-19.413 42.667-42.325 42.667h-768.682c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.334c0-23.552 19.413-42.667 42.325-42.667h238.677l-108.203-108.203 60.331-60.331 168.532 168.533h50.005l168.533-168.533 60.331 60.331-108.203 108.203zM170.668 298.666v512h682.666v-512h-682.666z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tv-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 947, "id": 1402, "name": "tv-line", "prevSize": 32, "code": 60544 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 896
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.067 577.408l213.333 284.459c2.377 3.17 3.827 6.938 4.181 10.884s-0.393 7.915-2.167 11.456c-1.771 3.546-4.493 6.524-7.863 8.606s-7.253 3.187-11.217 3.187h-426.666c-3.962 0-7.846-1.105-11.216-3.187s-6.094-5.060-7.866-8.606c-1.772-3.541-2.522-7.509-2.166-11.456s1.803-7.714 4.18-10.884l213.332-284.459c1.988-2.65 4.565-4.8 7.526-6.281s6.229-2.253 9.54-2.253c3.311 0 6.579 0.772 9.54 2.253 2.965 1.481 5.538 3.631 7.526 6.281zM512 696.747l-85.333 113.92h170.667l-85.333-113.92zM768 810.667v-85.333h85.333v-512h-682.666v512h85.333v85.333h-128.341c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.333c0-23.552 19.413-42.667 42.325-42.667h768.682c23.381 0 42.325 18.987 42.325 42.667v597.333c0 23.552-19.413 42.667-42.325 42.667h-128.341z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["airplay-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 948,
+ "id": 1401,
+ "name": "airplay-line",
+ "prevSize": 32,
+ "code": 60545
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 897
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 85.333v85.333h-128l-0.043 426.667h597.333l0.043-426.667h-128v-85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM810.624 682.667h-597.333l0.043 170.667h597.333l-0.043-170.667zM725.333 725.333v85.333h-85.333v-85.333h85.333zM512 85.333l170.667 170.667h-128v213.333h-85.333v-213.333h-128l170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["uninstall-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 949,
+ "id": 1400,
+ "name": "uninstall-line",
+ "prevSize": 32,
+ "code": 60546
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 898
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.558-597.461c131.84-106.667 299.691-170.539 482.558-170.539zM511.996 640c-29.568 0-58.325 4.992-85.332 14.507l85.332 105.685 85.333-105.685c-26.88-9.387-55.765-14.507-85.333-14.507zM511.996 213.333c-129.193 0-252.713 35.925-359.252 102.059l217.941 269.824c43.093-19.627 90.878-30.549 141.31-30.549 50.389 0 98.261 10.923 141.312 30.549l217.941-269.909c-106.581-66.091-230.101-101.973-359.253-101.973z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-1-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 950,
+ "id": 1399,
+ "name": "signal-wifi-1-line",
+ "prevSize": 32,
+ "code": 60547
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 899
+ },
+ {
+ "icon": {
+ "paths": [
+ "M533.589 154.582l-43.648 75.605c-124.159-37.504-235.263-19.2-273.535 47.147-50.261 87.040 33.707 241.152 199.595 336.938s341.332 91.392 391.594 4.395c38.315-66.347-1.408-171.691-95.957-260.48l43.648-75.605c131.499 115.584 190.421 267.52 126.208 378.752-79.36 137.472-306.731 143.147-508.159 26.88-201.429-116.395-310.187-316.117-230.827-453.546 64.213-111.232 225.28-136.192 391.082-80.085zM677.717 75.648l73.899 42.667-213.333 369.493-73.899-42.667 213.333-369.493zM287.233 853.333h438.1v85.333h-511.274c-7.616 0.154-15.133-1.749-21.761-5.504-6.629-3.75-12.125-9.22-15.914-15.829-3.724-6.494-5.683-13.85-5.683-21.333s1.959-14.839 5.683-21.333l96-166.272 73.899 42.667-59.051 102.272z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radar-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 951,
+ "id": 1398,
+ "name": "radar-line",
+ "prevSize": 32,
+ "code": 60548
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 900
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 810.667v-256h426.667v256h85.333v-476.672l-120.661-120.661h-476.672v597.333h85.333zM170.667 128h554.667l170.667 170.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM384 640v170.667h256v-170.667h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["save-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 952,
+ "id": 1397,
+ "name": "save-line",
+ "prevSize": 32,
+ "code": 60549
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 901
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 128c182.784 0 350.72 63.872 482.56 170.496l-53.632 66.389c-117.205-94.763-266.453-151.552-428.928-151.552-131.796 0-254.846 37.333-359.209 102.059l359.209 444.8 256-316.971v135.808l-256 316.971-482.558-597.461c131.84-106.667 299.691-170.539 482.558-170.539zM938.662 810.667v85.333h-85.333v-85.333h85.333zM938.662 426.667v298.667h-85.333v-298.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-error-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 953,
+ "id": 1396,
+ "name": "signal-wifi-error-line",
+ "prevSize": 32,
+ "code": 60550
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 902
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 597.333h597.333v-426.667h-597.333v426.667zM213.333 682.667v170.667h597.333v-170.667h-597.333zM170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM640 725.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hard-drive-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 954,
+ "id": 1395,
+ "name": "hard-drive-2-line",
+ "prevSize": 32,
+ "code": 60551
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 903
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 725.333h768v85.333h-768v-85.333zM128 469.333h128v128h-128v-128zM341.333 469.333h128v128h-128v-128zM128 213.333h128v128h-128v-128zM554.667 213.333h128v128h-128v-128zM768 213.333h128v128h-128v-128zM554.667 469.333h128v128h-128v-128zM768 469.333h128v128h-128v-128zM341.333 213.333h128v128h-128v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["keyboard-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 955,
+ "id": 1394,
+ "name": "keyboard-line",
+ "prevSize": 32,
+ "code": 60552
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 904
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c30.464 0 58.453 10.667 80.469 28.416l-80.469 99.584-80.469-99.584c22.758-18.436 51.174-28.471 80.469-28.416v0zM119.806 59.435l754.22 754.261-60.331 60.331-221.013-221.013c-26.022-8.636-53.265-13.030-80.683-13.013-60.928 0-116.908 21.291-160.855 56.832l-53.589-66.389c56.067-45.419 125.137-71.812 197.207-75.349l-110.764-110.763c-60.921 17.267-117.704 46.72-166.912 86.571l-53.675-66.389c45.987-37.239 97.642-66.869 153.003-87.765l-97.451-97.493c-48.508 23.1-94.121 51.843-135.893 85.632l-53.674-66.347c39.040-31.573 81.194-59.349 125.952-82.859l-95.915-95.872 60.373-60.373zM618.667 438.827l-97.451-97.408-9.216-0.085c132.053 0 253.312 46.123 348.587 123.178l-53.675 66.389c-54.976-44.535-119.343-76.019-188.245-92.075v0zM512 128c182.827 0 350.72 63.872 482.56 170.539l-53.632 66.347c-121.331-98.276-272.794-151.792-428.928-151.552-37.461 0-74.24 2.987-110.082 8.832l-72.32-72.405c58.411-14.208 119.554-21.76 182.402-21.76z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wifi-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 956,
+ "id": 1393,
+ "name": "wifi-off-line",
+ "prevSize": 32,
+ "code": 60553
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 905
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-188.501 0-341.333 152.832-341.333 341.333s152.832 341.333 341.333 341.333c188.501 0 341.333-152.832 341.333-341.333s-152.832-341.333-341.333-341.333zM512 213.333c43.435 0 84.693 9.259 121.941 25.941l-66.688 66.645c-17.621-4.693-36.139-7.253-55.253-7.253-117.803 0-213.333 95.531-213.333 213.333 0 58.88 23.893 112.213 62.464 150.869l-60.331 60.331-6.656-6.869c-50.091-53.419-80.811-125.312-80.811-204.331 0-164.949 133.717-298.667 298.667-298.667zM784.725 390.101c16.64 37.205 25.941 78.507 25.941 121.899 0 82.475-33.451 157.141-87.467 211.2l-60.331-60.331c38.571-38.656 62.464-91.989 62.464-150.869 0-19.115-2.517-37.632-7.253-55.253l66.645-66.645zM692.992 270.635l60.373 60.331-158.891 158.976c1.877 7.040 2.859 14.421 2.859 22.059 0 47.147-38.187 85.333-85.333 85.333s-85.333-38.187-85.333-85.333c0-47.147 38.187-85.333 85.333-85.333 7.637 0 15.019 0.981 22.059 2.859l158.933-158.891z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dashboard-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 957,
+ "id": 1392,
+ "name": "dashboard-2-line",
+ "prevSize": 32,
+ "code": 60554
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 906
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 170.667c-188.501 0-341.333 152.832-341.333 341.333s152.832 341.333 341.333 341.333c188.501 0 341.333-152.832 341.333-341.333s-152.832-341.333-341.333-341.333zM675.541 313.045c10.112-7.083 23.851-5.888 32.555 2.859 8.704 8.704 9.813 22.443 2.688 32.427-93.013 129.963-144.213 199.595-153.515 208.939-25.003 24.96-65.536 24.96-90.539 0-24.96-25.003-24.96-65.536 0-90.539 15.957-15.915 85.547-67.157 208.811-153.685zM746.667 469.333c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM277.333 469.333c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM376.235 315.904c16.64 16.64 16.64 43.648 0 60.331-16.64 16.64-43.691 16.64-60.331 0s-16.64-43.691 0-60.331c16.64-16.64 43.648-16.64 60.331 0zM512 234.667c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dashboard-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 958,
+ "id": 1391,
+ "name": "dashboard-3-line",
+ "prevSize": 32,
+ "code": 60555
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 907
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 85.333l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667zM604.629 170.667h-348.629v682.667h512v-519.296l-163.371-163.371zM512 320c25.877 0 51.149 7.844 72.482 22.499 21.329 14.654 37.717 35.43 47.002 59.587 9.28 24.157 11.025 50.56 4.996 75.729-6.029 25.165-19.541 47.915-38.763 65.246l-0.341-0.341 0.256 0.427-60.245 54.187h102.613v85.333h-256v-61.995l156.587-140.971c5.278-4.762 9.28-10.769 11.648-17.468 2.364-6.703 3.021-13.892 1.903-20.911s-3.972-13.649-8.299-19.286c-4.331-5.637-10.001-10.103-16.495-12.992s-13.606-4.111-20.693-3.552c-7.087 0.558-13.922 2.877-19.883 6.747s-10.863 9.168-14.255 15.412c-3.396 6.246-5.175 13.239-5.18 20.348h-85.333c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dual-sim-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 959,
+ "id": 1390,
+ "name": "dual-sim-2-line",
+ "prevSize": 32,
+ "code": 60556
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 908
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 810.667v-426.667h-298.667v426.667h298.667zM469.333 298.667v-128c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM554.667 213.333v597.333h298.667v-597.333h-298.667zM213.333 682.667h213.333v85.333h-213.333v-85.333zM597.333 682.667h213.333v85.333h-213.333v-85.333zM597.333 554.667h213.333v85.333h-213.333v-85.333zM597.333 426.667h213.333v85.333h-213.333v-85.333zM213.333 554.667h213.333v85.333h-213.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["database-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 960,
+ "id": 1389,
+ "name": "database-line",
+ "prevSize": 32,
+ "code": 60557
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 909
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 256h-170.667v597.333h426.667v-597.333h-170.667v-85.333h-85.333v85.333zM384 170.667v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 961,
+ "id": 1388,
+ "name": "battery-2-line",
+ "prevSize": 32,
+ "code": 60558
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 910
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.805 59.435l754.217 754.261-60.331 60.331-157.141-157.099-144.555 179.072-482.558-597.461c38.997-31.573 81.152-59.349 125.867-82.859l-95.829-95.872 60.331-60.373zM152.701 315.392l359.294 444.8 83.925-103.979-376.958-377.002c-22.699 10.837-44.8 22.869-66.219 36.181h-0.043zM511.996 128c182.784 0 350.72 63.872 482.56 170.496l-230.699 285.568-60.672-60.672 168.064-208.042c-106.581-66.133-230.101-102.016-359.253-102.016-37.248 0-74.027 2.987-110.078 8.832l-72.32-72.405c58.411-14.208 119.55-21.76 182.398-21.76z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 962,
+ "id": 1387,
+ "name": "signal-wifi-off-line",
+ "prevSize": 32,
+ "code": 60559
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 911
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h-85.333v-298.667h-426.667v682.667h170.667v85.333h-213.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512zM640 512c30.093-0.004 59.657 7.949 85.683 23.053 26.031 15.104 47.603 36.826 62.532 62.955 14.925 26.133 22.682 55.744 22.473 85.837-0.209 30.097-8.371 59.601-23.659 85.521l94.293 94.293-60.288 60.373-94.379-94.293c-22.609 13.312-47.983 21.231-74.15 23.142s-52.42-2.236-76.723-12.122c-24.303-9.882-46.003-25.233-63.407-44.864-17.408-19.631-30.054-43.012-36.958-68.322-6.903-25.314-7.876-51.874-2.846-77.623 5.026-25.754 15.927-49.997 31.846-70.848 15.923-20.855 36.437-37.756 59.951-49.395 23.514-11.635 49.395-17.694 75.631-17.707v0zM640 597.333c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-find-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 963,
+ "id": 1386,
+ "name": "phone-find-line",
+ "prevSize": 32,
+ "code": 60560
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 912
+ },
+ {
+ "icon": {
+ "paths": [
+ "M167.637 210.305l60.331 60.331c-61.781 61.781-99.968 147.115-99.968 241.364 0 94.293 38.187 179.627 99.968 241.365l-60.288 60.288c-77.269-77.184-125.013-183.851-125.013-301.653s47.787-224.468 124.971-301.695zM856.363 210.305c77.227 77.227 124.971 183.893 124.971 301.695s-47.787 224.512-124.971 301.696l-60.331-60.331c61.781-61.781 99.968-147.115 99.968-241.365s-38.187-179.54-99.925-241.322l60.288-60.373zM554.667 213.334v255.999h128l-213.333 341.333v-256h-128l213.333-341.332zM288.299 330.966l60.373 60.373c-30.891 30.848-50.005 73.514-50.005 120.66s19.115 89.813 50.005 120.661l-60.373 60.373c-46.293-46.336-74.965-110.336-74.965-181.035s28.672-134.698 74.965-181.034zM735.744 331.009c46.293 46.336 74.923 110.335 74.923 180.991 0 70.699-28.672 134.699-74.965 181.035l-60.373-60.373c30.891-30.848 50.005-73.515 50.005-120.661 0-47.104-19.072-89.77-49.92-120.618l60.331-60.373z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wireless-charging-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 964,
+ "id": 1385,
+ "name": "wireless-charging-line",
+ "prevSize": 32,
+ "code": 60561
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 913
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333v85.333h-170.667v682.667h426.667v-384h85.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333zM554.667 298.667c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34h-85.333v-85.333zM554.667 170.667c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849h-85.333c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49v-85.333zM554.667 42.667c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359h-85.333c0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hotspot-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 965,
+ "id": 1384,
+ "name": "hotspot-line",
+ "prevSize": 32,
+ "code": 60562
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 914
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.668 682.667h682.665v-469.333h-682.665v469.333zM554.667 768v85.333h170.667v85.333h-426.665v-85.333h170.665v-85.333h-341.673c-5.603-0.034-11.144-1.173-16.305-3.349-5.162-2.18-9.843-5.359-13.775-9.348-3.932-3.994-7.037-8.721-9.139-13.914s-3.157-10.752-3.106-16.354v-554.069c0-23.723 19.413-42.965 42.325-42.965h768.681c23.381 0 42.325 19.157 42.325 42.965v554.069c0 23.723-19.413 42.965-42.325 42.965h-341.675z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["computer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 966,
+ "id": 1383,
+ "name": "computer-line",
+ "prevSize": 32,
+ "code": 60563
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 915
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.558-597.461c131.84-106.667 299.691-170.539 482.558-170.539zM511.996 213.333c-129.193 0-252.713 35.925-359.252 102.059l359.252 444.8 359.253-444.885c-106.581-66.091-230.101-101.973-359.253-101.973z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 967,
+ "id": 1382,
+ "name": "signal-wifi-line",
+ "prevSize": 32,
+ "code": 60564
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 916
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 170.667v247.168c-0.006 28.237-11.207 55.317-31.147 75.307l-54.187 54.4v305.792h512v-682.667h-426.667zM298.667 85.333h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-366.080c0.003-11.294 4.483-22.127 12.459-30.123l66.645-66.901c3.988-3.998 6.228-9.414 6.229-15.061v-289.835c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM640 213.333h85.333v170.667h-85.333v-170.667zM512 213.333h85.333v170.667h-85.333v-170.667zM384 213.333h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sd-card-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 968,
+ "id": 1381,
+ "name": "sd-card-mini-line",
+ "prevSize": 32,
+ "code": 60565
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 917
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l128 213.333h-85.333v314.923l128-63.957-0.043-37.632h-42.624v-170.667h170.667v170.667h-42.709l0.043 90.368-213.333 106.667v66.261c49.749 17.579 85.333 64.981 85.333 120.704 0 70.699-57.301 128-128 128s-128-57.301-128-128c0-50.645 29.44-94.421 72.107-115.2l-200.107-140.8-0.043-96.768c-25.472-14.763-42.624-42.325-42.624-73.899 0-47.147 38.187-85.333 85.333-85.333s85.333 38.187 85.333 85.333c0 31.573-17.152 59.179-42.667 73.899v54.101l128 89.003v-387.669h-85.333l128-213.333zM512 810.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["usb-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 969, "id": 1380, "name": "usb-line", "prevSize": 32, "code": 60566 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 918
+ },
+ {
+ "icon": {
+ "paths": [
+ "M29.437 298.54c136.494-110.578 306.895-170.799 482.558-170.539 182.827 0 350.72 63.872 482.56 170.539l-53.589 66.389c-121.331-98.301-272.811-151.832-428.971-151.595-162.516 0-311.721 56.747-428.969 151.595l-53.589-66.389zM163.453 464.512c98.586-79.871 221.664-123.368 348.542-123.178 132.011 0 253.269 46.123 348.544 123.135l-53.632 66.389c-83.418-67.567-187.558-104.361-294.912-104.192-111.7 0-214.313 39.040-294.91 104.192l-53.632-66.347zM297.512 630.485c60.666-49.156 136.404-75.93 214.484-75.819 81.237 0 155.861 28.373 214.485 75.776l-53.632 66.389c-45.5-36.855-102.298-56.922-160.853-56.832-60.928 0-116.905 21.291-160.852 56.832l-53.632-66.347zM431.569 796.459c22.746-18.445 51.145-28.493 80.427-28.459 30.464 0 58.453 10.667 80.427 28.416l-80.427 99.584-80.427-99.541z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wifi-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 970,
+ "id": 1379,
+ "name": "wifi-line",
+ "prevSize": 32,
+ "code": 60567
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 919
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.667h85.333v682.667h-85.333v-682.667zM256 170.667h42.667v682.667h-42.667v-682.667zM341.333 170.667h85.333v682.667h-85.333v-682.667zM469.333 170.667h85.333v682.667h-85.333v-682.667zM597.333 170.667h85.333v682.667h-85.333v-682.667zM725.333 170.667h42.667v682.667h-42.667v-682.667zM810.667 170.667h128v682.667h-128v-682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["barcode-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 971,
+ "id": 1378,
+ "name": "barcode-line",
+ "prevSize": 32,
+ "code": 60568
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 920
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667c101.845 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v170.667c0.021 61.794-14.874 122.684-43.418 177.493-28.544 54.805-69.892 101.918-120.538 137.327-50.641 35.409-109.082 58.078-170.359 66.074-61.274 7.996-123.575 1.084-181.61-20.147 5.461-7.552 10.709-15.232 15.744-23.125l7.253-11.947c41.373-69.030 64.157-147.597 66.133-228.053l0.128-12.288v-298.666h85.333v298.666c0.094 73.242-14.366 145.771-42.539 213.376 32.951-0.017 65.677-5.466 96.853-16.128 18.859-58.069 29.568-119.808 30.891-183.893l0.128-13.355v-128.043h85.333v128.043c0 46.421-4.352 91.861-12.715 135.893 29.632-26.795 53.572-59.281 70.387-95.522 16.815-36.237 26.163-75.49 27.49-115.422l0.171-10.283v-170.667c0-55.43-15.424-109.766-44.548-156.928s-70.801-85.288-120.358-110.112c-49.562-24.824-105.054-35.367-160.265-30.448s-107.962 25.105-152.354 58.299l-60.8-60.843c67.988-54.473 152.54-84.097 239.658-83.968v0zM298.667 426.667c0-56.579 22.476-110.841 62.484-150.849s94.269-62.484 150.849-62.484c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849v42.667h-85.333v-42.667c0.034-33.318-12.928-65.336-36.13-89.251-23.198-23.914-54.81-37.839-88.115-38.817-33.301-0.978-65.677 11.069-90.238 33.581-24.563 22.512-39.38 53.715-41.303 86.978l-0.213 7.509v256c0 66.859-17.067 129.707-47.104 184.448l-1.024 1.707c-9.813 17.664-20.949 34.475-33.365 50.304-18.763-12.237-36.422-26.082-52.779-41.387l-13.184-12.8c-69.738-71.603-108.695-167.65-108.544-267.605v-170.667c0-90.666 31.403-173.994 83.968-239.658l60.843 60.8c-36.594 48.778-57.299 107.631-59.307 168.576l-0.171 10.282v170.667c0 71.467 25.088 137.045 66.987 188.459 11.017-29.769 17.155-61.12 18.176-92.843l0.171-10.283v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fingerprint-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 972,
+ "id": 1377,
+ "name": "fingerprint-2-line",
+ "prevSize": 32,
+ "code": 60569
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 921
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554.667l256 384h-511.999l255.999-384zM512 708.267l-96.426 145.067h192.852l-96.427-145.067zM466.773 450.56c-6.289-5.858-11.332-12.924-14.827-20.774-3.499-7.852-5.38-16.327-5.534-24.92-0.149-8.593 1.429-17.129 4.651-25.098 3.217-7.969 8.009-15.208 14.084-21.286 6.080-6.077 13.316-10.868 21.286-14.087s16.508-4.8 25.101-4.648c8.593 0.151 17.067 2.032 24.917 5.53s14.916 8.541 20.774 14.829c11.307 12.132 17.459 28.179 17.169 44.759-0.294 16.581-7.010 32.4-18.735 44.125-11.729 11.729-27.546 18.445-44.126 18.735-16.58 0.294-32.627-5.862-44.762-17.165v0zM225.324 118.741l60.373 60.373c-60.004 60.011-93.713 141.398-93.713 226.261 0 84.864 33.709 166.251 93.713 226.262l-60.373 60.373c-37.645-37.641-67.507-82.325-87.881-131.507s-30.86-101.892-30.86-155.128c0-53.234 10.486-105.947 30.86-155.128s50.236-93.868 87.881-131.507v0zM798.592 118.741c37.645 37.639 67.507 82.326 87.881 131.507s30.861 101.894 30.861 155.128c0 53.236-10.487 105.946-30.861 155.128s-50.236 93.867-87.881 131.507l-60.373-60.373c60.006-60.011 93.713-141.397 93.713-226.262 0-84.863-33.707-166.251-93.713-226.261l60.373-60.373zM346.028 239.402l60.331 60.331c-13.868 13.867-24.87 30.33-32.375 48.449s-11.369 37.539-11.369 57.151c0 19.612 3.863 39.032 11.369 57.152 7.506 18.116 18.507 34.581 32.375 48.448l-60.331 60.331c-44.006-44.011-68.729-103.697-68.729-165.931 0-62.236 24.722-121.923 68.729-165.931v0zM677.888 239.402c44.006 44.008 68.727 103.695 68.727 165.931 0 62.234-24.721 121.92-68.727 165.931l-60.331-60.331c13.871-13.867 24.87-30.332 32.375-48.448 7.505-18.121 11.371-37.54 11.371-57.152s-3.866-39.032-11.371-57.151c-7.505-18.119-18.505-34.582-32.375-48.449l60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["base-station-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 973,
+ "id": 1376,
+ "name": "base-station-line",
+ "prevSize": 32,
+ "code": 60570
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 922
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170.667v682.667h512v-519.339l-163.328-163.328h-348.672zM213.333 85.333h426.667l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM341.333 512h341.333v256h-341.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sim-card-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 974,
+ "id": 1375,
+ "name": "sim-card-line",
+ "prevSize": 32,
+ "code": 60571
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 923
+ },
+ {
+ "icon": {
+ "paths": [
+ "M399.616 455.765c40.034 70.336 98.283 128.585 168.619 168.619l37.717-52.821c6.067-8.495 15.036-14.468 25.207-16.798 10.176-2.325 20.847-0.845 30.003 4.169 60.343 32.977 126.985 52.813 195.541 58.197 10.701 0.849 20.685 5.696 27.968 13.581s11.328 18.223 11.328 28.958v190.379c0.004 10.564-3.913 20.753-10.991 28.595s-16.815 12.779-27.324 13.858c-22.613 2.347-45.397 3.499-68.352 3.499-365.227 0-661.333-296.107-661.333-661.333 0-22.955 1.152-45.739 3.499-68.352 1.077-10.509 6.015-20.244 13.858-27.322s18.032-10.994 28.596-10.992h190.379c10.733-0.001 21.073 4.043 28.957 11.326s12.734 17.27 13.582 27.97c5.385 68.556 25.22 135.197 58.197 195.541 5.013 9.155 6.494 19.829 4.169 30.003-2.33 10.174-8.303 19.142-16.798 25.207l-52.821 37.717zM292.011 427.733l81.067-57.899c-23.007-49.66-38.769-102.364-46.805-156.501h-112.512c-0.256 7.083-0.384 14.208-0.384 21.333-0.043 318.123 257.835 576 575.957 576 7.125 0 14.251-0.128 21.333-0.427v-112.512c-54.135-8.038-106.842-23.799-156.501-46.805l-57.899 81.067c-23.309-9.058-45.952-19.75-67.755-32l-2.475-1.408c-83.686-47.629-152.991-116.932-200.619-200.619l-1.408-2.475c-12.249-21.803-22.943-44.446-32-67.755v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 975,
+ "id": 1374,
+ "name": "phone-line",
+ "prevSize": 32,
+ "code": 60572
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 924
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 213.333c0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v224.213c52.181 36.335 91.405 88.371 111.962 148.544 20.557 60.169 21.372 125.329 2.334 185.997-19.042 60.663-56.947 113.673-108.198 151.305-51.255 37.632-113.178 57.924-176.764 57.924s-125.51-20.292-176.762-57.924c-51.253-37.632-89.158-90.641-108.199-151.305-19.041-60.668-18.223-125.828 2.333-185.997 20.557-60.173 59.78-112.209 111.961-148.544v-224.213zM390.144 507.52c-37.283 25.946-65.312 63.113-80.006 106.095-14.694 42.978-15.286 89.527-1.69 132.868s40.67 81.207 77.282 108.092c36.611 26.889 80.848 41.387 126.271 41.387s89.66-14.498 126.272-41.387c36.608-26.884 63.684-64.751 77.282-108.092 13.594-43.341 13.001-89.89-1.694-132.868-14.69-42.982-42.722-80.149-80.004-106.095l-36.523-25.472v-268.715c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34v268.715l-36.523 25.472zM469.333 517.376v-304.043h85.333v304.043c40.128 10.483 75.068 35.217 98.295 69.577s33.156 75.998 27.93 117.141c-5.222 41.143-25.246 78.98-56.324 106.445-31.078 27.46-71.091 42.675-112.567 42.795-41.57 0.043-81.724-15.091-112.927-42.556s-51.311-65.37-56.548-106.607c-5.237-41.237 4.756-82.97 28.104-117.363s58.444-59.081 98.705-69.431zM512 768c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["temp-hot-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 976,
+ "id": 1373,
+ "name": "temp-hot-line",
+ "prevSize": 32,
+ "code": 60573
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 925
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.338 896h-426.666c-60.449 0.038-118.961-21.316-165.176-60.284-46.215-38.963-77.151-93.026-87.33-152.61-10.179-59.588 1.056-120.853 31.715-172.949s78.765-91.663 135.798-111.695c-1.932-40.377 4.352-80.726 18.473-118.603s35.783-72.493 63.675-101.752c27.892-29.259 61.434-52.551 98.592-68.465 37.158-15.915 77.162-24.121 117.584-24.121s80.427 8.206 117.585 24.121c37.158 15.915 70.699 39.207 98.594 68.465 27.891 29.259 49.553 63.875 63.676 101.752 14.118 37.877 20.403 78.226 18.47 118.603 57.033 20.031 105.139 59.599 135.799 111.695s41.894 113.361 31.714 172.949c-10.18 59.584-41.114 113.647-87.33 152.61-46.212 38.967-104.725 60.322-165.175 60.284zM298.672 810.667h426.666c23.155-0.043 46.054-4.796 67.315-13.969 21.257-9.173 40.427-22.575 56.341-39.39 15.915-16.819 28.241-36.698 36.228-58.428s11.469-44.86 10.236-67.981c-1.233-23.121-7.159-45.747-17.417-66.505s-24.631-39.211-42.244-54.238c-17.613-15.027-38.101-26.313-60.215-33.169s-45.393-9.143-68.42-6.716c14.34-32.478 20.348-68.017 17.481-103.4s-14.519-69.492-33.899-99.235c-19.383-29.743-45.879-54.179-77.090-71.093s-66.15-25.774-101.649-25.774c-35.499 0-70.438 8.859-101.648 25.774-31.211 16.915-57.707 41.351-77.088 71.093s-31.033 63.851-33.9 99.235c-2.868 35.383 3.14 70.922 17.479 103.4-23.026-2.428-46.304-0.141-68.419 6.716s-42.602 18.142-60.216 33.169c-17.615 15.027-31.988 33.481-42.244 54.238s-16.183 43.383-17.417 66.505c-1.234 23.121 2.248 46.251 10.236 67.981s20.314 41.609 36.228 58.428c15.914 16.815 35.084 30.217 56.342 39.39s44.161 13.926 67.314 13.969z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloudy-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 977,
+ "id": 1372,
+ "name": "cloudy-2-line",
+ "prevSize": 32,
+ "code": 60574
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 926
+ },
+ {
+ "icon": {
+ "paths": [
+ "M405.33 256c-73.553 0-144.094 29.219-196.105 81.229s-81.229 122.551-81.229 196.104c0 73.553 29.219 144.094 81.229 196.105s122.551 81.229 196.105 81.229h298.665c26.931-0.026 53.555-5.717 78.144-16.704 24.585-10.987 46.588-27.021 64.572-47.066 17.988-20.041 31.556-43.644 39.825-69.274s11.055-52.71 8.175-79.488c-2.88-26.778-11.362-52.646-24.892-75.93-13.53-23.287-31.804-43.465-53.641-59.226-21.841-15.761-46.746-26.752-73.109-32.256-26.359-5.507-53.585-5.407-79.906 0.294-20.506-51.638-56.051-95.927-102.020-127.133s-100.254-47.887-155.813-47.886zM703.996 896h-298.665c-63.137-0.017-125.176-16.512-179.98-47.859s-100.476-76.463-132.497-130.876c-32.021-54.413-49.281-116.245-50.074-179.375-0.793-63.134 14.909-125.378 45.553-180.58s75.168-101.446 129.168-134.161c54-32.715 115.605-50.765 178.721-52.366s125.559 13.303 181.145 43.238c55.59 29.935 102.4 73.863 135.804 127.44 72.862 2.205 141.926 33.007 192.252 85.743s77.862 123.166 76.655 196.049c-1.203 72.887-31.057 142.366-83.098 193.408s-122.086 79.543-194.982 79.339z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloudy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 978,
+ "id": 1371,
+ "name": "cloudy-line",
+ "prevSize": 32,
+ "code": 60575
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 927
+ },
+ {
+ "icon": {
+ "paths": [
+ "M259.541 554.667c-6.167-36.693-4.262-74.291 5.584-110.174 9.846-35.884 27.396-69.19 51.427-97.597s53.967-51.235 87.721-66.893c33.754-15.658 70.516-23.769 107.726-23.769s73.971 8.111 107.725 23.769c33.754 15.658 63.689 38.485 87.723 66.893 24.030 28.408 41.583 61.713 51.426 97.597 9.847 35.883 11.755 73.481 5.585 110.174h-87.168c6.481-25.212 7.113-51.571 1.839-77.065s-16.307-49.442-32.26-70.014c-15.949-20.572-36.399-37.222-59.772-48.677-23.377-11.454-49.067-17.409-75.098-17.409s-51.721 5.955-75.098 17.409c-23.375 11.455-43.821 28.105-59.773 48.677s-26.986 44.521-32.259 70.014c-5.273 25.493-4.644 51.853 1.839 77.065h-87.168zM85.333 640h426.667v85.333h-426.667v-85.333zM597.333 640h341.333v85.333h-341.333v-85.333zM682.667 810.667h170.667v85.333h-170.667v-85.333zM170.667 810.667h426.667v85.333h-426.667v-85.333zM469.333 42.667h85.333v128h-85.333v-128zM149.973 210.304l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM813.653 149.973l60.331 60.331-90.496 90.496-60.331-60.331 90.496-90.496zM981.333 469.333v85.333h-128v-85.333h128zM170.667 469.333v85.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["haze-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 979,
+ "id": 1370,
+ "name": "haze-line",
+ "prevSize": 32,
+ "code": 60576
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 928
+ },
+ {
+ "icon": {
+ "paths": [
+ "M448 725.333h-277.333v-85.333h277.333c27.251 0.013 53.986 7.479 77.295 21.594 23.313 14.118 42.321 34.342 54.959 58.492 12.638 24.145 18.428 51.29 16.738 78.49-1.685 27.2-10.782 53.423-26.304 75.823-15.526 22.4-36.881 40.124-61.76 51.251s-52.326 15.236-79.373 11.883c-27.045-3.358-52.657-14.050-74.059-30.925-21.402-16.87-37.78-39.279-47.357-64.794l79.915-29.995c4.104 10.935 11.121 20.54 20.294 27.772s20.146 11.819 31.738 13.257c11.593 1.438 23.356-0.32 34.018-5.090s19.814-12.365 26.47-21.965c6.652-9.6 10.551-20.834 11.277-32.495 0.725-11.657-1.758-23.287-7.172-33.638-5.414-10.347-13.559-19.017-23.552-25.067-9.988-6.050-21.444-9.254-33.126-9.259zM213.333 469.333h576c27.251 0.013 53.986 7.479 77.295 21.594 23.313 14.118 42.321 34.342 54.959 58.492 12.638 24.145 18.428 51.29 16.738 78.49-1.685 27.2-10.782 53.423-26.304 75.823-15.526 22.396-36.881 40.124-61.76 51.251s-52.326 15.236-79.373 11.883c-27.046-3.358-52.655-14.050-74.061-30.925-21.402-16.87-37.777-39.279-47.356-64.794l79.915-29.995c4.105 10.935 11.123 20.54 20.292 27.772 9.173 7.232 20.147 11.819 31.74 13.257s23.356-0.32 34.018-5.090c10.662-4.77 19.814-12.365 26.47-21.965 6.652-9.6 10.551-20.834 11.277-32.495 0.725-11.657-1.758-23.287-7.172-33.638-5.414-10.347-13.559-19.017-23.552-25.067-9.988-6.050-21.444-9.254-33.126-9.259h-576c-33.948 0-66.505-13.483-90.51-37.491-24.005-24.004-37.49-56.559-37.49-90.509 0-33.946 13.486-66.504 37.49-90.508s56.562-37.49 90.51-37.49h362.667c11.682-0.005 23.138-3.206 33.126-9.257 9.993-6.051 18.138-14.72 23.552-25.069s7.898-21.982 7.172-33.639c-0.725-11.658-4.625-22.895-11.277-32.495-6.656-9.6-15.808-17.196-26.47-21.964s-22.426-6.529-34.018-5.089c-11.593 1.44-22.566 6.024-31.74 13.256-9.169 7.232-16.188 16.836-20.292 27.771l-79.915-29.952c12.309-32.734 35.712-60.111 66.129-77.363 30.421-17.251 65.929-23.283 100.339-17.044s65.54 24.354 87.966 51.188c22.43 26.833 34.731 60.685 34.761 95.657 0 39.605-15.731 77.589-43.738 105.594s-65.988 43.739-105.596 43.739h-362.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.169c0 11.315 4.495 22.17 12.497 30.17 8.002 8.004 18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["windy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 980,
+ "id": 1369,
+ "name": "windy-line",
+ "prevSize": 32,
+ "code": 60577
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 929
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 256c-0.015 59.736 15.646 118.43 45.423 170.217 29.773 51.786 72.619 94.854 124.25 124.895s110.242 46.007 169.98 46.302c59.733 0.294 118.502-15.091 170.428-44.625-20.523 216.491-202.88 385.877-424.747 385.877-235.648 0-426.667-191.019-426.667-426.667 0-221.867 169.387-404.224 385.877-424.747-29.286 51.411-44.643 109.579-44.544 168.747zM170.667 512c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972 60.309-0.004 119.539-15.974 171.678-46.289 52.134-30.31 95.317-73.886 125.154-126.298-13.483 1.28-27.136 1.92-40.832 1.92-235.648 0-426.667-191.019-426.667-426.667 0-13.696 0.64-27.307 1.92-40.832-52.41 29.838-95.986 73.019-126.299 125.155s-46.284 111.367-46.287 171.677zM774.997 97.749l35.669 8.917v42.667l-35.669 8.917c-15.002 3.752-28.702 11.509-39.637 22.444-10.931 10.934-18.692 24.634-22.443 39.636l-8.917 35.669h-42.667l-8.917-35.669c-3.75-15.002-11.511-28.702-22.443-39.636-10.935-10.935-24.636-18.692-39.637-22.444l-35.669-8.917v-42.667l35.669-8.917c14.993-3.759 28.685-11.519 39.612-22.453s18.675-24.63 22.426-39.627l8.96-35.669h42.667l8.917 35.669c3.75 15.002 11.511 28.702 22.443 39.636 10.935 10.935 24.636 18.692 39.637 22.444zM988.331 311.083l35.669 8.917v42.667l-35.669 8.917c-15.002 3.752-28.702 11.509-39.637 22.444-10.931 10.934-18.692 24.634-22.443 39.636l-8.917 35.669h-42.667l-8.917-35.669c-3.75-15.002-11.511-28.702-22.443-39.636-10.935-10.935-24.636-18.692-39.637-22.444l-35.669-8.917v-42.667l35.669-8.917c15.002-3.752 28.702-11.509 39.637-22.444 10.931-10.934 18.692-24.634 22.443-39.636l8.917-35.669h42.667l8.917 35.669c3.75 15.002 11.511 28.702 22.443 39.636 10.935 10.935 24.636 18.692 39.637 22.444z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-clear-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 981,
+ "id": 1368,
+ "name": "moon-clear-line",
+ "prevSize": 32,
+ "code": 60578
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 930
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 981.333c84.868 0 166.263-33.715 226.274-93.726s93.726-141.406 93.726-226.274c0-36.949-9.813-72.405-21.333-105.387-71.125 70.272-125.141 105.387-162.133 105.387 170.453-298.667 76.8-426.667-179.2-597.333 21.333 213.333-119.297 310.357-176.556 364.245-46.706 43.934-79.136 100.885-93.087 163.469-13.95 62.588-8.776 127.919 14.851 187.529s64.617 110.75 117.656 146.782c53.039 36.036 115.679 55.305 179.802 55.309zM542.293 223.36c138.283 117.333 138.965 208.512 32.128 395.691-32.469 56.875 8.619 127.616 74.112 127.616 29.355 0 59.051-8.533 90.411-25.387-9.297 35.115-26.615 67.593-50.598 94.874-23.979 27.281-53.965 48.623-87.599 62.349-33.63 13.722-69.986 19.452-106.21 16.734-36.22-2.718-71.317-13.807-102.525-32.393s-57.675-44.164-77.317-74.718c-19.642-30.554-31.924-65.25-35.877-101.359s0.529-72.64 13.095-106.722c12.565-34.078 32.871-64.777 59.318-89.677 5.376-5.035 32.64-29.227 33.835-30.293 18.091-16.213 32.981-30.592 47.703-46.336 52.48-56.235 90.197-118.613 109.483-190.379h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fire-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 982,
+ "id": 1367,
+ "name": "fire-line",
+ "prevSize": 32,
+ "code": 60579
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 931
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 768v-85.333h21.333c24.623-0.004 48.858-6.097 70.558-17.732 21.696-11.635 40.179-28.454 53.803-48.96 13.628-20.51 21.969-44.066 24.29-68.578 2.317-24.508-1.459-49.212-10.995-71.91s-24.538-42.688-43.669-58.185c-19.127-15.499-41.796-26.027-65.975-30.648-24.183-4.621-49.135-3.191-72.631 4.162s-44.809 20.402-62.046 37.986v-2.135c-0.017-46.929-12.932-92.951-37.338-133.036-24.401-40.084-59.358-72.689-101.039-94.252s-88.489-31.252-135.306-28.010c-46.817 3.242-91.842 19.29-130.155 46.391s-68.439 64.213-87.085 107.279c-18.647 43.066-25.097 90.428-18.645 136.91 6.452 46.485 25.556 90.3 55.227 126.66s68.764 63.863 113.009 79.509v89.131c-56.588-14.643-108.468-43.575-150.669-84.019s-73.308-91.051-90.342-146.965c-17.033-55.915-19.422-115.267-6.938-172.371s39.424-110.044 78.238-153.749c38.814-43.705 88.201-76.711 143.429-95.855s114.448-23.784 171.986-13.476c57.536 10.308 111.458 35.219 156.608 72.346 45.146 37.127 80 85.225 101.227 139.688 32.090-6.14 65.105-5.512 96.934 1.844s61.777 21.276 87.915 40.87c26.142 19.595 47.902 44.431 63.893 72.92 15.987 28.487 25.852 60.001 28.962 92.526 3.106 32.521-0.61 65.331-10.91 96.333-10.304 31.002-26.97 59.511-48.922 83.703-21.956 24.192-48.721 43.533-78.583 56.785s-62.161 20.122-94.831 20.173l-21.333 0.043v-0.043zM554.667 682.88h128l-213.333 277.333v-192h-127.998l213.332-277.547v192.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thunderstorms-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 983,
+ "id": 1366,
+ "name": "thunderstorms-line",
+ "prevSize": 32,
+ "code": 60580
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 932
+ },
+ {
+ "icon": {
+ "paths": [
+ "M369.918 213.635c28.003-59.237 74.707-107.622 132.917-137.699 58.214-30.077 124.698-40.177 189.218-28.744-10.999 33.702-12.45 69.79-4.198 104.266 8.256 34.476 25.89 65.994 50.961 91.062 25.067 25.067 56.585 42.705 91.059 50.959 34.479 8.254 70.566 6.801 104.269-4.196 2.987 16.896 4.523 34.304 4.523 52.053 0.073 50.322-12.625 99.837-36.907 143.916 35.772 31.514 61.099 73.173 72.606 119.441 11.507 46.263 8.649 94.938-8.192 139.537s-46.865 83.017-86.080 110.127c-39.211 27.115-85.756 41.638-133.427 41.647h-362.668c-89.274-0.051-174.975-35.076-238.732-97.566s-100.493-147.473-102.335-236.727c-1.842-89.254 31.358-175.68 92.483-240.746s145.308-103.597 234.504-107.33zM462.805 222.467c53.769 12.813 103.633 38.468 145.318 74.767s73.954 82.162 94.042 133.661c42.261-8.102 85.935-4.486 126.293 10.453 9.643-18.135 16.768-37.762 20.821-58.455-64.525-5.947-124.928-34.292-170.739-80.116-45.807-45.825-74.133-106.24-80.055-170.764-55.415 11.008-104.209 43.535-135.68 90.453zM746.667 810.671c24.619-0.004 48.858-6.097 70.554-17.732s40.179-28.454 53.807-48.96c13.623-20.51 21.965-44.066 24.286-68.578 2.317-24.508-1.459-49.212-10.995-71.91s-24.538-42.688-43.669-58.185c-19.127-15.501-41.792-26.027-65.975-30.647s-49.135-3.191-72.631 4.16c-23.497 7.351-44.809 20.403-62.042 37.986v-2.133c0-50.633-15.014-100.13-43.145-142.228-28.13-42.099-68.113-74.911-114.889-94.287-46.78-19.376-98.253-24.445-147.912-14.568s-95.274 34.259-131.076 70.062c-35.802 35.802-60.184 81.416-70.062 131.075s-4.808 101.133 14.568 147.913c19.376 46.775 52.188 86.758 94.287 114.889s91.594 43.145 142.226 43.145h362.668z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-cloudy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 984,
+ "id": 1365,
+ "name": "moon-cloudy-line",
+ "prevSize": 32,
+ "code": 60581
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 933
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 512h85.333v85.333h-256v-85.333h85.333c0-50.633 15.014-100.127 43.144-142.226s68.111-74.911 114.889-94.287c46.78-19.376 98.253-24.445 147.908-14.568 49.66 9.878 95.275 34.259 131.076 70.062 35.806 35.802 60.186 81.417 70.063 131.078 9.877 49.655 4.809 101.129-14.566 147.908s-52.19 86.758-94.289 114.889c-42.099 28.13-91.593 43.145-142.225 43.145v-85.333c33.754 0 66.752-10.010 94.818-28.762s49.941-45.41 62.857-76.595c12.919-31.185 16.299-65.498 9.711-98.607-6.583-33.105-22.839-63.514-46.707-87.383s-54.276-40.122-87.381-46.708c-33.109-6.585-67.422-3.206-98.607 9.712-31.187 12.917-57.841 34.792-76.594 62.858s-28.762 61.064-28.762 94.817zM256 853.333h384v85.333h-384v-85.333zM85.333 682.667h341.333v85.333h-341.333v-85.333zM469.333 42.667h85.333v128h-85.333v-128zM149.973 210.304l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM723.2 783.531l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM813.696 149.931l60.331 60.373-90.496 90.496-60.331-60.331 90.496-90.539zM981.333 469.333v85.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sun-foggy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 985,
+ "id": 1364,
+ "name": "sun-foggy-line",
+ "prevSize": 32,
+ "code": 60582
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 934
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 722.347c-47.215-27.298-87.203-65.515-116.611-111.445-29.409-45.926-47.384-98.236-52.42-152.542s3.015-109.028 23.478-159.582c20.463-50.554 52.741-95.47 94.132-130.983s90.69-60.592 143.767-73.135c53.076-12.543 108.386-12.184 161.295 1.045 52.911 13.229 101.879 38.945 142.805 74.992 40.93 36.047 72.623 81.377 92.429 132.192 59.533-11.768 121.31-0.016 172.365 32.789s87.415 84.113 101.449 143.153c14.033 59.042 4.651 121.22-26.18 173.491s-80.713 90.564-139.174 106.846v-90.88c19.721-9.361 37.15-22.925 51.059-39.744 13.909-16.823 23.966-36.489 29.457-57.613 5.487-21.124 6.281-43.196 2.321-64.661-3.964-21.466-12.582-41.801-25.25-59.575s-29.082-32.554-48.077-43.301c-18.999-10.747-40.124-17.199-61.884-18.901s-43.631 1.386-64.068 9.049c-20.437 7.662-38.946 19.712-54.225 35.302v-2.178c0-42.703-10.679-84.727-31.070-122.247s-49.843-69.343-85.675-92.571c-35.836-23.229-76.907-37.125-119.483-40.423-42.575-3.298-85.299 4.106-124.281 21.539s-72.984 44.34-98.91 78.272c-25.926 33.932-42.952 73.81-49.527 116.003s-2.492 85.363 11.879 125.572c14.371 40.213 38.572 76.19 70.401 104.661v104.875zM298.667 682.667h85.333v170.667h-85.333v-170.667zM640 682.667h85.333v170.667h-85.333v-170.667zM469.333 810.667h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["showers-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 986,
+ "id": 1363,
+ "name": "showers-line",
+ "prevSize": 32,
+ "code": 60583
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 935
+ },
+ {
+ "icon": {
+ "paths": [
+ "M753.237 72.531l-118.699 108.075c55.253 16.691 106.112 45.443 148.907 84.181 149.845 136.533 149.845 357.89 0 494.423-110.592 100.693-281.515 164.779-512.684 192.252l118.699-108.070c-55.255-16.691-106.115-45.444-148.907-84.181-149.845-136.533-150.741-357.079 0-494.423 110.592-100.693 281.559-164.779 512.727-192.256h-0.043zM512 255.998c-164.951 0-298.668 114.603-298.668 256.002 0 141.397 133.717 256 298.668 256 164.949 0 298.667-114.603 298.667-256 0-141.399-133.717-256.002-298.667-256.002zM512 354.131c94.293 0 170.667 70.699 170.667 157.869 0 87.168-76.373 157.867-170.667 157.867-94.295 0-170.668-70.699-170.668-157.867 0-87.17 76.373-157.869 170.668-157.869zM512 439.467c-48.555 0-85.335 34.005-85.335 72.533s36.78 72.533 85.335 72.533c48.555 0 85.333-34.005 85.333-72.533s-36.779-72.533-85.333-72.533z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["typhoon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 987,
+ "id": 1362,
+ "name": "typhoon-line",
+ "prevSize": 32,
+ "code": 60584
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 936
+ },
+ {
+ "icon": {
+ "paths": [
+ "M192 426.667c-19.611 0-39.029-3.863-57.147-11.367s-34.58-18.505-48.447-32.372c-13.867-13.867-24.867-30.329-32.372-48.447s-11.367-37.536-11.367-57.147c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.329-24.867 48.447-32.372s37.536-11.367 57.147-11.367c39.606 0 77.589 15.733 105.594 43.739s43.739 65.989 43.739 105.594c0 39.606-15.733 77.589-43.739 105.594s-65.989 43.739-105.594 43.739zM192 341.333c16.974 0 33.253-6.743 45.255-18.745s18.745-28.281 18.745-45.255c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.253 18.745 45.255s28.281 18.745 45.255 18.745zM938.667 426.667h-85.333c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.674 17.981-120.678 49.987c-32.009 32.006-49.988 75.416-49.988 120.68v213.333c0 45.265 17.98 88.674 49.988 120.678 32.004 32.009 75.413 49.988 120.678 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678h85.333c0 67.895-26.97 133.009-74.982 181.018-48.009 48.013-113.122 74.982-181.018 74.982s-133.009-26.97-181.018-74.982c-48.013-48.009-74.982-113.122-74.982-181.018v-213.333c0-67.895 26.97-133.010 74.982-181.019 48.009-48.009 113.122-74.981 181.018-74.981s133.009 26.971 181.018 74.981c48.013 48.009 74.982 113.124 74.982 181.019z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["celsius-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 988,
+ "id": 1361,
+ "name": "celsius-line",
+ "prevSize": 32,
+ "code": 60585
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 937
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM832 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM192 810.667c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743zM725.333 298.667c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485-78.677 0-149.76-44.373-213.333-133.205-63.573 88.832-134.656 133.205-213.333 133.205-56.579 0-110.842-22.477-150.849-62.485-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.27-62.484 150.849-62.484 78.677 0 149.76 44.373 213.333 133.205 63.573-88.832 134.656-133.205 213.333-133.205zM298.667 384c-33.948 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.562 37.491 90.51 37.491c53.504 0 107.093-37.333 160.384-121.771l3.797-6.272-3.84-6.187c-51.072-80.896-102.4-118.613-153.643-121.6l-6.699-0.171zM725.333 384c-53.504 0-107.093 37.333-160.384 121.771l-3.84 6.229 3.84 6.229c51.115 80.896 102.4 118.613 153.685 121.6l6.699 0.171c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49zM512 85.333c8.405 0 16.725 1.655 24.491 4.872s14.822 7.93 20.766 13.873c5.939 5.943 10.654 12.998 13.871 20.763s4.873 16.087 4.873 24.492c0 8.404-1.655 16.727-4.873 24.492s-7.932 14.82-13.871 20.763c-5.943 5.943-13.001 10.657-20.766 13.873s-16.085 4.872-24.491 4.872c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745zM192 85.333c8.404 0 16.727 1.655 24.492 4.872s14.82 7.93 20.763 13.873c5.943 5.943 10.657 12.998 13.873 20.763s4.872 16.087 4.872 24.492c0 8.404-1.655 16.727-4.872 24.492s-7.93 14.82-13.873 20.763c-5.943 5.943-12.998 10.657-20.763 13.873s-16.087 4.872-24.492 4.872c-16.974 0-33.253-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745zM832 85.333c8.405 0 16.725 1.655 24.491 4.872s14.822 7.93 20.766 13.873c5.939 5.943 10.654 12.998 13.871 20.763s4.873 16.087 4.873 24.492c0 8.404-1.655 16.727-4.873 24.492s-7.932 14.82-13.871 20.763c-5.943 5.943-13.001 10.657-20.766 13.873s-16.085 4.872-24.491 4.872c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["haze-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 989,
+ "id": 1360,
+ "name": "haze-2-line",
+ "prevSize": 32,
+ "code": 60586
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 938
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 170.667h170.667v85.333h-170.667v-85.333zM682.667 810.667h170.667v85.333h-170.667v-85.333zM85.333 384h213.333v85.333h-213.333v-85.333zM384 384h128v85.333h-128v-85.333zM597.333 384h256v85.333h-256v-85.333zM170.667 597.333h256v85.333h-256v-85.333zM512 597.333h128v85.333h-128v-85.333zM725.333 597.333h213.333v85.333h-213.333v-85.333zM426.667 170.667h512v85.333h-512v-85.333zM85.333 810.667h512v85.333h-512v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mist-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 990,
+ "id": 1359,
+ "name": "mist-line",
+ "prevSize": 32,
+ "code": 60587
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 939
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 384h341.333l-426.667 640v-384h-298.667l384-640v384zM469.333 469.333v-161.28l-147.968 246.613h233.301v187.477l181.888-272.811h-267.221z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flashlight-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 991,
+ "id": 1358,
+ "name": "flashlight-line",
+ "prevSize": 32,
+ "code": 60588
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 940
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.662 768v-85.333h42.667c26.5-0.013 52.634-6.199 76.331-18.065 23.693-11.87 44.301-29.090 60.186-50.304 15.885-21.21 26.611-45.833 31.33-71.906 4.719-26.078 3.298-52.898-4.143-78.332-7.445-25.434-20.71-48.783-38.746-68.201-18.031-19.418-40.341-34.369-65.156-43.67s-51.452-12.695-77.807-9.914c-26.355 2.781-51.699 11.662-74.027 25.937-10.581-45.072-33.186-86.432-65.408-119.674-32.226-33.243-72.862-57.125-117.581-69.103-44.722-11.978-91.855-11.605-136.38 1.081s-84.778 37.209-116.471 70.958c-31.693 33.749-53.641 75.462-63.505 120.696s-7.279 92.295 7.484 136.178c14.763 43.883 41.149 82.935 76.349 113.011 35.2 30.071 77.897 50.035 123.545 57.766v86.272c-86.139-10.876-164.899-54.161-220.25-121.054-55.352-66.889-83.137-152.358-77.7-239.010 5.437-86.653 43.686-167.978 106.964-227.426s146.831-92.552 233.653-92.574c60.659-0.026 120.23 16.117 172.573 46.767 52.348 30.65 95.578 74.7 125.239 127.612 34.94-6.015 70.746-4.708 105.152 3.838s66.662 24.146 94.724 45.811c28.062 21.665 51.319 48.922 68.297 80.045s27.307 65.434 30.332 100.753c3.025 35.324-1.323 70.891-12.762 104.448-11.439 33.553-29.722 64.367-53.696 90.487-23.97 26.121-53.103 46.976-85.559 61.248-32.452 14.272-67.516 21.645-102.967 21.658h-42.667zM436.561 799.232l75.435-75.435 75.435 75.435c14.916 14.921 25.071 33.924 29.184 54.618 4.113 20.689 2.001 42.133-6.071 61.623-8.077 19.49-21.747 36.147-39.287 47.868-17.54 11.716-38.165 17.971-59.26 17.971s-41.715-6.255-59.255-17.971c-17.545-11.721-31.214-28.378-39.288-47.868s-10.188-40.934-6.075-61.623c4.113-20.693 14.27-39.697 29.184-54.618z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rainy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 992,
+ "id": 1357,
+ "name": "rainy-line",
+ "prevSize": 32,
+ "code": 60589
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 941
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170.667c259.2 0 469.333 210.133 469.333 469.333v213.333h-85.333v-213.333c0-99.883-38.921-195.84-108.506-267.499-69.581-71.661-164.348-113.389-264.188-116.33l-11.307-0.171c-99.884 0.001-195.838 38.922-267.499 108.504s-113.389 164.349-116.33 264.189l-0.171 11.307v213.333h-85.333v-213.333c0-259.2 210.133-469.333 469.333-469.333zM512 341.333c79.211 0 155.179 31.467 211.187 87.479 56.013 56.009 87.479 131.977 87.479 211.187v213.333h-85.333v-213.333c-0.004-54.976-21.227-107.827-59.251-147.533-38.020-39.706-89.903-63.202-144.823-65.587l-9.259-0.213c-54.976 0.004-107.825 21.227-147.532 59.251-39.706 38.020-63.202 89.903-65.588 144.823l-0.213 9.259v213.333h-85.333v-213.333c0-79.211 31.467-155.179 87.477-211.187 56.011-56.013 131.979-87.479 211.189-87.479zM512 512c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v213.333h-85.333v-213.333c0-10.449-3.84-20.535-10.782-28.348-6.946-7.808-16.512-12.796-26.893-14.020l-4.992-0.299c-10.449 0-20.535 3.84-28.348 10.782-7.808 6.946-12.796 16.512-14.020 26.893l-0.299 4.992v213.333h-85.333v-213.333c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rainbow-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 993,
+ "id": 1356,
+ "name": "rainbow-line",
+ "prevSize": 32,
+ "code": 60590
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 942
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c-67.895 0-133.010-26.97-181.019-74.982-48.009-48.009-74.981-113.122-74.981-181.018s26.971-133.010 74.981-181.019c48.009-48.009 113.124-74.981 181.019-74.981s133.009 26.971 181.018 74.981c48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982zM512 682.667c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.415-49.987 120.68s17.981 88.674 49.987 120.678c32.006 32.009 75.415 49.988 120.68 49.988zM469.333 42.667h85.333v128h-85.333v-128zM469.333 853.333h85.333v128h-85.333v-128zM149.973 210.304l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM723.2 783.531l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM813.696 149.931l60.331 60.373-90.496 90.496-60.331-60.331 90.496-90.539zM240.469 723.2l60.331 60.331-90.496 90.496-60.331-60.331 90.496-90.496zM981.333 469.333v85.333h-128v-85.333h128zM170.667 469.333v85.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sun-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 994, "id": 1355, "name": "sun-line", "prevSize": 32, "code": 60591 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 943
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 128h853.333v85.333h-853.333v-85.333zM170.667 298.667h682.667v85.333h-682.667v-85.333zM341.333 469.333h597.333v85.333h-597.333v-85.333zM426.667 640h341.333v85.333h-341.333v-85.333zM341.333 810.667h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tornado-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 995,
+ "id": 1354,
+ "name": "tornado-line",
+ "prevSize": 32,
+ "code": 60592
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 944
+ },
+ {
+ "icon": {
+ "paths": [
+ "M425.986 215.894c17.308-32.963 41.078-62.104 69.886-85.685 28.813-23.581 62.076-41.12 97.813-51.57 35.733-10.45 73.207-13.598 110.182-9.257 36.979 4.342 72.704 16.084 105.045 34.528s60.638 43.21 83.204 72.823c22.566 29.614 38.938 63.468 48.141 99.543s11.046 73.636 5.423 110.44c-5.628 36.804-18.603 72.1-38.161 103.78 34.227 32.23 57.98 73.993 68.186 119.885 10.21 45.888 6.4 93.781-10.935 137.481-17.331 43.699-47.39 81.182-86.281 107.597-38.886 26.411-84.813 40.538-131.823 40.542l-362.665-0.043c-46.574-0.034-92.648-9.6-135.387-28.109s-81.237-45.568-113.126-79.514c-31.889-33.946-56.495-74.057-72.302-117.867-15.807-43.806-22.481-90.389-19.611-136.875s15.222-91.891 36.297-133.425c21.075-41.533 50.427-78.313 86.249-108.078s77.357-51.883 122.047-64.994c44.691-13.111 91.592-16.938 137.816-11.245v0.043zM514.347 239.104c42.62 17.665 81.229 43.759 113.51 76.716s57.574 72.097 74.351 115.070c44.71-8.568 90.94-4.019 133.12 13.099 19.78-42.207 23.531-90.168 10.547-134.936-12.979-44.768-41.801-83.286-81.088-108.367-39.292-25.082-86.362-35.014-132.433-27.945s-88 30.657-117.965 66.364h-0.043zM746.667 810.667c24.623-0.004 48.858-6.093 70.558-17.728 21.696-11.635 40.179-28.459 53.803-48.964 13.628-20.506 21.969-44.062 24.29-68.574 2.317-24.512-1.459-49.216-10.995-71.915-9.536-22.694-24.538-42.684-43.669-58.185-19.127-15.497-41.792-26.027-65.975-30.647s-49.135-3.191-72.631 4.164c-23.497 7.351-44.809 20.399-62.046 37.982v-2.133c0-50.633-15.014-100.126-43.14-142.225-28.13-42.099-68.113-74.911-114.893-94.287-46.775-19.376-98.249-24.446-147.908-14.568s-95.274 34.26-131.076 70.062c-35.802 35.802-60.184 81.418-70.062 131.078s-4.808 101.133 14.568 147.908c19.376 46.78 52.188 86.758 94.287 114.889s91.594 43.145 142.226 43.145h362.665z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sun-cloudy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 996,
+ "id": 1353,
+ "name": "sun-cloudy-line",
+ "prevSize": 32,
+ "code": 60593
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 945
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 512h298.667v85.333h-298.667v298.667h-85.333v-554.667c0-45.264 17.98-88.673 49.988-120.68 32.004-32.006 75.413-49.987 120.678-49.987h298.667v85.333h-298.667c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34v170.667zM192 426.667c-19.611 0-39.029-3.863-57.147-11.367s-34.58-18.505-48.447-32.372c-13.867-13.867-24.867-30.329-32.372-48.447s-11.367-37.536-11.367-57.147c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.329-24.867 48.447-32.372s37.536-11.367 57.147-11.367c39.606 0 77.589 15.733 105.594 43.739s43.739 65.989 43.739 105.594c0 39.606-15.733 77.589-43.739 105.594s-65.989 43.739-105.594 43.739zM192 341.333c16.974 0 33.253-6.743 45.255-18.745s18.745-28.281 18.745-45.255c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.253 18.745 45.255s28.281 18.745 45.255 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fahrenheit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 997,
+ "id": 1352,
+ "name": "fahrenheit-line",
+ "prevSize": 32,
+ "code": 60594
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 946
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256.001 743.168c-73.347-29.781-134.067-84.126-171.773-153.732s-50.056-150.153-34.935-227.859c15.12-77.706 56.769-147.744 117.824-198.135s137.721-78.001 216.884-78.109c68.782-0.004 135.961 20.764 192.737 59.583 56.781 38.819 100.514 93.881 125.47 157.974 59.533-11.768 121.31-0.016 172.365 32.789s87.415 84.113 101.449 143.155c14.033 59.038 4.651 121.22-26.18 173.491-30.831 52.267-80.713 90.564-139.174 106.842v-90.88c19.721-9.357 37.15-22.925 51.059-39.744 13.914-16.819 23.966-36.484 29.457-57.609 5.487-21.129 6.281-43.2 2.321-64.666-3.964-21.461-12.582-41.796-25.25-59.571s-29.077-32.556-48.077-43.303c-18.999-10.747-40.119-17.199-61.884-18.901-21.76-1.702-43.627 1.387-64.064 9.049-20.442 7.663-38.95 19.712-54.229 35.3v-2.176c-0.004-44.936-11.84-89.079-34.313-127.991s-54.793-71.225-93.709-93.689c-38.921-22.464-83.063-34.288-128-34.284-44.936 0.004-89.079 11.836-127.993 34.307s-71.228 54.788-93.693 93.705c-22.466 38.917-34.292 83.062-34.291 127.999 0.002 44.932 11.831 89.079 34.3 127.991 22.469 38.916 54.785 71.232 93.7 93.7v94.763zM426.667 725.333c-22.631 0-44.336-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.991-44.335 24.994-60.339s37.708-24.994 60.339-24.994c22.635 0 44.339 8.99 60.339 24.994 16.004 16.004 24.994 37.709 24.994 60.339s-8.99 44.335-24.994 60.339c-16 16.004-37.705 24.994-60.339 24.994zM640 853.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.635 0 44.339 8.99 60.339 24.994 16.004 16.004 24.994 37.709 24.994 60.339s-8.99 44.335-24.994 60.339c-16 16.004-37.705 24.994-60.339 24.994zM426.667 981.333c-22.631 0-44.336-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.991-44.335 24.994-60.339s37.708-24.994 60.339-24.994c22.635 0 44.339 8.99 60.339 24.994 16.004 16.004 24.994 37.709 24.994 60.339s-8.99 44.335-24.994 60.339c-16 16.004-37.705 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hail-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 998,
+ "id": 1351,
+ "name": "hail-line",
+ "prevSize": 32,
+ "code": 60595
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 947
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 745.472c46.886 42.057 107.678 65.28 170.667 65.195h85.333v85.333h-85.333c-59.921 0.098-118.797-15.654-170.667-45.653-51.866 30.007-110.746 45.756-170.667 45.653-59.921 0.098-118.799-15.654-170.667-45.653-51.866 30.007-110.746 45.756-170.667 45.653h-85.333v-85.333h85.333c65.579 0 125.44-24.661 170.667-65.195 46.888 42.057 107.678 65.28 170.667 65.195 65.579 0 125.44-24.661 170.667-65.195zM536.448 65.364l4.267 3.413 440.619 400.556h-128v256c-29.065 0.038-57.924-4.885-85.333-14.549v-320.087l-256-232.747-256 232.704 0.043 320.087c-23.383 8.269-47.846 13.082-72.619 14.293l-12.757 0.299v-256h-128l440.619-400.556c7.159-6.516 16.324-10.403 25.984-11.023s19.243 2.063 27.179 7.61z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flood-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 999,
+ "id": 1350,
+ "name": "flood-line",
+ "prevSize": 32,
+ "code": 60596
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 948
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 213.333c0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v224.213c52.181 36.335 91.405 88.371 111.962 148.544 20.557 60.169 21.372 125.329 2.334 185.997-19.042 60.663-56.947 113.673-108.198 151.305-51.255 37.632-113.178 57.924-176.764 57.924s-125.51-20.292-176.762-57.924c-51.253-37.632-89.158-90.641-108.199-151.305-19.041-60.668-18.223-125.828 2.333-185.997 20.557-60.173 59.78-112.209 111.961-148.544v-224.213zM390.144 507.52c-37.283 25.946-65.312 63.113-80.006 106.095-14.694 42.978-15.286 89.527-1.69 132.868s40.67 81.207 77.282 108.092c36.611 26.889 80.848 41.387 126.271 41.387s89.66-14.498 126.272-41.387c36.608-26.884 63.684-64.751 77.282-108.092 13.594-43.341 13.001-89.89-1.694-132.868-14.69-42.982-42.722-80.149-80.004-106.095l-36.523-25.472v-268.715c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34v268.715l-36.523 25.472zM341.333 682.667h341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.673-17.98-120.68-49.988c-32.006-32.004-49.987-75.413-49.987-120.678z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["temp-cold-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1000,
+ "id": 1349,
+ "name": "temp-cold-line",
+ "prevSize": 32,
+ "code": 60597
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 949
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 722.347c-47.215-27.298-87.203-65.515-116.611-111.445-29.409-45.926-47.384-98.236-52.42-152.542s3.015-109.028 23.478-159.582c20.463-50.554 52.741-95.47 94.132-130.983s90.69-60.592 143.767-73.135c53.076-12.543 108.386-12.184 161.295 1.045 52.911 13.229 101.879 38.945 142.805 74.992 40.93 36.047 72.623 81.377 92.429 132.192 59.533-11.768 121.31-0.016 172.365 32.789s87.415 84.113 101.449 143.153c14.033 59.042 4.651 121.22-26.18 173.491s-80.713 90.564-139.174 106.846v-90.88c19.721-9.361 37.15-22.925 51.059-39.744 13.909-16.823 23.966-36.489 29.457-57.613 5.487-21.124 6.281-43.196 2.321-64.661-3.964-21.466-12.582-41.801-25.25-59.575s-29.082-32.554-48.077-43.301c-18.999-10.747-40.124-17.199-61.884-18.901s-43.631 1.386-64.068 9.049c-20.437 7.662-38.946 19.712-54.225 35.302v-2.178c0-42.703-10.679-84.727-31.070-122.247s-49.843-69.343-85.675-92.571c-35.836-23.229-76.907-37.125-119.483-40.423-42.575-3.298-85.299 4.106-124.281 21.539s-72.984 44.34-98.91 78.272c-25.926 33.932-42.952 73.81-49.527 116.003s-2.492 85.363 11.879 125.572c14.371 40.213 38.572 76.19 70.401 104.661v104.875zM298.667 597.333h85.333v256h-85.333v-256zM640 597.333h85.333v256h-85.333v-256zM469.333 725.333h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heavy-showers-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1001,
+ "id": 1348,
+ "name": "heavy-showers-line",
+ "prevSize": 32,
+ "code": 60598
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 950
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 42.667v512c-0.009 67.14-17.621 133.107-51.085 191.317-33.459 58.21-81.6 106.628-139.614 140.425-58.014 33.801-123.874 51.797-191.014 52.198-67.14 0.397-133.213-16.815-191.625-49.92s-107.124-80.947-141.275-138.752c-34.152-57.809-52.55-123.558-53.359-190.694-0.809-67.14 15.999-133.314 48.748-191.927s80.293-107.615 137.891-142.118l282.667-163.2v118.187l298.667-137.515zM810.667 175.872l-298.667 137.557v-103.68l-145.195 83.84c-44.809 24.911-82.449 60.941-109.292 104.621s-41.985 93.536-43.967 144.766l-0.213 11.691c-0.038 78.349 30.713 153.579 85.623 209.463 54.911 55.889 129.583 87.962 207.923 89.306 78.336 1.344 154.065-28.151 210.863-82.125 56.794-53.969 90.103-128.098 92.753-206.404l0.171-10.24v-378.795zM512 341.333c56.58 0 110.844 22.476 150.848 62.484 40.009 40.006 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.844 62.484-150.849c40.008-40.008 94.269-62.484 150.849-62.484zM512 426.667c-33.946 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["meteor-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1002,
+ "id": 1347,
+ "name": "meteor-line",
+ "prevSize": 32,
+ "code": 60599
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 951
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 768v-85.333h149.333c24.619 0 48.858-6.093 70.554-17.728 21.7-11.635 40.183-28.454 53.807-48.964 13.623-20.506 21.969-44.062 24.286-68.574 2.321-24.512-1.455-49.216-10.995-71.91-9.536-22.699-24.538-42.688-43.665-58.187-19.132-15.499-41.796-26.027-65.98-30.648s-49.131-3.191-72.627 4.162c-23.497 7.353-44.813 20.402-62.046 37.983v-2.133c0-67.894-26.97-133.009-74.982-181.018-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.018v0.299h-85.333v-0.299c-0.064-79.651 27.729-156.817 78.568-218.135s121.521-102.925 199.806-117.617c78.286-14.692 159.245-1.543 228.855 37.17s123.494 100.552 152.311 174.807c32.098-6.174 65.135-5.574 96.99 1.763s61.824 21.247 87.991 40.84c26.163 19.593 47.949 44.436 63.953 72.938 16.009 28.501 25.882 60.032 28.992 92.573 3.11 32.538-0.614 65.37-10.927 96.388-10.317 31.019-26.999 59.537-48.981 83.733-21.978 24.196-48.772 43.533-78.66 56.768-29.888 13.239-62.212 20.087-94.899 20.105h-149.333zM256 853.333h426.667v85.333h-426.667v-85.333zM256 512h341.333v85.333h-341.333v-85.333zM85.333 682.667h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloud-windy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1003,
+ "id": 1346,
+ "name": "cloud-windy-line",
+ "prevSize": 32,
+ "code": 60600
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 952
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 384c28.459 45.227 42.667 102.144 42.667 170.667 0 128-149.333 170.667-213.333 384-28.459-24.533-42.667-60.075-42.667-106.667 0-148.565 213.333-225.707 213.333-448zM618.667 213.333c28.335 52.401 43.008 111.097 42.667 170.667 0 213.333-256 256-170.667 554.667-71.125-49.493-106.667-120.619-106.667-213.333 0-141.867 234.667-256 234.667-512zM426.667 42.667c28.459 56.875 42.667 120.875 42.667 192 0 256-384 320-128 704-106.667-21.333-192-128-192-256 0-277.333 277.333-320 277.333-640z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["blaze-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1004,
+ "id": 1345,
+ "name": "blaze-line",
+ "prevSize": 32,
+ "code": 60601
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 953
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 896c-10.45-0.004-20.537-3.84-28.346-10.782-7.81-6.946-12.799-16.516-14.022-26.893l-0.299-4.992v-384h-128l440.619-400.556c7.159-6.516 16.324-10.403 25.984-11.023s19.243 2.063 27.179 7.61l4.267 3.413 440.619 400.556h-128v384c0 10.449-3.84 20.535-10.782 28.343-6.946 7.812-16.512 12.8-26.893 14.025l-4.992 0.299h-597.333zM512 157.951l-256 232.704v420.012h185.899l59.435-64-160-149.333 213.333-128-106.667-85.335 128-128-21.333 128 106.667 85.335-170.667 128 149.333 128-53.333 85.333h181.333v-419.969l-256-232.747z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["earthquake-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1005,
+ "id": 1344,
+ "name": "earthquake-line",
+ "prevSize": 32,
+ "code": 60602
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 954
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 694.101l83.797-48.384 42.667 73.899-83.797 48.384 83.797 48.384-42.667 73.899-83.797-48.384v96.768h-85.333v-96.768l-83.796 48.384-42.667-73.899 83.796-48.384-83.796-48.384 42.667-73.899 83.796 48.384v-96.768h85.333v96.768zM725.333 768v-85.333h21.333c24.623-0.004 48.858-6.097 70.558-17.732 21.696-11.635 40.179-28.454 53.803-48.96 13.628-20.51 21.969-44.066 24.29-68.578 2.317-24.508-1.459-49.212-10.995-71.91s-24.538-42.688-43.669-58.185c-19.127-15.499-41.796-26.027-65.975-30.648-24.183-4.621-49.135-3.191-72.631 4.162s-44.809 20.402-62.046 37.986v-2.135c-0.017-46.929-12.932-92.951-37.338-133.036-24.401-40.084-59.358-72.689-101.039-94.252s-88.489-31.252-135.306-28.010c-46.817 3.242-91.842 19.29-130.155 46.391s-68.439 64.213-87.085 107.279c-18.647 43.066-25.097 90.428-18.645 136.91 6.452 46.485 25.556 90.3 55.227 126.66s68.764 63.863 113.009 79.509v89.131c-56.588-14.643-108.468-43.575-150.669-84.019s-73.308-91.051-90.342-146.965c-17.033-55.915-19.422-115.267-6.938-172.371s39.424-110.044 78.238-153.749c38.814-43.705 88.201-76.711 143.429-95.855s114.448-23.784 171.986-13.476c57.536 10.308 111.458 35.219 156.608 72.346 45.146 37.127 80 85.225 101.227 139.688 32.090-6.14 65.105-5.512 96.934 1.844s61.777 21.276 87.915 40.87c26.142 19.595 47.902 44.431 63.893 72.92 15.987 28.487 25.852 60.001 28.962 92.526 3.106 32.521-0.61 65.331-10.91 96.333-10.304 31.002-26.97 59.511-48.922 83.703-21.956 24.192-48.721 43.533-78.583 56.785s-62.161 20.122-94.831 20.173l-21.333 0.043v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["snowy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1006,
+ "id": 1343,
+ "name": "snowy-line",
+ "prevSize": 32,
+ "code": 60603
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 955
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 768v-85.333h21.333c24.623-0.004 48.858-6.097 70.558-17.732 21.696-11.635 40.179-28.454 53.803-48.96 13.628-20.51 21.969-44.066 24.29-68.578 2.317-24.508-1.459-49.212-10.995-71.91s-24.538-42.688-43.669-58.185c-19.127-15.499-41.796-26.027-65.975-30.648-24.183-4.621-49.135-3.191-72.631 4.162s-44.809 20.402-62.046 37.986v-2.135c-0.017-46.929-12.932-92.951-37.338-133.036-24.401-40.084-59.358-72.689-101.039-94.252s-88.489-31.252-135.306-28.010c-46.817 3.242-91.842 19.29-130.155 46.391s-68.439 64.213-87.085 107.279c-18.647 43.066-25.097 90.428-18.645 136.91 6.452 46.485 25.556 90.3 55.227 126.66s68.764 63.863 113.009 79.509v89.131c-56.588-14.643-108.468-43.575-150.669-84.019s-73.308-91.051-90.342-146.965c-17.033-55.915-19.422-115.267-6.938-172.371s39.424-110.044 78.238-153.749c38.814-43.705 88.201-76.711 143.429-95.855s114.448-23.784 171.986-13.476c57.536 10.308 111.458 35.219 156.608 72.346 45.146 37.127 80 85.225 101.227 139.688 32.090-6.14 65.105-5.512 96.934 1.844s61.777 21.276 87.915 40.87c26.142 19.595 47.902 44.431 63.893 72.92 15.987 28.487 25.852 60.001 28.962 92.526 3.106 32.521-0.61 65.331-10.91 96.333-10.304 31.002-26.97 59.511-48.922 83.703-21.956 24.192-48.721 43.533-78.583 56.785s-62.161 20.122-94.831 20.173l-21.333 0.043v-0.043zM384.002 682.667h85.332v170.667h-85.332v-170.667zM554.667 810.667h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drizzle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1007,
+ "id": 1342,
+ "name": "drizzle-line",
+ "prevSize": 32,
+ "code": 60604
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 956
+ },
+ {
+ "icon": {
+ "paths": [
+ "M67.585 554.965c-33.427-84.151-32.057-178.134 3.81-261.274s103.292-148.627 187.443-182.054c84.151-33.427 178.132-32.057 261.272 3.81s148.629 103.293 182.054 187.443c35.763-6.91 72.64-5.402 107.716 4.406s67.388 27.647 94.379 52.103c26.991 24.457 47.919 54.86 61.124 88.805 13.205 33.941 18.334 70.494 14.967 106.761h-85.888c4.582-31.194-0.823-63.040-15.45-90.97-14.626-27.934-37.713-50.521-65.963-64.527-28.245-14.005-60.203-18.711-91.29-13.442s-59.708 20.241-81.762 42.773v-2.133c-0.009-39.276-9.058-78.023-26.441-113.242s-42.637-65.966-73.809-89.862c-31.168-23.895-67.422-40.298-105.946-47.939-38.525-7.641-78.292-6.315-116.223 3.875s-73.008 28.971-102.518 54.889c-29.51 25.919-52.66 58.28-67.659 94.579s-21.446 75.562-18.839 114.753c2.606 39.189 14.194 77.252 33.868 111.245h-94.848zM170.668 810.667h725.332v85.333h-725.332v-85.333zM85.335 640h895.999v85.333h-895.999v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["foggy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1008,
+ "id": 1341,
+ "name": "foggy-line",
+ "prevSize": 32,
+ "code": 60605
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 957
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 298.667c-0.009 59.334 17.655 117.326 50.739 166.579 33.084 49.254 80.090 87.539 135.023 109.969 54.929 22.43 115.298 27.989 173.402 15.97s111.313-41.071 152.836-83.452v4.267c0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c0-235.648 191.019-426.667 426.667-426.667h4.267c-28.416 27.782-50.982 60.969-66.368 97.608-15.39 36.639-23.288 75.987-23.232 115.726zM170.667 512c-0.031 76.16 25.409 150.14 72.273 210.176 46.864 60.032 112.458 102.669 186.347 121.122 73.89 18.458 151.829 11.669 221.414-19.277 69.589-30.95 126.827-84.279 162.611-151.509-63.684 15.002-130.142 13.487-193.075-4.407-62.929-17.89-120.247-51.567-166.511-97.83s-79.938-103.582-97.831-166.512c-17.893-62.932-19.41-129.392-4.407-193.074-54.631 29.105-100.319 72.519-132.17 125.595s-48.669 113.816-48.651 175.717z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1009,
+ "id": 1340,
+ "name": "moon-line",
+ "prevSize": 32,
+ "code": 60606
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 958
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 867.584v-93.824c73.148-38.682 128.529-104.119 154.581-182.656-55.859 10.24-113.293 7.966-168.162-6.665-54.874-14.626-105.818-41.242-149.163-77.931-43.349-36.685-78.020-82.53-101.516-134.23s-35.233-107.967-34.365-164.749c-41.857 22.138-78.295 53.268-106.696 91.156s-48.062 81.594-57.571 127.98h-86.784c14.278-89.085 57.853-170.864 123.832-232.4s150.594-99.313 240.456-107.355c-27.802 59.422-35.268 126.346-21.239 190.434 14.025 64.088 48.764 121.775 98.85 164.148 50.082 42.377 112.725 67.081 178.253 70.302 65.527 3.217 130.291-15.228 184.286-52.489 6.711 86.345-14.4 172.57-60.245 246.046s-114.014 130.347-194.517 162.274v-0.043zM298.667 853.333h298.667v85.333h-298.667v-85.333zM170.667 512h256v85.333h-256v-85.333zM85.333 682.667h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-foggy-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1010,
+ "id": 1339,
+ "name": "moon-foggy-line",
+ "prevSize": 32,
+ "code": 60607
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 959
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 128h170.667c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359 0 90.526-35.964 177.348-99.972 241.361-64.013 64.009-150.835 99.972-241.361 99.972v149.333c-213.333-85.333-512-213.333-512-490.667 0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974v0zM512 725.333h85.333c33.617 0 66.906-6.622 97.967-19.486 31.061-12.868 59.281-31.723 83.051-55.497 23.774-23.77 42.628-51.989 55.497-83.051 12.864-31.061 19.486-64.35 19.486-97.967s-6.622-66.908-19.486-97.967c-12.868-31.059-31.723-59.281-55.497-83.052-23.77-23.772-51.989-42.629-83.051-55.494s-64.35-19.487-97.967-19.487h-170.667c-67.895 0-133.010 26.971-181.019 74.981s-74.981 113.124-74.981 181.019c0 154.027 105.045 254.549 341.333 361.813v-105.813z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-1-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1011,
+ "id": 1338,
+ "name": "chat-1-line",
+ "prevSize": 32,
+ "code": 60608
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 960
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-620.587l-190.080 149.333v-789.333c0-23.552 19.115-42.667 42.667-42.667h768zM853.333 213.333h-682.667v571.093l75.221-59.093h607.445v-512zM448.64 316.245l19.072 29.355c-71.168 38.528-69.931 100.352-69.931 113.664 6.613-0.853 13.568-1.024 20.48-0.384 38.485 3.584 68.821 35.2 68.821 74.453 0 41.216-33.451 74.667-74.667 74.667-22.912 0-44.8-10.453-58.624-25.173-21.973-23.296-33.792-49.493-33.792-91.947 0-74.667 52.395-141.568 128.64-174.635v0zM661.973 316.245l19.072 29.355c-71.168 38.528-69.931 100.352-69.931 113.664 6.613-0.853 13.568-1.024 20.48-0.384 38.485 3.584 68.821 35.2 68.821 74.453 0 41.216-33.451 74.667-74.667 74.667-22.912 0-44.8-10.453-58.624-25.173-21.973-23.296-33.792-49.493-33.792-91.947 0-74.667 52.395-141.568 128.64-174.635v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-quote-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1012,
+ "id": 1337,
+ "name": "chat-quote-line",
+ "prevSize": 32,
+ "code": 60609
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 961
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.334 512c0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667h-426.666l124.971-124.971c-39.679-39.578-71.145-86.601-92.592-138.377s-32.451-107.277-32.379-163.319v0zM291.328 853.333h220.672c67.511 0 133.504-20.019 189.636-57.523 56.132-37.508 99.878-90.816 125.713-153.186s32.597-131.004 19.426-197.214c-13.171-66.213-45.679-127.033-93.414-174.769-47.74-47.736-108.557-80.245-174.771-93.416-66.21-13.17-134.844-6.411-197.212 19.424-62.371 25.835-115.68 69.584-153.186 125.716s-57.525 122.123-57.525 189.635c0 91.819 36.309 177.707 99.968 241.365l60.331 60.331-39.637 39.637zM341.334 554.667h341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.673-17.98-120.679-49.988c-32.006-32.004-49.987-75.413-49.987-120.678v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-smile-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1013,
+ "id": 1336,
+ "name": "chat-smile-3-line",
+ "prevSize": 32,
+ "code": 60610
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 962
+ },
+ {
+ "icon": {
+ "paths": [
+ "M311.083 888.491l-225.749 50.176 50.176-225.749c-33.044-61.807-50.281-130.833-50.176-200.917 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-70.084 0.107-139.109-17.131-200.917-50.176v0zM323.456 798.336l27.861 14.933c49.431 26.415 104.635 40.179 160.682 40.064 67.511 0 133.504-20.019 189.636-57.523 56.132-37.508 99.878-90.816 125.713-153.186s32.597-131.004 19.426-197.214c-13.171-66.213-45.679-127.033-93.414-174.769-47.74-47.736-108.557-80.245-174.771-93.416-66.21-13.17-134.839-6.411-197.212 19.424-62.37 25.835-115.679 69.584-153.186 125.716s-57.525 122.123-57.525 189.635c0 56.917 13.867 111.701 40.107 160.683l14.891 27.861-27.947 125.739 125.739-27.947zM298.667 512h85.333c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.509 37.491c33.95 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509h85.333c0 56.58-22.477 110.844-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.841-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-smile-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1014,
+ "id": 1335,
+ "name": "chat-smile-2-line",
+ "prevSize": 32,
+ "code": 60611
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 963
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-620.587l-190.080 149.333v-789.333c0-23.552 19.115-42.667 42.667-42.667h768zM853.333 213.333h-682.667v571.093l75.221-59.093h607.445v-512zM725.333 298.667v341.333h-85.333v-341.333h85.333zM469.333 341.333v85.291l85.333 0.043v85.333l-85.333-0.043v85.376h-85.333v-85.376l-85.333 0.043v-85.333l85.333-0.043v-85.291h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-follow-up-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1015,
+ "id": 1334,
+ "name": "chat-follow-up-line",
+ "prevSize": 32,
+ "code": 60612
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 964
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM170.667 784.427l75.221-59.093h607.445v-512h-682.667v571.093zM554.667 469.333v170.667h-85.333v-170.667h-128l170.667-170.667 170.667 170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-upload-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1016,
+ "id": 1333,
+ "name": "chat-upload-line",
+ "prevSize": 32,
+ "code": 60613
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 965
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.808 59.432l844.757 844.798-60.373 60.331-153.941-153.941-474.837 0.043-190.080 149.333v-789.332c0-7.253 1.792-14.037 4.949-20.011l-30.848-30.848 60.373-60.373zM170.624 230.952l0.043 553.47 75.221-59.093h419.029l-494.293-494.377zM896 127.997c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v588.158l-85.333-85.333v-460.158l-460.245-0.043-85.291-85.291h588.202z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1017,
+ "id": 1332,
+ "name": "chat-off-line",
+ "prevSize": 32,
+ "code": 60614
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 966
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.334 512c0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667h-426.666l124.971-124.971c-39.679-39.578-71.145-86.601-92.592-138.377s-32.451-107.277-32.379-163.319v0zM291.328 853.333h220.672c67.511 0 133.504-20.019 189.636-57.523 56.132-37.508 99.878-90.816 125.713-153.186s32.597-131.004 19.426-197.214c-13.171-66.213-45.679-127.033-93.414-174.769-47.74-47.736-108.557-80.245-174.771-93.416-66.21-13.17-134.844-6.411-197.212 19.424-62.371 25.835-115.68 69.584-153.186 125.716s-57.525 122.123-57.525 189.635c0 91.819 36.309 177.707 99.968 241.365l60.331 60.331-39.637 39.637zM469.333 256h85.333v512h-85.333v-512zM298.667 384h85.333v256h-85.333v-256zM640 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-voice-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1018,
+ "id": 1331,
+ "name": "chat-voice-line",
+ "prevSize": 32,
+ "code": 60615
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 967
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-620.587l-190.080 149.333v-789.333c0-23.552 19.115-42.667 42.667-42.667h768zM853.333 213.333h-682.667v571.093l75.221-59.093h607.445v-512zM554.667 298.667v341.333h-85.333v-341.333h85.333zM725.333 384v256h-85.333v-256h85.333zM384 469.333v170.667h-85.333v-170.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-poll-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1019,
+ "id": 1330,
+ "name": "chat-poll-line",
+ "prevSize": 32,
+ "code": 60616
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 968
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-72.619 0-141.013-18.133-200.875-50.133l-225.792 50.133 50.176-225.707c-32-59.904-50.176-128.299-50.176-200.96 0-235.648 191.019-426.667 426.667-426.667zM512 170.667c-188.501 0-341.333 152.832-341.333 341.333 0 56.96 13.909 111.701 40.107 160.683l14.933 27.904-27.989 125.696 125.781-27.904 27.861 14.891c48.981 26.197 103.68 40.064 160.64 40.064 188.501 0 341.333-152.832 341.333-341.333s-152.832-341.333-341.333-341.333v0zM554.667 298.667v213.333h170.667v85.333h-256v-298.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-history-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1020,
+ "id": 1329,
+ "name": "chat-history-line",
+ "prevSize": 32,
+ "code": 60617
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 969
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM170.667 784.427l75.221-59.093h607.445v-512h-682.667v571.093zM572.331 469.333l105.6 105.6-60.331 60.331-105.6-105.6-105.6 105.643-60.331-60.331 105.6-105.643-105.643-105.6 60.331-60.331 105.643 105.6 105.6-105.6 60.331 60.331-105.6 105.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-delete-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1021,
+ "id": 1328,
+ "name": "chat-delete-line",
+ "prevSize": 32,
+ "code": 60618
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 970
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM170.667 784.427l75.221-59.093h607.445v-512h-682.667v571.093zM512.768 627.2l-143.317-143.36c-18.004-18.005-28.118-42.423-28.118-67.883 0-12.607 2.483-25.091 7.308-36.738s11.896-22.231 20.81-31.145c8.914-8.914 19.497-15.986 31.145-20.81s24.131-7.308 36.738-7.308c25.459 0 49.877 10.114 67.883 28.118l7.552 7.552 7.552-7.552c8.913-8.914 19.499-15.986 31.147-20.81 11.644-4.825 24.128-7.308 36.736-7.308s25.092 2.483 36.736 7.308c11.648 4.824 22.234 11.896 31.147 20.81s15.987 19.497 20.809 31.145c4.826 11.647 7.309 24.131 7.309 36.738s-2.483 25.092-7.309 36.736c-4.821 11.648-11.895 22.234-20.809 31.147l-143.317 143.36z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-heart-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1022,
+ "id": 1327,
+ "name": "chat-heart-line",
+ "prevSize": 32,
+ "code": 60619
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 971
+ },
+ {
+ "icon": {
+ "paths": [
+ "M245.888 725.333h607.445v-512h-682.667v571.093l75.221-59.093zM275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM469.333 597.333h85.333v85.333h-85.333v-85.333zM365.525 376.021c5.543-27.742 18.851-53.34 38.374-73.814s44.459-34.984 71.906-41.84c27.447-6.856 56.277-5.777 83.136 3.113s50.637 25.222 68.578 47.1c17.937 21.877 29.291 48.398 32.747 76.477 3.452 28.079-1.139 56.561-13.244 82.131-12.1 25.574-31.215 47.181-55.121 62.315-23.902 15.134-51.61 23.164-79.902 23.164h-42.667v-85.333h42.667c12.122 0 23.991-3.443 34.231-9.929 10.24-6.481 18.432-15.74 23.616-26.697s7.151-23.159 5.67-35.19c-1.481-12.030-6.345-23.392-14.033-32.765-7.684-9.373-17.873-16.37-29.38-20.179s-23.859-4.271-35.618-1.334c-11.759 2.937-22.443 9.153-30.805 17.925-8.367 8.771-14.067 19.738-16.444 31.624l-83.712-16.768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["questionnaire-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1023,
+ "id": 1326,
+ "name": "questionnaire-line",
+ "prevSize": 32,
+ "code": 60620
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 972
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM170.667 784.427l75.221-59.093h607.445v-512h-682.667v571.093zM469.333 554.667h85.333v85.333h-85.333v-85.333zM469.333 298.667h85.333v213.333h-85.333v-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["feedback-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1024,
+ "id": 1325,
+ "name": "feedback-line",
+ "prevSize": 32,
+ "code": 60621
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 973
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 383.744c-0.023-33.613 6.586-66.9 19.446-97.955s31.72-59.268 55.5-83.024c23.779-23.756 52.012-42.588 83.080-55.417s64.362-19.404 97.974-19.348h341.333c141.355 0 256 114.987 256 255.744v512.256h-597.333c-141.355 0-256-114.987-256-255.744v-256.512zM853.333 810.667v-426.922c-0.111-45.205-18.138-88.523-50.129-120.464-31.987-31.941-75.332-49.902-120.538-49.946h-341.333c-22.406-0.056-44.604 4.311-65.318 12.852s-39.54 21.087-55.396 36.919c-15.856 15.832-28.43 34.638-37.002 55.34s-12.973 42.893-12.951 65.299v256.512c0.113 45.205 18.138 88.525 50.127 120.465s75.334 49.903 120.539 49.946h512zM597.333 469.333h85.333v85.333h-85.333v-85.333zM341.333 469.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["message-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1025,
+ "id": 1324,
+ "name": "message-3-line",
+ "prevSize": 32,
+ "code": 60622
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 974
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM245.888 725.333h607.445v-512h-682.667v571.093l75.221-59.093zM469.333 426.667h85.333v85.333h-85.333v-85.333zM298.667 426.667h85.333v85.333h-85.333v-85.333zM640 426.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["message-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1026,
+ "id": 1323,
+ "name": "message-2-line",
+ "prevSize": 32,
+ "code": 60623
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 975
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM170.667 784.427l75.221-59.093h607.445v-512h-682.667v571.093zM512 426.667v-128l170.667 170.667-170.667 170.667v-128h-170.667v-85.333h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-forward-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1027,
+ "id": 1322,
+ "name": "chat-forward-line",
+ "prevSize": 32,
+ "code": 60624
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 976
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 437.333l128-96v256l-128-96v96h-298.667v-256h298.667v96zM245.888 725.333h607.445v-512h-682.667v571.093l75.221-59.093zM275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-chat-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1028,
+ "id": 1321,
+ "name": "video-chat-line",
+ "prevSize": 32,
+ "code": 60625
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 977
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM245.888 725.333h607.445v-512h-682.667v571.093l75.221-59.093zM481.835 517.163l181.035-180.992 60.331 60.331-241.365 241.365-165.973-165.973 60.373-60.331 105.6 105.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-check-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1029,
+ "id": 1320,
+ "name": "chat-check-line",
+ "prevSize": 32,
+ "code": 60626
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 978
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM245.888 725.333h607.445v-512h-682.667v571.093l75.221-59.093zM341.333 426.667h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["message-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1030,
+ "id": 1319,
+ "name": "message-line",
+ "prevSize": 32,
+ "code": 60627
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 979
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 512h-85.333v-298.667h-682.667v571.093l75.221-59.093h266.112v85.333h-236.587l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333zM603.52 813.696c-8.299-29.901-8.299-61.491 0-91.392l-41.6-24.021 42.667-73.899 41.643 24.021c21.722-22.144 49.071-37.943 79.104-45.696v-48.043h85.333v48.043c30.507 7.851 57.728 23.893 79.104 45.696l41.643-24.021 42.667 73.899-41.6 24.021c8.299 29.901 8.299 61.491 0 91.392l41.6 24.021-42.667 73.899-41.643-24.021c-21.376 21.76-48.64 37.845-79.104 45.696v48.043h-85.333v-48.043c-30.033-7.753-57.382-23.552-79.104-45.696l-41.643 24.021-42.667-73.899 41.6-24.021zM768 853.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-settings-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1031,
+ "id": 1318,
+ "name": "chat-settings-line",
+ "prevSize": 32,
+ "code": 60628
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 980
+ },
+ {
+ "icon": {
+ "paths": [
+ "M616.533 810.667l-104.533 149.333-104.533-149.333h-279.467c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-279.467zM572.117 725.333h281.216v-512h-682.667v512h281.216l60.117 85.845 60.117-85.845z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1032,
+ "id": 1317,
+ "name": "chat-2-line",
+ "prevSize": 32,
+ "code": 60629
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 981
+ },
+ {
+ "icon": {
+ "paths": [
+ "M311.083 888.491l-225.749 50.176 50.176-225.749c-33.044-61.807-50.281-130.833-50.176-200.917 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-70.084 0.107-139.109-17.131-200.917-50.176v0zM323.456 798.336l27.861 14.933c49.431 26.415 104.635 40.179 160.682 40.064 67.511 0 133.504-20.019 189.636-57.523 56.132-37.508 99.878-90.816 125.713-153.186s32.597-131.004 19.426-197.214c-13.171-66.213-45.679-127.033-93.414-174.769-47.74-47.736-108.557-80.245-174.771-93.416-66.21-13.17-134.839-6.411-197.212 19.424-62.37 25.835-115.679 69.584-153.186 125.716s-57.525 122.123-57.525 189.635c0 56.917 13.867 111.701 40.107 160.683l14.891 27.861-27.947 125.739 125.739-27.947z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1033,
+ "id": 1316,
+ "name": "chat-3-line",
+ "prevSize": 32,
+ "code": 60630
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 982
+ },
+ {
+ "icon": {
+ "paths": [
+ "M232.747 640l-190.080 149.333v-661.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h640c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512h-535.253zM203.221 554.667h479.445v-384h-554.667v443.093l75.221-59.093zM341.333 725.333h436.779l75.221 59.093v-443.093h42.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v576l-190.080-149.333h-364.587c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["question-answer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1034,
+ "id": 1315,
+ "name": "question-answer-line",
+ "prevSize": 32,
+ "code": 60631
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 983
+ },
+ {
+ "icon": {
+ "paths": [
+ "M245.888 725.333h607.445v-512h-682.667v571.093l75.221-59.093zM275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1035,
+ "id": 1314,
+ "name": "chat-4-line",
+ "prevSize": 32,
+ "code": 60632
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 984
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 128v85.333h-426.667v571.093l75.221-59.093h607.445v-298.667h85.333v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h469.333zM810.667 128v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-new-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1036,
+ "id": 1313,
+ "name": "chat-new-line",
+ "prevSize": 32,
+ "code": 60633
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 985
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 960l-119.467-149.333h-221.867c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-464.939c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v464.939c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-221.867l-119.467 149.333zM675.797 725.333h220.203v-379.605h-597.333v379.605h220.203l78.464 98.048 78.464-98.048zM85.333 85.333h725.333v85.333h-682.667v469.333h-85.333v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["discuss-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1037,
+ "id": 1312,
+ "name": "discuss-line",
+ "prevSize": 32,
+ "code": 60634
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 986
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-72.619 0-141.013-18.133-200.875-50.133l-225.792 50.133 50.176-225.707c-32-59.904-50.176-128.299-50.176-200.96 0-235.648 191.019-426.667 426.667-426.667zM512 170.667c-188.501 0-341.333 152.832-341.333 341.333 0 56.96 13.909 111.701 40.107 160.683l14.933 27.904-27.989 125.696 125.781-27.904 27.861 14.891c48.981 26.197 103.68 40.064 160.64 40.064 188.501 0 341.333-152.832 341.333-341.333s-152.832-341.333-341.333-341.333v0zM512 298.667c70.699 0 128 57.301 128 128v42.667h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-70.699 57.301-128 128-128zM597.333 554.667h-170.667v42.667h170.667v-42.667zM512 384c-23.552 0-42.667 19.2-42.667 42.667v42.667h85.333v-42.667c0-23.552-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-private-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1038,
+ "id": 1311,
+ "name": "chat-private-line",
+ "prevSize": 32,
+ "code": 60635
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 987
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM170.667 784.427l75.221-59.093h607.445v-512h-682.667v571.093zM554.667 469.333h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-download-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1039,
+ "id": 1310,
+ "name": "chat-download-line",
+ "prevSize": 32,
+ "code": 60636
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 988
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM245.888 725.333h607.445v-512h-682.667v571.093l75.221-59.093zM298.667 426.667h85.333c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509h85.333c0 56.58-22.477 110.844-62.485 150.848-40.004 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-smile-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1040,
+ "id": 1309,
+ "name": "chat-smile-line",
+ "prevSize": 32,
+ "code": 60637
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 989
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 128v384c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.415 49.988 120.68 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678v-384h85.333v384c0 67.895-26.97 133.009-74.982 181.018-48.009 48.013-113.122 74.982-181.018 74.982s-133.010-26.97-181.019-74.982c-48.009-48.009-74.981-113.122-74.981-181.018v-384h85.333zM170.667 853.333h682.667v85.333h-682.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["underline"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1041,
+ "id": 1308,
+ "name": "underline",
+ "prevSize": 32,
+ "code": 60638
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 990
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 213.333c23.552 0 42.667 19.115 42.667 42.667v256c0 23.552-19.115 42.667-42.667 42.667 26.795 35.627 42.667 79.957 42.667 128 0 117.803-95.531 213.333-213.333 213.333s-213.333-95.531-213.333-213.333c0-48.043 15.872-92.373 42.667-128h-341.333c-23.552 0-42.667-19.115-42.667-42.667v-256c0-23.552 19.115-42.667 42.667-42.667h682.667zM554.667 640v85.333h256v-85.333h-256zM810.667 298.667h-597.333v170.667h597.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-row"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1042,
+ "id": 1307,
+ "name": "delete-row",
+ "prevSize": 32,
+ "code": 60639
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 991
+ },
+ {
+ "icon": {
+ "paths": [
+ "M238.763 170.667l209.237 252.928 209.237-252.928h110.763l-264.619 319.872 264.619 320.128h-110.507l-209.493-253.184-209.493 253.184h-110.507v-0.256l264.619-319.872-264.619-319.872h110.763zM919.467 707.413c4.39-4.169 7.59-9.429 9.28-15.245 1.685-5.811 1.796-11.972 0.316-17.839-1.476-5.871-4.489-11.243-8.73-15.565-4.237-4.322-9.549-7.441-15.39-9.033-5.841-1.596-11.998-1.604-17.843-0.034-5.845 1.574-11.17 4.672-15.424 8.977-4.254 4.309-7.283 9.668-8.785 15.535-1.498 5.867-1.408 12.023 0.256 17.843l-49.28 14.080c-3.627-12.706-4.254-26.082-1.83-39.074s7.829-25.242 15.791-35.789c7.962-10.547 18.261-19.102 30.093-24.99s24.866-8.951 38.080-8.947c17.084 0.004 33.775 5.133 47.91 14.724 14.135 9.596 25.067 23.211 31.377 39.087s7.71 33.28 4.019 49.958c-3.691 16.683-12.305 31.872-24.725 43.601l-69.504 65.963h96.256v42.667h-170.667v-42.667l108.8-103.253z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subscript"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1043,
+ "id": 1306,
+ "name": "subscript",
+ "prevSize": 32,
+ "code": 60640
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 992
+ },
+ {
+ "icon": {
+ "paths": [
+ "M615.125 284.971c43.947 46.677 67.541 99.029 67.541 183.893 0 149.333-104.832 283.179-257.28 349.355l-38.101-58.795c142.293-76.971 170.112-176.853 181.205-239.829-22.912 11.861-52.907 16-82.304 13.269-76.97-7.125-137.6-70.315-137.6-148.864 0-39.606 15.733-77.589 43.739-105.594s65.991-43.739 105.594-43.739c45.781 0 89.557 20.907 117.248 50.304h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["single-quotes-r"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1044,
+ "id": 1305,
+ "name": "single-quotes-r",
+ "prevSize": 32,
+ "code": 60641
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 993
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 640v85.333c-0.007 21.53 8.124 42.266 22.763 58.048 14.639 15.787 34.703 25.459 56.171 27.072l6.4 0.213h128v85.333h-128c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-85.333h85.333zM768 426.667l187.733 469.333h-91.947l-51.243-128h-174.507l-51.157 128h-91.904l187.691-469.333h85.333zM725.333 549.76l-53.205 132.907h106.325l-53.12-132.907zM341.333 85.333v85.333h170.667v298.667h-170.667v128h-85.333v-128h-170.667v-298.667h170.667v-85.333h85.333zM725.333 128c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v85.333h-85.333v-85.333c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-128v-85.333h128zM256 256h-85.333v128h85.333v-128zM426.667 256h-85.333v128h85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["translate"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1045,
+ "id": 1304,
+ "name": "translate",
+ "prevSize": 32,
+ "code": 60642
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 994
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 853.333v-92.032c79.488-50.859 149.333-165.333 149.333-296.917 0-131.115-85.333-257.237-234.667-257.237s-234.667 126.123-234.667 257.28c0 131.541 69.845 246.016 149.333 296.875v92.032h-298.667v-85.333h203.093c-89.344-63.787-160.427-171.136-160.427-303.616 0-197.845 149.333-336.384 341.333-336.384s341.333 138.539 341.333 336.384c0 132.48-71.083 239.829-160.427 303.616h203.093v85.333h-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["omega"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1046, "id": 1303, "name": "omega", "prevSize": 32, "code": 60643 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 995
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 469.333v-298.667h85.333v725.333h-85.333v-341.333h-426.667v341.333h-85.333v-725.333h85.333v298.667h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heading"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1047, "id": 1302, "name": "heading", "prevSize": 32, "code": 60644 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 996
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.904 597.333c9.813 22.016 14.763 46.507 14.763 73.387 0 57.259-22.357 102.059-67.029 134.272-44.757 32.213-106.496 48.341-185.301 48.341-69.973 0-139.221-16.256-207.787-48.811v-96.256c64.853 37.419 131.2 56.149 199.083 56.149 108.843 0 163.413-31.232 163.797-93.739 0.226-12.672-2.108-25.263-6.857-37.013-4.753-11.75-11.823-22.426-20.791-31.381l-5.12-4.992h-488.661v-85.333h768v85.333l-164.096 0.043zM557.909 469.333h-232.405c-7.474-6.814-14.341-14.268-20.523-22.272-18.432-23.808-27.648-52.565-27.648-86.443 0-52.736 19.883-97.579 59.605-134.528 39.808-36.949 101.291-55.424 184.533-55.424 62.763 0 122.837 13.995 180.139 41.984v91.819c-51.2-29.312-107.307-43.947-168.363-43.947-105.813 0-158.677 33.365-158.677 100.096 0 17.92 9.301 33.536 27.904 46.891s41.557 23.979 68.821 32c26.453 7.68 55.339 17.664 86.613 29.824v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["strikethrough"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1048,
+ "id": 1301,
+ "name": "strikethrough",
+ "prevSize": 32,
+ "code": 60645
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 997
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 896v-85.333h156.245l52.651-298.667h-123.563v-85.333h138.624l37.589-213.333h-218.88v-85.333h682.667v85.333h-377.131l-37.632 213.333h329.429v384h128v85.333h-768zM682.667 512h-259.115l-52.693 298.667h311.808v-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wubi-input"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1049,
+ "id": 1300,
+ "name": "wubi-input",
+ "prevSize": 32,
+ "code": 60646
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 998
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 128c23.552 0 42.667 19.115 42.667 42.667v85.333h213.333c23.552 0 42.667 19.115 42.667 42.667v213.333h85.333c23.552 0 42.667 19.115 42.667 42.667v298.667c0 23.552-19.115 42.667-42.667 42.667h-298.667c-23.552 0-42.667-19.115-42.667-42.667v-85.333h-213.333c-23.552 0-42.667-19.115-42.667-42.667v-213.333h-85.333c-23.552 0-42.667-19.115-42.667-42.667v-298.667c0-23.552 19.115-42.667 42.667-42.667h298.667zM682.667 341.333h-341.333v341.333h341.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bring-to-front"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1050,
+ "id": 1299,
+ "name": "bring-to-front",
+ "prevSize": 32,
+ "code": 60647
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 999
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667h768v85.333h-768v-85.333zM341.333 554.667h128l-170.667 170.667-170.667-170.667h128v-426.667h85.333v426.667zM768 554.667h128l-170.667 170.667-170.667-170.667h128v-426.667h85.333v426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["align-bottom"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1051,
+ "id": 1298,
+ "name": "align-bottom",
+ "prevSize": 32,
+ "code": 60648
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1000
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 128c70.699 0 128 57.301 128 128s-57.301 128-128 128h-128c-55.723 0-103.125-35.584-120.704-85.333h-49.963c-46.933 0-85.333 38.4-85.333 85.333v7.296c49.749 17.579 85.333 64.981 85.333 120.704s-35.584 103.125-85.333 120.704v7.296c0 46.933 38.4 85.333 85.333 85.333h49.92c17.579-49.707 65.024-85.333 120.747-85.333h128c70.699 0 128 57.301 128 128s-57.301 128-128 128h-128c-55.723 0-103.125-35.584-120.704-85.333h-49.963c-94.293 0-170.667-76.373-170.667-170.667h-85.333c-70.699 0-128-57.301-128-128s57.301-128 128-128h85.333c0-94.293 76.373-170.667 170.667-170.667h49.92c17.579-49.707 65.024-85.333 120.747-85.333h128zM768 725.333h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM341.333 469.333h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM768 213.333h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mind-map"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1052,
+ "id": 1297,
+ "name": "mind-map",
+ "prevSize": 32,
+ "code": 60649
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1001
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 810.667h768v85.333h-768v-85.333zM128 597.333h768v85.333h-768v-85.333zM128 384h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["align-justify"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1053,
+ "id": 1296,
+ "name": "align-justify",
+ "prevSize": 32,
+ "code": 60650
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1002
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 896v-170.667h-426.667v170.667h-85.333v-213.333c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h512c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v213.333h-85.333zM298.667 128v170.667h426.667v-170.667h85.333v213.333c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h85.333zM85.333 384l170.667 128-170.667 128v-256zM938.667 384v256l-170.667-128 170.667-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["page-separator"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1054,
+ "id": 1295,
+ "name": "page-separator",
+ "prevSize": 32,
+ "code": 60651
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1003
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 640v85.333c0 44.971 40.533 85.333 85.333 85.333h128v85.333h-128c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-85.333h85.333zM768 426.667l187.733 469.333h-91.947l-51.243-128h-174.507l-51.157 128h-91.904l187.691-469.333h85.333zM725.333 549.76l-53.205 132.907h106.325l-53.12-132.907zM128 128h256c24.706 0.009 48.879 7.167 69.606 20.611s37.124 32.599 47.206 55.154c10.082 22.555 13.419 47.546 9.613 71.956s-14.596 47.198-31.066 65.612c16.469 18.415 27.26 41.202 31.066 65.612s0.469 49.4-9.613 71.958c-10.082 22.554-26.479 41.707-47.206 55.151s-44.901 20.604-69.606 20.612h-256v-426.667zM384 384h-170.667v85.333h170.667c11.316 0 22.168-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497zM725.333 128c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v85.333h-85.333v-85.333c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-128v-85.333h128zM384 213.333h-170.667v85.333h170.667c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["a-b"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1055, "id": 1294, "name": "a-b", "prevSize": 32, "code": 60652 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1004
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 917.333c-82.475 0-149.333-66.859-149.333-149.333s66.859-149.333 149.333-149.333c67.627 0 124.757 44.971 143.147 106.667h240.853v-85.333h85.333v-245.674l-95.701-95.659h-245.632v85.333h-256v-256h256v85.333h245.632l138.368-138.411 181.035 181.077-138.368 138.283v245.717h85.333v256h-256v-85.333h-240.853c-18.347 61.696-75.52 106.667-143.147 106.667zM256 704c-35.328 0-64 28.672-64 64s28.672 64 64 64c35.328 0 64-28.672 64-64s-28.672-64-64-64zM810.667 725.333h-85.333v85.333h85.333v-85.333zM768 195.67l-60.331 60.331 60.331 60.331 60.331-60.331-60.331-60.331zM298.667 213.334h-85.333v85.333h85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flow-chart"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1056,
+ "id": 1293,
+ "name": "flow-chart",
+ "prevSize": 32,
+ "code": 60653
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1005
+ },
+ {
+ "icon": {
+ "paths": [
+ "M479.829 640h-276.992l-85.333 213.333h-91.904l273.067-682.667h85.333l273.066 682.667h-91.904l-85.333-213.333zM445.696 554.667l-104.362-260.907-104.363 260.907h208.725zM896 534.827v-22.827h85.333v341.333h-85.333v-22.827c-25.946 14.963-55.373 22.835-85.325 22.827s-59.375-7.902-85.308-22.882c-25.937-14.985-47.471-36.527-62.447-62.468-14.972-25.941-22.852-55.364-22.852-85.316s7.881-59.375 22.852-85.316c14.976-25.941 36.51-47.484 62.447-62.468 25.933-14.98 55.356-22.874 85.308-22.882s59.379 7.863 85.325 22.827v0zM810.667 768c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["font-size"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1057,
+ "id": 1292,
+ "name": "font-size",
+ "prevSize": 32,
+ "code": 60654
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1006
+ },
+ {
+ "icon": {
+ "paths": [
+ "M789.333 426.667l187.733 469.333h-91.947l-51.243-128h-174.507l-51.157 128h-91.904l187.691-469.333h85.333zM426.667 85.333v85.333h256v85.333h-83.968c-32.913 99.075-85.44 190.507-154.453 268.843 30.775 27.46 64.158 51.853 99.669 72.832l-32.043 80.128c-45.845-26.001-88.721-56.917-127.872-92.203-76.221 68.979-166.484 120.627-264.576 151.381l-22.869-82.304c84.047-26.799 161.494-71.027 227.285-129.792-48.696-55.13-89.256-116.938-120.448-183.552h95.573c23.78 43.898 52.295 85.060 85.035 122.752 53.338-61.478 95.373-131.913 124.16-208.043l-422.827-0.043v-85.333h256v-85.333h85.333zM746.667 549.76l-53.205 132.907h106.325l-53.12-132.907z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["translate-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1058,
+ "id": 1291,
+ "name": "translate-2",
+ "prevSize": 32,
+ "code": 60655
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1007
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 662.869l-60.331-60.416 60.331-60.331c19.951-19.78 35.802-43.302 46.639-69.222s16.444-53.726 16.508-81.82c0.060-28.094-5.427-55.923-16.149-81.89s-26.47-49.561-46.336-69.426c-19.866-19.866-43.456-35.611-69.423-46.334-25.971-10.723-53.798-16.211-81.894-16.149-28.092 0.061-55.898 5.671-81.818 16.508s-49.442 26.685-69.222 46.638l-60.33 60.373-60.373-60.331 60.416-60.331c56.012-56.014 131.985-87.482 211.2-87.482s155.187 31.468 211.2 87.482c56.013 56.014 87.484 131.985 87.484 211.2s-31.471 155.188-87.484 211.2l-60.416 60.331zM662.869 783.531l-60.373 60.331c-56.013 56.013-131.985 87.479-211.2 87.479s-155.186-31.467-211.2-87.479c-56.014-56.013-87.482-131.985-87.482-211.2s31.468-155.187 87.482-211.2l60.373-60.331 60.331 60.416-60.331 60.331c-19.952 19.776-35.801 43.302-46.638 69.222s-16.446 53.726-16.508 81.818c-0.061 28.096 5.427 55.923 16.149 81.89s26.469 49.562 46.334 69.427c19.866 19.866 43.459 35.614 69.426 46.336s53.797 16.209 81.891 16.149c28.094-0.064 55.898-5.675 81.818-16.508 25.92-10.837 49.446-26.688 69.222-46.639l60.331-60.331 60.373 60.288zM632.661 330.965l60.373 60.373-301.696 301.654-60.373-60.331 301.696-301.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["link"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1059, "id": 1290, "name": "link", "prevSize": 32, "code": 60656 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1008
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 384v170.667h682.667v-170.667h85.333v213.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["space"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1060, "id": 1289, "name": "space", "prevSize": 32, "code": 60657 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1009
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 170.667v512h128l-170.667 213.333-170.667-213.333h128v-512h85.333zM512 768v85.333h-384v-85.333h384zM597.333 469.333v85.333h-469.333v-85.333h469.333zM597.333 170.667v85.333h-469.333v-85.333h469.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sort-desc"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1061,
+ "id": 1288,
+ "name": "sort-desc",
+ "prevSize": 32,
+ "code": 60658
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1010
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 469.333h768v85.333h-768v-85.333zM768 768v128h-85.333v-128h-128l170.667-170.667 170.667 170.667h-128zM341.333 768v128h-85.333v-128h-128l170.667-170.667 170.667 170.667h-128zM768 256h128l-170.667 170.667-170.667-170.667h128v-128h85.333v128zM341.333 256h128l-170.667 170.667-170.667-170.667h128v-128h85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["align-vertically"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1062,
+ "id": 1287,
+ "name": "align-vertically",
+ "prevSize": 32,
+ "code": 60659
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1011
+ },
+ {
+ "icon": {
+ "paths": [
+ "M828.459 284.971c43.947 46.677 67.541 99.029 67.541 183.893 0 149.333-104.832 283.179-257.28 349.355l-38.101-58.795c142.293-76.971 170.112-176.853 181.205-239.829-22.912 11.861-52.907 16-82.304 13.269-76.971-7.125-137.643-70.315-137.643-148.864 0-39.606 15.735-77.589 43.738-105.594 28.006-28.006 65.993-43.739 105.596-43.739 45.781 0 89.557 20.907 117.248 50.304zM401.792 284.971c43.946 46.677 67.541 99.029 67.541 183.893 0 149.333-104.832 283.179-257.28 349.355l-38.101-58.795c142.293-76.971 170.112-176.853 181.205-239.829-22.912 11.861-52.907 16-82.304 13.269-76.971-7.125-137.6-70.315-137.6-148.864 0-39.606 15.733-77.589 43.739-105.594s65.989-43.739 105.594-43.739c45.781 0 89.557 20.907 117.248 50.304h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["double-quotes-r"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1063,
+ "id": 1286,
+ "name": "double-quotes-r",
+ "prevSize": 32,
+ "code": 60660
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1012
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h256zM810.667 213.333h-170.667v597.333h170.667v-597.333zM256 298.667c117.803 0 213.333 95.531 213.333 213.333s-95.531 213.333-213.333 213.333c-117.803 0-213.333-95.531-213.333-213.333s95.531-213.333 213.333-213.333zM298.667 384h-85.333v85.291l-85.333 0.043v85.333l85.333-0.043v85.376h85.333v-85.376l85.333 0.043v-85.333l-85.333-0.043v-85.291z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["insert-column-left"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1064,
+ "id": 1285,
+ "name": "insert-column-left",
+ "prevSize": 32,
+ "code": 60661
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1013
+ },
+ {
+ "icon": {
+ "paths": [
+ "M753.365 632.661l-60.331-60.331 60.331-60.331c15.851-15.846 28.42-34.662 36.996-55.369 8.58-20.706 12.992-42.901 12.992-65.314s-4.412-44.606-12.992-65.313c-8.576-20.707-21.146-39.521-36.996-55.37-15.846-15.848-34.662-28.42-55.369-36.997s-42.901-12.992-65.314-12.992c-22.413 0-44.604 4.415-65.314 12.992-20.706 8.577-39.518 21.149-55.369 36.997l-60.331 60.331-60.33-60.331 60.33-60.331c48.141-47.363 113.050-73.785 180.582-73.51s132.224 27.225 179.977 74.979c47.753 47.754 74.705 112.443 74.978 179.977 0.277 67.532-26.146 132.441-73.51 180.582l-60.331 60.331zM632.661 753.365l-60.331 60.331c-23.701 24.090-51.934 43.247-83.076 56.371s-64.575 19.951-98.368 20.087c-33.793 0.137-67.28-6.417-98.528-19.285s-59.638-31.795-83.534-55.693c-23.896-23.898-42.824-52.288-55.693-83.533-12.869-31.249-19.423-64.734-19.286-98.53 0.138-33.792 6.965-67.226 20.087-98.368 13.123-31.138 32.282-59.375 56.371-83.076l60.331-60.331 60.331 60.331-60.331 60.331c-15.848 15.846-28.42 34.662-36.997 55.369s-12.992 42.901-12.992 65.314c0 22.413 4.415 44.608 12.992 65.314s21.149 39.522 36.997 55.369c15.849 15.846 34.663 28.42 55.37 36.996s42.9 12.992 65.313 12.992c22.413 0 44.608-4.416 65.314-12.992s39.522-21.15 55.369-36.996l60.331-60.331 60.331 60.331zM632.661 330.965l60.373 60.373-301.696 301.653-60.373-60.331 301.696-301.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["link-m"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1065, "id": 1284, "name": "link-m", "prevSize": 32, "code": 60662 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1014
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h256zM384 213.333h-170.667v597.333h170.667v-597.333zM768 298.667c117.803 0 213.333 95.531 213.333 213.333s-95.531 213.333-213.333 213.333c-117.803 0-213.333-95.531-213.333-213.333s95.531-213.333 213.333-213.333zM810.667 384h-85.333v85.291l-85.333 0.043v85.333l85.333-0.043v85.376h85.333v-85.376l85.333 0.043v-85.333l-85.333-0.043v-85.291z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["insert-column-right"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1066,
+ "id": 1283,
+ "name": "insert-column-right",
+ "prevSize": 32,
+ "code": 60663
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1015
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 64c49.007 0.006 96.785 15.356 136.627 43.896s69.747 68.838 85.521 115.239c15.778 46.401 16.627 96.576 2.436 143.486s-42.714 88.198-81.566 118.073c80.555 44.8 134.315 126.293 134.315 219.307 0 141.397-124.16 256-277.333 256s-277.333-114.603-277.333-256c0-93.056 53.803-174.507 134.272-219.349-38.836-29.884-67.344-71.172-81.524-118.077s-13.321-97.073 2.457-143.465c15.778-46.392 45.683-86.682 85.519-115.216s87.606-43.883 136.609-43.892v0zM512 533.333c-107.52 0-192 77.995-192 170.667s84.48 170.667 192 170.667c107.52 0 192-77.995 192-170.667s-84.48-170.667-192-170.667zM512 149.333c-39.607 0-77.589 15.733-105.594 43.739s-43.739 65.989-43.739 105.594c0 39.606 15.733 77.589 43.739 105.594 28.005 28.008 65.987 43.739 105.594 43.739s77.589-15.731 105.596-43.739c28.006-28.005 43.738-65.989 43.738-105.594s-15.731-77.589-43.738-105.594c-28.006-28.006-65.988-43.739-105.596-43.739v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-8"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1067,
+ "id": 1282,
+ "name": "number-8",
+ "prevSize": 32,
+ "code": 60664
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1016
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 810.667v85.333h-85.333v-85.333h85.333zM725.333 810.667v85.333h-85.333v-85.333h85.333zM554.667 810.667v85.333h-85.333v-85.333h85.333zM384 810.667v85.333h-85.333v-85.333h85.333zM213.333 810.667v85.333h-85.333v-85.333h85.333zM896 640v85.333h-85.333v-85.333h85.333zM213.333 640v85.333h-85.333v-85.333h85.333zM213.333 469.333v85.333h-85.333v-85.333h85.333zM682.667 128c114.645 0 208.299 90.624 213.12 204.075l0.213 9.259v213.333h-85.333v-213.333c0-67.883-53.547-123.861-120.491-127.787l-7.509-0.213h-213.333v-85.333h213.333zM213.333 298.667v85.333h-85.333v-85.333h85.333zM213.333 128v85.333h-85.333v-85.333h85.333zM384 128v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rounded-corner"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1068,
+ "id": 1281,
+ "name": "rounded-corner",
+ "prevSize": 32,
+ "code": 60665
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1017
+ },
+ {
+ "icon": {
+ "paths": [
+ "M753.365 632.661l-60.331-60.331 60.331-60.331c15.846-15.846 28.42-34.662 36.996-55.369s12.992-42.901 12.992-65.315c0-22.413-4.416-44.606-12.992-65.313s-21.15-39.521-36.996-55.37c-15.851-15.848-34.662-28.42-55.369-36.997s-42.901-12.992-65.314-12.992c-22.413 0-44.608 4.415-65.314 12.992s-39.522 21.149-55.369 36.997l-60.331 60.331-60.331-60.331 60.331-60.331c48.141-47.363 113.050-73.785 180.582-73.51s132.224 27.225 179.977 74.979c47.753 47.754 74.701 112.443 74.978 179.977 0.273 67.532-26.146 132.441-73.51 180.582l-60.331 60.331zM632.661 753.365l-60.331 60.331c-23.701 24.090-51.938 43.247-83.076 56.371-31.142 13.124-64.576 19.951-98.369 20.087s-67.28-6.417-98.528-19.285c-31.247-12.868-59.638-31.799-83.534-55.693-23.896-23.898-42.824-52.288-55.693-83.533-12.869-31.249-19.423-64.738-19.286-98.53s6.965-67.226 20.087-98.368c13.123-31.142 32.282-59.375 56.371-83.076l60.331-60.331 60.331 60.331-60.331 60.331c-15.848 15.846-28.42 34.662-36.997 55.369s-12.992 42.901-12.992 65.314c0 22.413 4.415 44.608 12.992 65.314s21.149 39.518 36.997 55.369c15.849 15.846 34.663 28.42 55.37 36.996s42.9 12.992 65.313 12.992c22.413 0 44.608-4.416 65.315-12.992s39.522-21.15 55.369-36.996l60.331-60.331 60.331 60.331zM632.661 330.965l60.373 60.373-301.696 301.654-60.373-60.331 301.696-301.696zM246.4 97.834l82.432-22.101 44.16 164.907-82.389 22.101-44.203-164.907zM651.008 783.403l82.389-22.101 44.203 164.864-82.432 22.101-44.16-164.864zM97.834 246.4l164.864 44.203-22.101 82.389-164.864-44.16 22.101-82.432zM783.403 651.008l164.864 44.16-22.101 82.432-164.864-44.203 22.101-82.389z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["link-unlink-m"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1069,
+ "id": 1280,
+ "name": "link-unlink-m",
+ "prevSize": 32,
+ "code": 60666
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1018
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 128c23.552 0 42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667h-85.333v85.333h170.667c23.552 0 42.667 19.115 42.667 42.667v128h85.333c23.552 0 42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-170.667c0-23.552 19.115-42.667 42.667-42.667h85.333v-85.333h-341.333v85.333h85.333c23.552 0 42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-170.667c0-23.552 19.115-42.667 42.667-42.667h85.333v-128c0-23.552 19.115-42.667 42.667-42.667h170.667v-85.333h-85.333c-23.552 0-42.667-19.115-42.667-42.667v-170.667c0-23.552 19.115-42.667 42.667-42.667h256zM384 725.333h-170.667v85.333h170.667v-85.333zM810.667 725.333h-170.667v85.333h170.667v-85.333zM597.333 213.333h-170.667v85.333h170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["organization-chart"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1070,
+ "id": 1279,
+ "name": "organization-chart",
+ "prevSize": 32,
+ "code": 60667
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1019
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 256v640h-85.333v-213.333c-67.895 0-133.010-26.97-181.019-74.982-48.009-48.009-74.981-113.122-74.981-181.018s26.971-133.010 74.981-181.019c48.009-48.009 113.124-74.981 181.019-74.981h426.667v85.333h-128v640h-85.333v-640h-128zM426.667 256c-45.264 0-88.673 17.981-120.68 49.987s-49.987 75.416-49.987 120.68c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.416 49.988 120.68 49.988v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["paragraph"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1071,
+ "id": 1278,
+ "name": "paragraph",
+ "prevSize": 32,
+ "code": 60668
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1020
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 384h-85.333v-128h-256v-85.333h597.333v85.333h-256v128zM554.667 640v213.333h-85.333v-213.333h85.333zM128 469.333h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["strikethrough-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1072,
+ "id": 1277,
+ "name": "strikethrough-2",
+ "prevSize": 32,
+ "code": 60669
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1021
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667c23.552 0 42.667 19.115 42.667 42.667v682.667zM810.667 469.333v-256h-255.957v85.333h85.291l-128 128-128-128h85.333v-85.333h-256v256h85.333v85.333h-85.333v256h256v-85.333h-85.333l128-128 128 128h-85.291v85.333h255.957v-256h-85.333v-85.333h85.333zM469.333 554.667h-85.333v-85.333h85.333v85.333zM640 554.667h-85.333v-85.333h85.333v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["merge-cells-vertical"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1073,
+ "id": 1276,
+ "name": "merge-cells-vertical",
+ "prevSize": 32,
+ "code": 60670
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1022
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 64c48.772-0.011 96.683 12.84 138.901 37.256s77.252 59.534 101.568 101.812c24.316 42.278 37.052 90.22 36.924 138.99s-13.111 96.645-37.649 138.796l-264.363 457.771h-98.517l189.397-327.936c-38.089 9.34-77.726 10.496-116.297 3.388s-75.193-22.31-107.453-44.612c-32.26-22.302-59.424-51.191-79.697-84.766-20.273-33.57-33.196-71.061-37.915-109.994s-1.127-78.425 10.54-115.868c11.666-37.443 31.142-71.986 57.14-101.349s57.929-52.878 93.683-68.992c35.753-16.115 74.519-24.463 113.739-24.494v0zM512 149.333c-50.923 0-99.758 20.229-135.764 56.236s-56.236 84.843-56.236 135.764c0 50.921 20.229 99.759 56.236 135.765s84.842 56.235 135.764 56.235c50.923 0 99.759-20.228 135.765-56.235s56.235-84.844 56.235-135.765c0-50.921-20.228-99.758-56.235-135.764s-84.843-56.236-135.765-56.236z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-9"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1074,
+ "id": 1275,
+ "name": "number-9",
+ "prevSize": 32,
+ "code": 60671
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1023
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 170.667h554.667v85.333h-554.667v-85.333zM213.333 128v128h42.667v42.667h-128v-42.667h42.667v-85.333h-42.667v-42.667h85.333zM128 597.333v-106.667h85.333v-21.333h-85.333v-42.667h128v106.667h-85.333v21.333h85.333v42.667h-128zM213.333 832h-85.333v-42.667h85.333v-21.333h-85.333v-42.667h128v170.667h-128v-42.667h85.333v-21.333zM341.333 469.333h554.667v85.333h-554.667v-85.333zM341.333 768h554.667v85.333h-554.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["list-ordered"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1075,
+ "id": 1274,
+ "name": "list-ordered",
+ "prevSize": 32,
+ "code": 60672
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1024
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 469.333h192c28.288 0 55.42-11.238 75.426-31.241 20.002-20.005 31.241-47.136 31.241-75.426s-11.238-55.421-31.241-75.425c-20.006-20.004-47.138-31.242-75.426-31.242h-192v213.333zM768 661.333c0 25.212-4.966 50.18-14.613 73.476-9.651 23.292-23.795 44.459-41.621 62.289-17.83 17.826-38.997 31.97-62.289 41.621-23.296 9.647-48.265 14.613-73.476 14.613h-320v-682.667h277.333c37.589 0.002 74.347 11.036 105.724 31.735 31.373 20.698 55.983 50.151 70.775 84.706s19.115 72.691 12.437 109.68c-6.682 36.988-24.068 71.203-50.014 98.403 29.124 16.866 53.303 41.097 70.11 70.255 16.806 29.163 25.647 62.234 25.634 95.889zM341.333 554.667v213.333h234.667c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241h-234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bold"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1076, "id": 1273, "name": "bold", "prevSize": 32, "code": 60673 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1025
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 768l327.68-256-327.68-256v-85.333h597.333v85.333h-458.112l330.112 256-330.112 256h458.112v85.333h-597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["functions"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1077,
+ "id": 1272,
+ "name": "functions",
+ "prevSize": 32,
+ "code": 60674
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1026
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 213.333v426.667h-85.333v-170.667c-45.264 0-88.673-17.98-120.68-49.987s-49.987-75.416-49.987-120.68c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h341.333v85.333h-85.333v426.667h-85.333v-426.667h-85.333zM384 213.333c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.708 24.994 60.34 24.994v-170.667zM298.667 725.333h512v85.333h-512v106.667l-170.667-149.333 170.667-149.333v106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["text-direction-r"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1078,
+ "id": 1271,
+ "name": "text-direction-r",
+ "prevSize": 32,
+ "code": 60675
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1027
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 170.667h426.667v85.333h-426.667v-85.333zM256 298.667v170.667h-85.333v-170.667h-128l170.667-170.667 170.667 170.667h-128zM256 725.333h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667zM469.333 768h426.667v85.333h-426.667v-85.333zM384 469.333h512v85.333h-512v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["line-height"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1079,
+ "id": 1270,
+ "name": "line-height",
+ "prevSize": 32,
+ "code": 60676
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1028
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 896v-85.333h128v-597.333h-128v-85.333h341.333v85.333h-128v597.333h128v85.333h-341.333zM770.133 300.8l211.2 211.2-211.2 211.2-60.331-60.331 150.869-150.869-150.869-150.869 60.331-60.331zM253.867 300.8l60.331 60.331-150.869 150.869 150.869 150.869-60.331 60.331-211.2-211.2 211.2-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["input-cursor-move"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1080,
+ "id": 1269,
+ "name": "input-cursor-move",
+ "prevSize": 32,
+ "code": 60677
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1029
+ },
+ {
+ "icon": {
+ "paths": [
+ "M723.2 361.13l60.331-60.331 211.2 211.2-211.2 211.2-60.331-60.331 150.827-150.869-150.827-150.87zM300.8 361.13l-150.827 150.87 150.827 150.869-60.331 60.331-211.2-211.2 211.2-211.2 60.331 60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-view"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1081,
+ "id": 1268,
+ "name": "code-view",
+ "prevSize": 32,
+ "code": 60678
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1030
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 85.333v64l-351.445 789.333h-93.397l341.888-768h-451.712v-85.333h554.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-7"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1082,
+ "id": 1267,
+ "name": "number-7",
+ "prevSize": 32,
+ "code": 60679
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1031
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 341.333l-0.085 85.333-106.88 123.008c67.84 18.56 117.632 80.64 117.632 154.325 0 88.363-71.637 160-160 160-77.909 0-142.805-55.68-157.099-129.408l83.797-16.299c6.656 34.389 36.949 60.373 73.301 60.373 41.216 0 74.667-33.451 74.667-74.667s-33.451-74.667-74.667-74.667c-12.203 0-23.723 2.944-33.877 8.107l-55.765-66.005 125.909-144.768h-185.6v-85.333h298.667zM170.667 170.667v298.667h298.667v-298.667h85.333v682.667h-85.333v-298.667h-298.667v298.667h-85.333v-682.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["h-3"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1083, "id": 1266, "name": "h-3", "prevSize": 32, "code": 60680 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1032
+ },
+ {
+ "icon": {
+ "paths": ["M554.667 256v640h-85.333v-640h-256v-85.333h597.333v85.333h-256z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["text"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1084, "id": 1265, "name": "text", "prevSize": 32, "code": 60681 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1033
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM298.667 810.667h597.333v85.333h-597.333v-85.333zM128 597.333h768v85.333h-768v-85.333zM298.667 384h597.333v85.333h-597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["align-right"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1085,
+ "id": 1264,
+ "name": "align-right",
+ "prevSize": 32,
+ "code": 60682
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1034
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 170.667v298.667h298.667v-298.667h85.333v682.667h-85.333v-298.667h-298.667v298.667h-85.333v-682.667h85.333zM789.333 341.333c88.363 0 160 71.637 160 160 0 36.565-12.288 70.315-32.939 97.28l-6.315 7.68-140.629 161.707h169.216v85.333h-298.667v-66.389l205.653-236.629c11.435-13.099 18.347-30.251 18.347-48.981 0-41.216-33.451-74.667-74.667-74.667-39.168 0-71.296 30.165-74.411 68.523l-0.256 6.144h-85.333c0-88.363 71.637-160 160-160z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["h-2"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1086, "id": 1263, "name": "h-2", "prevSize": 32, "code": 60683 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1035
+ },
+ {
+ "icon": {
+ "paths": [
+ "M635.136 85.333l-189.355 327.936c62.165-15.299 127.71-8.621 185.51 18.901 57.801 27.524 104.299 74.197 131.605 132.1 27.307 57.907 33.741 123.473 18.21 185.579-15.531 62.11-52.075 116.928-103.424 155.162s-114.342 57.523-178.295 54.601c-63.953-2.927-124.925-27.887-172.57-70.647s-79.028-100.689-88.825-163.955c-9.797-63.266 2.595-127.974 35.075-183.142l263.509-456.533h98.56zM512 490.667c-50.923 0-99.757 20.228-135.764 56.235s-56.236 84.843-56.236 135.765c0 50.923 20.228 99.759 56.236 135.765s84.841 56.235 135.764 56.235c50.923 0 99.759-20.228 135.765-56.235s56.235-84.843 56.235-135.765c0-50.923-20.228-99.759-56.235-135.765s-84.843-56.235-135.765-56.235v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-6"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1087,
+ "id": 1262,
+ "name": "number-6",
+ "prevSize": 32,
+ "code": 60684
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1036
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM469.333 213.333h-256v255.957h85.333v-85.291l128 128-128 128v-85.333h-85.333v256h256v-85.333h85.333v85.333h256v-256h-85.333v85.333l-128-128 128-128v85.291h85.333v-255.957h-256v85.333h-85.333v-85.333zM554.667 554.667v85.333h-85.333v-85.333h85.333zM554.667 384v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["merge-cells-horizontal"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1088,
+ "id": 1261,
+ "name": "merge-cells-horizontal",
+ "prevSize": 32,
+ "code": 60685
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1037
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 64v618.667h128v85.333h-128v170.667h-85.333v-170.667h-426.667v-47.019l426.667-656.981h85.333zM597.333 682.667v-462.037l-300.032 462.037h300.032z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-4"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1089,
+ "id": 1260,
+ "name": "number-4",
+ "prevSize": 32,
+ "code": 60686
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1038
+ },
+ {
+ "icon": {
+ "paths": [
+ "M238.763 213.333l209.237 252.928 209.237-252.928h110.763l-264.619 319.872 264.619 320.128h-110.507l-209.493-253.184-209.493 253.184h-110.507v-0.256l264.619-319.872-264.619-319.872h110.763zM919.467 280.747c4.39-4.169 7.59-9.429 9.28-15.244 1.685-5.814 1.796-11.971 0.316-17.842-1.476-5.871-4.489-11.242-8.73-15.564-4.237-4.322-9.549-7.44-15.39-9.033s-11.998-1.603-17.843-0.032c-5.845 1.572-11.17 4.67-15.424 8.977s-7.283 9.668-8.785 15.533c-1.498 5.865-1.408 12.023 0.256 17.843l-49.28 14.080c-3.627-12.707-4.254-26.083-1.83-39.074s7.829-25.242 15.791-35.789c7.962-10.547 18.261-19.102 30.093-24.991s24.866-8.951 38.080-8.946c17.084 0.003 33.775 5.132 47.91 14.726s25.067 23.21 31.377 39.085c6.31 15.875 7.71 33.28 4.019 49.96s-12.305 31.869-24.725 43.599l-69.504 65.963h96.256v42.667h-170.667v-42.667l108.8-103.253z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["superscript"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1090,
+ "id": 1259,
+ "name": "superscript",
+ "prevSize": 32,
+ "code": 60687
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1039
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554.667c117.803 0 213.333 95.531 213.333 213.333s-95.531 213.333-213.333 213.333c-117.803 0-213.333-95.531-213.333-213.333s95.531-213.333 213.333-213.333zM554.667 640h-85.333v85.291l-85.333 0.043v85.333l85.333-0.043v85.376h85.333v-85.376l85.333 0.043v-85.333l-85.333-0.043v-85.291zM853.333 128c23.552 0 42.667 19.115 42.667 42.667v256c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-256c0-23.552 19.115-42.667 42.667-42.667h682.667zM213.333 213.333v170.667h597.333v-170.667h-597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["insert-row-bottom"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1091,
+ "id": 1258,
+ "name": "insert-row-bottom",
+ "prevSize": 32,
+ "code": 60688
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1040
+ },
+ {
+ "icon": {
+ "paths": [
+ "M195.541 739.029c-43.947-46.677-67.541-99.029-67.541-183.893 0-149.333 104.832-283.179 257.28-349.355l38.101 58.795c-142.293 76.971-170.112 176.853-181.205 239.829 22.912-11.861 52.907-16 82.304-13.269 76.971 7.125 137.643 70.315 137.643 148.864 0 39.607-15.731 77.589-43.739 105.596-28.005 28.002-65.989 43.738-105.594 43.738-45.781 0-89.557-20.907-117.248-50.304v0zM622.208 739.029c-43.947-46.677-67.541-99.029-67.541-183.893 0-149.333 104.832-283.179 257.28-349.355l38.101 58.795c-142.293 76.971-170.112 176.853-181.205 239.829 22.912-11.861 52.907-16 82.304-13.269 76.971 7.125 137.643 70.315 137.643 148.864 0 39.607-15.731 77.589-43.738 105.596-28.006 28.002-65.988 43.738-105.596 43.738-45.781 0-89.557-20.907-117.248-50.304v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["double-quotes-l"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1092,
+ "id": 1257,
+ "name": "double-quotes-l",
+ "prevSize": 32,
+ "code": 60689
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1041
+ },
+ {
+ "icon": {
+ "paths": [
+ "M650.496 597.333h-276.992l-68.267 170.667h-91.904l256-640h85.333l256 640h-91.904l-68.267-170.667zM616.363 512l-104.363-260.907-104.363 260.907h208.725zM128 853.333h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["font-color"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1093,
+ "id": 1256,
+ "name": "font-color",
+ "prevSize": 32,
+ "code": 60690
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1042
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 853.333h-85.333v-298.667h-298.667v298.667h-85.333v-682.667h85.333v298.667h298.667v-298.667h85.333v682.667zM896 341.333v512h-85.333v-417.963l-85.333 22.869v-88.32l106.667-28.587h64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["h-1"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1094, "id": 1255, "name": "h-1", "prevSize": 32, "code": 60691 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1043
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333v85.333h-371.2l-28.885 274.987c49.915-30.332 108.135-44.131 166.353-39.427s113.468 27.668 157.867 65.62c44.399 37.948 75.682 88.947 89.391 145.728 13.705 56.777 9.139 116.433-13.056 170.462-22.191 54.025-60.877 99.669-110.537 130.415-49.66 30.75-107.763 45.035-166.016 40.819-58.257-4.22-113.696-26.722-158.411-64.299-44.715-37.581-76.424-88.316-90.605-144.977l82.773-20.736c11.458 45.38 39.090 85.013 77.707 111.458 38.616 26.449 85.558 37.884 132.013 32.162 46.451-5.722 89.216-28.203 120.265-63.228 31.044-35.025 48.235-80.179 48.341-126.985 0-50.923-20.228-99.759-56.235-135.765s-84.843-56.235-135.765-56.235c-86.272 0-139.862 27.264-168.96 65.28l-67.2-50.432 44.16-420.181h448z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-5"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1095,
+ "id": 1254,
+ "name": "number-5",
+ "prevSize": 32,
+ "code": 60692
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1044
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 469.333h85.333v85.333h-85.333v-85.333zM256 469.333h512v85.333h-512v-85.333zM853.333 469.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["separator"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1096,
+ "id": 1253,
+ "name": "separator",
+ "prevSize": 32,
+ "code": 60693
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1045
+ },
+ {
+ "icon": {
+ "paths": ["M597.333 64v874.667h-85.333v-780.629l-192 51.456v-88.363l213.333-57.131h64z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-1"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1097,
+ "id": 1252,
+ "name": "number-1",
+ "prevSize": 32,
+ "code": 60694
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1046
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 341.333v85.333h-184.448l-19.797 112.469c14.080-3.797 28.928-5.803 44.245-5.803 94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667c-77.952 0-143.659-52.224-164.096-123.605l82.048-23.509c10.24 35.669 43.093 61.781 82.048 61.781 47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333c-26.88 0-50.901 12.459-66.56 31.915l-77.227-38.571 47.787-270.677h256zM170.667 170.667v298.667h298.667v-298.667h85.333v682.667h-85.333v-298.667h-298.667v298.667h-85.333v-682.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["h-5"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1098, "id": 1251, "name": "h-5", "prevSize": 32, "code": 60695 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1047
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM810.667 213.333h-597.333v255.957l170.667 0.043v85.333h-170.667v256h597.333v-256h-170.667v-85.333l170.667-0.043v-255.957zM512 256l128 128h-85.333v256h85.333l-128 128-128-128h85.333v-256h-85.333l128-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["split-cells-vertical"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1099,
+ "id": 1250,
+ "name": "split-cells-vertical",
+ "prevSize": 32,
+ "code": 60696
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1048
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM469.333 213.333h-256v597.333h256v-170.667h85.333v170.667h256v-597.333h-256v170.667h-85.333v-170.667zM640 384l128 128-128 128v-85.333h-256v85.333l-128-128 128-128v85.333h256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["split-cells-horizontal"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1100,
+ "id": 1249,
+ "name": "split-cells-horizontal",
+ "prevSize": 32,
+ "code": 60697
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1049
+ },
+ {
+ "icon": {
+ "paths": [
+ "M765.184 129.536l73.899 42.667-48.427 83.797h105.344v85.333h-85.333v170.667h85.333v85.333h-85.333v298.667h-85.333v-298.667h-131.584c-13.867 122.112-66.731 230.144-143.787 306.901l-66.645-54.187c64.853-61.355 110.763-150.272 124.459-252.672l-81.109-0.043v-85.333l85.333-0.043v-170.624h-85.333v-85.333h105.259l-48.341-83.797 73.899-42.667 73.003 126.464h61.611l73.088-126.464zM213.333 588.928l-85.333 22.869v-88.363l85.333-22.869v-159.232h-85.333v-85.333h85.333v-128h85.333v128h85.333v85.333h-85.333v136.405l85.333-22.869v88.32l-85.333 22.869v223.275c0 14.007-2.759 27.878-8.119 40.819s-13.218 24.7-23.122 34.607c-9.905 9.903-21.664 17.762-34.605 23.121s-26.812 8.119-40.82 8.119h-64v-85.333h64c4.993 0 9.829-1.749 13.664-4.945s6.429-7.637 7.328-12.548l0.341-3.84v-200.405zM725.333 341.333h-128v170.667h128v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pinyin-input"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1101,
+ "id": 1248,
+ "name": "pinyin-input",
+ "prevSize": 32,
+ "code": 60698
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1050
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 256v554.667h-85.333v-554.667h-256v-85.333h597.333v85.333h-256zM834.133 707.413c4.39-4.169 7.59-9.429 9.28-15.245 1.685-5.811 1.796-11.972 0.316-17.839-1.476-5.871-4.489-11.243-8.73-15.565-4.237-4.322-9.549-7.441-15.39-9.033-5.841-1.596-11.998-1.604-17.843-0.034-5.845 1.574-11.17 4.672-15.424 8.977-4.254 4.309-7.283 9.668-8.785 15.535-1.498 5.867-1.408 12.023 0.256 17.843l-49.237 14.080c-3.627-12.706-4.25-26.078-1.83-39.066s7.821-25.233 15.778-35.78c7.957-10.547 18.253-19.102 30.076-24.994 11.827-5.892 24.858-8.96 38.067-8.96 17.084 0.004 33.775 5.133 47.91 14.724 14.135 9.596 25.067 23.211 31.377 39.087s7.71 33.28 4.019 49.958c-3.691 16.683-12.305 31.872-24.725 43.601l-69.504 65.963h96.256v42.667h-170.667v-42.667l108.8-103.253z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subscript-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1102,
+ "id": 1247,
+ "name": "subscript-2",
+ "prevSize": 32,
+ "code": 60699
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1051
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 853.333h-85.333v-298.667h-298.667v298.667h-85.333v-682.667h85.333v298.667h298.667v-298.667h85.333v682.667zM938.667 341.333v341.333h64v85.333h-64v85.333h-85.333v-85.333h-234.667v-57.173l213.333-369.493h106.667zM853.333 475.008l-119.893 207.659h119.893v-207.659z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["h-4"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1103, "id": 1246, "name": "h-4", "prevSize": 32, "code": 60700 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1052
+ },
+ {
+ "icon": {
+ "paths": [
+ "M332.117 597.333l17.92-170.667h-179.371v-85.333h188.373l22.4-213.333h85.803l-22.4 213.333h170.197l22.4-213.333h85.803l-22.4 213.333h152.491v85.333h-161.451l-17.92 170.667h179.371v85.333h-188.373l-22.4 213.333h-85.803l22.4-213.333h-170.197l-22.4 213.333h-85.803l22.4-213.333h-152.491v-85.333h161.451zM417.92 597.333h170.24l17.92-170.667h-170.24l-17.92 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hashtag"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1104, "id": 1245, "name": "hashtag", "prevSize": 32, "code": 60701 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1053
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 64c56.363 0 105.984 14.848 147.072 42.411 41.088 27.52 73.643 67.755 95.957 118.528 22.272 50.773 34.304 112 34.304 181.632v210.859c0 69.632-12.032 130.901-34.304 181.632-22.315 50.773-54.869 91.008-96 118.528-41.045 27.563-90.667 42.411-147.029 42.411s-105.984-14.848-147.072-42.411c-41.088-27.52-73.643-67.755-95.957-118.528-22.272-50.773-34.304-112-34.304-181.632v-210.859c0-69.632 12.032-130.901 34.304-181.632 22.315-50.773 54.869-91.008 96-118.528 41.003-27.563 90.624-42.411 147.029-42.411zM512 149.333c-39.083 0-72.277 9.643-99.541 27.947-27.179 18.219-49.408 45.653-65.365 81.92-17.579 40.107-27.093 89.941-27.093 147.371v210.859c0 57.429 9.515 107.264 27.093 147.328 15.957 36.309 38.187 63.744 65.365 81.963 27.264 18.304 60.459 27.947 99.541 27.947s72.277-9.643 99.541-27.947c27.179-18.219 49.408-45.653 65.365-81.92 17.579-40.107 27.093-89.941 27.093-147.371v-210.859c0-57.429-9.515-107.264-27.093-147.328-15.957-36.309-38.187-63.744-65.365-81.963-27.264-18.304-60.459-27.947-99.541-27.947z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-0"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1105,
+ "id": 1244,
+ "name": "number-0",
+ "prevSize": 32,
+ "code": 60702
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1054
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c23.552 0 42.667 19.115 42.667 42.667v341.333c35.627-26.795 79.957-42.667 128-42.667 117.803 0 213.333 95.531 213.333 213.333s-95.531 213.333-213.333 213.333c-44.032 0-84.907-13.355-118.912-36.181l-9.088-6.485c0 23.552-19.115 42.667-42.667 42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h256zM469.333 213.333h-170.667v597.333h170.667v-597.333zM810.667 640h-256v85.333h256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-column"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1106,
+ "id": 1243,
+ "name": "delete-column",
+ "prevSize": 32,
+ "code": 60703
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1055
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 320c0-45.263-17.98-88.673-49.988-120.679-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.679h-85.333c0.002-40.965 9.834-81.332 28.672-117.709s46.129-67.702 79.584-91.345c33.455-23.642 72.093-38.91 112.673-44.523s81.911-1.405 120.529 12.27c38.613 13.675 73.382 36.416 101.389 66.315 28.002 29.899 48.422 66.082 59.541 105.509s12.617 80.947 4.365 121.072c-8.256 40.125-26.018 77.681-51.797 109.519l-312.32 372.181 369.365 0.043v85.333h-512v-48.085l386.731-460.885c25.852-30.7 40-69.561 39.936-109.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1107,
+ "id": 1242,
+ "name": "number-2",
+ "prevSize": 32,
+ "code": 60704
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1056
+ },
+ {
+ "icon": {
+ "paths": [
+ "M900.139 341.333l-110.848 192c94.293 0 170.709 76.373 170.709 170.667s-76.373 170.667-170.667 170.667c-94.293 0-170.667-76.373-170.667-170.667 0-31.403 8.491-60.843 23.296-86.144l159.659-276.523h98.517zM170.667 170.667v298.667h298.667v-298.667h85.333v682.667h-85.333v-298.667h-298.667v298.667h-85.333v-682.667h85.333zM789.333 618.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["h-6"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1108, "id": 1241, "name": "h-6", "prevSize": 32, "code": 60705 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1057
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 128c23.552 0 42.667 19.115 42.667 42.667v213.333h213.333c23.552 0 42.667 19.115 42.667 42.667v426.667c0 23.552-19.115 42.667-42.667 42.667h-426.667c-23.552 0-42.667-19.115-42.667-42.667v-213.333h-213.333c-23.552 0-42.667-19.115-42.667-42.667v-426.667c0-23.552 19.115-42.667 42.667-42.667h426.667zM554.667 213.333h-341.333v341.333h341.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bring-forward"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1109,
+ "id": 1240,
+ "name": "bring-forward",
+ "prevSize": 32,
+ "code": 60706
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1058
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 554.667c23.552 0 42.667 19.115 42.667 42.667v256c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-256c0-23.552 19.115-42.667 42.667-42.667h682.667zM810.667 640h-597.333v170.667h597.333v-170.667zM512 42.667c117.803 0 213.333 95.531 213.333 213.333s-95.531 213.333-213.333 213.333c-117.803 0-213.333-95.531-213.333-213.333s95.531-213.333 213.333-213.333zM554.667 128h-85.333v85.291l-85.333 0.043v85.333l85.333-0.043v85.376h85.333v-85.376l85.333 0.043v-85.333l-85.333-0.043v-85.291z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["insert-row-top"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1110,
+ "id": 1239,
+ "name": "insert-row-top",
+ "prevSize": 32,
+ "code": 60707
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1059
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 213.333v426.667h-85.333v-170.667c-45.264 0-88.673-17.98-120.68-49.987s-49.987-75.416-49.987-120.68c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h341.333v85.333h-85.333v426.667h-85.333v-426.667h-85.333zM384 213.333c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.708 24.994 60.34 24.994v-170.667zM725.333 725.333v-106.667l170.667 149.333-170.667 149.333v-106.667h-512v-85.333h512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["text-direction-l"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1111,
+ "id": 1238,
+ "name": "text-direction-l",
+ "prevSize": 32,
+ "code": 60708
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1060
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 426.667v170.667h256v-170.667h-256zM469.333 426.667h-256v170.667h256v-170.667zM554.667 810.667h256v-128h-256v128zM469.333 810.667v-128h-256v128h256zM554.667 213.333v128h256v-128h-256zM469.333 213.333h-256v128h256v-128zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["table-2"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1112, "id": 1237, "name": "table-2", "prevSize": 32, "code": 60709 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1061
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333v58.112l-221.483 264.021c50.103 6.287 97.545 26.133 137.199 57.395 39.654 31.266 70.025 72.759 87.829 120.017 17.805 47.253 22.374 98.47 13.214 148.13s-31.706 95.876-65.203 133.666c-33.498 37.79-76.672 65.715-124.873 80.772-48.201 15.053-99.601 16.666-148.646 4.659-49.051-12.006-93.893-37.175-129.69-72.794s-61.192-80.329-73.446-129.318l82.773-20.736c11.458 45.38 39.090 85.013 77.707 111.458 38.615 26.449 85.562 37.884 132.013 32.162s89.22-28.203 120.265-63.228c31.044-35.025 48.235-80.179 48.341-126.985 0.009-32.704-8.333-64.866-24.239-93.44s-38.844-52.612-66.645-69.833c-27.797-17.225-59.537-27.059-92.203-28.578-32.67-1.519-65.182 5.333-94.46 19.904l-9.728 5.205-29.44-51.499 246.528-293.76h-356.48v-85.333h490.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["number-3"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1113,
+ "id": 1236,
+ "name": "number-3",
+ "prevSize": 32,
+ "code": 60710
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1062
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 128c23.552 0 42.667 19.115 42.667 42.667v85.333h213.333c23.552 0 42.667 19.115 42.667 42.667v213.333h85.333c23.552 0 42.667 19.115 42.667 42.667v298.667c0 23.552-19.115 42.667-42.667 42.667h-298.667c-23.552 0-42.667-19.115-42.667-42.667v-85.333h-213.333c-23.552 0-42.667-19.115-42.667-42.667v-213.333h-85.333c-23.552 0-42.667-19.115-42.667-42.667v-298.667c0-23.552 19.115-42.667 42.667-42.667h298.667zM682.667 341.333h-170.667v128c0 23.552-19.115 42.667-42.667 42.667h-128v170.667h170.667v-128c0-23.552 19.115-42.667 42.667-42.667h128v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["send-to-back"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1114,
+ "id": 1235,
+ "name": "send-to-back",
+ "prevSize": 32,
+ "code": 60711
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1063
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 128l170.667 213.333h-128v512h-85.333v-512h-128l170.667-213.333zM597.333 768v85.333h-469.333v-85.333h469.333zM597.333 469.333v85.333h-469.333v-85.333h469.333zM512 170.667v85.333h-384v-85.333h384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sort-asc"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1115,
+ "id": 1234,
+ "name": "sort-asc",
+ "prevSize": 32,
+ "code": 60712
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1064
+ },
+ {
+ "icon": {
+ "paths": [
+ "M539.776 600.107l-44.629 253.227h-86.656l57.6-326.869-316.16-316.16 60.416-60.331 663.68 663.68-60.331 60.331-273.92-273.877zM502.315 321.28l11.52-65.28h-76.8l-85.333-85.333h501.632v85.333h-252.885l-24.448 138.965-73.685-73.685z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["format-clear"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1116,
+ "id": 1233,
+ "name": "format-clear",
+ "prevSize": 32,
+ "code": 60713
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1065
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810.667c35.328 0 64 28.672 64 64s-28.672 64-64 64c-35.328 0-64-28.672-64-64s28.672-64 64-64zM512 85.333c141.397 0 256 114.603 256 256 0 92.373-32.128 140.373-114.091 210.048-82.219 69.845-99.243 101.291-99.243 173.952h-85.333c0-105.557 33.579-157.653 129.323-238.976 64.725-54.997 84.011-83.84 84.011-145.024 0-94.293-76.373-170.667-170.667-170.667s-170.667 76.373-170.667 170.667v42.667h-85.333v-42.667c0-141.397 114.603-256 256-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["question-mark"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1117,
+ "id": 1232,
+ "name": "question-mark",
+ "prevSize": 32,
+ "code": 60714
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1066
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 810.667h768v85.333h-768v-85.333zM469.333 597.333h426.667v85.333h-426.667v-85.333zM469.333 384h426.667v85.333h-426.667v-85.333zM298.667 533.333l-170.667 149.333v-298.667l170.667 149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["indent-increase"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1118,
+ "id": 1231,
+ "name": "indent-increase",
+ "prevSize": 32,
+ "code": 60715
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1067
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 426.667h85.333v32.299c28.915-19.319 62.532-30.421 97.263-32.124 34.731-1.705 69.274 6.054 99.938 22.451 30.665 16.401 56.303 40.815 74.172 70.647 17.869 29.828 27.302 63.953 27.294 98.726v234.667h-85.333v-234.667c0-61.013-50.133-106.667-106.667-106.667s-106.667 45.653-106.667 106.667v234.667h-85.333v-426.667zM512 170.667v85.333h-341.333v213.333h341.333v85.333h-341.333v213.333h341.333v85.333h-426.667v-682.667h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["english-input"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1119,
+ "id": 1230,
+ "name": "english-input",
+ "prevSize": 32,
+ "code": 60716
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1068
+ },
+ {
+ "icon": {
+ "paths": [
+ "M408.875 739.029c-43.947-46.677-67.541-99.029-67.541-183.893 0-149.333 104.832-283.179 257.28-349.355l38.101 58.795c-142.293 76.971-170.112 176.853-181.205 239.829 22.912-11.861 52.907-16 82.304-13.269 76.971 7.125 137.643 70.315 137.643 148.864 0 39.607-15.731 77.589-43.738 105.596-28.006 28.002-65.988 43.738-105.596 43.738-45.781 0-89.557-20.907-117.248-50.304v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["single-quotes-l"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1120,
+ "id": 1229,
+ "name": "single-quotes-l",
+ "prevSize": 32,
+ "code": 60717
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1069
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 853.333h-341.333v-85.333h124.885l90.283-512h-129.835v-85.333h341.333v85.333h-124.885l-90.283 512h129.835v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["italic"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1121, "id": 1228, "name": "italic", "prevSize": 32, "code": 60718 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1070
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM213.333 810.667h597.333v85.333h-597.333v-85.333zM128 597.333h768v85.333h-768v-85.333zM213.333 384h597.333v85.333h-597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["align-center"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1122,
+ "id": 1227,
+ "name": "align-center",
+ "prevSize": 32,
+ "code": 60719
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1071
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 768h64c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241h-576v-85.333h576c50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235h-64v85.333l-170.667-128 170.667-128v85.333zM128 170.667h768v85.333h-768v-85.333zM384 768v85.333h-256v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["text-wrap"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1123,
+ "id": 1226,
+ "name": "text-wrap",
+ "prevSize": 32,
+ "code": 60720
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1072
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM277.333 810.667c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743v0zM746.667 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM768 128v85.333h-426.667v170.667h384v85.333h-384v170.667h426.667v85.333h-512v-597.333h512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emphasis"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1124,
+ "id": 1225,
+ "name": "emphasis",
+ "prevSize": 32,
+ "code": 60721
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1073
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 170.667h554.667v85.333h-554.667v-85.333zM192 277.333c-16.974 0-33.253-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745c16.974 0 33.253 6.743 45.255 18.745s18.745 28.281 18.745 45.255c0 16.974-6.743 33.253-18.745 45.255s-28.281 18.745-45.255 18.745zM192 576c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM192 870.4c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM341.333 469.333h554.667v85.333h-554.667v-85.333zM341.333 768h554.667v85.333h-554.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["list-unordered"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1125,
+ "id": 1224,
+ "name": "list-unordered",
+ "prevSize": 32,
+ "code": 60722
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1074
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 298.667v554.667h-85.333v-554.667h-256v-85.333h512v85.333h-170.667zM834.133 280.747c4.39-4.169 7.59-9.429 9.28-15.244 1.685-5.814 1.796-11.971 0.316-17.842-1.476-5.871-4.489-11.242-8.73-15.564-4.237-4.322-9.549-7.44-15.39-9.033s-11.998-1.603-17.843-0.032c-5.845 1.572-11.17 4.67-15.424 8.977s-7.283 9.668-8.785 15.533c-1.498 5.865-1.408 12.023 0.256 17.843l-49.237 14.080c-3.627-12.704-4.25-26.076-1.83-39.064s7.821-25.236 15.778-35.782c7.957-10.546 18.253-19.101 30.076-24.993 11.827-5.892 24.858-8.959 38.067-8.96 17.084 0.003 33.775 5.132 47.91 14.726s25.067 23.21 31.377 39.085c6.31 15.875 7.71 33.28 4.019 49.96s-12.305 31.869-24.725 43.599l-69.504 65.963h96.256v42.667h-170.667v-42.667l108.8-103.253z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["superscript-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1126,
+ "id": 1223,
+ "name": "superscript-2",
+ "prevSize": 32,
+ "code": 60723
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1075
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 170.667h554.667v85.333h-554.667v-85.333zM128 149.333h128v128h-128v-128zM128 448h128v128h-128v-128zM128 746.667h128v128h-128v-128zM341.333 469.333h554.667v85.333h-554.667v-85.333zM341.333 768h554.667v85.333h-554.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["list-check"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1127,
+ "id": 1222,
+ "name": "list-check",
+ "prevSize": 32,
+ "code": 60724
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1076
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM277.333 810.667c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743v0zM746.667 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM554.667 85.333v85.333h256v85.333h-83.968c-32.922 99.094-85.461 190.541-154.496 268.885 65.779 58.782 143.232 103.010 227.285 129.792l-22.869 82.347c-98.103-30.758-188.378-82.406-264.619-151.381-76.254 68.949-166.526 120.576-264.619 151.339l-22.869-82.304c84.047-26.799 161.494-71.027 227.285-129.792-48.675-55.104-89.22-116.885-120.405-183.467h95.573c23.787 43.854 52.301 84.973 85.035 122.624 53.338-61.48 95.369-131.913 124.16-208.043h-422.827v-85.333h256v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emphasis-cn"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1128,
+ "id": 1221,
+ "name": "emphasis-cn",
+ "prevSize": 32,
+ "code": 60725
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1077
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 85.333c23.552 0 42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667h-85.333v85.333h213.333v-42.667c0-23.552 19.115-42.667 42.667-42.667h256c23.552 0 42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-42.667h-213.333v256h213.333v-42.667c0-23.552 19.115-42.667 42.667-42.667h256c23.552 0 42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-42.667h-256c-23.552 0-42.667-19.115-42.667-42.667v-469.333h-85.333c-23.552 0-42.667-19.115-42.667-42.667v-170.667c0-23.552 19.115-42.667 42.667-42.667h256zM810.667 768h-170.667v85.333h170.667v-85.333zM810.667 426.667h-170.667v85.333h170.667v-85.333zM384 170.667h-170.667v85.333h170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["node-tree"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1129,
+ "id": 1220,
+ "name": "node-tree",
+ "prevSize": 32,
+ "code": 60726
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1078
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 810.667h768v85.333h-768v-85.333zM469.333 597.333h426.667v85.333h-426.667v-85.333zM469.333 384h426.667v85.333h-426.667v-85.333zM128 533.333l170.667-149.333v298.667l-170.667-149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["indent-decrease"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1130,
+ "id": 1219,
+ "name": "indent-decrease",
+ "prevSize": 32,
+ "code": 60727
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1079
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 128v310.059l268.544-155.008 42.667 73.899-268.501 155.008 268.501 155.093-42.667 73.899-268.544-155.051v310.101h-85.333v-310.101l-268.544 155.051-42.667-73.899 268.501-155.051-268.501-155.051 42.667-73.899 268.544 155.008v-310.059h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["asterisk"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1131,
+ "id": 1218,
+ "name": "asterisk",
+ "prevSize": 32,
+ "code": 60728
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1080
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 170.667h426.667v85.333h-426.667v-85.333zM469.333 341.333h256v85.333h-256v-85.333zM469.333 597.333h426.667v85.333h-426.667v-85.333zM469.333 768h256v85.333h-256v-85.333zM128 170.667h256v256h-256v-256zM213.333 256v85.333h85.333v-85.333h-85.333zM128 597.333h256v256h-256v-256zM213.333 682.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["list-check-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1132,
+ "id": 1217,
+ "name": "list-check-2",
+ "prevSize": 32,
+ "code": 60729
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1081
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 725.333h426.667v-106.667l149.333 149.333-149.333 149.333v-106.667h-426.667v106.667l-149.333-149.333 149.333-149.333v106.667zM554.667 256v384h-85.333v-384h-256v-85.333h597.333v85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["text-spacing"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1133,
+ "id": 1216,
+ "name": "text-spacing",
+ "prevSize": 32,
+ "code": 60730
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1082
+ },
+ {
+ "icon": {
+ "paths": [
+ "M632.661 330.966l-241.323 241.365c-4.075 3.938-7.325 8.644-9.562 13.85s-3.413 10.803-3.462 16.469c-0.049 5.666 1.030 11.285 3.176 16.529s5.313 10.005 9.319 14.012c4.006 4.006 8.77 7.177 14.013 9.318 5.244 2.146 10.862 3.226 16.527 3.179 5.666-0.051 11.264-1.229 16.469-3.465s9.916-5.487 13.85-9.562l241.365-241.322c24.009-24.007 37.495-56.567 37.495-90.517s-13.487-66.511-37.495-90.517c-24.009-24.007-56.567-37.493-90.517-37.493s-66.509 13.487-90.517 37.493l-241.365 241.365c-20.221 19.716-36.325 43.255-47.379 69.244s-16.837 53.918-17.014 82.159c-0.177 28.241 5.256 56.239 15.983 82.364 10.727 26.129 26.536 49.865 46.508 69.833s43.711 35.776 69.839 46.498c26.128 10.722 54.125 16.154 82.367 15.97 28.244-0.179 56.169-5.969 82.158-17.024 25.988-11.059 49.519-27.166 69.235-47.39l241.365-241.323 60.331 60.331-241.365 241.365c-27.733 27.738-60.663 49.737-96.9 64.747s-75.076 22.737-114.3 22.737c-39.223 0-78.063-7.727-114.301-22.737s-69.164-37.009-96.899-64.747c-27.735-27.733-49.736-60.659-64.746-96.9-15.010-36.237-22.736-75.076-22.736-114.3s7.726-78.063 22.736-114.3c15.010-36.237 37.011-69.165 64.746-96.9l241.408-241.323c40.235-38.86 94.123-60.363 150.059-59.877s109.44 22.922 148.996 62.476c39.552 39.554 61.99 93.060 62.477 148.995s-21.018 109.824-59.878 150.059l-241.323 241.451c-11.891 11.887-26.005 21.316-41.536 27.746-15.535 6.434-32.183 9.745-48.997 9.741-16.812 0-33.46-3.315-48.992-9.749-15.532-6.438-29.644-15.868-41.531-27.759s-21.316-26.005-27.748-41.536c-6.432-15.535-9.742-32.183-9.74-48.994 0.002-16.815 3.315-33.463 9.751-48.994s15.868-29.645 27.758-41.532l241.365-241.365 60.331 60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["attachment-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1134,
+ "id": 1215,
+ "name": "attachment-2",
+ "prevSize": 32,
+ "code": 60731
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1083
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 128c23.552 0 42.667 19.115 42.667 42.667v213.333h213.333c23.552 0 42.667 19.115 42.667 42.667v426.667c0 23.552-19.115 42.667-42.667 42.667h-426.667c-23.552 0-42.667-19.115-42.667-42.667v-213.333h-213.333c-23.552 0-42.667-19.115-42.667-42.667v-426.667c0-23.552 19.115-42.667 42.667-42.667h426.667zM554.667 213.333h-341.333v341.333h170.667v-128c0-23.552 19.115-42.667 42.667-42.667h128v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["send-backward"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1135,
+ "id": 1214,
+ "name": "send-backward",
+ "prevSize": 32,
+ "code": 60732
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1084
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768v85.333h-768v-85.333zM341.333 469.333v426.667h-85.333v-426.667h-128l170.667-170.667 170.667 170.667h-128zM768 469.333v426.667h-85.333v-426.667h-128l170.667-170.667 170.667 170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["align-top"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1136,
+ "id": 1213,
+ "name": "align-top",
+ "prevSize": 32,
+ "code": 60733
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1085
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 725.333h213.333v85.333h-128v128h-85.333v-213.333zM298.667 298.667h-213.333v-85.333h128v-128h85.333v213.333zM783.531 662.869l-60.331-60.416 60.331-60.331c19.951-19.78 35.802-43.302 46.639-69.222 10.833-25.92 16.444-53.725 16.508-81.819 0.060-28.094-5.427-55.924-16.149-81.891s-26.47-49.561-46.336-69.426c-19.866-19.865-43.46-35.611-69.427-46.334s-53.794-16.211-81.89-16.149c-28.092 0.061-55.898 5.671-81.818 16.508s-49.442 26.685-69.222 46.638l-60.331 60.373-60.373-60.331 60.416-60.331c56.013-56.014 131.985-87.482 211.2-87.482s155.187 31.468 211.2 87.482c56.013 56.014 87.484 131.985 87.484 211.2s-31.471 155.187-87.484 211.2l-60.416 60.331zM662.869 783.531l-60.373 60.331c-56.013 56.013-131.985 87.484-211.2 87.484s-155.186-31.471-211.2-87.484c-56.014-56.013-87.482-131.985-87.482-211.2s31.468-155.187 87.482-211.2l60.373-60.331 60.331 60.416-60.331 60.331c-19.952 19.78-35.802 43.302-46.638 69.222s-16.446 53.726-16.508 81.818c-0.061 28.096 5.426 55.923 16.149 81.89s26.469 49.562 46.334 69.427c19.866 19.866 43.459 35.614 69.426 46.336s53.796 16.209 81.89 16.149c28.094-0.064 55.899-5.675 81.819-16.508 25.92-10.837 49.442-26.688 69.222-46.639l60.331-60.331 60.373 60.288zM632.661 330.965l60.373 60.373-301.696 301.653-60.373-60.331 301.696-301.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["link-unlink"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1137,
+ "id": 1212,
+ "name": "link-unlink",
+ "prevSize": 32,
+ "code": 60734
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1086
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 256v640h-85.333v-640h-256v-85.333h597.333v85.333h-256zM768 597.333v298.667h-85.333v-298.667h-128v-85.333h341.333v85.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["font-size-2"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1138,
+ "id": 1211,
+ "name": "font-size-2",
+ "prevSize": 32,
+ "code": 60735
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1087
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 810.667h597.333v85.333h-597.333v-85.333zM128 597.333h768v85.333h-768v-85.333zM128 384h597.333v85.333h-597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["align-left"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1139,
+ "id": 1210,
+ "name": "align-left",
+ "prevSize": 32,
+ "code": 60736
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1088
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 473.6l85.333-85.333 234.667 234.667 149.333-149.333 128 128v-388.267h-597.333v260.267zM213.333 594.304v216.363h132.267l127.403-127.36-174.336-174.336-85.333 85.333zM466.304 810.667h344.363v-88.363l-128-128-216.363 216.363zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM661.333 426.667c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1140,
+ "id": 1209,
+ "name": "image-2-line",
+ "prevSize": 32,
+ "code": 60737
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1089
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM453.205 359.040l208.171 138.752c2.342 1.557 4.262 3.669 5.589 6.148s2.022 5.248 2.022 8.060c0 2.812-0.695 5.581-2.022 8.060s-3.247 4.591-5.589 6.148l-208.213 138.752c-2.569 1.702-5.547 2.675-8.623 2.825-3.076 0.145-6.135-0.546-8.853-2.001-2.718-1.451-4.988-3.61-6.575-6.251-1.591-2.637-2.432-5.658-2.445-8.738v-277.589c0.004-3.087 0.849-6.115 2.441-8.76 1.587-2.646 3.866-4.811 6.588-6.264 2.726-1.454 5.79-2.141 8.875-1.99s6.067 1.136 8.636 2.849z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1141,
+ "id": 1208,
+ "name": "play-circle-line",
+ "prevSize": 32,
+ "code": 60738
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1090
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 298.667h170.667v85.333h-256v-256h85.333v170.667zM341.333 384h-256v-85.333h170.667v-170.667h85.333v256zM768 725.333v170.667h-85.333v-256h256v85.333h-170.667zM341.333 640v256h-85.333v-170.667h-170.667v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fullscreen-exit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1142,
+ "id": 1207,
+ "name": "fullscreen-exit-line",
+ "prevSize": 32,
+ "code": 60739
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1091
+ },
+ {
+ "icon": {
+ "paths": [
+ "M419.328 213.333l-85.333 85.333h-163.328v512h682.667v-512h-163.328l-85.333-85.333h-185.344zM384 128h256l85.333 85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667l85.333-85.333zM411.307 321.28c50.266-23.925 107.401-29.202 161.199-14.887 53.794 14.315 100.753 47.289 132.48 93.032s46.161 101.273 40.721 156.676c-5.444 55.407-30.4 107.068-70.421 145.766l-88.619-164.267h74.624l0.043-4.267c0.004-24.909-6.221-49.421-18.112-71.309s-29.069-40.453-49.967-54.006c-20.898-13.553-44.851-21.664-69.687-23.594-24.832-1.929-49.754 2.383-72.495 12.546l-39.765-75.691zM610.859 746.24c-50.146 23.334-106.918 28.211-160.307 13.764s-99.959-47.287-131.493-92.727c-31.534-45.436-46.005-100.553-40.86-155.622s29.575-106.55 68.98-145.361l90.155 167.040h-74.667c-0.008 24.747 6.133 49.105 17.871 70.886 11.738 21.786 28.705 40.307 49.376 53.909 20.672 13.602 44.399 21.854 69.047 24.017 24.653 2.159 49.455-1.839 72.175-11.639l39.723 75.691v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-switch-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1143,
+ "id": 1206,
+ "name": "camera-switch-line",
+ "prevSize": 32,
+ "code": 60740
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1092
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 298.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667zM298.667 298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pause-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1144,
+ "id": 1205,
+ "name": "pause-mini-line",
+ "prevSize": 32,
+ "code": 60741
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1093
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 384h85.333v512h-85.333v-512zM341.333 128h85.333v768h-85.333v-768zM597.333 512h85.333v384h-85.333v-384zM853.333 256h85.333v640h-85.333v-640z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rhythm-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1145,
+ "id": 1204,
+ "name": "rhythm-line",
+ "prevSize": 32,
+ "code": 60742
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1094
+ },
+ {
+ "icon": {
+ "paths": [
+ "M462.080 554.667h99.84c-9.058-25.613-9.728-53.449-1.916-79.467 7.812-26.022 23.701-48.884 45.363-65.276 21.666-16.392 47.987-25.466 75.153-25.907s53.764 7.772 75.951 23.452c22.187 15.68 38.81 38.013 47.462 63.767s8.887 53.594 0.666 79.488c-8.218 25.894-24.465 48.503-46.383 64.555-21.922 16.047-48.38 24.708-75.55 24.721h-341.333c-27.168-0.013-53.628-8.674-75.549-24.721-21.921-16.051-38.167-38.66-46.386-64.555s-7.986-53.734 0.666-79.488c8.652-25.754 25.275-48.087 47.462-63.767s48.788-23.894 75.953-23.452c27.165 0.441 53.484 9.515 75.151 25.907 21.664 16.393 37.553 39.254 45.365 65.276 7.812 26.018 7.142 53.854-1.916 79.467zM170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM341.333 554.667c11.316 0 22.168-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.495-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM682.667 554.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tape-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1146,
+ "id": 1203,
+ "name": "tape-line",
+ "prevSize": 32,
+ "code": 60743
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1095
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 128v-85.333h85.333v85.333h555.008c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341zM170.667 213.333v597.333h682.667v-597.333h-682.667zM384 640c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49c33.948 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.561 37.491-90.509 37.491zM597.333 384h170.667v85.333h-170.667v-85.333zM597.333 554.667h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radio-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1147,
+ "id": 1202,
+ "name": "radio-2-line",
+ "prevSize": 32,
+ "code": 60744
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1096
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM554.667 469.333h128l-213.333 298.667v-213.333h-128l213.333-298.667v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dvd-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1148,
+ "id": 1201,
+ "name": "dvd-line",
+ "prevSize": 32,
+ "code": 60745
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1097
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 768h426.667v85.333h-426.667v-85.333zM85.333 469.333h853.333v85.333h-853.333v-85.333zM85.333 170.667h853.333v85.333h-853.333v-85.333zM768 768v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-list-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1149,
+ "id": 1200,
+ "name": "play-list-add-line",
+ "prevSize": 32,
+ "code": 60746
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1098
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM384 384h85.333v256h-85.333v-256zM554.667 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pause-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1150,
+ "id": 1199,
+ "name": "pause-circle-line",
+ "prevSize": 32,
+ "code": 60747
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1099
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 361.899v300.203l257.28-150.101-257.28-150.101zM330.752 232.107l448.341 261.547c3.213 1.882 5.879 4.57 7.731 7.799s2.825 6.886 2.825 10.611c0 3.725-0.973 7.381-2.825 10.611s-4.518 5.918-7.731 7.799l-448.341 261.547c-3.252 1.899-6.947 2.901-10.712 2.91-3.764 0.004-7.464-0.986-10.723-2.867-3.258-1.886-5.961-4.599-7.831-7.868s-2.844-6.972-2.82-10.735v-522.965c-0.001-3.754 0.988-7.441 2.868-10.69s4.584-5.945 7.839-7.814c3.255-1.87 6.945-2.848 10.699-2.835s7.437 1.016 10.679 2.908v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1151,
+ "id": 1198,
+ "name": "play-mini-line",
+ "prevSize": 32,
+ "code": 60748
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1100
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 896v-45.653c-71.088-10.278-136.093-45.824-183.108-100.126s-72.893-123.725-72.892-195.554v-213.333c0-39.221 7.725-78.059 22.735-114.295s37.009-69.161 64.743-96.895c27.734-27.734 60.659-49.733 96.895-64.743s75.071-22.735 114.295-22.735c39.223 0 78.059 7.725 114.295 22.735s69.158 37.009 96.892 64.743c27.738 27.734 49.737 60.659 64.747 96.895 15.006 36.236 22.733 75.073 22.733 114.295v213.333c0 71.829-25.877 141.252-72.892 195.554s-112.021 89.847-183.108 100.126v45.653h170.667v85.333h-426.667v-85.333h170.667zM512 128c-56.58 0-110.842 22.476-150.849 62.484s-62.484 94.27-62.484 150.849v213.333c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848v-213.333c0-56.579-22.477-110.842-62.485-150.849-40.004-40.008-94.268-62.484-150.848-62.484zM512 384c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM512 469.333c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.561-37.49-90.509c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["webcam-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1152,
+ "id": 1197,
+ "name": "webcam-line",
+ "prevSize": 32,
+ "code": 60749
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1101
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-682.667v597.333h256v85.333h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM896 554.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM853.333 640h-256v170.667h256v-170.667zM286.165 268.501l96 96 87.168-87.168v234.667h-234.667l87.168-87.168-96-96 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["picture-in-picture-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1153,
+ "id": 1196,
+ "name": "picture-in-picture-2-line",
+ "prevSize": 32,
+ "code": 60750
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1102
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128h85.333v256h-85.333v-170.667h-170.667v-85.333h170.667zM170.667 128h170.667v85.333h-170.667v170.667h-85.333v-256h85.333zM853.333 810.667v-170.667h85.333v256h-256v-85.333h170.667zM170.667 810.667h170.667v85.333h-256v-256h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fullscreen-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1154,
+ "id": 1195,
+ "name": "fullscreen-line",
+ "prevSize": 32,
+ "code": 60751
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1103
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 540.459l-436.181 290.773c-3.212 2.138-6.945 3.362-10.799 3.55-3.855 0.183-7.687-0.683-11.089-2.505-3.402-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.032-7.1-3.034-10.957v-602.965c0.002-3.859 1.050-7.645 3.034-10.955s4.828-6.020 8.23-7.841c3.402-1.821 7.234-2.686 11.089-2.502s7.587 1.411 10.799 3.549l436.181 290.773v-270.208c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-270.208zM298.667 330.112v363.776l272.811-181.888-272.811-181.888z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-forward-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1155,
+ "id": 1194,
+ "name": "skip-forward-line",
+ "prevSize": 32,
+ "code": 60752
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1104
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 483.541l436.181-290.773c3.213-2.138 6.946-3.364 10.799-3.549s7.689 0.68 11.089 2.502c3.401 1.821 6.246 4.531 8.23 7.841s3.034 7.096 3.034 10.955v602.965c0 3.857-1.050 7.646-3.034 10.957-1.984 3.307-4.83 6.020-8.23 7.838-3.401 1.822-7.236 2.688-11.089 2.505-3.853-0.188-7.586-1.412-10.799-3.55l-436.181-290.773v270.208c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v270.208zM725.333 693.888v-363.776l-272.811 181.888 272.811 181.888z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-back-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1156,
+ "id": 1193,
+ "name": "skip-back-line",
+ "prevSize": 32,
+ "code": 60753
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1105
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM320 480h85.333v-96h64v256h-64v-96h-85.333v96h-64v-256h64v96zM618.667 448v128h64c5.658 0 11.085-2.249 15.087-6.246 3.998-4.002 6.246-9.429 6.246-15.087v-85.333c0-5.658-2.249-11.085-6.246-15.087-4.002-3.998-9.429-6.246-15.087-6.246h-64zM554.667 384h128c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.34v85.333c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-128v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hd-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1157, "id": 1192, "name": "hd-line", "prevSize": 32, "code": 60754 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1106
+ },
+ {
+ "icon": {
+ "paths": [
+ "M495.275 128h400.725c11.315 0 22.165 4.495 30.17 12.497 8 8.001 12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17-8.004 8-18.854 12.497-30.17 12.497h-298.667v-85.333h256v-426.667h-266.88c34.944 50.044 53.641 109.63 53.547 170.667 0.030 48.154-11.597 95.603-33.886 138.287s-54.579 79.339-94.114 106.833v266.88c0 11.315-4.497 22.17-12.497 30.17-8.004 8-18.854 12.497-30.17 12.497h-256.001c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-266.88c-34.177-20.723-63.848-48.094-87.253-80.495-23.405-32.397-40.069-69.167-49.005-108.122-8.935-38.959-9.961-79.313-3.015-118.674s21.721-76.927 43.451-110.473c21.73-33.546 49.972-62.389 83.053-84.821s70.328-37.995 109.534-45.768c39.206-7.773 79.573-7.598 118.71 0.515s76.246 24 109.133 46.717zM255.999 579.584v273.749h170.667v-273.749c44.933-19.605 81.742-54.084 104.24-97.638 22.502-43.554 29.316-93.528 19.302-141.517s-36.245-91.066-74.287-121.988c-38.037-30.922-85.566-47.802-134.589-47.802s-96.55 16.88-134.591 47.802c-38.040 30.922-64.273 73.999-74.287 121.988s-3.198 97.963 19.302 141.517c22.499 43.554 59.31 78.033 104.242 97.638zM341.332 512c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.561-37.49-90.509c0-33.947 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49c33.947 0 66.505 13.486 90.51 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.509s-56.562 37.491-90.51 37.491zM341.332 426.667c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.169 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.169 12.497 30.17s18.854 12.497 30.17 12.497zM725.333 298.667h85.333v85.333h-85.333v-85.333zM298.666 725.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dv-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1158, "id": 1191, "name": "dv-line", "prevSize": 32, "code": 60755 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1107
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128v597.333c-0.009 37.568-12.412 74.082-35.29 103.885-22.874 29.798-54.942 51.217-91.234 60.937-36.288 9.715-74.769 7.189-109.474-7.194-34.709-14.383-63.701-39.812-82.479-72.35-18.782-32.538-26.3-70.362-21.393-107.605 4.907-37.248 21.965-71.834 48.529-98.398 26.569-26.564 61.154-43.618 98.402-48.521s75.072 2.624 107.605 21.406v-364.16h-384v512c-0.009 37.568-12.413 74.082-35.288 103.885-22.876 29.798-54.945 51.217-91.235 60.937-36.289 9.715-74.771 7.189-109.478-7.194s-63.697-39.812-82.478-72.35c-18.78-32.538-26.3-70.362-21.393-107.605 4.907-37.248 21.966-71.834 48.532-98.398s61.154-43.618 98.401-48.521c37.247-4.902 75.070 2.624 107.605 21.406v-449.493h554.666zM213.334 810.667c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.991-44.335-24.994-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.993 37.709-24.993 60.339c0 22.63 8.99 44.335 24.993 60.339s37.708 24.994 60.34 24.994zM682.667 810.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["music-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1159,
+ "id": 1190,
+ "name": "music-2-line",
+ "prevSize": 32,
+ "code": 60756
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1108
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 213.333v597.333h597.333v-597.333h-597.333zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM298.667 341.333c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 11.316-4.495 22.168-12.497 30.17s-18.854 12.497-30.17 12.497zM725.333 341.333c-11.315 0-22.17-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497zM725.333 768c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM298.667 768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM512 640c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491zM512 725.333c-56.58 0-110.842-22.477-150.849-62.485-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.269-62.484 150.849-62.484s110.844 22.476 150.848 62.484c40.009 40.008 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM512 554.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speaker-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1160,
+ "id": 1189,
+ "name": "speaker-3-line",
+ "prevSize": 32,
+ "code": 60757
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1109
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 213.333v597.333h597.333v-597.333h-597.333zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 682.667c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.415-49.987 120.68s17.981 88.674 49.987 120.678c32.006 32.009 75.415 49.988 120.68 49.988zM512 768c-67.895 0-133.010-26.97-181.019-74.982-48.009-48.009-74.981-113.122-74.981-181.018s26.971-133.010 74.981-181.019c48.009-48.009 113.124-74.981 181.019-74.981s133.009 26.971 181.018 74.981c48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982zM512 576c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speaker-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1161,
+ "id": 1188,
+ "name": "speaker-2-line",
+ "prevSize": 32,
+ "code": 60758
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1110
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 341.333v341.333h341.333v-341.333h-341.333zM256 298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stop-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1162,
+ "id": 1187,
+ "name": "stop-mini-line",
+ "prevSize": 32,
+ "code": 60759
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1111
+ },
+ {
+ "icon": {
+ "paths": [
+ "M827.307 134.868l60.288 60.331-105.6 105.6 105.6 105.6-105.6 105.601 105.6 105.643-105.6 105.6 105.6 105.6-60.331 60.331-165.931-165.973 105.6-105.557-105.6-105.643 105.6-105.601-105.6-105.6 165.973-165.931zM554.667 850.987c0 4.041-1.143 8-3.302 11.413-2.159 3.418-5.248 6.148-8.9 7.881-3.652 1.728-7.718 2.385-11.729 1.894-4.015-0.495-7.804-2.116-10.927-4.676l-225.836-184.875-165.973 0.043c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256.001c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497l110.251-0.085-161.109-161.109 60.331-60.331 417.196 417.196v313.984zM323.583 426.58l-152.917 0.085v170.668l153.728-0.043 144.94 118.613v-143.573l-145.75-145.75zM549.845 159.487c3.119 3.816 4.826 8.595 4.821 13.525v243.285l-85.333-85.333v-22.912l-12.629 10.283-60.63-60.587 123.734-101.248c2.167-1.777 4.663-3.11 7.347-3.922s5.5-1.087 8.29-0.81c2.79 0.277 5.495 1.102 7.966 2.426 2.475 1.324 4.659 3.123 6.434 5.292z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-off-vibrate-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1163,
+ "id": 1186,
+ "name": "volume-off-vibrate-line",
+ "prevSize": 32,
+ "code": 60760
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1112
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h768zM853.333 213.333h-682.667v597.333h682.667v-597.333zM384 341.333c47.147 0 89.813 19.115 120.704 50.048l-60.331 60.331c-15.445-15.488-36.779-25.045-60.373-25.045-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333c23.595 0 44.928-9.557 60.331-25.003l60.331 60.331c-30.891 30.891-73.557 50.005-120.661 50.005-94.208 0-170.667-76.459-170.667-170.667s76.459-170.667 170.667-170.667zM682.667 341.333c47.147 0 89.813 19.115 120.704 50.048l-60.331 60.331c-15.445-15.488-36.779-25.045-60.373-25.045-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333c23.552 0 44.885-9.557 60.331-25.003l60.331 60.331c-30.891 30.891-73.557 50.005-120.661 50.005-94.208 0-170.667-76.459-170.667-170.667s76.459-170.667 170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["closed-captioning-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1164,
+ "id": 1185,
+ "name": "closed-captioning-line",
+ "prevSize": 32,
+ "code": 60761
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1113
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM320 480h85.333v-96h64v256h-64v-96h-85.333v96h-64v-256h64v96zM693.333 640v64h-64v-64h-32c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-32zM618.667 448v128h85.333v-128h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hq-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1165, "id": 1184, "name": "hq-line", "prevSize": 32, "code": 60762 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1114
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 763.008v-80.341l213.333 128-213.333 128v-89.173c-65.22-9.34-126.938-35.302-179.221-75.392s-93.372-92.954-119.317-153.515l-0.128-0.213-0.128 0.256c-29.606 69.065-78.828 127.927-141.564 169.293s-136.23 63.411-211.375 63.411h-30.933v-85.333h30.933c58.452 0 115.62-17.156 164.417-49.335s87.078-77.973 110.1-131.699l32.128-74.965-32.128-74.965c-23.022-53.728-61.303-99.519-110.1-131.699s-105.964-49.334-164.417-49.335h-30.933v-85.333h30.933c75.15 0.003 148.647 22.058 211.383 63.43s111.953 100.243 141.555 169.317l0.128 0.213 0.128-0.256c25.95-60.553 67.042-113.411 119.326-153.492s113.997-66.037 179.213-75.372v-89.173l213.333 128-213.333 128v-80.341c-48.346 8.957-93.734 29.713-132.13 60.422-38.4 30.71-68.621 70.425-87.987 115.62l-32.128 74.965 32.128 74.965c19.366 45.197 49.587 84.911 87.987 115.618 38.396 30.711 83.785 51.469 132.13 60.425z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shuffle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1166,
+ "id": 1183,
+ "name": "shuffle-line",
+ "prevSize": 32,
+ "code": 60763
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1115
+ },
+ {
+ "icon": {
+ "paths": [
+ "M792.998 853.333h-622.334c-3.962 0-7.845-1.105-11.215-3.187s-6.094-5.060-7.866-8.606c-1.772-3.541-2.522-7.509-2.166-11.456s1.804-7.714 4.18-10.884l17.067-22.741v-369.792c0-56.746 13.824-110.25 38.357-157.312l-149.589-149.547 60.373-60.373 844.756 844.8-60.373 60.331-111.189-111.232zM273.405 333.739c-11.536 29.622-17.44 61.138-17.408 92.928v341.333h451.668l-434.26-434.261zM853.329 673.536l-85.333-85.333v-161.536c0.009-44.899-11.789-89.011-34.219-127.91-22.426-38.898-54.686-71.214-93.547-93.704s-82.953-34.365-127.851-34.432c-44.902-0.067-89.028 11.676-127.956 34.051l-61.867-61.952c51.402-34.295 111.149-53.993 172.871-56.993 61.717-3 123.093 10.811 177.579 39.959s100.036 72.54 131.797 125.547c31.757 53.007 48.529 113.641 48.525 175.433v246.869zM405.331 896h213.332c0 28.288-11.234 55.42-31.241 75.426-20.002 20.002-47.134 31.241-75.426 31.241-28.288 0-55.42-11.238-75.422-31.241-20.005-20.006-31.243-47.138-31.243-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1167,
+ "id": 1182,
+ "name": "notification-off-line",
+ "prevSize": 32,
+ "code": 60764
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1116
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM300.8 303.829l60.331 60.373c-19.829 19.781-35.554 43.285-46.274 69.163-10.72 25.873-16.221 53.615-16.19 81.621 0 58.88 23.893 112.213 62.464 150.869l-60.331 60.331c-27.775-27.703-49.8-60.625-64.811-96.87s-22.71-75.098-22.656-114.33c0-82.475 33.451-157.141 87.467-211.2v0.043zM723.2 303.829c27.776 27.705 49.801 60.626 64.811 96.871s22.711 75.097 22.656 114.329c0.055 39.232-7.646 78.084-22.656 114.33s-37.035 69.167-64.811 96.87l-60.331-60.331c19.844-19.797 35.58-43.319 46.298-69.218 10.722-25.903 16.213-53.662 16.166-81.694 0-58.88-23.893-112.213-62.464-150.827l60.331-60.331zM512 557.696c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM512 643.029c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["surround-sound-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1168,
+ "id": 1181,
+ "name": "surround-sound-line",
+ "prevSize": 32,
+ "code": 60765
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1117
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 853.333v82.432c0.006 4.058-1.144 8.034-3.316 11.46s-5.277 6.161-8.95 7.885c-3.673 1.724-7.761 2.368-11.785 1.852-4.024-0.521-7.817-2.172-10.935-4.77l-175.787-146.475c-3.372-2.812-5.794-6.596-6.936-10.833s-0.949-8.725 0.554-12.851c1.502-4.126 4.241-7.689 7.842-10.197 3.601-2.513 7.889-3.853 12.279-3.836h623.701c22.63 0 44.335-8.99 60.339-24.994 16.004-16 24.994-37.709 24.994-60.339v-341.333h85.333v341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-426.667zM682.667 170.667v-82.432c-0.009-4.057 1.143-8.032 3.315-11.459 2.176-3.427 5.278-6.162 8.951-7.887s7.761-2.365 11.785-1.848c4.023 0.517 7.817 2.17 10.935 4.767l175.787 146.475c3.371 2.81 5.79 6.589 6.933 10.824s0.951 8.719-0.542 12.842c-1.498 4.123-4.233 7.684-7.825 10.199s-7.876 3.86-12.262 3.853h-623.744c-22.632 0-44.337 8.991-60.34 24.994s-24.994 37.708-24.994 60.34v341.333h-85.333v-341.333c0-45.263 17.981-88.673 49.987-120.679s75.416-49.987 120.68-49.987h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["repeat-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1169,
+ "id": 1180,
+ "name": "repeat-2-line",
+ "prevSize": 32,
+ "code": 60766
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1118
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM384 384h256v256h-256v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stop-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1170,
+ "id": 1179,
+ "name": "stop-circle-line",
+ "prevSize": 32,
+ "code": 60767
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1119
+ },
+ {
+ "icon": {
+ "paths": [
+ "M263.253 768c8.815-24.981 25.162-46.618 46.788-61.918s47.466-23.518 73.958-23.518c26.492 0 52.331 8.218 73.958 23.518s37.973 36.937 46.788 61.918h433.92v85.333h-433.92c-8.815 24.981-25.161 46.618-46.788 61.918-21.628 15.305-47.466 23.522-73.958 23.522s-52.332-8.218-73.958-23.522c-21.626-15.3-37.973-36.937-46.788-61.918h-177.92v-85.333h177.92zM519.253 469.333c8.815-24.981 25.161-46.616 46.788-61.918s47.467-23.52 73.958-23.52c26.492 0 52.331 8.217 73.958 23.52s37.973 36.937 46.788 61.918h177.92v85.333h-177.92c-8.815 24.981-25.161 46.618-46.788 61.918-21.628 15.305-47.467 23.522-73.958 23.522s-52.331-8.218-73.958-23.522c-21.628-15.3-37.973-36.937-46.788-61.918h-433.92v-85.333h433.92zM263.253 170.667c8.815-24.983 25.162-46.616 46.788-61.918s47.466-23.52 73.958-23.52c26.492 0 52.331 8.217 73.958 23.52s37.973 36.936 46.788 61.918h433.92v85.333h-433.92c-8.815 24.983-25.161 46.616-46.788 61.918s-47.466 23.52-73.958 23.52c-26.492 0-52.332-8.218-73.958-23.52s-37.973-36.936-46.788-61.918h-177.92v-85.333h177.92zM384 256c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM640 554.667c11.315 0 22.17-4.493 30.17-12.497 8-8 12.497-18.854 12.497-30.17s-4.497-22.17-12.497-30.17c-8-8-18.854-12.497-30.17-12.497s-22.17 4.497-30.17 12.497c-8 8-12.497 18.854-12.497 30.17s4.497 22.17 12.497 30.17c8 8.004 18.854 12.497 30.17 12.497zM384 853.333c11.316 0 22.168-4.493 30.17-12.497 8.001-8 12.497-18.854 12.497-30.17s-4.495-22.17-12.497-30.17c-8.002-8-18.854-12.497-30.17-12.497s-22.168 4.497-30.17 12.497c-8.001 8-12.497 18.854-12.497 30.17s4.495 22.17 12.497 30.17c8.002 8.004 18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["equalizer-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1171,
+ "id": 1178,
+ "name": "equalizer-line",
+ "prevSize": 32,
+ "code": 60768
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1120
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM512 640c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["record-circle-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1172,
+ "id": 1177,
+ "name": "record-circle-line",
+ "prevSize": 32,
+ "code": 60769
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1121
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 42.667v170.667h-170.667v597.333h682.667v-682.667h43.008c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341v-85.333h85.333zM512 341.333l170.667 170.667h-128v170.667h-85.333v-170.667h-128l170.667-170.667zM768 42.667v170.667h-341.333v-85.333h256v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gallery-upload-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1173,
+ "id": 1176,
+ "name": "gallery-upload-line",
+ "prevSize": 32,
+ "code": 60770
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1122
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 298.667h85.333v426.667h-85.333v-426.667zM42.667 426.667h85.333v170.667h-85.333v-170.667zM384 85.333h85.333v768h-85.333v-768zM554.667 170.667h85.333v768h-85.333v-768zM725.333 298.667h85.333v426.667h-85.333v-426.667zM896 426.667h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["voiceprint-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1174,
+ "id": 1175,
+ "name": "voiceprint-line",
+ "prevSize": 32,
+ "code": 60771
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1123
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-682.667v597.333h256v85.333h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM896 554.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM853.333 640h-256v170.667h256v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["picture-in-picture-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1175,
+ "id": 1174,
+ "name": "picture-in-picture-line",
+ "prevSize": 32,
+ "code": 60772
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1124
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 298.667v426.667h426.667v-426.667h-426.667zM256 213.333h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stop-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1176,
+ "id": 1173,
+ "name": "stop-line",
+ "prevSize": 32,
+ "code": 60773
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1125
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 170.667v682.667h597.333v-682.667h-597.333zM170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241s-55.42 11.238-75.426 31.241c-20.003 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241zM512 810.667c-50.923 0-99.758-20.228-135.764-56.235s-56.236-84.843-56.236-135.765c0-50.923 20.229-99.759 56.236-135.765s84.842-56.235 135.764-56.235c50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235zM512 362.667c-8.405 0-16.725-1.655-24.491-4.872s-14.822-7.93-20.766-13.873c-5.939-5.943-10.654-12.998-13.871-20.763s-4.873-16.087-4.873-24.492c0-8.404 1.655-16.727 4.873-24.492s7.932-14.82 13.871-20.763c5.943-5.943 13.001-10.657 20.766-13.873s16.085-4.872 24.491-4.872c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speaker-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1177,
+ "id": 1172,
+ "name": "speaker-line",
+ "prevSize": 32,
+ "code": 60774
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1126
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v74.965l-85.333 85.333v-117.632h-597.333v345.6l170.667-170.667 184.661 184.704-60.373 60.288-124.288-124.245-170.667 170.624v131.029l479.616 0.043 56.704-56.747 56.747 56.704h4.267v-117.675l85.333-85.333v245.675c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.467 0-42.667-19.2-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM929.195 333.141l60.331 60.331-331.861 331.861-60.416-0.085 0.085-60.245 331.861-331.861zM661.333 298.667c35.328 0 64 28.672 64 64s-28.672 64-64 64c-35.328 0-64-28.672-64-64s28.672-64 64-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-edit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1178,
+ "id": 1171,
+ "name": "image-edit-line",
+ "prevSize": 32,
+ "code": 60775
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1127
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 426.667c0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019v341.333h512v-341.333zM853.333 796.459l17.067 22.741c2.377 3.17 3.823 6.938 4.181 10.884 0.354 3.947-0.397 7.915-2.167 11.456-1.771 3.546-4.493 6.524-7.863 8.606s-7.253 3.187-11.217 3.187h-682.667c-3.962 0-7.846-1.105-11.216-3.187s-6.094-5.060-7.865-8.606c-1.772-3.541-2.522-7.509-2.166-11.456s1.804-7.714 4.18-10.884l17.067-22.741v-369.792c0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359v369.792zM405.333 896h213.333c0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.006-31.241-47.138-31.241-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-4-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1179,
+ "id": 1170,
+ "name": "notification-4-line",
+ "prevSize": 32,
+ "code": 60776
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1128
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM640 603.307v-182.613l-129.365 91.307 129.365 91.307zM387.371 529.408c-2.782-1.971-5.052-4.582-6.618-7.607-1.566-3.029-2.383-6.391-2.383-9.801s0.817-6.771 2.383-9.801c1.566-3.025 3.836-5.636 6.618-7.607l304.341-214.869c3.196-2.252 6.946-3.582 10.85-3.846 3.9-0.264 7.795 0.549 11.264 2.35 3.473 1.801 6.379 4.521 8.41 7.862 2.027 3.341 3.102 7.176 3.098 11.085v429.653c0.004 3.908-1.071 7.744-3.098 11.085-2.031 3.341-4.937 6.063-8.41 7.863-3.469 1.801-7.364 2.611-11.264 2.347-3.904-0.26-7.654-1.591-10.85-3.844l-304.341-214.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-back-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1180,
+ "id": 1169,
+ "name": "skip-back-mini-line",
+ "prevSize": 32,
+ "code": 60777
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1129
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 213.333v597.333h682.667v-597.333h-682.667zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM490.667 576h-42.667v64h-64v-64h-128v-192h64v128h64v-128h64v128h42.667v64zM768 640h-74.667l-74.667-96v96h-64v-256h64v96l74.667-96h74.667l-96 128 96 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["k-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1181, "id": 1168, "name": "k-line", "prevSize": 32, "code": 60778 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1130
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM853.333 213.333h-682.667v597.333h682.667v-597.333zM554.667 725.333v-85.333h128v-128h85.333v213.333h-213.333zM469.333 298.667v85.333h-128v128h-85.333v-213.333h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["aspect-ratio-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1182,
+ "id": 1167,
+ "name": "aspect-ratio-line",
+ "prevSize": 32,
+ "code": 60779
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1131
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 577.493v-449.493h341.333v85.333h-256v512c-0.009 37.568-12.412 74.082-35.29 103.885-22.874 29.798-54.942 51.217-91.234 60.937-36.288 9.715-74.77 7.189-109.476-7.194s-63.697-39.812-82.478-72.35c-18.78-32.538-26.3-70.362-21.393-107.605 4.907-37.248 21.966-71.834 48.532-98.398s61.154-43.618 98.401-48.521c37.248-4.902 75.072 2.624 107.605 21.406zM426.667 810.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.632 0-44.336 8.99-60.34 24.994s-24.993 37.709-24.993 60.339c0 22.63 8.99 44.335 24.993 60.339s37.708 24.994 60.34 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["music-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1183,
+ "id": 1166,
+ "name": "music-line",
+ "prevSize": 32,
+ "code": 60780
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1132
+ },
+ {
+ "icon": {
+ "paths": [
+ "M631.595 170.667c-15.27 26.374-25.677 55.278-30.72 85.333h-472.875v512h768v-216.875c30.054-5.043 58.961-15.45 85.333-30.72v290.261c0 23.595-18.773 42.709-42.752 42.709h-853.163c-5.614 0.013-11.175-1.084-16.364-3.226s-9.905-5.286-13.876-9.254c-3.972-3.968-7.121-8.683-9.268-13.867-2.147-5.188-3.249-10.748-3.244-16.363v-597.333c0-23.552 18.773-42.667 42.752-42.667h546.176zM853.333 384c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994zM853.333 469.333c-45.265 0-88.674-17.98-120.678-49.987-32.009-32.006-49.988-75.416-49.988-120.68s17.98-88.673 49.988-120.68c32.004-32.006 75.413-49.987 120.678-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.416 49.988 120.68s-17.98 88.673-49.988 120.68c-32.004 32.007-75.413 49.987-120.678 49.987zM768 554.667h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-camera-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1184,
+ "id": 1165,
+ "name": "phone-camera-line",
+ "prevSize": 32,
+ "code": 60781
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1133
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c23.552 0 42.667 19.115 42.667 42.667v179.2l222.421-155.733c9.643-6.741 22.955-4.395 29.739 5.291 2.475 3.584 3.84 7.851 3.84 12.203v515.413c0 11.776-9.557 21.333-21.333 21.333-4.395 0-8.661-1.365-12.245-3.84l-222.421-155.733v179.2c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM640 256h-512v512h512v-512zM426.667 341.333v170.667h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333zM896 377.216l-170.667 119.467v30.635l170.667 119.467v-269.568z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-download-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1185,
+ "id": 1164,
+ "name": "video-download-line",
+ "prevSize": 32,
+ "code": 60782
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1134
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 853.333v82.432c0.006 4.058-1.144 8.034-3.316 11.46s-5.277 6.161-8.95 7.885c-3.673 1.724-7.761 2.368-11.785 1.852-4.024-0.521-7.817-2.172-10.935-4.77l-175.787-146.475c-3.372-2.812-5.794-6.596-6.936-10.833s-0.949-8.725 0.554-12.851c1.502-4.126 4.241-7.689 7.842-10.197 3.601-2.513 7.889-3.853 12.279-3.836h623.701c22.63 0 44.335-8.99 60.339-24.994 16.004-16 24.994-37.709 24.994-60.339v-341.333h85.333v341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-426.667zM682.667 88.235c-0.009-4.057 1.143-8.032 3.315-11.459 2.176-3.427 5.278-6.162 8.951-7.887s7.761-2.365 11.785-1.848c4.023 0.517 7.817 2.17 10.935 4.767l175.787 146.475c3.371 2.81 5.79 6.589 6.933 10.824s0.951 8.719-0.542 12.842c-1.498 4.123-4.233 7.684-7.825 10.199s-7.876 3.86-12.262 3.853h-623.744c-22.632 0-44.337 8.991-60.34 24.994s-24.994 37.708-24.994 60.34v341.333h-85.333v-341.333c0-45.263 17.981-88.673 49.987-120.679s75.416-49.987 120.68-49.987h426.667v-82.432zM469.333 341.334h85.333v341.333h-85.333v-256h-85.333v-42.666l85.333-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["repeat-one-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1186,
+ "id": 1163,
+ "name": "repeat-one-line",
+ "prevSize": 32,
+ "code": 60783
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1135
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 213.333h85.333v597.333h-85.333v-597.333zM682.667 213.333h85.333v597.333h-85.333v-597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pause-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1187,
+ "id": 1162,
+ "name": "pause-line",
+ "prevSize": 32,
+ "code": 60784
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1136
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.368c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 18.987 42.368 42.368v683.264c-0.013 11.234-4.48 22.003-12.42 29.948-7.945 7.94-18.714 12.407-29.948 12.42h-683.264c-11.233-0.013-22.003-4.48-29.946-12.42-7.943-7.945-12.411-18.714-12.422-29.948v-683.264zM213.333 213.333v597.333h597.333v-597.333h-597.333zM453.205 359.040l208.171 138.752c2.342 1.557 4.262 3.669 5.589 6.148s2.022 5.248 2.022 8.060c0 2.812-0.695 5.581-2.022 8.060s-3.247 4.591-5.589 6.148l-208.213 138.752c-2.569 1.702-5.547 2.675-8.623 2.825-3.076 0.145-6.135-0.546-8.853-2.001-2.718-1.451-4.988-3.61-6.575-6.251-1.591-2.637-2.432-5.658-2.445-8.738v-277.589c0.004-3.087 0.849-6.115 2.441-8.76 1.587-2.646 3.866-4.811 6.588-6.264 2.726-1.454 5.79-2.141 8.875-1.99s6.067 1.136 8.636 2.849z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1188,
+ "id": 1161,
+ "name": "video-line",
+ "prevSize": 32,
+ "code": 60785
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1137
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768v128h-85.333v-128h-85.333v-85.333h256v85.333h-85.333zM213.333 768v128h-85.333v-128h-85.333v-85.333h256v85.333h-85.333zM469.333 256v-128h85.333v128h85.333v85.333h-256v-85.333h85.333zM469.333 426.667h85.333v469.333h-85.333v-469.333zM128 597.333v-469.333h85.333v469.333h-85.333zM810.667 597.333v-469.333h85.333v469.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sound-module-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1189,
+ "id": 1160,
+ "name": "sound-module-line",
+ "prevSize": 32,
+ "code": 60786
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1138
+ },
+ {
+ "icon": {
+ "paths": [
+ "M210.304 124.972l60.331 60.331c-31.743 31.662-56.915 69.285-74.071 110.706s-25.957 85.825-25.897 130.658c0 94.293 38.187 179.627 99.968 241.365l-60.288 60.288c-39.681-39.565-71.153-86.583-92.607-138.351s-32.467-107.264-32.407-163.302c-0.072-56.041 10.932-111.543 32.379-163.318s52.913-98.801 92.592-138.377zM813.696 124.972c39.68 39.575 71.147 86.602 92.591 138.377 21.449 51.775 32.452 107.278 32.38 163.318 0.073 56.043-10.931 111.543-32.38 163.319-21.444 51.776-52.911 98.803-92.591 138.377l-60.331-60.331c31.744-31.663 56.917-69.282 74.069-110.707 17.156-41.421 25.958-85.824 25.899-130.658 0-94.292-38.187-179.626-99.968-241.364l60.331-60.331zM330.966 245.633l60.373 60.373c-15.874 15.826-28.463 34.633-37.044 55.34s-12.986 42.906-12.961 65.321c0 47.147 19.115 89.813 50.005 120.661l-60.373 60.373c-23.807-23.748-42.685-51.968-55.551-83.034-12.865-31.070-19.463-64.375-19.415-98.001 0-70.698 28.672-134.698 74.965-181.034zM693.035 245.633c23.808 23.748 42.684 51.967 55.552 83.035 12.864 31.068 19.46 64.373 19.413 97.999 0.047 33.626-6.549 66.931-19.413 98.001-12.868 31.066-31.744 59.285-55.552 83.034l-60.373-60.373c15.872-15.825 28.463-34.633 37.043-55.339 8.585-20.706 12.988-42.906 12.962-65.323 0.026-22.414-4.378-44.613-12.962-65.321-8.58-20.707-21.171-39.514-37.043-55.34l60.373-60.373zM512 512c-22.63 0-44.335-8.99-60.339-24.994-16.004-16-24.994-37.709-24.994-60.339s8.99-44.336 24.994-60.339c16.004-16.003 37.709-24.993 60.339-24.993s44.335 8.99 60.339 24.993c16.004 16.003 24.994 37.708 24.994 60.339s-8.99 44.339-24.994 60.339c-16.004 16.004-37.709 24.994-60.339 24.994zM469.333 597.333h85.333v341.333h-85.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["broadcast-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1190,
+ "id": 1159,
+ "name": "broadcast-line",
+ "prevSize": 32,
+ "code": 60787
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1139
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c23.552 0 42.667 19.115 42.667 42.667v179.2l222.421-155.733c9.643-6.741 22.955-4.395 29.739 5.291 2.475 3.584 3.84 7.851 3.84 12.203v515.413c0 11.776-9.557 21.333-21.333 21.333-4.395 0-8.661-1.365-12.245-3.84l-222.421-155.733v179.2c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM640 256h-512v512h512v-512zM341.333 341.333h85.333v128h128v85.333h-128.043l0.043 128h-85.333l-0.043-128h-127.957v-85.333h128v-128zM896 377.216l-170.667 119.467v30.635l170.667 119.467v-269.568z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1191,
+ "id": 1158,
+ "name": "video-add-line",
+ "prevSize": 32,
+ "code": 60788
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1140
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 308.054l-144.939 118.612h-153.728v170.667h153.728l144.939 118.613v-407.892zM379.264 682.667h-165.931c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-255.999c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c3.127-2.562 6.916-4.184 10.927-4.677s8.077 0.165 11.729 1.895c3.652 1.73 6.741 4.462 8.9 7.878s3.307 7.375 3.302 11.416v677.972c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.877-184.832zM804.821 707.883l-60.672-60.672c20.715-15.927 37.487-36.403 49.020-59.849 11.533-23.45 17.523-49.233 17.498-75.362 0-61.013-32-114.559-80.213-144.724l61.397-61.397c32.32 23.773 58.586 54.82 76.681 90.629 18.091 35.808 27.503 75.373 27.469 115.493 0 78.592-35.413 148.907-91.179 195.883z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-down-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1192,
+ "id": 1157,
+ "name": "volume-down-line",
+ "prevSize": 32,
+ "code": 60789
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1141
+ },
+ {
+ "icon": {
+ "paths": [
+ "M383.995 420.693l-129.365 91.307 129.365 91.307v-182.613zM465.404 739.115c-3.264 4.612-8.222 7.74-13.79 8.7s-11.285-0.329-15.906-3.58l-304.342-214.827c-2.782-1.971-5.052-4.582-6.618-7.607-1.566-3.029-2.383-6.391-2.383-9.801s0.817-6.771 2.383-9.801c1.566-3.029 3.836-5.636 6.618-7.607l304.342-214.869c3.196-2.252 6.946-3.582 10.85-3.846 3.9-0.264 7.795 0.549 11.264 2.35 3.473 1.801 6.379 4.52 8.41 7.862 2.027 3.341 3.098 7.176 3.098 11.085v429.653c-0.009 4.403-1.382 8.695-3.925 12.288zM767.996 603.307v-182.613l-129.365 91.307 129.365 91.307zM515.366 529.408c-2.782-1.971-5.052-4.582-6.618-7.607-1.566-3.029-2.385-6.391-2.385-9.801s0.819-6.771 2.385-9.801c1.566-3.029 3.836-5.636 6.618-7.607l304.341-214.869c3.196-2.252 6.946-3.582 10.85-3.846 3.9-0.264 7.795 0.549 11.264 2.35 3.473 1.801 6.379 4.52 8.41 7.862 2.027 3.341 3.098 7.176 3.098 11.085v429.653c0 3.908-1.071 7.744-3.098 11.085-2.031 3.341-4.937 6.059-8.41 7.863-3.469 1.801-7.364 2.611-11.264 2.347-3.904-0.26-7.654-1.591-10.85-3.844l-304.341-214.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rewind-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1193,
+ "id": 1156,
+ "name": "rewind-mini-line",
+ "prevSize": 32,
+ "code": 60790
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1142
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 568.875l-393.515 262.357c-3.212 2.138-6.945 3.366-10.799 3.55s-7.687-0.683-11.089-2.505c-3.402-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.032-7.1-3.034-10.957v-602.965c0.002-3.859 1.050-7.645 3.034-10.955s4.828-6.020 8.23-7.841c3.402-1.821 7.234-2.686 11.089-2.502s7.587 1.411 10.799 3.549l393.515 262.357v-244.608c0-3.859 1.050-7.645 3.034-10.955s4.83-6.020 8.23-7.841c3.401-1.821 7.236-2.686 11.089-2.502s7.586 1.411 10.799 3.549l452.224 301.482c2.923 1.95 5.316 4.587 6.976 7.684 1.655 3.098 2.522 6.554 2.522 10.065s-0.866 6.967-2.522 10.065c-1.66 3.098-4.053 5.734-6.976 7.684l-452.224 301.483c-3.213 2.138-6.946 3.366-10.799 3.55s-7.689-0.683-11.089-2.505c-3.401-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.034-7.1-3.034-10.957v-244.608zM443.477 512l-272.811-181.888v363.776l272.811-181.888zM597.333 330.112v363.776l272.811-181.888-272.811-181.888z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speed-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1194,
+ "id": 1155,
+ "name": "speed-line",
+ "prevSize": 32,
+ "code": 60791
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1143
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 170.667v-82.432c-0.009-4.057 1.143-8.032 3.315-11.459 2.176-3.427 5.278-6.162 8.951-7.887s7.761-2.365 11.785-1.848c4.023 0.517 7.817 2.17 10.935 4.767l175.787 146.475c3.371 2.81 5.79 6.589 6.933 10.824s0.951 8.719-0.542 12.842c-1.498 4.123-4.233 7.684-7.825 10.199s-7.876 3.86-12.262 3.853h-837.077v-85.333h640zM85.333 768h853.333v85.333h-853.333v-85.333zM85.333 469.333h853.333v85.333h-853.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["order-play-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1195,
+ "id": 1154,
+ "name": "order-play-line",
+ "prevSize": 32,
+ "code": 60792
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1144
+ },
+ {
+ "icon": {
+ "paths": [
+ "M385.365 512l-129.365-91.307v182.613l129.365-91.307zM204.288 744.277c-3.195 2.253-6.948 3.584-10.848 3.844-3.9 0.265-7.798-0.546-11.267-2.347-3.47-1.805-6.378-4.523-8.407-7.863s-3.101-7.177-3.099-11.085v-429.653c-0.002-3.909 1.070-7.744 3.099-11.085s4.937-6.061 8.407-7.862c3.47-1.801 7.367-2.614 11.267-2.35s7.653 1.594 10.848 3.846l304.341 214.869c2.782 1.971 5.052 4.578 6.618 7.607s2.385 6.391 2.385 9.801c0 3.409-0.819 6.771-2.385 9.801-1.566 3.025-3.836 5.636-6.618 7.607l-304.341 214.869zM640 603.307l129.365-91.307-129.365-91.307v182.613zM554.667 297.173c-0.004-3.909 1.071-7.744 3.098-11.085 2.031-3.342 4.937-6.061 8.41-7.862 3.469-1.801 7.364-2.614 11.264-2.35 3.904 0.264 7.654 1.594 10.85 3.846l304.341 214.869c2.782 1.971 5.052 4.578 6.618 7.607s2.385 6.391 2.385 9.801c0 3.409-0.819 6.771-2.385 9.801-1.566 3.025-3.836 5.636-6.618 7.607l-304.341 214.869c-3.196 2.253-6.946 3.584-10.85 3.844-3.9 0.265-7.795-0.546-11.264-2.347-3.473-1.805-6.379-4.523-8.41-7.863-2.027-3.341-3.102-7.177-3.098-11.085v-429.653z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speed-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1196,
+ "id": 1153,
+ "name": "speed-mini-line",
+ "prevSize": 32,
+ "code": 60793
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1145
+ },
+ {
+ "icon": {
+ "paths": [
+ "M255.915 298.667l98.56-170.667h157.44l-98.56 170.667h-157.44zM511.915 298.667l98.56-170.667h157.44l-98.56 170.667h-157.44zM767.915 298.667l98.56-170.667h29.867c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.256l-85.248 147.627v535.040h682.667v-512h-85.419z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clapperboard-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1197,
+ "id": 1152,
+ "name": "clapperboard-line",
+ "prevSize": 32,
+ "code": 60794
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1146
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359h128c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339v213.333c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994h-128c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-298.667c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667v298.667c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-128c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-213.333c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994h128c0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974zM170.667 597.333v213.333h128v-213.333h-128zM725.333 597.333v213.333h128v-213.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["headphone-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1198,
+ "id": 1151,
+ "name": "headphone-line",
+ "prevSize": 32,
+ "code": 60795
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1147
+ },
+ {
+ "icon": {
+ "paths": [
+ "M699.477 512l-272.811-181.888v363.776l272.811-181.888zM826.709 529.749l-452.224 301.483c-3.212 2.138-6.945 3.366-10.799 3.55s-7.687-0.683-11.089-2.505c-3.402-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.032-7.1-3.034-10.957v-602.965c0.002-3.859 1.050-7.645 3.034-10.955s4.828-6.020 8.23-7.841c3.402-1.821 7.234-2.686 11.089-2.502s7.587 1.411 10.799 3.549l452.224 301.482c2.923 1.95 5.316 4.587 6.976 7.684 1.655 3.098 2.522 6.554 2.522 10.065s-0.866 6.967-2.522 10.065c-1.66 3.098-4.053 5.734-6.976 7.684z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1199,
+ "id": 1150,
+ "name": "play-line",
+ "prevSize": 32,
+ "code": 60796
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1148
+ },
+ {
+ "icon": {
+ "paths": [
+ "M419.285 928.555l191.275-331.221 150.699 260.992c-72.55 52.365-159.787 80.482-249.259 80.341-31.829 0-62.848-3.499-92.715-10.112zM336.64 901.12c-54.818-24.785-103.793-60.851-143.729-105.843-39.936-44.996-69.934-97.903-88.036-155.277h382.507l-150.742 261.12zM87.466 554.667c-6.106-59.849 0.561-120.316 19.559-177.398s49.895-109.483 90.649-153.738l191.104 331.136h-301.312zM262.784 165.675c72.538-52.357 159.756-80.474 249.216-80.341 31.829 0 62.848 3.499 92.715 10.112l-191.275 331.221-150.656-260.992zM687.36 122.88c54.818 24.784 103.791 60.85 143.727 105.844s69.935 97.904 88.038 155.276h-382.507l150.741-261.12zM936.533 469.333c6.106 59.853-0.563 120.316-19.558 177.399-18.999 57.084-49.894 109.483-90.65 153.737l-191.104-331.136h301.312z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-lens-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1200,
+ "id": 1149,
+ "name": "camera-lens-fill",
+ "prevSize": 32,
+ "code": 60797
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1149
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM341.333 213.333v597.333h341.333v-597.333h-341.333zM170.667 213.333v85.333h85.333v-85.333h-85.333zM768 213.333v85.333h85.333v-85.333h-85.333zM170.667 384v85.333h85.333v-85.333h-85.333zM768 384v85.333h85.333v-85.333h-85.333zM170.667 554.667v85.333h85.333v-85.333h-85.333zM768 554.667v85.333h85.333v-85.333h-85.333zM170.667 725.333v85.333h85.333v-85.333h-85.333zM768 725.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["film-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1201,
+ "id": 1148,
+ "name": "film-line",
+ "prevSize": 32,
+ "code": 60798
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1150
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512.004 128c-33.95 0-66.509 13.486-90.512 37.49-24.005 24.005-37.49 56.562-37.49 90.51v170.667c0 33.946 13.486 66.505 37.49 90.509 24.003 24.004 56.562 37.491 90.512 37.491 33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509v-170.667c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49zM512.004 42.667c28.015 0 55.753 5.518 81.638 16.239 25.882 10.721 49.399 26.435 69.21 46.245s35.524 43.327 46.246 69.21c10.718 25.883 16.239 53.624 16.239 81.639v170.667c0 56.58-22.477 110.844-62.485 150.848-40.009 40.009-94.272 62.485-150.848 62.485-56.58 0-110.844-22.477-150.851-62.485-40.008-40.004-62.484-94.268-62.484-150.848v-170.667c0-56.579 22.476-110.842 62.484-150.849s94.271-62.484 150.851-62.484zM130.349 469.333h85.973c10.338 71.031 45.904 135.966 100.192 182.925s123.665 72.802 195.448 72.802c71.778 0 141.158-25.843 195.443-72.802 54.289-46.959 89.856-111.893 100.194-182.925h86.016c-9.702 86.558-48.529 167.249-110.114 228.843s-142.276 100.433-228.83 110.144v173.013h-85.333v-173.013c-86.567-9.702-167.264-48.538-228.858-110.131s-100.427-142.289-110.13-228.855z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mic-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1202,
+ "id": 1147,
+ "name": "mic-line",
+ "prevSize": 32,
+ "code": 60799
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1151
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 768h597.333v-297.344c0-165.675-133.717-299.989-298.667-299.989s-298.667 134.315-298.667 299.989v297.344zM512 85.333c212.053 0 384 172.501 384 385.323v382.677h-768v-382.677c0-212.821 171.947-385.323 384-385.323zM405.333 896h213.333c0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.006-31.241-47.138-31.241-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1203,
+ "id": 1146,
+ "name": "notification-line",
+ "prevSize": 32,
+ "code": 60800
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1152
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 853.333c90.526 0 177.348-35.964 241.361-99.972 64.009-64.013 99.972-150.835 99.972-241.361 0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 682.667c-45.265 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678s17.981-88.673 49.987-120.68c32.006-32.006 75.415-49.987 120.68-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.415 49.988 120.68s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["album-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1204,
+ "id": 1145,
+ "name": "album-line",
+ "prevSize": 32,
+ "code": 60801
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1153
+ },
+ {
+ "icon": {
+ "paths": [
+ "M513.365 512l-129.365-91.307v182.613l129.365-91.307zM320 748.16c-5.658 0-11.084-2.249-15.085-6.246-4.001-4.002-6.249-9.429-6.249-15.087v-429.653c-0.002-3.909 1.070-7.744 3.099-11.085s4.937-6.061 8.407-7.862c3.47-1.801 7.367-2.614 11.267-2.35s7.653 1.594 10.848 3.846l304.341 214.869c2.782 1.971 5.052 4.582 6.618 7.607 1.566 3.029 2.385 6.391 2.385 9.801s-0.819 6.771-2.385 9.801c-1.566 3.025-3.836 5.636-6.618 7.607l-304.341 214.869c-3.598 2.53-7.889 3.887-12.288 3.883zM682.667 298.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-forward-mini-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1205,
+ "id": 1144,
+ "name": "skip-forward-mini-line",
+ "prevSize": 32,
+ "code": 60802
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1154
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 426.667v-85.333h-85.333v85.333h-426.667v-170.667h597.333v170.667h-85.333zM256 128v-85.333h85.333v85.333h555.008c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341zM170.667 213.333v597.333h682.667v-597.333h-682.667zM341.333 768c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.509s56.562-37.491 90.51-37.491c33.948 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509c0 33.946-13.487 66.505-37.491 90.509s-56.561 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radio-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1206,
+ "id": 1143,
+ "name": "radio-line",
+ "prevSize": 32,
+ "code": 60803
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1155
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c23.552 0 42.667 19.115 42.667 42.667v179.2l222.421-155.733c9.643-6.741 22.955-4.395 29.739 5.291 2.475 3.584 3.84 7.851 3.84 12.203v515.413c0 11.776-9.557 21.333-21.333 21.333-4.395 0-8.661-1.365-12.245-3.84l-222.421-155.733v179.2c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM640 256h-512v512h512v-512zM384 341.333l170.667 170.667h-128v170.667h-85.333v-170.667h-128l170.667-170.667zM896 377.216l-170.667 119.467v30.635l170.667 119.467v-269.568z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-upload-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1207,
+ "id": 1142,
+ "name": "video-upload-line",
+ "prevSize": 32,
+ "code": 60804
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1156
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 308.054l-144.939 118.612h-153.728v170.667h153.728l144.939 118.613v-407.892zM251.264 682.667h-165.931c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-255.999c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c3.127-2.562 6.916-4.184 10.927-4.677s8.077 0.165 11.729 1.895c3.652 1.73 6.741 4.462 8.9 7.878s3.307 7.375 3.302 11.416v677.972c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.877-184.832zM827.989 859.051l-60.416-60.416c40.448-35.989 72.806-80.141 94.942-129.549s33.549-102.946 33.485-157.086c0.051-56.913-12.57-113.123-36.954-164.549s-59.917-96.774-104.017-132.752l60.587-60.587c51.989 44.013 93.747 98.836 122.372 160.649 28.621 61.812 43.413 129.121 43.345 197.239 0 137.515-59.136 261.205-153.344 347.051zM676.821 707.883l-60.672-60.672c20.715-15.927 37.487-36.403 49.020-59.849 11.533-23.45 17.523-49.233 17.498-75.362 0-61.013-32-114.559-80.213-144.724l61.397-61.397c32.32 23.773 58.586 54.82 76.681 90.629 18.091 35.808 27.503 75.373 27.469 115.493 0 78.592-35.413 148.907-91.179 195.883z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-up-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1208,
+ "id": 1141,
+ "name": "volume-up-line",
+ "prevSize": 32,
+ "code": 60805
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1157
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 256v-85.333h-341.333v-85.333h426.667v170.667h42.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v93.867l222.421-155.733c3.2-2.242 6.95-3.563 10.846-3.819 3.9-0.256 7.791 0.563 11.255 2.368s6.366 4.526 8.388 7.866c2.027 3.341 3.093 7.173 3.089 11.078v515.413c0.004 3.904-1.062 7.74-3.089 11.076-2.022 3.341-4.924 6.063-8.388 7.868s-7.356 2.624-11.255 2.368c-3.895-0.256-7.646-1.579-10.846-3.819l-222.421-155.733v179.2c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h469.333zM640 341.333h-512v426.667h512v-426.667zM725.333 527.317l170.667 119.467v-269.611l-170.667 119.467v30.677zM213.333 426.667h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vidicon-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1209,
+ "id": 1140,
+ "name": "vidicon-2-line",
+ "prevSize": 32,
+ "code": 60806
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1158
+ },
+ {
+ "icon": {
+ "paths": [
+ "M205.995 896l-0.853 0.853-0.896-0.853h-76.587c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-690.347zM853.333 640v-426.667h-682.667v597.333l426.667-426.667 256 256zM853.333 760.661l-256-256-306.005 306.005h562.005v-50.005zM341.333 469.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994c22.632 0 44.337 8.99 60.34 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1210,
+ "id": 1139,
+ "name": "image-line",
+ "prevSize": 32,
+ "code": 60807
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1159
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 308.054l-144.939 118.612h-153.728v170.667h153.728l144.939 118.613v-407.892zM251.264 682.667h-165.931c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-255.999c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c3.127-2.562 6.916-4.184 10.927-4.677s8.077 0.165 11.729 1.895c3.652 1.73 6.741 4.462 8.9 7.878s3.307 7.375 3.302 11.416v677.972c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.877-184.832zM870.997 512l150.869 150.869-60.331 60.331-150.869-150.869-150.869 150.869-60.331-60.331 150.869-150.869-150.869-150.868 60.331-60.331 150.869 150.868 150.869-150.868 60.331 60.331-150.869 150.868z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-mute-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1211,
+ "id": 1138,
+ "name": "volume-mute-line",
+ "prevSize": 32,
+ "code": 60808
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1160
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 195.498v316.502c-0.013 27.166-8.674 53.628-24.721 75.55-16.051 21.918-38.66 38.165-64.555 46.383-25.894 8.222-53.734 7.987-79.488-0.666s-48.087-25.276-63.767-47.462c-15.68-22.187-23.894-48.785-23.452-75.951s9.515-53.487 25.907-75.153c16.393-21.664 39.254-37.553 65.276-45.364 26.018-7.811 53.854-7.14 79.467 1.916v-303.787c215.595 21.376 384 203.307 384 424.534 0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c0-221.227 168.405-403.158 384-424.534v85.845c-86.071 10.952-164.742 54.266-220.024 121.14s-83.025 152.29-77.592 238.882c5.433 86.596 43.636 167.872 106.842 227.311s146.676 92.582 233.44 92.689c79.245 0.043 156.041-27.486 217.207-77.871s102.895-120.482 118.033-198.268c15.134-77.79 2.735-158.42-35.081-228.063-37.811-69.644-98.679-123.96-172.16-153.633z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["disc-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1212,
+ "id": 1137,
+ "name": "disc-line",
+ "prevSize": 32,
+ "code": 60809
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1161
+ },
+ {
+ "icon": {
+ "paths": [
+ "M480.853 521.216l159.147-265.216 341.333 640h-896l298.667-554.667 96.853 179.883zM528.64 607.488l110.805 203.179h199.68l-203.52-381.525-106.965 178.347zM228.181 810.667h311.637l-155.819-289.323-155.819 289.323zM234.667 341.333c-28.29 0-55.421-11.238-75.425-31.242s-31.242-47.135-31.242-75.425c0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.425-31.242c28.29 0 55.421 11.238 75.425 31.242s31.242 47.135 31.242 75.425c0 28.29-11.238 55.421-31.242 75.425s-47.135 31.242-75.425 31.242z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["landscape-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1213,
+ "id": 1136,
+ "name": "landscape-line",
+ "prevSize": 32,
+ "code": 60810
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1162
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c-33.946 0-66.505 13.486-90.509 37.49s-37.49 56.562-37.49 90.51v256c0 33.946 13.486 66.505 37.49 90.509s56.563 37.491 90.509 37.491c33.95 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509v-256c0-33.948-13.487-66.505-37.491-90.51s-56.559-37.49-90.509-37.49zM512 42.667c28.015 0 55.757 5.518 81.638 16.239 25.886 10.721 49.404 26.435 69.214 46.245 19.806 19.81 35.52 43.327 46.242 69.21s16.239 53.624 16.239 81.639v256c0 56.58-22.477 110.844-62.481 150.848-40.009 40.009-94.272 62.485-150.852 62.485s-110.841-22.477-150.849-62.485c-40.008-40.004-62.484-94.268-62.484-150.848v-256c0-56.579 22.476-110.842 62.484-150.849s94.269-62.484 150.849-62.484zM93.526 595.712l83.712-16.768c15.547 77.329 57.388 146.893 118.413 196.873 61.025 49.975 137.471 77.286 216.349 77.286s155.324-27.311 216.35-77.286c61.026-49.98 102.865-119.543 118.413-196.873l83.712 16.768c-38.912 195.541-211.541 342.955-418.475 342.955s-379.562-147.413-418.474-342.955z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mic-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1214,
+ "id": 1135,
+ "name": "mic-2-line",
+ "prevSize": 32,
+ "code": 60811
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1163
+ },
+ {
+ "icon": {
+ "paths": [
+ "M700.796 761.131c-45.009 25.472-94.724 41.527-146.133 47.189v173.013h-85.333v-173.013c-86.563-9.702-167.261-48.538-228.855-110.131s-100.427-142.289-110.13-228.855h85.973c6.652 46.054 23.97 89.92 50.574 128.098s61.758 69.611 102.661 91.802c40.902 22.187 86.423 34.513 132.934 35.994 46.507 1.485 92.719-7.919 134.95-27.456l-66.176-66.133c-31.778 9.19-65.259 10.863-97.792 4.89-32.538-5.978-63.239-19.435-89.679-39.317-26.44-19.878-47.895-45.636-62.668-75.234s-22.461-62.229-22.456-95.309v-67.669l-239.232-239.189 60.373-60.373 844.756 844.8-60.373 60.331-203.392-203.435zM385.405 445.739l107.518 107.52c-27.055-4.087-52.092-16.73-71.439-36.079s-31.992-44.386-36.079-71.441zM826.662 646.827l-61.568-61.525c21.717-34.56 36.523-73.813 42.539-115.968h86.016c-7.040 63.855-30.080 124.907-66.987 177.493zM702.502 522.709l-66.048-66.048c2.304-9.643 3.541-19.627 3.541-29.995v-170.667c0.030-30.092-10.543-59.233-29.862-82.305s-46.148-38.599-75.78-43.855c-29.628-5.256-60.164 0.096-86.242 15.115-26.075 15.019-46.026 38.746-56.348 67.013l-63.829-63.872c23.685-40.422 60.017-71.923 103.388-89.64s91.366-20.665 136.576-8.389c45.214 12.276 85.129 39.095 113.583 76.314 28.45 37.219 43.861 82.77 43.849 129.619v170.667c0.051 33.357-7.753 66.262-22.784 96.043h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mic-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1215,
+ "id": 1134,
+ "name": "mic-off-line",
+ "prevSize": 32,
+ "code": 60812
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1164
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-682.667v597.333h256v85.333h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM896 554.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM853.333 640h-256v170.667h256v-170.667zM490.667 298.667l-87.168 87.168 96 96-60.331 60.331-96-96-87.168 87.168v-234.667h234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["picture-in-picture-exit-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1216,
+ "id": 1133,
+ "name": "picture-in-picture-exit-line",
+ "prevSize": 32,
+ "code": 60813
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1165
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170.667h640c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-597.333v128l-213.333-170.667 213.333-170.667v128zM768 853.333h-640c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667h85.333v256h597.333v-128l213.333 170.667-213.333 170.667v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["repeat-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1217,
+ "id": 1132,
+ "name": "repeat-line",
+ "prevSize": 32,
+ "code": 60814
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1166
+ },
+ {
+ "icon": {
+ "paths": [
+ "M827.307 134.87l60.288 60.331-105.6 105.6 105.6 105.6-105.6 105.6 105.6 105.643-105.6 105.6 105.6 105.6-60.331 60.331-165.931-165.973 105.6-105.557-105.6-105.643 105.6-105.6-105.6-105.6 165.973-165.931zM549.845 159.531c3.11 3.805 4.817 8.567 4.821 13.483v677.973c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.835-184.875-165.973 0.043c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c2.167-1.777 4.663-3.11 7.347-3.922s5.5-1.087 8.29-0.81c2.79 0.277 5.495 1.102 7.97 2.426 2.47 1.324 4.655 3.123 6.43 5.292v0.043zM469.333 308.054l-144.939 118.571h-153.728v170.709l153.728-0.043 144.939 118.613v-407.85z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-vibrate-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1218,
+ "id": 1131,
+ "name": "volume-vibrate-line",
+ "prevSize": 32,
+ "code": 60815
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1167
+ },
+ {
+ "icon": {
+ "paths": [
+ "M419.328 213.333l-85.333 85.333h-163.328v512h682.667v-512h-163.328l-85.333-85.333h-185.344zM384 128h256l85.333 85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667l85.333-85.333zM512 768c-62.238 0-121.926-24.725-165.935-68.732-44.009-44.011-68.732-103.697-68.732-165.935s24.724-121.926 68.732-165.935c44.009-44.009 103.697-68.732 165.935-68.732s121.924 24.724 165.935 68.732c44.006 44.009 68.732 103.697 68.732 165.935s-24.725 121.924-68.732 165.935c-44.011 44.006-103.697 68.732-165.935 68.732zM512 682.667c39.607 0 77.589-15.731 105.596-43.738s43.738-65.988 43.738-105.596c0-39.607-15.731-77.589-43.738-105.596-28.006-28.004-65.988-43.738-105.596-43.738s-77.589 15.733-105.594 43.738c-28.006 28.006-43.739 65.988-43.739 105.596s15.733 77.589 43.739 105.596c28.005 28.006 65.987 43.738 105.594 43.738z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1219,
+ "id": 1130,
+ "name": "camera-line",
+ "prevSize": 32,
+ "code": 60816
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1168
+ },
+ {
+ "icon": {
+ "paths": [
+ "M330.112 554.667h363.776l-181.888-272.812-181.888 272.812zM529.749 154.623l301.483 452.225c2.138 3.213 3.362 6.942 3.55 10.799 0.183 3.853-0.683 7.684-2.505 11.089-1.818 3.401-4.531 6.246-7.838 8.23-3.311 1.984-7.1 3.029-10.957 3.034h-602.965c-3.859-0.004-7.645-1.050-10.955-3.034s-6.020-4.83-7.841-8.23c-1.821-3.405-2.686-7.236-2.502-11.089 0.184-3.857 1.411-7.586 3.549-10.799l301.483-452.225c1.95-2.922 4.587-5.318 7.684-6.974s6.554-2.524 10.065-2.524c3.511 0 6.967 0.867 10.065 2.524s5.734 4.052 7.684 6.974zM213.333 725.333h597.333c11.315 0 22.17 4.493 30.17 12.497 8 8 12.497 18.854 12.497 30.17s-4.497 22.17-12.497 30.17c-8 8-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.495-22.17 12.497-30.17 8.002-8.004 18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eject-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1220,
+ "id": 1129,
+ "name": "eject-line",
+ "prevSize": 32,
+ "code": 60817
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1169
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 640v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128v-128h85.333zM896.341 128c23.381 0 42.325 18.987 42.325 42.368v384.299h-85.333v-341.333h-682.667v597.291l426.667-426.624 128 128v120.704l-128-128-306.048 305.963h306.048v85.333h-469.675c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683zM341.333 298.667c22.632 0 44.337 8.99 60.34 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-add-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1221,
+ "id": 1128,
+ "name": "image-add-line",
+ "prevSize": 32,
+ "code": 60818
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1170
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 554.667c-71.595 0-138.624 19.627-195.968 53.717 51.063 59.674 90.692 128.247 116.907 202.283h79.061v-256zM682.837 810.667c-83.627-200.448-281.429-341.333-512.171-341.333v341.333h512.171zM170.667 384c163.413 0 312.448 61.227 425.557 161.963 76.369-50.133 165.756-76.774 257.109-76.629v-341.333h43.008c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341v-85.333h85.333v170.667h-170.667v170.667zM768 42.667v170.667h-341.333v-85.333h256v-85.333h85.333zM704 426.667c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gallery-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1222,
+ "id": 1127,
+ "name": "gallery-line",
+ "prevSize": 32,
+ "code": 60819
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1171
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 640v-426.667h-597.333v426.667h597.333zM128 170.368c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 18.987 42.368 42.368v683.264c-0.013 11.234-4.48 22.003-12.42 29.948-7.945 7.94-18.714 12.407-29.948 12.42h-683.264c-11.233-0.013-22.003-4.48-29.946-12.42-7.943-7.945-12.411-18.714-12.422-29.948v-683.264zM512 512c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 597.333c-45.265 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678 0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68 0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988zM256 256h85.333v85.333h-85.333v-85.333zM256 725.333v85.333h512v-85.333h-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["polaroid-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1223,
+ "id": 1126,
+ "name": "polaroid-2-line",
+ "prevSize": 32,
+ "code": 60820
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1172
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM170.667 213.333v597.333h682.667v-597.333h-682.667zM453.205 359.040l208.171 138.752c2.342 1.557 4.262 3.669 5.589 6.148s2.022 5.248 2.022 8.060c0 2.812-0.695 5.581-2.022 8.060s-3.247 4.591-5.589 6.148l-208.213 138.752c-2.569 1.702-5.547 2.675-8.623 2.825-3.076 0.145-6.135-0.546-8.853-2.001-2.718-1.451-4.988-3.61-6.575-6.251-1.591-2.637-2.432-5.658-2.445-8.738v-277.589c0.004-3.087 0.849-6.115 2.441-8.76 1.587-2.646 3.866-4.811 6.588-6.264 2.726-1.454 5.79-2.141 8.875-1.99s6.067 1.136 8.636 2.849z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["movie-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1224,
+ "id": 1125,
+ "name": "movie-line",
+ "prevSize": 32,
+ "code": 60821
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1173
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 853.333h-853.333v-85.333h42.667v-297.344c0-212.821 171.947-385.323 384-385.323s384 172.501 384 385.323v297.344h42.667v85.333zM213.333 768h597.333v-297.344c0-165.675-133.717-299.989-298.667-299.989s-298.667 134.315-298.667 299.989v297.344zM405.333 896h213.333c0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.006-31.241-47.138-31.241-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1225,
+ "id": 1124,
+ "name": "notification-2-line",
+ "prevSize": 32,
+ "code": 60822
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1174
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 725.333h85.333v85.333h-853.333v-85.333h85.333v-298.667c0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359v298.667zM768 725.333v-298.667c0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019v298.667h512zM384 896h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1226,
+ "id": 1123,
+ "name": "notification-3-line",
+ "prevSize": 32,
+ "code": 60823
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1175
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 853.333h341.333v85.333h-341.333c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667 0.137 92.339-29.82 182.208-85.333 256h-115.541c59.917-52.838 99.401-125.022 111.573-203.977 12.177-78.95-3.725-159.675-44.937-228.111s-105.122-120.249-180.604-146.416c-75.477-26.167-157.747-25.031-232.474 3.211-74.728 28.242-137.183 81.8-176.489 151.348s-52.973 150.681-38.621 229.264c14.352 78.588 55.814 149.653 117.166 200.819 61.352 51.162 138.708 79.189 218.593 79.194zM512 426.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994zM341.333 597.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.708-24.994 60.34-24.994c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994zM682.667 597.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM512 768c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["movie-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1227,
+ "id": 1122,
+ "name": "movie-2-line",
+ "prevSize": 32,
+ "code": 60824
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1176
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM170.667 213.333v597.333h682.667v-597.333h-682.667zM512 519.253v-263.253h213.333v85.333h-128v298.667c-0.013 27.17-8.674 53.628-24.721 75.55-16.051 21.918-38.66 38.165-64.555 46.383-25.894 8.222-53.734 7.987-79.488-0.666s-48.087-25.276-63.767-47.462c-15.68-22.187-23.894-48.785-23.452-75.951s9.515-53.487 25.907-75.153c16.393-21.662 39.254-37.551 65.276-45.363 26.018-7.812 53.854-7.142 79.467 1.916z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mv-line"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1228, "id": 1121, "name": "mv-line", "prevSize": 32, "code": 60825 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1177
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 455.125l393.515-262.357c3.213-2.138 6.942-3.364 10.799-3.549 3.853-0.185 7.684 0.68 11.089 2.502 3.401 1.821 6.246 4.531 8.23 7.841s3.029 7.096 3.034 10.955v602.965c-0.004 3.857-1.050 7.646-3.034 10.957-1.984 3.307-4.83 6.020-8.23 7.838-3.405 1.822-7.236 2.688-11.089 2.505-3.857-0.183-7.586-1.412-10.799-3.55l-393.515-262.357v244.608c-0.004 3.857-1.050 7.646-3.034 10.957-1.984 3.307-4.83 6.020-8.23 7.838-3.405 1.822-7.236 2.688-11.089 2.505-3.857-0.183-7.586-1.412-10.799-3.55l-452.225-301.483c-2.922-1.95-5.317-4.587-6.974-7.684s-2.524-6.554-2.524-10.065c0-3.511 0.867-6.967 2.524-10.065s4.053-5.734 6.974-7.684l452.225-301.482c3.213-2.138 6.942-3.364 10.799-3.549 3.853-0.185 7.684 0.68 11.089 2.502 3.401 1.821 6.246 4.531 8.23 7.841s3.029 7.096 3.034 10.955v244.608zM426.666 693.888v-363.776l-272.811 181.888 272.811 181.888zM853.333 693.888v-363.776l-272.811 181.888 272.811 181.888z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rewind-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1229,
+ "id": 1120,
+ "name": "rewind-line",
+ "prevSize": 32,
+ "code": 60826
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1178
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 768v85.333h-853.333v-85.333h853.333zM85.333 149.333l341.333 213.333-341.333 213.333v-426.667zM938.667 469.333v85.333h-426.667v-85.333h426.667zM170.667 303.275v118.784l94.976-59.392-94.976-59.392zM938.667 170.667v85.333h-426.667v-85.333h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-list-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1230,
+ "id": 1119,
+ "name": "play-list-2-line",
+ "prevSize": 32,
+ "code": 60827
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1179
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v179.2l222.421-155.733c3.2-2.242 6.95-3.563 10.846-3.819 3.9-0.256 7.791 0.563 11.255 2.368s6.366 4.526 8.388 7.866c2.027 3.341 3.093 7.173 3.089 11.078v515.413c0.004 3.904-1.062 7.74-3.089 11.076-2.022 3.341-4.924 6.063-8.388 7.868s-7.356 2.624-11.255 2.368c-3.895-0.256-7.646-1.579-10.846-3.819l-222.421-155.733v179.2c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333zM640 256h-512v512h512v-512zM315.733 376.704c3.247-0.009 6.429 0.909 9.173 2.645l185.813 118.272c2.415 1.545 4.399 3.669 5.777 6.182 1.374 2.513 2.095 5.333 2.095 8.196s-0.721 5.683-2.095 8.196c-1.378 2.513-3.362 4.638-5.777 6.182l-185.813 118.315c-2.588 1.651-5.573 2.573-8.641 2.667-3.067 0.098-6.104-0.636-8.79-2.121s-4.922-3.669-6.472-6.319c-1.55-2.645-2.358-5.666-2.337-8.734v-236.373c0-9.429 7.68-17.067 17.067-17.067v-0.043zM896 377.173l-170.667 119.467v30.635l170.667 119.467v-269.568z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["live-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1231,
+ "id": 1118,
+ "name": "live-line",
+ "prevSize": 32,
+ "code": 60828
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1180
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 256h-85.333v-42.667h-597.333v597.333h597.333v-42.667h85.333v85.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333zM256 256h85.333v128h-85.333v-128zM640 682.667c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987s-88.674 17.981-120.678 49.987c-32.009 32.006-49.988 75.415-49.988 120.68s17.98 88.674 49.988 120.678c32.004 32.009 75.413 49.988 120.678 49.988zM640 768c-67.895 0-133.009-26.97-181.018-74.982-48.011-48.009-74.982-113.122-74.982-181.018s26.971-133.010 74.982-181.019c48.009-48.009 113.122-74.981 181.018-74.981s133.009 26.971 181.018 74.981c48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982zM640 597.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["polaroid-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1232,
+ "id": 1117,
+ "name": "polaroid-line",
+ "prevSize": 32,
+ "code": 60829
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1181
+ },
+ {
+ "icon": {
+ "paths": [
+ "M835.665 896h-707.668c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.169 12.497-30.17s18.854-12.497 30.17-12.497h25.003l-93.568-93.525 60.373-60.373 844.756 844.8-60.373 60.331-68.523-68.565zM238.333 298.667h-67.669v512h579.668l-93.013-93.013c-45.116 35.708-101.781 53.598-159.223 50.266s-111.657-27.652-152.343-68.339c-40.686-40.687-65.006-94.903-68.338-152.346s14.556-114.103 50.264-159.223l-89.344-89.344zM388.691 449.067c-19.67 28.749-28.672 63.467-25.449 98.146 3.223 34.684 18.468 67.149 43.098 91.78 24.628 24.627 57.093 39.872 91.777 43.098 34.684 3.221 69.402-5.781 98.146-25.451l-207.572-207.573zM938.662 758.827l-85.333-85.333v-374.826h-163.328l-85.333-85.333h-185.342l-13.099 13.099-60.331-60.331 38.101-38.101h255.998l85.333 85.333h170.667c11.319 0 22.17 4.495 30.174 12.497 8 8.001 12.493 18.854 12.493 30.17v502.826zM480.55 300.8c35.814-4.847 72.26-1.358 106.505 10.196 34.24 11.554 65.353 30.861 90.906 56.415 25.557 25.554 44.864 56.665 56.418 90.909 11.554 34.24 15.044 70.69 10.193 106.5l-99.755-99.755c-14.281-27.682-36.83-50.229-64.512-64.512l-99.755-99.754z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-off-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1233,
+ "id": 1116,
+ "name": "camera-off-line",
+ "prevSize": 32,
+ "code": 60830
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1182
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 768h426.667v85.333h-426.667v-85.333zM85.333 469.333h597.333v85.333h-597.333v-85.333zM85.333 170.667h853.333v85.333h-853.333v-85.333zM810.667 647.253v-263.253h213.333v85.333h-128v298.667c-0.013 27.17-8.674 53.628-24.721 75.55-16.051 21.918-38.66 38.165-64.555 46.383-25.894 8.222-53.734 7.987-79.488-0.666s-48.085-25.276-63.765-47.462c-15.68-22.187-23.893-48.785-23.454-75.951s9.515-53.487 25.907-75.153c16.393-21.666 39.253-37.551 65.276-45.363 26.018-7.812 53.854-7.142 79.467 1.916zM768 810.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-list-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1234,
+ "id": 1115,
+ "name": "play-list-line",
+ "prevSize": 32,
+ "code": 60831
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1183
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.334 256c0-23.552 19.413-42.667 42.325-42.667h768.682c23.381 0 42.325 18.987 42.325 42.667v597.333c0 23.552-19.413 42.667-42.325 42.667h-768.682c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.333zM170.668 298.667v512h682.666v-512h-682.666zM597.333 682.667c33.95 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.509s-56.559-37.491-90.509-37.491c-33.946 0-66.505 13.487-90.509 37.491s-37.491 56.563-37.491 90.509c0 33.946 13.487 66.505 37.491 90.509s56.563 37.491 90.509 37.491zM597.333 768c-56.58 0-110.839-22.477-150.848-62.485-40.009-40.004-62.484-94.268-62.484-150.848s22.476-110.844 62.484-150.849c40.009-40.008 94.268-62.484 150.848-62.484s110.844 22.476 150.852 62.484c40.004 40.006 62.481 94.269 62.481 150.849s-22.477 110.844-62.481 150.848c-40.009 40.009-94.272 62.485-150.852 62.485zM170.668 85.333h255.999v85.333h-255.999v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-3-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1235,
+ "id": 1114,
+ "name": "camera-3-line",
+ "prevSize": 32,
+ "code": 60832
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1184
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM170.667 213.333v597.333h682.667v-597.333h-682.667zM512 640c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491zM512 725.333c-56.58 0-110.842-22.477-150.849-62.485-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.269-62.484 150.849-62.484s110.844 22.476 150.848 62.484c40.009 40.008 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM725.333 256h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-2-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1236,
+ "id": 1113,
+ "name": "camera-2-line",
+ "prevSize": 32,
+ "code": 60833
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1185
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 392.533l222.421-155.733c3.2-2.242 6.95-3.563 10.846-3.819 3.9-0.256 7.791 0.563 11.255 2.368s6.366 4.526 8.388 7.866c2.027 3.341 3.093 7.173 3.089 11.078v515.413c0.004 3.904-1.062 7.74-3.089 11.076-2.022 3.341-4.924 6.063-8.388 7.868s-7.356 2.624-11.255 2.368c-3.895-0.256-7.646-1.579-10.846-3.819l-222.421-155.733v179.2c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v179.2zM725.333 527.317l170.667 119.467v-269.611l-170.667 119.467v30.677zM128 256v512h512v-512h-512zM213.333 341.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vidicon-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1237,
+ "id": 1112,
+ "name": "vidicon-line",
+ "prevSize": 32,
+ "code": 60834
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1186
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 426.667v469.333h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h213.333zM896 426.667v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667v-469.333h469.333zM853.333 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h-768v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1238,
+ "id": 1111,
+ "name": "layout-3-fill",
+ "prevSize": 32,
+ "code": 60835
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1187
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 128v768h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667zM896 554.667v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667v-341.333h341.333zM853.333 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-341.333v-341.333h298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1239,
+ "id": 1110,
+ "name": "layout-2-fill",
+ "prevSize": 32,
+ "code": 60836
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1188
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM810.667 256h-597.333v85.333h597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-top-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1240,
+ "id": 1109,
+ "name": "layout-top-2-fill",
+ "prevSize": 32,
+ "code": 60837
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1189
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM227.371 700.8c28.044 41.958 65.044 77.18 108.335 103.121s91.797 41.958 142.020 46.899c50.227 4.945 100.924-1.314 148.442-18.317 47.518-17.007 90.671-44.339 126.357-80.026 35.686-35.691 63.010-78.848 80.013-126.366s23.253-98.214 18.308-148.442c-4.949-50.223-20.971-98.728-46.916-142.017s-61.167-80.285-103.13-108.326c18.398 65.631 18.987 134.977 1.711 200.913-17.276 65.933-51.797 126.080-100.015 174.255-48.171 48.209-108.309 82.726-174.238 100.002-65.925 17.276-135.263 16.691-200.887-1.698v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1241,
+ "id": 1108,
+ "name": "contrast-2-fill",
+ "prevSize": 32,
+ "code": 60838
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1190
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 426.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.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["focus-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1242,
+ "id": 1107,
+ "name": "focus-fill",
+ "prevSize": 32,
+ "code": 60839
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1191
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512v-768h512zM298.667 896h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-left-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1243,
+ "id": 1106,
+ "name": "layout-left-fill",
+ "prevSize": 32,
+ "code": 60840
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1192
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 768v85.333h170.667v-85.333h-170.667zM128 298.667l170.667-213.333 170.667 213.333v640h-341.333v-640zM896 341.333h-85.333v85.333h85.333v85.333h-128v85.333h128v85.333h-85.333v85.333h85.333v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-256c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pencil-ruler-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1244,
+ "id": 1105,
+ "name": "pencil-ruler-fill",
+ "prevSize": 32,
+ "code": 60841
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1193
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM810.667 682.667h-597.333v85.333h597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-bottom-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1245,
+ "id": 1104,
+ "name": "layout-bottom-2-fill",
+ "prevSize": 32,
+ "code": 60842
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1194
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 426.667v170.667h-170.667v-170.667h170.667zM682.667 426.667h213.333v170.667h-213.333v-170.667zM597.333 896h-170.667v-213.333h170.667v213.333zM682.667 896v-213.333h213.333v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667zM597.333 128v213.333h-170.667v-213.333h170.667zM682.667 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h-213.333v-213.333zM341.333 426.667v170.667h-213.333v-170.667h213.333zM341.333 896h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667h213.333v213.333zM341.333 128v213.333h-213.333v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["grid-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1246,
+ "id": 1103,
+ "name": "grid-fill",
+ "prevSize": 32,
+ "code": 60843
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1195
+ },
+ {
+ "icon": {
+ "paths": [
+ "M587.435 521.899l90.496 90.539c-196.096 196.096-437.463 256.427-588.29 226.261l663.725-663.766 90.496 90.453-256.427 256.513z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slice-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1247,
+ "id": 1102,
+ "name": "slice-fill",
+ "prevSize": 32,
+ "code": 60844
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1196
+ },
+ {
+ "icon": {
+ "paths": [
+ "M413.14 322.644l98.86 98.901 271.957-272c7.923-7.927 17.331-14.217 27.686-18.507s21.453-6.499 32.666-6.499c11.209 0 22.306 2.208 32.661 6.499s19.763 10.58 27.691 18.507l30.165 30.165-521.687 521.644c15.464 36.463 17.76 77.171 6.502 115.145-11.259 37.969-35.375 70.844-68.215 92.988s-72.358 32.175-111.783 28.373c-39.424-3.802-76.3-21.193-104.306-49.199s-45.4-64.883-49.2-104.307c-3.799-39.424 6.231-78.942 28.373-111.782s55.017-56.956 92.99-68.215c37.973-11.26 78.68-8.96 115.144 6.502l98.901-98.859-98.901-98.86c-36.464 15.464-77.171 17.76-115.144 6.502-37.973-11.259-70.848-35.375-92.99-68.215s-32.173-72.358-28.373-111.783c3.8-39.424 21.193-76.3 49.2-104.306s64.882-45.4 104.306-49.2c39.424-3.799 78.943 6.231 111.783 28.373s56.956 55.017 68.215 92.99c11.258 37.973 8.963 78.68-6.502 115.144v0zM255.998 341.332c22.632 0 44.337-8.99 60.34-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.708 24.994 60.34 24.994v0zM255.998 853.333c22.632 0 44.337-8.994 60.34-24.994 16.003-16.004 24.994-37.709 24.994-60.339 0-22.635-8.99-44.339-24.994-60.343-16.003-16-37.708-24.99-60.34-24.99s-44.337 8.99-60.34 24.99c-16.003 16.004-24.994 37.709-24.994 60.343 0 22.63 8.99 44.335 24.994 60.339 16.003 16 37.708 24.994 60.34 24.994v0zM662.827 572.288l272 272.043-30.165 30.165c-7.927 7.927-17.335 14.217-27.691 18.505-10.355 4.292-21.453 6.498-32.661 6.498-11.213 0-22.31-2.206-32.666-6.498-10.355-4.288-19.763-10.577-27.686-18.505l-211.627-211.669 90.496-90.539z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scissors-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1248,
+ "id": 1101,
+ "name": "scissors-fill",
+ "prevSize": 32,
+ "code": 60845
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1197
+ },
+ {
+ "icon": {
+ "paths": [
+ "M714.965 127.999l-318.549 318.55 0.341 181.205 180.821-0.299 318.421-318.422v544.3c0 11.315-4.497 22.165-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497-8.001-8.004-12.497-18.854-12.497-30.17v-682.668c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h544.299zM874.027 89.599l60.373 60.416-392.192 392.193-60.245 0.128-0.085-60.459 392.149-392.278z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1249,
+ "id": 1100,
+ "name": "edit-box-fill",
+ "prevSize": 32,
+ "code": 60846
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1198
+ },
+ {
+ "icon": {
+ "paths": [
+ "M309.035 768h-181.035v-181.035l487.893-487.895c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l120.704 120.704c8 8.001 12.493 18.852 12.493 30.165s-4.493 22.164-12.493 30.165l-487.893 487.895zM128 853.333h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1250,
+ "id": 1099,
+ "name": "edit-fill",
+ "prevSize": 32,
+ "code": 60847
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1199
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 554.624v298.709c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333v-341.376h384zM469.333 554.624v341.376h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.709h384zM469.333 128v341.291h-384v-298.624c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.624h-384v-341.291h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-grid-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1251,
+ "id": 1098,
+ "name": "layout-grid-fill",
+ "prevSize": 32,
+ "code": 60848
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1200
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 170.667h85.333c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849v170.667h-85.333v-170.667c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49h-85.333v128l-213.333-170.667 213.333-170.667v128zM640 469.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["anticlockwise-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1252,
+ "id": 1097,
+ "name": "anticlockwise-2-fill",
+ "prevSize": 32,
+ "code": 60849
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1201
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM256 512h256c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v128h42.667v256h-170.667v-256h42.667v-85.333h-256c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-85.333h85.333v42.667zM756.565 585.899l75.435-75.435 75.435 75.435c14.916 14.921 25.071 33.924 29.184 54.618 4.113 20.689 2.001 42.133-6.076 61.623-8.073 19.49-21.743 36.147-39.283 47.868-17.545 11.716-38.165 17.971-59.26 17.971s-41.715-6.255-59.26-17.971c-17.54-11.721-31.211-28.378-39.283-47.868-8.077-19.49-10.189-40.934-6.076-61.623 4.113-20.693 14.268-39.697 29.184-54.618v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["paint-brush-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1253,
+ "id": 1096,
+ "name": "paint-brush-fill",
+ "prevSize": 32,
+ "code": 60850
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1202
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 384l186.496 74.624c16.213 6.443 26.837 22.187 26.837 39.595v397.781c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-397.781c0-17.451 10.624-33.152 26.837-39.595l186.496-74.624h341.333zM853.333 597.333h-512v213.333h512v-213.333zM682.667 128c23.552 0 42.667 19.115 42.667 42.667v170.667h-426.667v-170.667c0-23.552 19.115-42.667 42.667-42.667h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ink-bottle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1254,
+ "id": 1095,
+ "name": "ink-bottle-fill",
+ "prevSize": 32,
+ "code": 60851
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1203
+ },
+ {
+ "icon": {
+ "paths": [
+ "M709.376 133.632l-313.003 312.917 0.341 181.205 180.821-0.299 312.789-312.832c31.842 60.913 48.431 128.644 48.341 197.376 0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c0-235.648 191.019-426.667 426.667-426.667 71.211 0 138.325 17.451 197.376 48.299v0zM874.069 89.643l60.288 60.331-392.192 392.192-60.245 0.128-0.085-60.459 392.235-392.192z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1255,
+ "id": 1094,
+ "name": "edit-circle-fill",
+ "prevSize": 32,
+ "code": 60852
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1204
+ },
+ {
+ "icon": {
+ "paths": [
+ "M680.533 102.102l241.365 241.365c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-331.904 331.904-90.453 30.165-60.373 60.331c-8 8-18.853 12.493-30.166 12.493s-22.164-4.493-30.165-12.493l-181.035-181.035c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l60.331-60.331 30.165-90.496 331.905-331.904c8-7.999 18.85-12.492 30.165-12.492 11.311 0 22.165 4.494 30.165 12.492v0zM710.699 252.971l-271.531 271.53 60.331 60.331 271.531-271.53-60.331-60.331zM182.698 720.597l120.704 120.704-60.331 60.331-181.035-60.331 120.661-120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mark-pen-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1256,
+ "id": 1093,
+ "name": "mark-pen-fill",
+ "prevSize": 32,
+ "code": 60853
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1205
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 426.667h128l-170.667 213.333-170.667-213.333h128v-85.333c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49h-170.667v-85.333h170.667c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849v85.333zM554.667 384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clockwise-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1257,
+ "id": 1092,
+ "name": "clockwise-fill",
+ "prevSize": 32,
+ "code": 60854
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1206
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM810.667 256h-85.333v512h85.333v-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-right-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1258,
+ "id": 1091,
+ "name": "layout-right-2-fill",
+ "prevSize": 32,
+ "code": 60855
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1207
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 256h85.333v85.333h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v320l-256-149.333 1.536 343.979 94.848-91.733 76.032 131.755h-471.083c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h-85.333v-85.333h85.333v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333v-85.333zM938.667 739.755v156.245c0.004 4.446-0.687 8.866-2.048 13.099l-83.627-144.811 85.675-24.533zM170.667 597.333v85.333h-85.333v-85.333h85.333zM170.667 426.667v85.333h-85.333v-85.333h85.333zM170.667 256v85.333h-85.333v-85.333h85.333zM170.667 85.333v85.333h-85.333v-85.333h85.333zM341.333 85.333v85.333h-85.333v-85.333h85.333zM512 85.333v85.333h-85.333v-85.333h85.333zM682.667 85.333v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drag-drop-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1259,
+ "id": 1090,
+ "name": "drag-drop-fill",
+ "prevSize": 32,
+ "code": 60856
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1208
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 682.667v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667h853.333zM896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667h-853.333v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-bottom-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1260,
+ "id": 1089,
+ "name": "layout-bottom-fill",
+ "prevSize": 32,
+ "code": 60857
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1209
+ },
+ {
+ "icon": {
+ "paths": [
+ "M240.469 283.135l271.531-271.531 271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.614 14.814 74.487 7.211 151.697-21.854 221.867-29.065 70.165-78.281 130.138-141.431 172.331-63.147 42.197-137.391 64.717-213.338 64.717s-150.19-22.519-213.338-64.717c-63.148-42.193-112.367-102.165-141.431-172.331-29.064-70.17-36.669-147.379-21.853-221.867s51.388-142.91 105.091-196.614v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drop-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1261,
+ "id": 1088,
+ "name": "drop-fill",
+ "prevSize": 32,
+ "code": 60858
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1210
+ },
+ {
+ "icon": {
+ "paths": [
+ "M649.557 661.675l-94.421 198.4c-1.788 3.755-4.459 7.014-7.787 9.502s-7.215 4.126-11.315 4.779c-4.105 0.649-8.307 0.29-12.241-1.045s-7.484-3.605-10.342-6.622l-151.127-159.531c-4.037-4.258-9.415-6.997-15.232-7.765l-217.899-28.501c-4.116-0.542-8.040-2.078-11.431-4.471-3.391-2.398-6.148-5.585-8.034-9.284s-2.843-7.804-2.789-11.955c0.053-4.151 1.116-8.226 3.096-11.878l105.045-193.024c2.793-5.163 3.727-11.127 2.645-16.895l-40.235-216.021c-0.764-4.089-0.52-8.303 0.71-12.276s3.411-7.587 6.352-10.528c2.941-2.941 6.555-5.122 10.528-6.352s8.187-1.475 12.276-0.71l216.021 40.235c5.77 1.081 11.735 0.147 16.897-2.645l193.024-105.045c3.652-1.981 7.731-3.043 11.887-3.094s8.26 0.91 11.959 2.8c3.703 1.89 6.886 4.653 9.28 8.049s3.925 7.324 4.463 11.445l28.501 217.856c0.764 5.817 3.507 11.194 7.765 15.232l159.531 151.124c3.012 2.863 5.286 6.413 6.622 10.347s1.694 8.132 1.041 12.237c-0.649 4.105-2.291 7.987-4.779 11.315s-5.747 6.003-9.498 7.787l-198.4 94.421c-5.312 2.53-9.591 6.805-12.117 12.117v0zM683.563 743.893l60.331-60.331 181.035 180.992-60.373 60.373-180.992-181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["magic-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1262,
+ "id": 1087,
+ "name": "magic-fill",
+ "prevSize": 32,
+ "code": 60859
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1211
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 554.667v341.333h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667h341.333zM554.667 128h298.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667v-768zM128 170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667v341.333h-341.333v-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1263,
+ "id": 1086,
+ "name": "layout-4-fill",
+ "prevSize": 32,
+ "code": 60860
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1212
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 426.667v469.333h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h213.333zM938.667 426.667v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512v-469.333h554.667zM896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h-853.333v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1264,
+ "id": 1085,
+ "name": "layout-5-fill",
+ "prevSize": 32,
+ "code": 60861
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1213
+ },
+ {
+ "icon": {
+ "paths": [
+ "M210.307 916.693l249.43-249.429c18.142 4.864 37.389 3.605 54.741-3.584 17.357-7.189 31.855-19.9 41.25-36.169s13.154-35.183 10.705-53.807c-2.453-18.624-10.982-35.921-24.265-49.203s-30.579-21.811-49.203-24.265c-18.624-2.453-37.538 1.31-53.807 10.705s-28.982 23.893-36.169 41.25c-7.188 17.353-8.448 36.595-3.584 54.741l-249.429 249.429-45.227-45.227c120.619-140.8 165.888-296.704 226.219-558.165l271.532-30.165 241.365 241.365-30.165 271.531c-261.461 60.331-417.366 105.6-558.124 226.261l-45.269-45.269zM708.1 87.040l270.805 270.763c2.79 2.786 4.753 6.29 5.67 10.125 0.922 3.834 0.759 7.849-0.465 11.597s-3.465 7.084-6.468 9.636c-3.004 2.552-6.66 4.222-10.556 4.823l-62.891 9.813-241.323-241.323 9.045-63.36c0.563-3.918 2.202-7.602 4.74-10.641 2.534-3.038 5.867-5.312 9.621-6.564s7.787-1.437 11.639-0.531c3.853 0.906 7.377 2.866 10.18 5.661z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pen-nib-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1265,
+ "id": 1084,
+ "name": "pen-nib-fill",
+ "prevSize": 32,
+ "code": 60862
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1214
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 426.667h128l-170.667 213.333-170.667-213.333h128v-85.333c0-56.579 22.476-110.842 62.484-150.849s94.27-62.484 150.849-62.484h170.667v85.333h-170.667c-33.948 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51v85.333zM469.333 384h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["anticlockwise-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1266,
+ "id": 1083,
+ "name": "anticlockwise-fill",
+ "prevSize": 32,
+ "code": 60863
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1215
+ },
+ {
+ "icon": {
+ "paths": [
+ "M750.336 213.333l109.056-109.056 60.331 60.331-109.056 109.056v451.669h128v85.333h-128v128h-85.333v-640h-341.333v-85.333h366.336zM640 725.333v85.333h-384c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-469.333h-128v-85.333h128v-128h85.333v640h341.333zM384 384h256v256h-256v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["crop-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1267,
+ "id": 1082,
+ "name": "crop-2-fill",
+ "prevSize": 32,
+ "code": 60864
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1216
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 176.043v-90.709h85.333v90.709c29.257 7.572 55.979 22.772 77.436 44.049 21.461 21.277 36.89 47.867 44.71 77.056 7.825 29.189 7.761 59.932-0.183 89.088s-23.484 55.68-45.035 76.869l258.688 448.085-73.899 42.667-258.688-448.043c-29.897 8.299-61.491 8.299-91.392 0l-258.687 448.043-73.899-42.667 258.688-448.085c-21.548-21.188-37.088-47.712-45.032-76.869s-8.009-59.898-0.186-89.088c7.822-29.189 23.251-55.779 44.71-77.056s48.182-36.477 77.434-44.049v0zM512 384c11.315 0 22.17-4.495 30.17-12.497 8.004-8.002 12.497-18.854 12.497-30.17s-4.493-22.168-12.497-30.17c-8-8.001-18.854-12.497-30.17-12.497s-22.165 4.495-30.17 12.497c-8 8.002-12.497 18.854-12.497 30.17s4.497 22.168 12.497 30.17c8.004 8.001 18.854 12.497 30.17 12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compasses-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1268,
+ "id": 1081,
+ "name": "compasses-fill",
+ "prevSize": 32,
+ "code": 60865
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1217
+ },
+ {
+ "icon": {
+ "paths": [
+ "M240.469 283.135l271.531-271.531 271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.614 14.814 74.487 7.211 151.697-21.854 221.867-29.065 70.165-78.281 130.138-141.431 172.331-63.147 42.197-137.391 64.717-213.338 64.717s-150.19-22.519-213.338-64.717c-63.148-42.193-112.367-102.165-141.431-172.331-29.064-70.17-36.669-147.379-21.853-221.867s51.388-142.91 105.091-196.614v0zM300.8 343.465c-41.784 41.78-70.236 95.016-81.757 152.97s-5.591 118.025 17.037 172.608c22.629 54.583 60.939 101.227 110.085 134.033 49.146 32.802 106.917 50.295 166.006 50.257l-0.171-721.068-211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-drop-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1269,
+ "id": 1080,
+ "name": "contrast-drop-fill",
+ "prevSize": 32,
+ "code": 60866
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1218
+ },
+ {
+ "icon": {
+ "paths": [
+ "M696.742 576c35.533-27.925 64.252-63.561 83.985-104.213 19.738-40.653 29.973-85.263 29.935-130.453h85.333c0.043 60.178-14.076 119.522-41.22 173.231s-66.547 100.275-115.025 135.932l107.861 186.795c11.315 19.601 14.383 42.893 8.525 64.751s-20.156 40.499-39.757 51.814l-150.485-260.608c-48.525 21.231-100.932 32.154-153.899 32.085-52.966 0.068-105.372-10.854-153.898-32.085l-150.485 260.608c-19.599-11.315-33.9-29.956-39.757-51.814s-2.79-45.15 8.525-64.751l216.021-374.187c-21.548-21.188-37.088-47.712-45.032-76.869s-8.009-59.898-0.186-89.088c7.822-29.189 23.25-55.779 44.71-77.056s48.179-36.477 77.435-44.049v-90.709h85.333v90.709c29.257 7.572 55.979 22.772 77.436 44.049 21.461 21.277 36.89 47.867 44.71 77.056s7.757 59.932-0.188 89.088c-7.94 29.156-23.484 55.68-45.030 76.869l65.152 112.896zM622.929 618.752l-65.195-112.939c-29.897 8.299-61.491 8.299-91.392 0l-65.194 112.939c34.304 13.696 71.68 21.248 110.89 21.248 39.168 0 76.587-7.552 110.891-21.248zM511.996 384c11.315 0 22.17-4.495 30.17-12.497 8.004-8.002 12.497-18.854 12.497-30.17s-4.493-22.168-12.497-30.17c-8-8.001-18.854-12.497-30.17-12.497s-22.17 4.495-30.17 12.497c-8 8.002-12.497 18.854-12.497 30.17s4.497 22.168 12.497 30.17c8 8.001 18.854 12.497 30.17 12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compasses-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1270,
+ "id": 1079,
+ "name": "compasses-2-fill",
+ "prevSize": 32,
+ "code": 60867
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1219
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 597.333v-469.333h-170.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v426.667h213.333zM640 597.333v-469.333h-256v469.333h256zM938.667 597.333v-426.667c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497h-170.667v469.333h213.333zM896 896c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-170.667h-853.333v170.667c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["table-alt-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1271,
+ "id": 1078,
+ "name": "table-alt-fill",
+ "prevSize": 32,
+ "code": 60868
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1220
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 426.667v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h853.333zM896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h-853.333v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-top-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1272,
+ "id": 1077,
+ "name": "layout-top-fill",
+ "prevSize": 32,
+ "code": 60869
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1221
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.666 807.339l-57.6-23.253c-10.49-4.241-18.864-12.48-23.281-22.895-4.417-10.419-4.515-22.165-0.271-32.657l81.152-200.875v279.68zM378.026 896h-79.36c-11.316 0-22.168-4.493-30.17-12.497-8.002-8-12.497-18.85-12.497-30.17v-259.328l122.027 301.995zM256.938 254.636l395.606-159.829c10.483-4.23 22.221-4.125 32.627 0.291s18.637 12.782 22.882 23.261l239.787 593.406c2.099 5.197 3.153 10.756 3.106 16.363-0.051 5.606-1.203 11.145-3.396 16.303-2.189 5.158-5.376 9.835-9.374 13.764-3.998 3.925-8.734 7.027-13.931 9.122l-395.605 159.829c-5.197 2.103-10.756 3.157-16.363 3.106-5.602-0.047-11.145-1.203-16.303-3.392-5.158-2.193-9.835-5.376-13.76-9.378-3.93-3.998-7.031-8.73-9.126-13.931l-239.702-593.364c-4.227-10.49-4.116-22.23 0.308-32.639s12.8-18.635 23.287-22.871l-0.043-0.043zM384 384.002c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pantone-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1273,
+ "id": 1076,
+ "name": "pantone-fill",
+ "prevSize": 32,
+ "code": 60870
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1222
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 170.667v-128l213.333 170.667-213.333 170.667v-128h-85.333c-33.948 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51v170.667h-85.333v-170.667c0-56.579 22.476-110.842 62.484-150.849s94.27-62.484 150.849-62.484h85.333zM384 469.333c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clockwise-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1274,
+ "id": 1075,
+ "name": "clockwise-2-fill",
+ "prevSize": 32,
+ "code": 60871
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1223
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 341.333h-426.667v85.333h170.667v298.667h85.333v-298.667h170.667v-85.333zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1275,
+ "id": 1074,
+ "name": "t-box-fill",
+ "prevSize": 32,
+ "code": 60872
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1224
+ },
+ {
+ "icon": {
+ "paths": [
+ "M227.415 139.562c26.626-9.498 55.401-11.244 82.981-5.035s52.829 20.121 72.814 40.115c19.985 19.994 33.885 45.25 40.082 72.832 6.199 27.582 4.437 56.356-5.072 82.978l462.718 462.72-90.539 90.496-462.718-462.678c-26.626 9.498-55.401 11.243-82.98 5.035-27.579-6.21-52.829-20.121-72.815-40.115s-33.885-45.25-40.082-72.832c-6.198-27.582-4.439-56.357 5.071-82.979l95.403 95.445c5.904 6.113 12.966 10.988 20.774 14.343s16.206 5.12 24.704 5.193c8.498 0.074 16.925-1.545 24.791-4.763s15.011-7.97 21.021-13.979c6.009-6.009 10.761-13.155 13.979-21.021s4.837-16.293 4.763-24.791c-0.074-8.498-1.839-16.896-5.193-24.704s-8.23-14.871-14.343-20.774l-95.36-95.488zM669.739 219.946l135.765-75.435 60.331 60.331-75.435 135.765-75.435 15.104-90.453 90.496-60.373-60.331 90.496-90.496 15.104-75.435zM368.044 551.808l90.494 90.539-211.198 211.2c-11.646 11.537-27.276 18.167-43.666 18.517-16.39 0.354-32.29-5.598-44.421-16.623s-19.569-26.287-20.78-42.637c-1.21-16.35 3.899-32.538 14.275-45.231l4.139-4.565 211.157-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tools-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1276,
+ "id": 1073,
+ "name": "tools-fill",
+ "prevSize": 32,
+ "code": 60873
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1225
+ },
+ {
+ "icon": {
+ "paths": [
+ "M550.4 292.606l180.992 181.036-422.4 422.357h-180.992v-181.035l422.4-422.359zM610.731 232.276l90.496-90.539c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l120.704 120.704c8 8.001 12.493 18.852 12.493 30.165s-4.493 22.164-12.493 30.165l-90.539 90.496-180.992-180.992z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pencil-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1277,
+ "id": 1072,
+ "name": "pencil-fill",
+ "prevSize": 32,
+ "code": 60874
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1226
+ },
+ {
+ "icon": {
+ "paths": [
+ "M421.504 512l-98.859-98.86c-36.464 15.464-77.171 17.76-115.144 6.502-37.973-11.259-70.848-35.375-92.99-68.215s-32.173-72.358-28.373-111.783c3.8-39.424 21.193-76.3 49.2-104.306s64.882-45.4 104.306-49.2c39.424-3.799 78.943 6.231 111.783 28.373s56.956 55.017 68.215 92.99c11.261 37.973 8.961 78.68-6.502 115.144l98.859 98.901 271.957-272c7.923-7.927 17.331-14.217 27.686-18.507s21.457-6.499 32.666-6.499c11.209 0 22.31 2.208 32.666 6.499s19.763 10.58 27.686 18.507l30.165 30.165-521.685 521.644c15.462 36.463 17.762 77.171 6.502 115.145-11.259 37.969-35.375 70.844-68.215 92.988s-72.358 32.175-111.783 28.373c-39.424-3.802-76.3-21.193-104.306-49.199s-45.4-64.883-49.2-104.307c-3.799-39.424 6.231-78.942 28.373-111.782s55.017-56.956 92.99-68.215c37.973-11.26 78.68-8.96 115.144 6.502l98.859-98.859zM256 341.332c22.632 0 44.337-8.99 60.34-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.708 24.994 60.34 24.994v0zM256 853.333c22.632 0 44.337-8.994 60.34-24.994 16.003-16.004 24.994-37.709 24.994-60.339 0-22.635-8.99-44.339-24.994-60.343-16.003-16-37.708-24.99-60.34-24.99s-44.337 8.99-60.34 24.99c-16.003 16.004-24.994 37.709-24.994 60.343 0 22.63 8.99 44.335 24.994 60.339 16.003 16 37.708 24.994 60.34 24.994v0zM662.827 572.288l272 272.043-30.165 30.165c-7.923 7.927-17.331 14.217-27.686 18.505-10.355 4.292-21.457 6.498-32.666 6.498s-22.31-2.206-32.666-6.498c-10.355-4.288-19.763-10.577-27.686-18.505l-211.627-211.669 90.496-90.539zM682.667 469.333h85.333v85.333h-85.333v-85.333zM853.333 469.333h85.333v85.333h-85.333v-85.333zM256 469.333h85.333v85.333h-85.333v-85.333zM85.333 469.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scissors-cut-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1278,
+ "id": 1071,
+ "name": "scissors-cut-fill",
+ "prevSize": 32,
+ "code": 60875
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1227
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 85.333c-640 0-725.333 597.333-768 853.333h85.248c28.416-142.208 99.541-220.416 213.419-234.667 170.667-21.333 298.667-170.667 341.333-298.667l-64-42.667 42.667-42.667c42.667-42.667 85.504-106.667 149.333-234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["quill-pen-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1279,
+ "id": 1070,
+ "name": "quill-pen-fill",
+ "prevSize": 32,
+ "code": 60876
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1228
+ },
+ {
+ "icon": {
+ "paths": [
+ "M366.336 725.333h-238.336v-85.333h768v85.333h-238.336l138.368 138.368-60.331 60.331-181.035-181.035v110.336h-85.333v-110.336l-181.035 181.035-60.331-60.331 138.368-138.368zM213.333 128h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667h-682.667v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["artboard-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1280,
+ "id": 1069,
+ "name": "artboard-fill",
+ "prevSize": 32,
+ "code": 60877
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1229
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM727.509 776.704l-36.779-147.072c-2.313-9.225-7.637-17.417-15.138-23.266-7.497-5.854-16.738-9.033-26.249-9.033h-274.688c-9.512 0-18.75 3.179-26.249 9.033-7.498 5.85-12.826 14.042-15.138 23.266l-36.779 147.072c60.828 49.668 136.977 76.749 215.509 76.629 78.532 0.119 154.679-26.961 215.509-76.629v0zM426.667 512h170.667v-64l-44.288-155.093c-2.534-8.932-7.915-16.793-15.322-22.391s-16.439-8.626-25.724-8.626c-9.284 0-18.317 3.028-25.724 8.626s-12.787 13.459-15.322 22.391l-44.288 155.093v64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["markup-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1281,
+ "id": 1068,
+ "name": "markup-fill",
+ "prevSize": 32,
+ "code": 60878
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1230
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 682.667h-682.667v85.333h682.667v-85.333zM128 597.333v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v352.981h85.333v-352.981h469.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667h42.667v213.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333v128h-85.333v-128h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1282,
+ "id": 1067,
+ "name": "brush-4-fill",
+ "prevSize": 32,
+ "code": 60879
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1231
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 426.624v426.709c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333v-469.376h384zM469.333 682.624v213.376h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.709h384zM469.333 128v469.291h-384v-426.624c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.624h-384v-213.291h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-masonry-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1283,
+ "id": 1066,
+ "name": "layout-masonry-fill",
+ "prevSize": 32,
+ "code": 60880
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1232
+ },
+ {
+ "icon": {
+ "paths": [
+ "M820.399 799.232l75.435-75.435 75.392 75.435c14.921 14.916 25.079 33.92 29.201 54.613 4.117 20.693 2.005 42.142-6.067 61.632-8.073 19.494-21.743 36.156-39.283 47.876-17.545 11.721-38.17 17.98-59.264 17.98-21.099 0-41.724-6.259-59.264-17.98-17.545-11.721-31.215-28.382-39.287-47.876-8.073-19.49-10.185-40.939-6.067-61.632 4.122-20.693 14.285-39.697 29.205-54.613zM378.797 46.078l482.732 482.69c3.964 3.959 7.113 8.666 9.259 13.845s3.251 10.731 3.251 16.341c0 5.606-1.105 11.157-3.251 16.337s-5.295 9.886-9.259 13.85l-362.027 362.027c-8.004 7.996-18.854 12.489-30.165 12.489-11.315 0-22.165-4.493-30.165-12.489l-362.028-362.027c-3.967-3.964-7.114-8.67-9.261-13.85s-3.252-10.731-3.252-16.337c0-5.611 1.105-11.162 3.252-16.341s5.294-9.886 9.261-13.845l331.861-331.863-90.539-90.496 60.416-60.331h-0.085zM469.338 257.278l-301.698 301.655h603.351l-301.653-301.655z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["paint-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1284,
+ "id": 1065,
+ "name": "paint-fill",
+ "prevSize": 32,
+ "code": 60881
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1233
+ },
+ {
+ "icon": {
+ "paths": [
+ "M595.627 277.503l120.704-120.661c8-7.999 18.85-12.492 30.165-12.492s22.165 4.493 30.165 12.492l90.496 90.496c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-120.661 120.705 75.392 75.435-60.331 60.331-301.653-301.697 60.288-60.331 75.435 75.392zM459.861 383.145l181.035 181.036-331.861 331.819h-181.035v-181.035l331.861-331.82z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sip-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1285,
+ "id": 1064,
+ "name": "sip-fill",
+ "prevSize": 32,
+ "code": 60882
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1234
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM421.077 640h181.845l34.987 85.333h94.549l-177.792-426.667h-85.333l-177.792 426.667h94.592l34.987-85.333h-0.043zM456.064 554.667l55.936-136.533 55.936 136.533h-111.872z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["input-method-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1286,
+ "id": 1063,
+ "name": "input-method-fill",
+ "prevSize": 32,
+ "code": 60883
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1235
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 256h512v512h-512v-512zM256 85.333h85.333v128h-85.333v-128zM256 810.667h85.333v128h-85.333v-128zM85.333 256h128v85.333h-128v-85.333zM85.333 682.667h128v85.333h-128v-85.333zM810.667 256h128v85.333h-128v-85.333zM810.667 682.667h128v85.333h-128v-85.333zM682.667 85.333h85.333v128h-85.333v-128zM682.667 810.667h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["artboard-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1287,
+ "id": 1062,
+ "name": "artboard-2-fill",
+ "prevSize": 32,
+ "code": 60884
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1236
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 341.333c-33.948 0-66.505-13.486-90.51-37.49s-37.49-56.562-37.49-90.51c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49c33.948 0 66.505 13.486 90.51 37.49s37.49 56.562 37.49 90.51c0 33.948-13.486 66.505-37.49 90.51s-56.562 37.49-90.51 37.49zM810.667 341.333c-33.946 0-66.505-13.486-90.509-37.49s-37.491-56.562-37.491-90.51c0-33.948 13.487-66.505 37.491-90.51s56.563-37.49 90.509-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.51s-56.563 37.49-90.509 37.49zM810.667 938.667c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM213.333 938.667c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.509s56.562-37.491 90.51-37.491c33.948 0 66.505 13.487 90.51 37.491s37.49 56.563 37.49 90.509c0 33.946-13.486 66.505-37.49 90.509s-56.562 37.491-90.51 37.491zM384 170.667h256v85.333h-256v-85.333zM384 768h256v85.333h-256v-85.333zM170.667 384h85.333v256h-85.333v-256zM768 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shape-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1288,
+ "id": 1061,
+ "name": "shape-fill",
+ "prevSize": 32,
+ "code": 60885
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1237
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 725.333h128v85.333h-128v128h-85.333v-128h-469.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-469.333h-128v-85.333h128v-128h85.333v128h469.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v469.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["crop-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1289,
+ "id": 1060,
+ "name": "crop-fill",
+ "prevSize": 32,
+ "code": 60886
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1238
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 469.333v-128l170.667 170.667-170.667 170.667v-128h-213.333v213.333h128l-170.667 170.667-170.667-170.667h128v-213.333h-213.333v128l-170.667-170.667 170.667-170.667v128h213.333v-213.333h-128l170.667-170.667 170.667 170.667h-128v213.333h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drag-move-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1290,
+ "id": 1059,
+ "name": "drag-move-2-fill",
+ "prevSize": 32,
+ "code": 60887
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1239
+ },
+ {
+ "icon": {
+ "paths": [
+ "M477.397 561.365l58.923 334.635h-365.653c-23.552 0-42.667-19.115-42.667-42.667v-230.315l349.397-61.653zM853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-230.315l-135.424-768h365.739zM400.939 128l61.611 349.355-334.549 58.965v-365.653c0-23.552 19.115-42.667 42.667-42.667h230.272z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["collage-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1291,
+ "id": 1058,
+ "name": "collage-fill",
+ "prevSize": 32,
+ "code": 60888
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1240
+ },
+ {
+ "icon": {
+ "paths": [
+ "M240.469 283.135l271.531-271.531 271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.614 14.814 74.487 7.211 151.697-21.854 221.867-29.065 70.165-78.281 130.138-141.431 172.331-63.147 42.197-137.391 64.717-213.338 64.717s-150.19-22.519-213.338-64.717c-63.148-42.193-112.367-102.165-141.431-172.331-29.064-70.17-36.669-147.379-21.853-221.867s51.388-142.91 105.091-196.614v0zM512 132.308l-211.2 211.157c-27.775 27.705-49.8 60.626-64.811 96.872s-22.71 75.098-22.656 114.33h597.333c0.055-39.232-7.646-78.084-22.656-114.33s-37.035-69.167-64.811-96.872l-211.2-211.157z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-drop-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1292,
+ "id": 1057,
+ "name": "contrast-drop-2-fill",
+ "prevSize": 32,
+ "code": 60889
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1241
+ },
+ {
+ "icon": {
+ "paths": [
+ "M394.368 810.667h501.632v85.333h-768v-181.035l422.4-422.402 180.992 181.079-337.024 337.024zM610.688 232.276l90.539-90.539c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l120.704 120.704c8 8.001 12.493 18.852 12.493 30.165s-4.493 22.164-12.493 30.165l-90.539 90.496-181.035-180.992z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edit-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1293,
+ "id": 1056,
+ "name": "edit-2-fill",
+ "prevSize": 32,
+ "code": 60890
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1242
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 42.667l0.043 130.645c75.187 9.506 145.079 43.752 198.665 97.344s87.821 123.488 97.314 198.677h130.645v85.333l-130.645 0.043c-9.502 75.183-43.742 145.067-97.327 198.652s-123.469 87.825-198.652 97.327l-0.043 130.645h-85.333v-130.645c-75.189-9.493-145.084-43.729-198.677-97.314s-87.839-123.477-97.344-198.665l-130.645-0.043v-85.333h130.645c9.497-75.195 43.739-145.095 97.333-198.688s123.493-87.836 198.688-97.333v-130.645h85.333zM512 426.667c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["focus-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1294,
+ "id": 1055,
+ "name": "focus-3-fill",
+ "prevSize": 32,
+ "code": 60891
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1243
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 853.333c188.885 0 341.333-152.448 341.333-341.333s-152.448-341.333-341.333-341.333c-44.838-0.056-89.251 8.734-130.689 25.868s-79.089 42.274-110.796 73.981c-31.707 31.707-56.847 69.358-73.981 110.796s-25.924 85.85-25.868 130.689c0 188.885 152.448 341.333 341.333 341.333zM512 768c-141.653 0-256-114.347-256-256s114.347-256 256-256c141.653 0 256 114.347 256 256s-114.347 256-256 256zM512 426.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.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["focus-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1295,
+ "id": 1054,
+ "name": "focus-2-fill",
+ "prevSize": 32,
+ "code": 60892
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1244
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 85.333h213.333v213.333h-213.333v-213.333zM85.333 725.333h213.333v213.333h-213.333v-213.333zM725.333 85.333h213.333v213.333h-213.333v-213.333zM725.333 725.333h213.333v213.333h-213.333v-213.333zM341.333 170.667h341.333v85.333h-341.333v-85.333zM170.667 341.333h85.333v341.333h-85.333v-341.333zM768 341.333h85.333v341.333h-85.333v-341.333zM341.333 768h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shape-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1296,
+ "id": 1053,
+ "name": "shape-2-fill",
+ "prevSize": 32,
+ "code": 60893
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1245
+ },
+ {
+ "icon": {
+ "paths": [
+ "M210.304 563.499l90.496 90.496 60.331-60.331-90.453-90.496 90.453-90.496 120.704 120.661 60.331-60.331-120.618-120.704 90.453-90.496 90.496 90.496 60.373-60.331-90.539-90.496 120.704-120.704c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l211.2 211.2c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-633.6 633.6c-8.001 8-18.852 12.493-30.165 12.493s-22.164-4.493-30.165-12.493l-211.2-211.2c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l150.869-150.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ruler-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1297,
+ "id": 1052,
+ "name": "ruler-fill",
+ "prevSize": 32,
+ "code": 60894
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1246
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 512h-597.333v298.667h597.333v-298.667zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-row-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1298,
+ "id": 1051,
+ "name": "layout-row-fill",
+ "prevSize": 32,
+ "code": 60895
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1247
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 426.667v469.333h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h554.667zM938.667 426.667v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v-469.333h213.333zM896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667h-853.333v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-6-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1299,
+ "id": 1050,
+ "name": "layout-6-fill",
+ "prevSize": 32,
+ "code": 60896
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1248
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.605 0 426.667 169.728 426.667 379.264-0.034 62.857-25.020 123.127-69.474 167.573-44.45 44.442-104.725 69.419-167.582 69.44h-83.883c-39.339 0-71.125 31.787-71.125 71.125 0 18.005 7.125 34.603 18.005 46.933 11.392 12.8 18.517 29.397 18.517 47.872 0 39.381-32.725 71.125-71.125 71.125-235.605 0-426.667-191.061-426.667-426.667s191.061-426.667 426.667-426.667zM320 512c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.282-18.745 45.255c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743v0zM704 512c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.282-18.743 45.255c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743zM512 384c16.973 0 33.254-6.743 45.257-18.745s18.743-28.281 18.743-45.255c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.253 18.743 45.255s28.284 18.745 45.257 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["palette-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1300,
+ "id": 1049,
+ "name": "palette-fill",
+ "prevSize": 32,
+ "code": 60897
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1249
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 853.333v-682.667c-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359c0 90.526 35.962 177.348 99.974 241.361 64.012 64.009 150.832 99.972 241.359 99.972v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contrast-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1301,
+ "id": 1048,
+ "name": "contrast-fill",
+ "prevSize": 32,
+ "code": 60898
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1250
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 810.667h298.667v85.333l-554.583 0.085-276.779-276.779c-7.999-8.004-12.492-18.854-12.492-30.165 0-11.315 4.493-22.165 12.492-30.165l452.482-452.567c3.959-3.967 8.666-7.114 13.845-9.261s10.731-3.252 16.341-3.252c5.606 0 11.157 1.105 16.337 3.252s9.886 5.294 13.85 9.261l331.861 331.863c7.996 8 12.489 18.85 12.489 30.165 0 11.311-4.493 22.161-12.489 30.165l-312.021 312.064zM668.032 619.307l150.827-150.869-271.531-271.532-150.829 150.869 271.533 271.532z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eraser-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1302,
+ "id": 1047,
+ "name": "eraser-fill",
+ "prevSize": 32,
+ "code": 60899
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1251
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667l-170.667-170.667h341.333l-170.667 170.667zM512 85.333l170.667 170.667h-341.333l170.667-170.667zM512 597.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM85.333 512l170.667-170.667v341.333l-170.667-170.667zM938.667 512l-170.667 170.667v-341.333l170.667 170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drag-move-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1303,
+ "id": 1046,
+ "name": "drag-move-fill",
+ "prevSize": 32,
+ "code": 60900
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1252
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 896h-85.333v-128h-85.333v128h-85.333v-85.333h-85.333v85.333h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128h85.333v-85.333h-85.333v-85.333h128v-85.333h-128v-85.333h85.333v-85.333h-85.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384h384c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v-85.333h-85.333v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ruler-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1304,
+ "id": 1045,
+ "name": "ruler-2-fill",
+ "prevSize": 32,
+ "code": 60901
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1253
+ },
+ {
+ "icon": {
+ "paths": [
+ "M761.557 503.808l-30.165-30.165-422.4 422.4h-180.992v-181.035l482.688-482.729 241.365 241.364c8 8.004 12.493 18.854 12.493 30.165 0 11.315-4.493 22.165-12.493 30.165l-301.653 301.696-60.373-60.331 271.531-271.531zM791.723 111.617l120.704 120.661c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-60.373 60.373-180.992-181.035 60.331-60.331c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ball-pen-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1305,
+ "id": 1044,
+ "name": "ball-pen-fill",
+ "prevSize": 32,
+ "code": 60902
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1254
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 213.333v597.333h298.667v-597.333h-298.667zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-column-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1306,
+ "id": 1043,
+ "name": "layout-column-fill",
+ "prevSize": 32,
+ "code": 60903
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1255
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 602.496l-98.86 98.859c15.464 36.463 17.76 77.171 6.502 115.145-11.259 37.973-35.375 70.848-68.215 92.988-32.84 22.144-72.358 32.175-111.783 28.373-39.424-3.797-76.3-21.193-104.306-49.199s-45.4-64.883-49.2-104.307c-3.799-39.424 6.231-78.942 28.373-111.782s55.017-56.956 92.99-68.215c37.973-11.26 78.68-8.96 115.144 6.502l98.901-98.859-241.92-241.792c-7.927-7.924-14.216-17.333-18.507-27.689s-6.499-21.455-6.499-32.663c0-11.209 2.208-22.308 6.499-32.664s10.58-19.764 18.507-27.688l30.208-30.165 302.167 302.208 302.123-302.165 30.208 30.165c7.927 7.924 14.217 17.333 18.505 27.688 4.292 10.356 6.498 21.455 6.498 32.664s-2.206 22.308-6.498 32.663c-4.288 10.355-10.577 19.764-18.505 27.689l-241.877 241.749 98.859 98.859c36.463-15.462 77.171-17.762 115.145-6.502 37.969 11.26 70.844 35.375 92.988 68.215s32.175 72.358 28.373 111.782c-3.802 39.424-21.193 76.301-49.199 104.307s-64.883 45.402-104.307 49.199c-39.424 3.802-78.942-6.229-111.782-28.373-32.841-22.14-56.956-55.014-68.215-92.988s-8.96-78.682 6.502-115.145l-98.816-98.859zM255.998 853.333c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994v0zM768 853.333c22.63 0 44.335-8.99 60.339-24.994 16-16.004 24.994-37.709 24.994-60.339s-8.994-44.335-24.994-60.339c-16.004-16.004-37.709-24.994-60.339-24.994-22.635 0-44.339 8.99-60.343 24.994-16 16.004-24.99 37.709-24.99 60.339s8.99 44.335 24.99 60.339c16.004 16.004 37.709 24.994 60.343 24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scissors-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1307,
+ "id": 1042,
+ "name": "scissors-2-fill",
+ "prevSize": 32,
+ "code": 60904
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1256
+ },
+ {
+ "icon": {
+ "paths": [
+ "M566.997 265.215l210.731-163.883c8.205-6.374 18.453-9.535 28.821-8.89s20.147 5.049 27.499 12.389l127.787 127.744c7.351 7.355 11.763 17.141 12.407 27.52s-2.522 20.636-8.909 28.843l-163.84 210.689c11.554 47.121 12.245 96.252 2.027 143.68-10.214 47.428-31.078 91.913-61.005 130.099-29.931 38.187-68.143 69.069-111.761 90.321-43.614 21.252-91.486 32.316-140.002 32.358-149.419 0-341.419-64.085-448.085-128.085 169.813-128 130.005-205.227 149.333-277.333 45.141-168.535 206.592-266.967 374.997-225.452zM712.619 345.385c2.773 2.688 5.547 5.461 8.235 8.277l48.427 48.384 105.6-135.765-74.496-74.496-135.765 105.6 48 48z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1308,
+ "id": 1041,
+ "name": "brush-fill",
+ "prevSize": 32,
+ "code": 60905
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1257
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM298.667 256h-85.333v512h85.333v-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-left-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1309,
+ "id": 1040,
+ "name": "layout-left-2-fill",
+ "prevSize": 32,
+ "code": 60906
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1258
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 896v-469.333h213.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667zM597.333 896h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h469.333v469.333zM896 341.333h-768v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1310,
+ "id": 1039,
+ "name": "layout-fill",
+ "prevSize": 32,
+ "code": 60907
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1259
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.701 614.699l-66.219 66.219c21.201 35.725 28.642 77.952 20.932 118.771-7.706 40.815-30.037 77.423-62.805 102.955s-73.722 38.234-115.185 35.729c-41.464-2.505-80.591-20.045-110.048-49.335s-47.218-68.318-49.958-109.769c-2.739-41.446 9.733-82.475 35.078-115.383 25.345-32.913 61.824-55.45 102.598-63.39s83.044-0.734 118.886 20.262l66.347-66.389-133.291-133.333c-11.998-12.002-18.738-28.277-18.738-45.248s6.74-33.246 18.738-45.248l15.104-15.104 178.56 178.56 178.731-178.731 15.061 15.104c11.985 12 18.718 28.267 18.718 45.227s-6.733 33.227-18.718 45.227l-133.461 133.547 66.603 66.56c35.785-21.099 78.033-28.42 118.827-20.599 40.798 7.825 77.342 30.259 102.78 63.1s38.025 73.83 35.405 115.285c-2.624 41.459-20.275 80.533-49.647 109.909-29.376 29.372-68.45 47.023-109.909 49.647-41.455 2.62-82.445-9.967-115.285-35.405s-55.275-61.982-63.1-102.78c-7.821-40.794-0.499-83.042 20.599-118.827l-66.603-66.56zM810.667 554.667v-341.333h-597.333v341.333h-85.333v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384h-85.333zM298.667 853.333c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994v0zM725.333 853.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["screenshot-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1311,
+ "id": 1038,
+ "name": "screenshot-fill",
+ "prevSize": 32,
+ "code": 60908
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1260
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 896h-256v-469.333h256v469.333zM725.333 896v-469.333h213.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667zM298.667 896h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h213.333v469.333zM938.667 341.333h-853.333v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["table-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1312,
+ "id": 1037,
+ "name": "table-fill",
+ "prevSize": 32,
+ "code": 60909
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1261
+ },
+ {
+ "icon": {
+ "paths": [
+ "M705.536 680.533l90.453-90.539-135.723-135.765 150.827-150.828-90.453-90.496-150.869 150.827-135.765-135.765-90.54 90.496 362.070 362.070zM569.771 243.071l120.661-120.704c8-7.999 18.85-12.492 30.165-12.492 11.311 0 22.161 4.493 30.165 12.492l150.869 150.869c7.996 8.001 12.493 18.852 12.493 30.165s-4.497 22.164-12.493 30.165l-120.704 120.662 105.6 105.6c3.968 3.964 7.113 8.666 9.259 13.845 2.15 5.18 3.255 10.735 3.255 16.341s-1.105 11.157-3.255 16.337c-2.146 5.18-5.291 9.886-9.259 13.85l-331.861 331.861c-8.004 8-18.854 12.493-30.165 12.493-11.315 0-22.165-4.493-30.165-12.493l-422.401-422.4c-7.999-8-12.492-18.854-12.492-30.165 0-11.315 4.493-22.165 12.492-30.165l331.861-331.862c3.963-3.967 8.669-7.114 13.848-9.261s10.733-3.252 16.34-3.252c5.606 0 11.157 1.105 16.337 3.252s9.886 5.295 13.85 9.261l105.6 105.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1313,
+ "id": 1036,
+ "name": "brush-2-fill",
+ "prevSize": 32,
+ "code": 60910
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1262
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 469.333v-128h-256v-170.667h-170.667v170.667h-256v128h682.667zM896 554.667v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667v-256h-85.333v256h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h-42.667v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v256h-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brush-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1314,
+ "id": 1035,
+ "name": "brush-3-fill",
+ "prevSize": 32,
+ "code": 60911
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1263
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 341.333v-256h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497h-128zM640 938.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333h-277.333v-82.176c0.005-7.451 1.962-14.771 5.675-21.231s9.053-11.835 15.488-15.59l234.837-137.003h277.333v853.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hammer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1315,
+ "id": 1034,
+ "name": "hammer-fill",
+ "prevSize": 32,
+ "code": 60912
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1264
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h85.333v85.333h-85.333v-85.333zM298.667 128h85.333v85.333h-85.333v-85.333zM469.333 128h85.333v85.333h-85.333v-85.333zM640 128h85.333v85.333h-85.333v-85.333zM810.667 128h85.333v85.333h-85.333v-85.333zM810.667 298.667h85.333v85.333h-85.333v-85.333zM128 810.667h85.333v85.333h-85.333v-85.333zM128 640h85.333v85.333h-85.333v-85.333zM128 469.333h85.333v85.333h-85.333v-85.333zM128 298.667h85.333v85.333h-85.333v-85.333zM455.125 469.333l44.203-66.347c3.895-5.842 9.178-10.631 15.369-13.943 6.195-3.312 13.107-5.044 20.13-5.044h125.013c7.023-0.001 13.935 1.731 20.13 5.044 6.191 3.312 11.473 8.101 15.369 13.943l44.203 66.347h113.792c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h113.792zM597.333 768c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["screenshot-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1316,
+ "id": 1033,
+ "name": "screenshot-2-fill",
+ "prevSize": 32,
+ "code": 60913
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1265
+ },
+ {
+ "icon": {
+ "paths": [
+ "M240.468 542.161l77.995 78.037 60.416-60.416-78.080-77.952 60.331-60.329 78.039 77.993 60.331-60.331-77.954-78.035 60.332-60.331 77.909 78.080 60.373-60.373-78.037-77.995 120.704-120.661c8-7.999 18.85-12.492 30.165-12.492 11.311 0 22.161 4.494 30.165 12.492l180.992 180.992c7.996 8.001 12.489 18.851 12.489 30.165s-4.493 22.164-12.489 30.165l-543.020 543.017c-8.001 8-18.852 12.493-30.165 12.493s-22.164-4.493-30.165-12.493l-180.992-180.992c-7.999-8-12.492-18.85-12.492-30.165 0-11.311 4.494-22.161 12.492-30.165l120.661-120.704zM602.496 783.484l181.035-180.992 112.469 112.469v181.035h-180.992l-112.512-112.512zM240.468 421.459l-120.704-120.661c-3.967-3.963-7.114-8.668-9.261-13.848s-3.252-10.732-3.252-16.339c0-5.607 1.105-11.159 3.252-16.339s5.294-9.885 9.261-13.848l120.704-120.661c8.001-7.999 18.851-12.492 30.165-12.492s22.164 4.494 30.165 12.492l120.747 120.661-181.077 181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pencil-ruler-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1317,
+ "id": 1032,
+ "name": "pencil-ruler-2-fill",
+ "prevSize": 32,
+ "code": 60914
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1266
+ },
+ {
+ "icon": {
+ "paths": [
+ "M231.768 292.095l-172.331-172.288 60.373-60.373 844.759 844.801-60.373 60.331-129.621-129.707c-72.764 67.972-169.088 105.020-268.646 103.334-99.558-1.69-194.567-41.984-264.984-112.384s-110.734-165.402-112.446-264.96c-1.712-99.558 35.315-195.889 103.27-268.669v-0.085zM351.704 171.945l160.3-160.341 271.531 271.531c52.361 52.35 88.474 118.719 103.991 191.118 15.518 72.397 9.779 147.733-16.525 216.947l-519.297-519.255z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["blur-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1318,
+ "id": 1031,
+ "name": "blur-off-fill",
+ "prevSize": 32,
+ "code": 60915
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1267
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v-768h170.667zM640 896h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512v768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["layout-right-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1319,
+ "id": 1030,
+ "name": "layout-right-fill",
+ "prevSize": 32,
+ "code": 60916
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1268
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1320,
+ "id": 1029,
+ "name": "home-2-fill",
+ "prevSize": 32,
+ "code": 60917
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1269
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM341.333 640v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1321,
+ "id": 1028,
+ "name": "home-3-fill",
+ "prevSize": 32,
+ "code": 60918
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1270
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM384 426.667v256h256v-256h-256zM469.333 512h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-8-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1322,
+ "id": 1027,
+ "name": "home-8-fill",
+ "prevSize": 32,
+ "code": 60919
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1271
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 11.315-4.497 22.165-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497-8.001-8.004-12.497-18.854-12.497-30.17v-455.938c-0.003-6.445 1.455-12.806 4.263-18.607s6.894-10.89 11.951-14.886l341.333-269.269c7.531-5.952 16.853-9.19 26.453-9.19s18.923 3.238 26.453 9.19l341.333 269.227c5.060 4 9.152 9.097 11.959 14.905s4.262 12.179 4.254 18.631v455.938zM298.667 512c0 56.576 22.476 110.839 62.484 150.848s94.269 62.485 150.849 62.485c56.58 0 110.844-22.477 150.848-62.485 40.009-40.009 62.485-94.272 62.485-150.848h-85.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-smile-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1323,
+ "id": 1026,
+ "name": "home-smile-2-fill",
+ "prevSize": 32,
+ "code": 60920
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1272
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 810.667v-469.333h-42.667v-85.333h128v-85.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h128v85.333h-42.667v469.333h42.667v85.333h-938.667v-85.333h42.667zM554.667 810.667v-298.667h-85.333v298.667h85.333zM341.333 810.667v-298.667h-85.333v298.667h85.333zM768 810.667v-298.667h-85.333v298.667h85.333zM256 213.333v42.667h512v-42.667h-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["government-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1324,
+ "id": 1025,
+ "name": "government-fill",
+ "prevSize": 32,
+ "code": 60921
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1273
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-448.425c-0.005-6.502 1.477-12.919 4.332-18.761s7.006-10.954 12.138-14.946l341.333-265.472c7.488-5.827 16.708-8.99 26.197-8.99s18.709 3.163 26.197 8.99l341.333 265.472c5.133 3.992 9.284 9.104 12.139 14.946s4.335 12.259 4.331 18.761v448.425z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1325,
+ "id": 1024,
+ "name": "home-fill",
+ "prevSize": 32,
+ "code": 60922
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1274
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM512 725.333l143.317-143.317c8.913-8.913 15.987-19.494 20.809-31.142 4.826-11.648 7.309-24.132 7.309-36.74 0-12.604-2.483-25.088-7.309-36.736-4.821-11.648-11.895-22.229-20.809-31.147-8.913-8.913-19.499-15.983-31.147-20.809-11.644-4.824-24.128-7.308-36.736-7.308s-25.092 2.483-36.736 7.308c-11.648 4.826-22.234 11.895-31.147 20.809l-7.552 7.552-7.552-7.552c-8.913-8.913-19.499-15.983-31.147-20.809-11.644-4.824-24.128-7.308-36.736-7.308s-25.091 2.483-36.738 7.308c-11.648 4.826-22.231 11.895-31.145 20.809-8.914 8.917-15.986 19.499-20.81 31.147s-7.308 24.132-7.308 36.736c0 12.608 2.483 25.092 7.308 36.74s11.896 22.229 20.81 31.142l143.317 143.317z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-heart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1326,
+ "id": 1023,
+ "name": "home-heart-fill",
+ "prevSize": 32,
+ "code": 60923
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1275
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333h85.333v85.333h-938.667v-85.333h85.333v-725.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333zM469.333 341.333h-85.333v85.333h85.333v85.333h85.333v-85.333h85.333v-85.333h-85.333v-85.333h-85.333v85.333zM597.333 853.333h85.333v-256h-341.333v256h85.333v-170.667h170.667v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hospital-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1327,
+ "id": 1022,
+ "name": "hospital-fill",
+ "prevSize": 32,
+ "code": 60924
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1276
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-448.425c-0.005-6.502 1.477-12.919 4.332-18.761s7.006-10.954 12.138-14.946l341.333-265.472c7.488-5.827 16.708-8.99 26.197-8.99s18.709 3.163 26.197 8.99l341.333 265.472c5.133 3.992 9.284 9.104 12.139 14.946s4.335 12.259 4.331 18.761v448.425zM469.333 554.667v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1328,
+ "id": 1021,
+ "name": "home-5-fill",
+ "prevSize": 32,
+ "code": 60925
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1277
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM469.333 554.667v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1329,
+ "id": 1020,
+ "name": "home-4-fill",
+ "prevSize": 32,
+ "code": 60926
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1278
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 810.667h128v-258.475l-170.667-148.821-170.667 148.821v258.475h128v-170.667h85.333v170.667zM896 896h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-320.555c-0.001-6.097 1.305-12.122 3.83-17.673 2.524-5.547 6.209-10.492 10.805-14.498l156.032-136.064v-193.877c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM682.667 469.333v85.333h85.333v-85.333h-85.333zM682.667 640v85.333h85.333v-85.333h-85.333zM682.667 298.667v85.333h85.333v-85.333h-85.333zM512 298.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["community-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1330,
+ "id": 1019,
+ "name": "community-fill",
+ "prevSize": 32,
+ "code": 60927
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1279
+ },
+ {
+ "icon": {
+ "paths": [
+ "M533.888 85.375c30.127 85.125 89.28 156.917 167.070 202.772s169.25 62.842 258.317 47.98c-3.422 40.593-19.665 79.048-46.379 109.804-26.714 30.754-62.515 52.22-102.229 61.291v303.445l85.333 0.043v85.333h-768v-85.333h85.333v-303.488c-39.717-9.075-75.521-30.541-102.241-61.295-26.72-30.752-42.972-69.204-46.409-109.799 89.076 14.886 180.549-2.084 258.357-47.933s136.976-117.643 167.116-202.777l43.733-0.043zM725.333 512h-426.667v298.667h426.667v-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ancient-pavilion-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1331,
+ "id": 1018,
+ "name": "ancient-pavilion-fill",
+ "prevSize": 32,
+ "code": 60928
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1280
+ },
+ {
+ "icon": {
+ "paths": [
+ "M806.443 426.667c16.853 29.252 44.587 50.654 77.154 59.55s67.328 4.561 96.713-12.062c3.456 30.874-2.807 62.059-17.911 89.212-15.104 27.149-38.298 48.909-66.355 62.255l-0.043 270.379h-256v-85.333c0.030-33.318-12.928-65.335-36.13-89.25-23.198-23.915-54.81-37.841-88.115-38.818s-65.677 11.068-90.24 33.583c-24.563 22.511-39.38 53.713-41.303 86.976l-0.213 7.509v85.333h-256v-270.336c-28.111-13.325-51.359-35.098-66.496-62.276-15.138-27.174-21.41-58.402-17.941-89.318 29.382 16.657 64.157 21.018 96.743 12.139s60.339-30.281 77.209-59.541h588.929zM726.869 128c3.051 21.167 10.615 41.431 22.174 59.423 11.563 17.991 26.854 33.289 44.838 44.859 17.988 11.57 38.251 19.142 59.413 22.203 21.167 3.062 42.743 1.542 63.27-4.458-3.652 35.353-19.797 68.243-45.525 92.761-25.732 24.518-59.362 39.055-94.848 40.999l-8.192 0.213h-512.001c-36.95 0.006-72.591-13.687-100.032-38.433s-44.733-58.786-48.534-95.54c20.527 5.999 42.103 7.52 63.269 4.458s41.426-10.633 59.412-22.203c17.986-11.57 33.277-26.868 44.839-44.859s19.124-38.256 22.176-59.423h429.74z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ancient-gate-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1332,
+ "id": 1017,
+ "name": "ancient-gate-fill",
+ "prevSize": 32,
+ "code": 60929
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1281
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM366.592 589.141l-42.283 24.405 42.667 73.941 42.368-24.448c16.997 16.073 37.53 27.925 59.947 34.603v48.853h85.419v-48.896c22.413-6.665 42.944-18.505 59.947-34.56l42.325 24.405 42.752-73.899-42.283-24.405c5.397-22.72 5.397-46.396 0-69.12l42.283-24.448-42.667-73.94-42.368 24.446c-17.024-16.064-37.589-27.903-60.032-34.558v-48.853h-85.419v48.811c-22.417 6.68-42.95 18.533-59.947 34.601l-42.325-24.446-42.709 73.982 42.283 24.405c-5.399 22.724-5.399 46.4 0 69.12h0.043zM512 618.581c-8.405 0.009-16.734-1.643-24.503-4.855s-14.831-7.923-20.779-13.862c-5.948-5.943-10.671-12.996-13.892-20.762s-4.885-16.090-4.89-24.499c-0.004-8.405 1.647-16.734 4.855-24.503 3.213-7.765 7.923-14.827 13.867-20.779 5.939-5.948 12.996-10.667 20.762-13.892 7.765-3.221 16.090-4.881 24.495-4.89 16.973-0.009 33.259 6.724 45.269 18.718 12.006 11.994 18.761 28.267 18.773 45.239 0.013 16.977-6.72 33.259-18.714 45.269s-28.271 18.765-45.244 18.773v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-gear-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1333,
+ "id": 1016,
+ "name": "home-gear-fill",
+ "prevSize": 32,
+ "code": 60930
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1282
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 853.333h853.333v85.333h-853.333v-85.333zM170.667 512h85.333v298.667h-85.333v-298.667zM384 512h85.333v298.667h-85.333v-298.667zM554.667 512h85.333v298.667h-85.333v-298.667zM768 512h85.333v298.667h-85.333v-298.667zM85.333 298.667l426.667-213.333 426.667 213.333v170.667h-853.333v-170.667zM512 341.333c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bank-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1334,
+ "id": 1015,
+ "name": "bank-fill",
+ "prevSize": 32,
+ "code": 60931
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1283
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 496.896v399.104c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-399.104c-27.549-31.147-42.728-71.313-42.667-112.896v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v256c0 43.264-16.128 82.773-42.667 112.896zM597.333 384c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339v-213.333h-682.667v213.333c0 22.632 8.991 44.335 24.994 60.339s37.708 24.994 60.34 24.994c22.632 0 44.337-8.99 60.34-24.994s24.993-37.708 24.993-60.339c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["store-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1335,
+ "id": 1014,
+ "name": "store-fill",
+ "prevSize": 32,
+ "code": 60932
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1284
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810.667h85.333v-554.668l272.811 116.907c7.68 3.293 14.225 8.767 18.82 15.745s7.044 15.152 7.036 23.508v398.508h85.333v85.333h-938.667v-85.333h85.333v-569.601c-0.001-8.255 2.393-16.333 6.891-23.255s10.909-12.39 18.453-15.741l328.661-146.091c3.251-1.444 6.814-2.053 10.359-1.769s6.967 1.449 9.946 3.391c2.982 1.942 5.431 4.599 7.121 7.729 1.694 3.13 2.577 6.633 2.569 10.191v735.148z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1336,
+ "id": 1013,
+ "name": "building-2-fill",
+ "prevSize": 32,
+ "code": 60933
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1285
+ },
+ {
+ "icon": {
+ "paths": ["M426.667 431.403v-388.736l469.333 256v597.333h-768v-597.333l298.667 132.736z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1337,
+ "id": 1012,
+ "name": "building-3-fill",
+ "prevSize": 32,
+ "code": 60934
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1286
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 810.667h85.333v85.333h-938.667v-85.333h85.333v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v640h85.333v-426.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384zM298.667 469.333v85.333h170.667v-85.333h-170.667zM298.667 298.667v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1338,
+ "id": 1011,
+ "name": "building-fill",
+ "prevSize": 32,
+ "code": 60935
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1287
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-448.425c-0.005-6.502 1.477-12.919 4.332-18.761s7.006-10.954 12.138-14.946l341.333-265.472c7.488-5.827 16.708-8.99 26.197-8.99s18.709 3.163 26.197 8.99l341.333 265.472c5.133 3.992 9.284 9.104 12.139 14.946s4.335 12.259 4.331 18.761v448.425zM298.667 640v85.333h426.667v-85.333h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-6-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1339,
+ "id": 1010,
+ "name": "home-6-fill",
+ "prevSize": 32,
+ "code": 60936
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1288
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM469.333 640c28.288 0 55.42-11.238 75.426-31.241 20.002-20.002 31.241-47.134 31.241-75.426 0-28.288-11.238-55.42-31.241-75.422-20.006-20.006-47.138-31.245-75.426-31.245s-55.421 11.238-75.425 31.245c-20.004 20.002-31.242 47.134-31.242 75.422 0 28.292 11.238 55.424 31.242 75.426s47.137 31.241 75.425 31.241v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-7-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1340,
+ "id": 1009,
+ "name": "home-7-fill",
+ "prevSize": 32,
+ "code": 60937
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1289
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 853.333h85.333v85.333h-938.667v-85.333h85.333v-725.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333zM341.333 469.333v85.333h128v-85.333h-128zM341.333 298.667v85.333h128v-85.333h-128zM341.333 640v85.333h128v-85.333h-128zM554.667 640v85.333h128v-85.333h-128zM554.667 469.333v85.333h128v-85.333h-128zM554.667 298.667v85.333h128v-85.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["building-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1341,
+ "id": 1008,
+ "name": "building-4-fill",
+ "prevSize": 32,
+ "code": 60938
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1290
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM320 554.667c0 50.923 20.229 99.759 56.236 135.765s84.842 56.235 135.764 56.235c50.923 0 99.759-20.228 135.765-56.235s56.235-84.843 56.235-135.765h-85.333c0 28.292-11.238 55.424-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.002-31.241-47.134-31.241-75.426h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-smile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1342,
+ "id": 1007,
+ "name": "home-smile-fill",
+ "prevSize": 32,
+ "code": 60939
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1291
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 853.333v85.333h-853.333v-85.333h42.667v-288.341c-26.267-17.532-47.799-41.28-62.685-69.129-14.886-27.853-22.666-58.948-22.648-90.53 0-35.285 9.557-69.291 27.008-98.261l115.712-200.405c3.745-6.486 9.131-11.872 15.616-15.617s13.844-5.716 21.333-5.716h579.371c7.488 0 14.848 1.972 21.333 5.716s11.87 9.131 15.616 15.617l115.285 199.765c25.455 42.277 33.634 92.737 22.844 140.89-10.79 48.154-39.723 90.3-80.785 117.67v288.341h42.667zM246.997 170.667l-103.808 179.755c-10.087 24.923-10.39 52.737-0.848 77.875 9.542 25.135 28.226 45.743 52.311 57.694s51.796 14.366 77.585 6.758c25.789-7.603 47.755-24.67 61.501-47.778 14.293-35.712 64.853-35.712 79.189 0 7.906 19.814 21.572 36.804 39.232 48.772 17.664 11.968 38.507 18.364 59.84 18.364s42.176-6.396 59.84-18.364c17.66-11.968 31.326-28.958 39.232-48.772 14.293-35.712 64.853-35.712 79.189 0 5.538 13.628 13.833 25.967 24.367 36.237s23.083 18.249 36.847 23.433c13.769 5.188 28.459 7.471 43.153 6.707 14.69-0.764 29.065-4.561 42.219-11.149s24.802-15.825 34.214-27.132c9.412-11.307 16.384-24.435 20.48-38.566 4.092-14.132 5.218-28.957 3.307-43.543-1.916-14.586-6.822-28.62-14.421-41.218l-103.467-179.072h-529.963z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["store-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1343,
+ "id": 1006,
+ "name": "store-2-fill",
+ "prevSize": 32,
+ "code": 60940
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1292
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 554.667v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667h-42.667v-85.333l42.667-213.333h768l42.667 213.333v85.333h-42.667zM213.333 554.667v256h597.333v-256h-597.333zM256 597.333h341.333v128h-341.333v-128zM128 128h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["store-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1344,
+ "id": 1005,
+ "name": "store-3-fill",
+ "prevSize": 32,
+ "code": 60941
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1293
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 810.667h85.333v-341.333h-256v341.333h85.333v-256h85.333v256zM128 810.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333h85.333v426.667h42.667v85.333h-853.333v-85.333h42.667zM298.667 469.333v85.333h85.333v-85.333h-85.333zM298.667 640v85.333h85.333v-85.333h-85.333zM298.667 298.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hotel-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1345,
+ "id": 1004,
+ "name": "hotel-fill",
+ "prevSize": 32,
+ "code": 60942
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1294
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 853.333c0 11.319-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.85-12.497-30.17v-384h-128l440.619-400.553c7.855-7.148 18.095-11.109 28.715-11.109s20.86 3.961 28.715 11.109l440.619 400.553h-128v384zM298.667 469.333v85.333c28.015 0 55.756 5.521 81.639 16.239 25.882 10.722 49.399 26.436 69.209 46.246s35.524 43.328 46.246 69.21c10.722 25.886 16.239 53.623 16.239 81.638h85.333c0-79.211-31.467-155.179-87.479-211.187-56.009-56.013-131.976-87.479-211.187-87.479v0zM298.667 640v128h128c0-33.946-13.486-66.505-37.49-90.509s-56.562-37.491-90.51-37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["home-wifi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1346,
+ "id": 1003,
+ "name": "home-wifi-fill",
+ "prevSize": 32,
+ "code": 60943
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1295
+ },
+ {
+ "icon": {
+ "paths": [
+ "M303.147 648.96c27.889 11.055 51.011 31.552 65.33 57.916 14.32 26.359 18.928 56.913 13.021 86.327s-21.955 55.817-45.343 74.607c-23.388 18.79-52.631 28.77-82.626 28.198-29.995-0.567-58.838-11.652-81.495-31.317s-37.69-46.66-42.476-76.275c-4.785-29.615 0.98-59.972 16.291-85.773s39.194-45.402 67.484-55.39v-270.508c-28.48-10.065-52.484-29.875-67.77-55.927s-20.87-56.671-15.763-86.442c5.106-29.771 20.573-56.779 43.666-76.249s52.327-30.149 82.534-30.149c30.206 0 59.439 10.679 82.533 30.149s38.56 46.478 43.667 76.249c5.106 29.772-0.477 60.39-15.763 86.442s-39.29 45.862-67.77 55.927v135.254c35.669-26.795 79.957-42.667 128-42.667h170.667c28.079 0 55.381-9.229 77.7-26.266 22.319-17.039 38.417-40.942 45.82-68.029-28.023-11.097-51.234-31.726-65.549-58.253-14.31-26.527-18.803-57.253-12.689-86.768s22.443-55.927 46.114-74.586c23.676-18.659 53.171-28.369 83.298-27.42s58.953 12.495 81.404 32.607c22.451 20.112 37.086 47.499 41.331 77.341s-2.176 60.224-18.129 85.798c-15.949 25.574-40.414 44.701-69.082 54.013-8.593 49.524-34.394 94.422-72.849 126.785-38.46 32.363-87.108 50.108-137.37 50.112h-170.667c-28.079 0-55.38 9.229-77.699 26.266s-38.419 40.939-45.82 68.028z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-branch-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1347,
+ "id": 1002,
+ "name": "git-branch-fill",
+ "prevSize": 32,
+ "code": 60944
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1296
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 768v-157.867c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743h-21.333v-68.267h21.333c8.404 0 16.727-1.655 24.492-4.873s14.82-7.932 20.763-13.871c5.943-5.943 10.657-13.001 13.873-20.766s4.872-16.086 4.872-24.491v-157.867c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h42.667v85.333h-42.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v174.933c0.004 17.963-5.66 35.469-16.186 50.027-10.526 14.554-25.377 25.417-42.438 31.040 17.061 5.623 31.912 16.486 42.438 31.040 10.526 14.558 16.19 32.064 16.186 50.027v174.933c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h42.667v85.333h-42.667c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509zM853.333 610.133v157.867c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-42.667v-85.333h42.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-174.933c-0.004-17.963 5.662-35.469 16.188-50.027 10.526-14.554 25.374-25.417 42.436-31.040-17.062-5.623-31.91-16.486-42.436-31.040-10.526-14.558-16.192-32.064-16.188-50.027v-174.933c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497h-42.667v-85.333h42.667c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v157.867c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743h21.333v68.267h-21.333c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["braces-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1348,
+ "id": 1001,
+ "name": "braces-fill",
+ "prevSize": 32,
+ "code": 60945
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1297
+ },
+ {
+ "icon": {
+ "paths": [
+ "M677.291 554.667c-9.489 36.621-30.874 69.047-60.787 92.198-29.918 23.155-66.675 35.716-104.503 35.716s-74.586-12.561-104.502-35.716c-29.917-23.151-51.298-55.578-60.789-92.198h-218.709v-85.333h218.709c9.491-36.617 30.872-69.047 60.789-92.199s66.673-35.712 104.502-35.712c37.828 0 74.586 12.561 104.503 35.712 29.914 23.151 51.298 55.582 60.787 92.199h218.709v85.333h-218.709z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-commit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1349,
+ "id": 1000,
+ "name": "git-commit-fill",
+ "prevSize": 32,
+ "code": 60946
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1298
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 128l-27.733 142.507h579.84l-18.773 92.16h-579.413l-28.16 142.080h579.84l-32.427 162.56-233.813 77.227-202.667-77.227 14.080-69.973h-142.507l-33.707 170.667 334.933 128 386.133-128 51.2-257.28 10.24-51.627 65.707-331.093h-722.773z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["css3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1350,
+ "id": 999,
+ "name": "css3-fill",
+ "prevSize": 32,
+ "code": 60947
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1299
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 725.333v256h-85.333v-256h-128l170.667-213.333 170.667 213.333h-128zM682.667 810.667h128v-128h-34.133l-221.867-277.333-228.395 277.333h-48.939c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h149.333v85.333h-149.333c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v-533.333c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v-85.333zM298.667 213.333v85.333h85.333v-85.333h-85.333zM298.667 341.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-repository-commits-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1351,
+ "id": 998,
+ "name": "git-repository-commits-fill",
+ "prevSize": 32,
+ "code": 60948
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1300
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 640v85.333h256v-85.333h-256zM358.997 512l-120.661 120.661 60.331 60.373 181.035-181.035-181.035-181.035-60.331 60.373 120.661 120.661z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["terminal-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1352,
+ "id": 997,
+ "name": "terminal-box-fill",
+ "prevSize": 32,
+ "code": 60949
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1301
+ },
+ {
+ "icon": {
+ "paths": [
+ "M593.493 527.36l131.84 362.411-120.235 43.776-131.925-362.411-178.005 134.656 63.573-636.117 457.643 446.421-222.891 11.264z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cursor-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1353,
+ "id": 996,
+ "name": "cursor-fill",
+ "prevSize": 32,
+ "code": 60950
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1302
+ },
+ {
+ "icon": {
+ "paths": [
+ "M981.333 512l-301.696 301.696-60.331-60.331 241.365-241.365-241.365-241.364 60.331-60.331 301.696 301.695zM163.328 512l241.365 241.365-60.331 60.331-301.696-301.696 301.696-301.695 60.331 60.331-241.365 241.364z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1354,
+ "id": 995,
+ "name": "code-fill",
+ "prevSize": 32,
+ "code": 60951
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1303
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 341.333h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667zM682.667 341.333v-42.667c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68v42.667h341.333zM298.667 469.333v85.333h85.333v-85.333h-85.333zM298.667 597.333v85.333h85.333v-85.333h-85.333zM298.667 725.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-repository-private-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1355,
+ "id": 994,
+ "name": "git-repository-private-fill",
+ "prevSize": 32,
+ "code": 60952
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1304
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 341.333h170.667v-64c0-29.535 8.759-58.407 25.169-82.965 16.405-24.558 39.731-43.698 67.017-55.001 27.29-11.302 57.314-14.26 86.281-8.498 28.971 5.762 55.578 19.985 76.463 40.87s35.106 47.493 40.87 76.461c5.76 28.968 2.803 58.993-8.499 86.281s-30.443 50.61-55.002 67.019c-24.559 16.409-53.431 25.167-82.965 25.167h-64v170.667h64c29.534 0 58.406 8.759 82.965 25.169 24.559 16.405 43.699 39.731 55.002 67.017 11.302 27.29 14.259 57.314 8.499 86.281-5.764 28.971-19.985 55.578-40.87 76.463s-47.492 35.106-76.463 40.87c-28.966 5.76-58.991 2.803-86.281-8.499-27.285-11.302-50.611-30.443-67.017-55.002-16.41-24.559-25.169-53.431-25.169-82.965v-64h-170.667v64c0 29.534-8.758 58.406-25.167 82.965s-39.732 43.699-67.019 55.002c-27.287 11.302-57.313 14.259-86.281 8.499-28.968-5.764-55.577-19.985-76.461-40.87s-35.107-47.492-40.87-76.463c-5.762-28.966-2.804-58.991 8.498-86.281 11.303-27.285 30.443-50.611 55.001-67.017 24.558-16.41 53.43-25.169 82.965-25.169h64v-170.667h-64c-29.535 0-58.407-8.758-82.965-25.167s-43.698-39.732-55.001-67.019c-11.302-27.287-14.26-57.313-8.498-86.281s19.985-55.577 40.87-76.461c20.884-20.885 47.493-35.107 76.461-40.87s58.993-2.804 86.281 8.498c27.287 11.303 50.61 30.443 67.019 55.001s25.167 53.43 25.167 82.965v64zM341.333 341.333v-64c0-12.658-3.753-25.032-10.786-35.556s-17.028-18.728-28.722-23.572c-11.695-4.844-24.563-6.111-36.977-3.642s-23.819 8.565-32.769 17.516c-8.951 8.951-15.046 20.354-17.516 32.769s-1.202 25.283 3.642 36.977c4.844 11.695 13.047 21.69 23.572 28.722s22.898 10.786 35.556 10.786h64zM341.333 682.667h-64c-12.658 0-25.032 3.755-35.556 10.786s-18.728 17.028-23.572 28.723c-4.844 11.695-6.111 24.563-3.642 36.975 2.47 12.416 8.565 23.821 17.516 32.772 8.951 8.947 20.354 15.044 32.769 17.515s25.283 1.203 36.977-3.644c11.695-4.843 21.69-13.047 28.722-23.569 7.032-10.526 10.786-22.899 10.786-35.558v-64zM682.667 341.333h64c12.659 0 25.033-3.753 35.558-10.786 10.522-7.033 18.726-17.028 23.569-28.722 4.847-11.695 6.114-24.563 3.644-36.977s-8.567-23.819-17.515-32.769c-8.951-8.951-20.356-15.046-32.772-17.516-12.412-2.469-25.28-1.202-36.975 3.642s-21.692 13.047-28.723 23.572c-7.031 10.525-10.786 22.898-10.786 35.556v64zM682.667 682.667v64c0 12.659 3.755 25.033 10.786 35.558 7.031 10.522 17.028 18.726 28.723 23.569 11.695 4.847 24.563 6.114 36.975 3.644 12.416-2.47 23.821-8.567 32.772-17.515 8.947-8.951 15.044-20.356 17.515-32.772 2.47-12.412 1.203-25.28-3.644-36.975-4.843-11.695-13.047-21.692-23.569-28.723-10.526-7.031-22.899-10.786-35.558-10.786h-64zM426.667 426.667v170.667h170.667v-170.667h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["command-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1356,
+ "id": 993,
+ "name": "command-fill",
+ "prevSize": 32,
+ "code": 60953
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1305
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 896v106.667l-128-85.333-128 85.333v-106.667h-21.333c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v-533.333c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v725.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667zM298.667 810.667v-85.333h256v85.333h256v-128h-533.333c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h21.333zM298.667 213.333v85.333h85.333v-85.333h-85.333zM298.667 341.333v85.333h85.333v-85.333h-85.333zM298.667 469.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-repository-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1357,
+ "id": 992,
+ "name": "git-repository-fill",
+ "prevSize": 32,
+ "code": 60954
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1306
+ },
+ {
+ "icon": {
+ "paths": [
+ "M303.147 375.040c7.401 27.087 23.501 50.989 45.82 68.027 22.319 17.037 49.62 26.266 77.699 26.266h170.667c50.261 0.004 98.91 17.749 137.37 50.112 38.455 32.363 64.256 77.261 72.849 126.784 28.958 9.446 53.598 28.911 69.5 54.891s22.016 56.781 17.254 86.865c-4.766 30.084-20.1 57.485-43.247 77.282-23.151 19.797-52.599 30.694-83.059 30.733-29.803 0.026-58.675-10.351-81.647-29.338s-38.596-45.393-44.181-74.667c-5.589-29.274-0.785-59.58 13.577-85.687 14.366-26.112 37.389-46.396 65.105-57.348-7.403-27.085-23.501-50.987-45.82-68.028-22.319-17.037-49.621-26.266-77.7-26.266h-170.667c-46.17 0.068-91.104-14.908-128-42.667v135.253c28.48 10.065 52.484 29.875 67.77 55.927s20.869 56.67 15.763 86.443c-5.106 29.773-20.573 56.781-43.667 76.25s-52.327 30.148-82.533 30.148c-30.206 0-59.44-10.679-82.534-30.148s-38.56-46.477-43.666-76.25c-5.106-29.773 0.477-60.39 15.763-86.443s39.29-45.862 67.77-55.927v-270.506c-28.289-9.988-52.173-29.592-67.484-55.391s-21.076-56.156-16.291-85.772c4.785-29.617 19.819-56.612 42.476-76.276s51.5-30.748 81.495-31.318c29.995-0.57 59.238 9.411 82.626 28.2s39.436 45.194 45.343 74.607c5.907 29.413 1.299 59.967-13.021 86.329s-37.441 46.86-65.33 57.915z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-merge-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1358,
+ "id": 991,
+ "name": "git-merge-fill",
+ "prevSize": 32,
+ "code": 60955
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1307
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 512l-241.365 241.365-60.331-60.331 181.035-181.035-181.035-181.034 60.331-60.331 241.365 241.364zM120.661 512l181.035 181.035-60.331 60.331-241.365-241.365 241.365-241.364 60.288 60.331-180.992 181.034z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-s-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1359,
+ "id": 990,
+ "name": "code-s-fill",
+ "prevSize": 32,
+ "code": 60956
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1308
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128v85.333h-128v597.333h128v85.333h-213.333v-768h213.333zM640 128h213.333v768h-213.333v-85.333h128v-597.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["brackets-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1360,
+ "id": 989,
+ "name": "brackets-fill",
+ "prevSize": 32,
+ "code": 60957
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1309
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 213.333h85.333c22.635 0 44.339 8.99 60.339 24.994 16.004 16.003 24.994 37.708 24.994 60.34v348.587c28.48 10.065 52.484 29.875 67.772 55.927s20.868 56.67 15.761 86.443c-5.103 29.773-20.57 56.777-43.665 76.25-23.095 19.469-52.326 30.148-82.534 30.148-30.204 0-59.439-10.679-82.53-30.148-23.095-19.473-38.562-46.477-43.669-76.25s0.478-60.39 15.765-86.443c15.283-26.052 39.287-45.862 67.767-55.927v-348.587h-85.333v128l-192-170.667 192-170.667v128zM213.335 376.747c-28.48-10.065-52.484-29.875-67.77-55.928s-20.87-56.67-15.763-86.442c5.106-29.771 20.573-56.779 43.667-76.249s52.327-30.149 82.533-30.149c30.206 0 59.439 10.679 82.533 30.149s38.561 46.478 43.667 76.249c5.106 29.772-0.477 60.39-15.763 86.442s-39.29 45.862-67.77 55.928v270.507c28.48 10.065 52.484 29.875 67.77 55.927s20.87 56.67 15.763 86.443c-5.106 29.773-20.573 56.777-43.667 76.25-23.094 19.469-52.327 30.148-82.533 30.148s-59.439-10.679-82.533-30.148c-23.094-19.473-38.561-46.477-43.667-76.25s0.477-60.39 15.763-86.443c15.286-26.052 39.29-45.862 67.77-55.927v-270.507z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["git-pull-request-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1361,
+ "id": 988,
+ "name": "git-pull-request-fill",
+ "prevSize": 32,
+ "code": 60958
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1310
+ },
+ {
+ "icon": {
+ "paths": [
+ "M258.389 354.133c2.72-4.339 5.551-8.607 8.491-12.8h490.24c2.944 4.181 5.76 8.491 8.491 12.8l86.187-49.749 42.667 73.899-94.421 54.528c6.912 25.173 10.624 51.755 10.624 79.189v42.667h128v85.333h-128c0 40.661-8.107 79.445-22.869 114.773l106.667 61.611-42.667 73.899-107.776-62.208c-47.309 58.432-114.935 96.849-189.355 107.563v-338.304h-85.333v338.347c-74.423-10.722-142.053-49.156-189.355-107.605l-107.776 62.208-42.667-73.899 106.667-61.568c-15.146-36.382-22.919-75.409-22.869-114.816h-128v-85.333h128v-42.667c0-27.435 3.712-53.973 10.624-79.189l-94.421-54.528 42.667-73.899 86.187 49.749zM341.333 256c0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bug-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1362, "id": 987, "name": "bug-fill", "prevSize": 32, "code": 60959 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1311
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM702.464 662.869l150.869-150.869-150.869-150.869-60.331 60.416 90.539 90.453-90.539 90.496 60.331 60.373zM291.328 512l90.539-90.496-60.331-60.373-150.869 150.869 150.869 150.869 60.331-60.416-90.539-90.453zM479.744 725.333l155.307-426.667h-90.795l-155.307 426.667h90.795z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1363,
+ "id": 986,
+ "name": "code-box-fill",
+ "prevSize": 32,
+ "code": 60960
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1312
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 426.667h-682.667v384h682.667v-384zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 256v85.333h85.333v-85.333h-85.333zM384 256v85.333h85.333v-85.333h-85.333zM213.333 469.333h128v213.333h-128v-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["terminal-window-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1364,
+ "id": 985,
+ "name": "terminal-window-fill",
+ "prevSize": 32,
+ "code": 60961
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1313
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 775.595l197.12-53.589 26.581-289.195h-350.592l-8.704-96.171h368.043l9.685-94.336h-484.267l27.136 284.928h333.653l-11.136 122.283-107.52 28.459-107.52-28.459-6.741-78.677h-96.853l14.037 151.211 197.077 53.547zM128 85.333h768l-69.248 768-314.752 85.333-314.752-85.333-69.248-768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["html5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1365,
+ "id": 984,
+ "name": "html5-fill",
+ "prevSize": 32,
+ "code": 60962
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1314
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 512l-301.696 301.696-60.331-60.331 241.365-241.365-241.365-241.366 60.331-60.288 301.696 301.654zM469.333 810.667h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["terminal-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1366,
+ "id": 983,
+ "name": "terminal-fill",
+ "prevSize": 32,
+ "code": 60963
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1315
+ },
+ {
+ "icon": {
+ "paths": [
+ "M295.381 896c-77.227-99.669-124.715-234.965-124.715-384s47.488-284.331 124.715-384h85.931c-72.619 101.888-116.779 236.459-116.779 384s44.16 282.112 116.779 384h-85.931zM728.491 896h-85.931c72.619-101.888 116.779-236.459 116.779-384s-44.16-282.112-116.779-384h85.931c77.227 99.669 124.715 234.965 124.715 384s-47.445 284.331-124.715 384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parentheses-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1367,
+ "id": 982,
+ "name": "parentheses-fill",
+ "prevSize": 32,
+ "code": 60964
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1316
+ },
+ {
+ "icon": {
+ "paths": [
+ "M216.32 682.667c-2.005-14.131-3.003-28.39-2.987-42.667v-42.667h-85.333v-85.333h85.333v-42.667c0-14.507 1.024-28.715 2.987-42.667h-88.32v-85.332h114.091c26.153-54.976 68.416-100.691 121.173-131.072l-44.8-44.8 60.416-60.288 71.808 71.851c40.465-8.457 82.244-8.457 122.709 0l71.808-71.851 60.373 60.373-44.8 44.8c52.727 30.365 94.976 76.049 121.131 130.987h114.091v85.332h-88.32c1.963 13.952 2.987 28.16 2.987 42.667v42.667h85.333v85.333h-85.333v42.667c0 14.507-1.024 28.715-2.987 42.667h88.32v85.333h-114.091c-24.209 51.102-62.426 94.276-110.204 124.514-47.782 30.234-103.164 46.285-159.706 46.285s-111.924-16.051-159.705-46.285c-47.78-30.238-85.996-73.412-110.205-124.514h-114.091v-85.333h88.32zM384 426.667v85.333h256v-85.333h-256zM384 597.333v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bug-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1368,
+ "id": 981,
+ "name": "bug-2-fill",
+ "prevSize": 32,
+ "code": 60965
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1317
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 512l-241.365 241.365-60.331-60.331 181.035-181.035-181.035-181.035 60.331-60.331 241.365 241.365zM120.661 512l181.035 181.035-60.331 60.331-241.365-241.365 241.365-241.365 60.288 60.331-180.992 181.035zM417.621 896h-90.795l279.552-768h90.795l-279.552 768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["code-s-slash-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1369,
+ "id": 980,
+ "name": "code-s-slash-fill",
+ "prevSize": 32,
+ "code": 60966
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1318
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 213.333v85.333c70.699 0 128 57.301 128 128v469.333c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-469.333c0-70.699 57.301-128 128-128v-85.333h426.667zM554.667 469.333h-85.333v85.333h-85.333v85.333h85.291l0.043 85.333h85.333l-0.043-85.333h85.376v-85.333h-85.333v-85.333zM810.667 85.333v85.333h-597.333v-85.333h597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medicine-bottle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1370,
+ "id": 979,
+ "name": "medicine-bottle-fill",
+ "prevSize": 32,
+ "code": 60967
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1319
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 42.667c23.552 0 42.667 19.115 42.667 42.667v128h170.667c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h170.667v-128c0-23.552 19.115-42.667 42.667-42.667h341.333zM554.667 384h-85.333v128h-128v85.333h127.957l0.043 128h85.333l-0.043-128h128.043v-85.333h-128v-128zM640 128h-256v85.333h256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["first-aid-kit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1371,
+ "id": 978,
+ "name": "first-aid-kit-fill",
+ "prevSize": 32,
+ "code": 60968
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1320
+ },
+ {
+ "icon": {
+ "paths": [
+ "M740.821 471.253c59.904-59.435 157.013-59.435 216.917 0 59.904 59.477 59.904 155.904 0 215.339l-232.405 230.741-232.405-230.741c-59.904-59.435-59.904-155.861 0-215.339 59.904-59.435 157.013-59.435 216.917 0l15.488 15.36 15.488-15.36zM821.035 202.965c40.107 40.235 64.128 90.368 72.064 142.421-56.875-10.581-116.864-0.427-167.765 30.421-91.733-55.595-213.077-43.947-292.523 34.901-90.922 90.24-93.439 235.307-7.594 328.576l7.594 7.893 103.296 102.571-66.773 66.944-361.812-362.325c-89.728-100.523-86.357-254.891 10.112-351.403 96.64-96.597 251.221-99.84 351.743-9.728 100.224-89.984 255.104-86.997 351.659 9.728z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hearts-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1372,
+ "id": 977,
+ "name": "hearts-fill",
+ "prevSize": 32,
+ "code": 60969
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1321
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 469.333v85.333l-227.285 256h227.285v85.333h-341.333v-85.333l227.243-256h-227.243v-85.333h341.333zM896 128v85.333l-227.285 256h227.285v85.333h-341.333v-85.333l227.243-256h-227.243v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zzz-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1373, "id": 976, "name": "zzz-fill", "prevSize": 32, "code": 60970 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1322
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.805 59.435l784.382 784.427-60.331 60.331-159.872-159.872-171.989 172.373-361.812-362.325c-87.040-97.451-86.528-245.461 1.451-342.315l-92.203-92.245 60.373-60.373zM863.697 202.965c96.512 96.768 99.84 250.88 10.069 351.403l-69.76 69.803-494.249-494.208c71.253-8.832 145.406 12.288 202.281 63.275 100.224-89.984 255.104-86.997 351.659 9.728z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dislike-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1374,
+ "id": 975,
+ "name": "dislike-fill",
+ "prevSize": 32,
+ "code": 60971
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1323
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.056 146.944c66.645 66.645 66.645 174.677 0 241.365l-349.867 349.867c-27.392 27.392-63.317 44.672-101.846 48.939l-144.128 15.957-98.048 98.133c-16.64 16.64-43.691 16.64-60.331 0-16.64-16.683-16.64-43.691 0-60.373l98.048-98.091 16-144.085c4.267-38.528 21.547-74.453 48.939-101.845l349.867-349.867c66.688-66.645 174.72-66.645 241.365 0zM484.864 539.136l-60.331 60.331 90.496 90.539 60.331-60.373-90.496-90.496zM605.525 418.475l-60.331 60.331 90.496 90.496 60.373-60.331-90.539-90.496zM726.229 297.771l-60.331 60.331 90.453 90.539 60.416-60.373-90.539-90.496z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thermometer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1375,
+ "id": 974,
+ "name": "thermometer-fill",
+ "prevSize": 32,
+ "code": 60972
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1324
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 128v85.333h-85.333v170.667c0 94.293 76.373 170.667 170.667 170.667s170.667-76.373 170.667-170.667v-170.667h-85.333v-85.333h128c23.552 0 42.667 19.115 42.667 42.667v213.333c0 126.848-92.245 232.107-213.333 252.459v67.541c0 82.475 66.859 149.333 149.333 149.333 63.872 0 118.4-40.107 139.733-96.555-44.672-19.925-75.733-64.725-75.733-116.779 0-70.699 57.301-128 128-128s128 57.301 128 128c0 58.496-39.253 107.819-92.843 123.093-26.197 100.992-117.973 175.573-227.157 175.573-129.621 0-234.667-105.045-234.667-234.667v-67.541c-121.088-20.309-213.333-125.611-213.333-252.459v-213.333c0-23.552 19.115-42.667 42.667-42.667h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stethoscope-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1376,
+ "id": 973,
+ "name": "stethoscope-fill",
+ "prevSize": 32,
+ "code": 60973
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1325
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362.667 234.667c60.245 20.053 87.381 92.117 99.285 171.648l-192.981 111.403 42.667 73.899 158.293-91.349c1.963 57.771-0.597 110.208-0.597 139.733 0 128-42.667 256-213.333 256s-170.667 0-170.667-170.667c0-320 149.333-533.333 277.333-490.667zM938.709 725.333v18.603c-0.213 152.064-6.4 152.064-170.667 152.064-170.667 0-213.333-128-213.333-256 0-29.483-2.56-81.92-0.597-139.691l158.293 91.307 42.667-73.899-192.981-111.36c11.904-79.573 39.040-151.595 99.285-171.691 128-42.667 277.333 170.667 277.333 490.667zM554.667 85.333v384h-85.333v-384h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lungs-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1377,
+ "id": 972,
+ "name": "lungs-fill",
+ "prevSize": 32,
+ "code": 60974
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1326
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333v85.333h-42.667v138.368c0 49.408 10.709 98.176 31.403 143.019l182.699 395.776c14.805 32.128 0.768 70.144-31.317 84.907-8.405 3.925-17.536 5.931-26.795 5.931h-567.979c-35.328 0-64-28.672-64-64 0-9.259 2.005-18.432 5.888-26.837l182.699-395.776c20.693-44.8 31.403-93.611 31.403-143.019v-138.368h-42.667v-85.333h341.334zM554.667 170.667h-85.333v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flask-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1378,
+ "id": 971,
+ "name": "flask-fill",
+ "prevSize": 32,
+ "code": 60975
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1327
+ },
+ {
+ "icon": {
+ "paths": [
+ "M638.123 664.064c113.451 45.141 196.949 149.333 212.565 274.603h-677.376c15.616-125.269 99.115-229.461 212.565-274.603l126.122 189.269 126.123-189.269zM768 85.333v256c0 141.397-114.603 256-256 256s-256-114.603-256-256v-256h512zM682.667 341.333h-341.333c0 94.293 76.373 170.667 170.666 170.667s170.667-76.373 170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["nurse-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1379,
+ "id": 970,
+ "name": "nurse-fill",
+ "prevSize": 32,
+ "code": 60976
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1328
+ },
+ {
+ "icon": {
+ "paths": [
+ "M843.861 180.139c99.968 99.968 99.968 262.059 0 362.027l-301.696 301.696c-99.968 99.968-262.060 99.968-362.028 0s-99.968-262.059 0-362.027l301.655-301.696c100.011-99.968 262.101-99.968 362.069 0zM632.661 632.661l-241.324-241.323-150.869 150.827c-66.645 66.645-66.645 174.72 0 241.365s174.72 66.645 241.367 0l150.827-150.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["capsule-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1380,
+ "id": 969,
+ "name": "capsule-fill",
+ "prevSize": 32,
+ "code": 60977
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1329
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 468.48c66.645 66.603 66.645 174.677 0 241.323l-241.365 241.365c-16.64 16.64-43.691 16.64-60.331 0l-241.366-241.365c-66.645-66.645-66.645-174.72 0-241.365s174.72-66.645 241.366 0l30.123 30.165 30.208-30.165c66.645-66.645 174.72-66.645 241.365 0v0.043zM512 42.667c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667c-94.294 0-170.668-76.373-170.668-170.667s76.373-170.667 170.668-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["empathize-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1381,
+ "id": 968,
+ "name": "empathize-fill",
+ "prevSize": 32,
+ "code": 60978
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1330
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 597.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128v-128h85.333zM863.701 202.965c92.16 92.416 99.371 237.099 21.632 337.493-35.157-18.219-75.093-28.459-117.333-28.459-141.397 0-256 114.603-256 256 0 43.051 10.624 83.627 29.397 119.211l-29.44 29.483-361.728-362.325c-89.771-100.523-86.4-254.891 10.069-351.403 96.64-96.597 251.221-99.84 351.744-9.728 100.224-89.984 255.104-86.997 351.659 9.728z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1382,
+ "id": 967,
+ "name": "heart-add-fill",
+ "prevSize": 32,
+ "code": 60979
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1331
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333c173.568 0 316.843 129.536 338.517 297.173l96 150.997c6.315 9.941 5.035 24.747-9.6 31.061l-83.584 35.755v125.013c0 47.147-38.187 85.333-85.333 85.333h-85.291l-0.043 128h-384v-157.611c0-50.347-18.603-98.005-53.077-141.013-46.891-58.453-74.923-132.651-74.923-213.376 0-188.501 152.832-341.333 341.333-341.333zM446.72 331.221c-29.184-29.184-76.459-29.184-105.6 0-29.184 29.141-29.184 76.416 0 105.557l128.213 128.256 128.213-128.256c29.184-29.141 29.184-76.416 0-105.557-29.141-29.184-76.416-29.184-105.6 0l-22.613 22.613-22.613-22.613z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mental-health-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1383,
+ "id": 966,
+ "name": "mental-health-fill",
+ "prevSize": 32,
+ "code": 60980
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1332
+ },
+ {
+ "icon": {
+ "paths": [
+ "M924.928 340.48l-60.373 60.288-90.453-90.453-90.539 90.453 150.827 150.869-60.331 60.331-30.165-30.165-271.531 271.531h-241.364l-90.496 90.496-60.331-60.331 90.496-90.496v-241.365l271.529-271.531-30.164-30.165 60.329-60.331 150.869 150.827 90.453-90.496-90.453-90.496 60.331-60.373 241.365 241.408zM412.033 611.925l-120.704-120.661-60.331 60.331 120.704 120.661 60.331-60.331zM532.693 491.264l-120.66-120.661-60.331 60.373 120.66 120.661 60.331-60.373z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["syringe-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1384,
+ "id": 965,
+ "name": "syringe-fill",
+ "prevSize": 32,
+ "code": 60981
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1333
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 321.664l256 597.333 156.117-364.331h185.216v-85.333h-241.451l-99.883 233.003-256-597.333-156.117 364.331h-185.216v85.333h241.451l99.883-233.003z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pulse-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1385,
+ "id": 964,
+ "name": "pulse-fill",
+ "prevSize": 32,
+ "code": 60982
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1334
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333c173.568 0 316.843 129.536 338.517 297.173l96 150.997c6.315 9.941 5.035 24.747-9.6 31.061l-83.584 35.755v125.013c0 47.147-38.187 85.333-85.333 85.333h-85.291l-0.043 128h-384v-157.611c0-50.347-18.603-98.005-53.077-141.013-46.891-58.453-74.923-132.651-74.923-213.376 0-188.501 152.832-341.333 341.333-341.333zM469.333 298.667c-23.552 0-42.667 19.115-42.667 42.667v42.624l-42.667 0.043c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667l42.667-0.043v42.709c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-42.667h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-42.667v-42.667c0-23.552-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["psychotherapy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1386,
+ "id": 963,
+ "name": "psychotherapy-fill",
+ "prevSize": 32,
+ "code": 60983
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1335
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333v85.333h128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h128v-85.333h426.667zM554.667 469.333h-85.333v85.333h-85.333v85.333h85.291l0.043 85.333h85.333l-0.043-85.333h85.376v-85.333h-85.333v-85.333zM640 170.667h-256v85.333h256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dossier-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1387,
+ "id": 962,
+ "name": "dossier-fill",
+ "prevSize": 32,
+ "code": 60984
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1336
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.259 83.072l159.317 61.184-30.592 79.659-39.851-15.317-31.829 82.987c33.237 19.712 61.611 46.677 82.987 78.763l81.195-36.139-17.365-38.997 77.952-34.688 69.419 155.904-77.952 34.688-17.365-38.955-81.152 36.139c5.205 20.352 7.979 41.728 7.979 63.701 0 17.323-1.707 34.261-4.992 50.645l82.944 31.829 15.275-39.808 79.701 30.592-61.184 159.317-79.659-30.592 15.275-39.808-82.944-31.872c-19.712 33.237-46.677 61.611-78.763 82.987l36.139 81.195 38.997-17.365 34.688 77.952-155.904 69.419-34.688-77.952 38.955-17.365-36.139-81.152c-20.352 5.205-41.728 7.979-63.701 7.979-17.365 0-34.304-1.707-50.688-5.035l-31.829 82.987 39.851 15.275-30.592 79.701-159.316-61.184 30.592-79.659 39.765 15.275 31.915-82.944c-33.237-19.712-61.611-46.677-83.029-78.763l-81.195 36.139 17.365 38.997-77.952 34.688-69.419-155.904 77.952-34.688 17.323 38.997 81.195-36.181c-5.163-20.352-7.936-41.728-7.936-63.701 0-17.323 1.707-34.261 4.992-50.645l-82.987-31.829-15.232 39.808-79.701-30.592 61.184-159.275 79.659 30.592-15.317 39.808 82.987 31.872c19.712-33.28 46.677-61.653 78.763-83.072l-36.139-81.195-38.997 17.365-34.688-77.952 155.904-69.376 34.687 77.952-38.954 17.365 36.138 81.152c20.352-5.205 41.728-7.979 63.701-7.979 17.323 0 34.261 1.707 50.645 4.992l31.787-82.987-39.765-15.232 30.592-79.701zM432.384 564.565c-11.775 20.395-4.779 46.507 15.616 58.283s46.507 4.779 58.283-15.616c11.776-20.395 4.779-46.507-15.616-58.283s-46.507-4.779-58.283 15.616zM597.333 469.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM448 401.152c-20.395 11.776-27.391 37.888-15.616 58.283s37.888 27.392 58.283 15.616c20.395-11.776 27.392-37.888 15.616-58.283s-37.888-27.392-58.283-15.616z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["virus-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1388,
+ "id": 961,
+ "name": "virus-fill",
+ "prevSize": 32,
+ "code": 60985
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1337
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512.043 193.237c100.224-89.984 255.104-86.997 351.659 9.728 96.512 96.768 99.84 250.88 10.069 351.403l-361.813 362.325-361.728-362.325c-89.771-100.523-86.4-254.891 10.069-351.403 96.64-96.597 251.221-99.84 351.744-9.728z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1389,
+ "id": 960,
+ "name": "heart-fill",
+ "prevSize": 32,
+ "code": 60986
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1338
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 85.333v384h-128.043l0.043 42.667c0 94.293-76.373 170.667-170.667 170.667h-58.837l-26.155 132.736 38.869 56.363c13.397 19.413 8.533 45.995-10.88 59.349-7.125 4.907-15.573 7.552-24.235 7.552h-388.096l98.688-427.691-98.688-41.643 170.667-384h597.333zM682.624 469.333h-102.144l-25.216 128h42.069c47.147 0 85.333-38.187 85.333-85.333l-0.043-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["infrared-thermometer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1390,
+ "id": 959,
+ "name": "infrared-thermometer-fill",
+ "prevSize": 32,
+ "code": 60987
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1339
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c23.552 0 42.667 19.115 42.667 42.667v768c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-85.333h-85.333v-85.333h85.333v-85.333h-85.333v-85.333h85.333v-85.333h-85.333v-85.333h85.333v-85.333h-85.333v-85.333h85.333v-85.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM597.333 341.333h-85.333v128h-128v85.333h127.957l0.043 128h85.333l-0.043-128h128.043v-85.333h-128v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["health-book-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1391,
+ "id": 958,
+ "name": "health-book-fill",
+ "prevSize": 32,
+ "code": 60988
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1340
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333v85.333h-42.667v597.333c0 94.293-76.373 170.667-170.667 170.667s-170.667-76.373-170.667-170.667v-597.333h-42.667v-85.333h426.667zM554.667 640c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM469.333 512c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM597.333 170.667h-170.667v170.667h170.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["test-tube-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1392,
+ "id": 957,
+ "name": "test-tube-fill",
+ "prevSize": 32,
+ "code": 60989
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1341
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 128c129.621 0 234.667 106.667 234.667 256 0 298.667-320 469.333-426.667 533.333-84.395-50.645-302.251-167.979-389.632-362.667h200.448l39.851-66.389 128 213.333 88.149-146.944h146.517v-85.333h-194.816l-39.851 66.389-128-213.333-88.149 146.944h-180.224c-5.803-27.179-8.96-55.637-8.96-85.333 0-149.333 106.667-256 234.667-256 79.36 0 149.333 42.667 192 85.333 42.667-42.667 112.64-85.333 192-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-pulse-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1393,
+ "id": 956,
+ "name": "heart-pulse-fill",
+ "prevSize": 32,
+ "code": 60990
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1342
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333v85.333l-170.667-0.043v85.376h128v85.333c94.293 0 170.667 76.373 170.667 170.667v341.333c0 47.147-38.187 85.333-85.333 85.333h-512c-47.147 0-85.333-38.187-85.333-85.333v-341.333c0-94.293 76.373-170.667 170.667-170.667v-85.333h128v-85.376l-149.333 0.043c-26.88 0-58.453 20.907-93.867 68.267l-68.267-51.2c49.92-66.56 103.68-102.4 162.133-102.4h405.333zM554.667 512h-85.333v85.333h-85.333v85.333h85.29l0.043 85.333h85.333l-0.043-85.333h85.376v-85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hand-sanitizer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1394,
+ "id": 955,
+ "name": "hand-sanitizer-fill",
+ "prevSize": 32,
+ "code": 60991
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1343
+ },
+ {
+ "icon": {
+ "paths": [
+ "M563.029 96.768l138.667 240.213c11.776 20.352 4.779 46.464-15.616 58.24l-55.467 32 42.709 73.899-73.899 42.667-42.667-73.941-55.424 32.043c-20.395 11.776-46.507 4.779-58.283-15.616l-78.421-135.765c-87.552 26.539-151.296 107.947-151.296 204.16 0 26.667 4.907 52.224 13.824 75.776 33.109-20.992 72.192-33.109 114.176-33.109 71.851 0 135.424 35.541 174.080 89.984l328.021-189.397 42.667 73.899-336.128 194.091c3.072 14.421 4.693 29.44 4.693 44.757 0 14.635-1.451 28.885-4.267 42.667h345.6v85.333l-725.333 0.043c-26.795-35.669-42.667-80-42.667-128.043 0-42.965 12.715-82.987 34.56-116.48-22.059-41.6-34.56-89.088-34.56-139.52 0-127.787 80.256-236.843 193.152-279.467l-16.768-29.099c-23.552-40.832-9.6-93.013 31.232-116.565l110.848-64c40.832-23.552 93.013-9.6 116.565 31.232z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["microscope-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1395,
+ "id": 954,
+ "name": "microscope-fill",
+ "prevSize": 32,
+ "code": 60992
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1344
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 256v341.333h341.333c0 188.501-152.832 341.333-341.333 341.333s-341.333-152.832-341.333-341.333c0-184.96 152.747-341.333 341.333-341.333zM896 85.333v85.333l-227.285 256h227.285v85.333h-341.333v-85.333l227.243-256h-227.243v-85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rest-time-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1396,
+ "id": 953,
+ "name": "rest-time-fill",
+ "prevSize": 32,
+ "code": 60993
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1345
+ },
+ {
+ "icon": {
+ "paths": [
+ "M532.693 133.163l331.008 82.773c18.987 4.693 32.299 21.76 32.299 41.387v41.344h42.667c46.933 0 85.333 38.4 85.333 85.333v128c0 70.699-57.301 128-128 128h-17.963c-22.827 57.6-66.219 106.069-123.563 134.741l-204.331 102.187c-24.021 11.989-52.267 11.989-76.288 0l-204.373-102.187c-57.259-28.672-100.651-77.141-123.477-134.741h-18.005c-70.699 0-128-57.301-128-128v-128c0-47.147 38.187-85.333 85.333-85.333h42.667v-41.387c0-19.541 13.312-36.608 32.299-41.387l331.008-82.731c13.568-3.413 27.819-3.413 41.387 0zM128 384h-42.667v128c0 23.552 19.115 42.667 42.667 42.667v-170.667zM938.667 384h-42.667v170.667c23.552 0 42.667-19.115 42.667-42.667v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["surgical-mask-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1397,
+ "id": 952,
+ "name": "surgical-mask-fill",
+ "prevSize": 32,
+ "code": 60994
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1346
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 128c129.621 0 234.667 106.667 234.667 256 0 298.667-320 469.333-426.667 533.333-106.667-64-426.667-234.667-426.667-533.333 0-149.333 106.667-256 234.667-256 79.36 0 149.333 42.667 192 85.333 42.667-42.667 112.64-85.333 192-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1398,
+ "id": 951,
+ "name": "heart-3-fill",
+ "prevSize": 32,
+ "code": 60995
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1347
+ },
+ {
+ "icon": {
+ "paths": [
+ "M863.701 202.965c96.512 96.768 99.84 250.88 10.069 351.403l-361.813 362.325-361.728-362.325c-89.771-100.523-86.4-254.891 10.069-351.403 75.008-74.965 185.003-93.739 277.504-56.192l-167.168 167.168 60.331 60.373 181.034-181.035-0.555-0.597 0.597 0.555c100.224-89.984 255.104-86.997 351.659 9.728z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heart-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1399,
+ "id": 950,
+ "name": "heart-2-fill",
+ "prevSize": 32,
+ "code": 60996
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1348
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM384 512c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509h213.333v-298.667h-682.667v298.667h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["inbox-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1400,
+ "id": 949,
+ "name": "inbox-fill",
+ "prevSize": 32,
+ "code": 60997
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1349
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 192v192c235.648 0 426.667 191.019 426.667 426.667 0 11.648-0.427 23.168-1.365 34.56-62.421-118.357-184.747-200.149-326.613-205.013l-13.355-0.213h-85.333v192l-341.333-320 341.333-320zM341.333 192v116.779l-216.747 203.221 216.704 203.136 0.043 116.864-341.333-320 341.333-320z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reply-all-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1401,
+ "id": 948,
+ "name": "reply-all-fill",
+ "prevSize": 32,
+ "code": 60998
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1350
+ },
+ {
+ "icon": {
+ "paths": [
+ "M181.589 242.006l152.747 152.619c-9.078 15.7-14.003 33.455-14.31 51.588s4.015 36.045 12.556 52.045c8.541 15.996 21.021 29.551 36.259 39.386s32.732 15.62 50.828 16.811l6.997 0.213h170.667l3.84 0.341c4.919 0.892 9.37 3.482 12.574 7.317s4.958 8.678 4.958 13.675c0 5.001-1.754 9.839-4.958 13.675s-7.654 6.426-12.574 7.317l-3.84 0.341h-234.667v85.333h106.667v85.333h85.333v-85.333h42.667c5.163 0 10.24-0.384 15.232-1.067l7.381-1.323 162.048 162.133c-76.134 62.387-171.563 96.41-269.995 96.256-235.648 0-426.667-191.019-426.667-426.667 0-102.4 36.096-196.437 96.256-269.994zM512 85.334c235.648 0 426.667 191.019 426.667 426.666 0 102.4-36.096 196.437-96.256 269.995l-152.704-152.619c9.067-15.697 13.986-33.451 14.285-51.575 0.303-18.129-4.019-36.032-12.561-52.023-8.538-15.991-21.013-29.542-36.25-39.373-15.232-9.835-32.717-15.62-50.807-16.815l-7.040-0.256h-170.667l-3.84-0.341c-4.919-0.892-9.368-3.482-12.573-7.317s-4.96-8.674-4.96-13.675c0-4.996 1.755-9.839 4.96-13.675s7.654-6.426 12.573-7.317l3.84-0.341h234.667v-85.333h-106.667v-85.333h-85.333v85.333h-42.667c-5.163 0-10.24 0.384-15.189 1.067l-7.381 1.323-162.091-162.133c76.133-62.388 171.564-96.41 269.995-96.256v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-nc-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1402,
+ "id": 947,
+ "name": "creative-commons-nc-fill",
+ "prevSize": 32,
+ "code": 60999
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1351
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 599.211c-43.998-20.19-92.817-27.486-140.796-21.052-47.979 6.438-93.15 26.342-130.274 57.412-37.12 31.070-64.674 72.030-79.458 118.127-14.784 46.093-16.196 95.437-4.075 142.302h-456.064c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v428.544zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064zM832 928l-112.853 59.307 21.547-125.653-91.307-89.003 126.165-18.347 56.448-114.304 56.448 114.347 126.165 18.347-91.307 88.96 21.547 125.696-112.853-59.349z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-star-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1403,
+ "id": 946,
+ "name": "mail-star-fill",
+ "prevSize": 32,
+ "code": 61000
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1352
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 896v85.333h-85.333v-85.333h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333h853.333v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333zM341.333 426.667c-25.316 0-50.063 7.505-71.113 21.572-21.050 14.063-37.456 34.057-47.144 57.442-9.688 23.39-12.223 49.126-7.284 73.958 4.939 24.828 17.13 47.637 35.031 65.536 17.901 17.903 40.709 30.093 65.538 35.034 24.829 4.937 50.566 2.402 73.955-7.287 23.389-9.685 43.381-26.091 57.444-47.142 14.067-21.047 21.572-45.798 21.572-71.113h-128v-128zM554.667 426.667v85.333h256v-85.333h-256zM554.667 597.333v85.333h256v-85.333h-256zM85.333 128h853.333v85.333h-853.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1404,
+ "id": 945,
+ "name": "slideshow-fill",
+ "prevSize": 32,
+ "code": 61001
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1353
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 554.667v128h256v-128h298.667v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667h298.667zM469.333 469.333h85.333v128h-85.333v-128zM298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333h-298.667v-85.333h-256v85.333h-298.667v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1405,
+ "id": 944,
+ "name": "briefcase-4-fill",
+ "prevSize": 32,
+ "code": 61002
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1354
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM256 554.667v-256h-85.333v256h85.333zM341.333 298.667v256h128v-85.333h85.333v85.333h128v-256h-341.333zM768 554.667h85.333v-256h-85.333v256zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1406,
+ "id": 943,
+ "name": "briefcase-5-fill",
+ "prevSize": 32,
+ "code": 61003
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1355
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667zM512 725.333c117.76 0 213.333-95.573 213.333-213.333s-95.573-213.333-213.333-213.333c-77.653 0-145.621 41.515-182.955 103.595l73.173 43.861c22.4-37.248 63.147-62.123 109.781-62.123 70.741 0 128 57.259 128 128s-57.259 128-128 128c-46.635 0-87.467-24.917-109.824-62.165l-73.131 43.947c37.333 61.995 105.301 103.552 182.955 103.552z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copyleft-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1407,
+ "id": 942,
+ "name": "copyleft-fill",
+ "prevSize": 32,
+ "code": 61004
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1356
+ },
+ {
+ "icon": {
+ "paths": [
+ "M557.227 346.026l60.373 60.373c27.738 27.734 49.741 60.66 64.751 96.896 15.010 36.241 22.737 75.081 22.737 114.304s-7.727 78.063-22.737 114.3c-15.010 36.241-37.013 69.167-64.751 96.9l-15.104 15.061c-56.013 56.013-131.985 87.479-211.2 87.479s-155.186-31.467-211.2-87.479c-56.014-56.013-87.482-131.985-87.482-211.2s31.468-155.187 87.482-211.2l60.373 60.374c-19.952 19.776-35.801 43.302-46.638 69.222s-16.446 53.726-16.508 81.818c-0.061 28.096 5.427 55.923 16.149 81.89s26.469 49.562 46.334 69.427c19.866 19.866 43.459 35.61 69.426 46.336 25.967 10.722 53.797 16.209 81.891 16.149 28.094-0.064 55.898-5.675 81.818-16.508 25.92-10.837 49.446-26.688 69.222-46.639l15.104-15.104c39.996-40.004 62.46-94.259 62.46-150.827s-22.464-110.822-62.46-150.827l-60.373-60.374 60.373-60.331-0.043-0.043zM843.861 602.496l-60.331-60.331c19.951-19.78 35.802-43.302 46.639-69.222s16.444-53.726 16.508-81.82c0.060-28.094-5.427-55.923-16.149-81.89s-26.47-49.561-46.336-69.426c-19.866-19.866-43.456-35.611-69.423-46.334-25.971-10.723-53.798-16.211-81.894-16.149-28.092 0.061-55.898 5.671-81.818 16.508s-49.442 26.685-69.222 46.638l-15.104 15.104c-39.991 40.006-62.461 94.258-62.461 150.827s22.469 110.819 62.461 150.827l60.373 60.373-60.373 60.331-60.33-60.331c-27.737-27.733-49.739-60.659-64.751-96.9-15.011-36.237-22.737-75.076-22.737-114.3s7.726-78.064 22.737-114.302c15.011-36.238 37.014-69.164 64.751-96.898l15.104-15.061c56.012-56.014 131.985-87.482 211.2-87.482s155.187 31.468 211.2 87.482c56.013 56.014 87.484 131.985 87.484 211.2s-31.471 155.188-87.484 211.2l-0.043-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["links-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1408,
+ "id": 941,
+ "name": "links-fill",
+ "prevSize": 32,
+ "code": 61005
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1357
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 554.667h768v341.419c0 23.509-18.987 42.581-42.368 42.581h-683.264c-5.579-0.013-11.1-1.122-16.25-3.268s-9.824-5.286-13.76-9.242c-3.935-3.955-7.052-8.644-9.172-13.807-2.121-5.158-3.203-10.684-3.187-16.265v-341.419zM128 127.915c0-23.509 18.987-42.581 42.368-42.581h683.264c23.381 0 42.368 19.029 42.368 42.581v341.419h-768v-341.419zM384 213.333v85.333h256v-85.333h-256zM384 682.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["archive-drawer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1409,
+ "id": 940,
+ "name": "archive-drawer-fill",
+ "prevSize": 32,
+ "code": 61006
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1358
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 87.469v467.198h467.2c-21.376 215.595-203.307 384-424.533 384-235.648 0-426.667-191.019-426.667-426.667 0-221.225 168.405-403.155 384-424.531v0zM554.667 87.469c97.92 9.865 189.423 53.266 259.012 122.856s112.99 161.091 122.854 259.008h-381.867v-381.865z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pie-chart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1410,
+ "id": 939,
+ "name": "pie-chart-fill",
+ "prevSize": 32,
+ "code": 61007
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1359
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 725.333h426.667v213.333h-426.667v-213.333zM810.667 853.333v-213.333h-597.333v213.333h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333zM213.333 426.667v85.333h128v-85.333h-128zM298.667 85.333h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h-512v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["printer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1411,
+ "id": 938,
+ "name": "printer-fill",
+ "prevSize": 32,
+ "code": 61008
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1360
+ },
+ {
+ "icon": {
+ "paths": [
+ "M87.466 554.667h233.685c7.301 135.117 50.37 265.873 124.8 378.88-93.23-14.643-178.979-59.772-243.84-128.32-64.861-68.553-105.177-156.663-114.646-250.56v0zM87.466 469.333c9.469-93.897 49.785-182.009 114.646-250.56s150.61-113.676 243.84-128.32c-74.43 113.007-117.5 243.761-124.8 378.88h-233.685zM936.533 469.333h-233.685c-7.3-135.119-50.372-265.873-124.8-378.88 93.231 14.644 178.978 59.769 243.84 128.32s105.178 156.663 114.645 250.56v0zM936.533 554.667c-9.468 93.897-49.783 182.007-114.645 250.56-64.862 68.548-150.609 113.677-243.84 128.32 74.428-113.007 117.5-243.763 124.8-378.88h233.685zM406.613 554.667h210.774c-7.023 115.179-43.294 226.662-105.387 323.925-62.093-97.263-98.365-208.747-105.387-323.925v0zM406.613 469.333c7.023-115.178 43.294-226.664 105.387-323.925 62.093 97.261 98.364 208.747 105.387 323.925h-210.774z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["global-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1412,
+ "id": 937,
+ "name": "global-fill",
+ "prevSize": 32,
+ "code": 61009
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1361
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 618.667v384l-142.208-106.667h-113.792v-170.667h113.792l142.208-106.667zM896 128c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v449.237c-42.355-37.952-96.145-60.723-152.879-64.713s-113.182 11.029-160.435 42.679c-47.249 31.654-82.615 78.14-100.514 132.126-17.899 53.982-17.314 112.388 1.668 166.003h-398.421c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h767.914zM896 725.333c22.144-0.098 43.46 8.414 59.443 23.74s25.382 36.262 26.214 58.389c0.828 22.131-6.976 43.712-21.764 60.194s-35.405 26.569-57.493 28.13l-6.4 0.213v-170.667zM240.939 266.155l-55.211 65.024 329.386 279.68 323.456-279.893-55.808-64.555-268.203 232.021-273.621-232.277z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-volume-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1413,
+ "id": 936,
+ "name": "mail-volume-fill",
+ "prevSize": 32,
+ "code": 61010
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1362
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 569.216c-45.581-16.145-94.801-19.051-141.965-8.38-47.159 10.667-90.338 34.479-124.531 68.668-34.189 34.193-58.001 77.372-68.668 124.531-10.671 47.164-7.765 96.384 8.38 141.965h-483.883c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v398.549zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064zM896 768h128v85.333h-128v128h-85.333v-128h-128v-85.333h128v-128h85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1414,
+ "id": 935,
+ "name": "mail-add-fill",
+ "prevSize": 32,
+ "code": 61011
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1363
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 256v85.333h-170.667v426.667h-85.333v-426.667h-170.667v-85.333h426.667zM512 256h106.667l128 221.696 128-221.696h106.667v512h-85.333v-378.325l-149.333 258.688-149.333-258.603v378.24h-85.333v-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["trademark-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1415,
+ "id": 934,
+ "name": "trademark-fill",
+ "prevSize": 32,
+ "code": 61012
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1364
+ },
+ {
+ "icon": {
+ "paths": [
+ "M802.261 362.368c42.325 20.614 90.266 26.717 136.405 17.365v473.6c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h558.933c-2.816 13.781-4.267 28.075-4.267 42.667-0.073 50.69 17.984 99.736 50.901 138.283l-218.965 189.525-273.664-232.32-55.211 65.024 329.387 279.68 287.147-248.491zM896 298.667c-16.811 0-33.455-3.311-48.986-9.743-15.526-6.433-29.636-15.861-41.523-27.747s-21.316-25.996-27.746-41.526c-6.434-15.53-9.745-32.174-9.745-48.983s3.311-33.454 9.745-48.983c6.43-15.53 15.859-29.64 27.746-41.526s25.997-21.314 41.523-27.747c15.531-6.432 32.175-9.743 48.986-9.743 33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.51s-56.563 37.49-90.509 37.49z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-unread-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1416,
+ "id": 933,
+ "name": "mail-unread-fill",
+ "prevSize": 32,
+ "code": 61013
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1365
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 512h170.667v384h-170.667v-384zM725.333 341.333h170.667v554.667h-170.667v-554.667zM426.667 85.333h170.667v810.667h-170.667v-810.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1417,
+ "id": 932,
+ "name": "bar-chart-fill",
+ "prevSize": 32,
+ "code": 61014
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1366
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 554.667h256v-85.333h-256v-390.572c0-3.707 0.967-7.35 2.804-10.57s4.482-5.905 7.674-7.791c3.191-1.886 6.819-2.909 10.525-2.966s7.364 0.852 10.612 2.639l787.712 433.238c3.345 1.839 6.135 4.548 8.077 7.834s2.965 7.036 2.965 10.854c0 3.819-1.024 7.565-2.965 10.854-1.941 3.285-4.732 5.99-8.077 7.834l-787.712 433.237c-3.248 1.788-6.906 2.697-10.612 2.637-3.706-0.055-7.334-1.079-10.525-2.965s-5.836-4.57-7.674-7.791c-1.837-3.221-2.804-6.861-2.804-10.569v-390.571z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["send-plane-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1418,
+ "id": 931,
+ "name": "send-plane-2-fill",
+ "prevSize": 32,
+ "code": 61015
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1367
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 725.419c-0.017 58.351-19.964 114.944-56.533 160.41-36.57 45.47-87.569 77.086-144.555 89.617l-27.221-81.664c24.926-4.105 48.631-13.692 69.41-28.062 20.774-14.374 38.106-33.173 50.739-55.053h-105.173c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-170.667c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994h125.355c-10.411-82.479-50.564-158.324-112.922-213.304s-142.635-85.316-225.766-85.316c-83.132 0-163.41 30.336-225.768 85.316s-102.508 130.825-112.92 213.304h125.355c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339v170.667c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994h-128c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-213.333c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667v213.419z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["customer-service-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1419,
+ "id": 930,
+ "name": "customer-service-fill",
+ "prevSize": 32,
+ "code": 61016
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1368
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 298.668c90.526 0 177.348 35.962 241.361 99.974 64.009 64.014 99.972 150.832 99.972 241.358 0 90.53-35.964 177.348-99.972 241.361-64.013 64.013-150.835 99.972-241.361 99.972-90.527 0-177.347-35.959-241.359-99.972s-99.974-150.831-99.974-241.361c0-90.526 35.962-177.344 99.974-241.358 64.012-64.012 150.832-99.974 241.359-99.974v0zM512 448l-56.448 114.347-126.165 18.347 91.307 88.96-21.547 125.696 112.853-59.349 112.853 59.307-21.547-125.653 91.307-89.003-126.165-18.347-56.448-114.304zM554.667 85.292l213.333 0.043v128l-58.155 48.555c-48.26-25.319-100.945-41.095-155.179-46.464v-130.133zM469.333 85.292v130.133c-54.214 5.361-106.888 21.123-155.136 46.421l-58.197-48.512v-128l213.333-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medal-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1420,
+ "id": 929,
+ "name": "medal-fill",
+ "prevSize": 32,
+ "code": 61017
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1369
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM853.333 426.667h-682.667v384h682.667v-384zM640 256v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["window-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1421,
+ "id": 928,
+ "name": "window-2-fill",
+ "prevSize": 32,
+ "code": 61018
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1370
+ },
+ {
+ "icon": {
+ "paths": [
+ "M856.875 447.996l51.285 30.763c3.162 1.894 5.781 4.578 7.599 7.787 1.822 3.209 2.778 6.831 2.778 10.517 0 3.691-0.956 7.313-2.778 10.522-1.818 3.209-4.437 5.892-7.599 7.782l-396.16 237.696-396.161-237.696c-3.164-1.89-5.783-4.574-7.601-7.782s-2.774-6.831-2.774-10.522c0-3.686 0.956-7.309 2.774-10.517s4.437-5.892 7.601-7.787l51.285-30.763 344.876 206.933 344.875-206.933zM856.875 648.529l51.285 30.763c3.162 1.894 5.781 4.578 7.599 7.787 1.822 3.209 2.778 6.831 2.778 10.517 0 3.691-0.956 7.313-2.778 10.522-1.818 3.209-4.437 5.892-7.599 7.782l-374.187 224.512c-6.639 3.989-14.234 6.097-21.973 6.097-7.744 0-15.339-2.108-21.973-6.097l-374.188-224.512c-3.164-1.89-5.783-4.574-7.601-7.782s-2.774-6.831-2.774-10.522c0-3.686 0.956-7.309 2.774-10.517s4.437-5.892 7.601-7.787l51.285-30.763 344.876 206.933 344.875-206.933zM533.931 55.849l374.229 224.512c3.162 1.894 5.781 4.576 7.599 7.784 1.822 3.208 2.778 6.833 2.778 10.52s-0.956 7.312-2.778 10.52c-1.818 3.208-4.437 5.89-7.599 7.784l-396.16 237.694-396.161-237.694c-3.164-1.894-5.783-4.576-7.601-7.784s-2.774-6.833-2.774-10.52c0-3.688 0.956-7.312 2.774-10.52s4.437-5.89 7.601-7.784l374.188-224.512c6.635-3.987 14.229-6.093 21.973-6.093 7.74 0 15.334 2.106 21.973 6.093h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stack-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1422,
+ "id": 927,
+ "name": "stack-fill",
+ "prevSize": 32,
+ "code": 61019
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1371
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v816.768c0.004 3.814-1.011 7.561-2.948 10.85-1.937 3.285-4.715 5.995-8.055 7.842-3.337 1.847-7.108 2.765-10.923 2.658-3.81-0.102-7.526-1.229-10.756-3.26l-308.651-193.579-308.651 193.536c-3.227 2.027-6.938 3.153-10.748 3.26s-7.578-0.806-10.914-2.65c-3.337-1.843-6.118-4.544-8.056-7.825s-2.961-7.023-2.964-10.833v-816.768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bookmark-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1423,
+ "id": 926,
+ "name": "bookmark-fill",
+ "prevSize": 32,
+ "code": 61020
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1372
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 810.667v85.333h-85.333v-85.333h-682.667v85.333h-85.333v-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h418.56c25.852-27.014 56.913-48.504 91.311-63.171 34.394-14.667 71.403-22.207 108.796-22.162 78.635 0 149.632 32.725 200.107 85.333h34.56c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM704 597.333c25.212 0 50.18-4.966 73.476-14.613 23.292-9.651 44.459-23.795 62.289-41.621 17.826-17.83 31.97-38.997 41.621-62.289 9.647-23.296 14.613-48.26 14.613-73.476 0-25.213-4.966-50.181-14.613-73.475-9.651-23.295-23.795-44.46-41.621-62.289-17.83-17.829-38.997-31.971-62.289-41.62-23.296-9.649-48.265-14.615-73.476-14.615-50.923 0-99.759 20.229-135.765 56.236s-56.235 84.843-56.235 135.764c0 50.923 20.228 99.759 56.235 135.765s84.843 56.235 135.765 56.235v0zM704 512c-28.288 0-55.42-11.238-75.426-31.241-20.002-20.006-31.241-47.138-31.241-75.426 0-28.29 11.238-55.421 31.241-75.424 20.006-20.004 47.138-31.242 75.426-31.242s55.42 11.238 75.426 31.242c20.002 20.004 31.241 47.135 31.241 75.424 0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241v0zM170.667 554.667v85.333h85.333v-85.333h-85.333zM341.333 554.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["projector-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1424,
+ "id": 925,
+ "name": "projector-2-fill",
+ "prevSize": 32,
+ "code": 61021
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1373
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 650.453v293.205c0 3.772-0.998 7.479-2.901 10.743-1.899 3.26-4.629 5.961-7.915 7.821-3.281 1.86-7.002 2.816-10.778 2.769-3.772-0.043-7.467-1.092-10.705-3.029l-181.035-108.629-181.035 108.629c-3.241 1.941-6.939 2.987-10.717 3.029-3.778 0.047-7.5-0.913-10.785-2.782-3.285-1.865-6.016-4.57-7.913-7.838s-2.892-6.98-2.884-10.756v-293.12c-55.204-44.198-95.318-104.452-114.796-172.437-19.479-67.982-17.361-140.337 6.060-207.063s66.99-124.532 124.684-165.427c57.695-40.895 126.665-62.86 197.385-62.86s139.691 21.965 197.385 62.86c57.694 40.895 101.265 98.7 124.685 165.427s25.54 139.081 6.059 207.063c-19.477 67.985-59.588 128.239-114.795 172.437v-0.043zM512 640c67.895 0 133.009-26.974 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.019 0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.972-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019 0 67.897 26.971 133.010 74.981 181.019s113.124 74.982 181.019 74.982v0zM512 554.667c-45.265 0-88.673-17.984-120.68-49.988s-49.987-75.418-49.987-120.68c0-45.263 17.981-88.673 49.987-120.679s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.679 0 45.262-17.98 88.675-49.988 120.68-32.004 32.004-75.413 49.988-120.678 49.988z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["award-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1425,
+ "id": 924,
+ "name": "award-fill",
+ "prevSize": 32,
+ "code": 61022
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1374
+ },
+ {
+ "icon": {
+ "paths": [
+ "M651.349 492.971l187.221-162.048-55.808-64.512-268.16 232.064-273.664-232.32-55.211 65.024 328.619 279.040c-29.508 47.33-45.107 102.007-45.013 157.781 0 45.824 10.325 89.173 28.757 128h-370.091c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v352.213c-50.044-34.944-109.632-53.641-170.667-53.547-41.387 0-80.811 8.405-116.651 23.637zM712.789 883.541c23.893 11.43 50.739 15.168 76.847 10.701 26.103-4.471 50.18-16.926 68.907-35.657 18.731-18.726 31.185-42.803 35.657-68.907 4.467-26.108 0.73-52.954-10.701-76.847l-170.709 170.709zM652.459 823.168l170.709-170.667c-23.893-11.43-50.739-15.168-76.847-10.701-26.103 4.471-50.18 16.926-68.907 35.657-18.731 18.726-31.185 42.803-35.657 68.907-4.467 26.108-0.73 52.954 10.701 76.847v-0.043zM768 981.333c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-forbid-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1426,
+ "id": 923,
+ "name": "mail-forbid-fill",
+ "prevSize": 32,
+ "code": 61023
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1375
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM384 341.333c-94.208 0-170.667 76.459-170.667 170.667 0.021 32.947 9.577 65.186 27.514 92.826 17.937 27.635 43.488 49.493 73.571 62.929 30.083 13.44 63.412 17.886 95.966 12.8 32.556-5.086 62.938-19.482 87.493-41.451l6.784-6.443-60.331-60.331c-11.716 11.716-26.589 19.772-42.804 23.177s-33.073 2.018-48.512-3.998c-15.44-6.012-28.794-16.393-38.435-29.867-9.64-13.478-15.147-29.47-15.85-46.025s3.429-32.956 11.891-47.202c8.463-14.246 20.889-25.719 35.763-33.020 14.874-7.305 31.552-10.116 47.999-8.098s31.949 8.781 44.616 19.465l5.376 4.949 60.331-60.331c-15.829-15.884-34.641-28.483-55.356-37.073s-42.924-12.998-65.348-12.975v0zM682.667 341.333c-94.208 0-170.667 76.459-170.667 170.667 0.021 32.947 9.579 65.186 27.511 92.826 17.937 27.635 43.49 49.493 73.574 62.929 30.084 13.44 63.411 17.886 95.966 12.8 32.55-5.086 62.938-19.482 87.492-41.451l6.784-6.443-60.331-60.331c-11.716 11.716-26.59 19.772-42.803 23.177-16.218 3.405-33.075 2.018-48.512-3.998-15.441-6.012-28.796-16.393-38.434-29.867-9.643-13.478-15.151-29.47-15.851-46.025-0.704-16.555 3.426-32.956 11.891-47.202 8.461-14.246 20.885-25.719 35.763-33.020 14.874-7.305 31.552-10.116 47.996-8.098 16.448 2.018 31.949 8.781 44.617 19.465l5.376 4.949 60.331-60.331c-15.829-15.884-34.641-28.483-55.356-37.073s-42.923-12.998-65.348-12.975v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1427,
+ "id": 922,
+ "name": "creative-commons-fill",
+ "prevSize": 32,
+ "code": 61024
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1376
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 256c-89.813 0-166.656 66.56-198.101 160.853l-3.115 9.813h-54.784l106.667 128 106.667-128h-68.224c22.144-50.987 63.531-85.333 110.891-85.333 70.699 0 128 76.373 128 170.667s-57.301 170.667-128 170.667c-44.715 0-84.096-30.592-107.008-76.928l-3.84-8.405h-90.325c29.227 99.413 108.288 170.667 201.173 170.667 117.803 0 213.333-114.603 213.333-256s-95.531-256-213.333-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-sa-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1428,
+ "id": 921,
+ "name": "creative-commons-sa-fill",
+ "prevSize": 32,
+ "code": 61025
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1377
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM298.667 554.667v170.667h85.333v-170.667h-85.333zM469.333 298.667v426.667h85.333v-426.667h-85.333zM640 426.667v298.667h85.333v-298.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1429,
+ "id": 920,
+ "name": "bar-chart-box-fill",
+ "prevSize": 32,
+ "code": 61026
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1378
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128v170.667h-384v-170.667h384zM682.667 725.333v170.667h-554.667v-170.667h554.667zM938.667 426.667v170.667h-810.667v-170.667h810.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-horizontal-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1430,
+ "id": 919,
+ "name": "bar-chart-horizontal-fill",
+ "prevSize": 32,
+ "code": 61027
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1379
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM853.333 426.667h-682.667v384h682.667v-384zM213.333 256v85.333h85.333v-85.333h-85.333zM384 256v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["window-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1431,
+ "id": 918,
+ "name": "window-fill",
+ "prevSize": 32,
+ "code": 61028
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1380
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM853.333 512c-0.013-75.204-24.862-148.299-70.686-207.929s-110.063-102.457-182.729-121.828c-72.666-19.371-149.696-14.201-219.122 14.706s-127.363 79.934-164.809 145.153c-37.446 65.219-52.305 140.979-42.268 215.509s44.406 143.663 97.77 196.655c53.364 52.988 122.734 86.874 197.335 96.384 74.598 9.515 150.251-5.879 215.206-43.78l-43.008-73.685c-48.713 28.425-105.455 39.97-161.404 32.836-55.947-7.134-107.974-32.546-147.997-72.286s-65.802-91.584-73.332-147.482c-7.53-55.898 3.611-112.717 31.692-161.631s71.529-87.186 123.596-108.87c52.068-21.684 109.839-25.566 164.337-11.043 54.502 14.522 102.677 46.637 137.054 91.355 34.372 44.718 53.013 99.536 53.030 155.937v42.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667h-57.771c-24.755-21.834-55.309-36.022-87.962-40.845s-66.001-0.074-96.009 13.672c-30.010 13.746-55.389 35.899-73.063 63.775s-26.886 60.281-26.519 93.284c0.367 33.007 10.296 65.195 28.586 92.672s44.154 49.058 74.461 62.135c30.306 13.077 63.753 17.084 96.29 11.537s62.771-20.412 87.031-42.79c16.951 19.989 39.633 34.291 64.973 40.977 25.344 6.686 52.13 5.427 76.736-3.597 24.606-9.028 45.845-25.391 60.851-46.878 15.010-21.491 23.057-47.066 23.061-73.276v-42.667zM512 426.667c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["at-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1432, "id": 917, "name": "at-fill", "prevSize": 32, "code": 61029 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1381
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 234.667v-64.299c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-42.965h768v-499.2l-341.333 307.2-426.667-384zM0 426.667h213.333v85.333h-213.333v-85.333zM0 640h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-send-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1433,
+ "id": 916,
+ "name": "mail-send-fill",
+ "prevSize": 32,
+ "code": 61030
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1382
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM256 640v85.333h512v-85.333h-512zM256 298.667v256h256v-256h-256zM597.333 298.667v85.333h170.667v-85.333h-170.667zM597.333 469.333v85.333h170.667v-85.333h-170.667zM341.333 384h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["profile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1434,
+ "id": 915,
+ "name": "profile-fill",
+ "prevSize": 32,
+ "code": 61031
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1383
+ },
+ {
+ "icon": {
+ "paths": [
+ "M149.973 89.6l814.592 814.592-60.373 60.373-85.931-85.973c-29.623 11.537-61.137 17.442-92.928 17.408h-426.667c-60.449 0.038-118.961-21.316-165.176-60.279-46.215-38.967-77.15-93.026-87.329-152.614-10.179-59.584 1.056-120.849 31.715-172.945 30.659-52.1 78.764-91.665 135.798-111.697-1.826-37.071 3.282-74.157 15.061-109.355l-139.136-139.179 60.373-60.331zM725.333 384c44.881 0.027 88.969 11.848 127.842 34.278 38.878 22.43 71.177 54.682 93.662 93.525 22.49 38.839 34.372 82.91 34.466 127.791s-11.61 89.003-33.933 127.936l-349.611-349.568c37.547-21.589 81.067-33.963 127.573-33.963zM512 85.334c65.805 0.006 129.766 21.734 181.961 61.813 52.19 40.079 89.69 96.266 106.679 159.84-45.163-10.138-91.908-11.017-137.421-2.584-45.508 8.433-88.841 26.004-127.369 51.651l-207.573-207.573c52.445-41.023 117.141-63.258 183.723-63.147v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloud-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1435,
+ "id": 914,
+ "name": "cloud-off-fill",
+ "prevSize": 32,
+ "code": 61032
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1384
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 569.216c-45.581-16.145-94.801-19.051-141.965-8.38-47.159 10.667-90.338 34.479-124.531 68.668-34.189 34.193-58.001 77.372-68.668 124.531-10.671 47.164-7.765 96.384 8.38 141.965h-483.883c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v398.549zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064zM810.667 938.667l-150.869-150.869 60.373-60.331 90.496 90.539 150.869-150.869 60.331 60.331-211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-check-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1436,
+ "id": 913,
+ "name": "mail-check-fill",
+ "prevSize": 32,
+ "code": 61033
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1385
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM401.024 341.333h-85.333l-136.533 341.333h91.904l17.067-42.667h140.373l17.067 42.667h91.947l-136.491-341.333zM810.667 341.333h-85.333v85.333h-42.667c-33.318-0.032-65.335 12.928-89.25 36.13-23.915 23.198-37.841 54.81-38.818 88.115-0.977 33.301 11.068 65.677 33.583 90.24 22.511 24.563 53.713 39.377 86.976 41.301l7.509 0.213h128v-341.333zM725.333 512v85.333h-42.667l-4.992-0.299c-10.368-1.233-19.93-6.229-26.863-14.037s-10.765-17.886-10.765-28.331c0-10.445 3.831-20.523 10.765-28.331s16.495-12.804 26.863-14.037l4.992-0.299h42.667zM358.357 464.427l36.053 90.24h-72.192l36.139-90.24z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["advertisement-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1437,
+ "id": 912,
+ "name": "advertisement-fill",
+ "prevSize": 32,
+ "code": 61034
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1386
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM682.667 554.667h-341.333v85.333h341.333v-85.333zM682.667 384h-341.333v85.333h341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-nd-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1438,
+ "id": 911,
+ "name": "creative-commons-nd-fill",
+ "prevSize": 32,
+ "code": 61035
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1387
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM725.333 298.667v213.333h128v-213.333h-128zM640 298.667h-256v213.333h256v-213.333zM298.667 298.667h-128v213.333h128v-213.333zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1439,
+ "id": 910,
+ "name": "briefcase-3-fill",
+ "prevSize": 32,
+ "code": 61036
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1388
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM725.333 554.667v-128h-85.333v128h-256v-128h-85.333v128h-128v256h682.667v-256h-128zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1440,
+ "id": 909,
+ "name": "briefcase-2-fill",
+ "prevSize": 32,
+ "code": 61037
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1389
+ },
+ {
+ "icon": {
+ "paths": [
+ "M450.816 725.333c-15.885 29.504-24.182 62.494-24.149 96 0 43.648 13.824 84.181 37.419 117.333h-165.419v-213.333h152.149zM746.667 554.667c39.607 0 77.589 15.731 105.596 43.738s43.738 65.988 43.738 105.596l-0.043 4.395c26.692 7.522 49.856 24.252 65.387 47.228s22.421 50.705 19.452 78.281c-2.97 27.571-15.612 53.197-35.682 72.337-20.066 19.14-46.263 30.554-73.946 32.213l-7.168 0.213-241.835-0.213c-27.678-1.677-53.862-13.103-73.92-32.247-20.053-19.145-32.683-44.774-35.639-72.341-2.961-27.571 3.934-55.296 19.469-78.263s38.699-39.689 65.387-47.206l-0.128-4.395c0-39.607 15.731-77.589 43.738-105.596s65.988-43.738 105.596-43.738v0zM896 341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17l0.043 185.429c-21.572-30.929-50.3-56.183-83.738-73.613-33.442-17.429-70.596-26.513-108.305-26.483l-9.429 0.171c-49.434 1.997-96.977 19.554-135.838 50.172s-67.059 72.73-80.567 120.324h-307.499v213.333h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM341.333 426.667h-128v85.333h128v-85.333zM725.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h-512v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["printer-cloud-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1441,
+ "id": 908,
+ "name": "printer-cloud-fill",
+ "prevSize": 32,
+ "code": 61038
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1390
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 682.667c70.699 0 128 57.301 128 128s-57.301 128-128 128c-70.699 0-128-57.301-128-128s57.301-128 128-128zM256 512c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667zM618.667 85.333c129.621 0 234.667 105.045 234.667 234.667s-105.045 234.667-234.667 234.667c-129.621 0-234.667-105.045-234.667-234.667s105.045-234.667 234.667-234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bubble-chart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1442,
+ "id": 907,
+ "name": "bubble-chart-fill",
+ "prevSize": 32,
+ "code": 61039
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1391
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 42.667v85.333h256v-85.333h85.333v85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333zM853.333 341.333h-682.667v469.333h682.667v-469.333zM641.536 432.469l60.331 60.331-211.2 211.2-150.869-150.869 60.416-60.331 90.496 90.539 150.827-150.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-check-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1443,
+ "id": 906,
+ "name": "calendar-check-fill",
+ "prevSize": 32,
+ "code": 61040
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1392
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667l85.333 170.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.496l85.333-170.837zM554.667 597.333v-170.667h-85.333v170.667h-128l170.667 170.667 170.667-170.667h-128zM843.264 298.667l-42.667-85.333h-577.152l-42.667 85.333h662.485z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["inbox-archive-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1444,
+ "id": 905,
+ "name": "inbox-archive-fill",
+ "prevSize": 32,
+ "code": 61041
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1393
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 853.333l-426.667-341.333 426.667-341.333v213.333c235.648 0 426.667 191.019 426.667 426.667 0 11.648-0.427 23.168-1.365 34.56-64.341-122.027-192.427-205.227-339.968-205.227h-85.333v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reply-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1445,
+ "id": 904,
+ "name": "reply-fill",
+ "prevSize": 32,
+ "code": 61042
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1394
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v816.768c0.004 3.814-1.011 7.561-2.948 10.85-1.937 3.285-4.715 5.995-8.055 7.842-3.337 1.847-7.108 2.765-10.923 2.658-3.81-0.102-7.526-1.229-10.756-3.26l-308.651-193.579-308.651 193.536c-3.227 2.027-6.938 3.153-10.748 3.26s-7.578-0.806-10.914-2.65c-3.337-1.843-6.118-4.544-8.056-7.825s-2.961-7.023-2.964-10.833v-816.768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM341.333 384v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bookmark-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1446,
+ "id": 903,
+ "name": "bookmark-2-fill",
+ "prevSize": 32,
+ "code": 61043
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1395
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v822.443c0.004 3.558-0.883 7.066-2.581 10.193s-4.151 5.786-7.138 7.723c-2.982 1.937-6.409 3.098-9.958 3.375-3.546 0.277-7.108-0.341-10.359-1.792l-353.963-157.995-353.963 157.952c-3.247 1.451-6.805 2.069-10.351 1.792-3.546-0.273-6.967-1.429-9.951-3.362s-5.439-4.582-7.139-7.706c-1.7-3.123-2.593-6.626-2.596-10.18v-822.443c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM512 576l125.397 65.92-23.936-139.605 101.419-98.901-140.203-20.395-62.677-127.019-62.72 127.019-140.16 20.395 101.419 98.901-23.893 139.605 125.355-65.92z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bookmark-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1447,
+ "id": 902,
+ "name": "bookmark-3-fill",
+ "prevSize": 32,
+ "code": 61044
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1396
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 554.667h256v341.333h-256v-341.333zM384 128h256v768h-256v-768zM682.667 341.333h256v554.667h-256v-554.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1448,
+ "id": 901,
+ "name": "bar-chart-2-fill",
+ "prevSize": 32,
+ "code": 61045
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1397
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 256c-117.803 0-213.333 114.603-213.333 256s95.531 256 213.333 256c117.803 0 213.333-114.603 213.333-256s-95.531-256-213.333-256zM611.2 404.139c18.005 29.44 28.8 66.987 28.8 107.861 0 94.293-57.301 170.667-128 170.667-16.128 0-31.573-3.968-45.781-11.221l-6.997-3.925 151.979-263.381zM512 341.333c16.128 0 31.573 3.968 45.781 11.221l6.997 3.925-151.979 263.381c-18.005-29.44-28.8-66.987-28.8-107.861 0-94.293 57.301-170.667 128-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-zero-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1449,
+ "id": 900,
+ "name": "creative-commons-zero-fill",
+ "prevSize": 32,
+ "code": 61046
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1398
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 298.667c-117.76 0-213.333 95.573-213.333 213.333s95.573 213.333 213.333 213.333c77.653 0 145.621-41.515 182.955-103.595l-73.173-43.861c-11.516 19.183-27.857 35.012-47.398 45.914-19.541 10.897-41.6 16.482-63.974 16.201-22.37-0.286-44.279-6.43-63.539-17.822-19.255-11.388-35.192-27.631-46.217-47.1s-16.753-41.489-16.614-63.863c0.139-22.374 6.14-44.322 17.406-63.654s27.403-35.373 46.799-46.524c19.401-11.151 41.382-17.022 63.757-17.028 46.635 0 87.467 24.917 109.824 62.165l73.131-43.947c-18.957-31.592-45.769-57.735-77.833-75.882s-68.279-27.68-105.122-27.67v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copyright-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1450,
+ "id": 899,
+ "name": "copyright-fill",
+ "prevSize": 32,
+ "code": 61047
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1399
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 362.667l90.283 217.088 234.325 18.773-178.517 152.917 54.528 228.693-200.619-122.539-200.617 122.539 54.528-228.693-178.517-152.917 234.325-18.773 90.281-217.088zM341.335 85.333v384h-85.333v-384h85.333zM768 85.333v384h-85.333v-384h85.333zM554.667 85.333v213.333h-85.333v-213.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medal-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1451,
+ "id": 898,
+ "name": "medal-2-fill",
+ "prevSize": 32,
+ "code": 61048
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1400
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 569.216c-45.581-16.145-94.801-19.051-141.965-8.38-47.159 10.667-90.338 34.479-124.531 68.668-34.189 34.193-58.001 77.372-68.668 124.531-10.671 47.164-7.765 96.384 8.38 141.965h-483.883c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v398.549zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064zM913.707 810.667l90.539 90.496-60.373 60.373-90.539-90.539-90.496 90.539-60.373-60.373 90.539-90.496-90.539-90.496 60.373-60.373 90.496 90.539 90.496-90.539 60.373 60.373-90.496 90.496z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-close-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1452,
+ "id": 897,
+ "name": "mail-close-fill",
+ "prevSize": 32,
+ "code": 61049
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1401
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 170.667v628.096c0.004 4.139-1.195 8.192-3.452 11.661s-5.474 6.208-9.263 7.881l-371.285 164.309-371.285-164.267c-3.8-1.677-7.028-4.429-9.286-7.915s-3.45-7.556-3.428-11.712v-628.053h-85.333v-85.333h938.667v85.333h-85.333zM341.333 512v85.333h341.333v-85.333h-341.333zM341.333 341.333v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["honour-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1453,
+ "id": 896,
+ "name": "honour-fill",
+ "prevSize": 32,
+ "code": 61050
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1402
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 546.261c-48.806-28.203-105.562-39.509-161.451-32.162s-107.793 32.934-147.652 72.798c-39.863 39.859-65.451 91.763-72.798 147.652s3.959 112.644 32.162 161.451h-460.928c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v375.595zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064zM853.333 768h128l-170.667 170.667-170.667-170.667h128v-170.667h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-download-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1454,
+ "id": 895,
+ "name": "mail-download-fill",
+ "prevSize": 32,
+ "code": 61051
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1403
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 341.334c22.63 0 44.335 8.991 60.339 24.994s24.994 37.708 24.994 60.339v170.667c0 22.635-8.99 44.339-24.994 60.339-16.004 16.004-37.709 24.994-60.339 24.994h-45.312c-10.402 82.487-50.547 158.345-112.909 213.333-62.357 54.989-142.639 85.333-225.779 85.333v-85.333c67.895 0 133.009-26.97 181.018-74.978 48.013-48.013 74.982-113.126 74.982-181.022v-255.999c0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019v298.666h-128c-22.632 0-44.337-8.99-60.34-24.994-16.003-16-24.994-37.705-24.994-60.339v-170.667c0-22.631 8.99-44.336 24.994-60.339s37.708-24.994 60.34-24.994h45.312c10.412-82.479 50.563-158.324 112.92-213.304s142.636-85.316 225.768-85.316c83.132 0 163.409 30.336 225.766 85.316s102.511 130.825 112.922 213.304h45.312zM331.093 673.493l45.227-72.363c40.665 25.476 87.697 38.946 135.68 38.869 47.983 0.077 95.014-13.393 135.68-38.869l45.227 72.363c-54.217 33.971-116.928 51.938-180.907 51.84-63.979 0.098-126.688-17.869-180.907-51.84z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["customer-service-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1455,
+ "id": 894,
+ "name": "customer-service-2-fill",
+ "prevSize": 32,
+ "code": 61052
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1404
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 298.667c-69.491-0.006-137.331 21.191-194.458 60.759s-100.817 95.623-125.244 160.681l79.957 29.995c21.12-56.090 61.244-102.993 113.382-132.547 52.143-29.553 112.998-39.882 171.968-29.188 58.974 10.694 112.329 41.736 150.771 87.713 38.443 45.982 59.541 103.987 59.622 163.921 0 67.895-26.97 133.009-74.982 181.018-48.009 48.013-113.122 74.982-181.018 74.982h-426.667c-60.449 0.038-118.961-21.316-165.176-60.279-46.215-38.967-77.15-93.026-87.329-152.614-10.179-59.584 1.056-120.849 31.715-172.945 30.659-52.1 78.764-91.666 135.798-111.697-3.655-73.702 20.105-146.147 66.697-203.37s112.72-95.171 185.634-106.529c72.913-11.358 147.447 4.679 209.237 45.018s106.462 102.125 125.397 173.446c-24.717-5.564-49.971-8.369-75.307-8.363v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloud-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1456,
+ "id": 893,
+ "name": "cloud-fill",
+ "prevSize": 32,
+ "code": 61053
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1405
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 128v682.667h682.667v85.333h-768v-768h85.333zM850.773 253.44l90.453 90.453-258.56 258.645-128-128-168.107 168.107-90.453-90.539 258.56-258.56 128 128 168.107-168.107z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["line-chart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1457,
+ "id": 892,
+ "name": "line-chart-fill",
+ "prevSize": 32,
+ "code": 61054
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1406
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v85.333h170.667v85.333h-426.667v-85.333h170.667v-85.333h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333zM426.667 320v256l213.333-128-213.333-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1458,
+ "id": 891,
+ "name": "slideshow-3-fill",
+ "prevSize": 32,
+ "code": 61055
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1407
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 725.333v128h213.333v85.333h-512v-85.333h213.333v-128h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512h-42.667v-85.333h853.333v85.333h-42.667v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667zM426.667 256v298.667l213.333-149.333-213.333-149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1459,
+ "id": 890,
+ "name": "slideshow-2-fill",
+ "prevSize": 32,
+ "code": 61056
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1408
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM597.333 426.667h-170.667c-10.45 0-20.537 3.84-28.346 10.782-7.81 6.946-12.799 16.512-14.022 26.893l-0.299 4.992v170.667h64v170.667h128v-170.667h64v-170.667c0-10.449-3.84-20.535-10.782-28.348-6.946-7.808-16.512-12.796-26.893-14.020l-4.992-0.299zM512 213.333c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["creative-commons-by-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1460,
+ "id": 889,
+ "name": "creative-commons-by-fill",
+ "prevSize": 32,
+ "code": 61057
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1409
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128l85.333 170.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.496l85.333-170.837h682.667zM512 426.667l-170.667 170.667h128v170.667h85.333v-170.667h128l-170.667-170.667zM800.597 213.333h-577.195l-42.624 85.333h662.485l-42.667-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["inbox-unarchive-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1461,
+ "id": 888,
+ "name": "inbox-unarchive-fill",
+ "prevSize": 32,
+ "code": 61058
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1410
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM170.667 384v426.667h682.667v-426.667h-682.667zM256 469.333h85.333v85.333h-85.333v-85.333zM469.333 469.333h85.333v85.333h-85.333v-85.333zM682.667 469.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1462,
+ "id": 887,
+ "name": "calendar-2-fill",
+ "prevSize": 32,
+ "code": 61059
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1411
+ },
+ {
+ "icon": {
+ "paths": [
+ "M474.112 512c9.724 42.377 33.536 80.205 67.541 107.294 34.010 27.089 76.203 41.839 119.68 41.839s85.67-14.75 119.68-41.839c34.005-27.089 57.818-64.917 67.541-107.294h90.112v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h388.779zM213.333 682.667h85.333v85.333h-85.333v-85.333zM661.333 576c-28.288 0-55.42-11.238-75.426-31.241-20.002-20.006-31.241-47.138-31.241-75.426s11.238-55.421 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242s55.42 11.238 75.426 31.242c20.002 20.004 31.241 47.137 31.241 75.425s-11.238 55.42-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241zM474.112 426.667h-388.779v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v256h-90.112c-9.724-42.377-33.536-80.203-67.541-107.293-34.010-27.089-76.203-41.84-119.68-41.84s-85.67 14.75-119.68 41.84c-34.005 27.089-57.818 64.915-67.541 107.293v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["projector-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1463,
+ "id": 886,
+ "name": "projector-fill",
+ "prevSize": 32,
+ "code": 61060
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1412
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM170.667 384v426.667h682.667v-426.667h-682.667zM256 554.667h213.333v170.667h-213.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-event-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1464,
+ "id": 885,
+ "name": "calendar-event-fill",
+ "prevSize": 32,
+ "code": 61061
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1413
+ },
+ {
+ "icon": {
+ "paths": [
+ "M95.701 292.437l394.539-236.544c6.63-3.979 14.221-6.080 21.952-6.080s15.322 2.102 21.952 6.080l394.155 236.587c3.162 1.895 5.781 4.577 7.599 7.785 1.813 3.208 2.769 6.832 2.769 10.519v542.55c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-542.592c-0.001-3.687 0.954-7.311 2.771-10.519s4.434-5.891 7.597-7.785zM782.763 351.744l-268.16 232.064-273.664-232.32-55.211 65.024 329.387 279.68 323.456-279.894-55.808-64.555z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-open-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1465,
+ "id": 884,
+ "name": "mail-open-fill",
+ "prevSize": 32,
+ "code": 61062
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1414
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 87.465v467.201h467.2c-21.376 215.595-203.307 384-424.533 384-235.648 0-426.667-191.019-426.667-426.667 0-221.228 168.405-403.159 384-424.535v0zM554.667 23.167c236.928 20.352 425.771 209.237 446.165 446.167h-446.165v-446.167z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pie-chart-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1466,
+ "id": 883,
+ "name": "pie-chart-2-fill",
+ "prevSize": 32,
+ "code": 61063
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1415
+ },
+ {
+ "icon": {
+ "paths": [
+ "M895.872 127.659l0.128 768.683c-0.090 11.204-4.582 21.926-12.51 29.845s-18.654 12.403-29.858 12.48h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0.089-11.205 4.583-21.925 12.511-29.845s18.652-12.402 29.857-12.48h683.093c23.424 0 42.411 18.944 42.411 42.325zM384 554.667v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-170.667c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.948 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51v170.667c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848v-213.333h-85.333v213.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["attachment-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1467,
+ "id": 882,
+ "name": "attachment-fill",
+ "prevSize": 32,
+ "code": 61064
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1416
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 469.333h853.333v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384zM725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v213.333h-853.333v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1468,
+ "id": 881,
+ "name": "calendar-fill",
+ "prevSize": 32,
+ "code": 61065
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1417
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 569.216c-45.581-16.145-94.801-19.051-141.965-8.38-47.159 10.667-90.338 34.479-124.531 68.668-34.189 34.193-58.001 77.372-68.668 124.531-10.671 47.164-7.765 96.384 8.38 141.965h-483.883c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v398.549zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064zM727.467 834.048c-2.854-15.458-2.854-31.305 0-46.763l-43.264-25.003 42.667-73.899 43.264 25.003c11.861-10.155 25.557-18.133 40.533-23.467v-49.92h85.333v49.92c14.976 5.333 28.672 13.312 40.533 23.467l43.264-25.003 42.667 73.899-43.264 25.003c2.854 15.458 2.854 31.305 0 46.763l43.264 25.003-42.667 73.899-43.264-25.003c-11.951 10.253-25.694 18.206-40.533 23.467v49.92h-85.333v-49.92c-14.839-5.261-28.582-13.214-40.533-23.467l-43.264 25.003-42.667-73.899 43.264-25.003zM853.333 853.333c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-settings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1469,
+ "id": 880,
+ "name": "mail-settings-fill",
+ "prevSize": 32,
+ "code": 61066
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1418
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM721.067 554.667h-251.733v-251.733c-51.684 10.706-97.568 40.184-128.789 82.742s-45.565 95.174-40.26 147.688c5.305 52.514 29.881 101.201 68.982 136.653 39.101 35.456 89.951 55.164 142.734 55.317 49.178-0.004 96.841-16.994 134.933-48.090 38.097-31.1 64.282-74.398 74.133-122.577zM721.067 469.333c-8.393-40.986-28.634-78.601-58.219-108.183-29.581-29.582-67.196-49.825-108.181-58.217v166.4h166.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pie-chart-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1470,
+ "id": 879,
+ "name": "pie-chart-box-fill",
+ "prevSize": 32,
+ "code": 61067
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1419
+ },
+ {
+ "icon": {
+ "paths": [
+ "M83.028 397.442c-22.272-7.424-22.485-19.413 0.427-27.051l814.38-271.445c22.571-7.509 35.499 5.12 29.184 27.221l-232.704 814.334c-6.4 22.571-19.413 23.339-28.971 1.92l-153.344-345.088 256-341.332-341.335 255.998-343.637-114.558z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["send-plane-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1471,
+ "id": 878,
+ "name": "send-plane-fill",
+ "prevSize": 32,
+ "code": 61068
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1420
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h400.299c7.923 0.004 15.684 2.214 22.421 6.381s12.181 10.128 15.723 17.214l30.891 61.739h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v469.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-272.299c-7.923-0.004-15.684-2.214-22.421-6.383-6.737-4.164-12.181-10.125-15.723-17.212l-30.891-61.739h-298.667v256h-85.333v-810.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flag-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1472,
+ "id": 877,
+ "name": "flag-fill",
+ "prevSize": 32,
+ "code": 61069
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1421
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 128h816.555c3.738-0.006 7.415 0.971 10.658 2.833s5.939 4.544 7.821 7.776c1.877 3.232 2.876 6.903 2.889 10.642 0.017 3.739-0.951 7.417-2.807 10.664l-152.448 266.752 152.448 266.752c1.856 3.247 2.825 6.925 2.807 10.662-0.013 3.742-1.011 7.411-2.889 10.645-1.882 3.23-4.578 5.914-7.821 7.774-3.243 1.865-6.921 2.837-10.658 2.833h-731.221v213.333h-85.333v-810.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flag-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1473,
+ "id": 876,
+ "name": "flag-2-fill",
+ "prevSize": 32,
+ "code": 61070
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1422
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM170.667 384v426.667h682.667v-426.667h-682.667zM256 469.333h85.333v85.333h-85.333v-85.333zM256 640h85.333v85.333h-85.333v-85.333zM426.667 469.333h341.333v85.333h-341.333v-85.333zM426.667 640h213.333v85.333h-213.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calendar-todo-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1474,
+ "id": 875,
+ "name": "calendar-todo-fill",
+ "prevSize": 32,
+ "code": 61071
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1423
+ },
+ {
+ "icon": {
+ "paths": [
+ "M348.587 128c8.832-24.963 25.187-46.574 46.812-61.856s47.456-23.485 73.935-23.477h85.333c55.723 0 103.125 35.627 120.747 85.333h220.587c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h220.587zM426.667 384v256l213.333-128-213.333-128zM469.333 128c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497h85.333c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slideshow-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1475,
+ "id": 874,
+ "name": "slideshow-4-fill",
+ "prevSize": 32,
+ "code": 61072
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1424
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM298.667 512v85.333h85.333v-85.333h-85.333zM298.667 682.667v85.333h85.333v-85.333h-85.333zM469.333 512v85.333h85.333v-85.333h-85.333zM469.333 682.667v85.333h85.333v-85.333h-85.333zM640 512v256h85.333v-256h-85.333zM298.667 256v170.667h426.667v-170.667h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["calculator-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1476,
+ "id": 873,
+ "name": "calculator-fill",
+ "prevSize": 32,
+ "code": 61073
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1425
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 426.667h768v426.837c0 23.467-18.987 42.496-42.368 42.496h-683.264c-5.573-0.004-11.090-1.109-16.236-3.247-5.146-2.142-9.82-5.274-13.755-9.22s-7.053-8.631-9.177-13.781c-2.124-5.154-3.211-10.675-3.2-16.247v-426.837zM384 512v85.333h256v-85.333h-256zM85.333 170.667c0-23.552 19.413-42.667 42.325-42.667h768.683c23.381 0 42.325 18.944 42.325 42.667v170.667h-853.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["archive-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1477,
+ "id": 872,
+ "name": "archive-fill",
+ "prevSize": 32,
+ "code": 61074
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1426
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 512c-28.787-21.572-62.562-35.516-98.185-40.542-35.618-5.022-71.932-0.96-105.562 11.814-33.63 12.77-63.488 33.835-86.797 61.235s-39.313 60.25-46.524 95.492h-46.933v256h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064zM938.667 725.333h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v42.667zM853.333 725.333v-42.667c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v42.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-lock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1478,
+ "id": 871,
+ "name": "mail-lock-fill",
+ "prevSize": 32,
+ "code": 61075
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1427
+ },
+ {
+ "icon": {
+ "paths": [
+ "M602.496 447.147c-8.004-8-18.854-12.493-30.165-12.493-11.315 0-22.165 4.493-30.165 12.493l-30.165 30.123c-7.872 8.149-17.289 14.652-27.699 19.123s-21.611 6.827-32.939 6.925c-11.332 0.098-22.571-2.061-33.056-6.353-10.487-4.288-20.015-10.624-28.027-18.637s-14.348-17.54-18.639-28.028c-4.291-10.487-6.45-21.726-6.351-33.054 0.099-11.331 2.452-22.528 6.925-32.939s10.973-19.827 19.123-27.699l240.215-240.299c56.87-12.936 116.373-7.612 170.044 15.214s98.782 61.992 128.913 111.928c30.135 49.937 43.759 108.102 38.933 166.227s-27.853 113.249-65.805 157.533l-89.941 91.093-211.2-211.157zM134.868 190.634c44.15-44.144 101.897-72.108 163.907-79.37s124.656 6.601 177.812 39.349l-145.623 145.664c-31.539 31.476-49.518 74.039-50.093 118.595s16.297 87.567 47.012 119.849c30.715 32.282 72.838 51.268 117.366 52.907 44.531 1.638 87.932-14.204 120.939-44.139l6.144-5.845 181.035 180.992-181.035 181.035c-16.004 15.996-37.705 24.986-60.331 24.986-22.63 0-44.331-8.99-60.331-24.986l-316.844-316.843c-52.005-52.011-81.221-122.547-81.221-196.096s29.216-144.087 81.221-196.096h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["service-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1479,
+ "id": 870,
+ "name": "service-fill",
+ "prevSize": 32,
+ "code": 61076
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1428
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM533.333 298.667h-192v426.667h85.333v-128h94.592l93.013 128h105.472l-108.8-149.76c27.255-16.559 48.495-41.412 60.604-70.916 12.113-29.5 14.46-62.106 6.703-93.042-7.761-30.934-25.22-58.571-49.822-78.865-24.606-20.294-55.057-32.178-86.903-33.913l-8.192-0.171zM533.333 384c15.91 0.001 31.249 5.927 43.025 16.624s19.149 25.396 20.676 41.232l0.299 6.144-0.299 6.144c-1.417 14.788-7.936 28.625-18.436 39.134s-24.333 17.037-39.121 18.466l-6.144 0.256h-106.667v-128h106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["registered-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1480,
+ "id": 869,
+ "name": "registered-fill",
+ "prevSize": 32,
+ "code": 61077
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1429
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 512h85.333v384h-85.333v-384zM213.333 597.333h85.333v298.667h-85.333v-298.667zM682.667 341.333h85.333v554.667h-85.333v-554.667zM810.667 426.667h85.333v469.333h-85.333v-469.333zM384 85.333h85.333v810.667h-85.333v-810.667zM512 170.667h85.333v725.333h-85.333v-725.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bar-chart-grouped-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1481,
+ "id": 868,
+ "name": "bar-chart-grouped-fill",
+ "prevSize": 32,
+ "code": 61078
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1430
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0zM514.56 498.475l-273.579-232.32-55.253 65.024 329.387 279.68 323.456-279.893-55.808-64.555-268.203 232.064z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mail-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1482,
+ "id": 867,
+ "name": "mail-fill",
+ "prevSize": 32,
+ "code": 61079
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1431
+ },
+ {
+ "icon": {
+ "paths": [
+ "M415.702 640h192.597c-33.937-41.135-52.847-92.604-53.623-145.929-0.772-53.321 16.64-105.318 49.365-147.421 32.73-42.104 78.822-71.806 130.688-84.212s106.406-6.776 154.645 15.961c48.239 22.737 87.292 61.227 110.733 109.129 23.437 47.902 29.862 102.358 18.21 154.398-11.648 52.041-40.674 98.56-82.295 131.9-41.621 33.335-93.359 51.503-146.688 51.507h-554.666c-53.328-0.004-105.065-18.172-146.687-51.507-41.623-33.34-70.649-79.859-82.297-131.9s-5.224-106.496 18.214-154.398c23.438-47.901 62.493-86.391 110.731-109.129s102.781-28.367 154.646-15.961c51.865 12.406 97.958 42.107 130.686 84.212 32.73 42.104 50.138 94.101 49.365 147.421-0.772 53.325-19.686 104.794-53.623 145.929v0zM234.667 554.667c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743c-16.974 0-33.252 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743v0zM789.333 554.667c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.25 6.741-45.252 18.743-12.006 12.002-18.748 28.284-18.748 45.257s6.741 33.254 18.748 45.257c12.002 12.002 28.279 18.743 45.252 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["record-mail-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1483,
+ "id": 866,
+ "name": "record-mail-fill",
+ "prevSize": 32,
+ "code": 61080
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1432
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM170.667 640v170.667h682.667v-170.667h-682.667zM469.333 469.333v85.333h85.333v-85.333h-85.333zM384 128v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["briefcase-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1484,
+ "id": 865,
+ "name": "briefcase-fill",
+ "prevSize": 32,
+ "code": 61081
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1433
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362.667 469.333v213.333h298.667v-213.333h234.667v426.667h-768v-426.667h234.667zM661.333 128v213.333h-298.667v-213.333h298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["unsplash-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1485,
+ "id": 864,
+ "name": "unsplash-fill",
+ "prevSize": 32,
+ "code": 61082
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1434
+ },
+ {
+ "icon": {
+ "paths": [
+ "M567.893 870.4c-56.418 8.815-114.121 4.177-168.407-13.525-54.289-17.702-103.63-47.974-144.007-88.354-40.378-40.375-70.65-89.715-88.353-144.004s-22.337-111.991-13.524-168.41c-22.241-42.304-30.368-90.612-23.194-137.864s29.275-90.971 63.070-124.766c33.795-33.795 77.514-55.895 124.766-63.070s95.561 0.952 137.862 23.193c56.418-8.813 114.121-4.179 168.41 13.524s103.629 47.976 144.009 88.353c40.375 40.378 70.647 89.719 88.354 144.007 17.702 54.288 22.336 111.991 13.521 168.409 22.242 42.304 30.37 90.611 23.194 137.865-7.172 47.253-29.274 90.97-63.070 124.766-33.792 33.796-77.513 55.893-124.766 63.070-47.253 7.172-95.561-0.951-137.865-23.194zM514.219 731.989h-1.707c122.539 0 183.595-59.136 183.595-138.368 0-51.115-23.509-105.429-116.309-126.208l-84.608-18.773c-32.213-7.339-69.204-17.067-69.204-47.573s26.452-51.755 73.556-51.755c95.147 0 86.485 65.195 133.589 65.195 24.576 0 46.635-14.592 46.635-39.68 0-58.453-93.739-102.4-173.056-102.4-86.228 0-178.046 36.651-178.046 134.144 0 46.848 16.81 96.853 109.225 120.021l114.731 28.629c34.816 8.619 43.435 28.117 43.435 45.739 0 29.312-29.184 57.941-81.835 57.941-103.124 0-88.66-79.232-143.956-79.232-24.747 0-42.795 16.981-42.795 41.429 0 47.531 57.685 110.848 186.75 110.848v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skype-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1486,
+ "id": 863,
+ "name": "skype-fill",
+ "prevSize": 32,
+ "code": 61083
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1435
+ },
+ {
+ "icon": {
+ "paths": [
+ "M267.521 325.547c54.909-11.849 104.101-42.15 139.385-85.858 35.283-43.707 54.53-98.183 54.534-154.356h129.28v219.819h155.179v155.136h-155.136v232.704c0 21.973 8.405 51.499 38.784 71.125 20.224 13.099 63.317 19.541 129.28 19.413v155.136h-180.992c-25.468 0.004-50.688-5.005-74.223-14.75-23.531-9.741-44.915-24.026-62.925-42.031-18.013-18.010-32.301-39.39-42.049-62.921s-14.765-48.751-14.765-74.219v-284.459h-116.352v-134.741z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tumblr-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1487,
+ "id": 862,
+ "name": "tumblr-fill",
+ "prevSize": 32,
+ "code": 61084
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1436
+ },
+ {
+ "icon": {
+ "paths": [
+ "M153.984 77.397l434.475 434.603-434.432 434.603c-7.725-3.247-14.318-8.708-18.949-15.693s-7.093-15.181-7.078-23.561v-790.699c0.003-8.37 2.469-16.555 7.089-23.535s11.191-12.446 18.895-15.719zM618.624 542.165l98.219 98.219-466.645 270.208 368.427-368.427zM755.115 405.717l119.765 69.376c6.464 3.75 11.831 9.135 15.565 15.612 3.729 6.477 5.692 13.82 5.692 21.295s-1.963 14.818-5.692 21.295c-3.733 6.477-9.101 11.861-15.565 15.612l-119.808 69.376-106.283-106.283 106.325-106.283zM250.197 113.408l466.688 270.165-98.261 98.261-368.427-368.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["google-play-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1488,
+ "id": 861,
+ "name": "google-play-fill",
+ "prevSize": 32,
+ "code": 61085
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1437
+ },
+ {
+ "icon": {
+ "paths": [
+ "M856.192 361.728c20.992 37.547 23.723 85.931 12.8 141.952-31.573 162.389-139.776 218.453-277.931 218.453h-21.333c-8.175 0.013-16.081 2.94-22.289 8.26-6.208 5.316-10.321 12.676-11.588 20.753l-1.707 9.387-26.88 170.368-1.365 7.253c-1.271 8.073-5.38 15.428-11.593 20.736-6.212 5.312-14.114 8.23-22.285 8.235h-142.635c-2.976 0-5.917-0.649-8.62-1.894s-5.104-3.059-7.038-5.325c-1.934-2.261-3.355-4.915-4.165-7.778s-0.99-5.871-0.528-8.811l7.467-47.317h64.768l40.533-256.853h59.094c199.595 0 330.667-93.995 375.296-277.419zM729.899 144.555c32.512 37.035 41.941 77.227 32.085 140.16-0.811 5.248-1.707 10.24-2.645 15.36-31.36 160.981-131.797 232.363-296.789 232.363h-80.384c-26.88 0-50.091 17.664-57.771 42.752l-0.597-0.085-39.68 251.477h-150.955c-0.317 0-0.631-0.073-0.918-0.209-0.288-0.132-0.541-0.329-0.745-0.572-0.203-0.247-0.351-0.533-0.432-0.841-0.081-0.303-0.094-0.627-0.038-0.939l110.848-704.427c1.495-9.543 6.348-18.238 13.685-24.519s16.677-9.737 26.336-9.742h254.976c93.141 0 158.549 20.011 192.981 59.221h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["paypal-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1489,
+ "id": 860,
+ "name": "paypal-fill",
+ "prevSize": 32,
+ "code": 61086
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1438
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c-235.648 0-426.667 191.019-426.667 426.667s191.019 426.667 426.667 426.667c235.648 0 426.667-191.019 426.667-426.667s-191.019-426.667-426.667-426.667zM703.573 471.040l-0.256 0.597c-17.92 38.315-64.683 113.493-64.683 113.493l-0.213-0.512-13.653 23.808h65.835l-125.781 167.211 28.587-113.749h-51.84l18.005-75.221c-14.549 3.499-31.787 8.32-52.181 14.891 0 0-27.563 16.128-79.445-31.104 0 0-34.987-30.805-14.677-38.485 8.619-3.285 41.856-7.467 68.011-10.965 35.413-4.779 57.131-7.339 57.131-7.339s-109.013 1.621-134.869-2.432c-25.856-4.053-58.667-47.232-65.664-85.163 0 0-10.795-20.821 23.253-10.965s174.976 38.4 174.976 38.4c0 0-183.253-56.192-195.499-69.931-12.203-13.653-35.883-74.837-32.811-112.384 0 0 1.323-9.387 10.965-6.827 0 0 135.509 61.867 228.139 95.787 92.672 33.92 173.227 51.157 162.816 95.061-0.853 3.712-3.072 9.216-6.144 15.787v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dingding-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1490,
+ "id": 859,
+ "name": "dingding-fill",
+ "prevSize": 32,
+ "code": 61087
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1439
+ },
+ {
+ "icon": {
+ "paths": [
+ "M581.077 896c-3.627 0-6.016-2.432-5.419-5.419v-757.163c0-2.389 1.792-4.821 4.821-4.821h118.827c52.164 0 102.195 20.723 139.085 57.61 36.885 36.887 57.609 86.917 57.609 139.083v374.016c0 52.164-20.723 102.195-57.609 139.085-36.89 36.885-86.921 57.609-139.085 57.609h-118.229zM727.083 472.491c-42.837 0-77.824 34.987-77.824 77.824s34.987 77.824 77.824 77.824c42.837 0 77.824-34.987 77.824-77.824s-34.987-77.824-77.824-77.824zM247.467 358.4c0-39.808 32.555-72.363 72.363-72.363 39.851 0 72.405 32.555 72.405 72.363 0 39.851-32.555 72.405-72.405 72.405-19.171-0.068-37.538-7.713-51.094-21.269s-21.201-31.923-21.269-51.094v-0.043zM492.373 128c3.627 0 6.059 2.432 5.461 5.419v756.608c0 2.987-2.432 5.419-5.461 5.419h-167.68c-25.834 0-51.415-5.090-75.281-14.976s-45.552-24.38-63.817-42.65c-18.265-18.27-32.753-39.957-42.635-63.825s-14.966-49.451-14.96-75.285v-374.016c0-52.166 20.723-102.196 57.61-139.083s86.917-57.61 139.083-57.61h167.68zM436.267 833.877v-644.352h-111.573c-36.224 0-69.973 14.507-95.36 39.808-12.719 12.392-22.802 27.227-29.643 43.614s-10.298 33.988-10.165 51.746v374.016c0 36.224 14.507 69.973 39.808 95.317 12.388 12.727 27.222 22.818 43.61 29.666s33.99 10.313 51.75 10.185h111.573z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["switch-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1491,
+ "id": 858,
+ "name": "switch-fill",
+ "prevSize": 32,
+ "code": 61088
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1440
+ },
+ {
+ "icon": {
+ "paths": [
+ "M657.152 896v-297.216h99.541l14.891-115.541h-114.432v-73.728c0-33.451 9.301-56.277 57.259-56.277h61.184v-103.339c-29.619-3.143-59.388-4.667-89.173-4.565-88.192 0-148.565 53.845-148.565 152.747v85.163h-99.755v115.541h99.755v297.216h-367.189c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-196.181z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["facebook-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1492,
+ "id": 857,
+ "name": "facebook-box-fill",
+ "prevSize": 32,
+ "code": 61089
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1441
+ },
+ {
+ "icon": {
+ "paths": [
+ "M880.811 366.336c-7.253-30.336-18.816-61.781-33.024-86.229-32.896-56.704-62.464-95.445-135.552-141.653s-154.325-53.12-192.981-53.12c-103.040 0-179.669 36.693-235.733 80.512-140.843 110.208-155.52 303.488-155.52 303.488s52.096-87.253 151.040-150.443c59.861-38.187 145.109-62.891 214.528-62.891 184.192 0 189.099 170.667 189.099 170.667h-298.667c0-85.333 42.667-128 42.667-128s-213.333 85.333-213.333 300.544c0 20.779-0.128 58.539 10.581 97.408 9.899 35.968 29.867 72.747 48.299 100.395 52.096 78.165 129.92 111.531 167.083 123.904 42.496 14.165 86.571 17.749 128.427 17.749 116.053 0 208.085-37.803 242.944-54.4v-178.005c-32.341 19.371-114.304 61.739-213.333 61.739-213.333 0-213.333-170.667-213.333-170.667h512v-106.24c0 0-1.664-67.968-15.189-124.757z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["edge-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1493,
+ "id": 856,
+ "name": "edge-fill",
+ "prevSize": 32,
+ "code": 61090
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1442
+ },
+ {
+ "icon": {
+ "paths": [
+ "M914.005 655.275c-163.413-49.195-258.347-78.507-284.928-87.979 25.506-44.254 44.476-91.968 56.32-141.653h-139.264v-47.104h170.667v-29.013h-170.667v-78.848h-65.536c-11.947 0-13.312 10.581-13.312 10.581v67.925h-160.085v29.013h160.085v47.104h-131.072v26.283h265.557c-9.267 32.213-21.969 63.343-37.888 92.843-60.075-19.797-93.525-33.451-166.912-40.277-138.923-13.312-171.008 63.147-176.128 109.909-7.509 71.339 55.637 129.365 149.845 129.365s157.013-43.691 216.747-116.053c49.792 23.808 142.421 65.067 277.931 123.819-39.066 57.775-91.716 105.079-153.323 137.766-61.611 32.687-130.3 49.758-200.043 49.711-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667 0.051 48.819-8.29 97.284-24.661 143.275zM359.765 698.368c-99.669 0-115.371-63.147-110.251-89.429s34.133-60.416 89.771-60.416c63.829 0 120.832 16.384 189.44 49.493-48.469 63.147-107.52 100.352-168.96 100.352z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alipay-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1494,
+ "id": 855,
+ "name": "alipay-fill",
+ "prevSize": 32,
+ "code": 61091
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1443
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM796.587 512c-0.439-12.011-4.343-23.637-11.238-33.476-6.899-9.843-16.495-17.481-27.635-21.99s-23.347-5.7-35.149-3.43c-11.802 2.274-22.694 7.91-31.364 16.23-48.538-32.994-105.591-51.221-164.267-52.48l27.733-133.12 91.307 19.2c1.084 10.090 5.73 19.462 13.103 26.435s16.99 11.090 27.127 11.611c10.133 0.521 20.122-2.586 28.173-8.766s13.632-15.025 15.748-24.951c2.116-9.925 0.623-20.279-4.207-29.204s-12.685-15.835-22.153-19.491c-9.468-3.656-19.925-3.818-29.5-0.457-9.579 3.361-17.643 10.025-22.746 18.796l-104.533-20.907c-1.711-0.375-3.477-0.407-5.197-0.094-1.724 0.313-3.366 0.965-4.834 1.917s-2.735 2.187-3.721 3.632c-0.99 1.445-1.681 3.072-2.035 4.785l-31.573 148.053c-59.396 0.896-117.236 19.136-166.4 52.48-6.577-6.187-14.422-10.871-22.99-13.73-8.568-2.854-17.654-3.814-26.63-2.807-8.975 1.003-17.624 3.951-25.348 8.627-7.724 4.681-14.338 10.987-19.384 18.475-5.046 7.492-8.402 15.987-9.837 24.905s-0.914 18.039 1.526 26.735c2.441 8.695 6.743 16.755 12.608 23.62 5.865 6.869 13.154 12.378 21.361 16.149-0.48 6.251-0.48 12.523 0 18.773 0 95.573 111.36 173.227 248.747 173.227s248.747-77.653 248.747-173.227c0.482-6.251 0.482-12.523 0-18.773 10.53-5.235 19.362-13.338 25.476-23.381 6.118-10.039 9.267-21.611 9.084-33.365zM369.92 554.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17zM617.813 672c-30.272 22.814-67.516 34.423-105.387 32.853-37.871 1.57-75.115-10.039-105.387-32.853-1.814-2.21-2.741-5.018-2.601-7.872 0.14-2.859 1.338-5.559 3.36-7.582s4.724-3.221 7.581-3.362c2.857-0.141 5.663 0.789 7.874 2.603 25.651 18.816 56.964 28.301 88.747 26.88 31.821 1.732 63.279-7.45 89.173-26.027 1.092-1.22 2.423-2.206 3.908-2.893 1.489-0.687 3.102-1.058 4.74-1.097 1.638-0.034 3.268 0.269 4.783 0.887 1.519 0.619 2.889 1.545 4.032 2.718 1.148 1.173 2.035 2.569 2.615 4.1 0.585 1.532 0.845 3.17 0.768 4.804-0.081 1.638-0.491 3.238-1.216 4.71s-1.741 2.778-2.991 3.836v-1.707zM610.133 599.040c-8.439 0-16.687-2.5-23.706-7.189-7.014-4.689-12.484-11.354-15.714-19.149s-4.075-16.375-2.428-24.653c1.647-8.277 5.709-15.881 11.678-21.845 5.965-5.969 13.568-10.031 21.845-11.678s16.858-0.802 24.653 2.428c7.795 3.23 14.46 8.7 19.149 15.714 4.689 7.019 7.189 15.266 7.189 23.706 0.23 5.781-0.717 11.55-2.782 16.951-2.065 5.406-5.21 10.334-9.242 14.481-4.032 4.151-8.866 7.441-14.204 9.664-5.342 2.223-11.081 3.341-16.866 3.277l0.427-1.707z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reddit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1495,
+ "id": 854,
+ "name": "reddit-fill",
+ "prevSize": 32,
+ "code": 61092
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1444
+ },
+ {
+ "icon": {
+ "paths": [
+ "M338.773 176.896l148.565 257.28-253.44 439.168-148.565-257.237 253.44-439.211zM431.616 616.107h507.051l-148.565 257.237h-507.008l148.523-257.237zM616.917 573.44l-253.483-439.253h297.131l253.44 439.253h-297.088z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drive-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1496,
+ "id": 853,
+ "name": "drive-fill",
+ "prevSize": 32,
+ "code": 61093
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1445
+ },
+ {
+ "icon": {
+ "paths": [
+ "M152.576 353.152l-50.901 78.592 93.867 58.496c0 0 62.464 32.171 32.555 92.544-27.733 57.088-164.096 182.187-164.096 182.187l122.112 76.715c84.651-184.576 78.933-160 100.139-226.389 21.845-67.413 26.624-119.211-10.325-156.885-47.488-48-52.821-52.48-123.349-105.259zM219.307 323.541c44.373 0 80.341-32.341 80.341-72.235 0-40.235-35.968-72.576-80.341-72.576-44.715 0-80.512 32.512-80.512 72.576 0.213 39.723 35.84 72.235 80.512 72.235zM944.853 332.501c0 0-26.624-207.787-478.165-79.104 19.413-33.92 28.544-55.765 28.544-55.765l-112.64-32c0 0-45.653 149.675-126.805 219.307 0 0 78.763 45.781 77.909 44.373 21.407-21.428 41.457-44.171 60.032-68.096 18.091-8.107 35.413-15.488 52.309-22.357-20.992 37.845-54.528 94.635-88.235 130.389l47.445 41.984c0 0 32.512-31.488 67.797-69.12h40.235v69.803h-157.227v55.723h157.227v133.675l-5.973-0.171c-17.408-0.853-44.245-3.797-54.912-20.651-12.715-20.651-3.285-57.984-2.731-81.195h-108.544l-3.968 2.219c0 0-39.893 179.413 114.731 175.488 144.469 3.925 227.413-40.789 267.307-71.552l15.787 59.477 89.173-37.632-60.416-148.651-72.235 22.869 13.397 50.773c-18.219 14.080-39.68 24.405-62.592 32.171v-116.821h153.259v-55.893h-153.259v-69.845h153.771v-55.723h-273.493c19.797-24.277 35.072-46.464 39.253-60.373l-47.872-13.099c204.715-73.941 318.72-61.227 317.867 59.861v318.933c0 0 12.075 109.397-112.469 101.675l-67.413-14.635-15.659 64.512c0 0 290.859 83.925 314.624-141.397 23.552-225.365-6.059-369.152-6.059-369.152z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["taobao-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1497,
+ "id": 852,
+ "name": "taobao-fill",
+ "prevSize": 32,
+ "code": 61094
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1446
+ },
+ {
+ "icon": {
+ "paths": [
+ "M296.104 213.333c-0.011 22.632-9.012 44.332-25.024 60.327s-37.721 24.975-60.352 24.963c-22.632-0.011-44.332-9.012-60.327-25.024s-24.975-37.72-24.963-60.352c0.012-22.632 9.012-44.332 25.024-60.327s37.72-24.975 60.352-24.963c22.632 0.012 44.332 9.013 60.327 25.024s24.975 37.72 24.963 60.352zM298.664 361.813h-170.667v534.187h170.667v-534.187zM568.316 361.813h-169.812v534.187h168.105v-280.32c0-156.16 203.52-170.667 203.52 0v280.32h168.533v-338.347c0-263.254-301.227-253.44-372.053-124.16l1.707-71.68z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["linkedin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1498,
+ "id": 851,
+ "name": "linkedin-fill",
+ "prevSize": 32,
+ "code": 61095
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1447
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM725.333 298.667h-426.667v426.667h213.333v-320h106.667v320h106.667v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["npmjs-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1499,
+ "id": 850,
+ "name": "npmjs-fill",
+ "prevSize": 32,
+ "code": 61096
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1448
+ },
+ {
+ "icon": {
+ "paths": [
+ "M42.667 128h170.667l298.667 512 298.667-512h170.667l-469.333 810.667-469.333-810.667zM412.459 128l99.541 170.667 99.541-170.667h172.16l-271.701 469.333-271.701-469.333h172.16z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vuejs-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1500,
+ "id": 849,
+ "name": "vuejs-fill",
+ "prevSize": 32,
+ "code": 61097
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1449
+ },
+ {
+ "icon": {
+ "paths": [
+ "M272.299 169.302c68-54.482 152.567-84.107 239.701-83.968 90.667 0 173.995 31.403 239.701 83.968l61.995-61.995 60.331 60.331-61.995 61.995c54.481 68 84.109 152.568 83.968 239.701v42.667h-768v-42.667c0-90.666 31.403-173.994 83.968-239.701l-61.995-61.952 60.331-60.331 61.995 61.952zM128 597.333h768v298.667c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-298.667zM384 384c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM640 384c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["android-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1501,
+ "id": 848,
+ "name": "android-fill",
+ "prevSize": 32,
+ "code": 61098
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1450
+ },
+ {
+ "icon": {
+ "paths": [
+ "M919.168 277.248c19.499 76.032 19.499 234.752 19.499 234.752s0 158.72-19.499 234.752c-10.837 42.027-42.539 75.093-82.688 86.272-72.917 20.309-324.48 20.309-324.48 20.309s-251.435 0-324.48-20.309c-40.32-11.349-71.979-44.373-82.688-86.272-19.499-76.032-19.499-234.752-19.499-234.752s0-158.72 19.499-234.752c10.837-42.027 42.539-75.093 82.688-86.272 73.045-20.309 324.48-20.309 324.48-20.309s251.563 0 324.48 20.309c40.32 11.349 71.979 44.373 82.688 86.272zM426.667 661.333l256-149.333-256-149.333v298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["youtube-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1502,
+ "id": 847,
+ "name": "youtube-fill",
+ "prevSize": 32,
+ "code": 61099
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1451
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c247.424 0 448 156.331 448 349.227 0 192.853-200.576 349.184-448 349.184-24.636 0.013-49.25-1.553-73.685-4.693l-188.075 123.008c-21.376 11.307-28.928 10.069-20.139-17.621l38.059-156.928c-122.88-62.293-204.16-170.24-204.16-292.949 0-192.853 200.576-349.227 448-349.227zM764.032 471.893l62.72-60.757c3.618-3.759 5.636-8.775 5.632-13.993-0.009-5.218-2.039-10.229-5.666-13.979s-8.572-5.945-13.786-6.124c-5.214-0.178-10.295 1.674-14.17 5.167l-82.261 79.616v-65.792c0-5.341-2.121-10.464-5.897-14.24-3.78-3.777-8.9-5.899-14.242-5.899s-10.462 2.122-14.242 5.899c-3.776 3.776-5.897 8.899-5.897 14.24v109.099c-0.755 3.11-0.755 6.362 0 9.472v61.397c0 5.342 2.121 10.462 5.897 14.242 3.78 3.776 8.9 5.897 14.242 5.897s10.462-2.121 14.242-5.897c3.776-3.78 5.897-8.9 5.897-14.242v-58.155l18.219-17.621 60.928 86.741c1.523 2.167 3.456 4.011 5.687 5.427 2.236 1.421 4.727 2.385 7.334 2.842s5.278 0.393 7.859-0.183c2.586-0.576 5.026-1.655 7.194-3.179s4.011-3.456 5.427-5.687c1.421-2.236 2.385-4.727 2.842-7.334s0.393-5.278-0.183-7.859c-0.576-2.586-1.655-5.026-3.179-7.194l-64.597-91.904zM637.824 553.984h-62.293v-157.312c-0.239-5.175-2.462-10.060-6.208-13.638s-8.73-5.574-13.909-5.574c-5.18 0-10.163 1.996-13.909 5.574s-5.969 8.463-6.208 13.638v177.451c0 11.093 8.96 20.139 20.096 20.139h82.432c5.342 0 10.462-2.121 14.242-5.897 3.776-3.78 5.897-8.9 5.897-14.242s-2.121-10.462-5.897-14.242c-3.78-3.776-8.9-5.897-14.242-5.897zM387.925 507.392l29.696-72.832 27.221 72.832h-56.917zM495.573 528.213l0.085-0.683c-0.009-5.073-1.946-9.954-5.419-13.653l-44.629-119.467c-1.869-5.693-5.436-10.68-10.214-14.294s-10.55-5.683-16.538-5.93c-6.031-0.026-11.928 1.784-16.905 5.191s-8.799 8.248-10.956 13.881l-70.869 173.867c-1 2.449-1.508 5.069-1.495 7.714s0.547 5.261 1.571 7.701c1.024 2.436 2.519 4.651 4.398 6.511s4.107 3.337 6.556 4.335c2.449 0.998 5.070 1.506 7.715 1.493s5.261-0.546 7.7-1.57c2.438-1.024 4.652-2.517 6.513-4.399 1.861-1.877 3.334-4.105 4.334-6.554l14.080-34.688h88.32l12.757 34.133c0.866 2.551 2.24 4.902 4.032 6.916 1.792 2.010 3.968 3.644 6.404 4.796 2.436 1.156 5.077 1.809 7.77 1.929 2.692 0.115 5.38-0.311 7.906-1.254 2.522-0.943 4.834-2.385 6.793-4.233 1.958-1.852 3.524-4.079 4.604-6.545 1.084-2.47 1.66-5.129 1.694-7.825 0.038-2.692-0.469-5.367-1.485-7.863l-14.72-39.509zM353.835 396.885c0-5.334-2.116-10.449-5.883-14.225s-8.879-5.903-14.213-5.914h-138.453c-5.341 0-10.464 2.122-14.24 5.899s-5.899 8.899-5.899 14.24c0 5.341 2.122 10.464 5.899 14.24s8.899 5.899 14.24 5.899h49.493v159.403c0 5.342 2.122 10.462 5.899 14.242 3.776 3.776 8.899 5.897 14.24 5.897s10.464-2.121 14.24-5.897c3.777-3.78 5.899-8.9 5.899-14.242v-159.403h48.64c11.136 0 20.139-9.045 20.139-20.139z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["kakao-talk-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1503,
+ "id": 846,
+ "name": "kakao-talk-fill",
+ "prevSize": 32,
+ "code": 61100
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1452
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667 0-62.464 13.397-121.771 37.547-175.189 19.883-40.064 52.608-79.957 78.933-93.611-27.861 54.741-41.515 108.373-44.373 144.341 19.371-64 56.107-117.632 107.52-155.477 88.149-64.811 206.848-67.712 254.123-26.453-87.723 30.165-183.296 151.381-162.261 293.376 3.413 23.467 10.453 46.251 20.864 67.499-16.384-43.093-17.835-103.808 8.619-143.275 29.525-43.947 71.595-53.248 94.123-48.469-8.875-1.877-28.501 35.669-31.403 42.283-7.381 16.811-11.051 34.987-10.709 53.333 0.636 38.332 16.439 74.846 43.947 101.547 82.005 79.829 214.315 48.427 273.579-42.752 40.661-62.763 45.611-169.301-6.613-253.952-13.030-20.613-28.565-39.53-46.251-56.32-78.933-75.349-191.147-109.653-297.899-94.080-47.189 7.552-87.339 21.163-120.491 40.789 46.293-46.208 138.24-80.256 227.413-80.256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["firefox-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1504,
+ "id": 845,
+ "name": "firefox-fill",
+ "prevSize": 32,
+ "code": 61101
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1453
+ },
+ {
+ "icon": {
+ "paths": [
+ "M616.448 692.907c-22.848 32.486-47.744 63.484-74.539 92.8 71.339 69.248 137.728 101.675 174.507 80.384 36.864-21.248 41.941-94.933 17.664-191.317-36.395 8.107-75.947 14.251-117.632 18.133zM560.555 696.619c-32.354 1.34-64.755 1.34-97.109 0 16.085 20.992 32.341 40.448 48.555 58.197 16.213-17.749 32.427-37.205 48.555-58.197zM775.595 359.808c113.707 32.597 187.947 86.784 187.947 152.192s-74.24 119.595-187.947 152.192c28.587 114.773 18.816 206.165-37.803 238.848-56.661 32.725-140.715-4.48-225.792-86.613-85.077 82.133-169.131 119.339-225.792 86.613-56.619-32.683-66.432-124.075-37.803-238.848-113.707-32.597-187.947-86.784-187.947-152.192s74.24-119.595 187.947-152.192c-28.587-114.773-18.816-206.165 37.803-238.848 56.661-32.725 140.715 4.48 225.792 86.613 85.077-82.133 169.131-119.339 225.792-86.613 56.619 32.683 66.432 124.075 37.803 238.848zM734.080 349.227c24.32-96.427 19.2-170.069-17.621-191.317-36.821-21.291-103.211 11.136-174.507 80.384 25.216 27.435 50.304 58.624 74.496 92.8 41.728 3.84 81.237 9.984 117.632 18.133zM289.92 674.773c-24.32 96.427-19.2 170.069 17.621 191.317 36.821 21.291 103.211-11.136 174.507-80.384-26.782-29.316-51.665-60.314-74.496-92.8-39.556-3.537-78.847-9.591-117.632-18.133zM463.445 327.381c32.354-1.339 64.755-1.339 97.109 0-15.339-20.076-31.539-39.479-48.555-58.155-16.213 17.749-32.427 37.205-48.555 58.197v-0.043zM407.552 331.093c22.861-32.489 47.77-63.485 74.582-92.8-71.382-69.248-137.814-101.675-174.55-80.384-36.864 21.248-41.941 94.933-17.664 191.317 36.395-8.107 75.947-14.251 117.632-18.133zM592.811 651.947c30.37-44.57 57.37-91.349 80.768-139.947-23.398-48.597-50.398-95.375-80.768-139.947-53.798-4.028-107.823-4.028-161.621 0-30.372 44.571-57.37 91.349-80.768 139.947 23.398 48.597 50.396 95.377 80.768 139.947 53.798 4.028 107.823 4.028 161.621 0zM647.595 646.357c26.24-3.413 51.2-7.808 74.667-12.971-7.676-24.073-16.388-47.804-26.112-71.125-15.019 28.676-31.219 56.717-48.555 84.053v0.043zM376.405 377.6c-26.24 3.413-51.2 7.808-74.667 12.971 7.253 22.869 15.957 46.677 26.112 71.125 15.019-28.676 31.218-56.717 48.555-84.053v-0.043zM301.738 633.344c23.467 5.163 48.427 9.515 74.667 12.971-17.337-27.337-33.536-55.377-48.555-84.053-10.155 24.405-18.859 48.213-26.112 71.083zM260.010 622.891c11.136-35.584 25.6-72.875 43.093-110.933-17.493-38.059-31.957-75.349-43.093-110.933-95.659 27.179-156.885 68.437-156.885 110.933s61.227 83.755 156.885 110.933zM722.261 390.571c-23.467-5.163-48.427-9.515-74.667-12.971 17.335 27.337 33.536 55.377 48.555 84.053 10.155-24.405 18.859-48.213 26.112-71.083zM763.989 401.024c-11.136 35.584-25.6 72.875-43.093 110.933 17.493 38.059 31.957 75.349 43.093 110.933 95.659-27.179 156.885-68.437 156.885-110.933s-61.227-83.755-156.885-110.933zM512 592.213c-10.534 0-20.966-2.074-30.699-6.106-9.728-4.032-18.573-9.941-26.022-17.387-7.445-7.45-13.355-16.294-17.387-26.027-4.032-9.728-6.106-20.16-6.106-30.694s2.074-20.966 6.106-30.694c4.032-9.732 9.941-18.577 17.387-26.027 7.45-7.445 16.294-13.355 26.022-17.387 9.732-4.032 20.164-6.106 30.699-6.106 21.274 0 41.677 8.452 56.721 23.492 15.040 15.044 23.492 35.447 23.492 56.721s-8.452 41.677-23.492 56.721c-15.044 15.040-35.447 23.492-56.721 23.492z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reactjs-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1505,
+ "id": 844,
+ "name": "reactjs-fill",
+ "prevSize": 32,
+ "code": 61102
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1454
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128v500.907l-200.363 200.32h-166.955l-103.979 100.181h-129.749v-100.181h-166.955v-567.68l52.352-133.547h715.648zM829.227 194.773h-567.68v500.907h133.547v100.139l100.224-100.181h200.32l133.547-133.547v-367.317h0.043zM695.68 328.32v200.363h-66.816v-200.32l66.816-0.043zM528.683 328.32v200.363h-66.773v-200.32l66.773-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["twitch-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1506,
+ "id": 843,
+ "name": "twitch-fill",
+ "prevSize": 32,
+ "code": 61103
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1455
+ },
+ {
+ "icon": {
+ "paths": [
+ "M737.493 455.168l222.507 141.781-224.085 142.763-223.915-142.677-223.915 142.677-224.085-142.805 222.507-141.781-222.507-141.696 224.085-142.763 223.915 142.635 223.915-142.635 224.085 142.763-222.507 141.739zM734.336 455.168l-222.336-141.653-222.336 141.653 222.336 141.653 222.336-141.653zM289.536 787.029l224.085-142.763 224.085 142.763-224.085 142.763-224.085-142.763z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dropbox-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1507,
+ "id": 842,
+ "name": "dropbox-fill",
+ "prevSize": 32,
+ "code": 61104
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1456
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c115.925 0 130.389 0.427 175.872 2.56 45.44 2.133 76.373 9.259 103.595 19.84 28.16 10.837 51.883 25.515 75.605 49.195 21.696 21.329 38.485 47.129 49.195 75.605 10.539 27.179 17.707 58.155 19.84 103.595 2.005 45.483 2.56 59.947 2.56 175.872s-0.427 130.389-2.56 175.872c-2.133 45.44-9.301 76.373-19.84 103.595-10.679 28.493-27.473 54.298-49.195 75.605-21.333 21.687-47.134 38.477-75.605 49.195-27.179 10.539-58.155 17.707-103.595 19.84-45.483 2.005-59.947 2.56-175.872 2.56s-130.389-0.427-175.872-2.56c-45.44-2.133-76.373-9.301-103.595-19.84-28.487-10.688-54.292-27.482-75.605-49.195-21.7-21.325-38.488-47.125-49.195-75.605-10.581-27.179-17.707-58.155-19.84-103.595-2.005-45.483-2.56-59.947-2.56-175.872s0.427-130.389 2.56-175.872c2.133-45.483 9.259-76.373 19.84-103.595 10.677-28.494 27.469-54.301 49.195-75.605 21.319-21.708 47.122-38.497 75.605-49.195 27.221-10.581 58.112-17.707 103.595-19.84 45.483-2.005 59.947-2.56 175.872-2.56zM512 298.667c-56.58 0-110.842 22.476-150.849 62.484s-62.484 94.269-62.484 150.849c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848s-22.477-110.842-62.485-150.849c-40.004-40.008-94.268-62.484-150.848-62.484zM789.333 288c0-14.145-5.619-27.71-15.62-37.712s-23.569-15.621-37.713-15.621c-14.144 0-27.712 5.619-37.713 15.621s-15.62 23.567-15.62 37.712c0 14.145 5.619 27.71 15.62 37.712s23.569 15.621 37.713 15.621c14.144 0 27.712-5.619 37.713-15.621s15.62-23.567 15.62-37.712zM512 384c33.946 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["instagram-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1508,
+ "id": 841,
+ "name": "instagram-fill",
+ "prevSize": 32,
+ "code": 61105
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1457
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c240.384 0 426.667 176.085 426.667 413.867s-186.283 413.867-426.667 413.867c-41.724 0.107-83.268-5.406-123.52-16.384-7.561-2.078-15.606-1.489-22.784 1.664l-84.651 37.376c-5.114 2.261-10.706 3.23-16.283 2.825-5.577-0.41-10.968-2.18-15.7-5.158s-8.66-7.074-11.438-11.93c-2.778-4.851-4.321-10.313-4.494-15.902l-2.347-75.947c-0.154-4.617-1.247-9.156-3.213-13.338s-4.764-7.919-8.222-10.982c-83.029-74.197-134.016-181.632-134.016-306.091 0-237.781 186.325-413.867 426.667-413.867zM255.787 620.245c-12.032 19.072 11.435 40.576 29.397 26.923l134.613-102.144c4.443-3.354 9.856-5.167 15.424-5.167s10.982 1.813 15.424 5.167l99.712 74.667c7.074 5.303 15.168 9.088 23.774 11.11 8.61 2.018 17.54 2.236 26.236 0.631s16.964-4.992 24.286-9.95c7.322-4.958 13.534-11.379 18.249-18.859l125.312-198.827c12.032-19.115-11.435-40.619-29.397-27.008l-134.613 102.229c-4.442 3.354-9.856 5.167-15.424 5.167s-10.982-1.813-15.424-5.167l-99.712-74.667c-7.074-5.306-15.168-9.088-23.774-11.109-8.61-2.021-17.54-2.237-26.237-0.633-8.695 1.603-16.963 4.991-24.284 9.949s-13.534 11.38-18.249 18.859l-125.312 198.827z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["messenger-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1509,
+ "id": 840,
+ "name": "messenger-fill",
+ "prevSize": 32,
+ "code": 61106
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1458
+ },
+ {
+ "icon": {
+ "paths": [
+ "M777.515 131.67c4.954 4.953 8.883 10.833 11.567 17.304 2.679 6.472 4.058 13.408 4.058 20.413s-1.378 13.941-4.058 20.413c-2.684 6.472-6.613 12.352-11.567 17.304l-48.768 48.725h49.92c21.013 0 41.826 4.14 61.239 12.183s37.056 19.833 51.913 34.695c14.857 14.862 26.641 32.505 34.679 51.922s12.173 40.227 12.169 61.242v320c0 42.436-16.858 83.132-46.861 113.139-30.007 30.003-70.703 46.861-113.139 46.861h-533.333c-42.435 0-83.131-16.858-113.137-46.861-30.006-30.007-46.863-70.703-46.863-113.139v-320c0-42.435 16.857-83.131 46.863-113.137s70.703-46.863 113.137-46.863h49.749l-48.683-48.725c-5.095-4.918-9.16-10.802-11.957-17.308s-4.27-13.504-4.334-20.586c-0.064-7.081 1.284-14.105 3.964-20.66s6.638-12.511 11.644-17.52c5.007-5.009 10.96-8.971 17.514-11.654s13.576-4.035 20.657-3.976c7.082 0.060 14.080 1.529 20.588 4.322s12.394 6.855 17.315 11.947l113.152 113.152c3.371 3.371 6.187 7.040 8.448 10.965h137.088c2.261-3.925 5.12-7.68 8.491-11.008l113.109-113.152c4.954-4.954 10.833-8.884 17.306-11.565 6.468-2.681 13.406-4.061 20.412-4.061s13.943 1.38 20.412 4.061c6.473 2.681 12.352 6.611 17.306 11.565zM778.667 362.923h-533.333c-13.461-0.005-26.427 5.081-36.295 14.237s-15.909 21.705-16.911 35.129l-0.128 4.011v320c0 28.117 21.76 51.157 49.365 53.163l3.968 0.171h533.333c13.461 0.004 26.428-5.082 36.297-14.238 9.865-9.152 15.906-21.705 16.909-35.127l0.128-3.968v-320c0-29.44-23.893-53.333-53.333-53.333v-0.043zM352 469.589c29.44 0 53.333 23.893 53.333 53.333v53.333c0 14.144-5.619 27.712-15.621 37.713s-23.567 15.62-37.712 15.62c-14.145 0-27.71-5.619-37.712-15.62s-15.621-23.569-15.621-37.713v-53.333c0-29.44 23.893-53.333 53.333-53.333zM672 469.589c29.44 0 53.333 23.893 53.333 53.333v53.333c0 14.144-5.619 27.712-15.62 37.713s-23.569 15.62-37.713 15.62c-14.144 0-27.712-5.619-37.713-15.62s-15.62-23.569-15.62-37.713v-53.333c0-29.44 23.893-53.333 53.333-53.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bilibili-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1510,
+ "id": 839,
+ "name": "bilibili-fill",
+ "prevSize": 32,
+ "code": 61107
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1459
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512.171 85.333c-223.998 0-407.721 172.8-425.129 392.405l228.693 94.549c19.371-13.227 42.752-20.992 67.968-20.992 2.261 0 4.437 0.128 6.699 0.213l101.716-147.285v-2.091c0-88.747 72.107-160.853 160.853-160.853 88.704 0 160.853 72.192 160.853 160.939s-72.192 160.896-160.853 160.896h-3.712l-144.939 103.509c0 1.835 0.128 3.755 0.128 5.675 0 66.645-53.845 120.747-120.532 120.747-58.112 0-107.221-41.728-118.4-96.981l-163.755-67.797c50.688 179.072 215.125 310.4 410.452 310.4 235.605 0 426.581-191.019 426.581-426.667 0-235.605-191.019-426.667-426.624-426.667zM301.996 711.125c9.301 19.285 25.387 35.499 46.677 44.416 46.123 19.2 99.326-2.688 118.484-48.853 9.387-22.4 9.387-46.933 0.171-69.333-9.173-22.4-26.667-39.851-48.937-49.152-22.187-9.259-45.867-8.875-66.773-1.067l54.144 22.4c34.004 14.208 50.089 53.333 35.838 87.296-14.080 34.005-53.204 50.133-87.209 35.968l-52.395-21.675zM760.235 402.005c0-59.093-48.128-107.179-107.221-107.179-59.179 0-107.179 48.085-107.179 107.179 0 59.221 48 107.221 107.179 107.221 59.136 0 107.179-48 107.179-107.221h0.043zM653.227 321.28c44.373 0 80.555 36.053 80.555 80.555s-36.139 80.555-80.555 80.555c-44.544 0-80.555-36.053-80.555-80.555s36.053-80.555 80.555-80.555z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["steam-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1511,
+ "id": 838,
+ "name": "steam-fill",
+ "prevSize": 32,
+ "code": 61108
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1460
+ },
+ {
+ "icon": {
+ "paths": [
+ "M705.28 747.947l148.053 148.053h-725.333v-725.333l455.125 0.341c6.665-0.334 13.338-0.448 20.011-0.341-3.797 15.787-5.803 32.427-5.803 49.749 0 98.944 85.973 184.917 199.125 184.917 30.891 0 60.544-8.405 86.699-22.955 21.931 72.137 15.782 149.892-17.216 217.685-32.998 67.789-90.402 120.602-160.704 147.84l0.043 0.043zM789.333 320c-28.288 0-55.42-11.238-75.426-31.242-20.002-20.004-31.241-47.135-31.241-75.425s11.238-55.421 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242s55.42 11.238 75.426 31.242c20.002 20.004 31.241 47.135 31.241 75.425s-11.238 55.421-31.241 75.425c-20.006 20.004-47.138 31.242-75.426 31.242z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["remixicon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1512,
+ "id": 837,
+ "name": "remixicon-fill",
+ "prevSize": 32,
+ "code": 61109
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1461
+ },
+ {
+ "icon": {
+ "paths": [
+ "M250.367 117.333l90.965 309.333h341.334l90.965-309.333c1.020-3.509 3.145-6.598 6.054-8.81s6.451-3.433 10.108-3.48c3.652-0.048 7.228 1.079 10.193 3.215 2.97 2.136 5.171 5.167 6.285 8.649l149.12 466.091c1.34 4.194 1.353 8.704 0.030 12.902-1.318 4.203-3.908 7.893-7.411 10.564l-436.011 332.203-436.054-332.203c-3.495-2.675-6.076-6.37-7.39-10.569-1.314-4.203-1.296-8.708 0.051-12.898l149.12-466.091c1.11-3.482 3.308-6.517 6.272-8.657s6.536-3.271 10.191-3.228c3.655 0.043 7.2 1.258 10.112 3.467s5.039 5.294 6.066 8.802v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gitlab-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1513,
+ "id": 836,
+ "name": "gitlab-fill",
+ "prevSize": 32,
+ "code": 61110
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1462
+ },
+ {
+ "icon": {
+ "paths": [
+ "M792.491 585.003c10.121-0.132 19.789-4.211 26.944-11.371 7.159-7.155 11.238-16.823 11.371-26.944 0-21.248-17.024-38.315-38.315-38.315s-38.315 17.067-38.315 38.315c0 21.333 17.067 38.315 38.315 38.315zM603.691 585.003c10.121-0.132 19.789-4.211 26.944-11.371 7.159-7.155 11.238-16.823 11.371-26.944 0-21.248-17.067-38.315-38.315-38.315-21.333 0-38.315 17.067-38.315 38.315 0 21.333 17.024 38.315 38.315 38.315zM883.883 800.043c-2.735 1.519-4.915 3.866-6.234 6.699-1.318 2.837-1.707 6.020-1.105 9.088 0 2.048 0 4.139 1.067 6.272 4.181 17.792 12.544 46.123 12.544 47.189 0 3.115 1.067 5.205 1.067 7.339 0 1.237-0.243 2.462-0.717 3.601-0.478 1.143-1.173 2.18-2.048 3.051-0.875 0.875-1.916 1.562-3.059 2.031s-2.368 0.708-3.605 0.704c-2.133 0-3.157-1.024-5.248-2.048l-61.824-35.669c-4.514-2.483-9.532-3.913-14.677-4.181-3.115 0-6.272 0-8.363 1.024-29.355 8.405-59.733 12.587-92.203 12.587-156.16 0-281.899-104.832-281.899-234.88 0-130.005 125.739-234.88 281.899-234.88 156.117 0 281.856 104.875 281.856 234.88 0 70.272-37.717 134.229-97.451 177.237v-0.043zM711.381 345.557c-3.981-0.132-7.962-0.204-11.947-0.213-178.091 0-324.523 122.027-324.523 277.547 0 23.637 3.413 46.507 9.728 68.267h-3.797c-37.28-0.375-74.348-5.658-110.251-15.701-3.157-1.067-6.315-1.067-9.472-1.067-6.306 0.132-12.462 1.946-17.835 5.248l-74.581 42.88c-2.133 1.067-4.224 2.133-6.315 2.133-3.045-0.034-5.956-1.259-8.109-3.409-2.153-2.155-3.377-5.065-3.411-8.111 0-3.157 1.024-5.248 2.091-8.405 1.024-1.024 10.496-35.584 15.744-56.491 0-2.133 1.024-5.248 1.024-7.339-0.012-3.657-0.869-7.262-2.505-10.534s-4.006-6.118-6.925-8.324c-72.491-51.328-117.632-127.701-117.632-212.523 0-155.861 152.32-281.515 339.2-281.515 160.64 0 295.68 92.544 329.515 217.515v0.043zM491.477 363.392c24.448 0 43.776-20.352 43.776-43.776 0-24.448-19.328-43.776-43.776-43.776s-43.776 19.328-43.776 43.776c0 24.448 19.328 43.776 43.776 43.776zM267.051 363.392c24.448 0 43.819-20.352 43.819-43.776 0-24.448-19.371-43.776-43.819-43.776-24.405 0-43.776 19.328-43.776 43.776s19.371 43.776 43.776 43.776z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wechat-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1514,
+ "id": 835,
+ "name": "wechat-fill",
+ "prevSize": 32,
+ "code": 61111
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1463
+ },
+ {
+ "icon": {
+ "paths": [
+ "M371.627 271.573c-47.275 55.68-77.781 138.069-79.915 230.4v20.053c2.176 92.373 32.683 174.635 79.872 230.4 61.184 79.445 152.149 129.877 253.867 129.877 60.881-0.137 120.354-18.342 170.88-52.309-83.273 74.846-192.768 113.728-304.597 108.16-109.529-5.188-212.853-52.352-288.527-131.703-75.674-79.356-117.886-184.798-117.873-294.451 0-235.691 191.061-426.667 426.667-426.667h1.579c104.401 0.28 205.056 38.944 282.795 108.629-50.598-33.918-110.093-52.117-171.008-52.309-101.632 0-192.597 50.475-253.867 129.92h0.128zM938.667 512c0.077 60.053-12.561 119.441-37.090 174.255-24.525 54.818-60.378 103.821-105.203 143.782-109.44 53.333-211.413 16.043-245.205-7.253 107.52-23.637 188.715-153.6 188.715-310.784 0-157.227-81.195-287.147-188.715-310.741 33.749-23.253 135.765-60.587 245.205-7.296 44.83 39.959 80.687 88.96 105.212 143.777s37.163 114.207 37.082 174.26z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["opera-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1515,
+ "id": 834,
+ "name": "opera-fill",
+ "prevSize": 32,
+ "code": 61112
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1464
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 853.419v-227.499h85.333v312.875h-682.667v-312.875h85.333v227.541l512-0.043zM324.224 628.736l13.355-84.48 377.045 72.533-4.821 67.669-385.579-55.723zM375.424 435.371l31.232-68.267 341.248 159.275-31.275 68.224-341.205-159.232zM472.064 267.605l48.341-56.875 290.048 241.707-48.341 56.875-290.048-241.707zM656.896 91.307l224.64 301.397-59.733 45.525-224.597-301.44 59.691-45.483zM312.832 796.501v-85.333h398.080v85.333h-398.080z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stack-overflow-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1516,
+ "id": 833,
+ "name": "stack-overflow-fill",
+ "prevSize": 32,
+ "code": 61113
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1465
+ },
+ {
+ "icon": {
+ "paths": [
+ "M506.496 928.597c-50.773 0-84.651-23.936-114.901-45.056-21.461-15.232-41.643-29.696-65.408-33.707-11.315-1.946-22.78-2.889-34.261-2.816-20.139 0-36.139 3.029-47.531 5.333-7.253 1.28-13.312 2.475-18.091 2.475-4.949 0-11.221-1.365-13.653-9.728-2.133-6.827-3.456-13.312-4.779-19.584-3.413-15.787-6.272-25.472-12.203-26.453-63.531-9.685-101.547-24.32-108.971-41.643-0.597-1.877-1.323-3.84-1.323-5.333-0.427-5.333 3.413-9.685 8.747-10.667 50.389-8.363 95.659-35.157 133.888-79.275 29.696-34.261 44.16-67.371 45.483-70.955 0-0.427 0.384-0.427 0.384-0.427 7.253-14.976 8.747-27.733 4.352-38.187-8.149-19.627-35.2-27.989-53.632-33.707-4.736-1.28-8.747-2.816-12.16-3.968-15.787-6.272-42.069-19.627-38.613-38.059 2.475-13.312 20.139-22.827 34.603-22.827 4.011 0 7.424 0.597 10.24 2.133 16.213 7.381 30.848 11.179 43.392 11.179 15.616 0 23.040-5.888 24.917-7.765-0.397-8.439-0.895-16.875-1.493-25.301-3.84-58.24-8.192-130.517 10.24-171.947 55.381-124.032 172.928-133.973 207.744-133.973l15.189-0.341h2.133c34.773 0 152.32 9.685 207.701 133.931 18.645 41.429 14.080 113.92 10.24 171.947l-0.341 2.859c-0.427 7.765-0.981 15.189-1.365 22.827 1.92 1.493 8.747 7.211 22.827 7.381 12.203-0.341 25.515-4.352 40.704-11.221 4.207-1.818 8.73-2.778 13.312-2.816 5.333 0 10.667 1.28 15.232 2.816h0.384c12.757 4.779 21.12 13.696 21.12 23.040 0.384 8.747-6.485 22.059-38.997 35.2-3.413 1.28-7.424 2.859-12.16 3.968-18.091 5.547-45.099 14.293-53.675 33.707-4.736 10.24-2.816 23.381 4.395 38.187 0 0.427 0.384 0.427 0.384 0.427 2.091 5.291 57.045 130.091 179.371 150.443 2.5 0.422 4.766 1.732 6.37 3.695 1.609 1.963 2.453 4.437 2.377 6.972 0 1.877-0.384 3.797-1.323 5.504-7.424 17.493-45.099 31.744-109.013 41.643-5.888 0.939-8.747 10.667-12.16 26.453-1.365 6.579-2.961 13.111-4.779 19.584-1.877 6.272-5.888 9.685-12.715 9.685h-0.981c-4.352 0-10.24-0.555-18.048-2.091-15.637-3.332-31.586-4.992-47.573-4.949-11.221 0-22.827 0.981-34.219 2.859-23.595 3.84-43.947 18.475-65.451 33.707-30.592 20.907-64.64 44.843-115.072 44.843h-10.837z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["snapchat-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1517,
+ "id": 832,
+ "name": "snapchat-fill",
+ "prevSize": 32,
+ "code": 61114
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1466
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667 0 176.213-106.837 327.509-259.285 392.576l-107.435-279.467c40.491-21.461 68.053-64.043 68.053-113.109 0-70.699-57.301-128-128-128s-128 57.301-128 128c0 49.067 27.605 91.648 68.096 113.152l-107.435 279.467c-152.491-65.152-259.328-216.405-259.328-392.619 0-235.648 191.019-426.667 426.667-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["open-source-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1518,
+ "id": 831,
+ "name": "open-source-fill",
+ "prevSize": 32,
+ "code": 61115
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1467
+ },
+ {
+ "icon": {
+ "paths": [
+ "M395.52 625.877c-6.525 3.328-14.088 3.994-21.094 1.852s-12.905-6.921-16.453-13.329l-1.835-4.053-77.568-170.581c-0.318-2.048-0.318-4.139 0-6.187-0.006-1.865 0.361-3.712 1.081-5.431 0.72-1.721 1.777-3.28 3.11-4.585s2.913-2.329 4.648-3.012c1.735-0.684 3.59-1.012 5.454-0.966 3.031-0.064 5.988 0.932 8.363 2.816l93.013 65.152c6.896 4.612 14.999 7.091 23.296 7.125 5.001 0.026 9.958-0.93 14.592-2.816l428.672-192c-43.964-48.558-97.839-87.115-157.982-113.069s-125.158-38.698-190.647-37.374c-235.776 0-426.837 159.147-426.837 357.035 1.382 53.308 15.504 105.51 41.187 152.243 25.683 46.737 62.18 86.643 106.44 116.386 4.71 3.473 8.224 8.324 10.059 13.879s1.898 11.546 0.181 17.139l-19.2 72.576c-1.167 3.302-1.899 6.746-2.176 10.24-0.041 1.882 0.3 3.755 1.002 5.5 0.702 1.749 1.75 3.337 3.081 4.668s2.919 2.381 4.666 3.081c1.748 0.704 3.619 1.045 5.501 1.003 2.863-0.154 5.645-1.003 8.107-2.475l93.013-53.973c6.827-4.181 14.635-6.443 22.656-6.485 4.224 0 8.405 0.597 12.373 1.835 45.355 12.8 92.203 19.285 139.307 19.2 235.733 0 427.093-159.104 427.093-355.413 0.448-58.547-15.787-116.015-46.805-165.675l-496.299 285.696z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wechat-pay-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1519,
+ "id": 830,
+ "name": "wechat-pay-fill",
+ "prevSize": 32,
+ "code": 61116
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1468
+ },
+ {
+ "icon": {
+ "paths": [
+ "M675.84 541.483l-2.859 0.853c-5.739 1.69-11.682 2.581-17.664 2.645-26.027 0-40.704-17.579-32.853-39.296 5.803-15.872 20.949-29.269 39.467-35.456 28.672-10.453 48.725-34.304 48.725-62.080 0-37.419-36.395-67.712-81.28-67.712s-81.237 30.293-81.237 67.712v207.701c0 49.92-28.971 93.739-72.277 118.528-24.751 14.101-52.754 21.483-81.237 21.419-84.651 0-153.515-62.763-153.515-139.947 0-24.576 6.997-47.659 19.243-67.712 18.944-31.147 50.517-54.912 88.32-65.749 6.348-2.022 12.965-3.072 19.627-3.115 26.112 0 40.875 17.664 32.981 39.424-5.376 14.805-19.883 27.52-36.736 34.261-2.001 0.67-3.98 1.412-5.931 2.219-26.795 11.093-45.269 34.048-45.269 60.672 0 37.419 36.395 67.712 81.28 67.712s81.237-30.293 81.237-67.712v-207.701c0-49.92 28.971-93.739 72.277-118.528 24.751-14.099 52.753-21.483 81.237-21.419 84.651 0 153.515 62.763 153.515 139.947 0 24.576-6.997 47.659-19.243 67.712-18.859 30.976-50.261 54.699-87.808 65.621zM85.333 512c0 235.648 191.019 426.667 426.667 426.667s426.667-191.019 426.667-426.667c0-235.648-191.019-426.667-426.667-426.667s-426.667 191.019-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mini-program-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1520,
+ "id": 829,
+ "name": "mini-program-fill",
+ "prevSize": 32,
+ "code": 61117
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1469
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM379.307 561.92l0.555-0.299 37.12 122.453c4.779 13.269 11.349 15.659 19.328 14.549 8.021-1.067 12.245-5.376 17.493-10.411l50.688-48.981 108.8 80.555c19.883 10.965 34.176 5.291 39.125-18.432l70.699-333.739c7.808-31.061-5.845-43.52-29.952-33.621l-415.275 160.427c-28.331 11.349-28.16 27.221-5.12 34.261l106.539 33.237z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["telegram-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1521,
+ "id": 828,
+ "name": "telegram-fill",
+ "prevSize": 32,
+ "code": 61118
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1470
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667c234.667 0 426.667-192 426.667-426.667s-192-426.667-426.667-426.667zM274.304 749.696c-64-64-97.536-149.333-97.536-231.595l332.203 329.131c-85.333-3.029-170.667-33.536-234.667-97.536zM585.131 838.101l-399.232-399.232c33.536-149.333 167.637-262.101 326.101-262.101 112.768 0 210.304 54.869 271.232 137.131l-45.696 39.637c-51.883-70.101-134.101-115.883-225.536-115.883-118.869 0-219.435 76.203-259.029 182.869l350.464 350.464c88.363-30.464 155.435-106.667 176.768-198.059h-146.304v-60.928h213.333c0 158.464-112.768 292.565-262.101 326.101z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gatsby-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1522,
+ "id": 827,
+ "name": "gatsby-fill",
+ "prevSize": 32,
+ "code": 61119
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1471
+ },
+ {
+ "icon": {
+ "paths": [
+ "M130.731 320.427c35.499-70.688 89.957-130.112 157.288-171.628s144.882-63.49 223.982-63.465c114.987 0 211.584 42.24 285.44 111.147l-122.325 122.368c-44.245-42.283-100.48-63.829-163.115-63.829-111.147 0-205.227 75.093-238.72 175.915-8.533 25.6-13.397 52.907-13.397 81.067s4.864 55.467 13.397 81.067c33.536 100.864 127.573 175.915 238.72 175.915 57.387 0 106.24-15.147 144.469-40.747 22.161-14.592 41.135-33.527 55.774-55.659s24.636-47.002 29.389-73.109h-229.632v-165.035h401.835c5.035 27.904 7.765 57.003 7.765 87.253 0 129.963-46.507 239.36-127.232 313.6-70.571 65.195-167.168 103.381-282.368 103.381-56.038 0.021-111.529-10.999-163.305-32.431-51.776-21.436-98.82-52.864-138.444-92.489-39.624-39.62-71.051-86.665-92.486-138.441s-32.454-107.268-32.432-163.307c0-68.864 16.469-133.973 45.397-191.573z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["google-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1523,
+ "id": 826,
+ "name": "google-fill",
+ "prevSize": 32,
+ "code": 61120
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1472
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 233.771l314.752-43.349v304.085h-314.752v-260.736zM128 790.229l314.752 43.392v-300.373h-314.752v256.981zM477.355 838.229l418.645 57.771v-362.752h-418.645v304.981zM477.355 185.771v308.736h418.645v-366.507l-418.645 57.771z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["windows-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1524,
+ "id": 825,
+ "name": "windows-fill",
+ "prevSize": 32,
+ "code": 61121
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1473
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 512c0 235.605-191.019 426.667-426.667 426.667s-426.667-191.061-426.667-426.667c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667zM221.867 454.997c-15.107 0-29.595 6.003-40.277 16.683-10.682 10.684-16.683 25.169-16.683 40.277s6.001 29.594 16.683 40.277c10.682 10.679 25.17 16.683 40.277 16.683s29.595-6.003 40.277-16.683c10.682-10.684 16.683-25.169 16.683-40.277s-6.001-29.594-16.683-40.277c-10.682-10.679-25.17-16.683-40.277-16.683zM628.608 713.941c-6.622 3.657-12.45 8.602-17.139 14.537s-8.149 12.749-10.176 20.036c-2.027 7.292-2.581 14.908-1.626 22.413 0.951 7.509 3.392 14.746 7.172 21.299 3.785 6.549 8.836 12.284 14.861 16.858 6.025 4.578 12.902 7.906 20.228 9.796 7.326 1.886 14.955 2.295 22.438 1.199 7.488-1.092 14.682-3.669 21.158-7.578 12.766-7.701 22.003-20.1 25.724-34.539 3.716-14.434 1.626-29.756-5.828-42.662-7.458-12.911-19.678-22.383-34.044-26.377-14.362-3.994-29.722-2.193-42.769 5.018zM345.6 512c0-56.32 27.989-106.027 70.784-136.107l-41.643-69.803c-50.604 33.767-87.032 84.955-102.357 143.829 9.229 7.501 16.669 16.964 21.78 27.703s7.762 22.485 7.762 34.377c0 11.891-2.652 23.637-7.762 34.377s-12.551 20.203-21.78 27.703c15.314 58.867 51.727 110.054 102.315 143.829l41.685-69.803c-21.874-15.322-39.729-35.695-52.052-59.388-12.323-23.697-18.748-50.014-18.732-76.719zM512 345.6c41.57 0.007 81.634 15.574 112.307 43.638 30.669 28.064 49.724 66.592 53.41 108l81.195-1.195c-3.861-60.74-30.046-117.911-73.515-160.512-11.093 4.219-22.985 5.913-34.812 4.959-11.831-0.954-23.3-4.531-33.57-10.473-10.274-5.941-19.093-14.097-25.818-23.875-6.729-9.777-11.191-20.931-13.065-32.649-58.658-16.141-121.199-10.221-175.787 16.64l39.552 70.955c21.956-10.222 45.884-15.508 70.101-15.488zM512 678.4c-25.045 0-48.768-5.547-70.101-15.488l-39.552 70.912c54.528 27.076 117.15 33.003 175.787 16.64 1.873-11.716 6.336-22.874 13.065-32.649 6.724-9.779 15.543-17.933 25.818-23.876 10.27-5.939 21.739-9.519 33.57-10.47 11.827-0.956 23.718 0.738 34.812 4.958 43.465-42.603 69.649-99.772 73.515-160.512l-81.195-1.152c-3.669 41.417-22.716 79.953-53.393 108.023-30.673 28.066-70.746 43.627-112.324 43.614zM628.565 310.059c6.481 3.862 13.666 6.398 21.137 7.459s15.078 0.629 22.379-1.274c7.305-1.903 14.153-5.237 20.156-9.81s11.038-10.292 14.81-16.827c3.772-6.534 6.212-13.753 7.172-21.238 0.956-7.484 0.422-15.085-1.583-22.359-2.001-7.275-5.427-14.080-10.082-20.019s-10.445-10.895-17.028-14.578c-13.069-7.309-28.484-9.179-42.923-5.206-14.434 3.973-26.722 13.47-34.21 26.435s-9.566 28.358-5.794 42.846c3.776 14.488 13.103 26.907 25.967 34.57z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ubuntu-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1525,
+ "id": 824,
+ "name": "ubuntu-fill",
+ "prevSize": 32,
+ "code": 61122
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1474
+ },
+ {
+ "icon": {
+ "paths": [
+ "M367.444 858.453c-117.077 63.573-218.155 76.757-274.005 20.907-57.344-57.173-26.795-206.976 56.021-357.248 42.071-76.437 94.063-146.981 154.624-209.792 7.979-7.979 48-47.957 50.645-47.957 0 0-21.333 13.355-23.979 13.355-83.2 46.72-156.288 131.413-172.245 150.4 20.184-90.059 72.115-169.841 146.293-224.754s165.649-81.287 257.676-74.297c132.053-59.819 254.891-73.643 306.859-21.76 48 47.915 45.312 127.787 5.333 223.659-0.427 0.896-0.768 1.835-1.152 2.731 28.873 54.993 43.913 116.19 43.819 178.304 0 16.213-0.981 32.128-2.944 47.787h-34.304c-2.022 0.077-4.041 0.119-6.059 0.128h-503.298v7.979c2.645 85.205 77.314 159.744 167.98 159.744 64 0 125.312-34.603 151.979-85.205h203.947c-18.231 50.492-46.839 96.602-83.985 135.356s-82.001 69.295-131.674 89.647c-49.673 20.356-103.057 30.071-156.719 28.527-53.658-1.549-106.396-14.327-154.813-37.508zM341.545 844.757c-78.549-45.389-138.563-117.035-169.472-202.325-49.536 97.365-62.293 178.773-20.011 221.013 34.688 34.645 104.021 26.624 189.355-18.603l0.128-0.085zM860.672 311.125c0.209-0.484 0.422-0.967 0.64-1.451 32-69.205 34.688-127.744 5.333-162.389-37.077-37.035-108.373-32-192.939 7.168 77.641 30.602 143.249 85.581 186.965 156.672zM706.688 458.752v-2.603c-5.333-87.894-74.667-154.454-160-154.454-90.667 0-167.938 71.893-173.271 154.454v2.645l333.271-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ie-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1526, "id": 823, "name": "ie-fill", "prevSize": 32, "code": 61123 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1475
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c-235.648 0-426.667 191.019-426.667 426.667 0 212.949 156.032 389.461 360.021 421.504v-298.197h-108.373v-123.307h108.373v-93.995c0-106.923 63.659-165.973 161.152-165.973 46.677 0 95.488 8.32 95.488 8.32v104.96h-53.76c-53.035 0-69.547 32.896-69.547 66.645v80.043h118.315l-18.901 123.307h-99.413v298.197c203.947-32 359.979-208.597 359.979-421.504 0-235.648-191.019-426.667-426.667-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["facebook-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1527,
+ "id": 822,
+ "name": "facebook-circle-fill",
+ "prevSize": 32,
+ "code": 61124
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1476
+ },
+ {
+ "icon": {
+ "paths": [
+ "M50.049 354.176c-11.989-17.621-10.752-17.621 13.995-39.339 52.565-46.165 102.144-96.683 159.403-137.045 51.84-36.352 120.576-59.819 167.552-2.005 43.263 53.291 44.287 134.059 55.252 198.4 10.965 66.731 21.461 134.997 44.843 198.827 6.485 17.963 18.901 51.925 41.301 54.784 28.928 3.968 58.368-46.763 71.808-65.707 34.859-50.347 82.133-118.144 76.16-182.869-5.888-68.779-80.128-55.851-126.549-39.424 7.467-77.184 79.275-163.968 148.48-193.28 73.387-30.464 182.443-29.952 219.307 52.779 39.381 89.685 3.968 193.835-38.912 275.115-46.805 88.235-107.051 169.899-171.435 246.187-56.789 67.755-123.989 142.080-208.64 174.464-96.724 36.864-154.025-34.987-186.964-118.187-35.968-90.581-53.845-192.256-79.787-286.592-10.923-39.851-23.893-85.205-49.792-118.101-33.792-42.453-72.192-2.56-105.557 20.352-11.477-11.392-20.949-25.899-30.464-38.357z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vimeo-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1528,
+ "id": 821,
+ "name": "vimeo-fill",
+ "prevSize": 32,
+ "code": 61125
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1477
+ },
+ {
+ "icon": {
+ "paths": [
+ "M317.568 228.267c27.264 0 52.48 2.133 75.52 8.448 20.907 3.842 40.866 11.726 58.752 23.211 16.811 10.539 29.397 25.344 37.76 44.331 8.405 18.987 12.587 42.24 12.587 67.541 0 29.568-6.272 54.869-20.949 73.856-12.587 19.029-33.579 35.883-58.752 48.555 35.669 10.581 62.933 29.568 79.701 54.869 16.811 25.344 27.307 57.003 27.307 92.885 0 29.568-6.315 54.869-16.811 75.989s-27.264 40.107-46.165 52.779c-20.531 13.585-43.228 23.569-67.115 29.525-25.173 6.357-50.347 10.581-75.52 10.581h-281.216v-582.57h274.901zM300.757 464.64c23.083 0 41.984-6.315 56.661-16.853s20.992-29.568 20.992-52.778c0-12.672-2.133-25.344-6.315-33.749-4.181-8.448-10.496-14.805-18.859-21.12-8.405-4.224-16.811-8.448-27.307-10.539-10.496-2.133-20.949-2.133-33.579-2.133h-121.685v137.216l130.091-0.043zM307.072 713.728c12.587 0 25.173-2.133 35.669-4.224 10.597-2.014 20.62-6.34 29.355-12.672 8.55-6.178 15.703-14.084 20.992-23.211 4.181-10.539 8.405-23.211 8.405-37.973 0-29.568-8.405-50.688-25.173-65.451-16.811-12.672-39.893-18.987-67.157-18.987h-138.496v162.56l136.405-0.043zM712.064 711.595c16.768 16.896 41.941 25.344 75.52 25.344 23.083 0 44.075-6.315 60.843-16.853 16.811-12.672 27.307-25.344 31.488-38.016h102.827c-16.811 50.645-41.984 86.528-75.52 109.739-33.621 21.12-73.472 33.792-121.728 33.792-30.874 0.094-61.491-5.641-90.24-16.896-25.869-9.702-48.939-25.651-67.157-46.421-19.486-19.43-33.89-43.358-41.941-69.675-10.496-27.435-14.72-56.96-14.72-90.752 0-31.659 4.224-61.184 14.72-88.661 10.091-26.449 25.024-50.786 44.032-71.765 18.901-18.986 41.984-35.84 67.157-46.421 28.019-11.261 57.95-16.999 88.149-16.896 35.669 0 67.157 6.357 94.421 21.12 27.307 14.763 48.256 31.658 65.067 57.002 17.148 24.341 29.926 51.486 37.76 80.213 4.181 29.525 6.272 59.093 4.181 92.843h-304.256c0 33.792 12.587 65.451 29.397 82.347v-0.043zM844.245 489.984c-14.677-14.763-37.76-23.211-65.067-23.211-18.859 0-33.579 4.224-46.165 10.539-12.587 6.357-20.949 14.805-29.355 23.253-7.723 8.162-12.834 18.441-14.677 29.525-2.133 10.581-4.224 18.987-4.224 27.435h188.843c-4.181-31.659-14.677-52.736-29.355-67.541zM659.584 268.374h235.008v57.003h-234.965v-57.003h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["behance-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1529,
+ "id": 820,
+ "name": "behance-fill",
+ "prevSize": 32,
+ "code": 61126
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1478
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM568.917 512h-120.917v-128h120.917c16.973 0 33.254 6.743 45.257 18.745s18.743 28.282 18.743 45.255c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743zM568.917 298.667h-206.251v426.667h85.333v-128h120.917c39.607 0 77.589-15.731 105.596-43.738s43.738-65.988 43.738-105.596c0-39.606-15.731-77.589-43.738-105.594s-65.988-43.739-105.596-43.739z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["product-hunt-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1530,
+ "id": 819,
+ "name": "product-hunt-fill",
+ "prevSize": 32,
+ "code": 61127
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1479
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM298.155 600.107c-2.56 11.392-3.84 23.68-3.84 33.707 0 39.552 20.565 65.792 64.341 65.792 36.309 0 65.749-22.443 86.955-58.667l-12.928 54.059h72.107l41.216-171.989c10.283-43.52 30.293-66.133 60.544-66.133 23.808 0 38.613 15.36 38.613 40.832 0 7.381-0.64 15.403-3.2 24.107l-21.248 79.061c-3.038 10.906-4.561 22.174-4.523 33.493 0 37.547 21.248 64.981 65.707 64.981 37.973 0 68.267-25.429 84.992-86.4l-28.331-11.392c-14.165 40.875-26.453 48.213-36.096 48.213s-14.805-6.656-14.805-20.053c0-6.016 1.28-12.715 3.243-20.779l20.608-77.013c5.12-18.091 7.083-34.133 7.083-48.853 0-57.6-33.493-87.68-74.069-87.68-37.973 0-76.629 35.627-95.915 73.173l14.123-67.371h-110.080l-15.488 59.307h51.541l-31.744 132.181c-24.875 57.6-70.656 58.539-76.373 57.173-9.472-2.176-15.488-5.931-15.488-18.688 0-7.339 1.28-17.92 4.523-30.635l48.299-199.339h-122.368l-15.445 59.307h50.859l-32.853 139.605h0.043zM368 368c12.73 0 24.94-5.057 33.941-14.059s14.059-21.211 14.059-33.941c0-12.73-5.057-24.94-14.059-33.941s-21.211-14.059-33.941-14.059c-12.73 0-24.94 5.057-33.941 14.059s-14.059 21.211-14.059 33.941c0 12.73 5.057 24.94 14.059 33.941s21.211 14.059 33.941 14.059z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["invision-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1531,
+ "id": 818,
+ "name": "invision-fill",
+ "prevSize": 32,
+ "code": 61128
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1480
+ },
+ {
+ "icon": {
+ "paths": [
+ "M570.453 89.344c-102.093-14.043-205.815 9.325-292.019 65.79s-149.068 142.214-176.983 241.413c-27.914 99.197-18.995 205.147 25.112 298.284 44.107 93.133 120.422 167.164 214.854 208.422-2.554-32.777-0.209-65.749 6.955-97.835 7.893-35.797 55.296-233.088 55.296-233.088-9.439-21.158-14.156-44.117-13.824-67.285 0-63.36 36.565-110.635 82.049-110.635 8.171-0.119 16.269 1.523 23.748 4.814 7.484 3.291 14.165 8.154 19.597 14.259s9.489 13.307 11.887 21.119c2.402 7.812 3.093 16.047 2.027 24.149 0 38.4-24.661 96.512-37.547 151.040-2.547 10.001-2.709 20.459-0.474 30.532s6.81 19.482 13.346 27.465c6.541 7.987 14.861 14.319 24.299 18.496 9.438 4.181 19.721 6.080 30.029 5.555 80.981 0 135.253-103.723 135.253-226.176 0-93.867-62.165-164.181-176.768-164.181-27.422-1.065-54.767 3.453-80.388 13.28-25.619 9.827-48.973 24.759-68.646 43.889s-35.251 42.057-45.791 67.391c-10.54 25.332-15.822 52.545-15.523 79.984-1.222 30.434 8.598 60.288 27.648 84.053 3.56 2.658 6.159 6.4 7.406 10.662 1.247 4.267 1.073 8.819-0.494 12.975-1.963 7.851-6.912 26.581-8.875 33.451-0.408 2.33-1.358 4.531-2.772 6.426s-3.255 3.435-5.372 4.489c-2.117 1.054-4.452 1.596-6.817 1.583s-4.694-0.58-6.799-1.66c-59.051-23.637-86.869-88.619-86.869-162.816 0-121.472 101.717-266.88 305.239-266.88 161.963 0 269.653 118.485 269.653 245.205 0 166.784-92.885 292.181-230.144 292.181-20.514 0.657-40.866-3.87-59.166-13.163s-33.963-23.049-45.538-40c0 0-24.661 98.816-29.525 117.504-9.93 32.286-24.581 62.925-43.479 90.923 39.383 11.947 80.3 17.92 121.431 17.749 56.047 0.047 111.548-10.965 163.332-32.401s98.833-52.877 138.449-92.523c39.62-39.646 71.027-86.711 92.425-138.513 21.402-51.802 32.371-107.311 32.29-163.358-0.055-103.040-37.385-202.581-105.105-280.244s-161.25-128.201-263.322-142.284l-0.085-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pinterest-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1532,
+ "id": 817,
+ "name": "pinterest-fill",
+ "prevSize": 32,
+ "code": 61129
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1481
+ },
+ {
+ "icon": {
+ "paths": [
+ "M696.064 816.555h173.44c3.477-0.004 6.921 0.674 10.138 2.001 3.213 1.327 6.135 3.277 8.597 5.73 2.458 2.458 4.412 5.376 5.743 8.589s2.018 6.656 2.018 10.133v26.496c0.004 3.477-0.674 6.921-2.001 10.138-1.327 3.213-3.277 6.135-5.73 8.597-2.458 2.458-5.376 4.412-8.589 5.743s-6.656 2.018-10.133 2.018h-715.093c-7.016 0-13.744-2.786-18.705-7.748s-7.748-11.691-7.748-18.705v-26.496c-0.006-3.477 0.675-6.921 2.001-10.138 1.327-3.213 3.275-6.135 5.731-8.597 2.457-2.458 5.375-4.412 8.588-5.743s6.656-2.018 10.133-2.018h160.171l-40.96-132.437h93.44c5.571-0.013 11.004 1.732 15.524 4.988s7.898 7.859 9.649 13.146l38.059 114.304h149.931l52.267-172.16h-411.861c-7.016 0-13.744-2.786-18.705-7.748s-7.748-11.691-7.748-18.705v-304.555c0-7.016 2.787-13.744 7.748-18.705s11.69-7.748 18.705-7.748h582.656c7.014 0 13.743 2.787 18.705 7.748s7.748 11.69 7.748 18.705v304.555c0 7.014-2.786 13.743-7.748 18.705s-11.691 7.748-18.705 7.748h-54.997l-52.267 172.16zM167.723 128h688.555c7.014 0 13.743 2.787 18.705 7.748s7.748 11.69 7.748 18.705v26.496c0.004 3.477-0.674 6.922-2.001 10.136s-3.277 6.135-5.73 8.596c-2.458 2.461-5.376 4.413-8.589 5.745s-6.656 2.018-10.133 2.018h-688.555c-7.016 0-13.744-2.787-18.705-7.748s-7.748-11.69-7.748-18.705v-26.539c0-7.008 2.781-13.731 7.733-18.69s11.669-7.752 18.678-7.763h0.043zM306.773 366.336c-0.872-0.006-1.737 0.161-2.544 0.491s-1.542 0.816-2.16 1.431c-0.619 0.615-1.109 1.346-1.445 2.151s-0.507 1.669-0.507 2.541v172.16c0 3.669 2.987 6.613 6.656 6.613h410.453c3.669 0 6.656-2.987 6.656-6.613v-172.203c0-0.872-0.171-1.736-0.508-2.541-0.333-0.805-0.828-1.536-1.446-2.151-0.614-0.614-1.353-1.101-2.159-1.431s-1.673-0.497-2.543-0.491l-410.453 0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["douban-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1533,
+ "id": 816,
+ "name": "douban-fill",
+ "prevSize": 32,
+ "code": 61130
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1482
+ },
+ {
+ "icon": {
+ "paths": [
+ "M849.621 619.904c-8.759-27.119-18.364-53.952-28.8-80.469l-38.827-95.829c0-1.109 0.512-19.968 0.512-29.696 0-163.883-78.208-328.576-270.507-328.576s-270.508 164.693-270.508 328.533c0 9.771 0.469 28.629 0.512 29.739l-38.827 95.829c-10.581 27.435-21.12 55.979-28.8 80.469-36.693 116.779-24.789 165.12-15.744 166.187 19.413 2.304 75.563-87.893 75.563-87.893 0 52.224 27.179 120.405 86.016 169.643-21.973 6.699-48.939 17.024-66.304 29.653-15.573 11.392-13.611 23.040-10.795 27.733 12.331 20.523 211.414 13.099 268.929 6.699 57.472 6.4 256.597 13.824 268.885-6.741 2.816-4.693 4.779-16.299-10.795-27.691-17.365-12.629-44.331-22.955-66.347-29.696 58.837-49.195 86.016-117.376 86.016-169.643 0 0 56.149 90.24 75.563 87.893 9.045-1.067 20.907-49.365-15.787-166.144z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qq-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1534, "id": 815, "name": "qq-fill", "prevSize": 32, "code": 61131 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1483
+ },
+ {
+ "icon": {
+ "paths": [
+ "M232.832 775.893c-89.557-64.341-147.499-161.493-147.499-267.819 0-195.627 190.933-354.475 426.667-354.475s426.667 158.848 426.667 354.475c0 195.584-190.933 354.432-426.667 354.432-47.245 0.282-94.278-6.345-139.605-19.669-3.925-1.28-9.216-1.28-13.141-1.28-7.893 0-15.787 2.56-22.4 6.528l-93.483 53.803c-2.4 1.459-5.097 2.364-7.893 2.645-3.826-0.021-7.49-1.545-10.203-4.245-2.713-2.697-4.259-6.349-4.303-10.176 0-3.968 1.28-6.571 2.645-10.539 1.28-1.28 13.141-44.629 19.755-70.869 0-2.645 1.28-6.571 1.28-9.216 0-10.496-3.925-18.347-11.819-23.595zM369.792 448.469c30.592 0 54.827-24.235 54.827-54.827 0-30.635-24.235-54.869-54.827-54.869-30.635 0-54.827 24.235-54.827 54.869 0 30.592 24.192 54.827 54.827 54.827zM654.208 448.469c30.635 0 54.827-24.235 54.827-54.827 0-30.635-24.192-54.869-54.827-54.869-30.592 0-54.827 24.235-54.827 54.869 0 30.592 24.235 54.827 54.827 54.827z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wechat-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1535,
+ "id": 814,
+ "name": "wechat-2-fill",
+ "prevSize": 32,
+ "code": 61132
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1484
+ },
+ {
+ "icon": {
+ "paths": [
+ "M231.168 833.152c77.662 68.156 177.504 105.668 280.832 105.515 103.364 0.141 203.243-37.367 280.96-105.515 66.731-67.968-153.472-309.632-280.96-405.931-127.36 96.299-347.733 337.963-280.832 405.931zM627.968 320.939c88.917 105.301 266.112 366.72 216.064 459.093 61.372-75.785 94.788-170.385 94.635-267.904 0.077-56.486-11.106-112.417-32.905-164.527-21.794-52.11-53.76-99.351-94.029-138.961 0 0-0.939-0.768-2.901-1.493-3.221-1.121-6.613-1.67-10.027-1.621-21.035 0-70.571 15.445-170.837 115.413zM215.254 207.189c-2.048 0.725-2.901 1.451-3.072 1.493-40.239 39.619-72.18 86.857-93.96 138.958s-32.96 108.018-32.888 164.487c0 101.504 35.499 194.603 94.635 267.861-49.835-92.629 127.232-353.835 216.149-459.008-100.267-100.053-149.888-115.413-170.837-115.413-3.405-0.111-6.799 0.455-9.984 1.664v-0.085l-0.043 0.043zM512 211.584c0 0-104.704-61.269-186.453-64.171-32.128-1.152-51.712 10.496-54.101 12.032 76.245-51.157 157.312-74.112 240-74.112h0.555c82.987 0 163.755 22.955 240.555 74.112-2.389-1.621-21.845-13.227-54.016-12.032-81.792 2.901-186.539 64-186.539 64v0.171z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["xbox-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1536,
+ "id": 813,
+ "name": "xbox-fill",
+ "prevSize": 32,
+ "code": 61133
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1485
+ },
+ {
+ "icon": {
+ "paths": [
+ "M963.584 725.803c-18.347 23.168-63.232 39.68-63.232 39.68l-334.208 120.192v-88.661l245.931-87.765c27.947-9.984 32.213-24.149 9.515-31.573-22.613-7.467-63.616-5.333-91.563 4.736l-163.84 57.771v-91.947l9.387-3.2c0 0 47.36-16.811 113.963-24.192 66.56-7.339 148.139 1.024 212.139 25.301 72.107 22.827 80.213 56.448 61.909 79.616v0.043zM597.931 574.891v-226.645c0-26.624-4.864-51.115-29.824-58.027-19.072-6.144-30.933 11.605-30.933 38.187v567.595l-152.915-48.597v-676.736c65.022 12.075 159.742 40.661 210.643 57.813 129.493 44.501 173.397 99.925 173.397 224.725 0 121.643-75.008 167.765-170.325 121.685h-0.043zM103.725 787.797c-74.027-20.907-86.357-64.427-52.608-89.472 31.189-23.125 84.224-40.533 84.224-40.533l219.221-78.080v89.003l-157.739 56.533c-27.861 9.984-32.171 24.149-9.515 31.573 22.656 7.467 63.701 5.333 91.605-4.693l75.648-27.477v79.573l-15.061 2.56c-75.691 12.373-156.331 7.211-235.776-18.987z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["playstation-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1537,
+ "id": 812,
+ "name": "playstation-fill",
+ "prevSize": 32,
+ "code": 61134
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1486
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 283.904c34.547 27.116 62.473 61.737 81.66 101.239 19.191 39.503 29.141 82.854 29.103 126.771 0.026 43.904-9.933 87.236-29.12 126.724-19.191 39.488-47.108 74.095-81.643 101.201-34.539-27.11-62.46-61.726-81.651-101.218-19.189-39.497-29.144-82.837-29.111-126.75-0.032-43.908 9.923-87.252 29.111-126.747 19.191-39.495 47.113-74.108 81.651-101.22zM474.88 259.072c-36.565 31.214-65.921 69.996-86.032 113.665s-30.499 91.186-30.448 139.263c-0.049 48.055 10.332 95.552 30.427 139.204 20.096 43.657 49.428 82.428 85.967 113.638-44.143 24.781-94.004 37.577-144.625 37.116s-100.24-14.165-143.925-39.748c-43.684-25.579-79.913-62.148-105.083-106.069-25.171-43.925-38.408-93.67-38.395-144.294 0.013-50.62 13.275-100.36 38.468-144.27s61.44-80.46 105.137-106.020c43.697-25.559 93.324-39.237 143.945-39.672s100.477 12.385 144.607 37.188h-0.043zM549.205 764.843c36.54-31.211 65.873-69.982 85.969-113.638 20.096-43.652 30.477-91.149 30.426-139.204 0.051-48.077-10.338-95.593-30.447-139.263-20.113-43.669-49.463-82.451-86.033-113.665 44.13-24.803 93.986-37.624 144.606-37.188 50.624 0.436 100.25 14.113 143.945 39.672 43.699 25.559 79.945 62.111 105.139 106.020s38.455 93.65 38.468 144.27c0.013 50.624-13.227 100.369-38.396 144.294-25.169 43.921-61.397 80.491-105.084 106.069-43.682 25.583-93.303 39.287-143.923 39.748-50.624 0.461-100.484-12.335-144.627-37.116h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mastercard-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1538,
+ "id": 811,
+ "name": "mastercard-fill",
+ "prevSize": 32,
+ "code": 61135
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1487
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM738.133 680.107c-4.267-2.133-6.4-8.533-6.4-12.843v-325.675c0-4.267 2.133-10.667 6.4-14.976l40.747-47.147v-2.133h-145.707l-109.227 276.395-124.331-276.395h-149.931v2.133l38.528 53.589c8.576 8.533 10.709 21.419 10.709 32.128v235.648c2.133 12.885 0 27.861-6.4 40.704l-57.856 79.275v2.133h154.283v-2.133l-57.856-77.099c-6.4-12.885-8.576-25.728-6.4-40.704v-214.315c2.133 4.267 4.267 4.267 6.4 12.843l145.664 325.675h2.133l141.483-353.451c-2.133 12.8-2.133 27.819-2.133 38.571v252.8c0 6.4-2.133 10.667-6.4 14.976l-42.88 40.704v2.133h209.963v-2.133l-40.704-40.704h-0.085z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["medium-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1539,
+ "id": 810,
+ "name": "medium-fill",
+ "prevSize": 32,
+ "code": 61136
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1488
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667c235.093 0 426.667-191.147 426.667-426.667s-191.573-426.667-426.667-426.667zM793.813 282.027c52.51 63.971 81.566 143.973 82.347 226.731-11.989-2.304-132.309-26.837-253.568-11.563-2.773-6.016-5.12-12.501-7.851-18.987-7.552-17.792-15.573-35.375-24.064-52.736 134.187-54.613 195.285-133.291 203.136-143.445zM512 148.267c92.587 0 177.237 34.731 241.579 91.648-6.485 9.216-61.568 82.816-191.147 131.413-59.691-109.653-125.867-199.467-136.064-213.333 28.070-6.562 56.806-9.827 85.632-9.728zM356.992 182.528c48.829 67.683 93.939 137.974 135.125 210.56-170.325 45.355-320.725 44.373-336.896 44.373 11.726-55.162 36.037-106.871 71.036-151.092s79.741-79.759 130.735-103.842zM147.328 512.427v-11.093c15.787 0.427 192.512 2.773 374.4-51.84 10.667 20.352 20.352 41.173 29.611 61.995-4.651 1.408-9.728 2.773-14.336 4.181-187.904 60.587-287.872 226.261-296.192 240.171-60.167-66.795-93.455-153.515-93.44-243.413h-0.043zM512 876.672c-81.007 0.137-159.715-26.906-223.531-76.8 6.485-13.44 80.555-155.989 285.995-227.712 0.939-0.427 1.408-0.427 2.304-0.939 34.658 89.404 60.706 181.914 77.781 276.267-45.022 19.371-93.538 29.303-142.549 29.184zM715.136 814.165c-3.669-22.187-23.125-128.64-70.827-259.584 114.347-18.048 214.315 11.563 226.773 15.744-7.782 49.199-25.651 96.256-52.489 138.219s-62.059 77.922-103.458 105.621z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dribbble-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1540,
+ "id": 809,
+ "name": "dribbble-fill",
+ "prevSize": 32,
+ "code": 61137
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1489
+ },
+ {
+ "icon": {
+ "paths": [
+ "M252.884 533.205c88.021-18.901 76.032-124.117 73.387-147.115-4.309-35.413-45.995-97.365-102.613-92.459-71.253 6.4-81.621 109.269-81.621 109.269-9.643 47.573 23.040 149.205 110.848 130.304zM346.323 716.16c-2.56 7.381-8.32 26.283-3.328 42.752 9.813 36.949 41.899 38.613 41.899 38.613h46.082v-112.64h-49.367c-22.187 6.571-32.854 23.851-35.286 31.275zM416.212 356.821c48.642 0 87.895-55.979 87.895-125.141 0-69.12-39.253-125.013-87.895-125.013-48.512 0-87.893 55.893-87.893 125.013 0 69.163 39.381 125.141 87.893 125.141zM625.621 365.056c64.939 8.448 106.709-60.885 115.029-113.451 8.491-52.48-33.451-113.408-79.445-123.904-46.080-10.581-103.637 63.275-108.885 111.36-6.272 58.88 8.405 117.675 73.301 125.995zM625.621 512.171c-79.573-123.947-192.555-73.515-230.402-10.453-37.589 63.019-96.256 102.827-104.576 113.408-8.448 10.411-121.429 71.381-96.341 182.784 25.045 111.317 113.152 109.227 113.152 109.227s64.896 6.4 140.204-10.496c75.349-16.683 140.203 4.181 140.203 4.181s176 58.88 224.128-54.528c48.128-113.493-27.179-172.288-27.179-172.288s-100.523-77.781-159.232-161.835h0.043zM369.278 842.837c-49.408-9.856-69.077-43.563-71.552-49.323-2.432-5.845-16.47-32.939-9.046-79.061 21.333-69.077 82.219-74.027 82.219-74.027h60.93v-74.88l51.84 0.853v276.437h-114.391zM565.12 842.027c-51.029-13.141-53.376-49.408-53.376-49.408v-145.579l53.376-0.853v130.816c3.285 13.995 20.608 16.512 20.608 16.512h54.229v-146.475h56.832v194.987h-131.669zM883.157 453.333c0-25.173-20.907-100.864-98.347-100.864-77.611 0-87.979 71.467-87.979 121.984 0 48.213 4.053 115.499 100.437 113.365 96.427-2.133 85.888-109.227 85.888-134.485z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["baidu-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1541,
+ "id": 808,
+ "name": "baidu-fill",
+ "prevSize": 32,
+ "code": 61138
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1490
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM355.371 524.971c-1.707 36.267 1.579 72.405 5.035 108.544 0.213 2.56 1.152 3.157 3.413 3.413 17.323 2.304 34.688 4.352 52.139 5.419 41.131 2.603 82.261 5.931 123.563 3.627 23.467-1.28 46.933-2.048 70.315-4.053 33.28-2.901 66.56-6.613 99.413-13.312 40.875-8.277 81.365-18.133 119.467-36.053 17.323-8.107 33.707-17.707 47.531-31.403 10.155-10.027 17.408-21.632 17.493-36.693 0.068-13.393-0.576-26.782-1.92-40.107-2.965-31.735-9.856-62.978-20.523-93.013-24.917-69.035-64.427-127.531-120.576-173.653-47.462-39.505-103.876-66.794-164.309-79.488-21.333-4.48-42.923-6.144-64.597-7.68-24.448-1.749-45.397 5.12-63.488 21.931-21.12 19.499-35.712 43.691-47.872 69.675-28.459 60.885-41.515 126.037-49.749 192.341-4.919 36.617-6.703 73.587-5.333 110.507zM507.691 310.357c40.917 1.28 75.52 13.824 106.411 36.523 37.41 26.742 63.488 66.484 73.131 111.445 2.901 12.971 4.139 26.112 4.395 39.339 0.213 8.917-4.693 15.445-11.179 20.907-13.099 11.008-28.587 17.109-44.8 21.675-31.573 8.832-63.829 13.909-96.64 15.616-21.333 1.109-42.667 1.493-64 0.427-8.192-0.427-16.427-1.024-24.619-1.365-2.56-0.085-3.413-0.853-3.584-3.456-0.981-18.517-2.432-37.035-2.133-55.552 0.683-43.776 4.011-87.253 16.939-129.451 4.267-14.037 9.515-27.733 17.92-39.936 7.381-10.667 16.128-18.645 28.16-16.213v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coreos-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1542,
+ "id": 807,
+ "name": "coreos-fill",
+ "prevSize": 32,
+ "code": 61139
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1491
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.504 938.667l57.685-211.968c-38.010-65.156-57.98-139.264-57.856-214.699 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-75.401 0.124-149.475-19.831-214.613-57.813l-211.883 57.813zM358.016 311.808c-5.51 0.342-10.894 1.793-15.829 4.267-4.628 2.621-8.853 5.897-12.544 9.728-5.12 4.821-8.021 9.003-11.136 13.056-15.769 20.523-24.251 45.714-24.107 71.595 0.085 20.907 5.547 41.259 14.080 60.288 17.451 38.485 46.165 79.232 84.096 116.992 9.131 9.088 18.048 18.219 27.648 26.709 47.078 41.451 103.18 71.339 163.84 87.296l24.277 3.712c7.893 0.427 15.787-0.171 23.723-0.555 12.429-0.64 24.559-4.006 35.541-9.856 7.083-3.755 10.411-5.632 16.341-9.387 0 0 1.835-1.195 5.333-3.84 5.76-4.267 9.301-7.296 14.080-12.288 3.541-3.669 6.613-7.979 8.96-12.885 3.328-6.955 6.656-20.224 8.021-31.275 1.024-8.448 0.725-13.056 0.597-15.915-0.171-4.565-3.968-9.301-8.107-11.307l-24.832-11.136c0 0-37.12-16.171-59.776-26.496-2.389-1.041-4.949-1.634-7.552-1.749-2.918-0.299-5.867 0.030-8.649 0.964s-5.333 2.453-7.479 4.454v-0.085c-0.213 0-3.072 2.432-33.92 39.808-1.771 2.381-4.207 4.177-7.006 5.167-2.795 0.986-5.824 1.118-8.695 0.38-2.778-0.742-5.504-1.685-8.149-2.816-5.291-2.219-7.125-3.072-10.752-4.651l-0.213-0.085c-24.41-10.658-47.010-25.054-66.987-42.667-5.376-4.693-10.368-9.813-15.488-14.763-16.785-16.077-31.414-34.261-43.52-54.101l-2.517-4.053c-1.808-2.722-3.27-5.662-4.352-8.747-1.621-6.272 2.603-11.307 2.603-11.307s10.368-11.349 15.189-17.493c4.015-5.107 7.761-10.419 11.221-15.915 5.035-8.107 6.613-16.427 3.968-22.869-11.946-29.184-24.32-58.24-37.034-87.083-2.517-5.717-9.984-9.813-16.768-10.624-2.304-0.256-4.608-0.512-6.912-0.683-5.73-0.285-11.471-0.228-17.195 0.171v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["whatsapp-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1543,
+ "id": 806,
+ "name": "whatsapp-fill",
+ "prevSize": 32,
+ "code": 61140
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1492
+ },
+ {
+ "icon": {
+ "paths": [
+ "M481.707 162.731l103.040 291.115 0.299-205.227 0.427-205.568h182.187l0.341 463.445c0.128 255.147-0.128 464.64-0.64 465.067-0.512 0.384-8.917 0-18.603-1.152-42.197-5.035-97.707-10.069-142.507-12.032-9.058-0.341-18.103-0.883-27.136-1.621-0.128-0.171-11.648-32.512-33.109-93.184v-0.171l-91.477-258.603-14.507-40.704-0.341 195.669c-0.256 186.24-0.427 196.693-2.432 196.693-6.955 0-66.987 3.84-87.040 5.803-13.141 1.152-39.509 3.84-58.453 6.187-19.029 2.176-34.816 3.627-35.115 3.328-0.384-0.256-0.64-209.451-0.64-464.768v-464.256h0.213v-0.085h182.955l1.195 3.413c0.299 0.683 2.773 7.509 6.699 18.645l27.349 75.861 7.381 21.163-0.043 0.981h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["netflix-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1544,
+ "id": 805,
+ "name": "netflix-fill",
+ "prevSize": 32,
+ "code": 61141
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1493
+ },
+ {
+ "icon": {
+ "paths": [
+ "M945.583 241.323c-32.576 14.408-67.119 23.871-102.485 28.075 37.278-22.296 65.182-57.386 78.507-98.731-34.987 20.821-73.344 35.413-113.323 43.307-26.854-28.733-62.451-47.788-101.252-54.205s-78.635 0.167-113.31 18.725c-34.675 18.558-62.246 48.052-78.426 83.897-16.183 35.845-20.070 76.032-11.055 114.313-70.95-3.556-140.361-21.994-203.723-54.116s-119.26-77.21-164.066-132.337c-15.86 27.241-24.194 58.207-24.149 89.728 0 61.867 31.488 116.523 79.36 148.523-28.33-0.892-56.037-8.543-80.811-22.315v2.219c0.009 41.203 14.266 81.135 40.356 113.028 26.090 31.889 62.406 53.777 102.79 61.948-26.299 7.125-53.875 8.179-80.64 3.072 11.386 35.465 33.579 66.483 63.471 88.708s65.986 34.547 103.228 35.238c-37.014 29.069-79.395 50.56-124.72 63.241s-92.704 16.303-139.43 10.658c81.566 52.454 176.516 80.303 273.493 80.213 328.237 0 507.735-271.915 507.735-507.733 0-7.68-0.213-15.445-0.555-23.040 34.935-25.251 65.092-56.532 89.045-92.373l-0.043-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["twitter-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1545,
+ "id": 804,
+ "name": "twitter-fill",
+ "prevSize": 32,
+ "code": 61142
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1494
+ },
+ {
+ "icon": {
+ "paths": [
+ "M907.008 596.907c-11.691 60.16-104.789 126.080-211.712 138.837-55.723 6.656-110.635 12.8-169.173 10.069-95.701-4.395-171.264-22.827-171.264-22.827 0 9.301 0.597 18.176 1.707 26.453 12.459 94.507 93.696 100.139 170.666 102.827 77.653 2.645 146.773-19.2 146.773-19.2l3.243 70.229c0 0-54.357 29.184-151.125 34.56-53.333 2.901-119.594-1.365-196.778-21.76-167.381-44.331-196.181-222.72-200.576-403.797-1.323-53.76-0.512-104.405-0.512-146.773 0-185.173 121.301-239.403 121.301-239.403 61.141-28.075 166.059-39.893 275.2-40.789h2.645c109.099 0.853 214.101 12.715 275.243 40.789 0 0 121.301 54.272 121.301 239.36 0 0 1.536 136.576-16.939 231.424zM780.885 379.861c0-45.824-11.648-82.219-35.072-109.141-24.192-26.923-55.808-40.747-95.104-40.747-45.44 0-79.829 17.493-102.613 52.395l-22.101 37.12-22.144-37.12c-22.741-34.901-57.131-52.395-102.57-52.395-39.296 0-70.955 13.824-95.104 40.747-23.424 26.923-35.072 63.317-35.072 109.141v224.128h88.789v-217.557c0-45.867 19.285-69.12 57.899-69.12 42.666 0 64.042 27.605 64.042 82.219v119.040h88.32v-119.040c0-54.613 21.333-82.219 64-82.219 38.613 0 57.941 23.253 57.941 69.12v217.6h88.747v-224.213l0.043 0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mastodon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1546,
+ "id": 803,
+ "name": "mastodon-fill",
+ "prevSize": 32,
+ "code": 61143
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1495
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c-235.733 0-426.667 190.933-426.667 426.667-0.048 89.57 28.11 176.879 80.479 249.545 52.369 72.661 126.29 126.993 211.276 155.277 21.333 3.712 29.312-9.088 29.312-20.309 0-10.112-0.555-43.691-0.555-79.445-107.179 19.755-134.912-26.112-143.445-50.133-4.821-12.288-25.6-50.133-43.733-60.288-14.933-7.979-36.267-27.733-0.555-28.245 33.621-0.555 57.6 30.933 65.621 43.733 38.4 64.512 99.755 46.379 124.245 35.2 3.755-27.733 14.933-46.379 27.221-57.045-94.933-10.667-194.133-47.488-194.133-210.688 0-46.421 16.512-84.779 43.733-114.688-4.267-10.667-19.2-54.4 4.267-113.067 0 0 35.712-11.179 117.333 43.776 34.735-9.64 70.622-14.492 106.667-14.421 36.267 0 72.533 4.779 106.667 14.379 81.579-55.467 117.333-43.691 117.333-43.691 23.467 58.667 8.533 102.4 4.267 113.067 27.179 29.867 43.733 67.712 43.733 114.645 0 163.755-99.712 200.021-194.645 210.688 15.445 13.312 28.8 38.912 28.8 78.933 0 57.045-0.555 102.912-0.555 117.333 0 11.179 8.021 24.491 29.355 20.224 84.693-28.595 158.289-83.029 210.428-155.639 52.139-72.614 80.192-159.748 80.218-249.139 0-235.733-190.933-426.667-426.667-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["github-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1547,
+ "id": 802,
+ "name": "github-fill",
+ "prevSize": 32,
+ "code": 61144
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1496
+ },
+ {
+ "icon": {
+ "paths": [
+ "M712.533 290.133l-260.864 161.536-161.536 260.864-4.437-4.437-60.373 60.331 30.208 30.208 60.331-60.373-4.395-4.395 260.864-161.493 161.536-260.907 4.437 4.437 60.373-60.331-30.208-30.208-60.331 60.373 4.395 4.395zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM490.667 128v85.333h42.667v-85.333h-42.667zM490.667 810.667v85.333h42.667v-85.333h-42.667zM345.344 165.376l32.64 78.848 39.424-16.299-32.64-78.848-39.424 16.299zM606.592 796.075l32.64 78.848 39.424-16.299-32.64-78.848-39.424 16.299zM639.232 149.077l-32.64 78.848 39.424 16.299 32.64-78.848-39.424-16.299zM378.027 779.776l-32.64 78.848 39.424 16.299 32.64-78.848-39.424-16.299zM896 490.667h-85.333v42.667h85.333v-42.667zM213.333 490.667h-85.333v42.667h85.333v-42.667zM872.875 644.907l-78.293-33.877-16.939 39.168 78.293 33.877 16.939-39.168zM246.357 373.803l-78.251-33.877-16.939 39.168 78.293 33.877 16.939-39.168h-0.043zM858.624 345.344l-78.848 32.64 16.299 39.424 78.848-32.64-16.299-39.424zM227.925 606.592l-78.848 32.64 16.299 39.424 78.848-32.64-16.299-39.424zM798.635 768.427l-60.373-60.331-30.165 30.165 60.331 60.373 30.208-30.208zM315.904 285.739l-60.331-60.373-30.208 30.208 60.373 60.331 30.165-30.165zM482.645 482.645l154.069-95.36-95.36 154.027-58.709-58.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["safari-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1548,
+ "id": 801,
+ "name": "safari-fill",
+ "prevSize": 32,
+ "code": 61145
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1497
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667c234.667 0 426.667-192 426.667-426.667s-189.867-426.667-426.667-426.667zM672 710.4c-100.267-61.867-226.133-74.667-375.467-40.533-14.933 4.267-27.733-6.4-32-19.2-4.267-14.933 6.4-27.733 19.2-32 162.133-36.267 302.933-21.333 413.867 46.933 14.933 6.4 17.067 23.467 10.667 36.267-8.533 12.8-23.467 17.067-36.267 8.533zM714.667 595.2c-115.2-70.4-290.133-91.733-424.533-49.067-17.067 4.267-36.267-4.267-40.533-21.333s4.267-36.267 21.333-40.533c155.733-46.933 347.733-23.467 480 57.6 12.8 6.4 19.2 27.733 8.533 42.667s-29.867 21.333-44.8 10.667zM268.8 416c-21.333 6.4-42.667-6.4-49.067-25.6-6.4-21.333 6.4-42.667 25.6-49.067 151.467-44.8 401.067-36.267 558.933 57.6 19.2 10.667 25.6 36.267 14.933 55.467-10.667 14.933-36.267 21.333-55.467 10.667-136.533-81.067-364.8-89.6-494.933-49.067z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spotify-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1549,
+ "id": 800,
+ "name": "spotify-fill",
+ "prevSize": 32,
+ "code": 61146
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1498
+ },
+ {
+ "icon": {
+ "paths": [
+ "M563.2 85.589c343.040 3.712 375.467 53.077 375.467 426.411l-0.256 51.2c-3.712 343.040-53.077 375.467-426.411 375.467l-51.2-0.256c-326.741-3.541-371.669-48.469-375.211-375.253l-0.256-64.341 0.256-37.973c3.627-334.933 50.773-373.76 400.299-375.467l77.312 0.213zM352 298.667h-24.875c-6.819-0.004-13.412 2.441-18.58 6.888s-8.568 10.604-9.58 17.347l-0.299 4.224v156.416c0 14.293 10.539 26.112 24.235 28.16l4.224 0.299h24.875c40.96-0.004 80.363 15.701 110.089 43.878 29.726 28.181 47.514 66.688 49.698 107.588l0.213 8.533v24.875c0 14.293 10.539 26.112 24.235 28.16l4.224 0.299h156.416c6.818 0.004 13.41-2.441 18.581-6.886 5.167-4.45 8.567-10.607 9.579-17.348l0.299-4.224v-24.875c-0.004-97.105-37.841-190.391-105.485-260.060-67.648-69.669-159.778-110.239-256.841-113.103l-11.008-0.171z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spectrum-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1550,
+ "id": 799,
+ "name": "spectrum-fill",
+ "prevSize": 32,
+ "code": 61147
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1499
+ },
+ {
+ "icon": {
+ "paths": [
+ "M796.288 462.507c-0.013 5.943-2.381 11.644-6.588 15.842s-9.911 6.558-15.855 6.558h-62.379v40.021h62.379c3.021-0.132 6.037 0.35 8.866 1.417 2.833 1.062 5.419 2.692 7.599 4.783 2.185 2.091 3.925 4.599 5.111 7.381 1.19 2.782 1.801 5.773 1.801 8.798s-0.61 6.016-1.801 8.798c-1.186 2.782-2.927 5.291-5.111 7.381-2.18 2.095-4.766 3.721-7.599 4.787-2.829 1.062-5.845 1.545-8.866 1.412h-84.779c-5.909-0.043-11.558-2.419-15.731-6.605-4.169-4.186-6.519-9.843-6.541-15.753v-169.642c0-12.245 10.027-22.4 22.4-22.4h84.821c5.939 0.017 11.631 2.393 15.821 6.606s6.532 9.917 6.515 15.858c-0.017 5.941-2.394 11.631-6.605 15.82-4.215 4.189-9.92 6.532-15.859 6.516h-62.379v40.021h62.379c12.416 0 22.443 10.112 22.443 22.4h-0.043zM621.44 568.533c-2.291 0.725-4.681 1.084-7.083 1.067-3.511 0.077-6.993-0.687-10.146-2.231-3.157-1.545-5.892-3.823-7.987-6.643l-86.869-117.931v104.533c-0.427 5.632-2.965 10.893-7.108 14.733-4.139 3.84-9.579 5.973-15.228 5.973s-11.089-2.133-15.228-5.973c-4.143-3.84-6.682-9.101-7.108-14.733v-169.642c-0.013-5.9 2.317-11.563 6.477-15.746s9.809-6.546 15.71-6.569c6.912 0 13.312 3.669 17.579 9.003l87.552 118.4v-105.088c0-12.245 10.027-22.4 22.4-22.4 12.245 0 22.4 10.155 22.4 22.4v169.642c-0.004 4.702-1.493 9.28-4.25 13.086-2.761 3.806-6.647 6.647-11.11 8.119zM410.24 569.685c-5.915-0.034-11.578-2.402-15.757-6.588s-6.535-9.856-6.558-15.77v-169.642c0-12.245 10.069-22.4 22.4-22.4s22.357 10.155 22.357 22.4v169.642c-0.034 5.935-2.411 11.614-6.616 15.804-4.204 4.186-9.893 6.541-15.827 6.554zM344.96 569.685h-84.779c-5.923-0.034-11.595-2.398-15.787-6.583-4.192-4.181-6.568-9.852-6.613-15.774v-169.642c0.489-5.603 3.061-10.82 7.208-14.62s9.567-5.908 15.192-5.908c5.625 0 11.045 2.108 15.192 5.908s6.719 9.017 7.208 14.62v147.2h62.464c5.941 0 11.638 2.359 15.839 6.562 4.201 4.198 6.561 9.899 6.561 15.838s-2.36 11.639-6.561 15.838c-4.201 4.203-9.898 6.562-15.839 6.562h-0.085zM512 109.739c-235.221 0-426.667 155.435-426.667 346.368 0 171.093 151.808 314.411 356.821 341.632 13.867 2.901 32.811 9.173 37.589 20.992 4.267 10.667 2.816 27.221 1.365 38.4l-5.845 36.267c-1.579 10.667-8.533 42.155 37.291 22.912 45.909-19.157 245.931-144.981 335.531-247.979 61.269-67.2 90.581-135.979 90.581-212.224 0-190.933-191.488-346.368-426.667-346.368z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["line-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1551,
+ "id": 798,
+ "name": "line-fill",
+ "prevSize": 32,
+ "code": 61148
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1500
+ },
+ {
+ "icon": {
+ "paths": [
+ "M747.733 485.461c53.888 16.725 113.877 57.003 113.877 128.171 0 117.888-169.813 266.197-425.131 266.197-194.773 0-393.813-94.421-393.813-249.685 0-81.152 51.371-175.019 139.819-263.552 118.315-118.187 256.171-172.075 308.011-120.149 22.912 22.912 25.088 62.464 10.411 109.739-7.595 23.765 22.4 10.667 22.4 10.667 95.573-40.021 179.029-42.411 209.451 1.152 16.213 23.168 14.635 55.723-0.341 93.44-6.955 17.365 2.048 20.096 15.36 24.021h-0.043zM437.035 824.192c155.349-15.445 273.109-110.592 263.125-212.608-10.112-102.016-144.299-172.288-299.648-156.885-155.307 15.36-273.195 110.507-263.125 212.48 10.112 102.144 144.299 172.331 299.648 157.013zM262.827 616.021c32.171-65.152 115.712-101.973 189.696-82.773 76.501 19.755 115.499 91.904 84.309 162.133-31.744 71.765-122.965 109.995-200.32 85.035-74.752-24.149-106.368-97.877-73.685-164.395zM324.523 726.4c24.235 10.965 56.533 0.555 71.509-23.467 14.763-24.235 6.955-51.925-17.365-62.251-24.021-10.112-55.083 0.341-69.973 23.595-15.104 23.339-8.064 51.285 15.829 62.123zM418.645 649.259c9.344 3.925 21.376-0.512 26.795-9.856 5.248-9.387 1.877-19.883-7.595-23.381-9.216-3.584-20.736 0.768-26.155 9.899-5.248 9.131-2.304 19.541 6.955 23.339zM847.915 405.333c-1.233 3.898-3.226 7.514-5.862 10.637-2.641 3.123-5.871 5.693-9.51 7.559-3.635 1.867-7.607 2.994-11.682 3.316-4.075 0.324-8.175-0.166-12.062-1.438s-7.479-3.301-10.577-5.971c-3.098-2.67-5.632-5.927-7.462-9.583s-2.918-7.639-3.2-11.718c-0.282-4.079 0.252-8.173 1.562-12.046 3.247-9.876 3.819-20.436 1.66-30.606s-6.972-19.586-13.948-27.293c-6.997-7.678-15.881-13.391-25.766-16.572-9.89-3.181-20.437-3.719-30.596-1.561-3.968 0.849-8.064 0.908-12.053 0.174s-7.795-2.246-11.2-4.451c-6.878-4.453-11.703-11.456-13.419-19.467s-0.175-16.376 4.275-23.254c4.454-6.877 11.456-11.704 19.469-13.418 20.779-4.439 42.359-3.329 62.575 3.22s38.349 18.304 52.574 34.086c14.229 15.781 24.051 35.031 28.48 55.812s3.307 42.363-3.255 62.573zM680.832 124.8c42.675-9.094 86.993-6.805 128.503 6.637s78.754 37.566 107.998 69.949c29.261 32.435 49.476 71.997 58.611 114.716 9.139 42.718 6.878 87.088-6.558 128.655-1.442 4.493-3.759 8.657-6.814 12.25-3.059 3.593-6.797 6.545-11.004 8.687-4.203 2.142-8.789 3.43-13.495 3.793-4.702 0.358-9.434-0.213-13.914-1.69-9.071-2.953-16.597-9.378-20.932-17.873s-5.124-18.364-2.193-27.439c9.549-29.518 11.162-61.030 4.676-91.369s-20.843-58.437-41.626-81.47c-20.783-23.033-47.266-40.19-76.783-49.747-29.513-9.557-61.026-11.178-91.366-4.699-9.114 1.447-18.432-0.655-26.039-5.871-7.612-5.217-12.928-13.152-14.865-22.173s-0.337-18.44 4.459-26.319c4.8-7.879 12.437-13.618 21.342-16.037z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["weibo-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1552,
+ "id": 797,
+ "name": "weibo-fill",
+ "prevSize": 32,
+ "code": 61149
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1501
+ },
+ {
+ "icon": {
+ "paths": [
+ "M368.213 330.837c-9.216 8.576-23.296 9.259-31.701 9.259h-90.027c-26.027 0-41.557 0-52.053 1.408-5.717 0.725-12.715 3.584-16.256 4.992-1.408 0.683-1.408 0-0.725-0.683l205.483-210.773c0.725-0.725 1.408-0.725 0.725 0.725-2.272 5.224-3.933 10.694-4.949 16.299-1.408 10.624-1.408 26.24-1.408 52.48v94.379c0 8.533-0.725 22.741-9.131 31.915h0.043zM567.979 936.021c-23.893-15.616-36.565-36.181-41.515-48.939-5.056-12.395-7.68-25.651-7.723-39.040 0.034-28.369 11.311-55.569 31.36-75.644s47.236-31.381 75.605-31.45c17.579 0 31.659 14.165 31.659 31.915 0.034 5.641-1.455 11.187-4.309 16.051-2.85 4.868-6.963 8.87-11.904 11.597-3.733 2.044-7.765 3.482-11.947 4.267-3.499 0.725-16.896 2.133-23.168 7.808-3.797 2.965-6.903 6.724-9.101 11.012s-3.43 9.007-3.614 13.82c-0.043 10.355 4.002 20.309 11.264 27.691 12.672 12.757 29.568 19.84 47.872 19.84 11.413-0.043 22.703-2.338 33.229-6.746 10.526-4.412 20.079-10.85 28.113-18.953s14.396-17.711 18.718-28.271c4.322-10.564 6.519-21.871 6.468-33.284 0-43.264-28.843-81.621-66.859-98.603-5.632-2.859-14.763-4.992-23.211-7.125-6.993-1.442-14.037-2.624-21.12-3.541-29.568-3.584-103.424-26.965-108.373-92.928 0 0-21.76 99.328-65.451 126.293-4.181 2.133-9.813 4.267-16.171 5.675-6.315 1.408-13.312 2.133-15.488 2.133-71.040 4.267-146.347-18.475-198.4-72.363 0 0-35.2-29.099-53.461-110.677-4.224-19.883-12.672-55.381-17.579-88.747-2.133-11.989-2.859-21.248-3.541-29.781 0-34.731 21.12-58.155 47.829-61.653h143.573c24.576 0 38.699-6.4 47.829-14.933 11.947-11.349 14.805-27.691 14.805-46.848v-149.675c3.413-26.24 26.752-48.256 61.184-48.256h16.896c7.040 0 15.488 0.725 23.211 1.408 5.632 0.725 10.539 2.133 18.987 4.267 42.923 10.667 52.053 54.613 52.053 54.613l121.771 21.333c38.699 7.083 134.4 13.483 152.661 110.677 42.923 231.253 16.896 455.467 14.805 455.467-30.293 218.496-210.389 207.829-210.389 207.829-30.903 0.627-61.214-8.559-86.571-26.24zM679.851 496.171c-1.408 3.584-2.816 7.808-2.133 9.941 0.768 2.133 2.176 2.816 3.584 3.541 8.448 4.267 22.485 6.4 42.923 8.533 20.395 2.133 34.475 3.541 43.605 2.133 1.408 0 2.859-0.725 4.267-2.859s0.683-6.4 0.683-9.941c-2.133-19.157-19.712-33.323-42.923-36.181-23.253-2.133-42.923 7.125-50.005 24.832z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["evernote-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1553,
+ "id": 796,
+ "name": "evernote-fill",
+ "prevSize": 32,
+ "code": 61150
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1502
+ },
+ {
+ "icon": {
+ "paths": [
+ "M42.667 170.667h938.667v85.333h-938.667v-85.333zM42.667 768h938.667v85.333h-938.667v-85.333zM837.205 636.331l-7.424-37.12h-83.157l-13.227 36.821-66.645 0.128c42.88-102.656 74.667-178.773 95.403-228.181 5.419-12.928 15.061-19.499 29.227-19.413 10.837 0.085 28.544 0.085 53.12 0l51.499 247.68-58.795 0.085zM765.355 548.352h53.589l-20.053-93.013-33.536 93.013zM335.872 388.523l66.987 0.085-103.552 247.723-67.84-0.043c-22.912-88.32-39.765-153.856-50.517-196.48-3.285-13.099-9.813-22.229-22.443-26.539-11.221-3.84-29.909-9.813-56.107-17.877v-6.827h107.051c18.517 0 29.312 8.96 32.811 27.307l26.453 140.331 67.157-167.68zM494.891 388.608l-52.907 247.68-63.787-0.085 52.907-247.68 63.787 0.085zM624.256 384c19.029 0 43.093 5.888 56.917 11.392l-11.179 51.371c-12.501-5.035-33.067-11.819-50.347-11.52-25.173 0.384-40.704 10.923-40.704 21.035 0 16.384 26.965 24.661 54.784 42.624 31.701 20.48 35.84 38.827 35.456 58.795-0.427 41.429-35.456 82.304-109.397 82.304-33.749-0.512-45.909-3.328-73.387-13.056l11.605-53.589c27.989 11.691 39.893 15.403 63.787 15.403 21.973 0 40.789-8.832 40.96-24.235 0.085-10.965-6.613-16.384-31.232-29.952-24.619-13.525-59.093-32.256-58.667-69.973 0.555-48.213 46.379-80.597 111.36-80.597h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["visa-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1554,
+ "id": 795,
+ "name": "visa-fill",
+ "prevSize": 32,
+ "code": 61151
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1503
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.5 777.813c0 31.019-17.28 90.752-56.064 123.563-7.765 5.973-15.573 2.603-12.16-6.101 11.307-27.648 37.205-91.605 25.045-106.325-8.533-11.179-43.947-10.368-74.155-7.765-13.824 1.749-25.899 2.56-35.328 4.48-8.661 0.725-10.453-6.955-1.749-12.928 11.179-7.893 23.253-13.867 37.12-18.261 49.067-14.677 105.813-5.845 113.92 3.541 1.536 1.792 3.413 6.827 3.413 19.755l-0.043 0.043zM856.538 833.024c-11.268 8.606-23.1 16.444-35.413 23.467-90.539 54.4-207.787 82.901-309.675 82.901-163.97 0-310.615-60.459-421.89-161.621-9.515-7.765-1.621-19.029 9.515-12.928 119.893 69.973 268.288 112.299 421.933 112.299 96.64 0 200.875-18.091 300.16-57.003 6.912-2.603 14.677-6.144 21.461-8.619 15.659-7.040 29.44 10.368 13.909 21.504zM593.284 362.411c0-44.416 1.749-70.571-12.971-93.013-13.056-18.475-35.541-29.568-66.901-27.819-34.048 1.877-70.613 24.192-79.957 65.109-1.792 9.387-7.298 18.603-18.605 20.608l-103.936-13.227c-7.424-1.707-18.688-7.381-15.019-22.229 22.315-117.419 122.667-158.336 217.517-163.84h22.315c52.053 0 118.912 14.891 161.707 53.931 51.925 48.469 46.421 113.579 46.421 184.32v167.552c0 50.261 20.352 72.533 40.875 98.731 5.547 9.344 7.424 20.352-1.92 27.947-20.48 18.56-59.477 52.011-81.792 70.571-7.424 5.675-20.821 6.272-26.027 1.92-32.853-27.52-40.875-42.795-61.227-70.741-35.413 37.163-65.109 57.685-100.48 68.821-24.875 6.315-50.458 9.412-76.117 9.216-89.175 0-159.831-55.595-159.831-165.547 0-87.424 46.507-146.859 115.2-174.976 68.695-28.16 168.535-37.12 200.706-37.291l0.043-0.043zM572.89 583.936c22.187-37.205 20.352-67.669 20.352-135.893-27.776 0-55.723 1.92-79.829 7.595-44.587 12.928-79.957 41.003-79.957 100.48 0 46.507 24.192 78.165 65.067 78.165 5.632 0 10.581-0.683 14.891-1.92 28.587-7.936 46.421-22.272 59.477-48.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["amazon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1555,
+ "id": 794,
+ "name": "amazon-fill",
+ "prevSize": 32,
+ "code": 61152
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1504
+ },
+ {
+ "icon": {
+ "paths": [
+ "M278.486 619.264c-0.079 22.229-8.948 43.529-24.671 59.243s-37.024 24.572-59.255 24.64c-22.238-0.068-43.545-8.93-59.27-24.657-15.724-15.723-24.588-37.030-24.656-59.268 0-46.208 37.717-83.968 83.925-83.968h83.968v83.968l-0.043 0.043zM320.812 619.264c0-46.208 37.717-83.968 83.925-83.968s83.967 37.76 83.967 83.968v210.219c-0.068 22.246-8.934 43.558-24.67 59.285s-37.052 24.585-59.297 24.64c-22.238-0.068-43.545-8.93-59.27-24.657-15.724-15.723-24.588-37.030-24.656-59.268v-210.219zM404.737 278.485c-22.23-0.079-43.527-8.948-59.242-24.671s-24.573-37.024-24.64-59.255c0-46.208 37.717-83.925 83.925-83.925s83.967 37.717 83.967 83.925v83.968l-84.010-0.043zM404.737 320.811c46.207 0 83.967 37.717 83.967 83.925-0.055 22.251-8.922 43.575-24.657 59.311-15.731 15.735-37.056 24.602-59.31 24.657h-210.176c-22.245-0.068-43.559-8.939-59.284-24.67-15.726-15.735-24.585-37.052-24.641-59.298 0-46.208 37.717-83.925 83.925-83.925h210.176zM745.515 404.736c0-46.208 37.76-83.925 83.968-83.925s83.925 37.717 83.925 83.925c-0.055 22.246-8.913 43.563-24.64 59.298-15.727 15.731-37.039 24.602-59.285 24.67h-83.968v-83.968zM703.189 404.736c-0.055 22.246-8.913 43.563-24.64 59.298-15.727 15.731-37.039 24.602-59.285 24.67-22.251-0.055-43.575-8.922-59.311-24.657s-24.602-37.060-24.657-59.311v-210.176c0-46.208 37.76-83.925 83.968-83.925s83.925 37.717 83.925 83.925v210.176zM619.264 745.515c46.208 0 83.925 37.76 83.925 83.968-0.068 22.238-8.93 43.546-24.657 59.268-15.723 15.727-37.030 24.589-59.268 24.657-22.246-0.055-43.563-8.913-59.298-24.64-15.731-15.727-24.602-37.039-24.67-59.285v-83.968h83.968zM619.264 703.189c-22.246-0.055-43.563-8.913-59.298-24.64-15.731-15.727-24.602-37.039-24.67-59.285 0-46.208 37.76-83.968 83.968-83.968h210.219c46.208 0 83.925 37.76 83.925 83.968-0.068 22.238-8.93 43.546-24.657 59.268-15.723 15.727-37.030 24.589-59.268 24.657h-210.219z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["slack-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1556,
+ "id": 793,
+ "name": "slack-fill",
+ "prevSize": 32,
+ "code": 61153
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1505
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h768zM716.459 239.829c-43.136 0-79.531 28.843-91.008 68.267h-85.248l-104.96 178.56h-61.355c-11.435-39.467-47.829-68.267-91.008-68.267-52.309 0-94.763 42.411-94.763 94.72 0 52.395 42.453 94.805 94.763 94.805 43.179 0 79.573-28.843 91.008-68.267h62.763l103.125 176.341h86.101c11.435 39.467 47.829 68.267 90.965 68.267 52.352 0 94.805-42.411 94.805-94.763s-42.453-94.805-94.805-94.805c-43.093 0-79.531 28.843-90.965 68.267h-56.192l-87.723-150.869 87.595-150.955h55.893c11.52 39.467 47.872 68.267 91.008 68.267 52.352 0 94.805-42.411 94.805-94.763s-42.453-94.805-94.805-94.805zM716.928 642.048c27.477 0 49.835 22.357 49.835 49.835s-22.357 49.792-49.835 49.792c-24.149 0-44.288-17.28-48.811-40.107 0 0-1.323-9.685 0-19.371 4.523-22.827 24.661-40.107 48.811-40.107v-0.043zM283.776 462.421c27.477 0 49.835 22.357 49.835 49.835 0 27.435-22.357 49.792-49.835 49.792s-49.792-22.357-49.792-49.792c0-27.477 22.315-49.792 49.792-49.792v-0.043zM716.843 282.837c27.477 0 49.835 22.315 49.835 49.792s-22.357 49.835-49.835 49.835c-24.107 0-44.288-17.323-48.811-40.149-1.109-8.789 0-19.029 0-19.029 4.523-23.168 24.704-40.448 48.811-40.448z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stackshare-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1557,
+ "id": 792,
+ "name": "stackshare-fill",
+ "prevSize": 32,
+ "code": 61154
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1506
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 576h106.667l42.667-170.667h-149.333v-85.333c0-43.947 0-85.333 85.333-85.333h64v-143.36c-13.909-1.835-66.432-5.973-121.899-5.973-115.84 0-198.101 70.699-198.101 200.533v119.467h-128v170.667h128v362.667h170.667v-362.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["facebook-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1558,
+ "id": 791,
+ "name": "facebook-fill",
+ "prevSize": 32,
+ "code": 61155
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1507
+ },
+ {
+ "icon": {
+ "paths": [
+ "M429.909 469.333c25.6 0 46.336 19.2 45.867 42.667 0 23.467-20.224 42.667-45.867 42.667-25.173 0-45.909-19.2-45.909-42.667s20.267-42.667 45.909-42.667zM594.091 469.333c25.643 0 45.909 19.2 45.909 42.667s-20.267 42.667-45.909 42.667c-25.173 0-45.867-19.2-45.867-42.667s20.224-42.667 45.867-42.667zM806.016 85.333c49.621 0 89.984 41.216 89.984 92.288v803.712l-94.336-85.12-53.12-50.176-56.192-53.333 23.296 82.901h-497.664c-49.621 0-89.984-41.216-89.984-92.288v-605.696c0-51.072 40.363-92.288 89.984-92.288h588.032zM636.629 670.421c96.981-3.115 134.315-68.096 134.315-68.096 0-144.256-63.232-261.205-63.232-261.205-63.147-48.341-123.307-47.019-123.307-47.019l-6.144 7.168c74.624 23.296 109.269 56.917 109.269 56.917-40.742-22.955-85.649-37.575-132.096-43.008-29.466-3.328-59.226-3.041-88.619 0.853-2.645 0-4.864 0.469-7.467 0.896-15.36 1.365-52.693 7.168-99.627 28.245-16.213 7.595-25.899 13.013-25.899 13.013s36.437-35.413 115.413-58.709l-4.395-5.376c0 0-60.117-1.323-123.307 47.061 0 0-63.189 116.907-63.189 261.163 0 0 36.864 64.939 133.845 68.096 0 0 16.213-20.139 29.44-37.163-55.765-17.067-76.8-52.907-76.8-52.907s4.352 3.157 12.245 7.637c0.427 0.427 0.853 0.896 1.749 1.323 1.323 0.939 2.645 1.365 3.968 2.261 10.965 6.272 21.931 11.179 32 15.232 18.005 7.168 39.509 14.336 64.555 19.285 37.517 7.356 76.092 7.501 113.664 0.427 21.884-3.904 43.234-10.364 63.616-19.243 15.36-5.845 32.469-14.379 50.475-26.453 0 0-21.931 36.736-79.445 53.333 13.184 17.024 29.013 36.267 29.013 36.267h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["discord-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1559,
+ "id": 790,
+ "name": "discord-fill",
+ "prevSize": 32,
+ "code": 61156
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1508
+ },
+ {
+ "icon": {
+ "paths": [
+ "M873.045 137.813c6.528 0 13.103 3.328 16.388 6.613 1.613 3.027 2.453 6.405 2.453 9.835s-0.841 6.808-2.453 9.835l-259.29 459.52 164.096 301.909c1.621 3.034 2.47 6.417 2.47 9.856s-0.849 6.822-2.47 9.856c-4.484 4.105-10.304 6.438-16.384 6.571h-118.187c-16.384 0-26.24-13.141-32.811-22.997l-167.381-305.237c9.856-13.099 262.571-462.72 262.571-462.72 6.571-13.099 16.427-22.955 32.853-22.955l118.144-0.085zM380.717 298.667c16.427 0 26.24 13.141 32.853 22.955l82.003 141.141c-6.528 6.571-127.998 223.147-127.998 223.147-6.528 9.899-16.384 23.040-32.811 23.040h-114.859c-6.092-0.124-11.931-2.458-16.427-6.571-1.621-3.034-2.469-6.417-2.469-9.856s0.848-6.822 2.469-9.856l121.429-219.904-78.763-137.813c-1.621-3.032-2.469-6.417-2.469-9.856s0.848-6.824 2.469-9.856c4.496-4.112 10.335-6.448 16.427-6.571h118.144z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["xing-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1560,
+ "id": 789,
+ "name": "xing-fill",
+ "prevSize": 32,
+ "code": 61157
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1509
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM465.664 493.568c10.24-35.84 45.867-65.749 84.907-70.315 7.979 29.611 16.555 58.581 23.253 88.021 2.261 9.813 1.579 21.12-0.768 31.019-9.088 38.059-53.248 52.992-84.395 29.227-22.613-17.28-31.659-47.787-22.997-77.952zM628.523 485.163c-5.333-19.84-10.923-39.552-16.768-60.587 21.333 5.547 38.741 15.36 53.547 29.781 53.632 52.096 59.093 140.8 12.544 201.856-48.427 63.573-134.613 91.051-214.528 68.48-98.219-27.733-162.475-125.952-146.816-226.816 11.691-75.435 54.187-128.171 123.733-159.275 17.365-7.765 24.747-23.893 17.92-39.68-6.699-15.531-23.040-21.504-40.277-14.635-116.096 46.464-184.32 176.384-156.587 298.112 30.421 133.035 149.12 220.288 284.8 207.317 73.899-7.040 134.997-40.448 179.883-100.139 64.256-85.419 55.339-204.075-19.755-277.291-28.416-27.733-62.763-43.435-101.973-49.195-3.541-0.555-9.259-2.219-9.899-4.523-3.712-13.355-7.68-26.965-8.789-40.704-1.237-15.232 12.373-27.307 27.733-27.52 10.795-0.128 18.517 5.547 25.728 12.8 12.928 12.8 30.037 13.739 42.155 2.645 12.373-11.264 12.629-28.928 0.768-43.008-24.149-28.672-67.669-38.016-103.68-22.315-36.139 15.787-56.363 50.645-51.2 89.301 1.621 11.947 4.693 23.765 7.125 35.925l-11.093 3.072c-36.523 10.24-66.603 30.037-89.515 60.331-39.296 52.053-39.936 120.661-1.749 168.405 54.357 68.011 159.872 54.784 192.981-24.235 12.117-28.843 11.733-58.368 3.712-88.107z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["netease-cloud-music-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1561,
+ "id": 788,
+ "name": "netease-cloud-music-fill",
+ "prevSize": 32,
+ "code": 61158
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1510
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 557.227l190.72 190.763-190.72 190.677-190.72-190.72 190.72-190.72zM170.667 687.787l165.504 165.547h-165.504v-165.547zM853.333 687.787v165.547h-165.547l165.547-165.547zM747.947 321.28l190.72 190.72-190.677 190.72-190.72-190.72 190.677-190.72zM276.053 321.28l190.72 190.72-190.763 190.677-190.677-190.677 190.72-190.72zM512 85.333l190.677 190.677-190.677 190.72-190.72-190.677 190.72-190.72zM336.171 170.667l-165.547 165.504 0.043-165.504h165.504zM853.333 170.667v165.504l-165.547-165.547 165.547 0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["centos-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1562,
+ "id": 787,
+ "name": "centos-fill",
+ "prevSize": 32,
+ "code": 61159
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1511
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM555.989 345.557h-111.957c-42.155 0-76.331 33.109-76.331 73.941v287.915l110.72-105.429h77.568c73.088 0 132.309-57.387 132.309-128.213s-59.221-128.213-132.267-128.213h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pixelfed-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1563,
+ "id": 786,
+ "name": "pixelfed-fill",
+ "prevSize": 32,
+ "code": 61160
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1512
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-107.947 0-206.507-40.107-281.643-106.155l-166.357 20.821 60.757-162.005c-25.344-54.528-39.424-115.285-39.424-179.328 0-235.648 191.019-426.667 426.667-426.667zM341.333 298.667v426.667h159.275l11.221-0.171c144-4.395 227.712-94.336 227.712-214.4v-1.152l-0.128-9.173c-4.267-118.315-90.453-201.771-236.373-201.771h-161.707zM504.789 403.541c69.461 0 115.584 39.595 115.584 107.904v1.195l-0.213 7.808c-3.371 64-48.555 100.053-115.371 100.053h-47.275v-216.96h47.275z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["disqus-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1564,
+ "id": 785,
+ "name": "disqus-fill",
+ "prevSize": 32,
+ "code": 61161
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1513
+ },
+ {
+ "icon": {
+ "paths": [
+ "M495.953 308.139c-37.376 0-95.23-42.496-156.158-40.96-80.384 1.024-154.112 46.592-195.584 118.784-83.456 144.896-21.504 358.912 59.904 476.672 39.936 57.344 87.040 121.856 149.504 119.808 59.904-2.56 82.43-38.912 155.134-38.912 72.192 0 92.672 38.912 156.16 37.376 64.512-1.024 105.472-58.368 144.896-116.224 45.568-66.56 64.512-131.072 65.536-134.656-1.536-0.512-125.44-48.128-126.976-191.488-1.024-119.808 97.792-177.152 102.4-179.712-56.32-82.432-142.848-91.648-173.056-93.696-78.848-6.144-144.896 43.008-181.76 43.008zM629.073 187.307c33.28-39.936 55.296-95.744 49.152-151.040-47.616 2.048-104.96 31.744-139.264 71.68-30.72 35.328-57.344 92.16-50.176 146.432 52.736 4.096 107.008-27.136 140.288-67.072z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["apple-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1565,
+ "id": 784,
+ "name": "apple-fill",
+ "prevSize": 32,
+ "code": 61162
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1514
+ },
+ {
+ "icon": {
+ "paths": [
+ "M570.581 806.272h61.952l20.395 69.845 111.147-69.845h130.991v-576.085h-324.484v576.085zM636.501 292.693h192.644v450.987h-73.903l-73.813 46.379-13.397-46.251-31.531-0.128v-450.987zM515.755 493.739h-138.323c4.038-64.772 5.974-129.661 5.803-194.56h135.337c0 0 5.205-59.733-22.699-59.051h-234.11c9.216-34.731 20.821-70.613 34.688-107.691 0 0-63.701 0-85.333 57.131-9.003 23.552-34.987 114.219-81.237 206.848 15.573-1.707 67.115-3.115 97.451-58.795 5.589-15.616 6.656-17.621 13.568-38.485h76.373c0 27.776-3.157 177.109-4.437 194.475h-138.24c-31.104 0-41.173 62.549-41.173 62.549h173.483c-11.648 132.096-74.112 243.413-187.435 331.307 54.187 15.488 108.203-2.432 134.912-26.197 0 0 60.8-55.339 94.123-183.381l142.761 171.947c0 0 20.907-71.168-3.285-105.856-20.053-23.637-74.238-87.552-97.321-110.72l-38.699 30.72c11.52-36.992 18.475-72.96 20.821-107.691h163.070c0 0-0.213-62.549-20.053-62.549h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zhihu-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1566,
+ "id": 783,
+ "name": "zhihu-fill",
+ "prevSize": 32,
+ "code": 61163
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1515
+ },
+ {
+ "icon": {
+ "paths": [
+ "M224 128h576c25.459 0 49.877 10.114 67.883 28.118 18.001 18.004 28.117 42.421 28.117 67.882v576c0 25.459-10.116 49.877-28.117 67.883-18.005 18.001-42.423 28.117-67.883 28.117h-576c-25.461 0-49.879-10.116-67.882-28.117-18.004-18.005-28.118-42.423-28.118-67.883v-576c0-25.461 10.114-49.879 28.118-67.882s42.421-28.118 67.882-28.118zM561.92 273.92v245.76c0 25.429 20.651 46.080 46.080 46.080h142.080c12.22 0 23.94-4.855 32.585-13.495 8.64-8.644 13.495-20.365 13.495-32.585v-245.76c0-12.221-4.855-23.942-13.495-32.584-8.644-8.641-20.365-13.496-32.585-13.496h-142.080c-12.22 0-23.94 4.855-32.585 13.496-8.64 8.642-13.495 20.363-13.495 32.584zM227.84 273.92v437.76c0 25.429 20.651 46.080 46.080 46.080h142.080c12.22 0 23.94-4.855 32.585-13.495 8.64-8.644 13.495-20.365 13.495-32.585v-437.76c0-12.221-4.855-23.942-13.495-32.584-8.644-8.641-20.365-13.496-32.585-13.496h-142.080c-12.221 0-23.942 4.855-32.584 13.496s-13.496 20.363-13.496 32.584z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["trello-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1567,
+ "id": 782,
+ "name": "trello-fill",
+ "prevSize": 32,
+ "code": 61164
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1516
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333l396.796 141.653-60.497 525.227-336.299 186.453-336.301-186.453-60.501-525.227 396.802-141.653zM512 179.627l-248.066 556.8h92.501l49.877-124.587h210.519l49.92 124.587h92.459l-247.211-556.8zM584.448 535.040h-144.896l72.448-174.507 72.448 174.507z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["angularjs-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1568,
+ "id": 781,
+ "name": "angularjs-fill",
+ "prevSize": 32,
+ "code": 61165
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1517
+ },
+ {
+ "icon": {
+ "paths": [
+ "M902.741 181.675c1.451 149.333 25.216 205.269 33.621 285.909 12.843 123.477-28.032 251.477-122.667 346.112-156.416 156.416-404.097 165.973-571.735 28.715l121.685-121.728c100.012 71.253 239.66 62.037 329.388-27.648 89.685-89.728 98.901-229.419 27.648-329.387l182.059-181.973zM781.995 181.589l-121.643 121.728c-100.011-71.253-239.66-62.037-329.388 27.648-89.685 89.728-98.901 229.376-27.648 329.387l-182.059 181.973c-1.451-149.333-25.216-205.269-33.621-285.909-12.843-123.477 28.032-251.477 122.667-346.112 156.416-156.416 404.097-165.973 571.735-28.715h-0.043zM512 341.333c94.293 0 170.667 76.373 170.667 170.667s-76.373 170.667-170.667 170.667c-94.295 0-170.668-76.373-170.668-170.667s76.373-170.667 170.668-170.667zM512 448c-35.328 0-64 28.672-64 64s28.672 64 64 64c35.328 0 64-28.672 64-64s-28.672-64-64-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["honor-of-kings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1569,
+ "id": 780,
+ "name": "honor-of-kings-fill",
+ "prevSize": 32,
+ "code": 61166
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1518
+ },
+ {
+ "icon": {
+ "paths": [
+ "M422.485 931.797c-44.281-0.004-88.128-8.734-129.036-25.685-40.908-16.947-78.077-41.792-109.385-73.105-31.308-31.317-56.14-68.493-73.081-109.406s-25.657-84.762-25.651-129.041c0-155.52 105.259-293.333 248.491-325.333 167.296-37.547 243.371-66.901 301.909-183.893 42.581 82.56 13.781 158.293 0 199.552 200.448-48.171 271.829-139.947 289.024-151.381 0 168.619-52.523 275.285-103.211 344.107 62.976-2.389 85.717-20.651 117.077-25.045-13.867 61.781-64 148.907-184.747 204.587-14.596 77.222-55.697 146.923-116.211 197.069-60.51 50.142-136.636 77.581-215.223 77.577h0.043zM580.779 656.512c0 13.781-2.261 20.651-17.195 20.651l-134.4 0.085 126.293-138.581c36.693-36.693 36.693-55.040 36.693-101.888 0-14.251-2.048-30.592 2.048-44.8 2.005-6.144-2.048-8.192-8.149-6.144-14.293 4.053-38.741 4.053-79.488 4.053h-183.381c-10.197 0-14.293-6.101-10.197-14.251 0-2.048 0-8.149-4.096-8.149-26.453 12.203-32.597 67.243-30.549 101.888 0 18.347 10.197 28.544 24.448 28.544h144.683l-148.736 158.933c-10.24 12.245-20.395 28.544-20.395 50.944v44.843c0 20.395 12.245 32.597 34.645 36.693h255.488c23.68 0 39.808-9.941 39.808-36.48v-48.171c0-8.875 0-41.301-27.52-48.171z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zcool-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1570,
+ "id": 779,
+ "name": "zcool-fill",
+ "prevSize": 32,
+ "code": 61167
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1519
+ },
+ {
+ "icon": {
+ "paths": [
+ "M446.464 366.763c11.307 0 20.48 89.856 20.48 200.704l-0.043 14.976c-0.811 103.851-9.643 185.728-20.437 185.728-10.923 0-19.84-83.84-20.48-189.44v-15.019c0.213-109.141 9.301-196.949 20.48-196.949zM375.467 407.723c11.051 0 20.053 76.8 20.48 172.971v14.507c-0.427 96.171-9.429 172.971-20.48 172.971-10.88 0-19.797-74.88-20.48-169.387v-14.507l0.085-14.507c1.067-91.008 9.813-162.048 20.395-162.048zM304.469 407.723c10.88 0 19.797 74.88 20.48 169.387v14.507l-0.085 14.507c-1.067 91.008-9.813 162.048-20.395 162.048-11.051 0-20.053-76.8-20.48-172.971v-14.507c0.427-96.171 9.429-172.971 20.48-172.971zM233.472 432.299c11.307 0 20.48 75.179 20.48 167.936l-0.085 14.293c-0.853 86.059-9.685 153.643-20.395 153.643-11.179 0-20.224-73.259-20.48-164.352v-7.168c0.256-91.093 9.301-164.352 20.48-164.352zM162.475 506.027c11.307 0 20.48 58.667 20.48 131.072v6.741c-0.555 69.248-9.515 124.331-20.48 124.331-11.307 0-20.48-58.667-20.48-131.072v-6.741c0.555-69.248 9.515-124.331 20.48-124.331zM622.592 301.227c110.080 0 201.387 80.469 218.368 185.771 19.601-5.623 40.179-7.002 60.361-4.041 20.177 2.961 39.492 10.193 56.649 21.214 17.161 11.021 31.774 25.574 42.859 42.692 11.089 17.118 18.394 36.403 21.436 56.567 3.038 20.169 1.741 40.751-3.81 60.378-5.551 19.622-15.223 37.837-28.373 53.427-13.15 15.586-29.474 28.19-47.885 36.966-18.406 8.777-38.477 13.525-58.867 13.926l-2.688 0.043h-348.16c-8.691 0-17.024-3.452-23.172-9.596-6.144-6.148-9.596-14.481-9.596-23.172v-396.928c36.348-24.35 79.13-37.318 122.88-37.248zM91.477 497.835c11.307 0 20.48 56.832 20.48 126.976v6.656c-0.597 66.987-9.515 120.32-20.48 120.32-11.093 0-20.181-55.040-20.48-123.648v-3.328c0-70.144 9.173-126.976 20.48-126.976zM20.48 538.795c11.307 0 20.48 40.363 20.48 90.112v5.589c-0.683 47.147-9.6 84.523-20.48 84.523-11.307 0-20.48-40.363-20.48-90.112v-5.589c0.683-47.147 9.6-84.523 20.48-84.523z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["soundcloud-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1571,
+ "id": 778,
+ "name": "soundcloud-fill",
+ "prevSize": 32,
+ "code": 61168
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1520
+ },
+ {
+ "icon": {
+ "paths": [
+ "M782.293 782.464h-113.707v-178.219c0-42.496-0.853-97.195-59.307-97.195-59.264 0-68.309 46.251-68.309 94.080v181.333h-113.749v-366.464h109.227v49.92h1.493c15.275-28.757 52.395-59.179 107.861-59.179 115.2 0 136.533 75.861 136.533 174.549v201.173h-0.043zM298.795 365.867c-8.68 0.011-17.277-1.691-25.299-5.009s-15.308-8.186-21.444-14.326c-6.136-6.14-11-13.431-14.313-21.454s-5.009-16.622-4.992-25.302c0.009-13.063 3.89-25.83 11.155-36.687s17.585-19.316 29.657-24.307c12.072-4.991 25.353-6.29 38.163-3.734s24.575 8.855 33.806 18.098c9.231 9.243 15.514 21.015 18.054 33.829s1.224 26.093-3.783 38.159c-5.007 12.065-13.479 22.375-24.345 29.626s-23.638 11.116-36.701 11.107h0.043zM355.797 782.464h-114.048v-366.464h114.091v366.464h-0.043zM839.253 128h-654.549c-31.403 0-56.704 24.747-56.704 55.339v657.323c0 30.592 25.344 55.339 56.661 55.339h654.421c31.317 0 56.917-24.747 56.917-55.339v-657.323c0-30.592-25.6-55.339-56.917-55.339h0.171z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["linkedin-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1572,
+ "id": 777,
+ "name": "linkedin-box-fill",
+ "prevSize": 32,
+ "code": 61169
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1521
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM376.448 654.635c-16.853-20.352-37.803-27.605-63.104-21.717l-6.4 1.749-25.173 43.349c-4.748 7.727-6.32 16.994-4.388 25.856 1.932 8.866 7.218 16.636 14.752 21.687s16.73 6.993 25.663 5.414c8.932-1.574 16.908-6.549 22.256-13.875l2.645-3.968 33.707-58.496h0.043zM563.627 369.493c-20.821 17.237-41.813 68.139-12.373 118.912l129.707 224.683c4.493 7.633 11.699 13.291 20.181 15.838 8.482 2.551 17.613 1.805 25.566-2.086 7.957-3.891 14.153-10.641 17.344-18.901 3.196-8.265 3.153-17.425-0.115-25.655l-2.091-4.267-34.219-59.392h50.773c4.612 0.013 9.182-0.892 13.444-2.65 4.262-1.762 8.137-4.348 11.396-7.612s5.841-7.142 7.599-11.405c1.754-4.267 2.65-8.836 2.633-13.449 0.021-8.555-3.093-16.823-8.751-23.236-5.662-6.417-13.478-10.534-21.969-11.58l-4.395-0.256h-91.307l-103.424-178.944zM575.488 239.616c-7.369-4.232-16.017-5.656-24.354-4.009s-15.795 6.253-21.001 12.969l-2.645 3.925-15.659 27.008-15.317-27.008c-4.493-7.633-11.699-13.29-20.181-15.839s-17.613-1.804-25.566 2.088c-7.957 3.892-14.153 10.643-17.344 18.903-3.196 8.261-3.153 17.423 0.115 25.654l2.091 4.267 35.755 62.165-114.56 198.528h-89.472c-4.609-0.013-9.175 0.887-13.435 2.645s-8.131 4.343-11.39 7.603c-3.259 3.26-5.842 7.13-7.601 11.388-1.758 4.262-2.658 8.828-2.647 13.436 0 17.963 13.312 32.683 30.677 34.859l4.395 0.256h319.147c14.507-27.307-2.56-66.091-34.56-69.888l-5.163-0.299h-108.928l150.528-260.693c4.651-8.068 5.905-17.653 3.49-26.647-2.419-8.994-8.307-16.659-16.375-21.31z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["app-store-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1573,
+ "id": 776,
+ "name": "app-store-fill",
+ "prevSize": 32,
+ "code": 61170
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1522
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h768zM853.333 213.333h-361.173c-29.44 84.352-44.16 198.144-44.16 341.333h128c-4.907 39.253-6.4 80.128-4.565 122.752 52.309-9.003 115.371-33.152 171.819-72.96l48.427 71.040c-70.059 46.72-140.928 75.904-212.309 87.168 2.219 15.787 4.821 31.787 7.851 48h266.112v-597.333zM279.68 604.501l-47.36 70.997c92.032 61.355 185.472 92.501 279.68 92.501v-85.333c-76.459 0-153.685-25.728-232.32-78.165zM725.333 298.667c23.552 0 42.667 19.115 42.667 42.667v42.667c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-42.667c0-23.552 19.115-42.667 42.667-42.667zM298.667 298.667c-23.552 0-42.667 19.285-42.667 42.667v42.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-42.667c0-23.552-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["finder-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1574,
+ "id": 775,
+ "name": "finder-fill",
+ "prevSize": 32,
+ "code": 61171
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1523
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 435.285l-115.072 76.715 115.072 76.715 115.072-76.715-115.072-76.715zM704 460.715l115.072-76.715-264.405-176.256v153.429l149.333 99.541zM853.333 463.701l-72.405 48.299 72.405 48.256v-96.555zM704 563.285l-149.333 99.541v153.429l264.405-176.256-115.072-76.715zM469.333 361.173v-153.429l-264.405 176.256 115.072 76.715 149.333-99.541zM204.928 640l264.405 176.256v-153.429l-149.333-99.541-115.072 76.715zM243.072 512l-72.405-48.256v96.512l72.405-48.256zM85.333 384c-0.001-7.023 1.731-13.937 5.044-20.13s8.101-11.471 13.943-15.369l384-256c7.010-4.678 15.253-7.174 23.68-7.174s16.67 2.496 23.68 7.174l384 256c5.841 3.898 10.633 9.177 13.943 15.369s5.043 13.107 5.043 20.13v256c0 7.023-1.732 13.935-5.043 20.13-3.311 6.191-8.102 11.469-13.943 15.369l-384 256c-7.010 4.676-15.253 7.172-23.68 7.172s-16.67-2.496-23.68-7.172l-384-256c-5.842-3.9-10.631-9.178-13.943-15.369-3.312-6.195-5.044-13.107-5.044-20.13v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["codepen-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1575,
+ "id": 774,
+ "name": "codepen-fill",
+ "prevSize": 32,
+ "code": 61172
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1524
+ },
+ {
+ "icon": {
+ "paths": [
+ "M419.285 928.555c-191.019-42.325-333.952-212.736-333.952-416.555 0-77.739 20.779-150.613 57.131-213.418l182.741 316.544c20.531 37.21 51.709 67.439 89.537 86.81s80.579 26.999 122.772 21.905l-118.229 204.715zM512 938.667l182.912-316.8c19.964-33.165 30.485-71.155 30.421-109.867 0.068-46.17-14.912-91.104-42.667-128h236.459c12.715 40.405 19.541 83.413 19.541 128 0 235.648-191.019 426.667-426.667 426.667zM621.739 577.92c-11.465 19.11-27.725 34.897-47.164 45.794-19.443 10.897-41.391 16.529-63.68 16.337-22.285-0.196-44.134-6.208-63.381-17.442-19.251-11.234-35.231-27.298-46.362-46.609l-1.237-2.133c-10.804-19.58-16.291-41.647-15.913-64.009 0.378-22.357 6.607-44.228 18.067-63.433 11.46-19.2 27.751-35.066 47.249-46.014s41.527-16.596 63.889-16.382c22.362 0.214 44.279 6.283 63.565 17.602s35.268 27.493 46.362 46.911c11.089 19.422 16.9 41.404 16.849 63.77-0.051 22.362-5.956 44.318-17.135 63.689l-1.109 1.92zM197.632 223.531c39.925-43.61 88.499-78.422 142.625-102.217s112.615-36.048 171.743-35.981c74.91-0.031 148.51 19.671 213.389 57.121s118.75 91.328 156.19 156.212h-369.579c-41.796-0.006-82.671 12.264-117.555 35.284s-62.239 55.779-78.669 94.209l-118.144-204.629z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chrome-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1576,
+ "id": 773,
+ "name": "chrome-fill",
+ "prevSize": 32,
+ "code": 61173
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1525
+ },
+ {
+ "icon": {
+ "paths": [
+ "M576.132 85.376l-426.669 426.666 131.541 131.541 558.082-558.208h-262.955zM575.876 477.824l-229.335 231.296 229.207 229.547h264.064l-229.845-230.4 229.931-230.4-264.021-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flutter-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1577,
+ "id": 772,
+ "name": "flutter-fill",
+ "prevSize": 32,
+ "code": 61174
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1526
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 725.333c-84.868 0-166.263-33.715-226.274-93.726s-93.726-141.406-93.726-226.274c0-84.869 33.714-166.263 93.726-226.274s141.406-93.726 226.274-93.726c84.868 0 166.263 33.714 226.274 93.726s93.726 141.405 93.726 226.274c0 84.868-33.715 166.263-93.726 226.274s-141.406 93.726-226.274 93.726zM85.333 85.333h170.667v853.333h-170.667v-853.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["patreon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1578,
+ "id": 771,
+ "name": "patreon-fill",
+ "prevSize": 32,
+ "code": 61175
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1527
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490.667 128v362.667h-362.667v-362.667h362.667zM490.667 896h-362.667v-362.667h362.667v362.667zM533.333 128h362.667v362.667h-362.667v-362.667zM896 533.333v362.667h-362.667v-362.667h362.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["microsoft-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1579,
+ "id": 770,
+ "name": "microsoft-fill",
+ "prevSize": 32,
+ "code": 61176
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1528
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM597.333 426.667v170.667h85.333v-170.667h-85.333zM341.333 426.667v170.667h85.333v-170.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["outlet-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1580,
+ "id": 769,
+ "name": "outlet-fill",
+ "prevSize": 32,
+ "code": 61177
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1529
+ },
+ {
+ "icon": {
+ "paths": [
+ "M440.021 493.483l338.773-338.774 90.496 90.496-60.331 60.331 90.496 90.496-150.827 150.87-90.496-90.496-127.573 127.573c23.488 45.197 30.042 97.301 18.47 146.91-11.575 49.604-40.508 93.431-81.57 123.571-41.065 30.135-91.555 44.591-142.347 40.751-50.792-3.836-98.536-25.711-134.607-61.675-36.090-36.032-58.077-83.802-61.979-134.647-3.902-50.85 10.54-101.41 40.709-142.528s74.069-70.063 123.744-81.6c49.676-11.537 101.84-4.894 147.041 18.722zM401.664 742.997c8.15-7.872 14.651-17.289 19.123-27.699s6.827-21.611 6.925-32.939c0.098-11.332-2.061-22.566-6.352-33.054s-10.627-20.015-18.639-28.028c-8.012-8.013-17.54-14.349-28.027-18.641-10.487-4.288-21.724-6.447-33.055-6.349s-22.528 2.453-32.939 6.925c-10.411 4.471-19.827 10.974-27.699 19.123-15.544 16.094-24.145 37.649-23.951 60.023s9.169 43.776 24.99 59.597c15.822 15.821 37.224 24.798 59.598 24.99 22.374 0.196 43.93-8.405 60.024-23.949z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["key-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1581,
+ "id": 768,
+ "name": "key-2-fill",
+ "prevSize": 32,
+ "code": 61178
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1530
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-512c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h512zM597.333 469.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1582,
+ "id": 767,
+ "name": "door-fill",
+ "prevSize": 32,
+ "code": 61179
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1531
+ },
+ {
+ "icon": {
+ "paths": [
+ "M954.581 829.44c11.452 12.113 17.724 28.211 17.489 44.873-0.235 16.666-6.963 32.58-18.752 44.361-11.785 11.785-27.703 18.5-44.369 18.731-16.661 0.226-32.759-6.054-44.864-17.51l-196.096-196.096-150.869 150.869-331.86-331.861c-62.717-62.707-98.564-147.364-99.95-236.042s31.799-174.414 92.526-239.051l7.424-7.637 769.322 769.364z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["knife-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1583,
+ "id": 766,
+ "name": "knife-fill",
+ "prevSize": 32,
+ "code": 61180
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1532
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c94.293 0 170.667 76.373 170.667 170.667v384h42.667c23.467 0 42.667-19.2 42.667-42.667v-256c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v256c0 70.699-57.301 128-128 128h-42.667v128h85.333v85.333h-512v-85.333h85.333v-256h-42.667c-70.699 0-128-57.301-128-128v-85.333c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v85.333c0 23.467 19.2 42.667 42.667 42.667h42.667v-256c0-94.293 76.373-170.667 170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cactus-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1584,
+ "id": 765,
+ "name": "cactus-fill",
+ "prevSize": 32,
+ "code": 61181
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1533
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128v85.333c0 164.949-133.717 298.667-298.667 298.667h-42.667v42.667h213.333v298.667c0 47.147-38.187 85.333-85.333 85.333h-341.333c-47.147 0-85.333-38.187-85.333-85.333v-298.667h213.333v-128c0-164.949 133.717-298.667 298.667-298.667h128zM234.667 85.333c107.904 0 203.307 53.376 261.291 135.211-43.52 57.216-69.291 128.683-69.291 206.123v42.667h-21.333c-176.725 0-320-143.275-320-320v-64h149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plant-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1585,
+ "id": 764,
+ "name": "plant-fill",
+ "prevSize": 32,
+ "code": 61182
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1534
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 85.333c0 21.888 20.907 42.667 42.667 42.667h426.667c21.888 0 42.667-20.907 42.667-42.667h85.333c0 70.699-57.301 128-128 128h-170.667l0.043 87.979c168.363 21.035 298.624 164.651 298.624 338.688v256c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-256c0-174.080 130.304-317.696 298.667-338.688v-87.979h-170.667c-70.827 0-128-57.173-128-128h85.333zM512 469.333c-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.667 0-31.659-8.619-61.269-23.637-86.699l-116.864 116.907-4.011 3.499c-16.725 13.013-40.96 11.861-56.32-3.541-16.64-16.64-16.64-43.691 0-60.331l116.864-116.907c-25.429-14.933-55.040-23.595-86.699-23.595z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scales-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1586,
+ "id": 763,
+ "name": "scales-2-fill",
+ "prevSize": 32,
+ "code": 61183
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1535
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 85.333v54.528l213.333 71.168 154.965-51.627 27.008 80.896-129.365 43.136 132.096 363.179c-46.592 48.512-112.171 78.72-184.704 78.72-72.576 0-138.112-30.208-184.704-78.72l132.011-363.179-160.64-53.589v580.821h170.667v85.333h-426.666v-85.333h170.666v-580.821l-160.767 53.589 132.095 363.179c-46.548 48.512-112.127 78.72-184.66 78.72-72.576 0-138.112-30.208-184.704-78.72l132.011-363.179-129.28-43.093 27.008-80.981 154.965 51.627 213.332-71.125v-54.528h85.333zM768 388.395l-60.501 166.272h120.96l-60.459-166.272zM256.001 388.395l-60.501 166.272h120.96l-60.459-166.272z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scales-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1587,
+ "id": 762,
+ "name": "scales-3-fill",
+ "prevSize": 32,
+ "code": 61184
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1536
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v85.333h256v85.333h-256c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-85.333h-128c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-170.667h682.667v170.667c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-128zM725.333 256h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h-682.667v-85.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333v-170.667h85.333v170.667h256v-170.667h85.333v170.667zM512 618.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM469.333 85.333h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plug-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1588,
+ "id": 761,
+ "name": "plug-2-fill",
+ "prevSize": 32,
+ "code": 61185
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1537
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 768h-130.516c-12.672-54.315-69.845-98.731-93.312-128-40.184-50.206-65.367-110.746-72.65-174.639-7.283-63.892 3.632-128.543 31.487-186.504s71.517-106.874 125.957-141.105c54.439-34.231 117.441-52.387 181.748-52.377s127.305 18.186 181.73 52.435c54.43 34.249 98.078 83.176 125.914 141.146s38.729 122.624 31.428 186.516c-7.305 63.889-32.508 124.42-72.708 174.613-23.467 29.227-80.555 73.643-93.227 127.915h-130.517v-213.333h-85.333v213.333zM682.667 853.333v42.667c0 22.63-8.99 44.335-24.994 60.339-16 16.004-37.705 24.994-60.339 24.994h-170.667c-22.631 0-44.336-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-42.667h341.332z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lightbulb-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1589,
+ "id": 760,
+ "name": "lightbulb-fill",
+ "prevSize": 32,
+ "code": 61186
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1538
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128v768h-768v-768h768zM554.667 256h-85.333v512h85.333v-512zM384 384h-85.333v256h85.333v-256zM725.333 384h-85.333v256h85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["voice-recognition-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1590,
+ "id": 759,
+ "name": "voice-recognition-fill",
+ "prevSize": 32,
+ "code": 61187
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1539
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 298.666v170.668h298.667c11.315 0 22.17 4.493 30.17 12.497 8 8 12.497 18.854 12.497 30.17v341.333h85.333v85.333h-938.667v-85.333h85.333v-341.333c0-11.315 4.495-22.17 12.497-30.17 8.002-8.004 18.854-12.497 30.17-12.497h298.667v-170.668h85.333zM590.080 17.151c16.973 29.399 21.572 64.336 12.787 97.126s-30.238 60.748-59.635 77.722l-73.899 42.667c-16.973-29.399-21.572-64.336-12.787-97.126s30.238-60.748 59.635-77.722l73.899-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cake-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1591,
+ "id": 758,
+ "name": "cake-fill",
+ "prevSize": 32,
+ "code": 61188
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1540
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128v85.333c0 410.752-229.248 597.333-512 597.333h-81.152c9.045-128.512 49.067-206.293 153.515-298.709 51.371-45.44 47.019-71.68 21.717-56.619-174.251 103.68-260.779 243.797-264.619 467.541l-0.128 15.787h-85.333c0-58.155 4.949-110.933 14.763-159.232-9.813-55.211-14.763-130.133-14.763-224.768 0-235.648 191.019-426.667 426.667-426.667 85.333 0 170.667 42.667 341.333 0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["leaf-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1592,
+ "id": 757,
+ "name": "leaf-fill",
+ "prevSize": 32,
+ "code": 61189
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1541
+ },
+ {
+ "icon": {
+ "paths": [
+ "M338.817 768c-12.672-54.315-69.845-98.731-93.312-128-40.184-50.206-65.367-110.746-72.65-174.639-7.283-63.892 3.632-128.543 31.487-186.504s71.517-106.874 125.957-141.105c54.439-34.231 117.441-52.387 181.748-52.377s127.305 18.186 181.73 52.435c54.43 34.249 98.078 83.176 125.914 141.146s38.729 122.624 31.428 186.516c-7.305 63.889-32.508 124.42-72.708 174.613-23.467 29.227-80.555 73.643-93.227 127.915h-346.367zM682.667 853.333v42.667c0 22.63-8.99 44.335-24.994 60.339-16 16.004-37.705 24.994-60.339 24.994h-170.667c-22.631 0-44.336-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-42.667h341.332zM554.667 426.88v-170.881l-191.999 256.215h106.666v170.667l192-256h-106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lightbulb-flash-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1593,
+ "id": 756,
+ "name": "lightbulb-flash-fill",
+ "prevSize": 32,
+ "code": 61190
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1542
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM469.333 545.792v136.875h85.333v-136.875c22.46-9.801 40.858-27.038 52.105-48.811s14.652-46.754 9.647-70.744c-5.009-23.989-18.121-45.522-37.137-60.979s-42.773-23.895-67.281-23.895c-24.508 0-48.265 8.438-67.281 23.895-19.015 15.457-32.129 36.99-37.136 60.979s-1.601 48.971 9.645 70.744c11.248 21.773 29.646 39.010 52.105 48.811z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-lock-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1594,
+ "id": 755,
+ "name": "door-lock-box-fill",
+ "prevSize": 32,
+ "code": 61191
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1543
+ },
+ {
+ "icon": {
+ "paths": [
+ "M661.338 85.333c22.007-0.002 43.746 4.861 63.659 14.241 19.908 9.38 37.5 23.045 51.511 40.018 14.016 16.972 24.102 36.833 29.542 58.159s6.101 43.592 1.933 65.203l-0.64 2.816c37.116 12.382 69.568 35.805 93.013 67.136 23.441 31.33 36.757 69.073 38.165 108.177 1.404 39.104-9.165 77.709-30.298 110.639-21.133 32.934-51.819 58.628-87.953 73.643l-46.336 277.632c-1.66 9.963-6.797 19.017-14.498 25.545-7.701 6.532-17.472 10.121-27.571 10.125h-439.724c-10.1-0.004-19.87-3.593-27.573-10.125-7.703-6.528-12.84-15.582-14.496-25.545l-43.904-263.253c-29.529-1.677-57.566-13.525-79.346-33.532-21.78-20.011-35.959-46.946-40.127-76.224-4.168-29.282 1.932-59.102 17.265-84.395 15.332-25.291 38.95-44.492 66.838-54.34l-0.128-7.253c-0.005-43.204 10.925-85.706 31.771-123.549s50.93-69.793 87.451-92.876c36.52-23.083 78.289-36.548 121.415-39.141 43.124-2.593 86.209 5.771 125.232 24.313 13.559-20.721 32.073-37.736 53.862-49.506s46.17-17.925 70.938-17.908zM469.338 640h-85.335v213.333h85.335v-213.333zM640.004 640h-85.333v213.333h85.333v-213.333zM746.671 554.667c15.77 0 31.343-3.499 45.602-10.24 14.255-6.741 26.837-16.563 36.843-28.753 10.010-12.19 17.186-26.445 21.018-41.745 3.836-15.296 4.228-31.253 1.156-46.72-3.076-15.47-9.54-30.064-18.935-42.733-9.391-12.669-21.474-23.098-35.383-30.535-13.905-7.437-29.286-11.699-45.039-12.477s-31.479 1.946-46.050 7.977l-7.467 3.456c-19.691 10.145-42.551 12.238-63.753 5.836s-39.087-20.795-49.869-40.14l-2.987-5.845c-13.636-29.678-35.503-54.819-63.002-72.441s-59.477-26.983-92.134-26.972c-91.394 0-166.018 71.851-170.455 160.725l-0.213 8.405 0.128 7.253c0.302 16.754-4.336 33.226-13.335 47.36-8.999 14.135-21.961 25.31-37.268 32.128l-6.4 2.517c-9.474 3.375-17.454 9.98-22.534 18.662-5.080 8.678-6.934 18.871-5.236 28.783s6.839 18.91 14.518 25.399c7.679 6.494 17.403 10.069 27.46 10.099h533.335z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cake-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1595,
+ "id": 754,
+ "name": "cake-3-fill",
+ "prevSize": 32,
+ "code": 61192
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1544
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 256v170.624h128v-170.624h85.333v170.624h128v-170.624h85.333v170.624l42.667 0.043c32.649-0.002 64.064 12.471 87.821 34.871 23.753 22.396 38.050 53.026 39.966 85.619l0.213 7.509v42.667c0 43.264-16.085 82.773-42.624 112.853l-0.043 185.813c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-186.027c-22.926-26.121-37.387-58.586-41.472-93.099l-0.939-10.795-0.256-8.747v-42.667c-0.002-32.649 12.473-64.064 34.871-87.821 22.398-23.753 53.027-38.050 85.62-39.966l7.509-0.213 42.667-0.043v-170.624h85.333zM810.667 512h-597.333c-10.45 0-20.537 3.84-28.346 10.782-7.81 6.946-12.799 16.512-14.022 26.893l-0.299 4.992v41.429l0.128 6.272c1.284 21.726 10.821 42.142 26.659 57.067s36.782 23.236 58.546 23.232c20.435 0.034 40.204-7.266 55.709-20.578s25.714-31.748 28.771-51.955l0.64-6.528 0.213-7.509c1.536-53.248 77.952-55.168 84.864-5.717l0.427 5.717 0.171 6.272c1.195 21.67 10.603 42.074 26.308 57.058 15.706 14.98 36.527 23.411 58.231 23.582 21.705 0.166 42.658-7.94 58.594-22.677 15.94-14.733 25.66-34.991 27.191-56.64l0.512-12.032c5.291-49.323 79.445-49.323 84.736 0l0.512 12.032c1.527 21.534 11.157 41.69 26.953 56.405s36.578 22.899 58.167 22.899c21.589 0 42.372-8.183 58.167-22.899s25.425-34.871 26.953-56.405l0.213-6.357v-42.667c0-10.449-3.84-20.535-10.782-28.348-6.946-7.808-16.512-12.796-26.893-14.020l-4.992-0.299zM298.667 42.667c56.32 37.163 70.955 89.088 61.824 123.221-4.39 16.397-15.115 30.378-29.814 38.867s-32.168 10.793-48.565 6.402c-16.397-4.39-30.378-15.115-38.867-29.814s-10.793-32.168-6.402-48.565c12.757-47.36 61.824-26.112 61.824-90.112zM512 42.667c56.32 37.163 70.955 89.088 61.824 123.221-4.39 16.397-15.117 30.378-29.815 38.867s-32.166 10.793-48.563 6.402c-16.397-4.39-30.379-15.115-38.869-29.814-8.486-14.699-10.79-32.168-6.4-48.565 12.757-47.36 61.824-26.112 61.824-90.112zM725.333 42.667c56.32 37.163 70.955 89.088 61.824 123.221-4.39 16.397-15.117 30.378-29.815 38.867s-32.166 10.793-48.563 6.402c-16.397-4.39-30.379-15.115-38.869-29.814-8.486-14.699-10.79-32.168-6.4-48.565 12.757-47.36 61.824-26.112 61.824-90.112z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cake-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1596,
+ "id": 753,
+ "name": "cake-2-fill",
+ "prevSize": 32,
+ "code": 61193
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1545
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 298.667v106.667c0 153.173-124.16 277.333-277.333 277.333h-106.667v213.333h-85.333v-298.667l0.811-42.667c10.88-143.189 130.56-256 276.523-256h192zM256 128c131.925 0 243.883 85.547 283.435 204.203-64 54.4-106.24 133.461-112.085 222.464h-43.349c-164.949 0-298.667-133.717-298.667-298.667v-128h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["seedling-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1597,
+ "id": 752,
+ "name": "seedling-fill",
+ "prevSize": 32,
+ "code": 61194
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1546
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 87.467c215.595 21.376 384 203.307 384 424.533v42.667h-384v256c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339v-42.667h85.333v42.667c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988s-88.674-17.98-120.678-49.988c-32.009-32.004-49.988-75.413-49.988-120.678v-256h-384v-42.667c0-221.227 168.405-403.157 384-424.533v-2.133c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v2.133z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["umbrella-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1598,
+ "id": 751,
+ "name": "umbrella-fill",
+ "prevSize": 32,
+ "code": 61195
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1547
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 441.216v93.611c-51.029 29.525-85.333 84.693-85.333 147.84 0 94.293 76.373 170.667 170.667 170.667 63.147 0 118.315-34.304 147.84-85.333h93.568c-35.115 99.413-129.963 170.667-241.408 170.667-141.397 0-256-114.603-256-256 0-111.488 71.253-206.293 170.667-241.451zM512 725.333c-70.699 0-128-57.301-128-128v-170.667c0-70.699 57.301-128 128-128s128 57.301 128 128v213.333h61.184c27.648 0 53.461 13.397 69.376 35.669l3.797 5.76 115.541 192.64-73.131 43.861-115.627-192.597h-189.141zM512 85.333c58.88 0 106.667 47.787 106.667 106.667s-47.787 106.667-106.667 106.667c-58.88 0-106.667-47.787-106.667-106.667s47.787-106.667 106.667-106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wheelchair-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1599,
+ "id": 750,
+ "name": "wheelchair-fill",
+ "prevSize": 32,
+ "code": 61196
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1548
+ },
+ {
+ "icon": {
+ "paths": [
+ "M185.258 60.076l769.323 769.364c12.006 12.002 18.752 28.279 18.756 45.257 0.004 16.973-6.733 33.254-18.735 45.261s-28.279 18.756-45.257 18.756c-16.973 0.004-33.254-6.733-45.261-18.735l-196.096-196.139-150.869 150.827-175.787-175.787v111.787c0 11.315-4.495 22.17-12.497 30.17-8.002 8.004-18.854 12.497-30.17 12.497s-22.168-4.493-30.17-12.497c-8.002-8-12.497-18.854-12.497-30.17v-170.667c-0.012-10.876-4.176-21.333-11.641-29.239-7.465-7.91-17.669-12.668-28.525-13.308-10.856-0.636-21.546 2.897-29.885 9.877s-13.699 16.879-14.983 27.678l-0.299 4.992v42.667c0 11.315-4.495 22.17-12.497 30.17-8.002 8.004-18.854 12.497-30.17 12.497s-22.168-4.493-30.17-12.497c-8.002-8-12.497-18.854-12.497-30.17v-374.868c-1.772-89.050 31.438-175.245 92.501-240.085l7.424-7.637z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["knife-blood-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1600,
+ "id": 749,
+ "name": "knife-blood-fill",
+ "prevSize": 32,
+ "code": 61197
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1549
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v85.333h256v85.333h-256c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-85.333h-128c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-170.667h682.667v170.667c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-128zM682.667 256h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h-682.667v-85.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-170.667h85.333v170.667h170.667v-170.667h85.333v170.667zM512 618.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plug-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1601,
+ "id": 748,
+ "name": "plug-fill",
+ "prevSize": 32,
+ "code": 61198
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1550
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.333 298.667v170.667h85.333v-170.667h-85.333zM597.333 512v170.667h85.333v-170.667h-85.333zM341.333 512v170.667h85.333v-170.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["outlet-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1602,
+ "id": 747,
+ "name": "outlet-2-fill",
+ "prevSize": 32,
+ "code": 61199
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1551
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 597.333h-185.216c-20.13 56.934-59.738 104.922-111.829 135.479-52.087 30.554-113.3 41.711-172.82 31.501s-113.513-41.135-152.437-87.309c-38.924-46.17-60.273-104.614-60.273-165.005s21.349-118.834 60.273-165.005c38.924-46.171 92.917-77.096 152.437-87.308s120.733 0.946 172.82 31.502c52.092 30.556 91.699 78.542 111.829 135.477h441.216v170.667h-85.333v170.667h-170.667v-170.667zM298.666 597.333c22.632 0 44.337-8.99 60.34-24.994 16.003-16 24.994-37.709 24.994-60.339s-8.99-44.335-24.994-60.339c-16.003-16.004-37.708-24.994-60.34-24.994s-44.337 8.99-60.34 24.994c-16.003 16.004-24.994 37.709-24.994 60.339s8.99 44.339 24.994 60.339c16.003 16.004 37.708 24.994 60.34 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["key-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1603, "id": 746, "name": "key-fill", "prevSize": 32, "code": 61200 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1552
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 896v-85.333h85.333v-640c0-23.552 19.115-42.667 42.667-42.667h512c23.552 0 42.667 19.115 42.667 42.667v640h85.333v85.333h-768zM640 469.333h-85.333v85.333h85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-closed-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1604,
+ "id": 745,
+ "name": "door-closed-fill",
+ "prevSize": 32,
+ "code": 61201
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1553
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128v768h-768v-768h768zM554.624 256h-85.333l-187.691 469.333h91.904l51.157-128h174.507l51.243 128h91.947l-187.733-469.333zM511.957 379.093l53.12 132.907h-106.325l53.205-132.907z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["character-recognition-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1605,
+ "id": 744,
+ "name": "character-recognition-fill",
+ "prevSize": 32,
+ "code": 61202
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1554
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 896v-85.333h85.333v-604.374c0-20.651 14.763-38.315 35.029-41.984l404.139-73.472c13.909-2.56 27.221 6.699 29.739 20.608 0.299 1.493 0.427 2.987 0.427 4.565v54.613l170.667 0.043c23.552 0 42.667 19.115 42.667 42.667v597.334h85.333v85.333h-170.667v-640h-128v640h-554.667zM512 469.333h-85.333v85.333h85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-open-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1606,
+ "id": 743,
+ "name": "door-open-fill",
+ "prevSize": 32,
+ "code": 61203
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1555
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 640v170.667h128v85.333h-341.333v-85.333h128v-170.667h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667zM341.333 341.333v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["reserved-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1607,
+ "id": 742,
+ "name": "reserved-fill",
+ "prevSize": 32,
+ "code": 61204
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1556
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.334c63.241-0.064 125.705 13.959 182.852 41.052 57.143 27.093 107.537 66.575 147.516 115.577l-270.037 270.037 270.037 270.037c-39.979 49.003-90.372 88.486-147.516 115.575-57.148 27.093-119.612 41.118-182.852 41.054-235.648 0-426.667-191.019-426.667-426.667s191.019-426.666 426.667-426.666zM512 213.334c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.252 18.743 45.255s28.284 18.745 45.257 18.745c16.973 0 33.254-6.743 45.257-18.745s18.743-28.281 18.743-45.255c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["game-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1608,
+ "id": 741,
+ "name": "game-fill",
+ "prevSize": 32,
+ "code": 61205
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1557
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.376l0.043 341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17l-0.043-341.376-85.291 0.043c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256c0 33.948 13.486 66.505 37.49 90.51s56.564 37.49 90.51 37.49c33.946 0 66.505-13.486 90.509-37.49s37.491-56.562 37.491-90.51h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-shirt-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1609,
+ "id": 740,
+ "name": "t-shirt-2-fill",
+ "prevSize": 32,
+ "code": 61206
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1558
+ },
+ {
+ "icon": {
+ "paths": [
+ "M527.616 570.283l75.733 43.733c-45.214 100.139-49.967 213.879-13.269 317.44-25.745 4.817-51.887 7.232-78.080 7.211-60.459 0.098-120.241-12.706-175.36-37.547l190.976-330.837zM677.675 656.981l180.651 104.277c-47.057 65.314-111.578 116.041-186.155 146.347-28.403-76.693-28.284-161.041 0.341-237.653l5.163-12.971zM378.027 483.925l75.733 43.691-190.976 330.667c-70.643-50.88-124.080-122.103-153.173-204.16 103.096-19.038 195.543-75.447 259.627-158.421l8.789-11.776zM934.656 452.949c2.688 19.328 4.053 39.040 4.053 59.051 0.094 60.459-12.706 120.243-37.547 175.36l-180.736-104.32c50.884-67.162 124.851-113.084 207.616-128.896l6.613-1.195zM122.923 336.683l180.693 104.32c-52.293 69.009-128.885 115.533-214.229 130.133-2.702-19.597-4.056-39.356-4.053-59.136 0-62.507 13.44-121.856 37.547-175.36l0.043 0.043zM761.259 165.675c70.643 50.881 124.079 122.106 153.173 204.16-103.113 19.077-195.571 75.515-259.669 158.506l-8.747 11.776-75.733-43.733 190.976-330.709zM512 85.334c62.507 0 121.856 13.44 175.36 37.547l-190.976 330.837-75.733-43.69c45.235-100.163 49.988-213.937 13.269-317.525 25.749-4.8 51.887-7.2 78.080-7.168zM351.872 116.48c28.361 76.706 28.209 161.050-0.427 237.653l-5.12 12.928-180.651-104.32c45.237-62.764 106.633-112.099 177.664-142.763l8.533-3.541v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["basketball-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1610,
+ "id": 739,
+ "name": "basketball-fill",
+ "prevSize": 32,
+ "code": 61207
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1559
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM583.253 682.667h-142.507l-58.88 80.939 23.637 72.789c34.377 11.26 70.323 16.977 106.496 16.939 37.163 0 72.96-5.973 106.496-16.939l23.595-72.789-58.837-80.939zM225.877 463.872l-55.125 39.979-0.085 8.149c0 73.813 23.424 142.123 63.232 197.973h81.493l56.448-77.653-43.861-135.253-102.101-33.195zM798.123 463.872l-102.101 33.195-43.861 135.253 56.405 77.653h81.493c41.25-57.762 63.377-126.993 63.275-197.973l-0.128-8.149-55.083-39.979zM609.707 184.875l-55.040 40.107v107.392l114.944 83.499 95.531-31.019 23.637-72.661c-44.049-60.976-106.974-105.726-179.029-127.317h-0.043zM414.208 184.875c-72.062 21.603-134.988 66.368-179.029 127.36l23.637 72.619 95.531 31.019 114.987-83.499v-107.392l-55.125-40.107z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["football-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1611,
+ "id": 738,
+ "name": "football-fill",
+ "prevSize": 32,
+ "code": 61208
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1560
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.333 545.792v136.875h85.333v-136.875c22.46-9.801 40.858-27.038 52.105-48.811s14.652-46.754 9.647-70.744c-5.009-23.989-18.121-45.522-37.137-60.979s-42.773-23.895-67.281-23.895c-24.508 0-48.265 8.438-67.281 23.895-19.015 15.457-32.129 36.99-37.136 60.979s-1.601 48.971 9.645 70.744c11.248 21.773 29.646 39.010 52.105 48.811z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["door-lock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1612,
+ "id": 737,
+ "name": "door-lock-fill",
+ "prevSize": 32,
+ "code": 61209
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1561
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c79.211 0 155.174 31.467 211.187 87.477s87.479 131.978 87.479 211.189h45.824c10.743 0 21.094 4.056 28.983 11.357 7.885 7.301 12.727 17.309 13.555 28.024l36.096 469.333c0.87 11.281-2.778 22.447-10.138 31.040-7.364 8.593-17.835 13.914-29.116 14.784l-3.285 0.128h-761.175c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17l0.128-3.285 36.096-469.333c0.827-10.715 5.668-20.723 13.554-28.024s18.237-11.357 28.984-11.357h45.824c0-79.212 31.466-155.178 87.477-211.189s131.976-87.477 211.191-87.477zM597.333 554.667h-170.668v85.333h170.668v-85.333zM512 170.667c-54.976 0.003-107.827 21.228-147.534 59.249s-63.202 89.903-65.588 144.825l-0.213 9.259h426.668c-0.004-54.974-21.231-107.825-59.251-147.532s-89.903-63.202-144.823-65.588l-9.259-0.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["handbag-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1613,
+ "id": 736,
+ "name": "handbag-fill",
+ "prevSize": 32,
+ "code": 61210
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1562
+ },
+ {
+ "icon": {
+ "paths": [
+ "M300.799 571.989l150.785 150.869-60.289 60.331 60.374 60.373-60.332 60.331-105.6-105.6-120.704 120.704-60.331-60.331 120.704-120.747-105.6-105.557 60.331-60.331 60.331 60.288 60.331-60.331zM127.999 128l151.296 0.128 504.193 504.235 60.373-60.331 60.331 60.331-105.557 105.6 120.661 120.704-60.331 60.331-120.704-120.704-105.6 105.6-60.331-60.331 60.331-60.373-504.534-504.533-0.128-150.656zM744.832 128l151.168 0.128 0.085 150.315-172.928 172.885-150.869-150.827 172.544-172.501z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sword-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1614,
+ "id": 735,
+ "name": "sword-fill",
+ "prevSize": 32,
+ "code": 61211
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1563
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 512v426.667c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-426.667h682.667zM384 597.333h-85.333v213.333h85.333v-213.333zM810.667 42.667c23.552 0 42.667 19.115 42.667 42.667v341.333h-682.667v-341.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM384 170.667h-85.333v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fridge-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1615,
+ "id": 734,
+ "name": "fridge-fill",
+ "prevSize": 32,
+ "code": 61212
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1564
+ },
+ {
+ "icon": {
+ "paths": [
+ "M405.334 469.333l6.144 0.299c14.79 1.417 28.624 7.936 39.133 18.436s17.041 24.333 18.466 39.121l0.256 6.144-0.299 6.144c-1.417 14.788-7.936 28.625-18.436 39.134s-24.332 17.037-39.12 18.466l-6.144 0.256h-149.333v85.333h149.333c72.532 0 132.991-51.712 146.516-120.277l1.28-7.68 257.536-0.043c30.336 0 59.221-6.357 85.333-17.749v188.416c0 26.47-8.205 52.292-23.488 73.911-15.283 21.615-36.89 37.961-61.845 46.793v49.963c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-511.999c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-49.92c-24.963-8.832-46.574-25.186-61.856-46.81-15.282-21.628-23.485-47.458-23.477-73.937v-170.667c0-22.63 8.991-44.335 24.994-60.339s37.708-24.994 60.34-24.994h192zM938.667 320v21.333l-0.213 7.509c-1.835 31.3-15.1 60.837-37.269 83.008-22.17 22.17-51.708 35.43-83.008 37.269l-7.509 0.213h-270.379c-11.469-24.175-29.222-44.821-51.401-59.788s-47.97-23.7-74.679-25.29l-8.875-0.256h-192c-31.104 0-60.245 8.32-85.376 22.869l0.043-150.869c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.679-49.987h405.332c62.238 0 121.929 24.724 165.935 68.732 44.011 44.009 68.732 103.697 68.732 165.935z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["boxing-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1616,
+ "id": 733,
+ "name": "boxing-fill",
+ "prevSize": 32,
+ "code": 61213
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1565
+ },
+ {
+ "icon": {
+ "paths": [
+ "M834.645 516.181l65.323 113.152c41.259 71.424 16.768 162.773-54.613 203.989-22.741 13.099-48.469 20.011-74.667 20.011h-88.021v85.333l-213.333-149.333 213.333-149.333v85.333h87.979c3.755 0 7.424-0.981 10.667-2.859 9.088-5.248 12.843-16.128 9.429-25.643l-1.621-3.499-65.323-113.152 110.848-64zM330.112 400.384l22.613 259.413-73.813-42.667-44.032 76.203c-1.877 3.243-2.859 6.912-2.859 10.667 0 10.453 7.552 19.2 17.493 20.992l3.84 0.341h130.645v128h-130.645c-82.475 0-149.333-66.859-149.333-149.333 0-26.197 6.912-51.968 20.011-74.667l43.989-76.203-73.899-42.667 235.989-110.080zM586.667 126.677c22.699 13.099 41.557 31.957 54.656 54.656l43.947 76.203 73.941-42.667-22.613 259.413-236.032-110.080 73.899-42.667-43.989-76.203c-1.877-3.243-4.565-5.973-7.808-7.808-9.088-5.248-20.395-3.072-26.923 4.693l-2.219 3.115-65.28 113.152-110.891-64 65.28-113.152c41.259-71.424 132.608-95.915 204.032-54.656z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["recycle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1617,
+ "id": 732,
+ "name": "recycle-fill",
+ "prevSize": 32,
+ "code": 61214
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1566
+ },
+ {
+ "icon": {
+ "paths": [
+ "M572.331 451.669l20.48 20.736 19.84 20.693 19.584 20.992c147.541 160.597 233.472 307.968 196.565 344.875-17.067 17.067-57.856 7.851-112.64-21.632-67.477 42.308-146.436 62.605-225.954 58.078-79.516-4.523-155.663-33.647-217.906-83.337l127.147-127.147c17.866 4.779 36.799 3.622 53.955-3.29 17.152-6.916 31.595-19.217 41.148-35.051 9.557-15.829 13.713-34.342 11.84-52.74s-9.673-35.691-22.225-49.271c-12.553-13.581-29.175-22.72-47.369-26.035-18.196-3.315-36.975-0.631-53.511 7.65s-29.935 21.713-38.178 38.268c-8.243 16.555-10.885 35.337-7.527 53.525l1.493 6.613-127.104 127.147c-49.705-62.255-78.834-138.415-83.359-217.95s15.778-158.507 58.1-225.997c-29.525-54.741-38.741-95.488-21.675-112.597 41.685-41.643 224 73.173 407.295 256.427v0.043zM843.861 180.138c8.491 8.484 15.091 18.663 19.379 29.872s6.165 23.197 5.504 35.18c-0.661 11.983-3.84 23.692-9.335 34.362-5.491 10.67-13.175 20.062-22.545 27.561 33.673 53.475 53.649 114.422 58.167 177.451 4.514 63.031-6.566 126.204-32.269 183.936-50.731-83.371-130.987-178.091-230.101-277.163l-22.912-22.699c-90.795-88.704-177.323-160.597-254.207-207.36 57.735-25.709 120.916-36.795 183.956-32.278s123.994 24.498 177.472 58.176c7.497-9.359 16.883-17.032 27.541-22.52 10.662-5.488 22.362-8.668 34.334-9.332s23.949 1.202 35.153 5.478c11.2 4.275 21.376 10.864 29.862 19.335z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bell-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1618,
+ "id": 731,
+ "name": "bell-fill",
+ "prevSize": 32,
+ "code": 61215
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1567
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490.667 85.333c107.503 0 210.598 42.705 286.613 118.72s118.72 179.113 118.72 286.614c0.098 63.014-14.558 125.171-42.795 181.504l105.088 105.131c8 8 12.493 18.85 12.493 30.165s-4.493 22.165-12.493 30.165l-120.661 120.661c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-105.131-105.088c-56.333 28.237-118.49 42.893-181.504 42.795-107.501 0-210.599-42.705-286.614-118.72s-118.72-179.11-118.72-286.613c0-107.501 42.705-210.599 118.72-286.614s179.113-118.72 286.614-118.72zM716.928 656.555l-60.331 60.331 150.869 150.827 60.331-60.331-150.869-150.827zM796.459 396.075l-400.384 400.384c29.867 9.216 61.653 14.208 94.592 14.208 40.004 0.051 79.663-7.415 116.907-22.016l-41.472-41.557c-8-8-12.493-18.85-12.493-30.165s4.493-22.165 12.493-30.165l120.661-120.661c8-8 18.85-12.493 30.165-12.493s22.165 4.493 30.165 12.493l41.557 41.472c14.601-37.244 22.067-76.902 22.016-116.907 0-32.939-4.992-64.683-14.208-94.592z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ping-pong-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1619,
+ "id": 730,
+ "name": "ping-pong-fill",
+ "prevSize": 32,
+ "code": 61216
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1568
+ },
+ {
+ "icon": {
+ "paths": [
+ "M619.307 213.334l111.189-111.232c3.964-3.967 8.666-7.114 13.845-9.261s10.735-3.252 16.341-3.252c5.606 0 11.157 1.105 16.337 3.252s9.886 5.294 13.85 9.261l180.992 181.035c8 8.001 12.493 18.851 12.493 30.165s-4.493 22.164-12.493 30.165l-161.195 161.194v391.339c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.493-30.17-12.497-8.002-8-12.497-18.854-12.497-30.17v-391.339l-161.195-161.194c-7.999-8.001-12.492-18.852-12.492-30.165s4.493-22.164 12.492-30.165l180.992-181.035c3.962-3.967 8.668-7.114 13.848-9.261s10.732-3.252 16.339-3.252c5.607 0 11.159 1.105 16.339 3.252s9.885 5.294 13.848 9.261l111.189 111.232h214.614z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-shirt-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1620,
+ "id": 729,
+ "name": "t-shirt-fill",
+ "prevSize": 32,
+ "code": 61217
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1569
+ },
+ {
+ "icon": {
+ "paths": [
+ "M542.165 759.168c35.285 35.285 67.755 51.499 97.835 51.499 16.128 0 29.013-2.859 52.779-11.776l16.725-6.485c44.8-18.005 67.413-24.405 101.163-24.405 51.797 0 101.504 23.253 148.736 67.413l9.429 9.088-60.331 60.331c-35.285-35.285-67.755-51.499-97.835-51.499-16.128 0-29.013 2.859-52.779 11.776l-16.725 6.485c-44.8 17.963-67.413 24.405-101.163 24.405-51.797 0-101.504-23.253-148.736-67.413l-9.429-9.088 60.331-60.331zM384 128c0 33.948 13.486 66.505 37.49 90.51s56.564 37.49 90.51 37.49c33.946 0 66.505-13.486 90.509-37.49s37.491-56.562 37.491-90.51h256c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-384c-21.53-0.009-42.266 8.124-58.048 22.763-15.787 14.639-25.459 34.701-27.072 56.171l-0.213 6.4v298.667h-170.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17l-0.043-341.376-85.291 0.043c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM542.165 588.501c35.285 35.285 67.755 51.499 97.835 51.499 16.128 0 29.013-2.859 52.779-11.776l16.725-6.485c44.8-18.005 67.413-24.405 101.163-24.405 51.797 0 101.504 23.253 148.736 67.413l9.429 9.088-60.331 60.331c-35.285-35.285-67.755-51.499-97.835-51.499-16.128 0-29.013 2.859-52.779 11.776l-16.725 6.485c-44.8 17.963-67.413 24.405-101.163 24.405-51.797 0-101.504-23.253-148.736-67.413l-9.429-9.088 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["t-shirt-air-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1621,
+ "id": 728,
+ "name": "t-shirt-air-fill",
+ "prevSize": 32,
+ "code": 61218
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1570
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 85.333v42.667h298.667v85.333h-298.667v597.333h170.667v85.333h-426.667v-85.333h170.667v-597.333h-298.667v-85.333h298.667v-42.667h85.333zM213.333 270.635l120.661 120.704c30.891 30.848 50.005 73.515 50.005 120.661 0 94.293-76.373 170.667-170.667 170.667s-170.667-76.373-170.667-170.667c0-47.147 19.115-89.813 50.005-120.661l120.661-120.704zM810.667 270.635l120.661 120.704c30.891 30.848 50.005 73.515 50.005 120.661 0 94.293-76.373 170.667-170.667 170.667s-170.667-76.373-170.667-170.667c0-47.147 19.115-89.813 50.005-120.661l120.661-120.704zM810.667 391.339l-60.331 60.331c-15.957 15.957-25.003 37.291-25.003 60.331l170.667 0.043c0-23.040-9.045-44.416-25.003-60.373l-60.331-60.331zM213.333 391.339l-60.331 60.331c-15.957 15.957-25.003 37.291-25.003 60.331l170.667 0.043c0-23.040-9.045-44.416-25.003-60.373l-60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scales-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1622,
+ "id": 727,
+ "name": "scales-fill",
+ "prevSize": 32,
+ "code": 61219
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1571
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 256c-67.895 0-133.010 26.971-181.019 74.981s-74.981 113.124-74.981 181.019c0 67.895 26.971 133.009 74.981 181.018 48.009 48.013 113.124 74.982 181.019 74.982s133.009-26.97 181.018-74.982c48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981zM512 330.667c20.501-0.001 40.567 5.907 57.801 17.015 17.229 11.108 30.895 26.946 39.356 45.619 8.465 18.673 11.366 39.387 8.363 59.666-3.008 20.279-11.793 39.266-25.306 54.682 24.107 19.456 39.253 47.659 39.253 79.019 0 58.88-53.504 106.667-119.467 106.667s-119.467-47.787-119.467-106.667c0-31.36 15.147-59.563 39.253-79.061-13.501-15.415-22.275-34.398-25.272-54.669-2.997-20.275-0.092-40.98 8.37-59.645s22.121-34.497 39.341-45.603c17.225-11.106 37.282-17.016 57.775-17.022zM512 544c-32.128 0-55.467 20.821-55.467 42.667s23.339 42.667 55.467 42.667c32.128 0 55.467-20.821 55.467-42.667s-23.339-42.667-55.467-42.667zM512 394.667c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["billiards-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1623,
+ "id": 726,
+ "name": "billiards-fill",
+ "prevSize": 32,
+ "code": 61220
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1572
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 170.667v298.667l213.333-106.667 213.333 106.667v-298.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM512 341.333l-192-213.333h384l-192 213.333zM554.667 479.403l-42.667-21.333-42.667 21.333v373.931h85.333v-373.931zM640 597.333v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shirt-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1624,
+ "id": 725,
+ "name": "shirt-fill",
+ "prevSize": 32,
+ "code": 61221
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1573
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM256.981 657.749c62.635 93.44 156.672 152.917 261.845 152.917 105.131 0 199.211-59.435 261.803-152.917-71.010-66.364-164.612-103.219-261.803-103.083-97.207-0.145-190.826 36.71-261.845 103.083zM512 469.333c33.946 0 66.505-13.487 90.509-37.491s37.491-56.561 37.491-90.509c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51c0 33.948 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1625,
+ "id": 724,
+ "name": "account-circle-fill",
+ "prevSize": 32,
+ "code": 61222
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1574
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v330.581h-426.667c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM768 725.333v-149.333l213.333 192-213.333 192v-149.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-shared-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1626,
+ "id": 723,
+ "name": "user-shared-2-fill",
+ "prevSize": 32,
+ "code": 61223
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1575
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v341.333h-341.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM888.661 888.661l-120.661 120.704-120.661-120.704c-23.872-23.868-40.132-54.276-46.724-87.381-6.588-33.109-3.209-67.426 9.707-98.615s34.79-57.847 62.857-76.599c28.066-18.756 61.065-28.77 94.822-28.77s66.756 10.014 94.822 28.77c28.066 18.752 49.941 45.41 62.857 76.599s16.294 65.506 9.707 98.615c-6.592 33.105-22.852 63.514-46.724 87.381zM768 725.333c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-location-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1627,
+ "id": 722,
+ "name": "user-location-fill",
+ "prevSize": 32,
+ "code": 61224
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1576
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v341.333h-341.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM768 917.333l-125.397 65.92 23.936-139.605-101.419-98.901 140.203-20.395 62.677-127.019 62.72 127.019 140.16 20.395-101.419 98.901 23.893 139.605-125.355-65.92zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-star-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1628,
+ "id": 721,
+ "name": "user-star-fill",
+ "prevSize": 32,
+ "code": 61225
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1577
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 173.013c192 21.205 341.333 183.979 341.333 381.653v384h-768v-384c0-197.675 149.333-360.448 341.333-381.653v-130.347h85.333v130.347zM512 768c56.58 0 110.844-22.477 150.848-62.485 40.009-40.004 62.485-94.268 62.485-150.848s-22.477-110.844-62.485-150.849c-40.004-40.008-94.268-62.484-150.848-62.484s-110.842 22.476-150.849 62.484c-40.008 40.006-62.484 94.269-62.484 150.849s22.476 110.844 62.484 150.848c40.008 40.009 94.269 62.485 150.849 62.485zM512 682.667c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM512 597.333c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["robot-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1629,
+ "id": 720,
+ "name": "robot-fill",
+ "prevSize": 32,
+ "code": 61226
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1578
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM341.333 554.667c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.415 49.988 120.68 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1630,
+ "id": 719,
+ "name": "emotion-2-fill",
+ "prevSize": 32,
+ "code": 61227
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1579
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 85.333c39.117 0.003 77.303 11.955 109.444 34.257s56.7 53.889 70.391 90.534c13.696 36.645 15.868 76.598 6.229 114.512s-30.626 71.979-60.156 97.635c15.147 41.259 23.424 85.888 23.424 132.395-0.034 56.102-12.356 111.518-36.105 162.342-23.753 50.829-58.347 95.834-101.363 131.853-43.012 36.019-93.393 62.174-147.601 76.629-54.208 14.451-110.925 16.853-166.161 7.031s-107.648-31.629-153.551-63.885c-45.902-32.256-84.179-74.176-112.138-122.816s-44.92-102.814-49.692-158.711c-4.771-55.898 2.764-112.166 22.076-164.838-20.903-18.165-37.629-40.637-49.031-65.873s-17.21-52.641-17.024-80.334c0.185-27.692 6.358-55.017 18.096-80.099s28.763-47.328 49.907-65.212c21.143-17.884 45.906-30.982 72.588-38.397s54.652-8.969 81.991-4.558c27.339 4.412 53.401 14.685 76.396 30.115s42.38 35.653 56.827 59.279c46.814-8.735 94.839-8.735 141.653 0 17.131-28.074 41.195-51.269 69.884-67.357 28.685-16.087 61.026-24.526 93.914-24.505zM426.666 554.667h-85.333c-0.001 44.527 17.399 87.287 48.486 119.164s73.4 50.338 117.91 51.452c44.514 1.114 87.697-15.211 120.341-45.491 32.64-30.285 52.156-72.119 54.383-116.591l0.213-8.533h-85.333c0.098 22.144-8.414 43.456-23.74 59.443-15.326 15.983-36.262 25.382-58.394 26.21-22.127 0.832-43.712-6.972-60.19-21.76-16.482-14.788-26.569-35.405-28.13-57.493l-0.214-6.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bear-smile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1631,
+ "id": 718,
+ "name": "bear-smile-fill",
+ "prevSize": 32,
+ "code": 61228
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1580
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v341.333h-341.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM896 725.333h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v42.667zM810.667 725.333v-42.667c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v42.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["admin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1632,
+ "id": 717,
+ "name": "admin-fill",
+ "prevSize": 32,
+ "code": 61229
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1581
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v320c0.017 31.91-10.193 62.989-29.129 88.678-18.935 25.685-45.598 44.634-76.087 54.063-30.49 9.425-63.194 8.841-93.325-1.677-30.127-10.513-56.098-30.404-74.099-56.755-11.145 19.742-27.337 36.164-46.912 47.595-19.58 11.43-41.843 17.451-64.512 17.451s-44.932-6.020-64.512-17.451c-19.575-11.43-35.766-27.853-46.912-47.595-17.62 25.719-42.85 45.282-72.15 55.94s-61.201 11.878-91.229 3.49c-30.028-8.393-56.678-25.967-76.211-50.27-19.533-24.299-30.971-54.106-32.708-85.235l-0.213-8.277v-319.957c0-101.843 40.457-199.515 112.471-271.529s169.686-112.471 271.529-112.471zM512 512c-47.147 0-85.333 47.787-85.333 106.667s38.187 106.667 85.333 106.667c47.147 0 85.333-47.787 85.333-106.667s-38.187-106.667-85.333-106.667zM405.333 341.333c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743c16.974 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.283-18.745-45.257-18.745zM618.667 341.333c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ghost-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1633,
+ "id": 716,
+ "name": "ghost-fill",
+ "prevSize": 32,
+ "code": 61230
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1582
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 682.667v170.667h170.667v85.333h-256v-256h85.333zM938.667 682.667v256h-256v-85.333h170.667v-170.667h85.333zM320 298.667c0 50.921 20.229 99.758 56.236 135.765 36.007 36.006 84.842 56.235 135.764 56.235s99.759-20.228 135.765-56.235c36.006-36.008 56.235-84.844 56.235-135.765h85.333c0.009 50.747-13.905 100.525-40.23 143.91-26.321 43.388-64.047 78.72-109.060 102.148l-0.043 265.941h-256v-265.899c-45.030-23.428-82.766-58.765-109.097-102.157-26.332-43.396-40.249-93.185-40.236-143.945h85.333zM512 213.333c28.288 0 55.42 11.238 75.426 31.242 20.002 20.004 31.241 47.135 31.241 75.425s-11.238 55.421-31.241 75.425c-20.006 20.004-47.138 31.242-75.426 31.242s-55.42-11.238-75.426-31.242c-20.003-20.004-31.241-47.135-31.241-75.425s11.238-55.421 31.241-75.425c20.006-20.004 47.138-31.242 75.426-31.242zM341.333 85.333v85.333l-170.667-0.043v170.709h-85.333v-256h256zM938.667 85.333v256h-85.333v-170.667h-170.667v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["body-scan-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1634,
+ "id": 715,
+ "name": "body-scan-fill",
+ "prevSize": 32,
+ "code": 61231
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1583
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 853.333h597.333v85.333h-597.333v-85.333zM512 768c-90.527 0-177.347-35.964-241.359-99.972-64.013-64.013-99.974-150.835-99.974-241.361 0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359 0 90.526-35.964 177.348-99.972 241.361-64.013 64.009-150.835 99.972-241.361 99.972z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1635,
+ "id": 714,
+ "name": "user-4-fill",
+ "prevSize": 32,
+ "code": 61232
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1584
+ },
+ {
+ "icon": {
+ "paths": [
+ "M315.306 705.664c-59.244-41.779-103.648-101.338-126.778-170.039-23.13-68.706-23.785-142.991-1.87-212.093s65.261-129.432 123.76-172.25c58.498-42.817 129.109-65.898 201.604-65.898s143.104 23.081 201.604 65.898c58.496 42.818 101.845 103.148 123.759 172.25s21.261 143.387-1.869 212.093c-23.134 68.702-67.537 128.26-126.78 170.039l88.875 203.093c1.425 3.251 2.018 6.805 1.724 10.347-0.294 3.537-1.463 6.946-3.409 9.916s-4.599 5.41-7.727 7.091c-3.127 1.685-6.622 2.564-10.172 2.556h-532.054c-3.545 0.004-7.035-0.875-10.156-2.556s-5.772-4.117-7.716-7.078c-1.944-2.965-3.119-6.37-3.417-9.899-0.299-3.533 0.287-7.087 1.705-10.334l88.875-203.136h0.043zM346.41 468.053c9.282 36.885 30.613 69.615 60.611 93.001 29.996 23.381 66.941 36.079 104.979 36.079 38.033 0 74.982-12.698 104.977-36.079 29.999-23.386 51.328-56.115 60.612-93.001l-82.773-20.693c-4.595 18.492-15.245 34.91-30.251 46.647-15.010 11.738-33.515 18.112-52.565 18.112s-37.555-6.374-52.565-18.112c-15.010-11.738-25.66-28.156-30.251-46.647l-82.774 20.693z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1636,
+ "id": 713,
+ "name": "user-5-fill",
+ "prevSize": 32,
+ "code": 61233
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1585
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 599.979v338.688h-384c-0.005-48.431 10.297-96.307 30.22-140.446 19.922-44.143 49.010-83.541 85.331-115.575s79.043-55.974 125.327-70.225c46.286-14.255 95.071-18.496 143.122-12.442zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM759.168 849.664l150.827-150.827 60.373 60.331-211.2 211.2-150.869-150.869 60.373-60.331 90.496 90.496z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-follow-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1637,
+ "id": 712,
+ "name": "user-follow-fill",
+ "prevSize": 32,
+ "code": 61234
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1586
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v330.581h-426.667c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM828.501 725.333h153.003v85.333h-153.003l78.037 77.995-60.331 60.373-181.035-181.035 181.035-181.035 60.331 60.373-78.037 77.995z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-received-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1638,
+ "id": 711,
+ "name": "user-received-fill",
+ "prevSize": 32,
+ "code": 61235
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1587
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 679.851c-80.386-10.897-153.635-51.917-204.933-114.761s-76.818-142.822-71.398-223.763c5.42-80.941 41.375-156.804 100.594-212.247s137.282-86.33 218.404-86.413c81.225-0.078 159.437 30.732 218.782 86.184s95.386 131.396 100.813 212.436c5.427 81.040-20.164 161.113-71.59 223.983-51.422 62.869-124.83 103.829-205.338 114.581v88.149h213.333v85.333h-213.333v170.667h-85.333v-170.667h-213.332v-85.333h213.332v-88.149z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["women-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1639,
+ "id": 710,
+ "name": "women-fill",
+ "prevSize": 32,
+ "code": 61236
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1588
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 469.333c-85.333 0-156.459 14.208-213.333 42.667 0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848-56.875-28.459-128-42.667-213.333-42.667zM362.667 298.667c-49.152 0-90.539 33.28-102.912 78.507l-1.621 6.827h209.067c-4.919-24.093-18.010-45.747-37.056-61.297-19.051-15.55-42.887-24.041-67.477-24.036zM661.333 298.667c-49.152 0-90.539 33.28-102.912 78.507l-1.621 6.827h209.067c-4.919-24.093-18.010-45.747-37.056-61.297-19.051-15.55-42.889-24.041-67.477-24.036z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-laugh-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1640,
+ "id": 709,
+ "name": "emotion-laugh-fill",
+ "prevSize": 32,
+ "code": 61237
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1589
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v330.581h-426.667c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM810.667 707.669l90.496-90.539 60.373 60.373-90.539 90.496 90.539 90.496-60.373 60.373-90.496-90.539-90.496 90.539-60.373-60.373 90.539-90.496-90.539-90.496 60.373-60.373 90.496 90.539z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-unfollow-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1641,
+ "id": 708,
+ "name": "user-unfollow-fill",
+ "prevSize": 32,
+ "code": 61238
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1590
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667v-85.333c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.27-62.485 150.849-62.485h256c56.58 0 110.844 22.477 150.848 62.485 40.009 40.004 62.485 94.268 62.485 150.848v85.333zM512 554.667c-33.617 0-66.906-6.622-97.967-19.486-31.059-12.868-59.281-31.723-83.052-55.497-23.772-23.77-42.629-51.989-55.494-83.051-12.865-31.059-19.487-64.349-19.487-97.967s6.621-66.908 19.487-97.967c12.865-31.059 31.722-59.281 55.494-83.052s51.993-42.629 83.052-55.494c31.061-12.865 64.35-19.487 97.967-19.487 67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1642,
+ "id": 707,
+ "name": "user-3-fill",
+ "prevSize": 32,
+ "code": 61239
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1591
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667v160.597c0 15.851-4.416 31.386-12.749 44.868-8.337 13.483-20.262 24.375-34.441 31.462l-123.477 61.739v42.667c0 32.649-12.471 64.064-34.871 87.821-22.396 23.753-53.026 38.050-85.619 39.966l-9.643 0.213c0.939-4.646 1.566-9.348 1.877-14.080l0.256-7.253v-21.333c0.009-21.53-8.124-42.266-22.763-58.048-14.639-15.787-34.701-25.459-56.171-27.072l-6.4-0.213h-85.333c-21.53-0.009-42.266 8.124-58.050 22.763-15.786 14.639-25.455 34.701-27.070 56.171l-0.213 6.4v21.333c0 7.296 0.725 14.464 2.133 21.333h-2.133c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-42.667l-123.477-61.739c-14.185-7.087-26.115-17.988-34.45-31.479s-12.747-29.035-12.739-44.894v-160.555c0-235.648 191.019-426.667 426.667-426.667zM341.333 469.333c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994zM682.667 469.333c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skull-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1643,
+ "id": 706,
+ "name": "skull-2-fill",
+ "prevSize": 32,
+ "code": 61240
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1592
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 599.979v253.355h85.333v-253.355c168.363 20.992 298.667 164.608 298.667 338.688h-682.667c0.001-83.14 30.344-163.422 85.333-225.779 54.99-62.362 130.846-102.507 213.333-112.909zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1644,
+ "id": 705,
+ "name": "user-2-fill",
+ "prevSize": 32,
+ "code": 61241
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1593
+ },
+ {
+ "icon": {
+ "paths": [
+ "M321.577 424.532l-122.752-122.624-105.557 105.557-60.331-60.331 271.531-271.531 60.331 60.331-105.6 105.6 122.709 122.709c64.552-49.212 145.388-72.055 226.147-63.903 80.764 8.152 155.405 46.69 208.819 107.809s81.604 140.253 78.861 221.379c-2.739 81.122-36.207 158.174-93.623 215.548s-134.49 90.786-215.616 93.47c-81.122 2.684-160.238-25.562-221.32-79.019s-99.567-128.128-107.662-208.892c-8.095-80.764 14.805-161.587 64.063-226.105z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["travesti-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1645,
+ "id": 704,
+ "name": "travesti-fill",
+ "prevSize": 32,
+ "code": 61242
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1594
+ },
+ {
+ "icon": {
+ "paths": [
+ "M42.667 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-682.667zM384 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM778.496 135.851c21.308 51.633 32.239 106.958 32.171 162.816 0.068 55.857-10.863 111.183-32.171 162.816l-71.552-52.053c12.211-35.651 18.423-73.079 18.389-110.763 0.047-37.681-6.153-75.11-18.347-110.763l71.509-52.053zM919.381 33.451c40.883 82.424 62.089 173.209 61.952 265.216 0 95.275-22.315 185.344-61.952 265.216l-70.187-51.029c30.942-67.157 46.912-140.243 46.805-214.187 0-76.459-16.768-149.035-46.805-214.187l70.187-51.029z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-voice-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1646,
+ "id": 703,
+ "name": "user-voice-fill",
+ "prevSize": 32,
+ "code": 61243
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1595
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM298.667 725.333h85.333c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509h85.333c0-56.58-22.477-110.844-62.485-150.848-40.004-40.009-94.268-62.485-150.848-62.485s-110.842 22.477-150.849 62.485c-40.008 40.004-62.484 94.268-62.484 150.848zM341.333 469.333c16.974 0 33.253-6.741 45.255-18.743s18.745-28.283 18.745-45.257c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM682.667 469.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-unhappy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1647,
+ "id": 702,
+ "name": "emotion-unhappy-fill",
+ "prevSize": 32,
+ "code": 61244
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1596
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512.004 512c-56.58 0-110.842-22.477-150.85-62.485-40.008-40.006-62.484-94.269-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.269-62.484 150.85-62.484s110.839 22.476 150.848 62.484c40.009 40.008 62.485 94.27 62.485 150.849s-22.477 110.842-62.485 150.848c-40.009 40.009-94.268 62.485-150.848 62.485zM768.004 725.333v213.333h-85.333v-213.333c0-189.909 112.811-353.493 275.072-427.349l35.328 77.653c-67.127 30.531-124.045 79.74-163.955 141.751s-61.124 134.199-61.111 207.945zM341.338 725.333v213.333h-85.333v-213.333c0.006-73.737-21.213-145.916-61.123-207.919s-96.823-111.206-163.944-141.734l35.328-77.696c82.034 37.312 151.595 97.449 200.372 173.231 48.777 75.776 74.71 163.998 74.7 254.118z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["open-arm-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1648,
+ "id": 701,
+ "name": "open-arm-fill",
+ "prevSize": 32,
+ "code": 61245
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1597
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c96.183 0 188.429 38.209 256.444 106.223s106.223 160.259 106.223 256.444c0 277.333-234.667 512-362.667 512s-362.667-234.667-362.667-512c0-96.185 38.209-188.431 106.223-256.444s160.259-106.223 256.444-106.223zM746.667 512c-26.923 0-53.547 5.662-78.14 16.619s-46.609 26.961-64.614 46.98c-18.005 20.015-31.599 43.597-39.902 69.21-8.299 25.613-11.119 52.685-8.277 79.458 28.476 3.025 57.267-0.363 84.267-9.907s51.52-25.007 71.77-45.257c20.25-20.25 35.712-44.77 45.257-71.77s12.932-55.791 9.907-84.267c-6.733-0.708-13.495-1.067-20.267-1.067zM277.333 512c-6.827 0-13.611 0.341-20.267 1.067-3.024 28.476 0.361 57.267 9.905 84.267s25.008 51.52 45.257 71.77c20.249 20.25 44.771 35.712 71.77 45.257s55.792 12.932 84.268 9.907c2.842-26.773 0.021-53.845-8.277-79.458-8.303-25.613-21.897-49.195-39.902-69.21-18.006-20.019-40.020-36.023-64.614-46.98s-51.217-16.619-78.141-16.619z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["aliens-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1649,
+ "id": 700,
+ "name": "aliens-fill",
+ "prevSize": 32,
+ "code": 61246
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1598
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 554.667c45.265 0 88.674 17.98 120.678 49.988 32.009 32.004 49.988 75.413 49.988 120.678s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988-91.392 0-170.667-76.373-170.667-170.667h-85.333c-0.017 41.404-15.083 81.395-42.398 112.512-27.312 31.121-65.007 51.251-106.061 56.636-41.053 5.389-82.666-4.331-117.084-27.349s-59.294-57.762-69.994-97.762c-10.7-40-6.493-82.526 11.836-119.65 18.329-37.129 49.531-66.33 87.791-82.155 38.261-15.829 80.971-17.212 120.173-3.883 39.202 13.325 72.223 40.452 92.91 76.318h130.987c14.976-25.954 36.527-47.509 62.477-62.49 25.954-14.98 55.398-22.861 85.363-22.844zM85.333 512v-85.333h85.333v-128c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h341.333c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v128h85.333v85.333h-853.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spy-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1650, "id": 699, "name": "spy-fill", "prevSize": 32, "code": 61247 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1599
+ },
+ {
+ "icon": {
+ "paths": [
+ "M608.256 927.744l-96.256 96.256-96.256-96.256c-189.184-43.691-330.411-213.333-330.411-415.744 0-235.52 191.147-426.667 426.667-426.667s426.667 191.147 426.667 426.667c0 202.411-141.227 372.053-330.411 415.744zM256.981 657.749c62.635 93.44 156.672 152.917 261.845 152.917 105.131 0 199.211-59.435 261.803-152.917-71.010-66.364-164.612-103.219-261.803-103.083-97.207-0.145-190.826 36.71-261.845 103.083zM512 469.333c33.946 0 66.505-13.487 90.509-37.491s37.491-56.561 37.491-90.509c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51c0 33.948 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-pin-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1651,
+ "id": 698,
+ "name": "account-pin-circle-fill",
+ "prevSize": 32,
+ "code": 61248
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1600
+ },
+ {
+ "icon": {
+ "paths": [
+ "M761.216 668.117l7.509 7.552 7.595-7.552c8.913-8.913 19.499-15.987 31.147-20.809 11.644-4.826 24.128-7.309 36.736-7.309s25.092 2.483 36.736 7.309c11.648 4.821 22.234 11.895 31.147 20.809s15.987 19.499 20.809 31.147c4.826 11.644 7.309 24.128 7.309 36.736s-2.483 25.092-7.309 36.736c-4.821 11.648-11.895 22.234-20.809 31.147l-143.36 143.317-143.275-143.317c-18.005-18.005-28.117-42.423-28.117-67.883s10.112-49.877 28.117-67.883c18.005-18.005 42.423-28.117 67.883-28.117s49.877 10.112 67.883 28.117zM512 597.333v341.333h-341.333c0.001-88.678 34.515-173.879 96.233-237.555 61.719-63.68 145.797-100.834 234.433-103.607l10.667-0.171zM512 42.667c141.44 0 256 114.56 256 256s-114.56 256-256 256c-141.44 0-256-114.56-256-256s114.56-256 256-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-heart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1652,
+ "id": 697,
+ "name": "user-heart-fill",
+ "prevSize": 32,
+ "code": 61249
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1601
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 213.12c0-47.019 38.101-85.12 85.12-85.12h597.76c47.019 0 85.12 38.101 85.12 85.12v597.76c0 22.575-8.969 44.224-24.93 60.19-15.966 15.962-37.615 24.93-60.19 24.93h-597.76c-22.575 0-44.226-8.969-60.189-24.93-15.963-15.966-24.931-37.615-24.931-60.19v-597.76zM271.232 768h490.24c-27.494-39.535-64.149-71.825-106.833-94.114-42.684-22.293-90.133-33.916-138.287-33.886-48.154-0.030-95.601 11.593-138.287 33.886-42.685 22.289-79.34 54.579-106.833 94.114zM512 554.667c19.61 0 39.031-3.861 57.148-11.366s34.581-18.505 48.448-32.371c13.867-13.867 24.866-30.332 32.371-48.448s11.366-37.537 11.366-57.148c0-19.611-3.861-39.029-11.366-57.147s-18.505-34.58-32.371-48.447c-13.867-13.867-30.332-24.867-48.448-32.372s-37.538-11.367-57.148-11.367c-39.607 0-77.589 15.733-105.594 43.739s-43.739 65.989-43.739 105.594c0 39.607 15.733 77.589 43.739 105.596s65.987 43.738 105.594 43.738z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1653,
+ "id": 696,
+ "name": "account-box-fill",
+ "prevSize": 32,
+ "code": 61250
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1602
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v330.581h-426.667c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM793.003 725.333l-78.037-77.995 60.373-60.373 180.992 181.035-180.992 181.035-60.373-60.373 78.037-77.995h-153.003v-85.333h153.003z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-shared-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1654,
+ "id": 695,
+ "name": "user-shared-fill",
+ "prevSize": 32,
+ "code": 61251
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1603
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 725.333c156.245 0 292.907 67.2 367.232 167.467l-78.592 37.163c-60.501-71.68-167.168-119.296-288.64-119.296-121.47 0-228.137 47.616-288.638 119.296l-78.549-37.205c74.325-100.267 210.944-167.424 367.188-167.424zM512 85.333c56.58 0 110.844 22.476 150.852 62.484s62.481 94.27 62.481 150.849v128c0 56.58-22.473 110.844-62.481 150.848-40.009 40.009-94.272 62.485-150.852 62.485-56.576 0-110.84-22.477-150.848-62.485-40.008-40.004-62.484-94.268-62.484-150.848v-128c0-56.579 22.476-110.842 62.484-150.849s94.272-62.484 150.848-62.484z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-6-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1655,
+ "id": 694,
+ "name": "user-6-fill",
+ "prevSize": 32,
+ "code": 61252
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1604
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c149.333 0 256 128 298.667 256 128 42.667 170.667 159.147 170.667 256l-118.4 33.835c-8.909 2.547-16.747 7.927-22.327 15.326s-8.602 16.41-8.606 25.677v63.829c0 19.802-7.868 38.793-21.871 52.796s-32.994 21.871-52.796 21.871h-25.429c-14.097-0.004-27.977 3.49-40.393 10.159-12.42 6.673-22.993 16.316-30.775 28.070-39.595 59.904-89.173 89.771-148.736 89.771s-109.141-29.909-148.736-89.771c-7.782-11.755-18.354-21.397-30.773-28.070-12.419-6.669-26.297-10.163-40.395-10.159h-25.429c-19.803 0-38.795-7.868-52.797-21.871s-21.869-32.994-21.869-52.796v-63.829c-0.004-9.267-3.025-18.278-8.606-25.677s-13.418-12.779-22.327-15.326l-118.4-33.835c0-96.683 42.667-213.333 170.667-256 42.667-128 149.333-256 298.667-256zM512 512c-35.328 0-64 47.787-64 106.667s28.672 106.667 64 106.667c35.328 0 64-47.787 64-106.667s-28.672-106.667-64-106.667zM405.333 341.333c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743c16.974 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.283-18.745-45.257-18.745zM618.667 341.333c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ghost-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1656,
+ "id": 693,
+ "name": "ghost-2-fill",
+ "prevSize": 32,
+ "code": 61253
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1605
+ },
+ {
+ "icon": {
+ "paths": [
+ "M789.333 85.333c47.659-0.026 93.628 17.678 128.96 49.666 35.337 31.988 57.506 75.975 62.208 123.406 4.698 47.43-8.414 94.912-36.783 133.212-28.369 38.301-69.973 64.678-116.71 74.004 21.649 51.874 30.157 108.297 24.759 164.25s-24.529 109.705-55.697 156.489c-31.168 46.78-73.408 85.137-122.97 111.667-49.557 26.53-104.9 40.41-161.114 40.405s-111.555-13.892-161.109-40.427c-49.555-26.539-91.79-64.9-122.952-111.684-31.162-46.788-50.287-100.544-55.677-156.497s3.124-112.371 24.783-164.245c-46.774-9.28-88.42-35.635-116.827-73.936s-41.541-85.804-36.845-133.257c4.696-47.454 26.887-91.461 62.251-123.45s81.368-49.672 129.053-49.602c49.103 0.003 96.338 18.819 131.994 52.578s57.023 79.897 59.707 128.926c27.97-7.222 56.744-10.864 85.634-10.837 29.568 0 58.24 3.755 85.589 10.837 2.684-49.036 24.055-95.18 59.721-128.94s82.91-52.571 132.023-52.564z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mickey-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1657,
+ "id": 692,
+ "name": "mickey-fill",
+ "prevSize": 32,
+ "code": 61254
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1606
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 768v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667v213.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128zM320 597.333c8.404 0 16.727-1.655 24.492-4.873s14.82-7.932 20.763-13.871c5.943-5.943 10.657-13.001 13.873-20.766s4.872-16.085 4.872-24.491c0-8.405-1.655-16.725-4.872-24.491s-7.93-14.822-13.873-20.766c-5.943-5.939-12.998-10.654-20.763-13.871s-16.087-4.873-24.492-4.873c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM704 597.333c8.405 0 16.725-1.655 24.491-4.873s14.822-7.932 20.766-13.871c5.939-5.943 10.654-13.001 13.871-20.766s4.873-16.085 4.873-24.491c0-8.405-1.655-16.725-4.873-24.491s-7.932-14.822-13.871-20.766c-5.943-5.939-13.001-10.654-20.766-13.871s-16.085-4.873-24.491-4.873c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skull-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1658,
+ "id": 691,
+ "name": "skull-fill",
+ "prevSize": 32,
+ "code": 61255
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1607
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM341.333 554.667c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.415 49.988 120.68 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678h-341.333zM341.333 469.333c16.974 0 33.253-6.741 45.255-18.743s18.745-28.283 18.745-45.257c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM682.667 469.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1659,
+ "id": 690,
+ "name": "emotion-fill",
+ "prevSize": 32,
+ "code": 61256
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1608
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v341.333h-341.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM915.029 854.699l64.171 64.171-60.331 60.331-64.171-64.171c-35.785 21.099-78.033 28.42-118.827 20.599-40.798-7.825-77.342-30.259-102.78-63.1s-38.025-73.83-35.405-115.285c2.624-41.459 20.275-80.533 49.647-109.909 29.376-29.372 68.45-47.023 109.909-49.647 41.455-2.62 82.445 9.967 115.285 35.405s55.275 61.982 63.1 102.78c7.821 40.794 0.499 83.042-20.599 118.827zM768 853.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-search-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1660,
+ "id": 689,
+ "name": "user-search-fill",
+ "prevSize": 32,
+ "code": 61257
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1609
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v330.581h-426.667c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM768 725.333v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1661,
+ "id": 688,
+ "name": "user-add-fill",
+ "prevSize": 32,
+ "code": 61258
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1610
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM341.333 597.333v85.333h341.333v-85.333h-341.333zM341.333 469.333c16.974 0 33.253-6.741 45.255-18.743s18.745-28.283 18.745-45.257c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM682.667 469.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-normal-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1662,
+ "id": 687,
+ "name": "emotion-normal-fill",
+ "prevSize": 32,
+ "code": 61259
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1611
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 608.085v330.581h-426.667c-0.013-52.1 11.901-103.514 34.829-150.298s56.262-87.701 97.447-119.612c41.185-31.91 89.129-53.969 140.159-64.486 51.025-10.513 103.787-9.212 154.231 3.814zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM853.333 725.333h128v85.333h-128v149.333l-213.333-192 213.333-192v149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-received-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1663,
+ "id": 686,
+ "name": "user-received-2-fill",
+ "prevSize": 32,
+ "code": 61260
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1612
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM298.667 554.667c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848h-85.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509h-85.333zM341.333 469.333c16.974 0 33.253-6.741 45.255-18.743s18.745-28.283 18.745-45.257c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM682.667 469.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.283 18.743-45.257c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-happy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1664,
+ "id": 685,
+ "name": "emotion-happy-fill",
+ "prevSize": 32,
+ "code": 61261
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1613
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-682.667zM426.667 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM853.333 725.333h170.667v85.333h-170.667v-85.333zM725.333 512h298.667v85.333h-298.667v-85.333zM810.667 298.667h213.333v85.333h-213.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1665,
+ "id": 684,
+ "name": "contacts-fill",
+ "prevSize": 32,
+ "code": 61262
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1614
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.329 301.483v-258.816h85.333v258.816c80.388 10.898 153.638 51.916 204.937 114.76s76.817 142.823 71.398 223.766c-5.423 80.939-41.378 156.804-100.595 212.245-59.221 55.445-137.284 86.327-218.406 86.413-81.22 0.077-159.433-30.733-218.78-86.182-59.347-55.454-95.386-131.396-100.813-212.437s20.166-161.114 71.59-223.981c51.424-62.869 124.83-103.832 205.336-114.583z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["genderless-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1666,
+ "id": 683,
+ "name": "genderless-fill",
+ "prevSize": 32,
+ "code": 61263
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1615
+ },
+ {
+ "icon": {
+ "paths": [
+ "M793.003 213.333h-195.669v-85.333h341.333v341.333h-85.333v-195.669l-150.912 150.912c49.229 64.533 72.098 145.365 63.97 226.125-8.124 80.764-46.639 155.418-107.738 208.849-61.103 53.431-140.224 81.651-221.35 78.938-81.122-2.714-158.182-36.151-215.578-93.547s-90.834-134.455-93.547-215.582c-2.713-81.122 25.504-160.243 78.936-221.346 53.432-61.101 128.087-99.614 208.848-107.74 80.762-8.126 161.59 14.742 226.127 63.973l150.912-150.912z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["men-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1667, "id": 682, "name": "men-fill", "prevSize": 32, "code": 61264 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1616
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 469.333c-25.214 0-50.181-4.966-73.475-14.613-23.294-9.651-44.46-23.795-62.289-41.622-17.829-17.829-31.971-38.995-41.62-62.289s-14.615-48.262-14.615-73.475c0-25.214 4.966-50.181 14.615-73.475s23.792-44.46 41.62-62.289c17.829-17.829 38.995-31.971 62.289-41.62s48.262-14.615 73.475-14.615c50.921 0 99.758 20.229 135.765 56.236 36.006 36.007 56.235 84.843 56.235 135.764s-20.228 99.758-56.235 135.764c-36.008 36.007-84.844 56.236-135.765 56.236zM746.667 640c-45.265 0-88.674-17.98-120.678-49.988-32.009-32.004-49.988-75.413-49.988-120.678 0-45.264 17.98-88.673 49.988-120.68 32.004-32.006 75.413-49.987 120.678-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.416 49.988 120.68 0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988zM746.667 682.667c50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765v21.333h-384v-21.333c0-50.923 20.228-99.759 56.235-135.765s84.843-56.235 135.765-56.235zM298.667 512c28.015 0 55.756 5.517 81.639 16.239s49.399 26.436 69.209 46.246c19.81 19.81 35.524 43.328 46.246 69.21s16.239 53.623 16.239 81.638v170.667h-426.667v-170.667c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.27-62.485 150.849-62.485z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parent-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1668,
+ "id": 681,
+ "name": "parent-fill",
+ "prevSize": 32,
+ "code": 61265
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1617
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 469.333c56.58 0 110.844 22.477 150.848 62.485 40.009 40.004 62.485 94.268 62.485 150.848v256h-426.667v-256c0-56.58 22.476-110.844 62.484-150.848 40.008-40.009 94.269-62.485 150.849-62.485zM225.621 597.589c-6.79 22.903-10.801 46.541-11.947 70.4l-0.341 14.677v256h-128v-192c-0.009-36.796 13.569-72.303 38.128-99.703s58.371-44.77 94.949-48.777l7.211-0.597zM798.379 597.589c37.969 2.313 73.626 19.029 99.695 46.729 26.069 27.703 40.589 64.307 40.593 102.349v192h-128v-256c0-29.568-4.267-58.112-12.288-85.077zM234.667 341.333c28.29 0 55.421 11.238 75.425 31.242s31.242 47.135 31.242 75.425c0 28.288-11.238 55.42-31.242 75.426-20.004 20.002-47.135 31.241-75.425 31.241s-55.421-11.238-75.425-31.241c-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.425-31.242zM789.333 341.333c28.288 0 55.42 11.238 75.426 31.242 20.002 20.004 31.241 47.135 31.241 75.425 0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.002-20.006-31.241-47.138-31.241-75.426 0-28.29 11.238-55.421 31.241-75.425 20.006-20.004 47.138-31.242 75.426-31.242zM512 85.333c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68s-17.98 88.673-49.988 120.68c-32.004 32.006-75.413 49.987-120.678 49.987s-88.673-17.981-120.68-49.987c-32.006-32.006-49.987-75.416-49.987-120.68s17.981-88.673 49.987-120.68c32.006-32.006 75.415-49.987 120.68-49.987z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["team-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1669,
+ "id": 680,
+ "name": "team-fill",
+ "prevSize": 32,
+ "code": 61266
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1618
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v320c0.017 31.91-10.193 62.989-29.129 88.678-18.935 25.685-45.598 44.634-76.087 54.063-30.49 9.425-63.194 8.841-93.325-1.677-30.127-10.513-56.098-30.404-74.099-56.755-11.145 19.742-27.337 36.164-46.912 47.595-19.58 11.43-41.843 17.451-64.512 17.451s-44.932-6.020-64.512-17.451c-19.575-11.43-35.766-27.853-46.912-47.595-17.62 25.719-42.85 45.282-72.15 55.94s-61.201 11.878-91.229 3.49c-30.028-8.393-56.678-25.967-76.211-50.27-19.533-24.299-30.971-54.106-32.708-85.235l-0.213-8.277v-319.957c0-101.843 40.457-199.515 112.471-271.529s169.686-112.471 271.529-112.471zM682.667 554.667h-85.333c0.098 22.144-8.414 43.456-23.74 59.443-15.326 15.983-36.262 25.382-58.389 26.21-22.131 0.832-43.712-6.972-60.194-21.76s-26.569-35.405-28.13-57.493l-0.213-6.4h-85.333l0.213 8.533c2.189 43.733 21.102 84.949 52.829 115.127s73.836 47.010 117.625 47.010c43.789 0 85.897-16.832 117.623-47.010s50.641-71.394 52.83-115.127l0.213-8.533zM512 298.667c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ghost-smile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1670,
+ "id": 679,
+ "name": "ghost-smile-fill",
+ "prevSize": 32,
+ "code": 61267
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1619
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-682.667zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1671,
+ "id": 678,
+ "name": "user-fill",
+ "prevSize": 32,
+ "code": 61268
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1620
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 21.333l180.309 263.808 306.645 89.984-195.2 253.013 9.173 319.403-300.928-107.435-300.926 107.435 9.173-319.403-195.2-253.013 306.646-89.984 180.308-263.808zM426.667 512h-85.332c-0.001 44.527 17.399 87.287 48.486 119.164s73.402 50.338 117.912 51.452c44.51 1.114 87.697-15.211 120.337-45.491 32.644-30.285 52.16-72.124 54.383-116.591l0.213-8.533h-85.333c0.102 22.144-8.414 43.456-23.735 59.443-15.326 15.983-36.267 25.382-58.394 26.21-22.127 0.832-43.712-6.972-60.194-21.76s-26.569-35.405-28.13-57.493l-0.213-6.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-smile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1672,
+ "id": 677,
+ "name": "star-smile-fill",
+ "prevSize": 32,
+ "code": 61269
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1621
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 938.667c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972 90.526 0 177.348 35.964 241.361 99.972 64.009 64.013 99.972 150.835 99.972 241.361h-682.667zM426.667 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM740.821 649.941c65.263 16.772 123.575 53.709 166.626 105.549 43.055 51.84 68.655 115.942 73.161 183.177h-127.275c0-111.36-42.667-212.736-112.512-288.725zM654.507 552.832c35.755-31.979 64.35-71.155 83.908-114.957 19.558-43.799 29.641-91.239 29.585-139.209 0.090-58.305-14.822-115.654-43.307-166.528 48.324 9.711 91.797 35.856 123.029 73.993 31.228 38.136 48.286 85.911 48.277 135.202 0.013 30.399-6.477 60.448-19.025 88.137-12.548 27.686-30.874 52.369-53.739 72.397-22.869 20.028-49.754 34.94-78.857 43.729-29.099 8.789-59.742 11.255-89.873 7.236z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["group-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1673,
+ "id": 676,
+ "name": "group-fill",
+ "prevSize": 32,
+ "code": 61270
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1622
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 896l-85.333 85.333-85.333-85.333h-213.547c-22.575 0-44.226-8.969-60.189-24.93-15.963-15.966-24.931-37.615-24.931-60.19v-597.76c0-47.019 38.101-85.12 85.12-85.12h597.76c47.019 0 85.12 38.101 85.12 85.12v597.76c0 22.575-8.969 44.224-24.93 60.19-15.966 15.962-37.615 24.93-60.19 24.93h-213.547zM271.232 768h490.24c-27.494-39.535-64.149-71.825-106.833-94.114-42.684-22.293-90.133-33.916-138.287-33.886-48.154-0.030-95.601 11.593-138.287 33.886-42.685 22.289-79.34 54.579-106.833 94.114zM512 554.667c19.61 0 39.031-3.861 57.148-11.366s34.581-18.505 48.448-32.371c13.867-13.867 24.866-30.332 32.371-48.448s11.366-37.537 11.366-57.148c0-19.611-3.861-39.029-11.366-57.147s-18.505-34.58-32.371-48.447c-13.867-13.867-30.332-24.867-48.448-32.372s-37.538-11.367-57.148-11.367c-39.607 0-77.589 15.733-105.594 43.739s-43.739 65.989-43.739 105.594c0 39.607 15.733 77.589 43.739 105.596s65.987 43.738 105.594 43.738z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["account-pin-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1674,
+ "id": 675,
+ "name": "account-pin-box-fill",
+ "prevSize": 32,
+ "code": 61271
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1623
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM298.667 512c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848h-85.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-smile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1675,
+ "id": 674,
+ "name": "user-smile-fill",
+ "prevSize": 32,
+ "code": 61272
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1624
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 597.333v341.333h-341.333c0-90.526 35.962-177.348 99.974-241.361 64.012-64.009 150.832-99.972 241.359-99.972zM512 554.667c-141.44 0-256-114.56-256-256s114.56-256 256-256c141.44 0 256 114.56 256 256s-114.56 256-256 256zM622.72 802.645c-5.41-22.767-5.41-46.481 0-69.248l-42.325-24.448 42.667-73.899 42.325 24.448c16.99-16.090 37.525-27.959 59.947-34.645v-48.853h85.333v48.853c22.699 6.741 43.179 18.773 59.947 34.645l42.325-24.448 42.667 73.899-42.325 24.448c5.402 22.75 5.402 46.455 0 69.205l42.325 24.448-42.667 73.899-42.325-24.448c-16.99 16.090-37.525 27.959-59.947 34.645v48.853h-85.333v-48.853c-22.421-6.686-42.957-18.556-59.947-34.645l-42.325 24.448-42.667-73.899 42.325-24.405zM768 725.333c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["user-settings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1676,
+ "id": 673,
+ "name": "user-settings-fill",
+ "prevSize": 32,
+ "code": 61273
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1625
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c73.101-0.003 144.687 20.861 206.34 60.138s110.814 95.338 141.705 161.592c30.891 66.254 42.231 139.951 32.683 212.424-9.549 72.478-39.586 140.723-86.583 196.715 53.547 35.413 86.741 80.64 89.643 130.091l0.213 7.040-384 85.333-384-85.333 0.213-7.040c2.859-49.493 36.096-94.72 89.6-130.133-58.133-69.094-89.948-156.531-89.813-246.827 0-101.843 40.457-199.515 112.471-271.529s169.686-112.471 271.529-112.471zM512 554.667c-58.88 0-106.666 28.672-106.666 64s47.786 64 106.666 64c58.88 0 106.667-28.672 106.667-64s-47.787-64-106.667-64zM384 341.333c-47.147 0-85.333 28.672-85.333 64s38.187 64 85.333 64c47.146 0 85.333-28.672 85.333-64s-38.187-64-85.333-64zM640 341.333c-47.147 0-85.333 28.672-85.333 64s38.187 64 85.333 64c47.147 0 85.333-28.672 85.333-64s-38.187-64-85.333-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["criminal-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1677,
+ "id": 672,
+ "name": "criminal-fill",
+ "prevSize": 32,
+ "code": 61274
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1626
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667 0.102 66.62-15.462 132.335-45.44 191.829-3.132-12.147-8.934-23.445-16.981-33.067l-5.248-5.76-60.331-60.331-60.331 60.331-4.992 5.419c-10.812 12.851-17.587 28.604-19.486 45.291-1.899 16.683 1.169 33.557 8.815 48.508 7.65 14.95 19.537 27.311 34.18 35.537 14.639 8.222 31.381 11.942 48.128 10.697-39.701 40.649-87.142 72.934-139.52 94.959-52.382 22.020-108.642 33.327-165.461 33.254-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 640c-58.88 0-112.213 23.893-150.784 62.421l-7.083 7.424 40.32 36.693c33.707-13.44 74.112-21.205 117.547-21.205 38.613 0 74.837 6.144 106.069 16.896l11.477 4.267 40.32-36.693c-19.977-22.020-44.348-39.607-71.539-51.627-27.187-12.023-56.597-18.214-86.327-18.176zM362.667 426.667c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743zM661.333 426.667c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["emotion-sad-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1678,
+ "id": 671,
+ "name": "emotion-sad-fill",
+ "prevSize": 32,
+ "code": 61275
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1627
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 842.581v-142.848c0-54.741 42.453-97.792 105.259-122.368-40.503-15.066-83.379-22.75-126.592-22.699-80.64 0-155.136 26.325-215.339 70.827 18.667 52.791 50.009 100.194 91.275 138.048 41.265 37.85 91.192 64.99 145.397 79.040zM805.547 686.336c-16.853-22.741-72.96-46.336-144.213-46.336-85.589 0-149.333 34.005-149.333 59.733v153.6c59.213 0.034 117.419-15.347 168.887-44.629 51.469-29.278 94.43-71.45 124.659-122.368zM407.467 490.667c25.459 0 49.877-10.116 67.883-28.117 18.001-18.005 28.117-42.422 28.117-67.883s-10.116-49.879-28.117-67.882c-18.005-18.004-42.423-28.118-67.883-28.118-25.461 0-49.879 10.114-67.882 28.118s-28.118 42.421-28.118 67.882c0 25.461 10.114 49.877 28.118 67.883 18.004 18.001 42.421 28.117 67.882 28.117zM661.333 533.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["group-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1679,
+ "id": 670,
+ "name": "group-2-fill",
+ "prevSize": 32,
+ "code": 61276
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1628
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1680,
+ "id": 669,
+ "name": "folder-fill",
+ "prevSize": 32,
+ "code": 61277
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1629
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM563.2 512l119.467-170.667h-102.4l-68.267 97.536-68.267-97.536h-102.4l119.467 170.667-119.467 170.667h102.4l68.267-97.536 68.267 97.536h102.4l-119.467-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-excel-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1681,
+ "id": 668,
+ "name": "file-excel-fill",
+ "prevSize": 32,
+ "code": 61278
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1630
+ },
+ {
+ "icon": {
+ "paths": [
+ "M444.331 128l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331zM512 384c-18.786 0.001-37.043 6.199-51.947 17.635-14.899 11.435-25.613 27.468-30.477 45.614-4.86 18.142-3.599 37.385 3.588 54.737 7.189 17.357 19.9 31.855 36.169 41.246v182.101h85.333l0.043-182.101c16.269-9.395 28.983-23.898 36.173-41.254 7.185-17.361 8.444-36.604 3.575-54.75-4.864-18.146-15.586-34.18-30.494-45.612-14.912-11.432-33.178-17.624-51.964-17.615z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-keyhole-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1682,
+ "id": 667,
+ "name": "folder-keyhole-fill",
+ "prevSize": 32,
+ "code": 61279
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1631
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 85.333v853.333h-170.667v-853.333h170.667zM810.88 85.333c47.019 0 85.12 38.315 85.12 84.907v683.52c0 46.891-38.101 84.907-85.12 84.907h-426.88v-853.333h426.88zM640 341.333l-170.667 170.667h128v170.667h85.333v-170.667h128l-170.667-170.667zM1024 512v170.667h-85.333v-170.667h85.333zM1024 256v170.667h-85.333v-170.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-book-upload-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1683,
+ "id": 666,
+ "name": "contacts-book-upload-fill",
+ "prevSize": 32,
+ "code": 61280
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1632
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 512v85.333h-853.333v-85.333h85.333v-384.213c0-23.467 18.987-42.453 42.496-42.453h426.837l213.333 213.333v213.333h85.333zM128 682.667h85.333v256h-85.333v-256zM810.667 682.667h85.333v256h-85.333v-256zM640 682.667h85.333v256h-85.333v-256zM469.333 682.667h85.333v256h-85.333v-256zM298.667 682.667h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-shred-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1684,
+ "id": 665,
+ "name": "file-shred-fill",
+ "prevSize": 32,
+ "code": 61281
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1633
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 341.333v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h810.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17zM529.664 213.333h-444.331v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1685,
+ "id": 664,
+ "name": "folder-3-fill",
+ "prevSize": 32,
+ "code": 61282
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1634
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 469.333v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384h853.333zM938.667 384h-853.333v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1686,
+ "id": 663,
+ "name": "folder-2-fill",
+ "prevSize": 32,
+ "code": 61283
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1635
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 938.667h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h170.667v384c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM768 512v298.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667h-85.333zM213.333 256v256h256v-256h-256zM213.333 554.667v85.333h426.667v-85.333h-426.667zM213.333 682.667v85.333h426.667v-85.333h-426.667zM298.667 341.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["newspaper-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1687,
+ "id": 662,
+ "name": "newspaper-fill",
+ "prevSize": 32,
+ "code": 61284
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1636
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM753.365 512l-150.912-150.869-60.288 60.416 90.496 90.453-90.453 90.496 60.288 60.373 150.869-150.869zM270.635 512l150.869 150.869 60.331-60.373-90.496-90.496 90.453-90.496-60.245-60.373-150.912 150.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-code-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1688,
+ "id": 661,
+ "name": "file-code-fill",
+ "prevSize": 32,
+ "code": 61285
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1637
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM366.549 589.184l-42.283 24.405 42.667 73.856 42.283-24.405c16.768 15.829 37.205 27.861 59.947 34.603v48.853h85.291v-48.896c22.404-6.677 42.923-18.53 59.904-34.603l42.283 24.405 42.667-73.813-42.283-24.448c5.406-22.75 5.406-46.455 0-69.205l42.24-24.448-42.624-73.813-42.325 24.405c-16.977-16.085-37.495-27.954-59.904-34.645v-48.768h-85.291v48.811c-22.409 6.691-42.929 18.56-59.904 34.645l-42.283-24.448-42.667 73.899 42.283 24.405c-5.406 22.75-5.406 46.455 0 69.205zM511.787 618.539c-8.597 0.316-17.165-1.109-25.199-4.181s-15.369-7.731-21.559-13.705c-6.191-5.969-11.115-13.124-14.481-21.039-3.362-7.919-5.099-16.431-5.099-25.033s1.737-17.114 5.099-25.033c3.366-7.915 8.29-15.070 14.481-21.039 6.191-5.973 13.525-10.633 21.559-13.705s16.602-4.497 25.199-4.181c16.559 0.606 32.235 7.607 43.738 19.537 11.499 11.925 17.924 27.853 17.924 44.42s-6.426 32.495-17.924 44.42c-11.503 11.93-27.179 18.931-43.738 19.537z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-settings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1689,
+ "id": 660,
+ "name": "folder-settings-fill",
+ "prevSize": 32,
+ "code": 61286
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1638
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM469.333 384v213.333h85.333v-213.333h-85.333zM469.333 640v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-warning-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1690,
+ "id": 659,
+ "name": "folder-warning-fill",
+ "prevSize": 32,
+ "code": 61287
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1639
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 640v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-85.333h682.667v85.333c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-170.667h-682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-paper-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1691,
+ "id": 658,
+ "name": "file-paper-fill",
+ "prevSize": 32,
+ "code": 61288
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1640
+ },
+ {
+ "icon": {
+ "paths": [
+ "M639.872 85.333l256.128 256 0.043 181.76c-41.971-34.837-94.831-53.858-149.376-53.76l-9.429 0.171c-51.008 2.057-99.959 20.685-139.435 53.060-39.471 32.375-67.315 76.732-79.317 126.353l-0.683 3.157-1.28 0.853c-22.498 15.074-41.745 34.505-56.606 57.143s-25.033 48.030-29.918 74.662c-4.883 26.637-4.379 53.982 1.481 80.422 5.862 26.436 16.964 51.435 32.649 73.51h-293.76c-10.371 0-20.383-3.806-28.136-10.697-7.754-6.886-12.711-16.38-13.933-26.679l-0.299-4.949v-768.683c0-21.248 16.512-39.552 37.76-42.027l4.992-0.299h469.12zM746.667 554.667c39.607 0 77.589 15.731 105.596 43.738s43.738 65.988 43.738 105.596l-0.043 4.395c26.692 7.522 49.856 24.252 65.387 47.228s22.421 50.705 19.452 78.281c-2.97 27.571-15.612 53.197-35.682 72.337-20.066 19.14-46.263 30.554-73.946 32.213l-7.168 0.213-241.835-0.213c-27.678-1.677-53.862-13.103-73.92-32.247-20.053-19.145-32.683-44.774-35.639-72.341-2.961-27.571 3.934-55.296 19.469-78.263s38.699-39.689 65.387-47.206l-0.128-4.395c0-39.607 15.731-77.589 43.738-105.596s65.988-43.738 105.596-43.738z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-cloud-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1692,
+ "id": 657,
+ "name": "file-cloud-fill",
+ "prevSize": 32,
+ "code": 61289
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1641
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM597.333 341.333v212.864l-85.333-84.864-84.907 85.333-0.427-213.333h-85.333v341.333h85.333l85.333-85.333 85.333 85.333h85.333v-341.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-word-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1693,
+ "id": 656,
+ "name": "file-word-fill",
+ "prevSize": 32,
+ "code": 61290
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1642
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 127.659v768.683c-0.090 11.204-4.582 21.926-12.51 29.845s-18.654 12.403-29.858 12.48h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0.089-11.205 4.583-21.925 12.511-29.845s18.652-12.402 29.857-12.48h683.264c23.381 0 42.368 18.944 42.368 42.325zM298.667 170.667v384l149.333-85.333 149.333 85.333v-384h-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-mark-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1694,
+ "id": 655,
+ "name": "file-mark-fill",
+ "prevSize": 32,
+ "code": 61291
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1643
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 896c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h323.669c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h-725.333v426.496l85.333-341.163h704l-98.56 394.368c-2.313 9.225-7.637 17.417-15.138 23.266-7.497 5.854-16.738 9.033-26.249 9.033h-692.053z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-open-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1695,
+ "id": 654,
+ "name": "folder-open-fill",
+ "prevSize": 32,
+ "code": 61292
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1644
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v682.667c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-170.667v-768zM121.985 122.752l536.319-76.587c3.029-0.434 6.114-0.212 9.045 0.65 2.935 0.862 5.649 2.345 7.957 4.348 2.313 2.003 4.164 4.479 5.436 7.261 1.267 2.781 1.924 5.804 1.924 8.861v889.429c0 3.055-0.657 6.071-1.924 8.849s-3.115 5.252-5.419 7.253c-2.308 2.005-5.018 3.486-7.945 4.352s-6.007 1.092-9.033 0.666l-536.404-76.587c-10.171-1.446-19.477-6.519-26.211-14.276-6.733-7.761-10.44-17.69-10.44-27.964v-694.016c0-10.274 3.707-20.202 10.44-27.962s16.040-12.829 26.211-14.278h0.043zM213.334 341.333v341.333h85.333v-85.333h255.999v-256h-341.332zM298.668 426.667h170.666v85.333h-170.666v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-ppt-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1696,
+ "id": 653,
+ "name": "file-ppt-2-fill",
+ "prevSize": 32,
+ "code": 61293
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1645
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM341.333 341.333v341.333h85.333v-85.333h256v-256h-341.333zM426.667 426.667h170.667v85.333h-170.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-ppt-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1697,
+ "id": 652,
+ "name": "file-ppt-fill",
+ "prevSize": 32,
+ "code": 61294
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1646
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM512 682.667c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987h-170.667v341.333h170.667zM426.667 426.667h85.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-pdf-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1698,
+ "id": 651,
+ "name": "file-pdf-fill",
+ "prevSize": 32,
+ "code": 61295
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1647
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM512 384c-33.754 0-66.752 10.010-94.817 28.762-28.066 18.751-49.941 45.409-62.858 76.594s-16.297 65.498-9.712 98.607c6.585 33.105 22.839 63.514 46.708 87.381s54.278 40.124 87.383 46.707c33.109 6.588 67.422 3.209 98.607-9.711 31.185-12.915 57.843-34.79 76.595-62.857s28.762-61.065 28.762-94.818h-170.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-chart-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1699,
+ "id": 650,
+ "name": "folder-chart-2-fill",
+ "prevSize": 32,
+ "code": 61296
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1648
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-576c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v-576c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-128h-533.333c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h533.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1700,
+ "id": 649,
+ "name": "book-fill",
+ "prevSize": 32,
+ "code": 61297
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1649
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c23.552 0 42.667 19.115 42.667 42.667v160.299l-383.957 384-0.256 180.821 181.163 0.256 203.051-203.051v245.675c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-768c0-23.552 19.115-42.667 42.667-42.667h682.667zM929.195 375.808l60.331 60.331-331.861 331.861-60.416-0.085 0.085-60.245 331.861-331.861zM512 512h-213.333v85.333h213.333v-85.333zM640 341.333h-341.333v85.333h341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["draft-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1701,
+ "id": 648,
+ "name": "draft-fill",
+ "prevSize": 32,
+ "code": 61298
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1650
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 85.333v853.333h-170.667v-853.333h170.667zM384 85.333h426.88c47.019 0 85.12 38.315 85.12 84.907v683.52c0 46.891-38.101 84.907-85.12 84.907h-426.88v-853.333zM938.667 256h85.333v170.667h-85.333v-170.667zM938.667 512h85.333v170.667h-85.333v-170.667zM640 512c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 682.667h256c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491c-33.946 0-66.505 13.487-90.509 37.491s-37.491 56.563-37.491 90.509z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-book-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1702,
+ "id": 647,
+ "name": "contacts-book-fill",
+ "prevSize": 32,
+ "code": 61299
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1651
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM512 341.333c-33.754 0-66.752 10.010-94.817 28.762s-49.941 45.408-62.858 76.594c-12.917 31.185-16.297 65.498-9.712 98.607 6.585 33.105 22.839 63.514 46.708 87.381s54.278 40.124 87.383 46.707c33.109 6.588 67.422 3.209 98.607-9.711 31.185-12.915 57.843-34.79 76.595-62.857s28.762-61.065 28.762-94.818h-170.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-chart-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1703,
+ "id": 646,
+ "name": "file-chart-2-fill",
+ "prevSize": 32,
+ "code": 61300
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1652
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM469.333 556.8c-21.568-4.403-43.967-2.027-64.129 6.805s-37.098 23.684-48.486 42.522c-11.388 18.837-16.669 40.734-15.121 62.69s9.852 42.897 23.772 59.947c13.919 17.054 32.773 29.38 53.975 35.294s43.712 5.12 64.448-2.266c20.736-7.386 38.677-21.005 51.366-38.989 12.689-17.988 19.503-39.458 19.507-61.47v-192h128v-85.333h-213.333v172.8z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-music-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1704,
+ "id": 645,
+ "name": "folder-music-fill",
+ "prevSize": 32,
+ "code": 61301
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1653
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM298.667 256v170.667h170.667v-170.667h-170.667zM298.667 512v85.333h426.667v-85.333h-426.667zM298.667 682.667v85.333h426.667v-85.333h-426.667zM554.667 298.667v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["article-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1705,
+ "id": 644,
+ "name": "article-fill",
+ "prevSize": 32,
+ "code": 61302
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1654
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM512 213.333v597.333h341.333v-597.333h-341.333zM554.667 298.667h256v85.333h-256v-85.333zM554.667 426.667h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-read-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1706,
+ "id": 643,
+ "name": "book-read-fill",
+ "prevSize": 32,
+ "code": 61303
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1655
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM554.667 512v-170.667h-85.333v170.667h-128l170.667 170.667 170.667-170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-download-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1707,
+ "id": 642,
+ "name": "file-download-fill",
+ "prevSize": 32,
+ "code": 61304
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1656
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682.667l-213.461 213.333h-511.957c-11.263 0.021-22.075-4.429-30.059-12.373-7.984-7.94-12.489-18.731-12.522-29.995v-683.264c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 19.072 42.368 42.624v512.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sticky-note-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1708,
+ "id": 641,
+ "name": "sticky-note-2-fill",
+ "prevSize": 32,
+ "code": 61305
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1657
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h768v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM896 256h-768v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM298.667 469.333v170.667h170.667v-170.667h-170.667zM298.667 725.333v85.333h426.667v-85.333h-426.667zM554.667 512v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pages-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1709,
+ "id": 640,
+ "name": "pages-fill",
+ "prevSize": 32,
+ "code": 61306
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1658
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM469.333 640v85.333h85.333v-85.333h-85.333zM469.333 298.667v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-warning-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1710,
+ "id": 639,
+ "name": "file-warning-fill",
+ "prevSize": 32,
+ "code": 61307
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1659
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM640 554.667v-42.667c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51v42.667h-42.667v170.667h341.333v-170.667h-42.667zM554.667 554.667h-85.333v-42.667c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-lock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1711,
+ "id": 638,
+ "name": "folder-lock-fill",
+ "prevSize": 32,
+ "code": 61308
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1660
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128.001 341.333l256.128-256h469.119c23.552 0 42.752 19.413 42.752 42.325v768.683c-0.009 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.263c-5.603-0.038-11.143-1.182-16.305-3.362s-9.843-5.355-13.777-9.344c-3.934-3.989-7.044-8.717-9.152-13.909s-3.173-10.748-3.133-16.35v-554.368zM426.667 149.333l-234.666 234.667h234.666v-234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1712,
+ "id": 637,
+ "name": "file-fill",
+ "prevSize": 32,
+ "code": 61309
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1661
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 127.659v768.683c-0.090 11.204-4.582 21.926-12.51 29.845s-18.654 12.403-29.858 12.48h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0.089-11.205 4.583-21.925 12.511-29.845s18.652-12.402 29.857-12.48h683.264c23.381 0 42.368 18.944 42.368 42.325zM481.835 559.872l-105.6-105.643-60.331 60.373 165.931 165.931 241.365-241.365-60.331-60.331-181.035 181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["task-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1713,
+ "id": 636,
+ "name": "task-fill",
+ "prevSize": 32,
+ "code": 61310
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1662
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM512 554.667c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426 0-28.29-11.238-55.421-31.241-75.425-20.006-20.004-47.138-31.242-75.426-31.242s-55.42 11.238-75.426 31.242c-20.003 20.004-31.241 47.135-31.241 75.425 0 28.288 11.238 55.42 31.241 75.426 20.006 20.002 47.138 31.241 75.426 31.241zM341.333 768h341.333c0-45.265-17.98-88.674-49.988-120.678-32.004-32.009-75.413-49.988-120.678-49.988s-88.673 17.98-120.68 49.988c-32.006 32.004-49.987 75.413-49.987 120.678z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-user-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1714,
+ "id": 635,
+ "name": "folder-user-fill",
+ "prevSize": 32,
+ "code": 61311
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1663
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-576c-39.606 0-77.589-15.731-105.594-43.738s-43.739-65.988-43.739-105.596v-576c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-128h-533.333c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743h533.333zM426.667 170.667v341.333l149.333-85.333 149.333 85.333v-341.333h-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-mark-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1715,
+ "id": 634,
+ "name": "book-mark-fill",
+ "prevSize": 32,
+ "code": 61312
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1664
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM554.667 554.667h128l-170.667-170.667-170.667 170.667h128v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-upload-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1716,
+ "id": 633,
+ "name": "folder-upload-fill",
+ "prevSize": 32,
+ "code": 61313
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1665
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768h-640c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h640v85.333h-640c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-640c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h682.667v682.667zM682.667 384v-85.333h-341.333v85.333h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1717,
+ "id": 632,
+ "name": "book-2-fill",
+ "prevSize": 32,
+ "code": 61314
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1666
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 170.667h-597.333c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.708 24.994 60.34 24.994h597.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-554.667c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-512c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h554.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667zM853.333 298.667h-554.667c-11.316 0-22.168-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1718,
+ "id": 631,
+ "name": "book-3-fill",
+ "prevSize": 32,
+ "code": 61315
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1667
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 560.043c-47.539-34.172-105.361-51.017-163.814-47.727-58.458 3.294-114.018 26.526-157.423 65.822s-72.026 92.279-81.092 150.123c-9.071 57.843 1.963 117.047 31.258 167.74h-439.595c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v304.043zM768 725.333v-149.333l213.333 192-213.333 192v-149.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-shared-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1719,
+ "id": 630,
+ "name": "folder-shared-fill",
+ "prevSize": 32,
+ "code": 61316
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1668
+ },
+ {
+ "icon": {
+ "paths": [
+ "M444.331 128l85.333 85.333h366.336c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h316.331zM554.667 384h-85.333v256h213.333v-85.333h-128v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-history-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1720,
+ "id": 629,
+ "name": "folder-history-fill",
+ "prevSize": 32,
+ "code": 61317
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1669
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM554.667 554.667v-170.667h-85.333v170.667h-128l170.667 170.667 170.667-170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-download-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1721,
+ "id": 628,
+ "name": "folder-download-fill",
+ "prevSize": 32,
+ "code": 61318
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1670
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v85.333h-85.333v512c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-85.333h682.667v85.333c0 10.449 3.84 20.535 10.782 28.348 6.946 7.808 16.512 12.796 26.893 14.020l4.992 0.299c10.449 0 20.535-3.84 28.348-10.782 7.808-6.946 12.796-16.512 14.020-26.893l0.299-4.992v-170.667h-682.667v-426.667c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-paper-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1722,
+ "id": 627,
+ "name": "file-paper-2-fill",
+ "prevSize": 32,
+ "code": 61319
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1671
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM554.667 512h128l-170.667-170.667-170.667 170.667h128v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-upload-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1723,
+ "id": 626,
+ "name": "file-upload-fill",
+ "prevSize": 32,
+ "code": 61320
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1672
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM469.333 298.667v85.333h85.333v-85.333h-85.333zM469.333 469.333v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-info-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1724,
+ "id": 625,
+ "name": "file-info-fill",
+ "prevSize": 32,
+ "code": 61321
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1673
+ },
+ {
+ "icon": {
+ "paths": [
+ "M121.985 122.752l536.319-76.587c3.029-0.434 6.114-0.212 9.045 0.65 2.935 0.862 5.649 2.345 7.957 4.348 2.313 2.003 4.164 4.479 5.436 7.261 1.267 2.781 1.924 5.804 1.924 8.861v889.429c0 3.055-0.657 6.071-1.924 8.849s-3.115 5.252-5.419 7.253c-2.308 2.005-5.018 3.486-7.945 4.352s-6.007 1.092-9.033 0.666l-536.404-76.587c-10.171-1.446-19.477-6.519-26.211-14.276-6.733-7.761-10.44-17.69-10.44-27.964v-694.016c0-10.274 3.707-20.202 10.44-27.962s16.040-12.829 26.211-14.278h0.043zM725.333 128h170.667c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v682.667c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-170.667v-768zM435.2 512l119.467-170.667h-102.4l-68.266 97.536-68.267-97.536h-102.4l119.467 170.667-119.467 170.667h102.4l68.267-97.536 68.266 97.536h102.4l-119.467-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-excel-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1725,
+ "id": 624,
+ "name": "file-excel-2-fill",
+ "prevSize": 32,
+ "code": 61322
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1674
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 650.368v245.973c-0.009 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.263c-5.603-0.038-11.143-1.182-16.305-3.362s-9.843-5.355-13.777-9.344c-3.934-3.989-7.044-8.717-9.152-13.909s-3.173-10.748-3.133-16.35v-511.701h256c11.316 0 22.169-4.495 30.17-12.497s12.496-18.854 12.496-30.17v-256h426.752c23.509 0 42.581 19.413 42.581 42.325v160.64l-383.957 384-0.256 180.821 181.163 0.256 203.051-203.008zM929.195 375.808l60.331 60.331-331.861 331.861-60.416-0.085 0.085-60.245 331.861-331.861zM128.001 298.667l213.333-213.205v213.205h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-edit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1726,
+ "id": 623,
+ "name": "file-edit-fill",
+ "prevSize": 32,
+ "code": 61323
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1675
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM577.237 616.363l94.293 94.293 60.373-60.288-94.293-94.293c21.013-35.793 28.271-78.016 20.412-118.771-7.855-40.757-30.289-77.255-63.104-102.671s-73.762-38.010-115.191-35.426c-41.425 2.584-80.491 20.169-109.892 49.466-29.396 29.371-47.066 68.459-49.696 109.931s9.962 82.479 35.413 115.328c25.451 32.849 62.012 55.283 102.824 63.095 40.815 7.812 83.076 0.465 118.861-20.663zM550.869 529.664c-7.872 8.149-17.289 14.652-27.699 19.123s-21.606 6.827-32.939 6.925c-11.332 0.098-22.566-2.061-33.054-6.353-10.487-4.288-20.015-10.624-28.028-18.637s-14.348-17.54-18.639-28.028c-4.291-10.487-6.45-21.722-6.351-33.054s2.452-22.528 6.925-32.939c4.472-10.412 10.973-19.828 19.123-27.699 16.094-15.544 37.649-24.145 60.023-23.951s43.776 9.169 59.597 24.99c15.825 15.822 24.798 37.224 24.99 59.599 0.196 22.374-8.405 43.93-23.949 60.023z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-search-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1727,
+ "id": 622,
+ "name": "file-search-fill",
+ "prevSize": 32,
+ "code": 61324
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1676
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM298.667 661.333v-170.667l85.333 85.333 85.333-85.333v170.667h85.333v-298.667h-85.333l-85.333 85.333-85.333-85.333h-85.333v298.667h85.333zM768 533.333v-170.667h-85.333v170.667h-85.333l128 128 128-128h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["markdown-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1728,
+ "id": 621,
+ "name": "markdown-fill",
+ "prevSize": 32,
+ "code": 61325
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1677
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.291v597.76c0 23.339-18.987 42.283-42.368 42.283h-683.264c-23.381 0-42.368-19.413-42.368-42.325v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM554.667 384h-85.333v256h213.333v-85.333h-128v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-history-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1729,
+ "id": 620,
+ "name": "file-history-fill",
+ "prevSize": 32,
+ "code": 61326
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1678
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v128c0 23.552-19.2 42.667-42.965 42.667h-511.403c-5.626 0.034-11.204-1.045-16.413-3.174s-9.945-5.265-13.937-9.229c-3.993-3.964-7.162-8.678-9.327-13.875-2.164-5.193-3.282-10.761-3.287-16.388l0.128-597.333c0-23.552 19.2-42.667 42.965-42.667h127.573zM384 256h341.333v426.667h85.333v-512h-426.667v85.333zM298.667 469.333v85.333h256v-85.333h-256zM298.667 640v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-copy-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1730,
+ "id": 619,
+ "name": "file-copy-2-fill",
+ "prevSize": 32,
+ "code": 61327
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1679
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM469.333 514.133c-21.568-4.403-43.967-2.027-64.129 6.805s-37.098 23.684-48.486 42.522c-11.388 18.837-16.669 40.734-15.121 62.69s9.852 42.897 23.772 59.947c13.919 17.054 32.773 29.38 53.975 35.294s43.712 5.12 64.448-2.266c20.736-7.386 38.677-21.005 51.366-38.989 12.689-17.988 19.503-39.458 19.507-61.47v-192h128v-85.333h-213.333v172.8z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-music-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1731,
+ "id": 618,
+ "name": "file-music-fill",
+ "prevSize": 32,
+ "code": 61328
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1680
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM341.333 384v85.333h341.333v-85.333h-341.333zM341.333 554.667v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bill-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1732,
+ "id": 617,
+ "name": "bill-fill",
+ "prevSize": 32,
+ "code": 61329
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1681
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 896v-426.667h597.333v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-554.667zM256 896h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h-640c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v469.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1733,
+ "id": 616,
+ "name": "folder-4-fill",
+ "prevSize": 32,
+ "code": 61330
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1682
+ },
+ {
+ "icon": {
+ "paths": [
+ "M572.331 213.333h281.003c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h-768v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM131.712 384h760.576c5.905-0.003 11.742 1.22 17.148 3.59s10.266 5.836 14.263 10.179c3.998 4.343 7.049 9.469 8.964 15.052s2.654 11.504 2.163 17.387l-35.584 426.667c-0.887 10.662-5.747 20.599-13.619 27.849-7.872 7.245-18.176 11.273-28.877 11.277h-689.493c-10.699-0.004-21.005-4.032-28.876-11.277-7.871-7.249-12.732-17.186-13.62-27.849l-35.584-426.667c-0.49-5.883 0.246-11.803 2.161-17.387s4.969-10.709 8.967-15.052c3.998-4.343 8.854-7.809 14.261-10.179s11.246-3.592 17.149-3.59z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1734,
+ "id": 615,
+ "name": "folder-5-fill",
+ "prevSize": 32,
+ "code": 61331
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1683
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM366.72 546.645l-42.325 24.405 42.667 73.899 42.325-24.448c16.768 15.872 37.248 27.904 59.947 34.645v48.853h85.333v-48.853c22.421-6.686 42.957-18.556 59.947-34.645l42.325 24.448 42.667-73.899-42.325-24.448c5.402-22.754 5.402-46.451 0-69.205l42.325-24.448-42.667-73.899-42.325 24.448c-16.99-16.090-37.525-27.959-59.947-34.645v-48.853h-85.333v48.853c-22.421 6.687-42.959 18.555-59.947 34.645l-42.325-24.448-42.667 73.899 42.325 24.448c-5.41 22.767-5.41 46.481 0 69.248zM512 576c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-settings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1735,
+ "id": 614,
+ "name": "file-settings-fill",
+ "prevSize": 32,
+ "code": 61332
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1684
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 298.667v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h273.664l85.333 85.333h238.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM256 384h-85.333v426.667h512v-85.333h-426.667v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folders-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1736,
+ "id": 613,
+ "name": "folders-fill",
+ "prevSize": 32,
+ "code": 61333
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1685
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 19.072-42.325 42.624-42.325h512.043zM398.208 625.792h-56.875v142.208h341.333v-56.875l-284.459-0.043v-85.291zM512 611.541c-5.602 0-11.153 1.105-16.329 3.247-5.175 2.146-9.877 5.286-13.841 9.25s-7.104 8.666-9.25 13.841c-2.142 5.175-3.247 10.726-3.247 16.329s1.105 11.153 3.247 16.329c2.146 5.175 5.286 9.877 9.25 13.841s8.666 7.104 13.841 9.25c5.175 2.142 10.726 3.247 16.329 3.247 11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497zM512 384c-28.288 0-55.42 11.238-75.426 31.242-20.003 20.005-31.241 47.137-31.241 75.425s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241s55.42-11.238 75.426-31.241c20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.425c-20.006-20.004-47.138-31.242-75.426-31.242zM512 440.875c13.205 0 25.869 5.248 35.209 14.583 9.335 9.34 14.583 22.003 14.583 35.209s-5.248 25.869-14.583 35.209c-9.34 9.335-22.003 14.583-35.209 14.583s-25.869-5.248-35.209-14.583c-9.335-9.34-14.583-22.003-14.583-35.209s5.248-25.869 14.583-35.209c9.34-9.335 22.003-14.583 35.209-14.583zM540.459 256h-56.917v56.875h-142.208v56.917h341.333v-56.917h-142.251v-56.875h0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-hwp-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1737,
+ "id": 612,
+ "name": "file-hwp-fill",
+ "prevSize": 32,
+ "code": 61334
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1686
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170.667v170.667h512v-170.667h85.632c23.381 0 42.368 18.987 42.368 42.368v683.264c-0.013 11.234-4.48 22.003-12.42 29.948-7.945 7.94-18.714 12.407-29.948 12.42h-683.264c-11.233-0.013-22.003-4.48-29.946-12.42-7.943-7.945-12.411-18.714-12.422-29.948v-683.264c0-23.381 18.987-42.368 42.368-42.368h85.632zM341.333 85.333h341.333v170.667h-341.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clipboard-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1738,
+ "id": 611,
+ "name": "clipboard-fill",
+ "prevSize": 32,
+ "code": 61335
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1687
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 597.333l170.667 106.667 128-149.333 128 170.667 85.333-106.667 128 21.333-128-128-85.333 106.667-128-213.333-149.333 160-149.333-138.667v-299.008c0-22.912 19.072-42.325 42.581-42.325h426.752v256c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497h256v511.701c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-299.008zM896 298.667h-213.333v-213.205l213.333 213.205z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-damage-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1739,
+ "id": 610,
+ "name": "file-damage-fill",
+ "prevSize": 32,
+ "code": 61336
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1688
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 384v511.701c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.072-42.325 42.581-42.325h426.752v256c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497h256zM896 298.667h-213.333v-213.205l213.333 213.205zM341.333 298.667v85.333h128v-85.333h-128zM341.333 469.333v85.333h341.333v-85.333h-341.333zM341.333 640v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-text-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1740,
+ "id": 609,
+ "name": "file-text-fill",
+ "prevSize": 32,
+ "code": 61337
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1689
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 896h-341.333v-640c0-33.948 13.487-66.505 37.491-90.51s56.563-37.49 90.509-37.49h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM469.333 896h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333c33.948 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v640zM469.333 896h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["book-open-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1741,
+ "id": 608,
+ "name": "book-open-fill",
+ "prevSize": 32,
+ "code": 61338
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1690
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 640h-298.667v298.667h-426.752c-23.509 0-42.581-19.413-42.581-42.325v-768.683c0-23.381 18.987-42.325 42.368-42.325h683.264c5.602 0.039 11.145 1.181 16.307 3.362 5.158 2.181 9.843 5.356 13.777 9.346s7.044 8.715 9.152 13.907c2.108 5.192 3.17 10.748 3.132 16.351v511.701zM896 725.333l-213.333 213.205v-213.205h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1742,
+ "id": 607,
+ "name": "file-4-fill",
+ "prevSize": 32,
+ "code": 61339
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1691
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.035c0 23.723-18.987 42.965-42.368 42.965h-683.264c-23.381 0-42.368-19.413-42.368-42.325v-768.683c0-23.381 19.072-42.325 42.624-42.325h512.043zM554.667 426.667h-42.667v213.333h42.667v-213.333zM469.333 426.667h-85.333c-47.147 0-85.333 38.187-85.333 85.333v42.667c0 47.147 38.187 85.333 85.333 85.333h42.667c23.552 0 42.667-19.115 42.667-42.667v-85.333h-85.333v42.667h42.667v42.667h-42.667c-23.552 0-42.667-19.115-42.667-42.667v-42.667c0-23.552 19.115-42.667 42.667-42.667h85.333v-42.667zM725.333 426.667h-128v213.333h42.667v-85.333h85.333v-42.667h-85.333v-42.667h85.333v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-gif-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1743,
+ "id": 606,
+ "name": "file-gif-fill",
+ "prevSize": 32,
+ "code": 61340
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1692
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 597.333l-4.992 0.299c-9.523 1.122-18.394 5.423-25.173 12.203s-11.081 15.65-12.203 25.173l-0.299 4.992v256h-426.752c-11.263 0.021-22.075-4.429-30.059-12.373-7.984-7.94-12.489-18.731-12.522-29.995v-683.264c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 19.072 42.368 42.624v426.709h-256zM896 682.667l-213.333 213.205v-213.205h213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sticky-note-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1744,
+ "id": 605,
+ "name": "sticky-note-fill",
+ "prevSize": 32,
+ "code": 61341
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1693
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM512 490.667c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.136 31.241-75.426s-11.238-55.421-31.241-75.425c-20.006-20.004-47.138-31.242-75.426-31.242s-55.42 11.238-75.426 31.242c-20.003 20.004-31.241 47.135-31.241 75.425s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241zM321.152 725.333h381.696c-5.171-47.002-27.507-90.441-62.724-121.997-35.217-31.552-80.841-49.003-128.124-49.003s-92.908 17.451-128.125 49.003c-35.217 31.556-57.551 74.995-62.723 121.997z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-user-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1745,
+ "id": 604,
+ "name": "file-user-fill",
+ "prevSize": 32,
+ "code": 61342
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1694
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM512 469.333h-170.667v85.333h170.667v128l170.667-170.667-170.667-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-transfer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1746,
+ "id": 603,
+ "name": "file-transfer-fill",
+ "prevSize": 32,
+ "code": 61343
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1695
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 768h-213.333v-341.333h213.333v341.333zM640 768h-213.333v-512h213.333v512zM896 768h-213.333v-682.667h213.333v682.667zM938.667 938.667h-810.667v-85.333h810.667v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["numbers-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1747,
+ "id": 602,
+ "name": "numbers-fill",
+ "prevSize": 32,
+ "code": 61344
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1696
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM469.333 384v85.333h85.333v-85.333h-85.333zM469.333 512v213.333h85.333v-213.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-info-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1748,
+ "id": 601,
+ "name": "folder-info-fill",
+ "prevSize": 32,
+ "code": 61345
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1697
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-597.333c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM810.667 853.333v-85.333h-554.667c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h554.667zM512 426.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994zM384 597.333h256c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491c-33.946 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["contacts-book-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1749,
+ "id": 600,
+ "name": "contacts-book-2-fill",
+ "prevSize": 32,
+ "code": 61346
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1698
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM469.333 640v85.333h85.333v-85.333h-85.333zM554.667 569.813c34.291-10.334 63.727-32.64 82.953-62.861 19.221-30.217 26.953-66.33 21.781-101.77-5.167-35.439-22.895-67.841-49.95-91.307s-61.636-36.434-97.451-36.542c-34.522-0.003-67.981 11.953-94.686 33.834-26.704 21.881-45.004 52.337-51.788 86.187l83.712 16.768c2.377-11.886 8.077-22.852 16.444-31.624 8.363-8.772 19.046-14.988 30.805-17.925s24.111-2.475 35.618 1.334c11.507 3.808 21.696 10.806 29.38 20.179 7.689 9.373 12.553 20.735 14.033 32.765s-0.486 24.233-5.67 35.19c-5.184 10.957-13.376 20.215-23.616 26.697-10.24 6.485-22.11 9.929-34.231 9.929-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v64h85.333v-27.52z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-unknow-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1750,
+ "id": 599,
+ "name": "file-unknow-fill",
+ "prevSize": 32,
+ "code": 61347
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1699
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM469.333 384v341.333h85.333v-341.333h-85.333zM640 512v213.333h85.333v-213.333h-85.333zM298.667 597.333v128h85.333v-128h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-chart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1751,
+ "id": 598,
+ "name": "folder-chart-fill",
+ "prevSize": 32,
+ "code": 61348
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1700
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM341.333 512v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-reduce-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1752,
+ "id": 597,
+ "name": "folder-reduce-fill",
+ "prevSize": 32,
+ "code": 61349
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1701
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 426.667h-426.667v314.965c0 66.688 33.152 128.981 88.491 166.059l46.208 30.976h-433.664c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.072-42.325 42.581-42.325h511.957l213.461 213.333v128zM554.667 512h341.333v229.632c0 38.272-19.029 73.984-50.645 95.147l-120.021 80.512-120.021-80.427c-15.607-10.492-28.39-24.661-37.222-41.263s-13.44-35.123-13.423-53.926v-229.675z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-shield-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1753,
+ "id": 596,
+ "name": "file-shield-2-fill",
+ "prevSize": 32,
+ "code": 61350
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1702
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM341.333 469.333v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-reduce-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1754,
+ "id": 595,
+ "name": "file-reduce-fill",
+ "prevSize": 32,
+ "code": 61351
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1703
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 127.999h170.667c11.315 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v682.668c0 11.315-4.493 22.165-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-170.667v-768.001zM121.985 122.751l536.319-76.587c3.029-0.434 6.114-0.212 9.045 0.65 2.935 0.862 5.649 2.345 7.957 4.348 2.313 2.003 4.164 4.479 5.436 7.261 1.267 2.781 1.924 5.804 1.924 8.861v889.431c0 3.051-0.657 6.071-1.924 8.849s-3.115 5.252-5.419 7.253c-2.308 2.001-5.018 3.486-7.945 4.352s-6.007 1.092-9.033 0.666l-536.404-76.587c-10.171-1.451-19.477-6.519-26.211-14.281-6.733-7.757-10.44-17.685-10.44-27.959v-694.017c0-10.274 3.707-20.202 10.44-27.962s16.040-12.829 26.211-14.278h0.043zM469.333 341.332v212.865l-85.332-84.864-84.907 85.333-0.427-213.335h-85.333v341.335h85.333l85.333-85.333 85.332 85.333h85.333v-341.335h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-word-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1755,
+ "id": 594,
+ "name": "file-word-2-fill",
+ "prevSize": 32,
+ "code": 61352
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1704
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 512v341.333h170.667v85.333h-426.668v-85.333h170.668v-341.333h-341.676c-23.381 0-38.656-18.347-34.005-41.685l68.693-343.296c4.608-23.040 27.307-41.685 50.987-41.685h597.25c23.595 0 46.379 18.347 51.029 41.685l68.693 343.296c4.608 23.040-11.093 41.685-34.005 41.685h-341.632z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["keynote-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1756,
+ "id": 593,
+ "name": "keynote-fill",
+ "prevSize": 32,
+ "code": 61353
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1705
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM469.333 682.667v85.333h85.333v-85.333h-85.333zM365.525 461.355l83.712 16.768c2.377-11.887 8.077-22.852 16.444-31.625 8.363-8.772 19.046-14.989 30.805-17.924 11.759-2.937 24.111-2.474 35.618 1.335 11.507 3.806 21.696 10.803 29.38 20.177 7.689 9.374 12.553 20.736 14.033 32.764 1.481 12.032-0.486 24.235-5.67 35.191s-13.376 20.215-23.616 26.697c-10.24 6.485-22.11 9.929-34.231 9.929h-42.667v85.333h42.667c28.279-0.009 55.974-8.047 79.863-23.177 23.889-15.134 42.991-36.736 55.083-62.298s16.678-54.033 13.222-82.099c-3.456-28.066-14.805-54.576-32.734-76.444-17.933-21.868-41.702-38.194-68.548-47.082-26.842-8.887-55.659-9.97-83.098-3.122-27.435 6.848-52.364 21.346-71.884 41.806s-32.829 46.042-38.38 73.771z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-unknow-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1757,
+ "id": 592,
+ "name": "folder-unknow-fill",
+ "prevSize": 32,
+ "code": 61354
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1706
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 938.667h-597.333c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512h170.667v170.667c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM768 725.333v85.333c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-85.333h-85.333zM256 298.667v85.333h341.333v-85.333h-341.333zM256 469.333v85.333h341.333v-85.333h-341.333zM256 640v85.333h213.333v-85.333h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-list-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1758,
+ "id": 591,
+ "name": "file-list-3-fill",
+ "prevSize": 32,
+ "code": 61355
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1707
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM341.333 298.667v85.333h341.333v-85.333h-341.333zM341.333 469.333v85.333h341.333v-85.333h-341.333zM341.333 640v85.333h213.333v-85.333h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-list-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1759,
+ "id": 590,
+ "name": "file-list-2-fill",
+ "prevSize": 32,
+ "code": 61356
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1708
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM341.333 384v209.237c0 38.059 19.029 73.557 50.645 94.677l120.021 80 120.021-80c15.582-10.394 28.356-24.474 37.193-40.99 8.832-16.516 13.457-34.957 13.453-53.687v-209.237h-341.333zM426.667 593.237v-123.904h170.667v123.904c0 4.685-1.156 9.297-3.366 13.427-2.21 4.134-5.406 7.654-9.306 10.253l-72.661 48.427-72.661-48.427c-3.9-2.598-7.095-6.118-9.306-10.253-2.21-4.13-3.367-8.742-3.366-13.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-shield-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1760,
+ "id": 589,
+ "name": "folder-shield-fill",
+ "prevSize": 32,
+ "code": 61357
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1709
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 480.213c-57.515-40.068-127.287-58.633-197.111-52.442-69.82 6.191-135.241 36.745-184.806 86.31s-80.119 114.987-86.31 184.806c-6.191 69.824 12.373 139.597 52.442 197.111h-394.88c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v224.213zM768 938.667c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM712.832 840.875c23.893 11.43 50.739 15.168 76.847 10.701 26.103-4.471 50.18-16.926 68.907-35.657 18.731-18.726 31.185-42.803 35.657-68.907 4.467-26.108 0.73-52.954-10.701-76.847l-170.709 170.709zM652.459 780.501l170.709-170.667c-23.893-11.43-50.739-15.168-76.847-10.701-26.103 4.471-50.18 16.926-68.907 35.657-18.731 18.726-31.185 42.803-35.657 68.907-4.467 26.108-0.73 52.954 10.701 76.847v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-forbid-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1761,
+ "id": 588,
+ "name": "folder-forbid-fill",
+ "prevSize": 32,
+ "code": 61358
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1710
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h153.003v85.333h85.333v-85.333h128zM768 554.667h-85.333v85.333h-85.333v128h170.667v-213.333zM682.667 469.333h-85.333v85.333h85.333v-85.333zM768 384h-85.333v85.333h85.333v-85.333zM682.667 298.667h-85.333v85.333h85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-zip-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1762,
+ "id": 587,
+ "name": "folder-zip-fill",
+ "prevSize": 32,
+ "code": 61359
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1711
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 426.667h-426.667v314.965c0 60.117 26.965 116.651 72.747 154.368h-456.747c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667zM597.333 512h341.333v229.632c0 38.272-19.029 73.984-50.645 95.147l-120.021 80.512-120.021-80.427c-15.607-10.492-28.39-24.661-37.222-41.263s-13.44-35.123-13.423-53.926v-229.675z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-shield-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1763,
+ "id": 586,
+ "name": "folder-shield-2-fill",
+ "prevSize": 32,
+ "code": 61360
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1712
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 560.043c-47.539-34.172-105.361-51.017-163.814-47.727-58.458 3.294-114.018 26.526-157.423 65.822s-72.026 92.279-81.092 150.123c-9.071 57.843 1.963 117.047 31.258 167.74h-439.595c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v304.043zM853.333 725.333h128v85.333h-128v149.333l-213.333-192 213.333-192v149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-received-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1764,
+ "id": 585,
+ "name": "folder-received-fill",
+ "prevSize": 32,
+ "code": 61361
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1713
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v128c0 23.552-19.2 42.667-42.965 42.667h-511.403c-5.626 0.034-11.204-1.045-16.413-3.174s-9.945-5.265-13.937-9.229c-3.993-3.964-7.162-8.678-9.327-13.875-2.164-5.193-3.282-10.761-3.287-16.388l0.128-597.333c0-23.552 19.2-42.667 42.965-42.667h127.573zM384 256h341.333v426.667h85.333v-512h-426.667v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-copy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1765,
+ "id": 584,
+ "name": "file-copy-fill",
+ "prevSize": 32,
+ "code": 61362
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1714
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM469.333 512h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128h-85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1766,
+ "id": 583,
+ "name": "folder-add-fill",
+ "prevSize": 32,
+ "code": 61363
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1715
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 498.091c-59.503-28.25-126.673-36.036-191.061-22.148s-122.377 48.67-164.945 98.931c-42.569 50.266-67.328 113.19-70.421 178.987-3.098 65.796 15.646 130.769 53.308 184.806h-352.512c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299l213.333 213.333v199.424zM768 981.333c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM712.832 883.541c23.893 11.43 50.739 15.168 76.847 10.701 26.103-4.471 50.18-16.926 68.907-35.657 18.731-18.726 31.185-42.803 35.657-68.907 4.467-26.108 0.73-52.954-10.701-76.847l-170.709 170.709zM652.459 823.168l170.709-170.667c-23.893-11.43-50.739-15.168-76.847-10.701-26.103 4.471-50.18 16.926-68.907 35.657-18.731 18.726-31.185 42.803-35.657 68.907-4.467 26.108-0.73 52.954 10.701 76.847v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-forbid-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1767,
+ "id": 582,
+ "name": "file-forbid-fill",
+ "prevSize": 32,
+ "code": 61364
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1716
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 298.667v597.035c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.072-42.325 42.581-42.325h511.957l213.461 213.333zM341.333 341.333v238.933c0 36.267 19.029 70.101 50.645 90.197l120.021 76.203 120.021-76.203c15.373-9.532 28.079-22.805 36.937-38.579 8.853-15.77 13.572-33.532 13.709-51.618v-238.933h-341.333zM426.667 426.667h170.667v153.6c0 6.741-3.84 13.568-11.093 18.176l-74.24 47.104-74.24-47.147c-7.253-4.608-11.093-11.435-11.093-18.176v-153.557z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-shield-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1768,
+ "id": 581,
+ "name": "file-shield-fill",
+ "prevSize": 32,
+ "code": 61365
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1717
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 85.333v853.333h-170.667v-170.667h-85.333v-85.333h85.333v-128h-85.333v-85.333h85.333v-128h-85.333v-85.333h85.333v-170.667h170.667zM853.547 85.333c47.019 0 85.12 38.315 85.12 84.907v683.52c0 46.891-38.101 84.907-85.12 84.907h-426.88v-853.333h426.88z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["booklet-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1769,
+ "id": 580,
+ "name": "booklet-fill",
+ "prevSize": 32,
+ "code": 61366
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1718
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM469.333 298.667v426.667h85.333v-426.667h-85.333zM640 469.333v256h85.333v-256h-85.333zM298.667 554.667v170.667h85.333v-170.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-chart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1770,
+ "id": 579,
+ "name": "file-chart-fill",
+ "prevSize": 32,
+ "code": 61367
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1719
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 384v511.701c0.038 5.602-1.024 11.157-3.132 16.35s-5.218 9.92-9.152 13.909c-3.934 3.989-8.619 7.164-13.777 9.344-5.163 2.18-10.705 3.324-16.307 3.362h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0-22.912 19.072-42.325 42.581-42.325h426.752v256c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497h256zM896 298.667h-213.333v-213.205l213.333 213.205z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1771,
+ "id": 578,
+ "name": "file-3-fill",
+ "prevSize": 32,
+ "code": 61368
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1720
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128.001 384h256c11.316 0 22.169-4.495 30.17-12.497s12.496-18.854 12.496-30.17v-256h426.752c23.509 0 42.581 19.413 42.581 42.325v768.683c-0.009 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.263c-5.603-0.038-11.143-1.182-16.305-3.362s-9.843-5.355-13.777-9.344c-3.934-3.989-7.044-8.717-9.152-13.909s-3.173-10.748-3.133-16.35v-511.701zM128.001 298.667l213.333-213.205v213.205h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1772,
+ "id": 577,
+ "name": "file-2-fill",
+ "prevSize": 32,
+ "code": 61369
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1721
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 85.333h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-85.333h85.333v85.333h256v-85.333h85.333v85.333zM298.667 341.333v85.333h426.667v-85.333h-426.667zM298.667 512v85.333h426.667v-85.333h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["todo-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1773,
+ "id": 576,
+ "name": "todo-fill",
+ "prevSize": 32,
+ "code": 61370
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1722
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.664 213.333h366.336c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h316.331l85.333 85.333zM512 512h-170.667v85.333h170.667v128l170.667-170.667-170.667-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["folder-transfer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1774,
+ "id": 575,
+ "name": "folder-transfer-fill",
+ "prevSize": 32,
+ "code": 61371
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1723
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170.667v170.667h512v-170.667h85.632c23.381 0 42.368 18.987 42.368 42.368v683.264c0 23.381-18.987 42.368-42.368 42.368h-683.264c-23.381 0-42.368-18.987-42.368-42.368v-683.264c0-23.381 18.987-42.368 42.368-42.368h85.632zM384 725.333h-85.333v85.333h85.333v-85.333zM384 597.333h-85.333v85.333h85.333v-85.333zM384 469.333h-85.333v85.333h85.333v-85.333zM682.667 85.333v170.667h-341.333v-170.667h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["survey-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1775,
+ "id": 574,
+ "name": "survey-fill",
+ "prevSize": 32,
+ "code": 61372
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1724
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 85.333v85.333h85.333v-85.333h341.632c23.381 0 42.368 18.944 42.368 42.325v768.683c-0.090 11.204-4.582 21.926-12.51 29.845s-18.654 12.403-29.858 12.48h-683.264c-11.229 0-21.999-4.459-29.943-12.395s-12.413-18.701-12.425-29.931v-768.683c0.089-11.205 4.583-21.925 12.511-29.845s18.652-12.402 29.857-12.48h256.299zM512 170.667v85.333h85.333v-85.333h-85.333zM426.667 256v85.333h85.333v-85.333h-85.333zM512 341.333v85.333h85.333v-85.333h-85.333zM426.667 426.667v85.333h85.333v-85.333h-85.333zM512 512v85.333h-85.333v128h170.667v-213.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-zip-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1776,
+ "id": 573,
+ "name": "file-zip-fill",
+ "prevSize": 32,
+ "code": 61373
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1725
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM341.333 298.667v85.333h341.333v-85.333h-341.333zM341.333 469.333v85.333h341.333v-85.333h-341.333zM341.333 640v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-list-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1777,
+ "id": 572,
+ "name": "file-list-fill",
+ "prevSize": 32,
+ "code": 61374
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1726
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM469.333 469.333h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128h-85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1778,
+ "id": 571,
+ "name": "file-add-fill",
+ "prevSize": 32,
+ "code": 61375
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1727
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 85.333l213.333 213.333v597.675c-0.013 11.23-4.48 21.995-12.425 29.931s-18.714 12.395-29.943 12.395h-683.264c-11.205-0.077-21.93-4.561-29.857-12.48s-12.422-18.641-12.511-29.845v-768.683c0-23.381 18.987-42.325 42.368-42.325h512.299zM640 469.333v-42.667c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51v42.667h-42.667v213.333h341.333v-213.333h-42.667zM554.667 469.333h-85.333v-42.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["file-lock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1779,
+ "id": 570,
+ "name": "file-lock-fill",
+ "prevSize": 32,
+ "code": 61376
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1728
+ },
+ {
+ "icon": {
+ "paths": [
+ "M295.637 21.974l603.349 603.391-60.331 60.331-163.115-163.072-78.208 117.376v298.667h-170.667v-298.667l-256-384h-42.667v-85.333h195.627l-88.32-88.363 60.331-60.33zM896 170.667v85.333h-42.667l-81.707 122.539-207.872-207.872h332.245z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1780,
+ "id": 569,
+ "name": "filter-off-fill",
+ "prevSize": 32,
+ "code": 61377
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1729
+ },
+ {
+ "icon": {
+ "paths": [
+ "M496.512 556.8l-241.366-241.281 60.331-60.373 241.366 241.366 211.157-211.201v482.689h-482.689l211.201-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1781,
+ "id": 568,
+ "name": "arrow-right-down-fill",
+ "prevSize": 32,
+ "code": 61378
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1730
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 469.333h597.333v85.333h-597.333v-85.333zM512 341.333c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745zM512 810.667c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["divide-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1782,
+ "id": 567,
+ "name": "divide-fill",
+ "prevSize": 32,
+ "code": 61379
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1731
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h213.333v85.333h-85.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h-85.333v-85.333h213.333zM572.331 597.333l75.435-75.435-60.331-60.331-75.435 75.435-75.435-75.435-60.331 60.331 75.435 75.435-75.435 75.435 60.331 60.331 75.435-75.435 75.435 75.435 60.331-60.331-75.435-75.435zM384 170.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1783,
+ "id": 566,
+ "name": "delete-bin-2-fill",
+ "prevSize": 32,
+ "code": 61380
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1732
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 298.667v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333h-85.333v-85.333h853.333v85.333h-85.333zM469.333 384v85.333h85.333v-85.333h-85.333zM469.333 512v85.333h85.333v-85.333h-85.333zM469.333 640v85.333h85.333v-85.333h-85.333zM298.667 85.333h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1784,
+ "id": 565,
+ "name": "delete-bin-3-fill",
+ "prevSize": 32,
+ "code": 61381
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1733
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 87.467v85.845c-86.071 10.952-164.742 54.266-220.024 121.14s-83.025 152.289-77.592 238.881c5.433 86.596 43.636 167.872 106.842 227.311s146.676 92.582 233.44 92.689c83.14 0 163.422-30.345 225.779-85.333 62.362-54.989 102.507-130.846 112.909-213.333h85.888c-21.419 215.595-203.349 384-424.576 384-235.648 0-426.667-191.019-426.667-426.667 0-221.227 168.405-403.157 384-424.533zM798.165 286.165l-286.165 286.165-60.331-60.331 286.165-286.165-140.501-140.501h341.333v341.333l-140.501-140.501z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1785,
+ "id": 564,
+ "name": "share-circle-fill",
+ "prevSize": 32,
+ "code": 61382
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1734
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554.667h-341.333v-85.333h341.333v-298.667l341.333 341.333-341.333 341.333v-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1786,
+ "id": 563,
+ "name": "arrow-right-fill",
+ "prevSize": 32,
+ "code": 61383
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1735
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.669 895.189c-58.281-4.476-113.657-27.251-158.223-65.071-44.565-37.824-76.041-88.759-89.933-145.536-13.891-56.781-9.488-116.493 12.58-170.62s60.675-99.895 110.306-130.773c10.56-82.343 50.764-158.016 113.088-212.857s142.495-85.093 225.516-85.093c83.017 0 163.187 30.252 225.51 85.093 62.327 54.841 102.528 130.514 113.092 212.857 49.63 30.877 88.235 76.646 110.302 130.773 22.071 54.127 26.475 113.839 12.582 170.62-13.892 56.777-45.367 107.712-89.933 145.536-44.565 37.82-99.942 60.595-158.221 65.071v0.811h-426.668v-0.811zM554.671 554.667h128l-170.667-213.333-170.668 213.333h128.002v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-cloud-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1787,
+ "id": 562,
+ "name": "upload-cloud-fill",
+ "prevSize": 32,
+ "code": 61384
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1736
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["search-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1788,
+ "id": 561,
+ "name": "search-fill",
+ "prevSize": 32,
+ "code": 61385
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1737
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM469.333 469.333h-170.667v85.333h170.667v170.667h85.333v-170.667h170.667v-85.333h-170.667v-170.667h-85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["add-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1789,
+ "id": 560,
+ "name": "add-box-fill",
+ "prevSize": 32,
+ "code": 61386
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1738
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 554.667v238.293l77.995-77.995 60.373 60.373-181.035 180.992-181.034-180.992 60.373-60.373 77.994 77.995v-238.293h85.333zM512 85.333c73.259 0.003 143.962 26.927 198.665 75.653s89.596 115.855 98.039 188.624c53.090 14.478 99.401 47.151 130.846 92.309 31.441 45.163 46.016 99.934 41.169 154.748-4.843 54.814-28.796 106.18-67.669 145.126-38.878 38.946-90.202 62.993-145.007 67.934l-0.043-84.395c0.068-67.11-26.219-131.558-73.199-179.477-46.985-47.923-110.903-75.477-178.001-76.736-67.093-1.259-132.003 23.881-180.749 70.003-48.746 46.127-77.431 109.547-79.88 176.61l-0.171 9.6v84.395c-54.807-4.937-106.138-28.975-145.018-67.917s-62.84-90.308-67.689-145.126c-4.849-54.814 9.72-109.589 41.161-154.752 31.44-45.164 77.753-77.841 130.843-92.322 8.435-72.773 43.324-139.908 98.030-188.635s125.414-75.648 198.673-75.642z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-cloud-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1790,
+ "id": 559,
+ "name": "download-cloud-2-fill",
+ "prevSize": 32,
+ "code": 61387
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1739
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 298.667v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v170.368c0 23.723-19.157 42.965-42.965 42.965h-554.069c-5.644 0.004-11.233-1.101-16.449-3.26-5.215-2.155-9.954-5.321-13.945-9.314-3.991-3.989-7.155-8.725-9.312-13.943-2.157-5.214-3.265-10.803-3.259-16.448l0.128-554.069c0-23.723 19.157-42.965 42.965-42.965h170.24zM384 298.667h298.368c23.723 0 42.965 19.157 42.965 42.965v298.368h128v-469.333h-469.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-multiple-blank-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1791,
+ "id": 558,
+ "name": "checkbox-multiple-blank-fill",
+ "prevSize": 32,
+ "code": 61388
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1740
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM384 469.333v-128l-213.333 170.667 213.333 170.667v-128h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1792,
+ "id": 557,
+ "name": "logout-box-fill",
+ "prevSize": 32,
+ "code": 61389
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1741
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 341.333h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667zM469.333 671.232v96.768h85.333v-96.768c16.269-9.391 28.983-23.889 36.173-41.246 7.185-17.353 8.448-36.595 3.588-54.741-4.864-18.146-15.578-34.176-30.481-45.615-14.903-11.435-33.161-17.634-51.947-17.634s-37.043 6.199-51.947 17.634c-14.903 11.439-25.617 27.469-30.481 45.615-4.86 18.146-3.599 37.389 3.588 54.741 7.189 17.357 19.904 31.855 36.173 41.246zM682.667 341.333v-42.667c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68v42.667h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1793,
+ "id": 556,
+ "name": "lock-2-fill",
+ "prevSize": 32,
+ "code": 61390
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1742
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 810.667h682.667v-298.667h85.333v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h85.333v298.667zM597.333 384v256h-170.667v-256h-213.333l298.667-298.667 298.667 298.667h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1794,
+ "id": 555,
+ "name": "upload-2-fill",
+ "prevSize": 32,
+ "code": 61391
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1743
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM384 469.333h512v85.333h-512v-85.333zM128 768h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1795,
+ "id": 554,
+ "name": "menu-3-fill",
+ "prevSize": 32,
+ "code": 61392
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1744
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 469.333h512v85.333h-512v-85.333zM128 768h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1796,
+ "id": 553,
+ "name": "menu-2-fill",
+ "prevSize": 32,
+ "code": 61393
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1745
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM725.333 682.667l213.333-170.667-213.333-170.667v128h-341.333v85.333h341.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-circle-r-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1797,
+ "id": 552,
+ "name": "logout-circle-r-fill",
+ "prevSize": 32,
+ "code": 61394
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1746
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l405.333 234.667v469.333l-405.333 234.667-405.333-234.667v-469.333l405.333-234.667zM512 640c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1798,
+ "id": 551,
+ "name": "settings-fill",
+ "prevSize": 32,
+ "code": 61395
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1747
+ },
+ {
+ "icon": {
+ "paths": ["M384 512l170.667-170.667v341.333l-170.667-170.667z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-left-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1799,
+ "id": 550,
+ "name": "arrow-drop-left-fill",
+ "prevSize": 32,
+ "code": 61396
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1748
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 512v341.333h-85.333v-341.333h-298.667l341.333-341.333 341.333 341.333h-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1800,
+ "id": 549,
+ "name": "arrow-up-fill",
+ "prevSize": 32,
+ "code": 61397
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1749
+ },
+ {
+ "icon": {
+ "paths": [
+ "M579.243 736.896l-218.028-118.912c-20.928 20.774-47.539 34.889-76.476 40.559-28.938 5.675-58.907 2.654-86.13-8.683s-50.48-30.477-66.84-55.010c-16.361-24.533-25.091-53.363-25.091-82.85s8.73-58.317 25.091-82.85c16.36-24.535 39.618-43.676 66.84-55.011s57.192-14.356 86.13-8.684c28.937 5.673 55.548 19.786 76.476 40.56l218.028-118.912c-7.479-35.084-2.078-71.686 15.215-103.115 17.289-31.429 45.316-55.583 78.955-68.046 33.634-12.463 70.635-12.401 104.23 0.173s61.538 36.822 78.729 68.308c17.186 31.485 22.464 68.106 14.869 103.164-7.59 35.058-27.554 66.212-56.226 87.763-28.676 21.551-64.154 32.061-99.938 29.606-35.789-2.455-69.495-17.709-94.959-42.974l-218.028 118.912c4.349 20.506 4.349 41.698 0 62.208l218.028 118.912c25.463-25.267 59.17-40.521 94.959-42.974 35.785-2.453 71.262 8.055 99.938 29.606 28.672 21.551 48.636 52.706 56.226 87.761 7.595 35.059 2.317 71.68-14.869 103.168-17.19 31.484-45.133 55.731-78.729 68.305s-70.596 12.638-104.23 0.175c-33.638-12.463-61.666-36.621-78.955-68.049-17.293-31.428-22.694-68.028-15.215-103.113z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1801,
+ "id": 548,
+ "name": "share-fill",
+ "prevSize": 32,
+ "code": 61398
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1750
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.333 640v85.333h85.333v-85.333h-85.333zM469.333 298.667v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["error-warning-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1802,
+ "id": 547,
+ "name": "error-warning-fill",
+ "prevSize": 32,
+ "code": 61399
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1751
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 469.333v-256h85.333v256h256v85.333h-256v256h-85.333v-256h-256v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["add-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1803, "id": 546, "name": "add-fill", "prevSize": 32, "code": 61400 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1752
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM554.667 426.667v-213.333l-213.333 298.667h128v213.333l213.333-298.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-flash-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1804,
+ "id": 545,
+ "name": "shield-flash-fill",
+ "prevSize": 32,
+ "code": 61401
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1753
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667h768v85.333h-768v-85.333zM554.667 426.667v341.333h-85.333v-341.333h-298.667l341.333-341.333 341.333 341.333h-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1805,
+ "id": 544,
+ "name": "upload-fill",
+ "prevSize": 32,
+ "code": 61402
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1754
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-blank-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1806,
+ "id": 543,
+ "name": "checkbox-blank-fill",
+ "prevSize": 32,
+ "code": 61403
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1755
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 469.333h-339.198c21.333-215.595 203.264-384 424.531-384 235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-221.225 0-403.155-168.405-424.531-384h339.198v128l213.333-170.667-213.333-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["login-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1807,
+ "id": 542,
+ "name": "login-circle-fill",
+ "prevSize": 32,
+ "code": 61404
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1756
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM426.667 426.667h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128h-85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zoom-in-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1808,
+ "id": 541,
+ "name": "zoom-in-fill",
+ "prevSize": 32,
+ "code": 61405
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1757
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 725.333l-250.795 153.173 68.181-285.867-223.147-191.147 292.907-23.467 112.854-271.36 112.853 271.36 292.949 23.467-223.189 191.147 68.181 285.867-250.795-153.173z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-s-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1809,
+ "id": 540,
+ "name": "star-s-fill",
+ "prevSize": 32,
+ "code": 61406
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1758
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM519.595 306.219c-36.42-11.213-75.546-9.913-111.145 3.692-35.597 13.605-65.617 38.732-85.276 71.378s-27.826 70.932-23.2 108.76c4.626 37.824 21.779 73.015 48.725 99.964 26.947 26.944 62.136 44.096 99.962 48.725 37.828 4.625 76.113-3.541 108.762-23.202 32.644-19.661 57.771-49.677 71.377-85.278 13.602-35.597 14.903-74.722 3.691-111.142-5.692 12.574-14.345 23.582-25.225 32.073-10.876 8.495-23.654 14.225-37.231 16.7-13.577 2.47-27.554 1.613-40.73-2.5-13.171-4.117-25.152-11.366-34.91-21.124-9.758-9.762-17.003-21.745-21.111-34.921s-4.962-27.151-2.483-40.728c2.479-13.577 8.209-26.351 16.708-37.226s19.507-19.526 32.085-25.211v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["search-eye-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1810,
+ "id": 539,
+ "name": "search-eye-fill",
+ "prevSize": 32,
+ "code": 61407
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1759
+ },
+ {
+ "icon": {
+ "paths": ["M512 682.667l-256-256h512l-256 256z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-down-s-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1811,
+ "id": 538,
+ "name": "arrow-down-s-fill",
+ "prevSize": 32,
+ "code": 61408
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1760
+ },
+ {
+ "icon": {
+ "paths": [
+ "M751.706 254.635l61.995-61.995 60.331 60.331-61.995 61.995c61.257 76.679 90.833 173.905 82.645 271.706-8.183 97.805-53.504 188.762-126.66 254.191-73.152 65.429-168.58 100.369-266.688 97.638-98.105-2.731-191.442-42.923-260.841-112.324-69.399-69.397-109.591-162.735-112.322-260.843s32.206-193.535 97.637-266.688c65.431-73.152 156.387-118.475 254.189-126.66 97.805-8.185 195.029 21.389 271.71 82.649zM469.338 341.333v256h85.333v-256h-85.333zM341.336 42.667h341.335v85.333h-341.335v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["timer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1812,
+ "id": 537,
+ "name": "timer-fill",
+ "prevSize": 32,
+ "code": 61409
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1761
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 213.333h341.333c79.211 0 155.179 31.467 211.187 87.477 56.013 56.011 87.479 131.979 87.479 211.189s-31.467 155.179-87.479 211.187c-56.009 56.013-131.977 87.479-211.187 87.479h-341.333c-79.212 0-155.178-31.467-211.189-87.479-56.011-56.009-87.477-131.977-87.477-211.187s31.467-155.178 87.477-211.189c56.011-56.011 131.978-87.477 211.189-87.477zM682.667 640c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.509 37.49s-37.491 56.564-37.491 90.51c0 33.946 13.487 66.505 37.491 90.509s56.563 37.491 90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["toggle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1813,
+ "id": 536,
+ "name": "toggle-fill",
+ "prevSize": 32,
+ "code": 61410
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1762
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 554.667h341.333v-426.667h-341.333v426.667zM128 896h341.333v-256h-341.333v256zM554.667 896h341.333v-426.667h-341.333v426.667zM554.667 128v256h341.333v-256h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dashboard-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1814,
+ "id": 535,
+ "name": "dashboard-fill",
+ "prevSize": 32,
+ "code": 61411
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1763
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM717.653 728.576c51.503-48.815 83.942-114.377 91.507-184.934 7.561-70.558-10.244-141.504-50.231-200.128-39.983-58.624-99.537-101.095-167.987-119.805-68.454-18.71-141.329-12.436-205.577 17.699l41.6 74.88c32.465-14.11 67.934-19.92 103.206-16.905 35.268 3.015 69.235 14.76 98.837 34.176 29.598 19.416 53.901 45.893 70.72 77.044 16.815 31.151 25.613 65.996 25.604 101.397h-128l120.32 216.576zM638.635 782.592l-41.6-74.88c-32.465 14.11-67.934 19.921-103.206 16.905-35.268-3.017-69.236-14.758-98.836-34.176s-53.904-45.892-70.72-77.043c-16.816-31.151-25.615-65.997-25.606-101.397h128l-120.32-216.576c-51.503 48.817-83.942 114.376-91.506 184.934s10.243 141.504 50.229 200.128c39.986 58.624 99.54 101.094 167.989 119.804 68.454 18.709 141.329 12.437 205.577-17.698z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["refresh-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1815,
+ "id": 534,
+ "name": "refresh-fill",
+ "prevSize": 32,
+ "code": 61412
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1764
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 512h298.667l-341.333 341.333-341.333-341.333h298.667v-341.333h85.333v341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1816,
+ "id": 533,
+ "name": "arrow-down-fill",
+ "prevSize": 32,
+ "code": 61413
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1765
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 537.003l181.035 180.992-60.373 60.373-77.995-77.995v238.293h-85.333v-238.379l-77.994 78.080-60.373-60.373 181.034-180.992zM512 85.333c73.259 0.003 143.962 26.927 198.665 75.653s89.596 115.855 98.039 188.624c53.090 14.478 99.401 47.151 130.846 92.309 31.441 45.163 46.016 99.934 41.169 154.748-4.843 54.814-28.796 106.18-67.669 145.126-38.878 38.946-90.202 62.993-145.007 67.934l-0.043-84.395c0.068-67.11-26.219-131.558-73.199-179.477-46.985-47.923-110.903-75.477-178.001-76.736-67.093-1.259-132.003 23.881-180.749 70.003-48.746 46.127-77.431 109.547-79.88 176.61l-0.171 9.6v84.395c-54.807-4.937-106.138-28.975-145.018-67.917s-62.84-90.308-67.689-145.126c-4.849-54.814 9.72-109.589 41.161-154.752 31.44-45.164 77.753-77.841 130.843-92.322 8.435-72.773 43.324-139.908 98.030-188.635s125.414-75.648 198.673-75.642z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["upload-cloud-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1817,
+ "id": 532,
+ "name": "upload-cloud-2-fill",
+ "prevSize": 32,
+ "code": 61414
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1766
+ },
+ {
+ "icon": {
+ "paths": ["M597.333 512l-170.667 170.667v-341.333l170.667 170.667z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-right-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1818,
+ "id": 531,
+ "name": "arrow-drop-right-fill",
+ "prevSize": 32,
+ "code": 61415
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1767
+ },
+ {
+ "icon": {
+ "paths": [
+ "M192.855 253.184l-133.419-133.376 60.373-60.373 844.756 844.8-60.373 60.331-141.227-141.227c-75.042 47.599-162.099 72.802-250.965 72.661-230.057 0-421.46-165.547-461.609-384 18.348-99.383 68.336-190.17 142.507-258.816h-0.043zM629.632 690.005l-62.464-62.464c-23.889 11.43-50.739 15.168-76.843 10.701-26.108-4.471-50.185-16.926-68.911-35.657-18.728-18.726-31.185-42.803-35.654-68.907-4.47-26.108-0.731-52.954 10.7-76.847l-62.464-62.464c-27.148 41.024-39.284 90.167-34.354 139.114s26.625 94.682 61.41 129.468c34.785 34.786 80.523 56.478 129.466 61.41 48.947 4.928 98.091-7.206 139.115-34.355zM340.225 160.427c53.205-20.907 111.188-32.427 171.775-32.427 230.059 0 421.461 165.547 461.611 384-13.073 71.070-42.458 138.138-85.845 195.925l-164.693-164.693c4.894-32.956 2.001-66.598-8.448-98.231-10.449-31.637-28.164-60.385-51.721-83.944-23.561-23.558-52.309-41.271-83.942-51.72-31.637-10.449-65.28-13.343-98.236-8.451l-140.5-140.459z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1819,
+ "id": 530,
+ "name": "eye-off-fill",
+ "prevSize": 32,
+ "code": 61416
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1768
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h341.333v341.333h-341.333v-341.333zM128 554.667h341.333v341.333h-341.333v-341.333zM554.667 128h341.333v341.333h-341.333v-341.333zM554.667 554.667h341.333v341.333h-341.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["function-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1820,
+ "id": 529,
+ "name": "function-fill",
+ "prevSize": 32,
+ "code": 61417
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1769
+ },
+ {
+ "icon": {
+ "paths": [
+ "M527.356 467.068l241.408 241.323-60.373 60.373-241.323-241.365-211.198 211.2v-482.729h482.686l-211.2 211.198z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-up-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1821,
+ "id": 528,
+ "name": "arrow-left-up-fill",
+ "prevSize": 32,
+ "code": 61418
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1770
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 384h128v512h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM311.168 328.832l273.067-273.067c3.631-3.64 8.452-5.847 13.577-6.215 5.129-0.368 10.214 1.126 14.327 4.21l36.395 27.307c10.108 7.588 17.741 17.999 21.943 29.92 4.198 11.921 4.774 24.818 1.651 37.066l-49.195 193.28h273.067c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v89.771c0.013 11.153-2.163 22.195-6.4 32.512l-132.053 320.64c-3.221 7.817-8.691 14.502-15.718 19.204s-15.292 7.211-23.748 7.206h-462.080c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-494.336c0.003-11.315 4.499-22.166 12.501-30.165z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thumb-up-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1822,
+ "id": 527,
+ "name": "thumb-up-fill",
+ "prevSize": 32,
+ "code": 61419
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1771
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 451.669l-120.661-120.704-60.373 60.373 120.704 120.661-120.704 120.661 60.373 60.373 120.661-120.704 120.661 120.704 60.373-60.373-120.704-120.661 120.704-120.661-60.373-60.373-120.661 120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["close-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1823,
+ "id": 526,
+ "name": "close-circle-fill",
+ "prevSize": 32,
+ "code": 61420
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1772
+ },
+ {
+ "icon": {
+ "paths": [
+ "M50.391 512c40.107-218.453 231.552-384 461.609-384 230.059 0 421.461 165.547 461.611 384-40.107 218.453-231.552 384-461.611 384-230.057 0-421.46-165.547-461.609-384zM512 725.333c56.58 0 110.844-22.477 150.852-62.485 40.004-40.004 62.481-94.268 62.481-150.848s-22.477-110.842-62.481-150.849c-40.009-40.008-94.272-62.484-150.852-62.484s-110.84 22.476-150.848 62.484c-40.008 40.008-62.484 94.269-62.484 150.849s22.476 110.844 62.484 150.848c40.008 40.009 94.268 62.485 150.848 62.485zM512 640c-33.946 0-66.505-13.487-90.508-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.563-37.49 90.508-37.49c33.95 0 66.505 13.486 90.513 37.49 24.004 24.005 37.487 56.564 37.487 90.51s-13.483 66.505-37.487 90.509c-24.009 24.004-56.563 37.491-90.513 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1824, "id": 525, "name": "eye-fill", "prevSize": 32, "code": 61421 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1773
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 298.667h-213.333c-67.895 0-133.010 26.971-181.019 74.981s-74.981 113.124-74.981 181.019c0 67.895 26.971 133.009 74.981 181.018 48.009 48.013 113.124 74.982 181.019 74.982h384v85.333h-384c-90.527 0-177.347-35.964-241.359-99.972-64.013-64.013-99.974-150.835-99.974-241.361s35.962-177.347 99.974-241.359c64.012-64.013 150.832-99.974 241.359-99.974h213.333v-170.667l256 213.333-256 213.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-go-forward-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1825,
+ "id": 524,
+ "name": "arrow-go-forward-fill",
+ "prevSize": 32,
+ "code": 61422
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1774
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 779.093l-300.926 168.448 67.2-338.261-253.227-234.155 342.486-40.619 144.468-313.173 144.469 313.173 342.485 40.619-253.227 234.155 67.2 338.261-300.928-168.448z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1826,
+ "id": 523,
+ "name": "star-fill",
+ "prevSize": 32,
+ "code": 61423
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1775
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333c211.968 0 384 172.032 384 384s-172.032 384-384 384c-211.968 0-384-172.032-384-384s172.032-384 384-384zM831.36 771.029l120.704 120.661-60.373 60.373-120.661-120.704 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["search-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1827,
+ "id": 522,
+ "name": "search-2-fill",
+ "prevSize": 32,
+ "code": 61424
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1776
+ },
+ {
+ "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"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-blank-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1828,
+ "id": 521,
+ "name": "checkbox-blank-circle-fill",
+ "prevSize": 32,
+ "code": 61425
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1777
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.667h768v85.333h-768v-85.333zM128 469.333h768v85.333h-768v-85.333zM128 768h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1829,
+ "id": 520,
+ "name": "menu-fill",
+ "prevSize": 32,
+ "code": 61426
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1778
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 128v85.333h-213.333v597.333h597.333v-213.333h85.333v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM755.499 328.832l-243.499 243.499-60.331-60.331 243.499-243.499-140.501-140.501h341.333v341.333l-140.501-140.501z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1830,
+ "id": 519,
+ "name": "share-box-fill",
+ "prevSize": 32,
+ "code": 61427
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1779
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM512 576l125.397 65.92-23.936-139.605 101.419-98.901-140.203-20.395-62.677-127.019-62.72 127.019-140.16 20.395 101.419 98.901-23.893 139.605 125.355-65.92z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-star-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1831,
+ "id": 518,
+ "name": "shield-star-fill",
+ "prevSize": 32,
+ "code": 61428
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1780
+ },
+ {
+ "icon": {
+ "paths": [
+ "M278.829 128h617.175c11.315 0 22.165 4.495 30.17 12.497 8 8.002 12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17-8.004 8-18.854 12.497-30.17 12.497h-617.175c-7.023 0-13.937-1.732-20.129-5.043s-11.472-8.102-15.369-13.943l-227.541-341.333c-4.678-7.010-7.174-15.253-7.174-23.68s2.496-16.67 7.174-23.68l227.541-341.333c3.898-5.842 9.177-10.631 15.369-13.943s13.107-5.044 20.129-5.044zM682.671 469.333h-298.669v85.333h298.669v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-back-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1832,
+ "id": 517,
+ "name": "delete-back-fill",
+ "prevSize": 32,
+ "code": 61429
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1781
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 298.667v170.667l-256-213.333 256-213.333v170.667h213.333c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.833 99.972 241.359s-35.964 177.348-99.972 241.361c-64.013 64.009-150.835 99.972-241.361 99.972h-384v-85.333h384c67.895 0 133.009-26.97 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-go-back-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1833,
+ "id": 516,
+ "name": "arrow-go-back-fill",
+ "prevSize": 32,
+ "code": 61430
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1782
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.666 647.339l392.192-392.235 60.373 60.331-452.566 452.565-271.531-271.531 60.331-60.331 211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["check-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1834,
+ "id": 515,
+ "name": "check-fill",
+ "prevSize": 32,
+ "code": 61431
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1783
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 682.667c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.415-49.987 120.68s17.981 88.674 49.987 120.678c32.006 32.009 75.415 49.988 120.68 49.988z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radio-button-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1835,
+ "id": 514,
+ "name": "radio-button-fill",
+ "prevSize": 32,
+ "code": 61432
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1784
+ },
+ {
+ "icon": {
+ "paths": ["M682.667 512l-256 256v-512l256 256z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-s-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1836,
+ "id": 513,
+ "name": "arrow-right-s-fill",
+ "prevSize": 32,
+ "code": 61433
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1785
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95l350.592-77.909zM512 298.667c-18.786 0.001-37.043 6.199-51.947 17.635-14.899 11.435-25.613 27.468-30.477 45.612-4.86 18.144-3.599 37.385 3.588 54.74 7.189 17.356 19.9 31.854 36.169 41.245v182.101h85.333l0.043-182.101c16.269-9.395 28.983-23.898 36.173-41.255 7.185-17.359 8.444-36.604 3.575-54.751-4.864-18.146-15.586-34.179-30.494-45.611-14.912-11.432-33.178-17.624-51.964-17.615z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-keyhole-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1837,
+ "id": 512,
+ "name": "shield-keyhole-fill",
+ "prevSize": 32,
+ "code": 61434
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1786
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 682.667v-170.667l213.333 213.333-213.333 213.333v-170.667h-512v-85.333h512zM341.333 85.333v170.624l512 0.043v85.333h-512v170.667l-213.333-213.333 213.333-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-right-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1838,
+ "id": 511,
+ "name": "arrow-left-right-fill",
+ "prevSize": 32,
+ "code": 61435
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1787
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM469.333 426.667h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128h-85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-cross-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1839,
+ "id": 510,
+ "name": "shield-cross-fill",
+ "prevSize": 32,
+ "code": 61436
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1788
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 810.667h682.667v-298.667h85.333v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h85.333v298.667zM597.333 384h213.333l-298.667 298.667-298.667-298.667h213.333v-256h170.667v256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1840,
+ "id": 509,
+ "name": "download-2-fill",
+ "prevSize": 32,
+ "code": 61437
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1789
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 938.662c-50.423 0-100.359-9.929-146.948-29.227s-88.921-47.586-124.579-83.243c-35.658-35.657-63.943-77.99-83.241-124.578s-29.23-96.525-29.23-146.953c0-50.423 9.932-100.361 29.23-146.948 19.298-46.589 47.583-88.921 83.241-124.579s77.99-63.943 124.579-83.241c46.589-19.298 96.525-29.23 146.948-29.23 101.845 0 199.518 40.457 271.531 112.471s112.469 169.686 112.469 271.527c0 101.845-40.457 199.518-112.469 271.531s-169.685 112.469-271.531 112.469zM554.662 554.662v-213.331h-85.333v298.665h213.333v-85.333h-128zM74.537 268.030l150.827-150.827 60.373 60.331-150.912 150.869-60.288-60.373zM798.588 117.203l150.869 150.827-60.331 60.373-150.869-150.869 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alarm-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1841,
+ "id": 508,
+ "name": "alarm-fill",
+ "prevSize": 32,
+ "code": 61438
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1790
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 105.557l234.667 406.443-234.667 406.443h-469.333l-234.667-406.443 234.667-406.443h469.333zM368.384 348.587l213.333 369.493 73.899-42.667-213.333-369.493-73.899 42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-6-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1842,
+ "id": 507,
+ "name": "settings-6-fill",
+ "prevSize": 32,
+ "code": 61439
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1791
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 341.333h682.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667zM298.667 213.333v-85.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h213.333v85.333h-853.333v-85.333h213.333zM384 170.667v42.667h256v-42.667h-256zM384 512v256h85.333v-256h-85.333zM554.667 512v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1843,
+ "id": 506,
+ "name": "delete-bin-5-fill",
+ "prevSize": 32,
+ "code": 61440
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1792
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 298.667v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333h-85.333v-85.333h853.333v85.333h-85.333zM469.333 426.667v298.667h85.333v-298.667h-85.333zM298.667 85.333h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1844,
+ "id": 505,
+ "name": "delete-bin-4-fill",
+ "prevSize": 32,
+ "code": 61441
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1793
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 469.333h-256v-341.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333h256v128l213.333-170.667-213.333-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["login-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1845,
+ "id": 504,
+ "name": "login-box-fill",
+ "prevSize": 32,
+ "code": 61442
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1794
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM554.667 512v-170.667h-85.333v170.667h-128l170.667 170.667 170.667-170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-down-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1846,
+ "id": 503,
+ "name": "arrow-down-circle-fill",
+ "prevSize": 32,
+ "code": 61443
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1795
+ },
+ {
+ "icon": {
+ "paths": [
+ "M432.213 675.925l-33.62 125.44-82.389-22.101 33.579-125.397c-50.263-18.539-96.977-45.551-138.112-79.872l-91.861 91.904-60.373-60.373 91.904-91.861c-51.88-62.131-86.738-136.671-101.163-216.319l38.4-7.040c123.273 88.882 271.449 136.601 423.423 136.362 158.037 0 304.256-50.559 423.424-136.362l38.4 6.997c-14.404 79.659-49.25 154.214-101.12 216.362l91.861 91.861-60.373 60.373-91.861-91.904c-41.135 34.321-87.846 61.333-138.112 79.872l33.579 125.44-82.389 22.059-33.621-125.44c-52.804 9.050-106.765 9.050-159.573 0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-close-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1847,
+ "id": 502,
+ "name": "eye-close-fill",
+ "prevSize": 32,
+ "code": 61444
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1796
+ },
+ {
+ "icon": {
+ "paths": [
+ "M495.019 587.093l60.245 60.245 361.216-361.216 60.331 60.331-421.547 421.547-271.531-271.531 60.331-60.331 150.955 150.955zM495.104 466.432l211.285-211.328 60.16 60.16-211.285 211.328-60.16-60.16zM374.485 707.712l-60.288 60.288-271.531-271.531 60.331-60.331 60.288 60.288-0.043 0.043 211.243 211.243z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["check-double-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1848,
+ "id": 501,
+ "name": "check-double-fill",
+ "prevSize": 32,
+ "code": 61445
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1797
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 625.323l120.192 73.387-32.683-136.96 106.965-91.605-140.373-11.264-54.101-130.005v296.448zM512 725.333l-250.795 153.173 68.181-285.867-223.147-191.147 292.907-23.467 112.854-271.36 112.853 271.36 292.949 23.467-223.189 191.147 68.181 285.867-250.795-153.173z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-half-s-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1849,
+ "id": 500,
+ "name": "star-half-s-fill",
+ "prevSize": 32,
+ "code": 61446
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1798
+ },
+ {
+ "icon": {
+ "paths": [
+ "M691.968 106.668l242.475 242.432v342.868l-242.475 242.475h-342.868l-242.475-242.475v-342.868l242.475-242.475 342.868 0.043zM469.333 640v85.333h85.333v-85.333h-85.333zM469.333 298.668v255.999h85.333v-255.999h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spam-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1850,
+ "id": 499,
+ "name": "spam-2-fill",
+ "prevSize": 32,
+ "code": 61447
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1799
+ },
+ {
+ "icon": {
+ "paths": [
+ "M679.936 106.667l237.397 237.525v335.787l-237.397 237.355h-335.787l-237.483-237.397v-335.787l237.483-237.483h335.787zM341.333 469.333v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spam-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1851,
+ "id": 498,
+ "name": "spam-3-fill",
+ "prevSize": 32,
+ "code": 61448
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1800
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 597.333h-85.333c-69.99-0.026-138.657 19.076-198.576 55.249s-108.812 88.034-141.392 149.978c-0.916-11.499-1.371-23.027-1.365-34.56 0-235.648 191.019-426.667 426.667-426.667v-213.333l426.667 341.333-426.667 341.333v-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-forward-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1852,
+ "id": 497,
+ "name": "share-forward-fill",
+ "prevSize": 32,
+ "code": 61449
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1801
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 640l-0.043 128h128.043v85.333h-128.043l0.043 128h-85.333l-0.043-128h-127.957v-85.333h127.957l0.043-128h85.333zM469.333 768v85.333h-341.333v-85.333h341.333zM896 469.333v85.333h-768v-85.333h768zM896 170.667v85.333h-768v-85.333h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1853,
+ "id": 496,
+ "name": "menu-add-fill",
+ "prevSize": 32,
+ "code": 61450
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1802
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667h768v85.333h-768v-85.333zM554.667 384h298.667l-341.333 341.333-341.333-341.333h298.667v-341.333h85.333v341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1854,
+ "id": 495,
+ "name": "download-fill",
+ "prevSize": 32,
+ "code": 61451
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1803
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 426.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.333zM810.667 426.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.333zM512 426.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.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["more-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1855,
+ "id": 494,
+ "name": "more-fill",
+ "prevSize": 32,
+ "code": 61452
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1804
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 341.333h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667zM682.667 341.333v-42.667c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68v42.667h341.333zM469.333 597.333v85.333h85.333v-85.333h-85.333zM298.667 597.333v85.333h85.333v-85.333h-85.333zM640 597.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-password-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1856,
+ "id": 493,
+ "name": "lock-password-fill",
+ "prevSize": 32,
+ "code": 61453
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1805
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.461 682.667l301.653-301.696-60.331-60.331-241.323 241.365-120.704-120.704-60.331 60.331 181.035 181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1857,
+ "id": 492,
+ "name": "checkbox-circle-fill",
+ "prevSize": 32,
+ "code": 61454
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1806
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 768v85.333h-469.333v-85.333h469.333zM896 469.333v85.333h-768v-85.333h768zM810.667 170.667v85.333h-469.333v-85.333h469.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1858,
+ "id": 491,
+ "name": "menu-4-fill",
+ "prevSize": 32,
+ "code": 61455
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1807
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 768v85.333h-512v-85.333h512zM896 469.333v85.333h-768v-85.333h768zM768 170.667v85.333h-512v-85.333h512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1859,
+ "id": 490,
+ "name": "menu-5-fill",
+ "prevSize": 32,
+ "code": 61456
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1808
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l350.592 77.909c19.499 4.352 33.408 21.632 33.408 41.643v426.112c0 85.589-42.795 165.547-114.005 212.992l-269.995 180.011-269.995-180.011c-71.253-47.488-114.005-127.403-114.005-212.949v-426.155c0-20.011 13.909-37.291 33.408-41.643l350.592-77.909zM701.952 350.805l-211.2 211.157-120.661-120.661-60.331 60.331 181.035 181.035 271.531-271.531-60.373-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-check-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1860,
+ "id": 489,
+ "name": "shield-check-fill",
+ "prevSize": 32,
+ "code": 61457
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1809
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 298.667c-21.888 0-42.965 3.285-62.848 9.387 15.74 7.092 29.521 17.898 40.166 31.491 10.641 13.593 17.826 29.565 20.937 46.547s2.052 34.464-3.085 50.948c-5.137 16.482-14.195 31.471-26.402 43.678-12.203 12.211-27.191 21.274-43.669 26.415-16.482 5.141-33.964 6.204-50.947 3.102-16.982-3.106-32.957-10.287-46.553-20.924-13.596-10.641-24.406-24.418-31.503-40.158-13.231 42.918-12.579 88.917 1.862 131.447 14.441 42.526 41.936 79.411 78.567 105.395 36.631 25.988 80.527 39.753 125.437 39.33s88.542-15.006 124.681-41.677c36.134-26.671 62.933-64.064 76.574-106.854s13.427-88.794-0.606-131.456c-14.033-42.664-41.173-79.809-77.555-106.145s-80.145-40.518-125.056-40.526z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eye-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1861,
+ "id": 488,
+ "name": "eye-2-fill",
+ "prevSize": 32,
+ "code": 61458
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1810
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 256v85.333h-213.333v469.333h469.333v-213.333h85.333v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-554.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM896 128v384l-161.877-161.835-255.957 256-60.331-60.331 255.957-256-161.792-161.835h384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["external-link-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1862,
+ "id": 487,
+ "name": "external-link-fill",
+ "prevSize": 32,
+ "code": 61459
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1811
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM662.869 300.8l-211.2 211.2 60.331 60.331 211.2-211.2-60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["timer-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1863,
+ "id": 486,
+ "name": "timer-2-fill",
+ "prevSize": 32,
+ "code": 61460
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1812
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM554.667 512v-213.333h-85.333v298.667h256v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["time-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1864,
+ "id": 485,
+ "name": "time-fill",
+ "prevSize": 32,
+ "code": 61461
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1813
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM298.667 426.667v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["zoom-out-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1865,
+ "id": 484,
+ "name": "zoom-out-fill",
+ "prevSize": 32,
+ "code": 61462
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1814
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 938.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333zM640 682.667l213.333-170.667-213.333-170.667v128h-256v85.333h256v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-box-r-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1866,
+ "id": 483,
+ "name": "logout-box-r-fill",
+ "prevSize": 32,
+ "code": 61463
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1815
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 426.667h554.667c11.315 0 22.17 4.497 30.17 12.497 8 8.004 12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17-8 8.004-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.165 12.497-30.17 8.002-8 18.854-12.497 30.17-12.497h42.667v-42.665c-0.024-67.298 22.681-132.632 64.435-185.411s100.109-89.909 165.607-105.373c65.498-15.463 134.298-8.352 195.247 20.179 60.954 28.532 110.481 76.812 140.557 137.015l-76.331 38.144c-21.483-43.007-56.862-77.498-100.403-97.879-43.537-20.382-92.685-25.46-139.473-14.412s-88.472 37.576-118.295 75.282c-29.823 37.706-46.036 84.38-46.010 132.454v42.665zM426.667 640v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-unlock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1867,
+ "id": 482,
+ "name": "lock-unlock-fill",
+ "prevSize": 32,
+ "code": 61464
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1816
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.333 640v85.333h85.333v-85.333h-85.333zM554.667 569.813c34.291-10.334 63.727-32.64 82.953-62.861 19.221-30.217 26.953-66.33 21.781-101.77-5.167-35.439-22.895-67.841-49.95-91.307s-61.636-36.434-97.451-36.542c-34.522-0.003-67.981 11.953-94.686 33.834-26.704 21.881-45.004 52.337-51.788 86.187l83.712 16.768c2.377-11.886 8.077-22.852 16.444-31.624 8.363-8.772 19.046-14.988 30.805-17.925s24.111-2.475 35.618 1.334c11.507 3.808 21.696 10.806 29.38 20.179 7.689 9.373 12.553 20.735 14.033 32.765s-0.486 24.233-5.67 35.19c-5.184 10.957-13.376 20.215-23.616 26.697-10.24 6.485-22.11 9.929-34.231 9.929-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v64h85.333v-27.52z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["question-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1868,
+ "id": 481,
+ "name": "question-fill",
+ "prevSize": 32,
+ "code": 61465
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1817
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 451.669l211.2-211.2 60.331 60.331-211.2 211.2 211.2 211.2-60.331 60.331-211.2-211.2-211.2 211.2-60.331-60.331 211.2-211.2-211.2-211.2 60.331-60.331 211.2 211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["close-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1869,
+ "id": 480,
+ "name": "close-fill",
+ "prevSize": 32,
+ "code": 61466
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1818
+ },
+ {
+ "icon": {
+ "paths": ["M341.333 512l256-256v512l-256-256z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-s-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1870,
+ "id": 479,
+ "name": "arrow-left-s-fill",
+ "prevSize": 32,
+ "code": 61467
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1819
+ },
+ {
+ "icon": {
+ "paths": [
+ "M527.36 556.8l211.2 211.2h-482.643v-482.647l211.198 211.202 241.323-241.367 60.373 60.331-241.451 241.282z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1871,
+ "id": 478,
+ "name": "arrow-left-down-fill",
+ "prevSize": 32,
+ "code": 61468
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1820
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 256h213.333v85.333h-85.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h-85.333v-85.333h213.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM384 469.333v256h85.333v-256h-85.333zM554.667 469.333v256h85.333v-256h-85.333zM384 170.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1872,
+ "id": 477,
+ "name": "delete-bin-fill",
+ "prevSize": 32,
+ "code": 61469
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1821
+ },
+ {
+ "icon": {
+ "paths": [
+ "M569.216 170.667c-16.145 45.58-19.051 94.8-8.38 141.963 10.667 47.163 34.479 90.339 68.668 124.533 34.193 34.189 77.372 58.001 124.531 68.668 47.164 10.671 96.384 7.765 141.965-8.38v398.549c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h398.549zM810.667 426.667c-45.265 0-88.674-17.981-120.678-49.987-32.009-32.006-49.988-75.416-49.988-120.68s17.98-88.673 49.988-120.68c32.004-32.006 75.413-49.987 120.678-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.416 49.988 120.68s-17.98 88.673-49.988 120.68c-32.004 32.006-75.413 49.987-120.678 49.987z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-badge-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1873,
+ "id": 476,
+ "name": "notification-badge-fill",
+ "prevSize": 32,
+ "code": 61470
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1822
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM363.648 303.317c-23.308 16.622-43.683 37.012-60.288 60.331l357.035 357.035c23.322-16.619 43.712-37.009 60.331-60.331l-357.077-357.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["forbid-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1874,
+ "id": 475,
+ "name": "forbid-fill",
+ "prevSize": 32,
+ "code": 61471
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1823
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 469.333h-170.667v85.333h170.667v128l170.667-170.667-170.667-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1875,
+ "id": 474,
+ "name": "arrow-right-circle-fill",
+ "prevSize": 32,
+ "code": 61472
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1824
+ },
+ {
+ "icon": {
+ "paths": ["M512 597.333l-170.667-170.667h341.333l-170.667 170.667z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1876,
+ "id": 473,
+ "name": "arrow-drop-down-fill",
+ "prevSize": 32,
+ "code": 61473
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1825
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM298.667 469.333v85.333h426.667v-85.333h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-indeterminate-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1877,
+ "id": 472,
+ "name": "checkbox-indeterminate-fill",
+ "prevSize": 32,
+ "code": 61474
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1826
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1878,
+ "id": 471,
+ "name": "shield-fill",
+ "prevSize": 32,
+ "code": 61475
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1827
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.495-30.17-12.497s-12.497-18.854-12.497-30.17v-128c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497zM938.667 512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h128c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17zM298.667 512c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h128c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17zM813.696 813.696c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-90.496-90.496c-7.774-8.047-12.075-18.825-11.977-30.012s4.587-21.888 12.497-29.798c7.91-7.91 18.611-12.399 29.798-12.497s21.965 4.203 30.012 11.977l90.496 90.453c3.968 3.964 7.113 8.67 9.263 13.85 2.146 5.18 3.251 10.731 3.251 16.337s-1.105 11.157-3.251 16.337c-2.15 5.18-5.295 9.886-9.263 13.85zM361.131 361.131c-8.001 7.999-18.852 12.492-30.165 12.492s-22.164-4.494-30.165-12.492l-90.453-90.453c-8.006-8-12.506-18.854-12.51-30.172s4.488-22.174 12.489-30.18c8-8.006 18.854-12.506 30.172-12.51s22.174 4.488 30.18 12.489l90.453 90.496c7.999 8.001 12.492 18.852 12.492 30.165s-4.494 22.164-12.492 30.165zM210.347 813.696c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l90.496-90.496c3.936-4.075 8.644-7.326 13.85-9.562s10.804-3.413 16.469-3.465c5.665-0.047 11.284 1.033 16.527 3.179s10.007 5.312 14.014 9.318c4.006 4.006 7.174 8.768 9.319 14.012s3.225 10.863 3.176 16.529c-0.049 5.666-1.226 11.264-3.462 16.469s-5.487 9.916-9.562 13.85l-90.453 90.496c-3.962 3.968-8.668 7.113-13.848 9.263-5.18 2.146-10.732 3.251-16.339 3.251s-11.159-1.105-16.339-3.251c-5.18-2.15-9.885-5.295-13.848-9.263zM662.869 361.131c-8-8.001-12.493-18.852-12.493-30.165s4.493-22.164 12.493-30.165l90.453-90.496c8-8.006 18.854-12.506 30.17-12.51 11.319-0.004 22.178 4.488 30.182 12.489s12.506 18.854 12.51 30.172c0.004 11.318-4.489 22.174-12.489 30.18l-90.496 90.496c-8 7.999-18.85 12.492-30.165 12.492s-22.165-4.494-30.165-12.492z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1879,
+ "id": 470,
+ "name": "loader-2-fill",
+ "prevSize": 32,
+ "code": 61476
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1828
+ },
+ {
+ "icon": {
+ "paths": [
+ "M447.057 496.299l-192.425-301.739 82.389-22.101 296.574 273.92 224.512-60.16c16.397-4.39 33.869-2.088 48.567 6.402s25.421 22.47 29.811 38.868c4.39 16.397 2.091 33.865-6.4 48.563s-22.473 25.425-38.869 29.815l-638.804 171.093-33.109-123.648 10.283-2.773 105.259 104.32-112.043 30.037c-9.187 2.462-18.935 1.788-27.693-1.924s-16.026-10.244-20.648-18.556l-111.915-201.643 61.824-16.555 105.216 104.32 217.47-58.24zM170.664 810.667h682.665v85.333h-682.665v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flight-takeoff-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1880,
+ "id": 469,
+ "name": "flight-takeoff-fill",
+ "prevSize": 32,
+ "code": 61477
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1829
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 765.355c-86.071-10.953-164.742-54.268-220.024-121.139-55.282-66.876-83.025-152.29-77.592-238.883 5.433-86.595 43.636-167.871 106.842-227.311s146.676-92.581 233.44-92.688c86.869-0.064 170.5 32.996 233.843 92.445s101.636 140.814 107.076 227.514c5.44 86.701-22.383 172.214-77.798 239.115-55.42 66.897-134.255 110.153-220.454 120.947v88.491c168.363 3.925 298.667 30.848 298.667 63.488 0 35.328-152.832 64-341.333 64s-341.333-28.672-341.333-64c0-32.64 130.304-59.563 298.667-63.488v-88.491zM512 512c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.991-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-range-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1881,
+ "id": 468,
+ "name": "map-pin-range-fill",
+ "prevSize": 32,
+ "code": 61478
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1830
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 469.333v384h-85.333v-128h-682.667v128h-85.333v-682.667h85.333v426.667h341.333v-298.667h256c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68zM341.333 554.667c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49c33.948 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.561 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hotel-bed-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1882,
+ "id": 467,
+ "name": "hotel-bed-fill",
+ "prevSize": 32,
+ "code": 61479
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1831
+ },
+ {
+ "icon": {
+ "paths": [
+ "M383.995 426.667c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v170.667h85.333v-128h128.001v106.667l149.333-149.333-149.333-149.333v106.666h-170.668zM542.161 59.435l422.4 422.4c8 8 12.493 18.85 12.493 30.165s-4.493 22.165-12.493 30.165l-422.4 422.4c-8 8-18.854 12.493-30.165 12.493-11.315 0-22.165-4.493-30.165-12.493l-422.401-422.4c-7.999-8-12.492-18.85-12.492-30.165s4.493-22.165 12.492-30.165l422.401-422.4c8-7.999 18.85-12.492 30.165-12.492 11.311 0 22.165 4.494 30.165 12.492z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["direction-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1883,
+ "id": 466,
+ "name": "direction-fill",
+ "prevSize": 32,
+ "code": 61480
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1832
+ },
+ {
+ "icon": {
+ "paths": [
+ "M781.995 181.675l-330.325 330.325 60.331 60.331 330.325-330.325c62.426 76.118 96.478 171.552 96.341 269.995 0 235.52-191.147 426.667-426.667 426.667s-426.667-191.147-426.667-426.667c0-235.52 191.147-426.667 426.667-426.667 102.4 0 196.437 36.139 269.995 96.341z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1884,
+ "id": 465,
+ "name": "compass-2-fill",
+ "prevSize": 32,
+ "code": 61481
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1833
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM704 320l-277.333 106.667-106.667 277.333 277.333-106.667 106.667-277.333zM512 554.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1885,
+ "id": 464,
+ "name": "compass-3-fill",
+ "prevSize": 32,
+ "code": 61482
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1834
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 896h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384l103.125-171.904c7.581-12.636 18.306-23.093 31.13-30.353s27.308-11.076 42.044-11.076h500.736c14.737-0 29.222 3.816 42.044 11.076s23.548 17.717 31.13 30.353l103.125 171.904v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM184.832 554.667h654.336l-76.8-128h-500.736l-76.8 128zM277.333 768c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM746.667 768c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743zM232.107 146.774l45.227-45.312 45.227 45.227c8.952 8.95 15.050 20.353 17.521 32.768s1.205 25.285-3.639 36.98c-4.844 11.695-13.046 21.692-23.572 28.725s-22.9 10.787-35.558 10.787c-12.659 0-25.033-3.754-35.558-10.787s-18.728-17.030-23.572-28.725c-4.844-11.696-6.11-24.565-3.639-36.98s8.568-23.819 17.521-32.768l0.043 0.085zM466.773 146.774l45.227-45.312 45.227 45.227c8.951 8.95 15.049 20.353 17.519 32.768 2.475 12.416 1.207 25.285-3.635 36.98-4.847 11.695-13.047 21.692-23.573 28.725s-22.899 10.787-35.558 10.787c-12.659 0-25.033-3.754-35.558-10.787s-18.726-17.030-23.573-28.725c-4.843-11.696-6.11-24.565-3.635-36.98 2.47-12.415 8.567-23.819 17.519-32.768l0.043 0.085zM701.44 146.774l45.227-45.269 45.227 45.227c8.951 8.95 15.049 20.353 17.519 32.768 2.475 12.416 1.207 25.285-3.635 36.98-4.847 11.695-13.047 21.692-23.573 28.725s-22.899 10.787-35.558 10.787c-12.659 0-25.033-3.754-35.558-10.787s-18.726-17.030-23.573-28.725c-4.843-11.696-6.11-24.565-3.635-36.98 2.47-12.415 8.567-23.819 17.519-32.768l0.043 0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["car-washing-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1886,
+ "id": 463,
+ "name": "car-washing-fill",
+ "prevSize": 32,
+ "code": 61483
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1835
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 576v320c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-320l-53.035-13.227c-9.227-2.313-17.416-7.637-23.268-15.138-5.852-7.497-9.030-16.738-9.031-26.249v-30.72c0-5.658 2.248-11.085 6.248-15.087 4.001-3.998 9.427-6.246 15.085-6.246h82.304l87.509-204.288c6.582-15.353 17.525-28.437 31.473-37.63s30.287-14.089 46.991-14.082h71.723v-85.333h128v85.333h85.333v-85.333h128v85.333h71.723c16.695 0.002 33.028 4.902 46.967 14.094s24.875 22.271 31.454 37.618l87.552 204.288h82.304c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087v30.72c0 9.51-3.179 18.752-9.033 26.249-5.85 7.501-14.042 12.826-23.266 15.138l-53.035 13.227zM170.667 640v85.333c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h138.453c3.684-0.004 7.304-0.964 10.507-2.786s5.879-4.437 7.77-7.599c1.89-3.162 2.929-6.763 3.017-10.445s-0.781-7.326-2.52-10.573c-34.347-64.427-100.992-96.597-199.893-96.597zM853.333 640c-98.859 0-165.504 32.213-199.936 96.597-1.741 3.251-2.607 6.899-2.522 10.586 0.090 3.686 1.135 7.287 3.029 10.449s4.578 5.781 7.787 7.599c3.209 1.818 6.835 2.769 10.522 2.769h138.453c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-85.333zM256 298.667l-61.909 154.837c-2.586 6.473-3.546 13.478-2.799 20.407s3.181 13.568 7.087 19.337c3.906 5.773 9.167 10.5 15.321 13.769s13.016 4.979 19.985 4.983h556.629c6.967-0.004 13.828-1.715 19.985-4.983s11.413-7.996 15.322-13.769c3.904-5.769 6.34-12.407 7.087-19.337s-0.213-13.935-2.799-20.407l-61.909-154.837h-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["police-car-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1887,
+ "id": 462,
+ "name": "police-car-fill",
+ "prevSize": 32,
+ "code": 61484
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1836
+ },
+ {
+ "icon": {
+ "paths": [
+ "M437.504 446.72l-15.788-357.632 82.476 22.101 119.893 385.493 224.469 60.16c8.119 2.172 15.731 5.926 22.4 11.042s12.262 11.494 16.465 18.773c4.207 7.275 6.933 15.313 8.034 23.646 1.097 8.333 0.542 16.798-1.63 24.917-2.176 8.119-5.926 15.731-11.042 22.4s-11.494 12.262-18.773 16.469c-7.279 4.203-15.313 6.929-23.646 8.030-8.333 1.097-16.798 0.546-24.917-1.63l-638.806-171.179 33.109-123.648 10.325 2.773 38.997 142.933-112.085-29.995c-9.184-2.47-17.28-7.94-23-15.539s-8.738-16.892-8.573-26.402l3.84-230.528 61.824 16.555 38.997 142.976 217.43 58.283zM170.666 810.667h682.668v85.333h-682.668v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flight-land-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1888,
+ "id": 461,
+ "name": "flight-land-fill",
+ "prevSize": 32,
+ "code": 61485
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1837
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 853.333h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384l107.221-285.952c6.098-16.269 17.018-30.289 31.299-40.186s31.241-15.198 48.616-15.196h479.061c17.374-0.002 34.334 5.299 48.614 15.196s25.203 23.916 31.3 40.186l107.221 285.952v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM176.469 512h671.061l-96-256h-479.061l-96 256zM277.333 725.333c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM746.667 725.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["car-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1889, "id": 460, "name": "car-fill", "prevSize": 32, "code": 61486 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1838
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 341.333h128l128 173.056v253.611h-86.827c-5.073 35.597-22.818 68.169-49.975 91.729-27.162 23.565-61.909 36.54-97.865 36.54s-70.703-12.975-97.865-36.54c-27.157-23.561-44.902-56.132-49.975-91.729h-216.32c-5.072 35.597-22.818 68.169-49.976 91.729-27.159 23.565-61.908 36.54-97.864 36.54s-70.705-12.975-97.864-36.54c-27.159-23.561-44.904-56.132-49.976-91.729h-44.16v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333zM725.333 426.667v128h170.667v-12.16l-85.675-115.84h-84.992z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["truck-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1890,
+ "id": 459,
+ "name": "truck-fill",
+ "prevSize": 32,
+ "code": 61487
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1839
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM307.072 626.432l-92.8 92.757c21.524 30.844 47.689 58.176 77.568 81.024l13.013 9.515 92.715-92.8c-34.44-19.29-63.488-46.912-84.48-80.341l-5.973-10.155h-0.043zM716.928 626.432c-19.29 34.441-46.912 63.488-80.341 84.48l-10.155 5.973 92.757 92.843c30.844-21.525 58.176-47.689 81.024-77.568l9.515-12.971-92.8-92.757zM512 341.333c-45.265 0-88.673 17.981-120.68 49.987s-49.987 75.415-49.987 120.68c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.415 49.988 120.68 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678s-17.98-88.673-49.988-120.68c-32.004-32.006-75.413-49.987-120.678-49.987zM304.853 214.272c-30.861 21.52-58.207 47.686-81.067 77.568l-9.515 13.013 92.8 92.715c19.288-34.44 46.912-63.488 80.341-84.48l10.155-5.973-92.715-92.843zM719.147 214.272l-92.715 92.8c34.441 19.288 63.488 46.912 84.48 80.341l5.973 10.155 92.843-92.715c-21.521-30.861-47.684-58.207-77.568-81.067l-12.971-9.515h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lifebuoy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1891,
+ "id": 458,
+ "name": "lifebuoy-fill",
+ "prevSize": 32,
+ "code": 61488
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1840
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 128v384h341.333v256c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h256zM320 640c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743zM704 640c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743zM469.333 213.333h-170.667c-21.529-0.007-42.264 8.124-58.050 22.763s-25.455 34.703-27.070 56.171l-0.213 6.4v213.333h256v-298.667zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subway-wifi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1892,
+ "id": 457,
+ "name": "subway-wifi-fill",
+ "prevSize": 32,
+ "code": 61489
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1841
+ },
+ {
+ "icon": {
+ "paths": [
+ "M123.738 98.133l802.347 267.435c4.151 1.376 7.782 3.997 10.398 7.505 2.611 3.508 4.083 7.736 4.215 12.109 0.128 4.373-1.088 8.681-3.49 12.339-2.398 3.658-5.867 6.49-9.929 8.111l-372.608 149.035-188.8 377.6c-1.921 3.844-4.959 7.019-8.716 9.109s-8.057 2.995-12.337 2.598c-4.28-0.397-8.34-2.078-11.649-4.821s-5.711-6.421-6.893-10.556l-229.845-804.395c-1.065-3.737-1.088-7.694-0.069-11.443s3.044-7.15 5.854-9.833c2.81-2.683 6.301-4.548 10.093-5.393s7.744-0.638 11.428 0.599z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["navigation-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1893,
+ "id": 456,
+ "name": "navigation-fill",
+ "prevSize": 32,
+ "code": 61490
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1842
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 213.333l298.667-128 256 128 268.928-115.243c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v692.949l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-692.949zM640 843.264v-537.088l-2.773 1.195-253.227-126.635v537.088l2.773-1.195 253.227 126.635z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1894,
+ "id": 455,
+ "name": "map-2-fill",
+ "prevSize": 32,
+ "code": 61491
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1843
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128v170.667h-242.389l-91.477 213.333h760.533v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384l105.813-246.955c6.584-15.36 17.534-28.448 31.49-37.641s30.305-14.086 47.017-14.071h114.347v-85.333h128zM277.333 597.333c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743zM746.667 597.333c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["taxi-wifi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1895,
+ "id": 454,
+ "name": "taxi-wifi-fill",
+ "prevSize": 32,
+ "code": 61492
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1844
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 170.667h232.363c7.236 0 14.353 1.841 20.685 5.349 6.327 3.508 11.661 8.568 15.497 14.705l147.456 235.947h188.075c3.703-0.003 7.347 0.96 10.564 2.79 3.221 1.835 5.909 4.471 7.799 7.659s2.918 6.81 2.982 10.513c0.064 3.703-0.836 7.36-2.615 10.611l-167.979 307.925c-37.572 5.035-75.81-0.047-110.763-14.729-34.953-14.677-65.353-38.417-88.064-68.77-19.853 26.513-45.615 48.034-75.243 62.848s-62.302 22.511-95.424 22.485c-33.122 0.026-65.797-7.671-95.424-22.485s-55.39-36.335-75.243-62.848c-22.234 29.705-51.843 53.090-85.894 67.831-34.051 14.746-71.363 20.335-108.24 16.222l-52.736-289.749c-1.119-6.148-0.873-12.471 0.721-18.513 1.593-6.046 4.495-11.665 8.5-16.465 4.005-4.796 9.015-8.657 14.677-11.307s11.836-4.020 18.086-4.019h34.219v-213.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h42.667v-128h170.667v128zM213.333 426.667h486.059l-106.667-170.667h-379.392v170.667zM128 853.333c62.987 0.085 123.779-23.134 170.667-65.195 46.888 42.061 107.68 65.28 170.667 65.195 62.989 0.085 123.78-23.134 170.667-65.195 46.886 42.061 107.678 65.28 170.667 65.195h85.333v85.333h-85.333c-59.921 0.098-118.797-15.654-170.667-45.653-51.87 29.999-110.746 45.751-170.667 45.653-59.919 0.098-118.799-15.654-170.667-45.653-51.868 29.999-110.747 45.751-170.667 45.653h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ship-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1896,
+ "id": 453,
+ "name": "ship-2-fill",
+ "prevSize": 32,
+ "code": 61493
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1845
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 85.333v853.333h-85.333v-341.333h-128v-298.667c0-56.579 22.477-110.842 62.485-150.849 40.004-40.008 94.268-62.484 150.848-62.484zM384 593.067v345.6h-85.333v-345.6c-48.179-9.852-91.478-36.036-122.575-74.133-31.097-38.093-48.085-85.756-48.091-134.933v-256h85.333v298.667h85.333v-298.667h85.333v298.667h85.333v-298.667h85.333v256c-0.004 49.178-16.994 96.841-48.090 134.933-31.1 38.097-74.398 64.282-122.577 74.133z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["restaurant-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1897,
+ "id": 452,
+ "name": "restaurant-fill",
+ "prevSize": 32,
+ "code": 61494
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1846
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 469.333h-42.667v-170.667h42.667v-128h85.333v128h42.667v170.667h-42.667v298.667c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509v-170.667h-85.333v213.333h42.667v85.333h-554.667v-85.333h42.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h85.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667zM384 469.333v-170.667l-170.667 256h128v170.667l170.667-256h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["charging-pile-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1898,
+ "id": 451,
+ "name": "charging-pile-2-fill",
+ "prevSize": 32,
+ "code": 61495
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1847
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.329 765.355c-86.072-10.953-164.743-54.268-220.025-121.139-55.282-66.876-83.025-152.29-77.592-238.883 5.433-86.595 43.636-167.871 106.843-227.311s146.675-92.581 233.441-92.688c86.869-0.064 170.496 32.996 233.839 92.445 63.347 59.449 101.636 140.814 107.076 227.514s-22.383 172.214-77.798 239.115c-55.415 66.897-134.255 110.153-220.45 120.947v130.645h-85.333v-130.645zM213.328 938.667h597.334v85.333h-597.334v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1899,
+ "id": 450,
+ "name": "map-pin-4-fill",
+ "prevSize": 32,
+ "code": 61496
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1848
+ },
+ {
+ "icon": {
+ "paths": [
+ "M753.365 668.032l-241.365 241.365-241.365-241.365c-47.735-47.735-80.241-108.557-93.411-174.767-13.169-66.214-6.409-134.843 19.427-197.213s69.585-115.677 125.716-153.183c56.132-37.505 122.126-57.524 189.633-57.524s133.5 20.018 189.632 57.524c56.132 37.506 99.883 90.813 125.717 153.183s32.597 130.998 19.426 197.213c-13.167 66.21-45.675 127.031-93.41 174.767zM213.333 938.667h597.333v85.333h-597.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1900,
+ "id": 449,
+ "name": "map-pin-5-fill",
+ "prevSize": 32,
+ "code": 61497
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1849
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM661.333 362.667l-213.333 85.333-85.333 213.333 213.333-85.333 85.333-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1901,
+ "id": 448,
+ "name": "compass-fill",
+ "prevSize": 32,
+ "code": 61498
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1850
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h85.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667h-85.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-153.003l-70.699-70.699 60.331-60.331 211.2 211.2c3.968 3.957 7.117 8.659 9.259 13.836 2.146 5.177 3.247 10.726 3.243 16.33v384c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509v-170.667h-85.333v213.333h42.667v85.333h-554.667v-85.333h42.667zM213.333 213.333v256h298.667v-256h-298.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gas-station-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1902,
+ "id": 447,
+ "name": "gas-station-fill",
+ "prevSize": 32,
+ "code": 61499
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1851
+ },
+ {
+ "icon": {
+ "paths": [
+ "M180.137 162.475l286.594 286.592-120.663 120.704-165.973-165.973c-31.995-32.005-49.969-75.407-49.969-120.661s17.974-88.657 49.969-120.661h0.043zM608.768 518.229l-36.442 36.437 301.7 301.696-60.335 60.331-301.692-301.653-301.698 301.653-60.331-60.331 398.466-398.464c-25.088-62.165 0.853-151.68 69.12-220.032 83.328-83.285 198.144-103.552 256.469-45.227s38.054 173.141-45.231 256.427c-68.352 68.352-157.867 94.293-220.028 69.163z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["restaurant-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1903,
+ "id": 446,
+ "name": "restaurant-2-fill",
+ "prevSize": 32,
+ "code": 61500
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1852
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 443.733v-273.067c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333v-85.333h170.667v85.333h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v273.067l46.336 13.909c10.5 3.162 19.379 10.24 24.798 19.776 5.419 9.532 6.959 20.787 4.301 31.424l-64.683 258.901c-34.897 1.788-69.7-5.035-101.338-19.874-31.637-14.835-59.14-37.227-80.081-65.203-19.853 26.513-45.615 48.034-75.243 62.848s-62.302 22.511-95.424 22.485c-33.122 0.026-65.796-7.671-95.424-22.485s-55.39-36.335-75.243-62.848c-20.94 27.977-48.442 50.368-80.080 65.203-31.638 14.839-66.441 21.662-101.339 19.874l-64.683-258.901c-2.658-10.637-1.119-21.892 4.3-31.424 5.418-9.536 14.299-16.614 24.799-19.776l46.336-13.909zM256 418.133l256-76.8 256 76.8v-204.8h-512v204.8zM170.667 853.333c62.987 0.085 123.779-23.134 170.667-65.195 46.888 42.061 107.678 65.28 170.667 65.195 62.989 0.085 123.78-23.134 170.667-65.195 46.886 42.061 107.678 65.28 170.667 65.195h85.333v85.333h-85.333c-59.921 0.098-118.797-15.654-170.667-45.653-51.87 29.999-110.746 45.751-170.667 45.653-59.921 0.098-118.799-15.654-170.667-45.653-51.868 29.999-110.747 45.751-170.667 45.653h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ship-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1904,
+ "id": 445,
+ "name": "ship-fill",
+ "prevSize": 32,
+ "code": 61501
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1853
+ },
+ {
+ "icon": {
+ "paths": [
+ "M324.993 371.712l136.746-99.328c15.351-11.234 34.022-17.002 53.035-16.384 23.189 0.578 45.623 8.367 64.183 22.284 18.556 13.917 32.32 33.27 39.369 55.369 7.936 24.875 15.189 41.685 21.76 50.432 19.853 26.487 45.606 47.983 75.217 62.78 29.611 14.801 62.263 22.49 95.364 22.468v85.333c-44.062 0.047-87.586-9.673-127.441-28.463s-75.046-46.187-103.044-80.209l-29.739 168.747 87.936 73.813 94.848 260.608-80.213 29.184-87.040-239.104-144.639-121.387c-11.87-9.583-20.953-22.178-26.303-36.463-5.35-14.289-6.772-29.751-4.118-44.774l21.717-123.093-28.885 20.992-90.752 124.928-69.035-50.176 100.309-138.069 0.725 0.512zM576 234.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.635 0 44.339 8.99 60.339 24.994 16.004 16.003 24.994 37.708 24.994 60.34s-8.99 44.337-24.994 60.34c-16 16.003-37.705 24.994-60.339 24.994zM449.195 797.056l-137.13 163.413-65.365-54.827 126.976-151.296 31.829-93.013 76.415 64-32.725 71.723z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["walk-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1905,
+ "id": 444,
+ "name": "walk-fill",
+ "prevSize": 32,
+ "code": 61502
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1854
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 810.667v-218.069l-341.333-379.264v-85.333h768v85.333l-341.333 379.264v218.069h213.333v85.333h-512v-85.333h213.333zM319.573 298.667h384.853l76.8-85.333h-538.453l76.8 85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["goblet-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1906,
+ "id": 443,
+ "name": "goblet-fill",
+ "prevSize": 32,
+ "code": 61503
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1855
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 341.333v341.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491h-92.587c-10.065 28.48-29.875 52.484-55.928 67.772-26.053 15.283-56.67 20.868-86.442 15.761s-56.779-20.574-76.249-43.665c-19.47-23.095-30.149-52.326-30.149-82.534s10.679-59.439 30.149-82.534c19.47-23.091 46.478-38.558 76.249-43.665s60.389 0.478 86.442 15.761c26.053 15.287 45.862 39.292 55.928 67.772h92.587c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-341.333c0-33.948 13.487-66.505 37.491-90.51s56.563-37.49 90.509-37.49h128v-128l213.333 170.667-213.333 170.667v-128h-128c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["guide-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1907,
+ "id": 442,
+ "name": "guide-fill",
+ "prevSize": 32,
+ "code": 61504
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1856
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 850.987c-97.453-11.021-186.996-58.901-250.271-133.833-63.275-74.927-95.486-171.226-90.030-269.146s48.168-190.043 119.376-257.478c71.208-67.436 165.517-105.073 263.591-105.197 98.193-0.071 192.683 37.476 264.043 104.923 71.364 67.447 114.176 159.671 119.642 257.709 5.461 98.044-26.842 194.453-90.266 269.41-63.428 74.961-153.161 122.773-250.752 133.611v173.013h-85.333v-173.013z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1908,
+ "id": 441,
+ "name": "map-pin-3-fill",
+ "prevSize": 32,
+ "code": 61505
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1857
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 740.864l-271.531 271.531-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617zM512 554.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.337-24.994-60.34s-37.709-24.993-60.339-24.993c-22.63 0-44.335 8.99-60.339 24.993s-24.994 37.71-24.994 60.34c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1909,
+ "id": 440,
+ "name": "map-pin-2-fill",
+ "prevSize": 32,
+ "code": 61506
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1858
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 128v85.333h-42.667v256l85.333 128v85.333h-256v298.667h-85.333v-298.667h-256v-85.333l85.333-128v-256h-42.667v-85.333h512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pushpin-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1910,
+ "id": 439,
+ "name": "pushpin-2-fill",
+ "prevSize": 32,
+ "code": 61507
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1859
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 213.333l298.667-128 256 128 268.928-115.243c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v692.949l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-692.949z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1911, "id": 438, "name": "map-fill", "prevSize": 32, "code": 61508 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1860
+ },
+ {
+ "icon": {
+ "paths": [
+ "M930.129 597.376c-17.668 86.302-61.598 165.026-125.76 225.382-64.162 60.361-145.421 99.401-232.636 111.77v-86.4c64.414-11.49 124.181-41.229 172.194-85.687 48.013-44.454 82.253-101.76 98.65-165.107l87.552 0.043zM181.417 597.376c16.222 62.613 49.88 119.339 97.062 163.584 47.182 44.241 105.951 74.189 169.479 86.357v86.613c-86.363-13.158-166.612-52.484-229.928-112.67-63.315-60.19-106.652-138.342-124.165-223.927l87.552 0.043zM768 469.333v85.333h-42.667c-43.789 0-85.901 16.828-117.628 47.006-31.723 30.178-50.637 71.394-52.826 115.127l-0.213 8.533v42.667h-85.333v-42.667c0-43.785-16.832-85.897-47.009-117.623s-71.395-50.641-115.127-52.83l-8.533-0.213h-42.667v-85.333h512.002zM512 85.333c221.222 0 403.157 168.405 424.533 384h-85.845c-10.415-82.479-50.564-158.324-112.922-213.304s-142.635-85.316-225.766-85.316c-83.136 0-163.412 30.336-225.77 85.316s-102.508 130.825-112.92 213.304h-85.888c21.419-215.595 203.349-384 424.578-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["steering-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1912,
+ "id": 437,
+ "name": "steering-fill",
+ "prevSize": 32,
+ "code": 61509
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1861
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667zM682.667 682.667h-341.333v85.333h341.333v-85.333zM512 256c-45.265 0-88.673 17.981-120.68 49.987s-49.987 75.416-49.987 120.68c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.415 49.988 120.68 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678 0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987zM512 341.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["passport-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1913,
+ "id": 436,
+ "name": "passport-fill",
+ "prevSize": 32,
+ "code": 61510
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1862
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 42.667c23.565 0 42.667 19.103 42.667 42.667v42.624l213.333 0.043v256l-86.187-0.043 118.046 324.109c6.989 18.633 10.807 38.818 10.807 59.891 0 94.259-76.412 170.667-170.667 170.667-79.497 0-146.3-54.353-165.269-127.923h-181.449c-18.957 73.591-85.77 127.966-165.282 127.966-82.981 0-152.13-59.221-167.487-137.707-27.262-14.229-45.847-42.756-45.847-75.627v-213.333h384c0 21.879 16.469 39.915 37.692 42.381l4.975 0.286h85.333c21.879 0 39.915-16.469 42.381-37.692l0.286-4.975v-384h-128v-85.333h170.667zM298.667 682.667c-47.128 0-85.333 38.204-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.204 85.333-85.333s-38.205-85.333-85.333-85.333zM810.667 682.667c-47.13 0-85.333 38.204-85.333 85.333s38.204 85.333 85.333 85.333c47.13 0 85.333-38.204 85.333-85.333s-38.204-85.333-85.333-85.333zM426.667 128c23.565 0 42.667 19.103 42.667 42.667v298.667h-384v-298.667c0-23.564 19.103-42.667 42.667-42.667h298.667zM853.333 213.333h-128v85.333h128v-85.333zM384 213.333h-213.333v42.667h213.333v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["takeaway-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1914,
+ "id": 435,
+ "name": "takeaway-fill",
+ "prevSize": 32,
+ "code": 61511
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1863
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 213.333h469.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667l170.667-256zM554.667 42.667h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h-298.667v-85.333c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM256 512v298.667h85.333v-298.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["oil-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1915, "id": 434, "name": "oil-fill", "prevSize": 32, "code": 61512 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1864
+ },
+ {
+ "icon": {
+ "paths": [
+ "M485.973 443.307l-165.973 165.845-165.973-165.845c-32.808-32.823-55.147-74.637-64.192-120.155s-4.392-92.695 13.373-135.569c17.765-42.873 47.843-79.517 86.431-105.297s83.955-39.541 130.362-39.541c46.408 0 91.774 13.76 130.364 39.541 38.588 25.78 68.663 62.424 86.43 105.297s22.417 90.051 13.372 135.569c-9.045 45.518-31.386 87.332-64.192 120.155zM320 362.667c22.632 0 44.337-8.99 60.34-24.993s24.993-37.708 24.993-60.34c0-22.632-8.99-44.337-24.993-60.34s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.991-60.34 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.991 44.337 24.994 60.34s37.708 24.993 60.34 24.993zM869.973 827.307l-165.973 165.888-165.973-165.931c-32.806-32.823-55.147-74.637-64.192-120.154-9.045-45.521-4.39-92.698 13.372-135.569 17.766-42.876 47.842-79.518 86.43-105.297 38.588-25.783 83.955-39.543 130.364-39.543s91.776 13.76 130.364 39.543c38.588 25.779 68.663 62.421 86.43 105.297 17.762 42.871 22.417 90.048 13.372 135.569-9.045 45.517-31.386 87.33-64.192 120.154v0.043zM704 746.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pin-distance-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1916,
+ "id": 433,
+ "name": "pin-distance-fill",
+ "prevSize": 32,
+ "code": 61513
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1865
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 810.667v-256l-85.332-42.667v-128h255.998v128l-85.333 42.667v256l213.333 42.667v85.333h-511.998v-85.333l213.332-42.667zM426.667 94.848v-52.181h170.667v52.181c73.19 16.711 139.883 54.504 191.825 108.705 51.947 54.202 86.869 122.437 100.454 196.271 13.589 73.836 5.239 150.034-24.009 219.175-29.252 69.141-78.118 128.196-140.57 169.865l-47.36-70.997c53.333-35.563 93.807-87.334 115.443-147.674 21.636-60.335 23.287-126.033 4.71-187.379-18.577-61.347-56.401-115.090-107.874-153.286-51.477-38.196-113.873-58.817-177.975-58.817-64.098 0-126.495 20.622-177.97 58.817s-89.297 91.939-107.875 153.286c-18.578 61.346-16.926 127.044 4.71 187.379 21.637 60.339 62.111 112.111 115.441 147.674l-47.317 70.997c-62.448-41.668-111.317-100.723-140.567-169.865s-37.597-145.34-24.011-219.175c13.585-73.834 48.509-142.069 100.454-196.271s118.634-91.994 191.823-108.705z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["china-railway-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1917,
+ "id": 432,
+ "name": "china-railway-fill",
+ "prevSize": 32,
+ "code": 61514
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1866
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM659.029 425.301c-14.707-24.871-35.46-45.623-60.331-60.331l-233.728 233.728c14.708 24.87 35.46 45.623 60.331 60.331l233.728-233.728z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1918,
+ "id": 431,
+ "name": "compass-4-fill",
+ "prevSize": 32,
+ "code": 61515
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1867
+ },
+ {
+ "icon": {
+ "paths": [
+ "M533.248 128c-22.443 54.019-27.281 113.74-13.824 170.667h-306.091v170.667h428.16c44.241 27.947 95.514 42.743 147.84 42.667 36.612 0.051 72.87-7.172 106.667-21.248v277.248c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h234.581zM512 597.333c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["train-wifi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1919,
+ "id": 430,
+ "name": "train-wifi-fill",
+ "prevSize": 32,
+ "code": 61516
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1868
+ },
+ {
+ "icon": {
+ "paths": [
+ "M234.667 896c-25.214 0-50.181-4.966-73.475-14.613-23.294-9.651-44.46-23.795-62.289-41.621-17.829-17.83-31.971-38.997-41.62-62.289-9.649-23.296-14.615-48.265-14.615-73.476s4.966-50.18 14.615-73.476c9.649-23.292 23.792-44.459 41.62-62.289 17.829-17.826 38.995-31.97 62.289-41.621 23.295-9.647 48.262-14.613 73.475-14.613 50.921 0 99.758 20.228 135.764 56.235s56.236 84.843 56.236 135.765c0 50.923-20.229 99.759-56.236 135.765s-84.843 56.235-135.764 56.235zM234.667 768c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM789.333 896c-25.212 0-50.18-4.966-73.476-14.613-23.292-9.651-44.459-23.795-62.289-41.621-17.826-17.83-31.97-38.997-41.621-62.289-9.647-23.296-14.613-48.265-14.613-73.476s4.966-50.18 14.613-73.476c9.651-23.292 23.795-44.459 41.621-62.289 17.83-17.826 38.997-31.97 62.289-41.621 23.296-9.647 48.265-14.613 73.476-14.613 50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235zM789.333 768c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743zM491.989 418.005l62.677 93.995v256h-85.333v-213.333l-116.011-96.683c-10.324-7.095-18.959-16.375-25.292-27.183-6.334-10.806-10.21-22.875-11.354-35.349s0.471-25.047 4.733-36.826c4.261-11.779 11.063-22.476 19.924-31.33l120.661-120.661c7.923-7.927 17.331-14.216 27.686-18.507 10.359-4.291 21.457-6.499 32.666-6.499s22.306 2.208 32.666 6.499c10.355 4.291 19.763 10.579 27.686 18.507l60.331 60.331c45.184 45.347 103.799 74.9 167.125 84.267l-0.427 85.973c-85.922-9.89-165.956-48.622-227.029-109.867l-90.709 90.667zM682.667 213.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["riding-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1920,
+ "id": 429,
+ "name": "riding-fill",
+ "prevSize": 32,
+ "code": 61517
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1869
+ },
+ {
+ "icon": {
+ "paths": [
+ "M419.414 375.040l-78.080 28.416v151.211h-85.333v-211.2h0.64l224.768-81.835c10.411-3.968 21.76-5.973 33.365-5.589 23.189 0.578 45.623 8.367 64.183 22.284 18.556 13.917 32.316 33.27 39.369 55.369 7.936 24.875 15.189 41.685 21.76 50.432 19.857 26.48 45.615 47.966 75.226 62.758 29.606 14.788 62.259 22.477 95.356 22.447v85.333c-44.062 0.047-87.586-9.673-127.441-28.463s-75.046-46.187-103.044-80.209l-24.789 140.672 84.608 81.92v312.747h-85.333v-255.403l-87.467-84.779-40.405 183.381-294.144-51.84 14.848-84.053 210.091 37.035 61.824-350.635zM576 234.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.708-24.994-60.34c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["run-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1921, "id": 428, "name": "run-fill", "prevSize": 32, "code": 61518 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1870
+ },
+ {
+ "icon": {
+ "paths": [
+ "M356.907 426.667l120.96-85.333h247.467v85.333h-219.477l-121.856 85.333h-298.667v-85.333h271.573zM395.99 642.56l124.8-45.44 29.184 80.213-124.8 45.397c5.875 46.835-5.709 94.195-32.54 133.030s-67.028 66.428-112.913 77.504c-45.885 11.076-94.243 4.864-135.837-17.455s-73.507-59.179-89.647-103.539c-16.139-44.356-15.372-93.107 2.156-136.934s50.585-79.667 92.86-100.663c42.275-21.001 90.804-25.69 136.318-13.175s84.823 41.357 110.418 81.020v0.043zM234.667 853.333c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.002-47.135-31.241-75.425-31.241s-55.421 11.238-75.425 31.241c-20.004 20.006-31.242 47.138-31.242 75.426s11.238 55.42 31.242 75.426c20.004 20.002 47.135 31.241 75.425 31.241zM789.333 938.667c-25.212 0-50.18-4.966-73.476-14.613-23.292-9.651-44.459-23.795-62.289-41.621-17.826-17.83-31.97-38.997-41.617-62.289-9.651-23.296-14.618-48.265-14.618-73.476s4.966-50.18 14.618-73.476c9.647-23.292 23.791-44.459 41.617-62.289 17.83-17.826 38.997-31.97 62.289-41.621 23.296-9.647 48.265-14.613 73.476-14.613 50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235zM789.333 853.333c28.292 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.134-31.241-75.426-31.241-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241zM170.667 469.333h256l110.933-73.941 11.947-44.629 82.432 22.101-82.005 304.256-77.739-37.888 5.035-18.773-93.269 62.208-42.667-85.333h-170.667v-128zM686.592 256h166.741v128h-120.149l81.92 225.109-80.213 29.184-92.501-254.293h-2.389v-6.485l-59.733-164.181h-110.933v-85.333h170.667l46.592 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["motorbike-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1922,
+ "id": 427,
+ "name": "motorbike-fill",
+ "prevSize": 32,
+ "code": 61519
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1871
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 576v320c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-320l-53.035-13.227c-9.227-2.313-17.416-7.637-23.268-15.138-5.852-7.497-9.030-16.738-9.031-26.249v-30.72c0-5.658 2.248-11.085 6.248-15.087 4.001-3.998 9.427-6.246 15.085-6.246h80l91.221-243.285c6.098-16.269 17.018-30.289 31.299-40.186s31.241-15.198 48.616-15.196h479.061c17.374-0.002 34.334 5.299 48.614 15.196s25.203 23.916 31.3 40.186l91.221 243.285h80c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087v30.72c0 9.51-3.179 18.752-9.033 26.249-5.85 7.501-14.042 12.826-23.266 15.138l-53.035 13.227zM170.667 640v85.333c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h138.453c3.684-0.004 7.304-0.964 10.507-2.786s5.879-4.437 7.77-7.599c1.89-3.162 2.929-6.763 3.017-10.445s-0.781-7.326-2.52-10.573c-34.347-64.427-100.992-96.597-199.893-96.597zM853.333 640c-98.859 0-165.504 32.213-199.936 96.597-1.741 3.251-2.607 6.899-2.522 10.586 0.090 3.686 1.135 7.287 3.029 10.449s4.578 5.781 7.787 7.599c3.209 1.818 6.835 2.769 10.522 2.769h138.453c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-85.333zM256 256l-66.603 199.851c-2.135 6.413-2.717 13.235-1.699 19.917s3.61 13.022 7.559 18.505c3.95 5.483 9.145 9.95 15.158 13.030s12.672 4.693 19.43 4.698h564.309c6.758-0.004 13.414-1.617 19.43-4.698 6.012-3.081 11.209-7.548 15.155-13.030 3.951-5.483 6.541-11.823 7.561-18.505s0.435-13.504-1.698-19.917l-66.603-199.851h-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["roadster-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1923,
+ "id": 426,
+ "name": "roadster-fill",
+ "prevSize": 32,
+ "code": 61520
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1872
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128v85.333h-298.667v384h597.333v-85.333h85.333v341.333h-42.667v42.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-426.667v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-42.667v-341.333h-42.667v-170.667h42.667v-128c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h298.667zM384 682.667h-170.667v85.333h170.667v-85.333zM810.667 682.667h-170.667v85.333h170.667v-85.333zM789.333 42.667c50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.764s-84.843 56.236-135.765 56.236c-50.923 0-99.759-20.229-135.765-56.236s-56.235-84.843-56.235-135.764c0-50.921 20.228-99.758 56.235-135.764s84.843-56.236 135.765-56.236zM789.333 263.125c-20.949 0-40.107 7.552-54.997 20.053l-5.333 4.907 60.331 60.373 60.288-60.416c-7.915-7.916-17.314-14.191-27.661-18.467s-21.431-6.468-32.627-6.451zM789.333 149.333c-49.323-0.074-96.9 18.225-133.461 51.328l-7.381 7.040 40.277 40.192c13.188-13.231 28.864-23.725 46.123-30.879s35.759-10.826 54.443-10.806c34.577-0.052 67.977 12.544 93.909 35.413l6.656 6.272 40.235-40.235c-18.47-18.519-40.414-33.205-64.58-43.215-24.162-10.009-50.065-15.145-76.22-15.11z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bus-wifi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1924,
+ "id": 425,
+ "name": "bus-wifi-fill",
+ "prevSize": 32,
+ "code": 61521
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1873
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 421.291v428.971c154.411-19.328 276.779-142.336 296.021-297.472h-125.355l158.037-254.123c36.361 64.444 55.411 137.207 55.296 211.2 0 236.8-191.019 428.8-426.667 428.8s-426.667-192-426.667-428.8c0-76.8 20.096-148.864 55.296-211.2l158.037 254.123h-125.355c19.243 155.136 141.653 278.144 296.021 297.472v-428.971c-40.128-10.484-75.067-35.215-98.295-69.575s-33.156-75.999-27.931-117.143c5.225-41.144 25.247-78.98 56.327-106.443 31.078-27.463 71.090-42.675 112.567-42.796 41.57-0.041 81.724 15.091 112.926 42.555 31.206 27.464 51.311 65.372 56.55 106.61 5.235 41.237-4.757 82.968-28.105 117.361s-58.445 59.081-98.705 69.432zM512 341.333c22.63 0 44.335-8.99 60.339-24.993s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.991-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.993 60.339 24.993z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["anchor-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1925,
+ "id": 424,
+ "name": "anchor-fill",
+ "prevSize": 32,
+ "code": 61522
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1874
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 853.333h-426.667v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384h-42.667v-170.667h42.667v-128c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h597.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v128h42.667v170.667h-42.667v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM213.333 213.333v298.667h597.333v-298.667h-597.333zM320 768c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM704 768c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bus-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1926,
+ "id": 423,
+ "name": "bus-2-fill",
+ "prevSize": 32,
+ "code": 61523
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1875
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 469.333v-213.333h-85.333v298.667h256v-85.333h-170.667zM783.531 740.864l-271.531 271.531-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-time-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1927,
+ "id": 422,
+ "name": "map-pin-time-fill",
+ "prevSize": 32,
+ "code": 61524
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1876
+ },
+ {
+ "icon": {
+ "paths": [
+ "M661.333 295.979c45.419 26.207 83.132 63.913 109.346 109.325 26.214 45.414 40.004 96.925 39.987 149.363v341.333h-177.92c-8.815 24.981-25.161 46.618-46.788 61.918-21.628 15.305-47.467 23.522-73.958 23.522s-52.331-8.218-73.958-23.522c-21.626-15.3-37.973-36.937-46.788-61.918h-177.92v-341.333c-0.019-52.437 13.773-103.949 39.988-149.363 26.215-45.412 63.929-83.119 109.346-109.325-7.011-12.592-12.387-26.026-16-39.979h-133.333v-85.333h133.376c9.491-36.618 30.872-69.048 60.789-92.199s66.673-35.713 104.502-35.713c37.828 0 74.586 12.561 104.503 35.713 29.914 23.151 51.298 55.581 60.787 92.199h133.376v85.333h-133.376c-3.627 14.080-9.045 27.52-15.915 39.979h-0.043zM512 597.333c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17v213.333c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-213.333c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497zM512 298.667c22.63 0 44.335-8.99 60.339-24.993s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.991-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.993 60.339 24.993z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["e-bike-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1928,
+ "id": 421,
+ "name": "e-bike-fill",
+ "prevSize": 32,
+ "code": 61525
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1877
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 213.333l298.667-128 256 128 268.928-115.243c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v692.949l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-692.949zM256 469.333v85.333h85.333v-85.333h-85.333zM426.667 469.333v85.333h85.333v-85.333h-85.333zM682.667 466.773l-52.779-52.821-45.269 45.227 52.779 52.821-52.779 52.779 45.227 45.269 52.821-52.779 52.779 52.779 45.269-45.227-52.779-52.821 52.779-52.779-45.227-45.269-52.821 52.821z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["treasure-map-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1929,
+ "id": 420,
+ "name": "treasure-map-fill",
+ "prevSize": 32,
+ "code": 61526
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1878
+ },
+ {
+ "icon": {
+ "paths": [
+ "M227.412 679.637c-9.393-40.994-14.116-82.914-14.080-124.971 0-217.088 123.861-402.603 298.668-477.099 174.805 74.496 298.667 260.011 298.667 477.099 0 43.093-4.864 84.949-14.080 124.971l86.187 76.629c3.708 3.298 6.153 7.787 6.908 12.693s-0.226 9.924-2.769 14.187l-104.875 174.763c-1.673 2.778-3.951 5.137-6.669 6.899-2.718 1.766-5.803 2.889-9.015 3.281-3.217 0.397-6.481 0.055-9.545-1.003-3.063-1.054-5.845-2.79-8.137-5.082l-96.171-96.171c-8-8.004-18.85-12.497-30.165-12.501h-220.673c-11.315 0.004-22.166 4.497-30.165 12.501l-96.171 96.171c-2.292 2.291-5.075 4.028-8.138 5.082-3.064 1.058-6.327 1.399-9.543 1.003-3.216-0.393-6.299-1.515-9.017-3.281-2.717-1.762-4.998-4.122-6.667-6.899l-104.875-174.72c-2.557-4.267-3.543-9.293-2.787-14.208s3.206-9.412 6.926-12.715l86.187-76.629zM512 554.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.635 0-44.339 8.99-60.339 24.994-16.004 16.003-24.995 37.709-24.995 60.34s8.991 44.335 24.995 60.339c16 16.004 37.705 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rocket-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1930,
+ "id": 419,
+ "name": "rocket-fill",
+ "prevSize": 32,
+ "code": 61527
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1879
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810.667v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v341.333h85.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-298.667h-85.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-153.003l-70.699-70.699 60.331-60.331 211.2 211.2c3.968 3.957 7.117 8.659 9.259 13.836 2.146 5.177 3.247 10.726 3.243 16.33v384c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.563-37.491-90.509v-170.667h-85.333v213.333h42.667v85.333h-554.667v-85.333h42.667zM384 469.333v-170.667l-170.667 256h128v170.667l170.667-256h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["charging-pile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1931,
+ "id": 418,
+ "name": "charging-pile-fill",
+ "prevSize": 32,
+ "code": 61528
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1880
+ },
+ {
+ "icon": {
+ "paths": [
+ "M834.389 810.667h61.611v85.333h-768v-85.333h61.611l37.973-170.667h568.875l37.931 170.667zM739.541 384l37.973 170.667h-531.029l37.931-170.667h455.125zM720.597 298.667h-417.237l30.507-137.259c2.108-9.482 7.388-17.961 14.967-24.035s17.005-9.381 26.718-9.373h272.896c9.707 0.002 19.123 3.313 26.692 9.386s12.843 14.547 14.95 24.022l30.507 137.259z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["barricade-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1932,
+ "id": 417,
+ "name": "barricade-fill",
+ "prevSize": 32,
+ "code": 61529
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1881
+ },
+ {
+ "icon": {
+ "paths": [
+ "M234.667 512h-64v-213.333h-85.333v-85.333h256v85.333h-85.333v119.253l418.688-112.171-24.747-92.416h-137.941v-85.333h169.728c9.553-0.211 18.897 2.79 26.543 8.523 7.642 5.732 13.141 13.864 15.612 23.093l66.261 247.296-82.432 22.059-10.923-40.789-462.123 123.819zM213.333 896c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678s17.981-88.674 49.987-120.678c32.006-32.009 75.416-49.988 120.68-49.988s88.673 17.98 120.68 49.988c32.006 32.004 49.987 75.413 49.987 120.678s-17.981 88.674-49.987 120.678c-32.006 32.009-75.416 49.988-120.68 49.988zM213.333 768c11.316 0 22.168-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.495-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM768 896c-56.58 0-110.844-22.477-150.848-62.485-40.009-40.004-62.485-94.268-62.485-150.848s22.477-110.844 62.485-150.848c40.004-40.009 94.268-62.485 150.848-62.485s110.844 22.477 150.848 62.485c40.009 40.004 62.485 94.268 62.485 150.848s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM768 725.333c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bike-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1933,
+ "id": 416,
+ "name": "bike-fill",
+ "prevSize": 32,
+ "code": 61530
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1882
+ },
+ {
+ "icon": {
+ "paths": [
+ "M723.2 509.867c36.143-36.113 62.413-80.896 76.292-130.068 13.879-49.171 14.908-101.082 2.982-150.764l106.453-45.653c3.247-1.392 6.788-1.955 10.304-1.641 3.52 0.315 6.903 1.498 9.852 3.443s5.367 4.593 7.040 7.704c1.673 3.111 2.547 6.589 2.543 10.121v607.659l-298.667 128-256-128-268.928 115.243c-3.247 1.391-6.787 1.954-10.305 1.643-3.518-0.316-6.903-1.498-9.851-3.443s-5.367-4.595-7.039-7.706c-1.673-3.11-2.546-6.588-2.543-10.121v-607.616l133.504-57.216c-9.393 48.025-6.831 97.623 7.463 144.423s39.878 89.369 74.5 123.95l211.2 211.243 211.2-211.2zM662.869 449.536l-150.869 150.784-150.869-150.827c-29.83-29.838-50.142-67.85-58.369-109.231s-3.999-84.273 12.149-123.251c16.148-38.978 43.492-72.293 78.573-95.732s76.323-35.949 118.516-35.949c42.193 0 83.435 12.51 118.515 35.949s62.426 56.754 78.575 95.732c16.145 38.978 20.373 81.87 12.147 123.251s-28.54 79.393-58.368 109.231v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["road-map-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1934,
+ "id": 415,
+ "name": "road-map-fill",
+ "prevSize": 32,
+ "code": 61531
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1883
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.867 853.333l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h426.667c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v469.333c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8zM469.333 512v-298.667h-170.667c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.708-24.994 60.34v213.333h256zM554.667 512h256v-213.333c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-170.667v298.667zM320 768c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM704 768c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subway-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1935,
+ "id": 414,
+ "name": "subway-fill",
+ "prevSize": 32,
+ "code": 61532
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1884
+ },
+ {
+ "icon": {
+ "paths": [
+ "M234.666 853.333c35.328 0 64 28.672 64 64s-28.672 64-64 64c-35.328 0-64-28.672-64-64s28.672-64 64-64zM789.333 853.333c35.328 0 64 28.672 64 64s-28.672 64-64 64c-35.328 0-64-28.672-64-64s28.672-64 64-64zM92.671 74.965l163.285 163.328v487.040h597.377v85.333h-640.001c-23.552 0-42.667-19.115-42.667-42.667v-494.379l-138.411-138.283 60.416-60.373zM682.667 128c23.552 0 42.667 19.115 42.667 42.667v85.333h127.701c23.765 0 42.965 19.456 42.965 42.453v341.76c0 23.467-19.2 42.453-42.965 42.453h-511.404c-23.765 0-42.965-19.456-42.965-42.453v-341.76c0-23.467 19.2-42.453 42.965-42.453h127.66l0.043-85.333c0-23.552 19.115-42.667 42.667-42.667h170.667zM469.333 341.333h-42.668v256h42.668v-256zM768 341.333h-42.667v256h42.667v-256zM640 213.333h-85.333v42.667h85.333v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["luggage-cart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1936,
+ "id": 413,
+ "name": "luggage-cart-fill",
+ "prevSize": 32,
+ "code": 61533
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1885
+ },
+ {
+ "icon": {
+ "paths": [
+ "M260.949 857.045c-54.441-39.556-98.738-91.447-129.263-151.424-30.525-59.972-46.409-126.327-46.353-193.621 0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667c0.055 67.294-15.829 133.649-46.353 193.621-30.524 59.977-74.82 111.868-129.263 151.424l-43.307-74.197c56.593-43.409 98.167-103.458 118.878-171.708 20.715-68.25 19.529-141.274-3.392-208.816-22.921-67.541-66.423-126.205-124.399-167.753s-127.505-63.89-198.831-63.89c-71.326 0-140.857 22.343-198.831 63.89s-101.477 100.212-124.397 167.753c-22.921 67.543-24.108 140.567-3.395 208.816s62.286 128.299 118.879 171.708l-43.307 74.197zM347.733 708.352c-40.319-33.732-69.276-79.057-82.937-129.818-13.661-50.765-11.365-104.499 6.579-153.911 17.943-49.411 50.663-92.1 93.713-122.268s94.342-46.351 146.912-46.351c52.57 0 103.863 16.183 146.914 46.351s75.767 72.857 93.713 122.268c17.941 49.412 20.237 103.147 6.579 153.911-13.662 50.761-42.62 96.085-82.94 129.818l-43.947-75.349c23.97-23.829 40.324-54.234 46.993-87.369s3.345-67.503-9.54-98.748c-12.89-31.243-34.761-57.958-62.848-76.755-28.092-18.798-61.129-28.833-94.925-28.833s-66.833 10.035-94.923 28.833c-28.088 18.798-49.962 45.513-62.85 76.755-12.887 31.245-16.208 65.613-9.54 98.748s23.023 63.539 46.993 87.369l-43.947 75.349zM469.333 554.667h85.333l42.667 384h-170.667l42.667-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-tower-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1937,
+ "id": 412,
+ "name": "signal-tower-fill",
+ "prevSize": 32,
+ "code": 61534
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1886
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 640v-277.333c0-50.921 20.229-99.758 56.236-135.764s84.843-56.236 135.764-56.236c50.921 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764v298.667c0 28.288 11.238 55.42 31.241 75.426 20.006 20.002 47.138 31.241 75.426 31.241s55.42-11.238 75.426-31.241c20.002-20.006 31.241-47.138 31.241-75.426v-284.587c-28.48-10.065-52.484-29.875-67.772-55.928-15.283-26.052-20.868-56.67-15.761-86.442s20.574-56.779 43.665-76.249c23.095-19.47 52.326-30.149 82.534-30.149s59.439 10.679 82.534 30.149c23.091 19.47 38.558 46.478 43.665 76.249s-0.478 60.39-15.761 86.442c-15.287 26.053-39.292 45.862-67.772 55.928v284.587c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235c-50.923 0-99.759-20.228-135.765-56.235s-56.235-84.843-56.235-135.765v-298.667c0-28.29-11.238-55.421-31.241-75.425-20.005-20.004-47.136-31.242-75.426-31.242s-55.421 11.238-75.425 31.242c-20.004 20.004-31.242 47.135-31.242 75.425v277.333h128l-170.667 213.333-170.667-213.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["route-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1938,
+ "id": 411,
+ "name": "route-fill",
+ "prevSize": 32,
+ "code": 61535
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1887
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 981.333h-85.333v-42.667h-341.333v42.667h-85.333v-42.667h-42.667c-47.147 0-85.333-38.187-85.333-85.333v-554.667c0-47.147 38.187-85.333 85.333-85.333h128v-85.333c0-23.552 19.115-42.667 42.667-42.667h256c23.552 0 42.667 19.115 42.667 42.667v85.333h128c47.147 0 85.333 38.187 85.333 85.333v554.667c0 47.147-38.187 85.333-85.333 85.333h-42.667v42.667zM426.667 384h-85.333v384h85.333v-384zM682.667 384h-85.333v384h85.333v-384zM597.333 170.667h-170.667v42.667h170.667v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["suitcase-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1939,
+ "id": 410,
+ "name": "suitcase-2-fill",
+ "prevSize": 32,
+ "code": 61536
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1888
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 42.667c23.552 0 42.667 19.115 42.667 42.667v213.333h42.667v-42.667h85.333v42.667h42.667c23.552 0 42.667 19.115 42.667 42.667v512c0 23.552-19.115 42.667-42.667 42.667h-42.667v42.667h-85.333v-42.667h-426.667v42.667h-85.333v-42.667h-42.667c-23.552 0-42.667-19.115-42.667-42.667v-512c0-23.552 19.115-42.667 42.667-42.667h42.667v-42.667h85.333v42.667h42.667v-213.333c0-23.552 19.115-42.667 42.667-42.667h256zM384 426.667h-85.333v341.333h85.333v-341.333zM554.667 426.667h-85.333v341.333h85.333v-341.333zM725.333 426.667h-85.333v341.333h85.333v-341.333zM597.333 128h-170.667v170.667h170.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["suitcase-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1940,
+ "id": 409,
+ "name": "suitcase-3-fill",
+ "prevSize": 32,
+ "code": 61537
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1889
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 42.667c23.565 0 42.667 19.103 42.667 42.667v42.667h213.333v256h-86.144l117.167 321.911c7.518 19.243 11.644 40.183 11.644 62.089 0 94.255-76.412 170.667-170.667 170.667-79.522 0-146.342-54.391-165.291-128h-181.419c-18.948 73.609-85.767 128-165.291 128-82.965 0-152.103-59.2-167.478-137.66-27.255-14.251-45.856-42.79-45.856-75.674v-426.667c0-23.564 19.103-42.667 42.667-42.667h298.667c23.565 0 42.667 19.103 42.667 42.667v213.333c0 23.565 19.102 42.667 42.667 42.667h85.333c23.565 0 42.667-19.102 42.667-42.667v-384h-128v-85.333h170.667zM810.667 682.667c-47.13 0-85.333 38.204-85.333 85.333s38.204 85.333 85.333 85.333c47.13 0 85.333-38.204 85.333-85.333 0-10.253-1.809-20.087-5.124-29.193l-0.7-1.852c-12.416-31.778-43.332-54.289-79.509-54.289zM298.667 682.667c-47.128 0-85.333 38.204-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.204 85.333-85.333s-38.205-85.333-85.333-85.333zM384 341.333h-213.333v85.333h213.333v-85.333zM853.333 213.333h-128v85.333h128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["e-bike-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1941,
+ "id": 408,
+ "name": "e-bike-2-fill",
+ "prevSize": 32,
+ "code": 61538
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1890
+ },
+ {
+ "icon": {
+ "paths": [
+ "M122.875 770.304c58.717-259.81 184.175-499.813 363.99-696.32 3.196-3.478 7.083-6.255 11.405-8.155 4.326-1.899 9.003-2.88 13.726-2.88s9.395 0.981 13.722 2.88c4.326 1.9 8.213 4.677 11.409 8.155 7.083 7.68 12.971 14.165 17.621 19.413 170.517 192.933 289.647 425.745 346.368 676.907-91.349 19.243-185.173 31.872-280.917 37.291l-89.131 178.261c-1.775 3.537-4.497 6.515-7.868 8.593-3.366 2.082-7.245 3.183-11.204 3.183s-7.838-1.101-11.209-3.183c-3.366-2.078-6.089-5.056-7.863-8.593l-89.132-178.261c-94.444-5.338-188.351-17.805-280.917-37.291zM511.996 640c33.946 0 66.505-13.487 90.509-37.491s37.491-56.559 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.95 0-66.505 13.486-90.511 37.49-24.005 24.005-37.49 56.564-37.49 90.51 0 33.95 13.486 66.505 37.49 90.509 24.006 24.004 56.561 37.491 90.511 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["space-ship-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1942,
+ "id": 407,
+ "name": "space-ship-fill",
+ "prevSize": 32,
+ "code": 61539
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1891
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362.581 853.333h298.837c-28.228 67.511-81.907 121.19-149.419 149.419-67.511-28.228-121.192-81.907-149.419-149.419zM768 631.68l85.333 96.768v82.219h-682.667v-82.219l85.333-96.768v-247.68c0-148.608 106.837-275.072 256-321.92 149.163 46.848 256 173.312 256 321.92v247.68zM512 469.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rocket-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1943,
+ "id": 406,
+ "name": "rocket-2-fill",
+ "prevSize": 32,
+ "code": 61540
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1892
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 768h234.667v53.333c0 31.117-12.362 60.962-34.366 82.965-22.004 22.007-51.848 34.368-82.967 34.368s-60.963-12.361-82.967-34.368c-22.004-22.003-34.366-51.849-34.366-82.965v-53.333zM341.333 261.12c85.333 0 128 122.88 128 208.213 0 42.667-21.333 85.333-42.667 149.333l-21.333 64h-234.667c0-42.667-21.333-106.667-21.333-213.333s85.248-208.213 192-208.213zM855.637 601.515l-9.259 52.523c-5.402 30.647-22.763 57.899-48.252 75.746-25.493 17.852-57.037 24.845-87.684 19.443s-57.894-22.763-75.746-48.252c-17.852-25.493-24.845-57.037-19.443-87.684l9.301-52.48 231.083 40.704zM775.595 72.747c105.131 18.517 171.435 133.291 152.917 238.336-18.517 105.088-50.645 164.395-58.027 206.421l-231.125-40.747-9.899-66.731c-9.899-66.731-23.467-112.469-16.085-154.453 14.805-84.053 78.165-197.632 162.219-182.827z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["footprint-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1944,
+ "id": 405,
+ "name": "footprint-fill",
+ "prevSize": 32,
+ "code": 61541
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1893
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 170.667v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c0 106.667-106.667 149.333-128 149.333v106.667h128c0 106.667-106.667 149.333-128 149.333v106.667h128c0 106.667-106.667 149.333-128 149.333v64c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-64c-21.333 0-128-42.667-128-149.333h128v-106.667c-21.333 0-128-42.667-128-149.333h128v-106.667c-21.333 0-128-42.667-128-149.333h128zM512 853.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 341.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["traffic-light-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1945,
+ "id": 404,
+ "name": "traffic-light-fill",
+ "prevSize": 32,
+ "code": 61542
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1894
+ },
+ {
+ "icon": {
+ "paths": [
+ "M728.917 674.645c40.124-42.394 66.944-95.616 77.15-153.088s3.345-116.676-19.733-170.292c-23.078-53.616-61.359-99.294-110.114-131.389s-105.847-49.199-164.22-49.199c-58.372 0-115.463 17.104-164.219 49.199s-87.038 77.773-110.115 131.389c-23.077 53.616-29.938 112.82-19.733 170.292s37.026 110.694 77.15 153.088c23.026-36.745 55.013-67.029 92.957-88.017s80.599-31.987 123.961-31.962c43.362-0.026 86.016 10.974 123.959 31.962s69.931 51.273 92.958 88.017zM512 1012.395l-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617l-271.531 271.531zM512 512c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.561-37.49-90.509c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.95 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.509s-56.559 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-user-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1946,
+ "id": 403,
+ "name": "map-pin-user-fill",
+ "prevSize": 32,
+ "code": 61543
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1895
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 128h298.667c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982h-128v256h-170.667v-768zM426.667 298.667v170.667h128c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parking-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1947,
+ "id": 402,
+ "name": "parking-fill",
+ "prevSize": 32,
+ "code": 61544
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1896
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 512v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-597.333v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384l105.813-246.955c6.584-15.36 17.534-28.448 31.49-37.641s30.305-14.086 47.017-14.071h114.347v-85.333h256v85.333h114.389c16.695 0.002 33.028 4.902 46.967 14.094s24.875 22.271 31.454 37.618l105.856 246.955zM178.176 512h667.648l-91.435-213.333h-484.736l-91.435 213.333h-0.043zM277.333 725.333c16.974 0 33.253-6.741 45.255-18.743s18.745-28.284 18.745-45.257c0-16.973-6.743-33.254-18.745-45.257s-28.281-18.743-45.255-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743zM746.667 725.333c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["taxi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1948,
+ "id": 401,
+ "name": "taxi-fill",
+ "prevSize": 32,
+ "code": 61545
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1897
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 128c23.552 0 42.667 19.115 42.667 42.667v85.333h213.333c23.552 0 42.667 19.115 42.667 42.667v554.667c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-554.667c0-23.552 19.115-42.667 42.667-42.667h213.333v-85.333c0-23.552 19.115-42.667 42.667-42.667h256zM341.333 341.333h-85.333v469.333h85.333v-469.333zM768 341.333h-85.333v469.333h85.333v-469.333zM597.333 213.333h-170.667v42.667h170.667v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["suitcase-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1949,
+ "id": 400,
+ "name": "suitcase-fill",
+ "prevSize": 32,
+ "code": 61546
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1898
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM341.333 554.667l-168.021 0.043c9.506 75.187 43.752 145.079 97.344 198.665s123.488 87.821 198.677 97.314v-168.021c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509zM850.688 554.709l-168.021-0.043c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491l0.043 168.021c75.183-9.502 145.067-43.742 198.652-97.327s87.825-123.469 97.327-198.652zM512 170.667c-83.14 0.001-163.423 30.344-225.781 85.333s-102.505 130.846-112.907 213.333h168.021c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h256c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17h168.021c-10.402-82.487-50.547-158.344-112.909-213.333-62.357-54.989-142.639-85.332-225.779-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["steering-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1950,
+ "id": 399,
+ "name": "steering-2-fill",
+ "prevSize": 32,
+ "code": 61547
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1899
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM783.147 680.619v-4.48c0-39.339 0-57.301-27.819-73.216-8.943-5.069-18.125-9.698-27.52-13.867-15.659-7.125-26.027-11.776-40.021-32.256-1.673-2.432-3.319-4.877-4.949-7.339-14.72-22.4-25.344-38.528-65.792-32.128-79.573 12.629-85.461 26.624-88.96 50.261l-0.555 3.883c-5.163 34.56-6.101 46.165 8.32 61.312 53.973 56.619 86.315 97.451 96.128 121.344 4.779 11.648 17.067 46.933 8.619 81.835 51.789-20.629 97.89-53.355 134.443-95.445 4.693-15.957 8.107-35.84 8.107-59.904zM512 163.541c-98.859 0-188.16 41.216-251.563 107.349 7.552 5.248 14.123 12.629 18.645 22.784 8.704 19.499 8.704 39.595 8.704 57.387 0 13.995 0 27.307 4.48 36.907 6.144 13.141 32.683 18.773 56.107 23.637 8.405 1.792 17.024 3.584 24.875 5.76 21.589 5.973 38.315 25.387 51.669 40.96 5.547 6.443 13.781 15.957 17.92 18.347 2.133-1.536 9.003-9.003 12.373-21.248 2.645-9.387 1.877-17.664-1.92-22.187-23.893-28.16-22.571-82.347-15.189-102.357 11.605-31.531 47.872-29.184 74.411-27.477 9.899 0.64 19.2 1.28 26.197 0.384 26.539-3.328 34.731-43.733 40.491-51.627 12.459-17.067 50.603-42.795 74.24-58.667-44.523-19.798-92.715-30.003-141.44-29.952z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["earth-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1951,
+ "id": 398,
+ "name": "earth-fill",
+ "prevSize": 32,
+ "code": 61548
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1900
+ },
+ {
+ "icon": {
+ "paths": [
+ "M952.064 434.005l-60.373 60.331-30.165-30.165-180.992 180.992-30.165 150.869-60.373 60.331-180.99-181.035-211.2 211.2-60.331-60.331 211.2-211.2-181.035-180.992 60.331-60.373 150.912-30.165 180.99-180.992-30.165-30.165 60.331-60.373 362.027 362.069z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pushpin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1952,
+ "id": 397,
+ "name": "pushpin-fill",
+ "prevSize": 32,
+ "code": 61549
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1901
+ },
+ {
+ "icon": {
+ "paths": [
+ "M604.672 128c22.613 0 44.331 8.96 60.331 25.003l205.995 205.995c16 16 25.003 37.717 25.003 60.331v306.005h85.333v85.333h-346.709c-18.987 73.643-85.76 128-165.291 128s-146.347-54.357-165.291-128h-176.043c-23.552 0-42.667-19.115-42.667-42.667v-554.667c0-47.147 38.187-85.333 85.333-85.333h434.005zM469.333 682.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333zM597.333 298.667h-341.333v256h341.333v-256zM512 384v85.333h-170.667v-85.333h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["caravan-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1953,
+ "id": 396,
+ "name": "caravan-fill",
+ "prevSize": 32,
+ "code": 61550
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1902
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 740.864l-271.531 271.531-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617zM469.333 426.667h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128h-85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1954,
+ "id": 395,
+ "name": "map-pin-add-fill",
+ "prevSize": 32,
+ "code": 61551
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1903
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 381.739l341.333 215.595v85.333l-341.333-107.776v228.693l128 71.083v64l-192-42.667-192 42.667v-64l128-71.125v-228.693l-341.333 107.819v-85.333l341.333-215.595v-232.405c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255v232.405z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["plane-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1955,
+ "id": 394,
+ "name": "plane-fill",
+ "prevSize": 32,
+ "code": 61552
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1904
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.867 853.333l76.8 64v21.333h-597.333v-21.333l76.8-64h-76.8c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-469.333c0-45.264 17.981-88.673 49.987-120.68s75.416-49.987 120.68-49.987h426.667c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v469.333c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-76.8zM213.333 298.667v170.667h597.333v-170.667h-597.333zM512 768c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["train-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1956,
+ "id": 393,
+ "name": "train-fill",
+ "prevSize": 32,
+ "code": 61553
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1905
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 128h640c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v128c0 22.632-8.99 44.337-24.994 60.34s-37.709 24.994-60.339 24.994h-85.333v128c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-256c-45.264 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM768 213.333v128h85.333v-128h-85.333zM85.333 810.667h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cup-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1957, "id": 392, "name": "cup-fill", "prevSize": 32, "code": 61554 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1906
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 740.864l-271.531 271.531-271.531-271.531c-53.703-53.705-90.275-122.125-105.091-196.617-14.816-74.487-7.212-151.696 21.853-221.862s78.282-130.139 141.431-172.333c63.148-42.194 137.392-64.715 213.338-64.715s150.191 22.521 213.338 64.715c63.151 42.194 112.367 102.167 141.431 172.333s36.668 147.375 21.854 221.862c-14.818 74.492-51.388 142.912-105.092 196.617zM512 640c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678 0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.679 49.987c-32.006 32.006-49.987 75.416-49.987 120.68 0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.414 49.988 120.679 49.988zM512 554.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.337 24.994-60.34s37.709-24.993 60.339-24.993c22.63 0 44.335 8.99 60.339 24.993s24.994 37.71 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["map-pin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1958,
+ "id": 391,
+ "name": "map-pin-fill",
+ "prevSize": 32,
+ "code": 61555
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1907
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 768h768c3.964 0 7.846 1.105 11.217 3.187s6.093 5.060 7.863 8.606c1.771 3.541 2.522 7.509 2.167 11.456-0.358 3.947-1.805 7.714-4.181 10.884l-89.6 119.467c-3.972 5.299-9.126 9.6-15.053 12.561-5.922 2.965-12.459 4.506-19.081 4.506h-554.667c-6.624 0-13.157-1.54-19.081-4.506-5.925-2.961-11.078-7.262-15.052-12.561l-89.6-119.467c-2.377-3.17-3.825-6.938-4.18-10.884s0.394-7.915 2.166-11.456c1.772-3.546 4.495-6.524 7.865-8.606s7.254-3.187 11.216-3.187zM640 103.467v536.533c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-424.96c-4.014-0.004-7.945-1.143-11.342-3.285-3.396-2.138-6.12-5.193-7.858-8.811s-2.42-7.654-1.967-11.644c0.453-3.989 2.022-7.77 4.527-10.906l446.293-557.867c2.765-3.444 6.524-5.945 10.769-7.16s8.764-1.083 12.928 0.378c4.169 1.46 7.778 4.178 10.334 7.777s3.934 7.903 3.942 12.317z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sailboat-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1959,
+ "id": 390,
+ "name": "sailboat-fill",
+ "prevSize": 32,
+ "code": 61556
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1908
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 128c23.552 0 42.667 19.115 42.667 42.667v85.333h170.667c23.552 0 42.667 19.115 42.667 42.667v512h85.333v85.333h-938.667v-85.333h85.333v-512c0-23.552 19.115-42.667 42.667-42.667h170.667v-85.333c0-23.552 19.115-42.667 42.667-42.667h256zM426.667 341.333h-85.333v469.333h85.333v-469.333zM682.667 341.333h-85.333v469.333h85.333v-469.333zM597.333 213.333h-170.667v42.667h170.667v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["luggage-deposit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1960,
+ "id": 389,
+ "name": "luggage-deposit-fill",
+ "prevSize": 32,
+ "code": 61557
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1909
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.662 896h213.333v85.333h-511.999v-85.333h213.332v-44.8c-67.648-6.793-132.695-29.649-189.722-66.671-57.027-37.018-104.385-87.125-138.127-146.15l74.112-42.325c26.060 45.534 62.266 84.45 105.807 113.724s93.243 48.115 145.247 55.061c52.002 6.946 104.909 1.813 154.607-15.006 49.698-16.815 94.848-44.864 131.947-81.963s65.148-82.253 81.963-131.947c16.819-49.698 21.952-102.605 15.006-154.608s-25.788-101.706-55.061-145.247c-29.269-43.54-68.186-79.747-113.724-105.807l42.325-74.112c65.327 37.314 119.616 91.243 157.367 156.315s57.621 138.972 57.587 214.202c0 221.227-168.405 403.158-384 424.534v44.8zM511.996 725.333c-39.219 0-78.059-7.727-114.294-22.733-36.236-15.010-69.161-37.009-96.894-64.747-27.734-27.733-49.734-60.655-64.743-96.892s-22.735-75.076-22.735-114.296c0-39.221 7.725-78.059 22.735-114.295s37.009-69.161 64.743-96.894c27.734-27.734 60.658-49.734 96.894-64.743s75.075-22.735 114.294-22.735c79.211 0 155.179 31.467 211.191 87.478 56.009 56.011 87.475 131.978 87.475 211.189s-31.467 155.179-87.475 211.188c-56.013 56.013-131.981 87.479-211.191 87.479z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["globe-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1961,
+ "id": 388,
+ "name": "globe-fill",
+ "prevSize": 32,
+ "code": 61558
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1910
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 853.333h-426.667v42.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667h-42.667v-341.333h-42.667v-170.667h42.667v-128c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994h597.333c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34v128h42.667v170.667h-42.667v341.333h-42.667v42.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM213.333 213.333v384h597.333v-384h-597.333zM213.333 682.667v85.333h170.667v-85.333h-170.667zM640 682.667v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bus-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 1962, "id": 387, "name": "bus-fill", "prevSize": 32, "code": 61559 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1911
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM341.333 490.667l170.667 64 64 170.752 149.333-384.085-384 149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["compass-discover-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1963,
+ "id": 386,
+ "name": "compass-discover-fill",
+ "prevSize": 32,
+ "code": 61560
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1912
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 597.333h64c39.607 0 77.589-15.731 105.596-43.738s43.738-65.988 43.738-105.596c0-39.606-15.731-77.589-43.738-105.594s-65.988-43.739-105.596-43.739h-149.333v426.667h85.333v-128zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM469.333 384h64c16.973 0 33.254 6.743 45.257 18.745s18.743 28.282 18.743 45.255c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743h-64v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["parking-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1964,
+ "id": 385,
+ "name": "parking-box-fill",
+ "prevSize": 32,
+ "code": 61561
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1913
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM720.683 363.648c-16.619-23.322-37.009-43.712-60.331-60.331l-357.035 357.035c16.618 23.322 37.008 43.712 60.331 60.331l357.035-357.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["forbid-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1965,
+ "id": 384,
+ "name": "forbid-2-fill",
+ "prevSize": 32,
+ "code": 61562
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1914
+ },
+ {
+ "icon": {
+ "paths": [
+ "M130.345 554.667h85.973c10.338 71.031 45.903 135.966 100.191 182.921 54.287 46.959 123.665 72.802 195.448 72.802 71.778 0 141.158-25.843 195.443-72.802 54.289-46.955 89.856-111.889 100.194-182.921h86.016c-10.522 93.858-55.258 180.553-125.666 243.507-70.404 62.959-161.54 97.762-255.987 97.762-94.45 0-185.586-34.803-255.992-97.762-70.406-62.955-115.144-149.649-125.663-243.507h0.043zM130.345 469.333c10.519-93.862 55.257-180.555 125.663-243.511s161.542-97.76 255.992-97.76c94.447 0 185.583 34.804 255.987 97.76 70.409 62.956 115.145 149.649 125.666 243.511h-85.973c-10.338-71.031-45.905-135.966-100.194-182.924-54.285-46.959-123.665-72.801-195.443-72.801-71.782 0-141.161 25.843-195.448 72.801s-89.853 111.893-100.191 182.924h-86.059z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1966,
+ "id": 383,
+ "name": "loader-3-fill",
+ "prevSize": 32,
+ "code": 61563
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1915
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM298.667 469.333v85.333h426.667v-85.333h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["indeterminate-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1967,
+ "id": 382,
+ "name": "indeterminate-circle-fill",
+ "prevSize": 32,
+ "code": 61564
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1916
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 768h170.667v-85.333h-170.667v85.333zM128 256v85.333h768v-85.333h-768zM256 554.667h512v-85.333h-512v85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1968,
+ "id": 381,
+ "name": "filter-3-fill",
+ "prevSize": 32,
+ "code": 61565
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1917
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 597.333l-256-384v-85.333h682.667v85.333l-256 384v256l-170.667 85.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1969,
+ "id": 380,
+ "name": "filter-2-fill",
+ "prevSize": 32,
+ "code": 61566
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1918
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128v85.333h-213.333v597.333h682.667v-384h85.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM682.667 213.333v-170.667l298.667 256h-384c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34v256h-85.333v-256c0-45.264 17.98-88.673 49.988-120.68 32.004-32.006 75.413-49.987 120.678-49.987h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-forward-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1970,
+ "id": 379,
+ "name": "share-forward-box-fill",
+ "prevSize": 32,
+ "code": 61567
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1919
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 426.667h42.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h42.667v-42.667c0-39.221 7.725-78.059 22.735-114.295s37.009-69.161 64.743-96.895c27.734-27.734 60.659-49.733 96.895-64.743s75.071-22.735 114.295-22.735c39.223 0 78.059 7.725 114.295 22.735s69.158 37.009 96.892 64.743c27.738 27.734 49.737 60.659 64.747 96.895 15.006 36.236 22.733 75.073 22.733 114.295v42.667zM725.333 426.667v-42.667c0-56.579-22.477-110.842-62.485-150.849-40.004-40.008-94.268-62.484-150.848-62.484s-110.842 22.476-150.849 62.484c-40.008 40.008-62.484 94.27-62.484 150.849v42.667h426.667zM469.333 597.333v170.667h85.333v-170.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["lock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1971,
+ "id": 378,
+ "name": "lock-fill",
+ "prevSize": 32,
+ "code": 61568
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1920
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548.949 127.998l406.443 704.002c3.742 6.485 5.713 13.841 5.713 21.333 0 7.488-1.971 14.844-5.713 21.329-3.746 6.49-9.131 11.874-15.616 15.62-6.49 3.742-13.845 5.717-21.333 5.717h-812.887c-7.489 0-14.847-1.975-21.333-5.717-6.486-3.746-11.872-9.131-15.616-15.62-3.745-6.485-5.716-13.841-5.716-21.329 0-7.492 1.972-14.848 5.716-21.333l406.444-704.002c3.742-6.486 9.131-11.872 15.616-15.616s13.841-5.716 21.333-5.716c7.488 0 14.844 1.971 21.333 5.716 6.485 3.744 11.87 9.13 15.616 15.616zM469.333 682.667v85.333h85.333v-85.333h-85.333zM469.333 383.998v213.335h85.333v-213.335h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alert-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1972,
+ "id": 377,
+ "name": "alert-fill",
+ "prevSize": 32,
+ "code": 61569
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1921
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 681.301l181.205 101.419-40.491-203.648 152.448-141.013-206.208-24.448-86.955-188.544v456.235zM512 779.093l-300.926 168.448 67.2-338.261-253.227-234.155 342.486-40.619 144.468-313.173 144.469 313.173 342.485 40.619-253.227 234.155 67.2 338.261-300.928-168.448z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["star-half-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1973,
+ "id": 376,
+ "name": "star-half-fill",
+ "prevSize": 32,
+ "code": 61570
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1922
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667h85.333c0 188.501 152.832 341.333 341.333 341.333s341.333-152.832 341.333-341.333c0-188.501-152.832-341.333-341.333-341.333-105.131 0-199.168 47.531-261.76 122.24l91.093 91.093h-256v-256l104.405 104.363c78.208-90.027 193.579-147.029 322.261-147.029zM554.667 298.667v195.627l138.368 138.368-60.373 60.373-163.328-163.413v-230.955h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["history-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1974,
+ "id": 375,
+ "name": "history-fill",
+ "prevSize": 32,
+ "code": 61571
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1923
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 640h-128v-512h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM712.832 695.168l-273.067 273.067c-3.631 3.639-8.452 5.845-13.577 6.217-5.127 0.367-10.214-1.126-14.327-4.211l-36.395-27.307c-10.108-7.586-17.743-18.001-21.941-29.922s-4.774-24.815-1.653-37.065l49.195-193.28h-273.067c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-89.771c-0.011-11.153 2.163-22.195 6.4-32.512l132.096-320.597c3.212-7.819 8.674-14.507 15.693-19.217s15.279-7.228 23.731-7.237h462.080c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v494.336c-0.004 11.315-4.497 22.165-12.501 30.165z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thumb-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1975,
+ "id": 374,
+ "name": "thumb-down-fill",
+ "prevSize": 32,
+ "code": 61572
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1924
+ },
+ {
+ "icon": {
+ "paths": ["M512 426.667l170.667 170.667h-341.333l170.667-170.667z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-drop-up-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1976,
+ "id": 373,
+ "name": "arrow-drop-up-fill",
+ "prevSize": 32,
+ "code": 61573
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1925
+ },
+ {
+ "icon": {
+ "paths": [
+ "M424.706 94.292c57.555-12.069 116.981-12.098 174.547-0.085 3.836 25.314 13.329 49.437 27.767 70.578 14.443 21.141 33.463 38.755 55.646 51.534 22.17 12.823 46.942 20.483 72.478 22.411 25.54 1.928 51.183-1.926 75.021-11.275 39.181 43.864 68.86 95.362 87.168 151.253-19.994 15.982-36.13 36.265-47.211 59.342-11.081 23.074-16.819 48.35-16.789 73.95 0 53.931 25.003 102.016 64.085 133.291-18.415 55.842-48.132 107.302-87.296 151.168-23.834-9.344-49.468-13.193-74.995-11.264-25.532 1.924-50.295 9.583-72.461 22.4-22.165 12.774-41.169 30.374-55.603 51.503-14.434 21.124-23.923 45.227-27.767 70.524-57.545 12.096-116.975 12.156-174.547 0.171-3.817-25.335-13.299-49.485-27.741-70.652-14.442-21.163-33.472-38.797-55.672-51.588-22.171-12.817-46.946-20.471-72.483-22.391s-51.178 1.941-75.016 11.298c-39.185-43.878-68.864-95.39-87.168-151.296 19.985-15.974 36.116-36.241 47.195-59.302s16.823-48.32 16.805-73.903c0.021-25.604-5.73-50.889-16.825-73.963-11.095-23.077-27.249-43.356-47.26-59.329 18.418-55.846 48.133-107.302 87.296-151.168 23.836 9.342 49.471 13.193 74.999 11.264s50.295-9.584 72.457-22.4c22.167-12.774 41.172-30.378 55.606-51.503s23.923-45.23 27.765-70.524v-0.043zM512 640c33.95 0 66.509-13.487 90.513-37.491s37.487-56.563 37.487-90.509c0-33.95-13.483-66.505-37.487-90.511-24.004-24.005-56.563-37.49-90.513-37.49-33.946 0-66.505 13.486-90.508 37.49-24.005 24.006-37.49 56.561-37.49 90.511 0 33.946 13.486 66.505 37.49 90.509 24.003 24.004 56.562 37.491 90.508 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1977,
+ "id": 372,
+ "name": "settings-3-fill",
+ "prevSize": 32,
+ "code": 61574
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1926
+ },
+ {
+ "icon": {
+ "paths": [
+ "M370.603 170.667l111.232-111.232c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l111.232 111.232h157.269c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v157.269l111.232 111.232c8 8 12.493 18.85 12.493 30.165s-4.493 22.165-12.493 30.165l-111.232 111.232v157.269c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-157.269l-111.232 111.232c-8 8-18.85 12.493-30.165 12.493s-22.165-4.493-30.165-12.493l-111.232-111.232h-157.269c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-157.269l-111.232-111.232c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l111.232-111.232v-157.269c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h157.269zM512 640c33.95 0 66.505-13.487 90.509-37.491s37.491-56.559 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.559-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.95 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1978,
+ "id": 371,
+ "name": "settings-2-fill",
+ "prevSize": 32,
+ "code": 61575
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1927
+ },
+ {
+ "icon": {
+ "paths": [
+ "M272.299 254.635c68-54.482 152.568-84.107 239.701-83.968 90.667 0 173.995 31.403 239.701 83.968l61.995-61.995 60.331 60.331-61.995 61.995c45.129 56.497 73.391 124.587 81.527 196.437 8.141 71.846-4.173 144.533-35.52 209.694s-80.457 120.149-141.675 158.63c-61.218 38.481-132.058 58.897-204.365 58.897s-143.148-20.416-204.365-58.897c-61.218-38.481-110.326-93.47-141.673-158.63s-43.66-137.847-35.521-209.694c8.139-71.851 36.399-139.94 81.528-196.437l-61.995-61.952 60.331-60.331 61.994 61.952zM554.667 512v-192.213l-213.333 277.547h128v192l213.333-277.333h-128zM341.334 42.667h341.333v85.333h-341.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["timer-flash-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1979,
+ "id": 370,
+ "name": "timer-flash-fill",
+ "prevSize": 32,
+ "code": 61576
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1928
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 490.667c-25.214 0-50.181-4.966-73.475-14.613-23.294-9.651-44.46-23.795-62.289-41.621-17.829-17.83-31.971-38.996-41.62-62.29s-14.615-48.262-14.615-73.475c0-25.214 4.966-50.181 14.615-73.475s23.792-44.46 41.62-62.289c17.829-17.829 38.995-31.971 62.289-41.62s48.262-14.615 73.475-14.615c50.921 0 99.758 20.229 135.765 56.236 36.006 36.007 56.235 84.843 56.235 135.764s-20.228 99.758-56.235 135.765c-36.008 36.006-84.844 56.235-135.765 56.235zM298.667 917.333c-50.921 0-99.758-20.228-135.764-56.235s-56.236-84.843-56.236-135.765c0-50.923 20.229-99.759 56.236-135.765s84.843-56.235 135.764-56.235c50.921 0 99.758 20.228 135.765 56.235 36.006 36.006 56.235 84.843 56.235 135.765s-20.228 99.759-56.235 135.765c-36.008 36.006-84.844 56.235-135.765 56.235zM725.333 490.667c-25.212 0-50.18-4.966-73.476-14.613-23.292-9.651-44.459-23.795-62.289-41.621-17.826-17.83-31.97-38.996-41.621-62.29-9.647-23.295-14.613-48.262-14.613-73.475s4.966-50.181 14.613-73.475c9.651-23.294 23.795-44.46 41.621-62.289 17.83-17.829 38.997-31.971 62.289-41.62 23.296-9.649 48.265-14.615 73.476-14.615 50.923 0 99.759 20.229 135.765 56.236s56.235 84.843 56.235 135.764c0 50.921-20.228 99.758-56.235 135.765-36.006 36.006-84.843 56.235-135.765 56.235zM725.333 917.333c-50.923 0-99.759-20.228-135.765-56.235s-56.235-84.843-56.235-135.765c0-50.923 20.228-99.759 56.235-135.765s84.843-56.235 135.765-56.235c50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765c0 50.923-20.228 99.759-56.235 135.765s-84.843 56.235-135.765 56.235z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["apps-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1980,
+ "id": 369,
+ "name": "apps-2-fill",
+ "prevSize": 32,
+ "code": 61577
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1929
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 768h298.667v85.333h-298.667v-85.333zM85.333 469.333h384v85.333h-384v-85.333zM85.333 170.667h853.333v85.333h-853.333v-85.333zM882.091 555.733l49.323-16.683 42.667 73.899-39.083 34.347c4.919 23.326 4.919 47.415 0 70.741l39.083 34.347-42.667 73.899-49.323-16.683c-17.493 15.787-38.315 27.947-61.227 35.413l-10.197 50.987h-85.333l-10.24-51.029c-22.643-7.398-43.486-19.465-61.184-35.413l-49.323 16.725-42.667-73.899 39.083-34.347c-4.919-23.326-4.919-47.415 0-70.741l-39.083-34.347 42.667-73.899 49.323 16.683c17.493-15.787 38.315-27.947 61.227-35.413l10.197-50.987h85.333l10.24 51.029c22.869 7.424 43.691 19.627 61.184 35.413v-0.043zM768 725.333c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["list-settings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1981,
+ "id": 368,
+ "name": "list-settings-fill",
+ "prevSize": 32,
+ "code": 61578
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1930
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM469.461 682.667l301.653-301.696-60.331-60.331-241.323 241.365-120.704-120.704-60.331 60.331 181.035 181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1982,
+ "id": 367,
+ "name": "checkbox-fill",
+ "prevSize": 32,
+ "code": 61579
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1931
+ },
+ {
+ "icon": {
+ "paths": ["M213.333 469.333h597.333v85.333h-597.333v-85.333z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["subtract-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1983,
+ "id": 366,
+ "name": "subtract-fill",
+ "prevSize": 32,
+ "code": 61580
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1932
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554.667v298.667l-341.333-341.333 341.333-341.333v298.667h341.333v85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1984,
+ "id": 365,
+ "name": "arrow-left-fill",
+ "prevSize": 32,
+ "code": 61581
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1933
+ },
+ {
+ "icon": {
+ "paths": [
+ "M161.408 120.576l350.592-77.909 350.592 77.909c9.476 2.106 17.95 7.38 24.021 14.95 6.076 7.571 9.387 16.986 9.387 26.692v426.112c-0.004 42.142-10.411 83.635-30.298 120.789s-48.64 68.826-83.708 92.203l-269.995 180.011-269.995-180.011c-35.060-23.373-63.81-55.036-83.697-92.181-19.887-37.15-30.298-78.63-30.308-120.768v-426.155c0.002-9.706 3.313-19.121 9.386-26.692s14.547-12.844 24.022-14.95zM512 469.333c28.288 0 55.42-11.238 75.426-31.241 20.002-20.005 31.241-47.136 31.241-75.426s-11.238-55.421-31.241-75.425c-20.006-20.004-47.138-31.242-75.426-31.242s-55.42 11.238-75.426 31.242c-20.003 20.004-31.241 47.135-31.241 75.425s11.238 55.421 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241zM321.152 682.667h381.696c-5.171-47.002-27.507-90.441-62.724-121.997-35.217-31.552-80.841-49.003-128.124-49.003s-92.908 17.451-128.125 49.003c-35.217 31.556-57.551 74.995-62.723 121.997z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shield-user-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1985,
+ "id": 364,
+ "name": "shield-user-fill",
+ "prevSize": 32,
+ "code": 61582
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1934
+ },
+ {
+ "icon": {
+ "paths": [
+ "M556.8 527.356l-241.324 241.408-60.331-60.373 241.366-241.323-211.201-211.198h482.689v482.686l-211.2-211.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-right-up-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1986,
+ "id": 363,
+ "name": "arrow-right-up-fill",
+ "prevSize": 32,
+ "code": 61583
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1935
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 341.333h-170.624l-0.043 512h-85.333v-512h-170.667l213.333-213.333 213.333 213.333zM938.667 682.667l-213.333 213.333-213.333-213.333h170.667v-512h85.333v512h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1987,
+ "id": 362,
+ "name": "arrow-up-down-fill",
+ "prevSize": 32,
+ "code": 61584
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1936
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.666 853.333v-256c0-90.526 35.962-177.347 99.974-241.359s150.832-99.974 241.36-99.974c90.526 0 177.344 35.962 241.357 99.974s99.977 150.833 99.977 241.359v256h42.667v85.333h-768.001v-85.333h42.667zM255.999 597.333h85.333c0-45.265 17.981-88.674 49.987-120.678 32.006-32.009 75.415-49.988 120.68-49.988v-85.333c-67.895 0-133.011 26.971-181.020 74.981s-74.981 113.124-74.981 181.019zM469.333 85.333h85.333v128h-85.333v-128zM843.861 205.141l60.331 60.331-90.453 90.496-60.373-60.331 90.496-90.496zM119.807 265.472l60.331-60.331 90.496 90.453-60.288 60.416-90.539-90.539z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["alarm-warning-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1988,
+ "id": 361,
+ "name": "alarm-warning-fill",
+ "prevSize": 32,
+ "code": 61585
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1937
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529h-85.333c0-79.211-31.467-155.178-87.479-211.189-56.009-56.011-131.977-87.477-211.187-87.477v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1989,
+ "id": 360,
+ "name": "loader-5-fill",
+ "prevSize": 32,
+ "code": 61586
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1938
+ },
+ {
+ "icon": {
+ "paths": [
+ "M783.531 240.468l-60.331 60.331c-48.858-48.862-113.143-79.272-181.909-86.048s-137.752 10.5-195.207 48.885c-57.455 38.385-99.823 95.505-119.885 161.626s-16.577 137.153 9.862 200.995c26.439 63.838 74.195 116.535 135.132 149.111 60.935 32.576 131.284 43.017 199.056 29.542 67.772-13.478 128.772-50.035 172.612-103.445 43.836-53.41 67.802-120.367 67.806-189.466h85.333c0 88.841-30.805 174.929-87.168 243.605-56.358 68.672-134.788 115.682-221.922 133.013-87.13 17.331-177.579 3.913-255.929-37.965-78.35-41.882-139.755-109.632-173.752-191.71s-38.483-173.406-12.693-258.42c25.789-85.015 80.259-158.457 154.127-207.814s162.563-71.573 250.977-62.865c88.414 8.708 171.072 47.803 233.89 110.623z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1990,
+ "id": 359,
+ "name": "loader-4-fill",
+ "prevSize": 32,
+ "code": 61587
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1939
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.333 469.333v256h85.333v-256h-85.333zM469.333 298.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["information-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1991,
+ "id": 358,
+ "name": "information-fill",
+ "prevSize": 32,
+ "code": 61588
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1940
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM384 213.333v597.333h469.333v-597.333h-469.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["side-bar-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1992,
+ "id": 357,
+ "name": "side-bar-fill",
+ "prevSize": 32,
+ "code": 61589
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1941
+ },
+ {
+ "icon": {
+ "paths": [
+ "M278.829 128h617.175c11.315 0 22.165 4.495 30.17 12.497 8 8.002 12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17-8.004 8-18.854 12.497-30.17 12.497h-617.175c-7.023 0-13.937-1.732-20.129-5.043s-11.472-8.102-15.369-13.943l-227.541-341.333c-4.678-7.010-7.174-15.253-7.174-23.68s2.496-16.67 7.174-23.68l227.541-341.333c3.898-5.842 9.177-10.631 15.369-13.943s13.107-5.044 20.129-5.044zM554.671 451.669l-120.661-120.704-60.375 60.373 120.706 120.661-120.706 120.661 60.375 60.373 120.661-120.704 120.661 120.704 60.373-60.373-120.704-120.661 120.704-120.661-60.373-60.373-120.661 120.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-back-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1993,
+ "id": 356,
+ "name": "delete-back-2-fill",
+ "prevSize": 32,
+ "code": 61590
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1942
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.669 895.189c-58.281-4.476-113.657-27.251-158.223-65.071-44.565-37.824-76.041-88.759-89.933-145.536-13.891-56.781-9.488-116.493 12.58-170.62s60.675-99.895 110.306-130.773c10.56-82.343 50.764-158.016 113.088-212.857s142.495-85.093 225.516-85.093c83.017 0 163.187 30.252 225.51 85.093 62.327 54.841 102.528 130.514 113.092 212.857 49.63 30.877 88.235 76.646 110.302 130.773 22.071 54.127 26.475 113.839 12.582 170.62-13.892 56.777-45.367 107.712-89.933 145.536-44.565 37.82-99.942 60.595-158.221 65.071v0.811h-426.668v-0.811zM554.671 512v-170.666h-85.333v170.666h-128.002l170.668 213.333 170.667-213.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["download-cloud-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1994,
+ "id": 355,
+ "name": "download-cloud-fill",
+ "prevSize": 32,
+ "code": 61591
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1943
+ },
+ {
+ "icon": {
+ "paths": ["M512 341.333l256 256h-512l256-256z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-s-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1995,
+ "id": 354,
+ "name": "arrow-up-s-fill",
+ "prevSize": 32,
+ "code": 61592
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1944
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 469.333v-128l-170.667 170.667 170.667 170.667v-128h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-left-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1996,
+ "id": 353,
+ "name": "arrow-left-circle-fill",
+ "prevSize": 32,
+ "code": 61593
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1945
+ },
+ {
+ "icon": {
+ "paths": [
+ "M227.586 193.92c43.807-39.241 95.261-68.992 151.125-87.381 15.974 20.012 36.252 36.166 59.33 47.261 23.074 11.095 48.354 16.846 73.958 16.825 25.609 0.021 50.889-5.73 73.963-16.825 23.078-11.095 43.358-27.249 59.328-47.261 55.868 18.389 107.319 48.14 151.125 87.381-9.318 23.827-13.154 49.448-11.221 74.961 1.937 25.513 9.591 50.262 22.4 72.41 12.783 22.191 30.404 41.214 51.554 55.655s45.282 23.929 70.601 27.758c11.972 57.553 11.972 116.953 0 174.506-49.489 7.595-95.147 36.693-122.155 83.413-12.813 22.153-20.476 46.912-22.409 72.431-1.937 25.519 1.903 51.149 11.23 74.982-43.81 39.228-95.262 68.962-151.125 87.339-15.974-20.002-36.258-36.147-59.332-47.236-23.078-11.089-48.354-16.832-73.958-16.806-25.604-0.021-50.884 5.73-73.958 16.823-23.078 11.098-43.357 27.251-59.33 47.262-55.86-18.377-107.314-48.111-151.125-87.339 9.329-23.834 13.169-49.463 11.233-74.982s-9.596-50.278-22.412-72.431c-12.788-22.182-30.411-41.199-51.559-55.633-21.148-14.43-45.278-23.915-70.595-27.738-11.976-57.566-11.976-116.983 0-174.549 25.321-3.829 49.453-13.317 70.602-27.758s38.769-33.465 51.552-55.655c12.81-22.148 20.466-46.897 22.402-72.41s-1.901-51.133-11.223-74.961v-0.043zM576 622.805c14.677-8.341 27.554-19.507 37.901-32.849 10.342-13.342 17.941-28.595 22.366-44.885 4.42-16.29 5.581-33.297 3.405-50.035-2.176-16.742-7.642-32.883-16.085-47.505-8.439-14.618-19.686-27.423-33.097-37.677s-28.715-17.754-45.035-22.069c-16.32-4.314-33.331-5.359-50.057-3.072s-32.832 7.859-47.398 16.396c-29.157 17.094-50.371 45.030-59.011 77.708-8.64 32.674-4.003 67.443 12.898 96.717s44.692 50.671 77.315 59.529c32.619 8.853 67.418 4.45 96.798-12.258z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1997,
+ "id": 352,
+ "name": "settings-4-fill",
+ "prevSize": 32,
+ "code": 61594
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1946
+ },
+ {
+ "icon": {
+ "paths": [
+ "M90.964 581.547c-7.654-46.050-7.654-93.043 0-139.093 47.019 1.109 89.259-21.418 105.685-61.056 16.427-39.68 2.475-85.504-31.573-117.888 27.153-38.004 60.397-71.262 98.389-98.432 32.427 34.048 78.251 48 117.931 31.573s62.167-58.709 61.015-105.685c46.076-7.663 93.099-7.663 139.179 0-1.152 47.019 21.376 89.259 61.013 105.685 39.68 16.427 85.504 2.475 117.888-31.573 38.003 27.153 71.262 60.398 98.432 98.389-34.048 32.427-48 78.251-31.573 117.931s58.709 62.165 105.685 61.013c7.663 46.076 7.663 93.103 0 139.179-47.019-1.152-89.259 21.376-105.685 61.013-16.427 39.68-2.475 85.504 31.573 117.888-27.153 38.003-60.399 71.262-98.389 98.432-32.427-34.048-78.251-48-117.931-31.573s-62.165 58.709-61.013 105.685c-46.080 7.663-93.103 7.663-139.179 0 1.152-47.019-21.377-89.259-61.015-105.685-39.68-16.427-85.504-2.475-117.888 31.573-38.004-27.153-71.262-60.399-98.432-98.389 34.048-32.427 48-78.251 31.573-117.931s-58.709-62.165-105.685-61.013v-0.043zM512 640c33.946 0 66.505-13.487 90.509-37.491s37.491-56.559 37.491-90.509c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.49-90.509-37.49c-33.95 0-66.505 13.486-90.511 37.49-24.005 24.005-37.49 56.564-37.49 90.509 0 33.95 13.486 66.505 37.49 90.509 24.006 24.004 56.561 37.491 90.511 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["settings-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1998,
+ "id": 351,
+ "name": "settings-5-fill",
+ "prevSize": 32,
+ "code": 61595
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1947
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 170.667h213.333v85.333h-85.333v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640h-85.333v-85.333h213.333v-85.333h426.667v85.333zM384 384v341.333h85.333v-341.333h-85.333zM554.667 384v341.333h85.333v-341.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-6-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 1999,
+ "id": 350,
+ "name": "delete-bin-6-fill",
+ "prevSize": 32,
+ "code": 61596
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1948
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h213.333v85.333h-85.333v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-554.667h-85.333v-85.333h213.333zM384 170.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["delete-bin-7-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2000,
+ "id": 349,
+ "name": "delete-bin-7-fill",
+ "prevSize": 32,
+ "code": 61597
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1949
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.333 469.333h-170.667v85.333h170.667v170.667h85.333v-170.667h170.667v-85.333h-170.667v-170.667h-85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["add-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2001,
+ "id": 348,
+ "name": "add-circle-fill",
+ "prevSize": 32,
+ "code": 61598
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1950
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 810.667h682.667v-213.333h85.333v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256h85.333v213.333zM512 426.667h-128c-40.403-0.028-80.237 9.519-116.236 27.861-36 18.338-67.14 44.954-90.868 77.653 15.146-77.76 56.859-147.837 117.994-198.222s137.887-77.946 217.11-77.959v-170.667l341.333 256-341.333 256v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["share-forward-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2002,
+ "id": 347,
+ "name": "share-forward-2-fill",
+ "prevSize": 32,
+ "code": 61599
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1951
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 170.667v85.333h-42.667l-256 384v298.667h-170.667v-298.667l-256-384h-42.667v-85.333h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["filter-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2003,
+ "id": 346,
+ "name": "filter-fill",
+ "prevSize": 32,
+ "code": 61600
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1952
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 106.667l234.667 405.333-234.667 405.333h-469.333l-234.667-405.333 234.667-405.333h469.333zM469.333 640v85.333h85.333v-85.333h-85.333zM469.333 298.667v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["spam-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2004,
+ "id": 345,
+ "name": "spam-fill",
+ "prevSize": 32,
+ "code": 61601
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1953
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768v85.333h-768v-85.333h768zM296.533 151.466v422.4l-211.2-211.2 211.2-211.2zM896 469.333v85.333h-384v-85.333h384zM896 170.666v85.333h-384v-85.333h384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-fold-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2005,
+ "id": 344,
+ "name": "menu-fold-fill",
+ "prevSize": 32,
+ "code": 61602
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1954
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c-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.333zM512 725.333c-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.333zM512 426.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.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["more-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2006,
+ "id": 343,
+ "name": "more-2-fill",
+ "prevSize": 32,
+ "code": 61603
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1955
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 85.333c11.319 0 22.17 4.495 30.17 12.497 8.004 8.002 12.497 18.854 12.497 30.17v128c0 11.316-4.493 22.168-12.497 30.17-8 8.001-18.85 12.497-30.17 12.497-11.315 0-22.165-4.495-30.17-12.497-8-8.002-12.497-18.854-12.497-30.17v-128c0-11.316 4.497-22.168 12.497-30.17 8.004-8.001 18.854-12.497 30.17-12.497zM511.996 725.333c11.319 0 22.17 4.497 30.17 12.497 8.004 8 12.497 18.854 12.497 30.17v128c0 11.315-4.493 22.17-12.497 30.17-8 8-18.85 12.497-30.17 12.497-11.315 0-22.165-4.497-30.17-12.497-8-8-12.497-18.854-12.497-30.17v-128c0-11.315 4.497-22.17 12.497-30.17 8.004-8 18.854-12.497 30.17-12.497zM881.489 298.667c5.658 9.8 7.194 21.446 4.262 32.375-2.927 10.93-10.078 20.249-19.878 25.907l-110.848 64c-4.851 2.846-10.223 4.703-15.795 5.466-5.577 0.764-11.247 0.414-16.687-1.024s-10.543-3.938-15.010-7.356c-4.471-3.418-8.222-7.686-11.034-12.559-2.816-4.873-4.638-10.255-5.363-15.834s-0.337-11.248 1.135-16.678c1.476-5.431 4.011-10.516 7.458-14.962s7.74-8.169 12.629-10.95l110.848-64c9.801-5.658 21.449-7.191 32.375-4.262 10.931 2.929 20.25 10.079 25.907 19.878zM327.251 618.667c5.658 9.801 7.191 21.444 4.262 32.375s-10.079 20.25-19.878 25.907l-110.848 64c-4.854 2.846-10.223 4.702-15.799 5.466s-11.246 0.414-16.686-1.024c-5.44-1.438-10.542-3.938-15.011-7.356s-8.219-7.689-11.033-12.561c-2.814-4.873-4.635-10.253-5.361-15.834s-0.34-11.247 1.135-16.678c1.474-5.431 4.008-10.513 7.456-14.963 3.447-4.446 7.741-8.166 12.632-10.948l110.848-64c9.8-5.658 21.446-7.189 32.375-4.262s20.249 10.078 25.907 19.878zM881.489 725.333c-5.658 9.801-14.976 16.951-25.907 19.878-10.927 2.927-22.575 1.395-32.375-4.262l-110.848-64c-9.719-5.7-16.789-15.010-19.669-25.903s-1.335-22.481 4.301-32.239c5.632-9.758 14.895-16.892 25.771-19.84 10.871-2.953 22.473-1.485 32.265 4.083l110.848 64c9.801 5.658 16.951 14.976 19.878 25.907 2.931 10.931 1.395 22.575-4.262 32.375zM327.251 405.333c-5.658 9.799-14.977 16.95-25.907 19.878-10.93 2.927-22.576 1.395-32.375-4.262l-110.848-64c-4.892-2.781-9.185-6.502-12.632-10.95s-5.981-9.532-7.456-14.962c-1.474-5.43-1.86-11.098-1.135-16.678s2.547-10.961 5.361-15.834c2.813-4.873 6.563-9.141 11.033-12.559s9.571-5.918 15.011-7.356c5.44-1.438 11.111-1.786 16.686-1.024s10.944 2.62 15.799 5.466l110.848 64c9.799 5.658 16.95 14.977 19.878 25.907s1.395 22.576-4.262 32.375z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["loader-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2007,
+ "id": 342,
+ "name": "loader-fill",
+ "prevSize": 32,
+ "code": 61604
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1956
+ },
+ {
+ "icon": {
+ "paths": [
+ "M288 106.667c23.813 0 47.393 4.69 69.393 13.803s41.99 22.47 58.829 39.308c16.84 16.838 30.195 36.828 39.308 58.829s13.803 45.58 13.803 69.393v181.333h-181.333c-48.093 0-94.215-19.106-128.222-53.111-34.007-34.007-53.111-80.129-53.111-128.222s19.105-94.215 53.111-128.222c34.007-34.007 80.129-53.111 128.222-53.111zM288 554.667h181.333v181.333c0 35.866-10.637 70.925-30.562 100.745-19.923 29.82-48.244 53.060-81.378 66.786s-69.594 17.314-104.77 10.317c-35.175-6.997-67.486-24.265-92.846-49.626s-42.63-57.668-49.627-92.847c-6.996-35.174-3.406-71.633 10.319-104.768s36.967-61.453 66.787-81.378c29.82-19.925 64.879-30.562 100.743-30.562zM736 106.667c48.094 0 94.217 19.105 128.222 53.111s53.111 80.129 53.111 128.222c0 48.093-19.106 94.215-53.111 128.222-34.005 34.005-80.128 53.111-128.222 53.111h-181.333v-181.333c0-48.093 19.106-94.215 53.111-128.222s80.128-53.111 128.222-53.111zM554.667 554.667h181.333c35.866 0 70.925 10.637 100.745 30.562s53.060 48.243 66.786 81.378c13.726 33.135 17.314 69.594 10.317 104.768-6.993 35.179-24.265 67.486-49.626 92.847s-57.668 42.628-92.847 49.626c-35.174 6.997-71.633 3.409-104.768-10.317s-61.453-36.966-81.378-66.786c-19.925-29.82-30.562-64.879-30.562-100.745v-181.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["apps-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2008,
+ "id": 341,
+ "name": "apps-fill",
+ "prevSize": 32,
+ "code": 61605
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1957
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768v85.333h-768v-85.333h768zM727.467 151.466l211.2 211.2-211.2 211.2v-422.4zM512 469.333v85.333h-384v-85.333h384zM512 170.666v85.333h-384v-85.333h384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["menu-unfold-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2009,
+ "id": 340,
+ "name": "menu-unfold-fill",
+ "prevSize": 32,
+ "code": 61606
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1958
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM298.667 469.333v-128l-213.333 170.667 213.333 170.667v-128h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["logout-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2010,
+ "id": 339,
+ "name": "logout-circle-fill",
+ "prevSize": 32,
+ "code": 61607
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1959
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM554.667 512h128l-170.667-170.667-170.667 170.667h128v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["arrow-up-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2011,
+ "id": 338,
+ "name": "arrow-up-circle-fill",
+ "prevSize": 32,
+ "code": 61608
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1960
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.323 708.992l182.741 182.699-60.373 60.373-182.699-182.741c-67.981 54.494-152.533 84.134-239.659 84.011-211.968 0-384-172.032-384-384s172.032-384 384-384c211.968 0 384 172.032 384 384 0.124 87.125-29.517 171.678-84.011 239.659zM710.784 384c-17.651-49.926-50.351-93.15-93.594-123.716s-94.903-46.969-147.857-46.95c-141.44 0-256 114.56-256 256h85.333c0.009-29.581 7.705-58.654 22.334-84.366s35.688-47.181 61.113-62.303c25.425-15.122 54.345-23.377 83.922-23.956s58.795 6.537 84.791 20.652l-38.827 64.64h198.784zM725.333 469.333h-85.333c-0.009 29.581-7.706 58.654-22.332 84.365-14.63 25.715-35.691 47.181-61.116 62.306-25.425 15.121-54.345 23.373-83.921 23.953s-58.794-6.537-84.791-20.651l38.827-64.64h-198.784c17.652 49.929 50.352 93.15 93.595 123.716s94.901 46.967 147.856 46.95c141.44 0 256-114.56 256-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["find-replace-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2012,
+ "id": 337,
+ "name": "find-replace-fill",
+ "prevSize": 32,
+ "code": 61609
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1961
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 298.667v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-170.667v170.368c0 23.723-19.157 42.965-42.965 42.965h-554.069c-5.644 0.004-11.233-1.101-16.449-3.26-5.215-2.155-9.954-5.321-13.945-9.314-3.991-3.989-7.155-8.725-9.312-13.943-2.157-5.214-3.265-10.803-3.259-16.448l0.128-554.069c0-23.723 19.157-42.965 42.965-42.965h170.24zM384 298.667h298.368c23.723 0 42.965 19.157 42.965 42.965v298.368h128v-469.333h-469.333v128zM362.795 768l241.323-241.365-60.331-60.331-180.992 181.035-90.581-90.539-60.331 60.331 150.912 150.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["checkbox-multiple-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2013,
+ "id": 336,
+ "name": "checkbox-multiple-fill",
+ "prevSize": 32,
+ "code": 61610
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1962
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 853.333h-170.667v85.333h-85.333v-85.333h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667v-60.16c0-3.097 0.678-6.156 1.98-8.966s3.2-5.301 5.564-7.303c2.364-2.001 5.133-3.465 8.119-4.288s6.114-0.986 9.169-0.478l451.499 75.264c9.963 1.656 19.017 6.793 25.545 14.496 6.532 7.703 10.121 17.473 10.125 27.573v91.861h42.667v85.333h-42.667v298.667h42.667v85.333h-42.667v91.861c-0.004 10.099-3.593 19.87-10.125 27.571-6.528 7.706-15.582 12.843-25.545 14.498l-49.664 8.277v71.125h-85.333v-56.875l-316.501 52.736c-3.055 0.508-6.182 0.346-9.169-0.478s-5.756-2.287-8.119-4.288c-2.364-2.001-4.262-4.493-5.564-7.305-1.301-2.807-1.98-5.867-1.98-8.964v-60.16zM512 837.973l341.333-56.917v-580.779l-341.333-56.875v694.571zM704 597.333c-35.328 0-64-47.787-64-106.667s28.672-106.667 64-106.667c35.328 0 64 47.787 64 106.667s-28.672 106.667-64 106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["safe-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2014,
+ "id": 335,
+ "name": "safe-2-fill",
+ "prevSize": 32,
+ "code": 61611
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1963
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM640 298.667v85.333h-170.667v85.333h170.667v85.333l149.333-128-149.333-128zM384 725.333v-85.333h170.667v-85.333h-170.667v-85.333l-149.333 128 149.333 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["swap-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2015,
+ "id": 334,
+ "name": "swap-box-fill",
+ "prevSize": 32,
+ "code": 61612
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1964
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM384 554.667v85.333h-42.667v85.333h341.333v-85.333h-213.333v-85.333h128v-85.333h-128v-42.667c-0.009-13.819 4.454-27.271 12.723-38.343s19.9-19.171 33.152-23.084c13.252-3.914 27.418-3.433 40.375 1.372s24.013 13.674 31.509 25.282l84.736-21.163c-13.005-32.115-36.77-58.711-67.23-75.232-30.455-16.521-65.707-21.941-99.721-15.331s-64.67 24.838-86.72 51.564c-22.052 26.726-34.127 60.286-34.159 94.935v42.667h-42.667v85.333h42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-pound-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2016,
+ "id": 333,
+ "name": "money-pound-circle-fill",
+ "prevSize": 32,
+ "code": 61613
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1965
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM298.667 384h85.333v170.667h85.333v-170.667h85.333l-128-149.333-128 149.333zM725.333 640h-85.333v-170.667h-85.333v170.667h-85.333l128 149.333 128-149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["swap-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2017,
+ "id": 332,
+ "name": "swap-fill",
+ "prevSize": 32,
+ "code": 61614
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1966
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 298.667h-853.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM938.667 384v469.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-469.333h853.333zM469.333 597.333v-106.667l-192 192h448v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["refund-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2018,
+ "id": 331,
+ "name": "refund-fill",
+ "prevSize": 32,
+ "code": 61615
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1967
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM554.667 554.667v-42.667h128v-85.333h-110.336l90.539-90.496-60.373-60.373-90.496 90.539-90.496-90.539-60.373 60.416 90.539 90.453h-110.336v85.333h128v42.667h-128v85.333h128v85.333h85.333v-85.333h128v-85.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-cny-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2019,
+ "id": 330,
+ "name": "money-cny-box-fill",
+ "prevSize": 32,
+ "code": 61616
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1968
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 384h-170.667v85.333h384l-213.333-213.333v128zM298.667 554.667l213.333 213.333v-128h170.667v-85.333h-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2020,
+ "id": 329,
+ "name": "exchange-box-fill",
+ "prevSize": 32,
+ "code": 61617
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1969
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 682.667h85.333v-512h-426.667v85.333h341.333v426.667zM725.333 768v128c0 23.552-19.2 42.667-42.965 42.667h-511.403c-5.626 0.034-11.204-1.045-16.413-3.174s-9.945-5.265-13.937-9.229c-3.993-3.964-7.162-8.678-9.327-13.875-2.164-5.193-3.282-10.761-3.287-16.388l0.128-597.333c0-23.552 19.2-42.667 42.965-42.667h127.573v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128zM298.667 682.667v85.333h85.333v42.667h85.333v-42.667h21.333c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241h-128c-5.658 0-11.084-2.249-15.085-6.246-4.001-4.002-6.249-9.429-6.249-15.087s2.248-11.085 6.249-15.087c4-3.998 9.427-6.246 15.085-6.246h192v-85.333h-85.333v-42.667h-85.333v42.667h-21.333c-28.29 0-55.421 11.238-75.425 31.241-20.004 20.006-31.242 47.138-31.242 75.426s11.238 55.42 31.242 75.426c20.004 20.002 47.135 31.241 75.425 31.241h128c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087s-2.249 11.085-6.246 15.087c-4.002 3.998-9.429 6.246-15.087 6.246h-192z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["currency-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2021,
+ "id": 328,
+ "name": "currency-fill",
+ "prevSize": 32,
+ "code": 61618
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1970
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM384 554.667v85.333h-42.667v85.333h341.333v-85.333h-213.333v-85.333h128v-85.333h-128v-42.667c-0.009-13.819 4.454-27.271 12.723-38.343s19.9-19.171 33.152-23.084c13.252-3.914 27.418-3.433 40.375 1.372s24.013 13.674 31.509 25.282l84.736-21.163c-13.005-32.115-36.77-58.711-67.23-75.232-30.455-16.521-65.707-21.941-99.721-15.331s-64.67 24.838-86.72 51.564c-22.052 26.726-34.127 60.286-34.159 94.935v42.667h-42.667v85.333h42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-pound-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2022,
+ "id": 327,
+ "name": "money-pound-box-fill",
+ "prevSize": 32,
+ "code": 61619
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1971
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 896c0-16.973-6.741-33.254-18.743-45.257s-28.283-18.743-45.257-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257h-213.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h213.333c0 16.974 6.743 33.253 18.745 45.255s28.281 18.745 45.255 18.745c16.974 0 33.254-6.743 45.257-18.745s18.743-28.281 18.743-45.255h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-426.667zM405.333 448c16.974 0 33.254-6.741 45.257-18.743 12.002-12.004 18.743-28.283 18.743-45.257s-6.741-33.253-18.743-45.255c-12.002-12.002-28.283-18.745-45.257-18.745s-33.253 6.743-45.255 18.745c-12.002 12.002-18.745 28.281-18.745 45.255s6.743 33.253 18.745 45.257c12.002 12.002 28.281 18.743 45.255 18.743zM405.333 704c16.974 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.283-18.743-45.257-18.743c-16.974 0-33.253 6.741-45.255 18.743s-18.745 28.284-18.745 45.257c0 16.973 6.743 33.254 18.745 45.257s28.281 18.743 45.255 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2023,
+ "id": 326,
+ "name": "coupon-3-fill",
+ "prevSize": 32,
+ "code": 61620
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1972
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 128v768h-469.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h469.333zM682.667 128h213.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-213.333v-768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2024,
+ "id": 325,
+ "name": "coupon-2-fill",
+ "prevSize": 32,
+ "code": 61621
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1973
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 330.965l-181.035 181.035 181.035 181.035 181.035-181.035-181.035-181.035z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copper-coin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2025,
+ "id": 324,
+ "name": "copper-coin-fill",
+ "prevSize": 32,
+ "code": 61622
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1974
+ },
+ {
+ "icon": {
+ "paths": [
+ "M655.616 146.688l137.003 237.312h146.048v85.333h-49.792l-32.299 387.541c-0.887 10.662-5.747 20.599-13.619 27.849-7.872 7.245-18.176 11.273-28.877 11.277h-604.16c-10.699-0.004-21.005-4.032-28.876-11.277-7.871-7.249-12.732-17.186-13.62-27.849l-32.341-387.541h-49.749v-85.333h146.005l137.045-237.312 73.899 42.667-112.384 194.645h364.16l-112.341-194.645 73.899-42.667zM554.667 554.667h-85.333v170.667h85.333v-170.667zM384 554.667h-85.333v170.667h85.333v-170.667zM725.333 554.667h-85.333v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-basket-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2026,
+ "id": 323,
+ "name": "shopping-basket-2-fill",
+ "prevSize": 32,
+ "code": 61623
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1975
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 426.667v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h853.333zM938.667 341.333h-853.333v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667zM640 682.667v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bank-card-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2027,
+ "id": 322,
+ "name": "bank-card-fill",
+ "prevSize": 32,
+ "code": 61624
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1976
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 405.333v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241zM384 384v85.333h256v-85.333h-256zM384 554.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2028,
+ "id": 321,
+ "name": "coupon-fill",
+ "prevSize": 32,
+ "code": 61625
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1977
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-99.478 0.145-195.855-34.611-272.341-98.219l-10.411-8.917 38.485-81.152c54.954 56.324 127.681 91.93 205.871 100.791 78.191 8.862 157.043-9.562 223.211-52.16 66.163-42.594 115.58-106.743 139.883-181.589 24.299-74.846 21.995-155.789-6.528-229.129s-81.506-134.573-149.99-173.335c-68.484-38.761-148.254-52.67-225.813-39.372-77.562 13.298-148.144 52.986-199.803 112.347s-81.221 134.747-83.683 213.4l-0.213 10.667h106.667l-115.456 243.883c-49.954-71.505-76.679-156.655-76.544-243.883 0-235.648 191.019-426.667 426.666-426.667zM554.667 256v85.333h106.667v85.333h-234.667c-5.33-0.010-10.472 1.975-14.412 5.568s-6.391 8.529-6.873 13.837c-0.482 5.312 1.042 10.607 4.271 14.848 3.229 4.245 7.929 7.121 13.175 8.073l3.84 0.341h170.667c28.292 0 55.42 11.238 75.426 31.241 20.002 20.006 31.241 47.138 31.241 75.426s-11.238 55.42-31.241 75.426c-20.006 20.002-47.134 31.241-75.426 31.241h-42.667v85.333h-85.333v-85.333h-106.666v-85.333h234.666c5.333 0.009 10.475-1.975 14.413-5.568s6.391-8.529 6.874-13.837c0.482-5.312-1.041-10.607-4.271-14.848-3.23-4.245-7.927-7.121-13.175-8.073l-3.84-0.341h-170.667c-28.289 0-55.42-11.238-75.424-31.241-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.424-31.242h42.667v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["refund-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2029,
+ "id": 320,
+ "name": "refund-2-fill",
+ "prevSize": 32,
+ "code": 61626
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1978
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 554.667v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667h682.667zM618.667 85.333c25.199-0.009 49.993 6.361 72.073 18.514 22.076 12.154 40.717 29.697 54.187 50.996s21.333 45.66 22.852 70.815c1.523 25.155-3.349 50.286-14.157 73.051l142.379-0.043c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497l142.379 0.043c-15.2-31.928-18.576-68.215-9.527-102.4s29.935-64.049 58.94-84.277c29.005-20.228 64.247-29.507 99.453-26.184 35.207 3.322 68.090 19.031 92.799 44.328 13.867-14.228 30.451-25.528 48.764-33.231 18.317-7.703 37.99-11.651 57.86-11.612zM405.333 170.667c-16.436 0.008-32.239 6.339-44.134 17.681s-18.97 26.826-19.76 43.243c-0.79 16.417 4.766 32.509 15.518 44.94s25.873 20.25 42.232 21.836l6.144 0.299h64v-64c0-15.91-5.926-31.249-16.623-43.026s-25.395-19.148-41.233-20.675l-6.144-0.299zM618.667 170.667l-6.144 0.299c-14.788 1.417-28.625 7.935-39.134 18.437s-17.037 24.332-18.466 39.121l-0.256 6.144v64h64l6.144-0.299c15.829-1.535 30.524-8.909 41.212-20.685 10.692-11.776 16.614-27.111 16.614-43.016s-5.922-31.239-16.614-43.016c-10.688-11.776-25.382-19.151-41.212-20.686l-6.144-0.299z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gift-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2030,
+ "id": 319,
+ "name": "gift-2-fill",
+ "prevSize": 32,
+ "code": 61627
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1979
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.666 273.664l-138.368-138.325 60.373-60.373 138.325 138.368h650.326c6.652-0 13.21 1.553 19.153 4.538 5.939 2.985 11.106 7.317 15.074 12.652 3.972 5.335 6.639 11.523 7.795 18.073 1.152 6.549 0.759 13.278-1.148 19.648l-102.4 341.333c-2.637 8.794-8.034 16.503-15.398 21.982-7.364 5.483-16.299 8.439-25.476 8.439h-522.923v85.333h469.334v85.333h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-494.336zM234.666 981.333c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743c16.974 0 33.252 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743zM746.667 981.333c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743c16.973 0 33.25 6.741 45.252 18.743 12.006 12.002 18.748 28.284 18.748 45.257s-6.741 33.254-18.748 45.257c-12.002 12.002-28.279 18.743-45.252 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-cart-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2031,
+ "id": 318,
+ "name": "shopping-cart-2-fill",
+ "prevSize": 32,
+ "code": 61628
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1980
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM554.667 554.667v-42.667h128v-85.333h-110.336l90.539-90.496-60.373-60.373-90.496 90.539-90.496-90.539-60.373 60.416 90.539 90.453h-110.336v85.333h128v42.667h-128v85.333h128v85.333h85.333v-85.333h128v-85.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-cny-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2032,
+ "id": 317,
+ "name": "money-cny-circle-fill",
+ "prevSize": 32,
+ "code": 61629
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1981
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 298.667l360.32-240.213c7.010-4.678 15.253-7.174 23.68-7.174s16.67 2.496 23.68 7.174l360.32 240.213v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333zM512 469.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["price-tag-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2033,
+ "id": 316,
+ "name": "price-tag-fill",
+ "prevSize": 32,
+ "code": 61630
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1982
+ },
+ {
+ "icon": {
+ "paths": [
+ "M826.667 644.395c27.686-65.779 34.057-138.581 18.223-208.171-15.834-69.587-53.082-132.463-106.505-179.787-53.419-47.323-120.329-76.714-191.322-84.040-70.989-7.326-142.49 7.781-204.45 43.197l-42.325-74.112c64.752-37.008 138.077-56.39 212.659-56.21s147.814 19.914 212.386 57.234c191.573 110.592 264.96 347.392 175.659 544.853l57.259 33.024-177.707 94.464-7.040-201.131 53.163 30.677zM197.334 379.605c-27.685 65.779-34.057 138.581-18.222 208.171s53.081 132.463 106.502 179.785c53.421 47.326 120.331 76.715 191.322 84.041 70.989 7.326 142.49-7.778 204.45-43.196l42.325 74.112c-64.751 37.009-138.078 56.388-212.659 56.209s-147.813-19.913-212.386-57.233c-191.573-110.592-264.96-347.392-175.659-544.853l-57.301-32.981 177.707-94.464 7.040 201.131-53.163-30.677 0.043-0.043zM572.373 632.661l-120.789-120.661-120.661 120.661-60.331-60.331 181.034-180.992 120.704 120.661 120.704-120.661 60.331 60.331-180.992 180.992z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-funds-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2034,
+ "id": 315,
+ "name": "exchange-funds-line",
+ "prevSize": 32,
+ "code": 61631
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1983
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 896h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34h298.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339zM256 341.333v341.333h85.333v-341.333h-85.333zM682.667 341.333v341.333h85.333v-341.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2035,
+ "id": 314,
+ "name": "coupon-4-fill",
+ "prevSize": 32,
+ "code": 61632
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1984
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 597.333v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM384 256v85.333h256v-85.333h-256zM384 682.667v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coupon-5-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2036,
+ "id": 313,
+ "name": "coupon-5-fill",
+ "prevSize": 32,
+ "code": 61633
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1985
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM428.8 469.333c3.695-18.146 12.053-35.021 24.252-48.957 12.194-13.937 27.81-24.459 45.308-30.529 17.493-6.071 36.271-7.481 54.477-4.093 18.21 3.389 35.221 11.459 49.361 23.418l72.576-48.341c-24.922-27.146-57.131-46.547-92.779-55.886s-73.229-8.222-108.262 3.218c-35.029 11.44-66.027 32.719-89.292 61.298s-37.815 63.251-41.912 99.872h-43.861v85.333h43.819c4.090 36.634 18.638 71.313 41.905 99.9s54.274 49.873 89.312 61.312c35.038 11.443 72.631 12.557 108.288 3.209 35.652-9.348 67.861-28.757 92.783-55.919l-72.576-48.384c-14.14 11.959-31.147 20.032-49.353 23.42-18.202 3.392-36.975 1.984-54.473-4.079-17.498-6.067-33.109-16.585-45.312-30.515-12.198-13.931-20.557-30.801-24.26-48.943l211.2 0.043v-85.333l-211.2-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-euro-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2037,
+ "id": 312,
+ "name": "money-euro-circle-fill",
+ "prevSize": 32,
+ "code": 61634
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1986
+ },
+ {
+ "icon": {
+ "paths": [
+ "M981.333 512v85.333c0 141.397-210.133 256-469.333 256-254.592 0-461.824-110.549-469.12-248.448l-0.213-7.552v-85.333c0 141.397 210.133 256 469.333 256s469.333-114.603 469.333-256zM512 170.667c259.2 0 469.333 114.603 469.333 256s-210.133 256-469.333 256c-259.2 0-469.333-114.603-469.333-256s210.133-256 469.333-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2038,
+ "id": 311,
+ "name": "coin-fill",
+ "prevSize": 32,
+ "code": 61635
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1987
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 85.333c78.080-0.037 153.813 26.695 214.566 75.739s102.857 117.434 119.287 193.764c16.431 76.332 6.195 155.986-28.996 225.682-35.196 69.7-93.218 125.222-164.399 157.316-22.75 50.3-57.365 94.332-100.868 128.316-43.507 33.988-94.605 56.913-148.915 66.812-54.315 9.903-110.216 6.481-162.915-9.967s-100.622-45.436-139.659-84.471c-39.037-39.036-68.023-86.959-84.471-139.661-16.449-52.698-19.869-108.599-9.969-162.91 9.9-54.315 32.827-105.412 66.813-148.918s78.016-78.118 128.317-100.87c27.057-59.866 70.809-110.656 126.009-146.278 55.199-35.622 119.506-54.564 185.2-54.554zM469.333 384h-85.332v42.667c-27.729-0.067-54.394 10.667-74.343 29.922-19.95 19.26-31.616 45.53-32.526 73.246-0.91 27.712 9.008 54.69 27.651 75.217 18.643 20.523 44.547 32.981 72.22 34.735l6.997 0.213h85.332l3.84 0.341c4.919 0.892 9.37 3.482 12.574 7.317s4.958 8.674 4.958 13.675c0 5.001-1.754 9.839-4.958 13.675s-7.654 6.426-12.574 7.317l-3.84 0.341h-170.665v85.333h85.333v42.667h85.332v-42.667c27.729 0.068 54.396-10.667 74.342-29.922 19.951-19.26 31.616-45.53 32.529-73.246 0.909-27.712-9.011-54.69-27.652-75.217-18.645-20.523-44.548-32.981-72.222-34.735l-6.997-0.213h-85.332l-3.84-0.341c-4.919-0.892-9.369-3.482-12.573-7.317s-4.96-8.674-4.96-13.675c0-5.001 1.755-9.839 4.96-13.675s7.654-6.426 12.573-7.317l3.84-0.341h170.665v-85.333h-85.333v-42.667zM597.333 170.667c-36.151-0.042-71.902 7.592-104.883 22.398-32.977 14.806-62.438 36.447-86.433 63.49 48.225-2.927 96.519 4.416 141.695 21.545s86.199 43.652 120.363 77.817c34.159 34.165 60.676 75.192 77.803 120.368 17.122 45.18 24.461 93.474 21.525 141.7 38.793-34.492 66.185-79.962 78.541-130.377 12.361-50.415 9.097-103.398-9.348-151.918-18.449-48.52-51.209-90.286-93.939-119.759s-93.414-45.258-145.323-45.264z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["coins-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2039,
+ "id": 310,
+ "name": "coins-fill",
+ "prevSize": 32,
+ "code": 61636
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1988
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 469.333v384c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384h853.333zM938.667 298.667h-853.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bank-card-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2040,
+ "id": 309,
+ "name": "bank-card-2-fill",
+ "prevSize": 32,
+ "code": 61637
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1989
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667c28.015 0 55.757 5.518 81.638 16.239s49.399 26.435 69.21 46.245c19.81 19.81 35.524 43.327 46.246 69.21s16.239 53.624 16.239 81.639v85.333h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-85.333c0-56.579 22.476-110.842 62.484-150.849s94.269-62.484 150.849-62.484zM725.333 469.333h-85.333v42.667c0.013 10.876 4.177 21.333 11.639 29.244 7.467 7.906 17.673 12.663 28.527 13.303 10.854 0.636 21.547-2.897 29.884-9.877 8.341-6.98 13.7-16.879 14.985-27.678l0.299-4.992v-42.667zM384 469.333h-85.333v42.667c0.012 10.876 4.176 21.333 11.642 29.244 7.465 7.906 17.668 12.663 28.524 13.303 10.857 0.636 21.546-2.897 29.885-9.877s13.699-16.879 14.983-27.678l0.299-4.992v-42.667zM512 128c-32.649-0.002-64.064 12.473-87.819 34.871s-38.052 53.027-39.968 85.62l-0.213 7.509v85.333h256v-85.333c0-32.649-12.471-64.064-34.871-87.819-22.396-23.755-53.026-38.052-85.619-39.968l-7.509-0.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-bag-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2041,
+ "id": 308,
+ "name": "shopping-bag-fill",
+ "prevSize": 32,
+ "code": 61638
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1990
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ticket-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2042,
+ "id": 307,
+ "name": "ticket-fill",
+ "prevSize": 32,
+ "code": 61639
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1991
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 384h-170.667v85.333h384l-213.333-213.333v128zM298.667 554.667l213.333 213.333v-128h170.667v-85.333h-384z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2043,
+ "id": 306,
+ "name": "exchange-fill",
+ "prevSize": 32,
+ "code": 61640
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1992
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.467 221.867l179.2 119.467 178.602-250.027c3.947-5.531 9.156-10.039 15.198-13.15s12.74-4.733 19.533-4.733c6.797 0 13.491 1.623 19.533 4.733s11.251 7.619 15.198 13.15l178.603 250.027 179.2-119.467c6.784-4.512 14.716-6.989 22.861-7.137 8.141-0.148 16.158 2.039 23.1 6.301s12.518 10.423 16.073 17.754c3.55 7.331 4.928 15.525 3.972 23.615l-70.101 595.925c-1.225 10.381-6.212 19.947-14.020 26.893-7.812 6.942-17.899 10.782-28.348 10.782h-692.138c-10.451 0-20.537-3.84-28.346-10.782-7.81-6.946-12.799-16.512-14.022-26.893l-70.101-595.968c-0.947-8.086 0.439-16.274 3.994-23.598s9.132-13.478 16.072-17.735c6.94-4.257 14.953-6.44 23.092-6.291s16.067 2.624 22.846 7.133zM512 640c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-crown-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2044,
+ "id": 305,
+ "name": "vip-crown-2-fill",
+ "prevSize": 32,
+ "code": 61641
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1993
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 85.333c29.965-0.004 59.401 7.882 85.35 22.863s47.501 36.532 62.477 62.482c14.98 25.951 22.865 55.389 22.861 85.353-0.009 29.964-7.902 59.398-22.891 85.344l193.536-0.043v85.333h-85.333v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667h-85.333v-85.333l193.536 0.043c-21.169-36.655-27.96-79.869-19.056-121.251s32.869-77.978 67.241-102.682c34.372-24.704 76.698-35.755 118.759-31.005 42.063 4.75 80.855 24.961 108.853 56.709 15.983-18.202 35.674-32.778 57.749-42.749s46.029-15.107 70.251-15.065zM554.667 426.667h-85.333v426.667h85.333v-426.667zM384 170.667c-22.143-0.099-43.458 8.413-59.441 23.739s-25.383 36.264-26.214 58.392c-0.831 22.128 6.973 43.712 21.761 60.193s35.405 26.568 57.494 28.129l6.4 0.213h85.333v-85.333c0-20.392-7.3-40.111-20.582-55.584s-31.666-25.679-51.823-28.768l-6.571-0.768-6.357-0.213zM640 170.667c-21.53-0.007-42.266 8.124-58.048 22.763-15.787 14.639-25.459 34.703-27.072 56.171l-0.213 6.4v85.333h85.333c21.53 0.007 42.266-8.124 58.048-22.763 15.787-14.639 25.459-34.703 27.072-56.171l0.213-6.4c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.993-60.339-24.993z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gift-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2045,
+ "id": 304,
+ "name": "gift-fill",
+ "prevSize": 32,
+ "code": 61642
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1994
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 853.333h-512v85.333h-85.333v-85.333h-42.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-42.667v85.333h-85.333v-85.333zM469.333 591.957v133.376h85.333v-133.376c40.128-10.483 75.068-35.217 98.295-69.577s33.156-75.998 27.93-117.142c-5.222-41.144-25.246-78.98-56.324-106.443s-71.091-42.675-112.567-42.796c-41.57-0.041-81.724 15.090-112.927 42.554s-51.311 65.373-56.548 106.61c-5.237 41.235 4.756 82.967 28.104 117.361s58.444 59.081 98.705 69.431zM512 512c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["safe-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2046,
+ "id": 303,
+ "name": "safe-fill",
+ "prevSize": 32,
+ "code": 61643
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1995
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM362.667 597.333v85.333h106.667v85.333h85.333v-85.333h42.667c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241h-170.667c-5.658 0-11.084-2.249-15.085-6.246-4.001-4.002-6.249-9.429-6.249-15.087s2.248-11.085 6.249-15.087c4-3.998 9.427-6.246 15.085-6.246h234.667v-85.333h-106.667v-85.333h-85.333v85.333h-42.667c-28.29 0-55.421 11.238-75.425 31.242s-31.242 47.135-31.242 75.425c0 28.288 11.238 55.42 31.242 75.426 20.004 20.002 47.135 31.241 75.425 31.241h170.667c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087s-2.249 11.085-6.246 15.087c-4.002 3.998-9.429 6.246-15.087 6.246h-234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-dollar-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2047,
+ "id": 302,
+ "name": "money-dollar-box-fill",
+ "prevSize": 32,
+ "code": 61644
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1996
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 384h594.688l21.333-85.333h-530.688v-85.333h585.387c6.485 0 12.885 1.479 18.714 4.324s10.931 6.981 14.921 12.094c3.994 5.113 6.763 11.068 8.107 17.413s1.22 12.913-0.354 19.204l-106.667 426.667c-2.313 9.225-7.637 17.417-15.138 23.266-7.497 5.854-16.738 9.033-26.249 9.033h-606.72c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512h-85.333v-85.333h128c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v256zM256 981.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.708-24.994 60.34-24.994c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994zM768 981.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.339c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-cart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2048,
+ "id": 301,
+ "name": "shopping-cart-fill",
+ "prevSize": 32,
+ "code": 61645
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1997
+ },
+ {
+ "icon": {
+ "paths": [
+ "M166.272 762.027l166.827-166.827 120.704 120.661 195.029-194.987 76.501 76.459v-213.333h-213.333l76.501 76.501-134.699 134.699-120.661-120.704-211.029 211.029c-24.323-54.613-36.855-113.741-36.779-173.525 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-67.499 0.043-134.042-15.949-194.15-46.656-60.108-30.711-112.060-75.264-151.578-129.984z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["funds-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2049,
+ "id": 300,
+ "name": "funds-fill",
+ "prevSize": 32,
+ "code": 61646
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1998
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 253.312c-75.627 85.886-177.877 143.921-290.389 164.821-9.182-16.807-22.72-30.833-39.189-40.604s-35.268-14.927-54.421-14.927c-19.153 0-37.952 5.156-54.421 14.927s-30.007 23.797-39.189 40.604c-112.512-20.9-214.762-78.935-290.389-164.821v-125.312c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v125.312zM896 372.224v523.776c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-523.776c80.947 68.122 178.595 113.425 282.88 131.243 7.134 21.167 20.727 39.561 38.869 52.587 18.142 13.030 39.915 20.041 62.251 20.041s44.109-7.010 62.251-20.041c18.142-13.026 31.735-31.42 38.869-52.587 104.286-17.818 201.933-63.121 282.88-131.243z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["red-packet-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2050,
+ "id": 299,
+ "name": "red-packet-fill",
+ "prevSize": 32,
+ "code": 61647
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 1999
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 896c-39.607 0-77.589-15.731-105.596-43.738s-43.738-65.988-43.738-105.596c0-39.607 15.731-77.589 43.738-105.596s65.988-43.738 105.596-43.738c39.607 0 77.589 15.731 105.596 43.738s43.738 65.988 43.738 105.596c0 39.607-15.731 77.589-43.738 105.596s-65.988 43.738-105.596 43.738zM277.333 426.667c-19.611 0-39.029-3.863-57.147-11.367s-34.58-18.505-48.447-32.372c-13.867-13.867-24.867-30.329-32.372-48.447s-11.367-37.536-11.367-57.147c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.329-24.867 48.447-32.372s37.536-11.367 57.147-11.367c39.606 0 77.589 15.733 105.594 43.739s43.739 65.989 43.739 105.594c0 39.606-15.733 77.589-43.739 105.594s-65.989 43.739-105.594 43.739zM813.696 149.973l60.331 60.331-663.68 663.723-60.331-60.331 663.68-663.723z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["percent-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2051,
+ "id": 298,
+ "name": "percent-fill",
+ "prevSize": 32,
+ "code": 61648
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2000
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM469.333 362.667v298.667h85.333v-298.667h-85.333zM457.173 362.667h-90.197l-63.872 175.488-63.872-175.488h-90.197l111.403 297.131h85.333l111.403-297.131zM682.667 576h64c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.421-31.241-75.425c-20.006-20.004-47.138-31.242-75.426-31.242h-149.333v298.667h85.333v-85.333zM682.667 490.667v-42.667h64c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087s-2.249 11.085-6.246 15.087c-4.002 3.998-9.429 6.246-15.087 6.246h-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2052, "id": 297, "name": "vip-fill", "prevSize": 32, "code": 61649 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2001
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM405.333 384l-106.667 106.667 213.333 213.333 213.333-213.333-106.667-106.667h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["copper-diamond-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2053,
+ "id": 296,
+ "name": "copper-diamond-fill",
+ "prevSize": 32,
+ "code": 61650
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2002
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM384 469.333v-85.333h-85.333v85.333h-85.333v85.333h85.333v85.333h85.333v-85.333h85.333v-85.333h-85.333zM554.667 469.333v85.333h256v-85.333h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["increase-decrease-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2054,
+ "id": 295,
+ "name": "increase-decrease-fill",
+ "prevSize": 32,
+ "code": 61651
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2003
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM631.168 417.835l-104.533 104.533-90.496-90.539-181.035 181.035 60.331 60.331 120.704-120.661 90.496 90.496 164.864-164.864 76.501 76.501v-213.333h-213.333l76.501 76.501z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["funds-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2055,
+ "id": 294,
+ "name": "funds-box-fill",
+ "prevSize": 32,
+ "code": 61652
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2004
+ },
+ {
+ "icon": {
+ "paths": [
+ "M465.067 89.6l422.357 60.373 60.331 422.4-392.192 392.192c-8.004 8-18.854 12.493-30.165 12.493-11.315 0-22.165-4.493-30.165-12.493l-422.401-422.4c-7.999-8-12.492-18.85-12.492-30.165s4.494-22.165 12.492-30.165l392.236-392.235zM585.728 451.669c7.923 7.923 17.331 14.208 27.686 18.492 10.355 4.288 21.453 6.494 32.657 6.494 11.209-0.004 22.302-2.214 32.657-6.502 10.351-4.292 19.759-10.577 27.682-18.505s14.204-17.335 18.492-27.688c4.288-10.354 6.494-21.451 6.49-32.657 0-11.206-2.21-22.303-6.502-32.655-4.288-10.353-10.577-19.759-18.5-27.682-7.927-7.923-17.335-14.207-27.691-18.493-10.351-4.287-21.449-6.492-32.657-6.49-22.63 0.004-44.335 8.998-60.335 25.005s-24.99 37.713-24.986 60.346c0.004 22.633 8.998 44.337 25.007 60.337z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["price-tag-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2056,
+ "id": 293,
+ "name": "price-tag-3-fill",
+ "prevSize": 32,
+ "code": 61653
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2005
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 298.667l360.32-240.213c7.010-4.678 15.253-7.174 23.68-7.174s16.67 2.496 23.68 7.174l360.32 240.213v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333zM512 469.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.339c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM341.333 682.667v85.333h341.333v-85.333h-341.333zM341.333 554.667v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["price-tag-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2057,
+ "id": 292,
+ "name": "price-tag-2-fill",
+ "prevSize": 32,
+ "code": 61654
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2006
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333l311.381 97.28c8.683 2.711 16.273 8.127 21.662 15.458s8.294 16.191 8.29 25.289v75.307h85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333h-554.667v-85.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667v-43.947l-256-80.043-256 80.043v315.904c-0.006 26.121 5.984 51.895 17.509 75.337 11.525 23.445 28.277 43.925 48.966 59.874l8.064 5.803 181.461 123.776 161.365-110.080h-204.032c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-170.667h554.667v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497l-137.387 0.043c-16.512 21.76-36.565 40.96-59.733 56.747l-229.547 156.544-229.547-156.501c-34.452-23.488-62.645-55.040-82.127-91.908s-29.664-77.935-29.659-119.633v-347.264c0.005-9.091 2.914-17.942 8.301-25.263s12.973-12.732 21.651-15.441l311.381-97.323z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["secure-payment-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2058,
+ "id": 291,
+ "name": "secure-payment-fill",
+ "prevSize": 32,
+ "code": 61655
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2007
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 810.667h853.333v85.333h-853.333v-85.333zM85.333 213.333l213.333 128 213.333-256 213.333 256 213.333-128v512h-853.333v-512z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-crown-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2059,
+ "id": 290,
+ "name": "vip-crown-fill",
+ "prevSize": 32,
+ "code": 61656
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2008
+ },
+ {
+ "icon": {
+ "paths": [
+ "M398.080 490.667h92.587c50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765h-298.709l0.043 42.667h341.333v-42.667c-0.137-45.397-13.252-89.813-37.803-128h123.136c40.333-0.013 79.838 11.409 113.941 32.939 34.103 21.534 61.406 52.288 78.741 88.704-100.907 133.163-264.277 219.691-448.683 219.691-117.803 0-217.6-25.173-298.667-69.333v-396.971c51.909 7.437 100.927 28.471 142.080 60.971zM170.667 384c10.45 0.001 20.537 3.838 28.346 10.783s12.799 16.513 14.022 26.892l0.299 4.992v384c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333zM582.229 152.533l15.104 15.147 15.104-15.104c9.89-9.975 21.653-17.897 34.615-23.314 12.958-5.416 26.863-8.219 40.909-8.248s27.964 2.717 40.943 8.081c12.983 5.363 24.781 13.238 34.714 23.172 9.929 9.934 17.801 21.732 23.159 34.716s8.102 26.9 8.068 40.946c-0.030 14.047-2.837 27.949-8.26 40.908-5.419 12.959-13.346 24.72-23.322 34.608l-165.931 165.888-165.973-165.973c-9.975-9.891-17.897-21.654-23.314-34.615s-8.219-26.863-8.248-40.911c-0.029-14.047 2.717-27.961 8.080-40.944s13.238-24.779 23.17-34.71c9.937-9.932 21.734-17.803 34.718-23.162s26.901-8.102 40.947-8.069c14.046 0.033 27.947 2.839 40.909 8.259 12.958 5.42 24.721 13.346 34.607 23.324z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hand-heart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2060,
+ "id": 289,
+ "name": "hand-heart-fill",
+ "prevSize": 32,
+ "code": 61657
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2009
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v42.667h170.667v85.333h-49.792l-32.299 387.541c-0.887 10.662-5.747 20.599-13.619 27.849-7.872 7.245-18.176 11.273-28.877 11.277h-604.16c-10.699-0.004-21.005-4.032-28.876-11.277-7.871-7.249-12.732-17.186-13.62-27.849l-32.341-387.541h-49.749v-85.333h170.667v-42.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981zM554.667 554.667h-85.333v170.667h85.333v-170.667zM384 554.667h-85.333v170.667h85.333v-170.667zM725.333 554.667h-85.333v170.667h85.333v-170.667zM512 170.667c-43.785 0-85.898 16.829-117.624 47.007s-50.64 71.395-52.829 115.127l-0.213 8.533v42.667h341.333v-42.667c0-43.786-16.828-85.898-47.006-117.624s-71.394-50.64-115.127-52.829l-8.533-0.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-basket-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2061,
+ "id": 288,
+ "name": "shopping-basket-fill",
+ "prevSize": 32,
+ "code": 61658
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2010
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM469.333 682.667v85.333h85.333v-85.333h42.667c19.81 0 39.228-5.517 56.077-15.932 16.853-10.415 30.468-25.314 39.33-43.034 8.858-17.715 12.608-37.551 10.829-57.28s-9.015-38.575-20.902-54.421c11.887-15.846 19.123-34.692 20.902-54.421s-1.971-39.564-10.829-57.281c-8.862-17.718-22.477-32.619-39.33-43.034-16.849-10.414-36.267-15.93-56.077-15.93h-42.667v-85.333h-85.333v85.333h-128v341.333h128zM426.667 554.667h170.667c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087s-2.249 11.085-6.246 15.087c-4.002 3.998-9.429 6.246-15.087 6.246h-170.667v-42.667zM426.667 426.667h170.667c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087s-2.249 11.085-6.246 15.087c-4.002 3.998-9.429 6.246-15.087 6.246h-170.667v-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bit-coin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2062,
+ "id": 287,
+ "name": "bit-coin-fill",
+ "prevSize": 32,
+ "code": 61659
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2011
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554.667c70.699 0 128 57.301 128 128 0 36.267-15.061 68.949-39.253 92.245l-81.493 78.421h120.747v85.333h-256v-73.557l157.568-151.68c8.107-7.808 13.099-18.688 13.099-30.763 0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667h-85.333c0-70.699 57.301-128 128-128zM768 554.667v170.667h85.333v-170.667h85.333v384h-85.333v-128h-170.667v-256h85.333zM170.667 512c0 107.819 49.963 203.947 128 266.496v103.083c-127.531-73.771-213.333-211.627-213.333-369.579h85.333zM512 85.333c221.227 0 403.157 168.405 424.533 384h-85.845c-20.992-168.363-164.608-298.667-338.688-298.667-105.131 0-199.168 47.531-261.76 122.24l91.093 91.093h-256v-256l104.405 104.363c78.208-90.027 193.579-147.029 322.261-147.029z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hours-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2063,
+ "id": 286,
+ "name": "hours-fill",
+ "prevSize": 32,
+ "code": 61660
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2012
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 213.333h128v384h-128v128h-85.333v-128h-128v-384h128v-128h85.333v128zM768 426.667h128v384h-128v128h-85.333v-128h-128v-384h128v-128h85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2064,
+ "id": 285,
+ "name": "stock-fill",
+ "prevSize": 32,
+ "code": 61661
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2013
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 938.667h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM384 256h-85.333v85.333c0 56.579 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.269 62.485-150.848v-85.333h-85.333v85.333c0 33.948-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.561-37.49-90.509v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-bag-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2065,
+ "id": 284,
+ "name": "shopping-bag-2-fill",
+ "prevSize": 32,
+ "code": 61662
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2014
+ },
+ {
+ "icon": {
+ "paths": [
+ "M277.333 85.333h469.333c6.622 0 13.158 1.542 19.081 4.504 5.926 2.962 11.081 7.263 15.053 12.562l115.2 153.6v640c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-640l115.2-153.6c3.974-5.299 9.128-9.6 15.052-12.562s12.457-4.504 19.081-4.504zM789.333 256l-64-85.333h-426.667l-64 85.333h554.667zM384 426.667h-85.333v85.333c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848v-85.333h-85.333v85.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shopping-bag-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2066,
+ "id": 283,
+ "name": "shopping-bag-3-fill",
+ "prevSize": 32,
+ "code": 61663
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2015
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v234.667c-28.288 0-55.42 11.238-75.426 31.241-20.002 20.006-31.241 47.138-31.241 75.426s11.238 55.42 31.241 75.426c20.006 20.002 47.138 31.241 75.426 31.241v234.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-234.667c28.29 0 55.421-11.238 75.425-31.241 20.004-20.006 31.242-47.138 31.242-75.426s-11.238-55.42-31.242-75.426c-20.004-20.003-47.135-31.241-75.425-31.241v-234.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM682.667 384h-341.333v256h341.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["ticket-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2067,
+ "id": 282,
+ "name": "ticket-2-fill",
+ "prevSize": 32,
+ "code": 61664
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2016
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 722.688v87.979h213.333v85.333h-512v-85.333h213.333v-87.979c-82.487-10.402-158.344-50.547-213.333-112.909-54.989-62.357-85.332-142.639-85.333-225.779v-256h682.667v256c0 83.14-30.345 163.422-85.333 225.779-54.989 62.362-130.846 102.507-213.333 112.909zM42.667 213.333h85.333v170.667h-85.333v-170.667zM896 213.333h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["trophy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2068,
+ "id": 281,
+ "name": "trophy-fill",
+ "prevSize": 32,
+ "code": 61665
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2017
+ },
+ {
+ "icon": {
+ "paths": [
+ "M398.080 490.667h92.587c50.923 0 99.759 20.228 135.765 56.235s56.235 84.843 56.235 135.765h-298.709l0.043 42.667h341.333v-42.667c-0.137-45.397-13.252-89.813-37.803-128h123.136c40.333-0.013 79.838 11.409 113.941 32.939 34.103 21.534 61.406 52.288 78.741 88.704-100.907 133.163-264.277 219.691-448.683 219.691-117.803 0-217.6-25.173-298.667-69.333v-396.971c51.909 7.437 100.927 28.471 142.080 60.971zM213.333 810.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-384c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h85.333c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v384zM768 213.333c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.491-56.561-37.491-90.509c0-33.948 13.487-66.505 37.491-90.51s56.563-37.49 90.509-37.49zM469.333 85.333c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.51s-56.563 37.49-90.509 37.49c-33.946 0-66.505-13.486-90.51-37.49s-37.49-56.562-37.49-90.51c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hand-coin-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2069,
+ "id": 280,
+ "name": "hand-coin-fill",
+ "prevSize": 32,
+ "code": 61666
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2018
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM362.667 597.333v85.333h106.667v85.333h85.333v-85.333h42.667c28.288 0 55.42-11.238 75.426-31.241 20.002-20.006 31.241-47.138 31.241-75.426s-11.238-55.42-31.241-75.426c-20.006-20.002-47.138-31.241-75.426-31.241h-170.667c-5.658 0-11.084-2.249-15.085-6.246-4.001-4.002-6.249-9.429-6.249-15.087s2.248-11.085 6.249-15.087c4-3.998 9.427-6.246 15.085-6.246h234.667v-85.333h-106.667v-85.333h-85.333v85.333h-42.667c-28.29 0-55.421 11.238-75.425 31.242s-31.242 47.135-31.242 75.425c0 28.288 11.238 55.42 31.242 75.426 20.004 20.002 47.135 31.241 75.425 31.241h170.667c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087s-2.249 11.085-6.246 15.087c-4.002 3.998-9.429 6.246-15.087 6.246h-234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-dollar-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2070,
+ "id": 279,
+ "name": "money-dollar-circle-fill",
+ "prevSize": 32,
+ "code": 61667
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2019
+ },
+ {
+ "icon": {
+ "paths": [
+ "M229.248 192.427c77.939-69.147 178.561-107.258 282.752-107.093 235.648 0 426.667 191.019 426.667 426.667 0.141 87.206-26.573 172.343-76.501 243.84l-115.499-243.84h106.667c0-67.866-20.228-134.195-58.108-190.509-37.875-56.314-91.682-100.058-154.543-125.645-62.857-25.586-131.917-31.853-198.357-17.999-66.438 13.853-127.239 47.198-174.635 95.774l-38.4-81.152-0.043-0.043zM794.752 831.573c-77.939 69.146-178.56 107.255-282.752 107.093-235.648 0-426.667-191.019-426.667-426.667 0-90.667 28.288-174.72 76.501-243.84l115.499 243.84h-106.667c-0.001 67.866 20.229 134.195 58.107 190.507 37.878 56.316 91.683 100.062 154.543 125.645 62.858 25.587 131.918 31.855 198.359 18.001 66.436-13.854 127.241-47.198 174.635-95.774l38.4 81.152 0.043 0.043zM362.667 597.333h234.667c5.658 0 11.085-2.249 15.087-6.246 3.998-4.002 6.246-9.429 6.246-15.087s-2.249-11.085-6.246-15.087c-4.002-3.998-9.429-6.246-15.087-6.246h-170.667c-28.29 0-55.421-11.238-75.425-31.241-20.004-20.006-31.242-47.138-31.242-75.426 0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.425-31.242h42.667v-42.667h85.333v42.667h106.667v85.333h-234.667c-5.658 0-11.084 2.249-15.085 6.246-4.001 4.002-6.249 9.429-6.249 15.087s2.248 11.085 6.249 15.087c4 3.998 9.427 6.246 15.085 6.246h170.667c28.288 0 55.42 11.238 75.426 31.241 20.002 20.006 31.241 47.138 31.241 75.426s-11.238 55.42-31.241 75.426c-20.006 20.002-47.138 31.241-75.426 31.241h-42.667v42.667h-85.333v-42.667h-106.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-dollar-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2071,
+ "id": 278,
+ "name": "exchange-dollar-fill",
+ "prevSize": 32,
+ "code": 61668
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2020
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 384h810.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-469.333zM128 128h640v170.667h-682.667v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM640 597.333v85.333h128v-85.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wallet-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2072,
+ "id": 277,
+ "name": "wallet-fill",
+ "prevSize": 32,
+ "code": 61669
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2021
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 853.333v85.333h-512v-85.333h512zM622.336 29.27l331.861 331.861-60.331 60.416-45.227-15.104-105.685 105.557 241.365 241.365-60.331 60.331-241.323-241.365-102.571 102.571 12.075 48.299-60.373 60.331-331.861-331.861 60.373-60.331 48.213 12.032 268.544-268.502-15.061-45.227 60.331-60.373z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["auction-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2073,
+ "id": 276,
+ "name": "auction-fill",
+ "prevSize": 32,
+ "code": 61670
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2022
+ },
+ {
+ "icon": {
+ "paths": [
+ "M240.469 283.136l271.531-271.531 271.531 271.531c53.705 53.704 90.274 122.126 105.092 196.617 14.814 74.487 7.211 151.697-21.854 221.862s-78.281 130.138-141.431 172.335c-63.147 42.193-137.391 64.713-213.338 64.713s-150.19-22.519-213.338-64.713c-63.148-42.197-112.367-102.17-141.431-172.335s-36.669-147.375-21.853-221.862c14.816-74.49 51.388-142.913 105.091-196.617zM554.667 469.333v-192l-192 277.333h106.667v192l192-277.333h-106.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["water-flash-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2074,
+ "id": 275,
+ "name": "water-flash-fill",
+ "prevSize": 32,
+ "code": 61671
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2023
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 341.333h-384c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v256c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497h384v170.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v170.667zM640 469.333h128v85.333h-128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wallet-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2075,
+ "id": 274,
+ "name": "wallet-2-fill",
+ "prevSize": 32,
+ "code": 61672
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2024
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 256h-298.667c-67.895 0-133.009 26.971-181.018 74.981-48.011 48.009-74.982 113.124-74.982 181.019s26.971 133.009 74.982 181.018c48.009 48.013 113.122 74.982 181.018 74.982h298.667v85.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v85.333zM640 341.333h341.333v341.333h-341.333c-45.265 0-88.674-17.98-120.678-49.988-32.009-32.004-49.988-75.413-49.988-120.678s17.98-88.673 49.988-120.68c32.004-32.006 75.413-49.987 120.678-49.987zM640 469.333v85.333h128v-85.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wallet-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2076,
+ "id": 273,
+ "name": "wallet-3-fill",
+ "prevSize": 32,
+ "code": 61673
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2025
+ },
+ {
+ "icon": {
+ "paths": [
+ "M207.915 128h608.17c6.733-0.001 13.372 1.591 19.371 4.646s11.187 7.487 15.147 12.932l163.115 224.256c2.901 3.99 4.326 8.862 4.041 13.786-0.29 4.924-2.274 9.596-5.619 13.222l-484.48 524.843c-1.997 2.159-4.42 3.883-7.113 5.060-2.697 1.178-5.606 1.783-8.546 1.783s-5.85-0.606-8.546-1.783c-2.692-1.178-5.116-2.901-7.113-5.060l-484.479-524.8c-3.356-3.628-5.348-8.309-5.636-13.242s1.146-9.814 4.057-13.808l163.115-224.256c3.959-5.446 9.15-9.877 15.149-12.932s12.636-4.647 19.369-4.646z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vip-diamond-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2077,
+ "id": 272,
+ "name": "vip-diamond-fill",
+ "prevSize": 32,
+ "code": 61674
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2026
+ },
+ {
+ "icon": {
+ "paths": [
+ "M229.248 192.427c77.939-69.147 178.561-107.258 282.752-107.093 235.648 0 426.667 191.019 426.667 426.667 0.141 87.206-26.573 172.343-76.501 243.84l-115.499-243.84h106.667c0-67.866-20.228-134.195-58.108-190.509-37.875-56.314-91.682-100.058-154.543-125.645-62.857-25.586-131.917-31.853-198.357-17.999-66.438 13.853-127.239 47.198-174.635 95.774l-38.4-81.152-0.043-0.043zM794.752 831.573c-77.939 69.146-178.56 107.255-282.752 107.093-235.648 0-426.667-191.019-426.667-426.667 0-90.667 28.288-174.72 76.501-243.84l115.499 243.84h-106.667c-0.001 67.866 20.229 134.195 58.107 190.507 37.878 56.316 91.683 100.062 154.543 125.645 62.858 25.587 131.918 31.855 198.359 18.001 66.436-13.854 127.241-47.198 174.635-95.774l38.4 81.152 0.043 0.043zM554.667 577.493h128v85.333h-128v85.333h-85.333v-85.333h-128v-85.333h128v-42.667h-128v-85.333h110.336l-90.539-90.496 60.416-60.331 90.453 90.496 90.496-90.496 60.373 60.331-90.539 90.539h110.336v85.333h-128v42.624z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["exchange-cny-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2078,
+ "id": 271,
+ "name": "exchange-cny-fill",
+ "prevSize": 32,
+ "code": 61675
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2027
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM428.8 469.333c3.695-18.146 12.053-35.021 24.252-48.957 12.194-13.937 27.81-24.459 45.308-30.529 17.493-6.071 36.271-7.481 54.477-4.093 18.21 3.389 35.221 11.459 49.361 23.418l72.576-48.341c-24.922-27.146-57.131-46.547-92.779-55.886s-73.229-8.222-108.262 3.218c-35.029 11.44-66.027 32.719-89.292 61.298s-37.815 63.251-41.912 99.872h-43.861v85.333h43.819c4.090 36.634 18.638 71.313 41.905 99.9s54.274 49.873 89.312 61.312c35.038 11.443 72.631 12.557 108.288 3.209 35.652-9.348 67.861-28.757 92.783-55.919l-72.576-48.384c-14.14 11.959-31.147 20.032-49.353 23.42-18.202 3.392-36.975 1.984-54.473-4.079-17.498-6.067-33.109-16.585-45.312-30.515-12.198-13.931-20.557-30.801-24.26-48.943l211.2 0.043v-85.333l-211.2-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["money-euro-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2079,
+ "id": 270,
+ "name": "money-euro-box-fill",
+ "prevSize": 32,
+ "code": 61676
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2028
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM346.709 469.333h-173.397c-3.535 28.335-3.535 56.998 0 85.333h173.397c-7.213-27.985-7.213-57.348 0-85.333zM677.291 469.333c7.211 27.985 7.211 57.348 0 85.333h173.397c3.533-28.335 3.533-56.998 0-85.333h-173.397zM512 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gradienter-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2080,
+ "id": 269,
+ "name": "gradienter-fill",
+ "prevSize": 32,
+ "code": 61677
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2029
+ },
+ {
+ "icon": {
+ "paths": [
+ "M183.168 286.165l200.832-200.832h426.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-579.669c0.003-11.315 4.499-22.166 12.501-30.165zM640 213.333v170.667h85.333v-170.667h-85.333zM512 213.333v170.667h85.333v-170.667h-85.333zM384 213.333v170.667h85.333v-170.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sd-card-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2081,
+ "id": 268,
+ "name": "sd-card-fill",
+ "prevSize": 32,
+ "code": 61678
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2030
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 213.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM896 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2082,
+ "id": 267,
+ "name": "battery-fill",
+ "prevSize": 32,
+ "code": 61679
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2031
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 85.333h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["smartphone-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2083,
+ "id": 266,
+ "name": "smartphone-fill",
+ "prevSize": 32,
+ "code": 61680
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2032
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 768v85.333l85.333 42.667v42.667h-341.334l-0.171-42.496 85.504-42.837v-85.333h-299.008c-5.603-0.034-11.144-1.173-16.305-3.349-5.162-2.18-9.843-5.359-13.775-9.348-3.932-3.994-7.037-8.721-9.139-13.914s-3.157-10.752-3.106-16.354v-554.069c0-23.723 19.413-42.965 42.325-42.965h768.684c23.381 0 42.325 19.157 42.325 42.965v554.069c0 23.723-19.413 42.965-42.325 42.965h-299.008zM170.666 597.333v85.333h682.668v-85.333h-682.668z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mac-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2084, "id": 265, "name": "mac-fill", "prevSize": 32, "code": 61681 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2033
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333zM512 298.667c-29.722 0.032-59.11 6.275-86.277 18.327-27.168 12.052-51.518 29.648-71.489 51.66s-35.122 47.954-44.482 76.163c-9.36 28.211-12.722 58.065-9.871 87.65 2.851 29.581 11.853 58.244 26.428 84.147s34.401 48.474 58.208 66.266c23.807 17.796 51.070 30.417 80.041 37.060 28.971 6.639 59.008 7.155 88.188 1.51l-40.747-81.451c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c68.181 0 128 57.173 128 128h-106.667l90.795 181.504c39.497-24.393 69.956-61.005 86.763-104.277 16.802-43.277 19.034-90.85 6.353-135.505-12.685-44.657-39.586-83.958-76.625-111.94s-82.197-43.12-128.619-43.115z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["device-recover-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2085,
+ "id": 264,
+ "name": "device-recover-fill",
+ "prevSize": 32,
+ "code": 61682
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2034
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 469.333v-256l-213.333 341.333h128v256l213.333-341.333h-128zM128 213.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM896 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-charge-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2086,
+ "id": 263,
+ "name": "battery-charge-fill",
+ "prevSize": 32,
+ "code": 61683
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2035
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128c424.149 0 768 343.851 768 768h-128c0-353.451-286.549-640-640-640v-128zM128 426.667c259.2 0 469.333 210.133 469.333 469.333h-128c0-90.526-35.964-177.348-99.974-241.361-64.012-64.009-150.832-99.972-241.359-99.972v-128zM128 725.333c45.264 0 88.673 17.98 120.68 49.988 32.006 32.004 49.987 75.413 49.987 120.678h-170.667v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rss-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2087, "id": 262, "name": "rss-fill", "prevSize": 32, "code": 61684 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2036
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM256 298.667v426.667h128v-426.667h-128zM426.667 298.667v426.667h85.333v-426.667h-85.333zM554.667 298.667v426.667h42.667v-426.667h-42.667zM640 298.667v426.667h128v-426.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["barcode-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2088,
+ "id": 261,
+ "name": "barcode-box-fill",
+ "prevSize": 32,
+ "code": 61685
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2037
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 85.333h469.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-896h85.333v85.333zM298.667 170.667v213.333h426.667v-213.333h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cellphone-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2089,
+ "id": 260,
+ "name": "cellphone-fill",
+ "prevSize": 32,
+ "code": 61686
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2038
+ },
+ {
+ "icon": {
+ "paths": [
+ "M611.883 513.28l185.301 185.301-241.323 241.323h-85.333v-285.269l-186.196 186.197-60.373-60.331 246.57-246.528v-41.387l-246.57-246.614 60.373-60.331 186.196 186.197v-285.269h85.333l241.323 241.365-185.301 185.344zM555.861 577.877v241.365l120.661-120.661-120.661-120.704zM555.861 448.597l120.661-120.662-120.661-120.661v241.323z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bluetooth-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2090,
+ "id": 259,
+ "name": "bluetooth-fill",
+ "prevSize": 32,
+ "code": 61687
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2039
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 682.667l128 256h-256l128-256zM399.915 693.547c-39.494-24.393-69.953-61.005-86.757-104.273-16.804-43.273-19.037-90.846-6.358-135.497 12.679-44.657 39.577-83.957 76.613-111.942s82.188-43.125 128.609-43.125c46.421 0 91.571 15.141 128.61 43.125 37.035 27.984 63.932 67.285 76.612 111.942 12.676 44.651 10.445 92.224-6.357 135.497-16.806 43.268-47.266 79.881-86.758 104.273l-57.856-115.669c13.564-11.179 23.343-26.274 28.006-43.221 4.659-16.947 3.977-34.918-1.963-51.46s-16.841-30.848-31.215-40.96c-14.379-10.116-31.526-15.543-49.101-15.543s-34.722 5.427-49.101 15.543c-14.374 10.112-25.276 24.418-31.215 40.96-5.938 16.542-6.623 34.513-1.963 51.46 4.663 16.947 14.443 32.043 28.006 43.221l-57.813 115.669zM304.299 884.779c-66.402-36.992-121.714-91.051-160.211-156.591s-58.782-140.177-58.754-216.188c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667c0.026 76.011-20.258 150.647-58.752 216.188-38.498 65.54-93.811 119.599-160.213 156.591l-57.301-114.688c56.713-33.054 100.954-83.874 125.884-144.593 24.934-60.723 29.167-127.966 12.045-191.339-17.118-63.368-54.639-119.332-106.756-159.238s-115.93-61.531-181.572-61.531c-65.643 0-129.454 21.625-181.572 61.531s-89.638 95.87-106.758 159.238c-17.12 63.373-12.887 130.615 12.045 191.339 24.932 60.719 69.174 111.539 125.885 144.593l-57.301 114.688z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gps-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2091, "id": 258, "name": "gps-fill", "prevSize": 32, "code": 61688 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2040
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 128h256v256h-256v-256zM384 128v256h-256v-256h256zM640 896v-256h256v256h-256zM384 896h-256v-256h256v256zM128 469.333h768v85.333h-768v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qr-scan-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2092,
+ "id": 257,
+ "name": "qr-scan-2-fill",
+ "prevSize": 32,
+ "code": 61689
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2041
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.334 170.667c0-23.552 19.413-42.667 42.325-42.667h768.682c23.381 0 42.325 18.987 42.325 42.667v597.333c0 23.552-19.413 42.667-42.325 42.667h-768.682c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.333zM213.334 853.333h597.332v85.333h-597.332v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tv-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2093,
+ "id": 256,
+ "name": "tv-2-fill",
+ "prevSize": 32,
+ "code": 61690
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2042
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tablet-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2094,
+ "id": 255,
+ "name": "tablet-fill",
+ "prevSize": 32,
+ "code": 61691
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2043
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512zM640 640h-85.333v85.333h85.333v-85.333zM469.333 640h-85.333v85.333h85.333v-85.333zM554.667 256h-85.333v85.333h-85.333v85.333h85.291l0.043 85.333h85.333l-0.043-85.333h85.376v-85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["remote-control-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2095,
+ "id": 254,
+ "name": "remote-control-2-fill",
+ "prevSize": 32,
+ "code": 61692
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2044
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 85.333l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667zM554.667 341.333h-128v85.333h42.667v256h85.333v-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dual-sim-1-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2096,
+ "id": 253,
+ "name": "dual-sim-1-fill",
+ "prevSize": 32,
+ "code": 61693
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2045
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.667 256h-341.333c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v554.667h-256c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128zM554.667 341.333h341.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["device-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2097,
+ "id": 252,
+ "name": "device-fill",
+ "prevSize": 32,
+ "code": 61694
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2046
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 554.667v42.667c0 118.187-28.331 232.32-81.707 334.763l-9.685 17.92-74.539-41.557c49.493-88.747 77.227-188.16 80.299-291.669l0.299-19.456v-42.667h85.333zM469.333 426.667h85.333v170.667l-0.213 16.171c-3.226 116.809-43.426 229.581-114.816 322.091l-9.856 12.373-66.133-53.931c65.126-79.535 102.187-178.342 105.429-281.088l0.256-15.616v-170.667zM512 256c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849h-85.333c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.49-90.509-37.49c-33.95 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.509v128c0 95.36-34.987 185.344-96.896 255.019l-9.045 9.813-61.781-58.88c49.918-52.228 79.114-120.841 82.133-193.024l0.256-12.928v-128c0-56.579 22.476-110.841 62.484-150.849s94.269-62.484 150.849-62.484zM512 85.334c101.841 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v128c0 72.448-8.619 143.787-25.472 212.907l-5.931 22.997-82.347-22.443c16.725-61.312 26.155-124.672 28.075-189.227l0.341-24.235v-128c0-55.43-15.424-109.766-44.548-156.928s-70.801-85.288-120.358-110.112c-49.562-24.824-105.054-35.367-160.265-30.448s-107.963 25.105-152.354 58.299l-60.8-60.843c67.988-54.473 152.54-84.097 239.659-83.968zM211.968 229.675l60.843 60.8c-36.594 48.778-57.299 107.631-59.307 168.576l-0.171 10.283 0.171 85.333c0 47.787-11.264 93.995-32.512 135.552l-6.656 12.373-74.112-42.325c16.213-28.373 25.685-60.032 27.563-93.141l0.384-12.459v-85.333c-0.253-87.111 29.318-171.684 83.797-239.658z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fingerprint-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2098,
+ "id": 251,
+ "name": "fingerprint-fill",
+ "prevSize": 32,
+ "code": 61695
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2047
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 597.333v-128h85.333v128h213.333c11.315 0 22.17 4.497 30.17 12.497 8.004 8 12.497 18.854 12.497 30.17v256c0 11.315-4.493 22.17-12.497 30.17-8 8-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h213.333zM107.094 377.045c56.533-169.515 216.491-291.712 404.906-291.712s348.416 122.197 404.907 291.712l-80.981 26.965c-22.669-67.98-66.15-127.104-124.288-169.001-58.133-41.897-127.979-64.441-199.637-64.441s-141.503 22.545-199.639 64.441c-58.135 41.897-101.617 101.021-124.286 169.001l-80.981-26.965zM269.056 431.019c17.018-50.969 49.635-95.295 93.235-126.703s95.974-48.309 149.708-48.309c53.734 0 106.108 16.9 149.709 48.309s76.22 75.734 93.235 126.703l-80.981 27.008c-11.345-33.979-33.088-63.53-62.157-84.469-29.065-20.939-63.983-32.206-99.806-32.206s-70.737 11.267-99.805 32.206c-29.067 20.939-50.812 50.49-62.157 84.469l-80.981-27.008z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["router-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2099,
+ "id": 250,
+ "name": "router-fill",
+ "prevSize": 32,
+ "code": 61696
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2048
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM717.653 728.576c54.374-51.738 87.275-122.052 92.156-196.949s-18.615-148.884-65.818-207.241c-47.198-58.357-114.641-96.803-188.902-107.688s-149.9 6.589-211.862 48.945c-61.962 42.356-105.705 106.489-122.524 179.635-16.819 73.148-5.481 149.948 31.758 215.113s97.648 113.92 169.206 136.567c71.559 22.643 149.021 17.515 216.967-14.366l-41.6-74.88c-42.116 18.304-89.015 22.532-133.726 12.049s-84.846-35.11-114.439-70.225c-29.594-35.119-47.066-78.844-49.819-124.685s9.358-91.345 34.535-129.752c25.177-38.406 62.074-67.662 105.211-83.421 43.132-15.758 90.202-17.177 134.204-4.046 44.006 13.132 82.598 40.112 110.046 76.932 27.443 36.82 42.274 81.513 42.287 127.435h-128l120.32 216.576z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["restart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2100,
+ "id": 249,
+ "name": "restart-fill",
+ "prevSize": 32,
+ "code": 61697
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2049
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 405.333v128c0 106.027-171.947 192-384 192s-384-85.973-384-192v-128c0 106.027 171.947 192 384 192s384-85.973 384-192zM128 618.667c0 106.027 171.947 192 384 192s384-85.973 384-192v128c0 106.027-171.947 192-384 192s-384-85.973-384-192v-128zM512 512c-212.053 0-384-85.973-384-192s171.947-192 384-192c212.053 0 384 85.973 384 192s-171.947 192-384 192z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["database-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2101,
+ "id": 248,
+ "name": "database-2-fill",
+ "prevSize": 32,
+ "code": 61698
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2050
+ },
+ {
+ "icon": {
+ "paths": [
+ "M181.632 241.963l330.368 330.368 60.331-60.331-330.368-330.368c76.139-62.413 171.587-96.451 270.037-96.299 235.648 0 426.667 191.019 426.667 426.666s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667 0-102.442 36.096-196.48 96.299-270.037z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scan-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2102,
+ "id": 247,
+ "name": "scan-fill",
+ "prevSize": 32,
+ "code": 61699
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2051
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 341.333v85.333h512v-85.333h-128v-256h85.333v170.667h213.333v85.333h-85.333v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512h-85.333v-85.333h213.333v-170.667h85.333v256h-128zM554.667 85.333v256h-85.333v-256h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sensor-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2103,
+ "id": 246,
+ "name": "sensor-fill",
+ "prevSize": 32,
+ "code": 61700
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2052
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.965c0-23.765 19.413-42.965 42.325-42.965h768.683c23.381 0 42.325 19.2 42.325 42.965v554.368h-853.333v-554.368zM42.667 810.667h938.667v85.333h-938.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["macbook-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2104,
+ "id": 245,
+ "name": "macbook-fill",
+ "prevSize": 32,
+ "code": 61701
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2053
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h554.667l158.165 158.165c8.004 8 12.497 18.851 12.501 30.165v537.003c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 768c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.509s-56.563-37.491-90.509-37.491c-33.946 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491zM213.333 213.333v170.667h426.667v-170.667h-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["save-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2105,
+ "id": 244,
+ "name": "save-2-fill",
+ "prevSize": 32,
+ "code": 61702
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2054
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h597.333l115.499 115.499c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM298.667 170.667v213.333h384v-213.333h-384zM256 512v298.667h512v-298.667h-512zM554.667 213.333h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["save-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2106,
+ "id": 243,
+ "name": "save-3-fill",
+ "prevSize": 32,
+ "code": 61703
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2055
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333v213.333h-128l170.667 170.667 170.667-170.667h-128v-213.333h298.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h298.667zM810.667 682.667h-597.333v170.667h597.333v-170.667zM725.333 725.333v85.333h-85.333v-85.333h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["install-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2107,
+ "id": 242,
+ "name": "install-fill",
+ "prevSize": 32,
+ "code": 61704
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2056
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.56-597.461c131.84-106.667 299.691-170.539 482.56-170.539zM512 213.333c-129.195 0-252.715 35.925-359.253 102.059l81.237 100.565c81.749-47.445 176.683-74.624 278.016-74.624s196.267 27.179 278.016 74.624l81.237-100.651c-106.581-66.091-230.101-101.973-359.253-101.973z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2108,
+ "id": 241,
+ "name": "signal-wifi-3-fill",
+ "prevSize": 32,
+ "code": 61705
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2057
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.56-597.461c131.84-106.667 299.691-170.539 482.56-170.539zM512 213.333c-129.195 0-252.715 35.925-359.253 102.059l135.595 167.893c66.475-36.096 142.677-56.619 223.659-56.619s157.141 20.48 223.616 56.619l135.637-167.979c-106.581-66.091-230.101-101.973-359.253-101.973z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2109,
+ "id": 240,
+ "name": "signal-wifi-2-fill",
+ "prevSize": 32,
+ "code": 61706
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2058
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667 0 91.136-28.587 175.616-77.269 244.949l-136.064-244.949h128c-0.009-78.669-27.187-154.92-76.941-215.855-49.758-60.935-119.031-102.814-196.113-118.551-77.077-15.737-157.225-4.367-226.885 32.188s-124.555 96.049-155.399 168.419c-30.844 72.372-35.742 153.174-13.868 228.737 21.875 75.567 69.18 141.257 133.913 185.963 64.733 44.702 142.921 65.673 221.334 59.362 78.417-6.31 152.247-39.514 208.998-93.99l42.581 76.587c-77.431 67.098-176.495 103.962-278.955 103.808-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 298.667c33.946 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51v42.667h42.667v213.333h-341.333v-213.333h42.667v-42.667c0-33.948 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49zM512 384c-10.449 0.001-20.535 3.838-28.348 10.783-7.808 6.944-12.796 16.513-14.020 26.892l-0.299 4.992v42.667h85.333v-42.667c0-10.45-3.84-20.537-10.782-28.346-6.946-7.81-16.512-12.799-26.893-14.022l-4.992-0.299z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rotate-lock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2110,
+ "id": 239,
+ "name": "rotate-lock-fill",
+ "prevSize": 32,
+ "code": 61707
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2059
+ },
+ {
+ "icon": {
+ "paths": [
+ "M611.883 513.28l185.301 185.301-241.323 241.323h-85.333v-285.269l-186.197 186.197-60.373-60.331 246.571-246.528v-41.387l-246.571-246.614 60.373-60.331 186.197 186.197v-285.269h85.333l241.323 241.365-185.301 185.344zM555.861 577.877v241.365l120.661-120.661-120.661-120.704zM555.861 448.597l120.661-120.662-120.661-120.661v241.323zM832 576c-16.973 0-33.254-6.741-45.257-18.743-12.002-12.006-18.743-28.284-18.743-45.257s6.741-33.254 18.743-45.257c12.002-12.002 28.284-18.743 45.257-18.743s33.254 6.741 45.257 18.743c12.002 12.002 18.743 28.284 18.743 45.257s-6.741 33.25-18.743 45.257c-12.002 12.002-28.284 18.743-45.257 18.743zM277.333 576c-16.974 0-33.253-6.741-45.255-18.743-12.002-12.006-18.745-28.284-18.745-45.257s6.743-33.254 18.745-45.257c12.002-12.002 28.281-18.743 45.255-18.743s33.253 6.741 45.255 18.743c12.002 12.002 18.745 28.284 18.745 45.257s-6.743 33.25-18.745 45.257c-12.002 12.002-28.281 18.743-45.255 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["bluetooth-connect-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2111,
+ "id": 238,
+ "name": "bluetooth-connect-fill",
+ "prevSize": 32,
+ "code": 61708
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2060
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 725.333v-42.667h-128v-128h128v85.333h85.333v85.333h-42.667v85.333h-85.333v85.333h-85.333v-128h85.333v-42.667h42.667zM896 896h-170.667v-85.333h85.333v-85.333h85.333v170.667zM128 128h341.333v341.333h-341.333v-341.333zM554.667 128h341.333v341.333h-341.333v-341.333zM128 554.667h341.333v341.333h-341.333v-341.333zM768 554.667h128v85.333h-128v-85.333zM256 256v85.333h85.333v-85.333h-85.333zM256 682.667v85.333h85.333v-85.333h-85.333zM682.667 256v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qr-code-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2112,
+ "id": 237,
+ "name": "qr-code-fill",
+ "prevSize": 32,
+ "code": 61709
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2061
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h426.667l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM554.667 768v-341.333h-213.333v85.333h128v256h85.333zM341.333 554.667v85.333h85.333v-85.333h-85.333zM597.333 554.667v85.333h85.333v-85.333h-85.333zM597.333 426.667v85.333h85.333v-85.333h-85.333zM341.333 682.667v85.333h85.333v-85.333h-85.333zM597.333 682.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sim-card-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2113,
+ "id": 236,
+ "name": "sim-card-2-fill",
+ "prevSize": 32,
+ "code": 61710
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2062
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 87.466v424.534h85.333v-424.534c215.595 21.376 384 203.307 384 424.534 0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c0-221.227 168.405-403.158 384-424.534z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shut-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2114,
+ "id": 235,
+ "name": "shut-down-fill",
+ "prevSize": 32,
+ "code": 61711
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2063
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-768v-298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM128 554.667h768v298.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667zM298.667 682.667v85.333h128v-85.333h-128zM298.667 256v85.333h128v-85.333h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["server-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2115,
+ "id": 234,
+ "name": "server-fill",
+ "prevSize": 32,
+ "code": 61712
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2064
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 640v213.632c-0.013 11.234-4.48 22.003-12.42 29.948-7.945 7.94-18.714 12.407-29.948 12.42h-683.264c-11.233-0.013-22.003-4.48-29.946-12.42-7.943-7.945-12.411-18.714-12.422-29.948v-213.632h768zM85.333 469.333h853.333v85.333h-853.333v-85.333zM896 384h-768v-213.632c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 18.987 42.368 42.368v213.632z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["qr-scan-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2116,
+ "id": 233,
+ "name": "qr-scan-fill",
+ "prevSize": 32,
+ "code": 61713
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2065
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v264.533l-170.667-136.533v128h-42.667c-91.392 0-170.667 76.373-170.667 170.667v128h85.333v-128c0-44.8 40.533-85.333 85.333-85.333h42.667v128l170.667-136.533v349.867c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-share-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2117,
+ "id": 232,
+ "name": "battery-share-fill",
+ "prevSize": 32,
+ "code": 61714
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2066
+ },
+ {
+ "icon": {
+ "paths": [
+ "M595.2 85.333h258.133c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-343.467c14.037 1.408 28.288 2.133 42.667 2.133 235.648 0 426.667-191.019 426.667-426.667 0-14.379-0.725-28.629-2.133-42.667zM640 682.667v85.333h85.333v-85.333h-85.333zM509.355 85.333c6.511 51.633 1.131 104.070-15.735 153.304-16.862 49.233-44.757 93.96-81.557 130.758s-81.525 64.695-130.758 81.557c-49.234 16.866-101.671 22.246-153.304 15.735v-338.688c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h338.688z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hard-drive-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2118,
+ "id": 231,
+ "name": "hard-drive-fill",
+ "prevSize": 32,
+ "code": 61715
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2067
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 170.667v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128zM554.667 512v-213.333l-213.333 298.667h128v213.333l213.333-298.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-2-charge-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2119,
+ "id": 230,
+ "name": "battery-2-charge-fill",
+ "prevSize": 32,
+ "code": 61716
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2068
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c30.464 0 58.453 10.667 80.469 28.416l-80.469 99.584-80.469-99.584c22.763-18.436 51.179-28.471 80.469-28.416zM119.809 59.435l754.217 754.261-60.331 60.331-157.099-157.013-10.539 13.056c-37.914-30.729-85.252-47.467-134.059-47.403-48.785-0.064-96.104 16.657-134.015 47.36l-80.427-99.584c56.066-45.419 125.137-71.812 197.204-75.349l-75.647-75.605c-64.148 14.268-124.115 43.213-175.189 84.565l-80.512-99.541c45.986-37.239 97.642-66.869 153.003-87.765l-65.323-65.28c-50.632 22.644-98.105 51.773-141.227 86.656l-80.47-99.584c39.040-31.573 81.195-59.349 125.952-82.859l-95.915-95.872 60.373-60.373zM686.251 506.453l-165.035-164.992-9.216-0.128c132.053 0 253.312 46.123 348.587 123.178l-80.469 99.584c-28.663-23.202-60.215-42.594-93.867-57.685v0.043zM512 128c182.827 0 350.72 63.872 482.56 170.539l-80.384 99.541c-113.758-92.147-255.778-142.319-402.176-142.080-24.405 0-48.469 1.365-72.107 4.011l-110.377-110.208c58.496-14.251 119.636-21.803 182.484-21.803z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wifi-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2120,
+ "id": 229,
+ "name": "wifi-off-fill",
+ "prevSize": 32,
+ "code": 61717
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2069
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 85.333l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h426.667zM512 320c-32.649-0.002-64.064 12.473-87.819 34.871s-38.052 53.027-39.968 85.62l-0.213 7.509h85.333c0-6.899 1.668-13.7 4.873-19.814 3.204-6.112 7.842-11.357 13.517-15.284s12.215-6.419 19.068-7.262c6.848-0.843 13.798-0.012 20.258 2.423s12.228 6.399 16.819 11.553c4.587 5.155 7.859 11.344 9.527 18.042 1.673 6.694 1.694 13.696 0.064 20.403s-4.86 12.915-9.417 18.099l-3.499 3.541-156.544 140.971v61.995h256v-85.333h-102.613l60.245-54.187-0.256-0.427 0.341 0.341c19.221-17.331 32.734-40.081 38.763-65.246 6.029-25.169 4.284-51.572-4.996-75.729-9.284-24.157-25.673-44.933-47.002-59.587-21.333-14.654-46.605-22.499-72.482-22.499z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dual-sim-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2121,
+ "id": 228,
+ "name": "dual-sim-2-fill",
+ "prevSize": 32,
+ "code": 61718
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2070
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM708.096 315.904c-8.704-8.747-22.443-9.941-32.555-2.859-123.307 86.528-192.853 137.813-208.811 153.685-24.96 25.003-24.96 65.536 0 90.539 25.003 24.96 65.536 24.96 90.539 0 9.344-9.387 60.501-78.976 153.515-208.939 7.168-9.984 6.016-23.723-2.688-32.427zM746.667 469.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM277.333 469.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM376.235 315.904c-16.64-16.64-43.691-16.64-60.331 0s-16.64 43.648 0 60.331c16.64 16.64 43.648 16.64 60.331 0 16.64-16.64 16.64-43.691 0-60.331zM512 234.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dashboard-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2122,
+ "id": 227,
+ "name": "dashboard-3-fill",
+ "prevSize": 32,
+ "code": 61719
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2071
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667zM512 213.333c-164.949 0-298.667 133.717-298.667 298.667 0 79.019 30.72 150.912 80.811 204.331l6.656 6.827 60.331-60.288c-38.571-38.656-62.464-91.989-62.464-150.869 0-117.803 95.531-213.333 213.333-213.333 19.115 0 37.632 2.517 55.253 7.253l66.688-66.645c-37.248-16.64-78.507-25.941-121.941-25.941zM784.725 390.101l-66.603 66.645c4.693 17.621 7.211 36.139 7.211 55.253 0 58.88-23.893 112.213-62.464 150.869l60.331 60.331c54.016-54.059 87.467-128.725 87.467-211.2 0-43.435-9.259-84.693-25.941-121.899zM692.992 270.635l-158.933 158.891c-7.040-1.877-14.421-2.859-22.059-2.859-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333c47.147 0 85.333-38.187 85.333-85.333 0-7.637-0.981-15.019-2.859-22.059l158.891-158.976-60.373-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dashboard-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2123,
+ "id": 226,
+ "name": "dashboard-2-fill",
+ "prevSize": 32,
+ "code": 61720
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2072
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 298.667v-128c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497h384c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM213.333 682.667v85.333h213.333v-85.333h-213.333zM597.333 682.667v85.333h213.333v-85.333h-213.333zM597.333 554.667v85.333h213.333v-85.333h-213.333zM597.333 426.667v85.333h213.333v-85.333h-213.333zM213.333 554.667v85.333h213.333v-85.333h-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["database-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2124,
+ "id": 225,
+ "name": "database-fill",
+ "prevSize": 32,
+ "code": 61721
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2073
+ },
+ {
+ "icon": {
+ "paths": [
+ "M613.035 187.648l-148.651 257.493 73.899 42.667 148.651-257.493c177.92 118.272 269.056 302.080 194.56 431.018-79.36 137.472-306.731 143.147-508.159 26.88-201.429-116.395-310.187-316.117-230.827-453.546 74.453-128.981 279.168-141.952 470.527-47.019zM677.717 75.648l73.899 42.667-64 110.848-73.899-42.667 64-110.848zM287.233 853.333h438.1v85.333h-511.274c-7.616 0.154-15.133-1.749-21.761-5.504-6.629-3.75-12.125-9.22-15.914-15.829-3.724-6.494-5.683-13.85-5.683-21.333s1.959-14.839 5.683-21.333l96-166.272 73.899 42.667-59.051 102.272z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radar-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2125,
+ "id": 224,
+ "name": "radar-fill",
+ "prevSize": 32,
+ "code": 61722
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2074
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c182.784 0 350.72 63.872 482.56 170.496l-34.645 42.837h-191.915v237.696l-256 316.971-482.56-597.461c131.84-106.667 299.691-170.539 482.56-170.539zM938.667 810.667v85.333h-85.333v-85.333h85.333zM938.667 426.667v298.667h-85.333v-298.667h85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-error-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2126,
+ "id": 223,
+ "name": "signal-wifi-error-fill",
+ "prevSize": 32,
+ "code": 61723
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2075
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 896v-341.333h-512v341.333h-85.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h554.667l170.667 170.667v554.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-85.333zM682.667 896h-341.333v-256h341.333v256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["save-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2127,
+ "id": 222,
+ "name": "save-fill",
+ "prevSize": 32,
+ "code": 61724
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2076
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 725.333h768v85.333h-768v-85.333zM128 469.333h128v128h-128v-128zM341.333 469.333h128v128h-128v-128zM128 213.333h128v128h-128v-128zM554.667 213.333h128v128h-128v-128zM768 213.333h128v128h-128v-128zM554.667 469.333h128v128h-128v-128zM768 469.333h128v128h-128v-128zM341.333 213.333h128v128h-128v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["keyboard-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2128,
+ "id": 221,
+ "name": "keyboard-fill",
+ "prevSize": 32,
+ "code": 61725
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2077
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17zM213.333 682.667v170.667h597.333v-170.667h-597.333zM640 725.333h85.333v85.333h-85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hard-drive-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2129,
+ "id": 220,
+ "name": "hard-drive-2-fill",
+ "prevSize": 32,
+ "code": 61726
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2078
+ },
+ {
+ "icon": {
+ "paths": [
+ "M29.44 298.54c136.494-110.578 306.895-170.799 482.56-170.539 182.827 0 350.72 63.872 482.56 170.539l-80.427 99.541c-113.749-92.137-255.748-142.308-402.133-142.080-152.32 0-292.267 53.248-402.133 142.080l-80.427-99.541zM163.456 464.512c98.586-79.871 221.664-123.368 348.544-123.178 132.011 0 253.269 46.123 348.544 123.135l-80.427 99.584c-75.84-61.431-170.517-94.878-268.117-94.72-101.547 0-194.816 35.499-268.117 94.72l-80.427-99.541zM297.515 630.485c60.666-49.156 136.405-75.93 214.485-75.819 81.237 0 155.861 28.373 214.485 75.776l-80.427 99.584c-37.922-30.711-85.261-47.437-134.059-47.36-48.798-0.077-96.137 16.649-134.059 47.36l-80.427-99.541zM431.573 796.459c22.746-18.445 51.145-28.493 80.427-28.459 30.464 0 58.453 10.667 80.427 28.416l-80.427 99.584-80.427-99.541z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wifi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2130,
+ "id": 219,
+ "name": "wifi-fill",
+ "prevSize": 32,
+ "code": 61727
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2079
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667l128 213.333h-85.333v314.923l128-63.957-0.043-37.632h-42.624v-170.667h170.667v170.667h-42.709l0.043 90.368-213.333 106.667v66.261c49.749 17.579 85.333 64.981 85.333 120.704 0 70.699-57.301 128-128 128s-128-57.301-128-128c0-50.645 29.44-94.421 72.107-115.2l-200.107-140.8-0.043-96.768c-25.472-14.763-42.624-42.325-42.624-73.899 0-47.147 38.187-85.333 85.333-85.333s85.333 38.187 85.333 85.333c0 31.573-17.152 59.179-42.667 73.899v54.101l128 89.003v-387.669h-85.333l128-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["usb-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2131, "id": 218, "name": "usb-fill", "prevSize": 32, "code": 61728 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2080
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.667h85.333v682.667h-85.333v-682.667zM256 170.667h85.333v682.667h-85.333v-682.667zM384 170.667h128v682.667h-128v-682.667zM554.667 170.667h85.333v682.667h-85.333v-682.667zM682.667 170.667h85.333v682.667h-85.333v-682.667zM810.667 170.667h128v682.667h-128v-682.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["barcode-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2132,
+ "id": 217,
+ "name": "barcode-fill",
+ "prevSize": 32,
+ "code": 61729
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2081
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667c101.845 0 199.514 40.457 271.531 112.471 72.013 72.014 112.469 169.686 112.469 271.529v170.667c0.043 61.504-14.703 122.112-42.995 176.721-28.288 54.609-69.299 101.611-119.565 137.050 20.224-64.939 32-133.589 34.219-204.672l0.341-23.765v-85.376h-85.333v85.376l-0.128 13.44c-1.694 93.047-22.473 184.751-61.056 269.44-49.425 14.605-101.274 19.157-152.491 13.397 52.834-83.422 82.317-179.49 85.376-278.187l0.299-18.091v-298.667h-85.333v298.667l-0.171 12.288c-2.317 94.707-33.374 186.475-89.045 263.125-40.709-14.899-78.594-36.595-112.043-64.171 44.58-56.371 70.126-125.436 72.96-197.248l0.299-13.995v-256l0.213-8.533c1.173-24.17 7.502-47.81 18.56-69.333l4.864-8.832-61.653-61.653c-28.363 39.781-44.684 86.88-47.019 135.68l-0.299 12.672v256l-0.171 9.6c-1.805 50.253-18.448 98.842-47.829 139.648-51.983-67.136-80.13-149.67-80-234.581v-170.667c0-101.843 40.457-199.515 112.471-271.529s169.686-112.471 271.529-112.471zM512 170.667c-51.029 0-98.56 14.933-138.496 40.661l-9.813 6.656 61.611 61.653c23.202-13.725 49.339-21.726 76.245-23.339l10.453-0.299 8.533 0.213c42.219 2.11 82.15 19.813 112.064 49.679s47.68 69.771 49.856 111.985l0.213 8.789v85.333h85.333v-85.333c0-67.895-26.97-133.010-74.978-181.019-48.013-48.009-113.126-74.981-181.022-74.981z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fingerprint-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2133,
+ "id": 216,
+ "name": "fingerprint-2-fill",
+ "prevSize": 32,
+ "code": 61730
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2082
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 700.587v150.869c0.004 10.803-4.087 21.205-11.452 29.107s-17.451 12.719-28.228 13.474c-18.645 1.28-33.877 1.963-45.653 1.963-377.045 0-682.667-305.621-682.667-682.667 0-11.776 0.64-27.008 1.963-45.653 0.756-10.776 5.571-20.864 13.474-28.228s18.305-11.457 29.107-11.452h150.869c5.292-0.006 10.398 1.957 14.324 5.505s6.394 8.429 6.924 13.695c0.981 9.813 1.877 17.621 2.731 23.552 8.479 59.175 25.856 116.729 51.541 170.709 4.053 8.533 1.408 18.731-6.272 24.192l-92.075 65.792c56.297 131.179 160.832 235.712 292.011 292.011l65.707-91.904c2.684-3.755 6.605-6.447 11.072-7.607 4.467-1.165 9.203-0.721 13.376 1.25 53.973 25.638 111.514 42.97 170.667 51.413 5.931 0.853 13.739 1.792 23.467 2.731 5.257 0.538 10.129 3.012 13.67 6.938 3.537 3.925 5.495 9.024 5.487 14.31h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2134,
+ "id": 215,
+ "name": "phone-fill",
+ "prevSize": 32,
+ "code": 61731
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2083
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 85.333h426.667l200.832 200.832c8.004 8 12.497 18.851 12.501 30.165v579.669c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM341.333 512v256h341.333v-256h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sim-card-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2135,
+ "id": 214,
+ "name": "sim-card-fill",
+ "prevSize": 32,
+ "code": 61732
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2084
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554.667l256 384h-511.999l255.999-384zM466.773 450.56c-6.289-5.858-11.332-12.924-14.827-20.774-3.499-7.852-5.38-16.327-5.534-24.92-0.149-8.593 1.429-17.129 4.651-25.098 3.217-7.969 8.009-15.208 14.084-21.286 6.080-6.077 13.316-10.868 21.286-14.087s16.508-4.8 25.101-4.648c8.593 0.151 17.067 2.032 24.917 5.53s14.916 8.541 20.774 14.829c11.307 12.132 17.459 28.179 17.169 44.759-0.294 16.581-7.010 32.4-18.735 44.125-11.729 11.729-27.546 18.445-44.126 18.735-16.58 0.294-32.627-5.858-44.762-17.165zM225.324 118.741l60.373 60.373c-60.004 60.011-93.713 141.398-93.713 226.261 0 84.864 33.709 166.251 93.713 226.262l-60.373 60.373c-37.645-37.641-67.507-82.325-87.881-131.507s-30.86-101.892-30.86-155.128c0-53.234 10.486-105.947 30.86-155.128s50.236-93.868 87.881-131.507zM798.592 118.741c37.645 37.639 67.507 82.326 87.881 131.507s30.861 101.894 30.861 155.128c0 53.236-10.487 105.946-30.861 155.128s-50.236 93.867-87.881 131.507l-60.373-60.373c60.006-60.011 93.713-141.397 93.713-226.262 0-84.863-33.707-166.251-93.713-226.261l60.373-60.373zM346.028 239.402l60.331 60.331c-13.868 13.867-24.87 30.33-32.375 48.449s-11.369 37.539-11.369 57.151c0 19.612 3.863 39.032 11.369 57.152 7.506 18.116 18.507 34.581 32.375 48.448l-60.331 60.331c-44.006-44.011-68.729-103.697-68.729-165.931 0-62.236 24.722-121.923 68.729-165.931zM677.888 239.402c44.006 44.008 68.727 103.695 68.727 165.931 0 62.234-24.721 121.92-68.727 165.931l-60.331-60.331c13.871-13.867 24.87-30.332 32.375-48.448 7.505-18.121 11.371-37.54 11.371-57.152s-3.866-39.032-11.371-57.151c-7.505-18.119-18.505-34.582-32.375-48.449l60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["base-station-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2136,
+ "id": 213,
+ "name": "base-station-fill",
+ "prevSize": 32,
+ "code": 61733
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2085
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 170.667v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2137,
+ "id": 212,
+ "name": "battery-2-fill",
+ "prevSize": 32,
+ "code": 61734
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2086
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.808 59.435l754.219 754.261-60.331 60.331-157.141-157.141-144.555 179.115-482.56-597.461c38.997-31.573 81.152-59.349 125.867-82.859l-95.829-95.872 60.331-60.373zM512 128c182.784 0 350.72 63.872 482.56 170.496l-230.699 285.568-434.304-434.261c58.453-14.251 119.595-21.803 182.443-21.803z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2138,
+ "id": 211,
+ "name": "signal-wifi-off-fill",
+ "prevSize": 32,
+ "code": 61735
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2087
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 85.333v384h298.667v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h256zM554.667 298.667c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34h-85.333v-85.333zM554.667 170.667c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.27 62.485 150.849h-85.333c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49v-85.333zM554.667 42.667c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359h-85.333c0-67.895-26.97-133.010-74.982-181.019-48.009-48.009-113.122-74.981-181.018-74.981v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hotspot-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2139,
+ "id": 210,
+ "name": "hotspot-fill",
+ "prevSize": 32,
+ "code": 61736
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2088
+ },
+ {
+ "icon": {
+ "paths": [
+ "M167.637 210.305l60.331 60.331c-61.781 61.781-99.968 147.115-99.968 241.364 0 94.293 38.187 179.627 99.968 241.365l-60.288 60.288c-77.269-77.184-125.013-183.851-125.013-301.653s47.787-224.468 124.971-301.695zM856.363 210.305c77.227 77.227 124.971 183.893 124.971 301.695s-47.787 224.512-124.971 301.696l-60.331-60.331c61.781-61.781 99.968-147.115 99.968-241.365s-38.187-179.54-99.925-241.322l60.288-60.373zM554.667 213.334v255.999h128l-213.333 341.333v-256h-128l213.333-341.332zM288.299 330.966l60.373 60.373c-30.891 30.848-50.005 73.514-50.005 120.66s19.115 89.813 50.005 120.661l-60.373 60.373c-46.293-46.336-74.965-110.336-74.965-181.035s28.672-134.698 74.965-181.034zM735.744 331.009c46.293 46.336 74.923 110.335 74.923 180.991 0 70.699-28.672 134.699-74.965 181.035l-60.373-60.373c30.891-30.848 50.005-73.515 50.005-120.661 0-47.104-19.072-89.77-49.92-120.618l60.331-60.373z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["wireless-charging-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2140,
+ "id": 209,
+ "name": "wireless-charging-fill",
+ "prevSize": 32,
+ "code": 61737
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2089
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v363.904c-36.83-32.943-82.411-54.524-131.234-62.135-48.828-7.61-98.812-0.926-143.923 19.243s-83.422 52.962-110.304 94.426c-26.885 41.459-41.196 89.813-41.205 139.23 0 138.155 117.76 256 256 256h-384c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512zM640 512c30.093-0.004 59.657 7.949 85.683 23.053 26.031 15.104 47.603 36.826 62.532 62.955 14.925 26.133 22.682 55.744 22.473 85.837-0.209 30.097-8.371 59.601-23.659 85.521l94.293 94.293-60.288 60.373-94.336-94.293c-22.609 13.308-47.979 21.227-74.142 23.142-26.167 1.911-52.42-2.236-76.723-12.117-24.303-9.877-45.999-25.229-63.407-44.86-17.408-19.627-30.054-43.004-36.962-68.309-6.903-25.31-7.881-51.87-2.859-77.619 5.026-25.749 15.923-49.993 31.838-70.848s36.425-37.76 59.934-49.404c23.509-11.639 49.387-17.707 75.622-17.724zM640 597.333c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-find-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2141,
+ "id": 208,
+ "name": "phone-find-fill",
+ "prevSize": 32,
+ "code": 61738
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2090
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v85.333h170.667v85.333h-426.668v-85.333h170.668v-85.333h-341.676c-5.603-0.034-11.144-1.173-16.305-3.349-5.162-2.18-9.843-5.359-13.775-9.348-3.932-3.994-7.037-8.721-9.139-13.914s-3.157-10.752-3.106-16.354v-554.069c0-23.723 19.413-42.965 42.325-42.965h768.684c23.381 0 42.325 19.157 42.325 42.965v554.069c0 23.723-19.413 42.965-42.325 42.965h-341.675z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["computer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2142,
+ "id": 207,
+ "name": "computer-fill",
+ "prevSize": 32,
+ "code": 61739
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2091
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.56-597.461c131.84-106.667 299.691-170.539 482.56-170.539z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2143,
+ "id": 206,
+ "name": "signal-wifi-fill",
+ "prevSize": 32,
+ "code": 61740
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2092
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 85.333h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-366.080c0.003-11.294 4.483-22.127 12.459-30.123l66.645-66.901c3.988-3.998 6.228-9.414 6.229-15.061v-289.835c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM640 170.667v170.667h85.333v-170.667h-85.333zM512 170.667v170.667h85.333v-170.667h-85.333zM384 170.667v170.667h85.333v-170.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sd-card-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2144,
+ "id": 205,
+ "name": "sd-card-mini-fill",
+ "prevSize": 32,
+ "code": 61741
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2093
+ },
+ {
+ "icon": {
+ "paths": [
+ "M475.349 85.333h73.301c85.931 0 132.011 11.861 173.739 34.176 41.229 21.824 74.944 55.539 96.768 96.768 22.315 41.728 34.176 87.808 34.176 173.739v243.968c0 85.931-11.861 132.011-34.176 173.739-21.824 41.229-55.539 74.944-96.768 96.768-41.728 22.315-87.808 34.176-173.739 34.176h-73.344c-85.931 0-132.011-11.861-173.739-34.176-41.229-21.824-74.944-55.539-96.768-96.768-22.272-41.728-34.133-87.808-34.133-173.739v-244.011c0-85.931 11.861-132.011 34.176-173.739 21.842-41.219 55.572-74.92 96.811-96.725 41.685-22.315 87.765-34.176 173.696-34.176zM469.333 256v213.333h85.333v-213.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mouse-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2145,
+ "id": 204,
+ "name": "mouse-fill",
+ "prevSize": 32,
+ "code": 61742
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2094
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 298.667v85.333h85.333v-85.333h-85.333zM213.333 469.333v85.333h85.333v-85.333h-85.333zM213.333 640v85.333h597.333v-85.333h-597.333zM384 469.333v85.333h85.333v-85.333h-85.333zM384 298.667v85.333h85.333v-85.333h-85.333zM554.667 298.667v85.333h85.333v-85.333h-85.333zM725.333 298.667v85.333h85.333v-85.333h-85.333zM554.667 469.333v85.333h85.333v-85.333h-85.333zM725.333 469.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["keyboard-box-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2146,
+ "id": 203,
+ "name": "keyboard-box-fill",
+ "prevSize": 32,
+ "code": 61743
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2095
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17l0.043 302.933c-55.454-11.317-113.131-0.145-160.346 31.061s-80.107 79.889-91.43 135.339h-46.933v341.333h-256c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h512zM768 512c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v42.667h42.667v213.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-256c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-213.333h42.667v-42.667c0-33.946 13.487-66.505 37.491-90.509s56.563-37.491 90.509-37.491zM768 597.333c-21.888 0-42.667 19.2-42.667 42.667v42.667h85.333v-42.667c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-lock-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2147,
+ "id": 202,
+ "name": "phone-lock-fill",
+ "prevSize": 32,
+ "code": 61744
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2096
+ },
+ {
+ "icon": {
+ "paths": [
+ "M181.632 241.963l91.179 91.179c-45.219 60.472-65.855 135.829-57.754 210.901 8.101 75.076 44.338 144.294 101.417 193.728s130.762 75.409 206.227 72.704c75.46-2.705 147.093-33.89 200.486-87.283s84.582-125.030 87.287-200.491c2.705-75.46-23.275-149.147-72.708-206.226-49.429-57.079-118.652-93.316-193.724-101.417s-150.429 12.535-210.901 57.754l-91.221-91.179c76.15-62.422 171.615-96.461 270.080-96.299 235.648 0 426.667 191.019 426.667 426.666s-191.019 426.667-426.667 426.667c-235.648 0-426.667-191.019-426.667-426.667 0-102.442 36.096-196.48 96.299-270.037zM333.995 394.368l178.005 177.962 60.331-60.331-177.963-178.005c44.105-29.152 97.459-40.89 149.726-32.938s99.721 35.029 133.158 75.98c33.434 40.951 50.475 92.86 47.817 145.66s-24.832 102.733-62.212 140.117c-37.385 37.38-87.317 59.554-140.117 62.212s-104.71-14.379-145.66-47.817c-40.951-33.438-68.027-80.892-75.98-133.158-7.952-52.262 3.785-105.621 32.938-149.725l-0.043 0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["scan-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2148,
+ "id": 201,
+ "name": "scan-2-fill",
+ "prevSize": 32,
+ "code": 61745
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2097
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-256c0.009-28.57-2.176-57.097-6.528-85.333h219.861v-597.333h-682.667v134.528c-28.236-4.354-56.764-6.536-85.333-6.528v-170.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM554.667 896h-85.333c0-101.841-40.457-199.514-112.471-271.531-72.014-72.013-169.686-112.469-271.529-112.469v-85.333c259.2 0 469.333 210.133 469.333 469.333zM384 896h-85.333c0-28.015-5.518-55.757-16.239-81.638s-26.435-49.399-46.245-69.21c-19.81-19.81-43.327-35.524-69.21-46.246s-53.624-16.239-81.639-16.239v-85.333c79.212 0 155.178 31.467 211.189 87.479 56.011 56.009 87.477 131.977 87.477 211.187zM213.333 896h-128v-128c33.948 0 66.505 13.487 90.51 37.491s37.49 56.563 37.49 90.509zM613.248 725.333c-27.106-83.529-73.613-159.445-135.706-221.542-62.095-62.093-138.015-108.599-221.542-135.706v-69.419h512v426.667h-154.752z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cast-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2149,
+ "id": 200,
+ "name": "cast-fill",
+ "prevSize": 32,
+ "code": 61746
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2098
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 170.667c67.895 0 133.009 26.971 181.018 74.981 48.013 48.009 74.982 113.124 74.982 181.019v170.667c0 67.895-26.97 133.009-74.982 181.018-48.009 48.013-113.122 74.982-181.018 74.982h-426.667c-67.895 0-133.010-26.97-181.019-74.982-48.009-48.009-74.981-113.122-74.981-181.018v-170.667c0-67.895 26.971-133.010 74.981-181.019s113.124-74.981 181.019-74.981h426.667zM426.667 384h-85.333v85.333h-85.333v85.333h85.291l0.043 85.333h85.333l-0.043-85.333h85.376v-85.333h-85.333v-85.333zM768 554.667h-85.333v85.333h85.333v-85.333zM682.667 384h-85.333v85.333h85.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gamepad-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2150,
+ "id": 199,
+ "name": "gamepad-fill",
+ "prevSize": 32,
+ "code": 61747
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2099
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 853.333h-170.667v85.333h-85.333v-85.333h-128c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-128h-85.333v-85.333h85.333v-170.667h-85.333v-85.333h85.333v-128c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-85.333h85.333v85.333h170.667v-85.333h85.333v85.333h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v128h85.333v85.333h-85.333v170.667h85.333v85.333h-85.333v128c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-128v85.333h-85.333v-85.333zM298.667 298.667v170.667h170.667v-170.667h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cpu-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2151, "id": 198, "name": "cpu-fill", "prevSize": 32, "code": 61748 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2100
+ },
+ {
+ "icon": {
+ "paths": [
+ "M657.664 213.333h238.677c23.381 0 42.325 18.987 42.325 42.667v597.334c0 23.552-19.413 42.667-42.325 42.667h-768.682c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.334c0-23.552 19.413-42.667 42.325-42.667h238.677l-108.203-108.203 60.331-60.331 168.532 168.533h50.005l168.533-168.533 60.331 60.331-108.203 108.203z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tv-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2152, "id": 197, "name": "tv-fill", "prevSize": 32, "code": 61749 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2101
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.996 128c182.784 0 350.72 63.872 482.56 170.496l-482.56 597.504-482.558-597.461c131.84-106.667 299.691-170.539 482.558-170.539zM511.996 213.333c-129.193 0-252.713 35.925-359.252 102.059l217.941 269.824c43.093-19.627 90.878-30.549 141.31-30.549 50.389 0 98.261 10.923 141.312 30.549l217.941-269.909c-106.581-66.091-230.101-101.973-359.253-101.973z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["signal-wifi-1-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2153,
+ "id": 196,
+ "name": "signal-wifi-1-fill",
+ "prevSize": 32,
+ "code": 61750
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2102
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667zM810.667 682.667h-597.333v170.667h597.333v-170.667zM725.333 725.333v85.333h-85.333v-85.333h85.333zM512 85.333l-170.667 170.667h128v213.333h85.333v-213.333h128l-170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["uninstall-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2154,
+ "id": 195,
+ "name": "uninstall-fill",
+ "prevSize": 32,
+ "code": 61751
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2103
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.067 577.408l213.333 284.459c2.377 3.17 3.827 6.938 4.181 10.884s-0.393 7.915-2.167 11.456c-1.771 3.546-4.493 6.524-7.863 8.606s-7.253 3.187-11.217 3.187h-426.666c-3.962 0-7.846-1.105-11.216-3.187s-6.094-5.060-7.866-8.606c-1.772-3.541-2.522-7.509-2.166-11.456s1.803-7.714 4.18-10.884l213.332-284.459c1.988-2.65 4.565-4.8 7.526-6.281s6.229-2.253 9.54-2.253c3.311 0 6.579 0.772 9.54 2.253 2.965 1.481 5.538 3.631 7.526 6.281zM768 810.667v-85.333h85.333v-512h-682.666v512h85.333v85.333h-128.341c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.333c0-23.552 19.413-42.667 42.325-42.667h768.682c23.381 0 42.325 18.987 42.325 42.667v597.333c0 23.552-19.413 42.667-42.325 42.667h-128.341z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["airplay-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2155,
+ "id": 194,
+ "name": "airplay-fill",
+ "prevSize": 32,
+ "code": 61752
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2104
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 213.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 341.333v341.333h170.667v-341.333h-170.667zM896 384h85.333v256h-85.333v-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-low-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2156,
+ "id": 193,
+ "name": "battery-low-fill",
+ "prevSize": 32,
+ "code": 61753
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2105
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 85.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v42.667h128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h128v-42.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667zM554.667 384h-85.333v128h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["battery-saver-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2157,
+ "id": 192,
+ "name": "battery-saver-fill",
+ "prevSize": 32,
+ "code": 61754
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2106
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 512c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v384h-512.001v-384c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497h426.668zM426.666 597.333h-85.333v85.333h85.333v-85.333zM512 256c47.548-0.014 94.161 13.215 134.618 38.204 40.452 24.989 73.148 60.752 94.417 103.279l-76.373 38.187c-14.17-28.367-35.959-52.225-62.925-68.901-26.97-16.675-58.052-25.509-89.758-25.509-31.71 0-62.788 8.833-89.758 25.509-26.968 16.676-48.758 40.535-62.926 68.901l-76.331-38.187c21.27-42.527 53.965-78.289 94.418-103.279s87.066-38.218 134.618-38.204zM512 85.333c79.245-0.017 156.928 22.036 224.346 63.687s121.903 101.255 157.35 172.131l-76.331 38.187c-28.356-56.705-71.945-104.393-125.879-137.717s-116.087-50.968-179.486-50.955c-63.403-0.014-125.551 17.63-179.487 50.955s-97.524 81.012-125.879 137.717l-76.373-38.187c35.45-70.883 89.941-130.491 157.367-172.143s145.12-63.701 224.373-63.676z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["remote-control-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2158,
+ "id": 191,
+ "name": "remote-control-fill",
+ "prevSize": 32,
+ "code": 61755
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2107
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 512h682.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v341.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-341.333c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497zM213.333 85.333h597.333v341.333h-597.333v-341.333zM384 213.333v85.333h85.333v-85.333h-85.333zM554.667 213.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["u-disk-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2159,
+ "id": 190,
+ "name": "u-disk-fill",
+ "prevSize": 32,
+ "code": 61756
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2108
+ },
+ {
+ "icon": {
+ "paths": ["M554.667 426.667h298.667l-384 554.667v-384h-298.667l384-554.667v384z"],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flashlight-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2160,
+ "id": 189,
+ "name": "flashlight-fill",
+ "prevSize": 32,
+ "code": 61757
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2109
+ },
+ {
+ "icon": {
+ "paths": [
+ "M676.693 768l-134.528-134.528c-8-7.996-18.85-12.489-30.165-12.489s-22.165 4.493-30.165 12.489l-132.821 132.821c-58.305-6.020-114.077-26.953-161.946-60.779s-86.22-79.411-111.363-132.361c-25.142-52.945-36.228-111.475-32.189-169.952 4.039-58.476 23.066-114.926 55.249-163.915s76.439-88.866 128.503-115.791c52.065-26.925 110.185-39.99 168.764-37.938 58.58 2.052 115.642 19.153 165.695 49.655s91.409 73.379 120.085 124.5c34.94-6.015 70.746-4.708 105.152 3.838s66.662 24.146 94.724 45.811c28.062 21.665 51.319 48.922 68.297 80.045s27.307 65.432 30.332 100.756c3.025 35.324-1.323 70.891-12.762 104.444-11.439 33.557-29.726 64.371-53.696 90.492-23.97 26.116-53.107 46.976-85.559 61.244-32.452 14.272-67.516 21.649-102.967 21.658h-48.64zM436.565 799.232l75.435-75.435 75.435 75.435c14.916 14.921 25.071 33.929 29.184 54.618s2.001 42.138-6.076 61.623c-8.073 19.49-21.743 36.147-39.283 47.868-17.545 11.721-38.165 17.975-59.26 17.975s-41.715-6.255-59.26-17.975c-17.54-11.721-31.211-28.378-39.285-47.868-8.074-19.486-10.188-40.934-6.074-61.623s14.269-39.697 29.184-54.618z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rainy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2161,
+ "id": 188,
+ "name": "rainy-fill",
+ "prevSize": 32,
+ "code": 61758
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2110
+ },
+ {
+ "icon": {
+ "paths": [
+ "M192 426.667c-19.611 0-39.029-3.863-57.147-11.367s-34.58-18.505-48.447-32.372c-13.867-13.867-24.867-30.329-32.372-48.447s-11.367-37.536-11.367-57.147c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.329-24.867 48.447-32.372s37.536-11.367 57.147-11.367c39.606 0 77.589 15.733 105.594 43.739s43.739 65.989 43.739 105.594c0 39.606-15.733 77.589-43.739 105.594s-65.989 43.739-105.594 43.739zM192 341.333c16.974 0 33.253-6.743 45.255-18.745s18.745-28.281 18.745-45.255c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.253 18.745 45.255s28.281 18.745 45.255 18.745zM938.667 426.667h-85.333c0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.674 17.981-120.678 49.987c-32.009 32.006-49.988 75.416-49.988 120.68v213.333c0 45.265 17.98 88.674 49.988 120.678 32.004 32.009 75.413 49.988 120.678 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678h85.333c0 67.895-26.97 133.009-74.982 181.018-48.009 48.013-113.122 74.982-181.018 74.982s-133.009-26.97-181.018-74.982c-48.013-48.009-74.982-113.122-74.982-181.018v-213.333c0-67.895 26.97-133.010 74.982-181.019 48.009-48.009 113.122-74.981 181.018-74.981s133.009 26.971 181.018 74.981c48.013 48.009 74.982 113.124 74.982 181.019z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["celsius-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2162,
+ "id": 187,
+ "name": "celsius-fill",
+ "prevSize": 32,
+ "code": 61759
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2111
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM832 810.667c16.973 0 33.254 6.741 45.257 18.743s18.743 28.284 18.743 45.257c0 16.973-6.741 33.254-18.743 45.257s-28.284 18.743-45.257 18.743c-16.973 0-33.254-6.741-45.257-18.743s-18.743-28.284-18.743-45.257c0-16.973 6.741-33.254 18.743-45.257s28.284-18.743 45.257-18.743zM192 810.667c16.974 0 33.253 6.741 45.255 18.743s18.745 28.284 18.745 45.257c0 16.973-6.743 33.254-18.745 45.257s-28.281 18.743-45.255 18.743c-16.974 0-33.253-6.741-45.255-18.743s-18.745-28.284-18.745-45.257c0-16.973 6.743-33.254 18.745-45.257s28.281-18.743 45.255-18.743zM725.333 298.667c56.58 0 110.844 22.476 150.848 62.484 40.009 40.008 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485-78.677 0-149.76-44.373-213.333-133.205-63.573 88.832-134.656 133.205-213.333 133.205-56.579 0-110.842-22.477-150.849-62.485-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.27-62.484 150.849-62.484 78.677 0 149.76 44.373 213.333 133.205 63.573-88.832 134.656-133.205 213.333-133.205zM512 85.333c8.405 0 16.725 1.655 24.491 4.872s14.822 7.93 20.766 13.873c5.939 5.943 10.654 12.998 13.871 20.763s4.873 16.087 4.873 24.492c0 8.404-1.655 16.727-4.873 24.492s-7.932 14.82-13.871 20.763c-5.943 5.943-13.001 10.657-20.766 13.873s-16.085 4.872-24.491 4.872c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745zM192 85.333c8.404 0 16.727 1.655 24.492 4.872s14.82 7.93 20.763 13.873c5.943 5.943 10.657 12.998 13.873 20.763s4.872 16.087 4.872 24.492c0 8.404-1.655 16.727-4.872 24.492s-7.93 14.82-13.873 20.763c-5.943 5.943-12.998 10.657-20.763 13.873s-16.087 4.872-24.492 4.872c-16.974 0-33.253-6.743-45.255-18.745s-18.745-28.281-18.745-45.255c0-16.974 6.743-33.253 18.745-45.255s28.281-18.745 45.255-18.745zM832 85.333c8.405 0 16.725 1.655 24.491 4.872s14.822 7.93 20.766 13.873c5.939 5.943 10.654 12.998 13.871 20.763s4.873 16.087 4.873 24.492c0 8.404-1.655 16.727-4.873 24.492s-7.932 14.82-13.871 20.763c-5.943 5.943-13.001 10.657-20.766 13.873s-16.085 4.872-24.491 4.872c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["haze-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2163,
+ "id": 186,
+ "name": "haze-2-fill",
+ "prevSize": 32,
+ "code": 61760
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2112
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 170.667h170.667v85.333h-170.667v-85.333zM682.667 810.667h170.667v85.333h-170.667v-85.333zM85.333 384h426.667v85.333h-426.667v-85.333zM597.333 384h256v85.333h-256v-85.333zM170.667 597.333h256v85.333h-256v-85.333zM512 597.333h426.667v85.333h-426.667v-85.333zM426.667 170.667h512v85.333h-512v-85.333zM85.333 810.667h512v85.333h-512v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mist-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2164,
+ "id": 185,
+ "name": "mist-fill",
+ "prevSize": 32,
+ "code": 61761
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2113
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170.667c259.2 0 469.333 210.133 469.333 469.333v213.333h-128v-213.333c0-88.678-34.513-173.879-96.235-237.556-61.717-63.677-145.796-100.836-234.432-103.607l-10.667-0.171c-88.68 0.001-173.878 34.515-237.555 96.233s-100.836 145.798-103.607 234.433l-0.171 10.667v213.333h-128v-213.333c0-259.2 210.133-469.333 469.333-469.333zM512 341.333c79.211 0 155.179 31.467 211.187 87.479 56.013 56.009 87.479 131.977 87.479 211.187v213.333h-128v-213.333c0-43.785-16.828-85.897-47.006-117.623s-71.394-50.641-115.127-52.83l-8.533-0.213c-43.785 0-85.898 16.828-117.624 47.006s-50.64 71.394-52.829 115.127l-0.213 8.533v213.333h-128v-213.333c0-79.211 31.467-155.179 87.477-211.187 56.011-56.013 131.979-87.479 211.189-87.479zM512 512c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509v213.333h-256v-213.333c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rainbow-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2165,
+ "id": 184,
+ "name": "rainbow-fill",
+ "prevSize": 32,
+ "code": 61762
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2114
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c-67.895 0-133.010-26.97-181.019-74.982-48.009-48.009-74.981-113.122-74.981-181.018s26.971-133.010 74.981-181.019c48.009-48.009 113.124-74.981 181.019-74.981s133.009 26.971 181.018 74.981c48.013 48.009 74.982 113.124 74.982 181.019s-26.97 133.009-74.982 181.018c-48.009 48.013-113.122 74.982-181.018 74.982zM469.333 42.667h85.333v128h-85.333v-128zM469.333 853.333h85.333v128h-85.333v-128zM149.973 210.304l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM723.2 783.531l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM813.696 149.931l60.331 60.373-90.496 90.496-60.331-60.331 90.496-90.539zM240.469 723.2l60.331 60.331-90.496 90.496-60.331-60.331 90.496-90.496zM981.333 469.333v85.333h-128v-85.333h128zM170.667 469.333v85.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sun-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2166, "id": 183, "name": "sun-fill", "prevSize": 32, "code": 61763 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2115
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 128h853.333v85.333h-853.333v-85.333zM170.667 298.667h682.667v85.333h-682.667v-85.333zM341.333 469.333h597.333v85.333h-597.333v-85.333zM426.667 640h341.333v85.333h-341.333v-85.333zM341.333 810.667h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tornado-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2167,
+ "id": 182,
+ "name": "tornado-fill",
+ "prevSize": 32,
+ "code": 61764
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2116
+ },
+ {
+ "icon": {
+ "paths": [
+ "M259.541 554.667c-6.167-36.693-4.262-74.291 5.584-110.174 9.846-35.884 27.396-69.19 51.427-97.597s53.967-51.235 87.721-66.893c33.754-15.658 70.516-23.769 107.726-23.769s73.971 8.111 107.725 23.769c33.754 15.658 63.689 38.485 87.723 66.893 24.030 28.408 41.583 61.713 51.426 97.597 9.847 35.883 11.755 73.481 5.585 110.174h-504.917zM85.333 640h426.667v85.333h-426.667v-85.333zM597.333 640h341.333v85.333h-341.333v-85.333zM682.667 810.667h170.667v85.333h-170.667v-85.333zM170.667 810.667h426.667v85.333h-426.667v-85.333zM469.333 42.667h85.333v128h-85.333v-128zM149.973 210.304l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM813.653 149.973l60.331 60.331-90.496 90.496-60.331-60.331 90.496-90.496zM981.333 469.333v85.333h-128v-85.333h128zM170.667 469.333v85.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["haze-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2168,
+ "id": 181,
+ "name": "haze-fill",
+ "prevSize": 32,
+ "code": 61765
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2117
+ },
+ {
+ "icon": {
+ "paths": [
+ "M448 725.333h-277.333v-85.333h277.333c27.251 0.013 53.986 7.479 77.295 21.594 23.313 14.118 42.321 34.342 54.959 58.492 12.638 24.145 18.428 51.29 16.738 78.49-1.685 27.2-10.782 53.423-26.304 75.823-15.526 22.4-36.881 40.124-61.76 51.251s-52.326 15.236-79.373 11.883c-27.045-3.358-52.657-14.050-74.059-30.925-21.402-16.87-37.78-39.279-47.357-64.794l79.915-29.995c4.104 10.935 11.121 20.54 20.294 27.772s20.146 11.819 31.738 13.257c11.593 1.438 23.356-0.32 34.018-5.090s19.814-12.365 26.47-21.965c6.652-9.6 10.551-20.834 11.277-32.495 0.725-11.657-1.758-23.287-7.172-33.638-5.414-10.347-13.559-19.017-23.552-25.067-9.988-6.050-21.444-9.254-33.126-9.259zM213.333 469.333h576c27.251 0.013 53.986 7.479 77.295 21.594 23.313 14.118 42.321 34.342 54.959 58.492 12.638 24.145 18.428 51.29 16.738 78.49-1.685 27.2-10.782 53.423-26.304 75.823-15.526 22.396-36.881 40.124-61.76 51.251s-52.326 15.236-79.373 11.883c-27.046-3.358-52.655-14.050-74.061-30.925-21.402-16.87-37.777-39.279-47.356-64.794l79.915-29.995c4.105 10.935 11.123 20.54 20.292 27.772 9.173 7.232 20.147 11.819 31.74 13.257s23.356-0.32 34.018-5.090c10.662-4.77 19.814-12.365 26.47-21.965 6.652-9.6 10.551-20.834 11.277-32.495 0.725-11.657-1.758-23.287-7.172-33.638-5.414-10.347-13.559-19.017-23.552-25.067-9.988-6.050-21.444-9.254-33.126-9.259h-576c-33.948 0-66.505-13.483-90.51-37.491-24.005-24.004-37.49-56.559-37.49-90.509 0-33.946 13.486-66.504 37.49-90.508s56.562-37.49 90.51-37.49h362.667c11.682-0.005 23.138-3.206 33.126-9.257 9.993-6.051 18.138-14.72 23.552-25.069s7.898-21.982 7.172-33.639c-0.725-11.658-4.625-22.895-11.277-32.495-6.656-9.6-15.808-17.196-26.47-21.964s-22.426-6.529-34.018-5.089c-11.593 1.44-22.566 6.024-31.74 13.256-9.169 7.232-16.188 16.836-20.292 27.771l-79.915-29.952c12.309-32.734 35.712-60.111 66.129-77.363 30.421-17.251 65.929-23.283 100.339-17.044s65.54 24.354 87.966 51.188c22.43 26.833 34.731 60.685 34.761 95.657 0 39.605-15.731 77.589-43.738 105.594s-65.988 43.739-105.596 43.739h-362.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.169c0 11.315 4.495 22.17 12.497 30.17 8.002 8.004 18.854 12.497 30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["windy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2169,
+ "id": 180,
+ "name": "windy-fill",
+ "prevSize": 32,
+ "code": 61766
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2118
+ },
+ {
+ "icon": {
+ "paths": [
+ "M419.072 95.488c-32.845 71.299-43.049 150.951-29.239 228.227s50.973 148.465 106.482 203.97c55.505 55.509 126.694 92.672 203.968 106.483 77.278 13.811 156.928 3.605 228.228-29.239-42.411 190.976-212.779 333.739-416.512 333.739-235.648 0-426.667-191.019-426.667-426.667 0-203.733 142.763-374.101 333.739-416.512zM774.997 97.749l35.669 8.917v42.667l-35.669 8.917c-15.002 3.752-28.702 11.509-39.637 22.444-10.931 10.934-18.692 24.634-22.443 39.636l-8.917 35.669h-42.667l-8.917-35.669c-3.75-15.002-11.511-28.702-22.443-39.636-10.935-10.935-24.636-18.692-39.637-22.444l-35.669-8.917v-42.667l35.669-8.917c14.993-3.759 28.685-11.519 39.612-22.453s18.675-24.63 22.426-39.627l8.96-35.669h42.667l8.917 35.669c3.75 15.002 11.511 28.702 22.443 39.636 10.935 10.935 24.636 18.692 39.637 22.444zM988.331 311.083l35.669 8.917v42.667l-35.669 8.917c-15.002 3.752-28.702 11.509-39.637 22.444-10.931 10.934-18.692 24.634-22.443 39.636l-8.917 35.669h-42.667l-8.917-35.669c-3.75-15.002-11.511-28.702-22.443-39.636-10.935-10.935-24.636-18.692-39.637-22.444l-35.669-8.917v-42.667l35.669-8.917c15.002-3.752 28.702-11.509 39.637-22.444 10.931-10.934 18.692-24.634 22.443-39.636l8.917-35.669h42.667l8.917 35.669c3.75 15.002 11.511 28.702 22.443 39.636 10.935 10.935 24.636 18.692 39.637 22.444z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-clear-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2170,
+ "id": 179,
+ "name": "moon-clear-fill",
+ "prevSize": 32,
+ "code": 61767
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2119
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 895.403c-62.121-3.682-122.25-23.283-174.604-56.922s-95.171-80.183-124.333-135.155c-29.162-54.976-43.688-116.527-42.181-178.739s18.996-122.988 50.787-176.485c31.79-53.497 76.81-97.914 130.732-128.979s114.929-47.732 177.155-48.399c62.227-0.667 123.578 14.689 178.153 44.591s100.535 73.343 133.466 126.146c70.929 2.266 138.295 31.637 188.224 82.068 49.933 50.429 78.63 118.086 80.188 189.036s-24.141 139.797-71.812 192.371c-47.667 52.574-113.677 84.877-184.439 90.253v0.811h-341.333v-0.597z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloudy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2171,
+ "id": 178,
+ "name": "cloudy-fill",
+ "prevSize": 32,
+ "code": 61768
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2120
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 896h-426.667c-60.449 0.038-118.961-21.316-165.176-60.284-46.215-38.963-77.15-93.026-87.329-152.61-10.179-59.588 1.056-120.853 31.715-172.949s78.764-91.663 135.798-111.695c-1.932-40.377 4.352-80.726 18.473-118.603s35.783-72.493 63.675-101.752c27.892-29.259 61.434-52.551 98.592-68.465s77.163-24.121 117.585-24.121c40.422 0 80.427 8.206 117.585 24.121s70.699 39.207 98.594 68.465c27.891 29.259 49.553 63.875 63.671 101.752 14.123 37.877 20.407 78.226 18.475 118.603 57.033 20.031 105.139 59.599 135.799 111.695 30.656 52.096 41.894 113.361 31.714 172.949-10.18 59.584-41.114 113.647-87.33 152.61-46.217 38.967-104.725 60.322-165.175 60.284z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloudy-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2172,
+ "id": 177,
+ "name": "cloudy-2-fill",
+ "prevSize": 32,
+ "code": 61769
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2121
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 437.547v-224.213c0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v224.213c52.181 36.335 91.405 88.371 111.962 148.544 20.557 60.169 21.372 125.329 2.334 185.997-19.042 60.663-56.947 113.673-108.198 151.305-51.255 37.632-113.178 57.924-176.764 57.924s-125.51-20.292-176.762-57.924c-51.253-37.632-89.158-90.641-108.199-151.305-19.041-60.668-18.223-125.828 2.333-185.997 20.557-60.173 59.78-112.209 111.961-148.544zM469.333 517.376c-40.128 10.483-75.067 35.217-98.295 69.577s-33.156 75.998-27.931 117.141c5.225 41.143 25.247 78.98 56.327 106.445 31.078 27.46 71.090 42.675 112.567 42.795 41.57 0.043 81.724-15.091 112.926-42.556 31.206-27.465 51.311-65.37 56.55-106.607 5.235-41.237-4.757-82.97-28.105-117.363s-58.445-59.081-98.705-69.431v-304.043h-85.333v304.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["temp-hot-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2173,
+ "id": 176,
+ "name": "temp-hot-fill",
+ "prevSize": 32,
+ "code": 61770
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2122
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 768h-256v128h-85.333v-138.752c-56.588-14.643-108.468-43.575-150.669-84.019s-73.308-91.051-90.342-146.965c-17.033-55.915-19.422-115.267-6.938-172.371s39.424-110.044 78.238-153.749c38.813-43.705 88.201-76.711 143.429-95.855s114.448-23.784 171.983-13.476c57.536 10.308 111.462 35.219 156.608 72.346 45.15 37.127 80.004 85.225 101.231 139.688 32.090-6.14 65.105-5.512 96.934 1.844s61.773 21.276 87.915 40.87c26.142 19.595 47.902 44.431 63.893 72.92 15.987 28.487 25.852 60.001 28.962 92.526 3.106 32.521-0.61 65.331-10.914 96.333s-26.965 59.511-48.922 83.703c-21.956 24.192-48.721 43.533-78.579 56.785-29.862 13.252-62.161 20.122-94.831 20.173l-21.333 0.043v128h-85.333v-128.043zM469.333 853.333h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["showers-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2174,
+ "id": 175,
+ "name": "showers-fill",
+ "prevSize": 32,
+ "code": 61771
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2123
+ },
+ {
+ "icon": {
+ "paths": [
+ "M753.237 72.531l-118.699 108.075c55.258 16.691 106.116 45.443 148.907 84.181 149.845 136.533 149.845 357.89 0 494.423-110.592 100.693-281.515 164.779-512.682 192.252l118.699-108.070c-55.256-16.691-106.115-45.444-148.907-84.181-149.845-136.533-150.741-357.079 0-494.423 110.592-100.693 281.557-164.779 512.725-192.256h-0.043zM512 341.331c-106.026 0-192 76.373-192 170.669 0 94.293 85.973 170.667 192 170.667s192-76.373 192-170.667c0-94.295-85.973-170.669-192-170.669z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["typhoon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2175,
+ "id": 174,
+ "name": "typhoon-fill",
+ "prevSize": 32,
+ "code": 61772
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2124
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 981.333c-64.119-0.004-126.762-19.273-179.801-55.309-53.039-36.032-94.029-87.172-117.656-146.782s-28.801-124.941-14.851-187.529c13.95-62.583 46.38-119.535 93.086-163.469 57.259-53.888 197.888-150.912 176.555-364.245 256 170.667 384 341.333 128 597.333 42.667 0 106.667 0 213.333-105.387 11.52 32.981 21.333 68.437 21.333 105.387 0 84.868-33.715 166.263-93.726 226.274s-141.406 93.726-226.274 93.726z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fire-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2176,
+ "id": 173,
+ "name": "fire-fill",
+ "prevSize": 32,
+ "code": 61773
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2125
+ },
+ {
+ "icon": {
+ "paths": [
+ "M724.821 768l51.883-67.413c7.292-9.472 11.785-20.8 12.971-32.695s-0.986-23.889-6.268-34.615c-5.278-10.722-13.457-19.755-23.607-26.074-10.155-6.315-21.871-9.66-33.826-9.655h-85.973v-169.643c0.009-13.375-4.177-26.417-11.964-37.292-7.782-10.875-18.782-19.037-31.445-23.34s-26.359-4.53-39.159-0.65c-12.8 3.881-24.060 11.674-32.205 22.285l-271.573 353.323c-72.982-30.199-133.236-84.766-170.497-154.411-37.261-69.641-49.225-150.046-33.852-227.518s57.13-147.219 118.159-197.357c61.029-50.138 137.553-77.565 216.536-77.61 68.783-0.004 135.961 20.764 192.738 59.583 56.781 38.819 100.514 93.881 125.47 157.974 32.102-6.174 65.135-5.574 96.99 1.763s61.824 21.246 87.991 40.84c26.167 19.593 47.949 44.436 63.953 72.938 16.009 28.502 25.882 60.033 28.992 92.575 3.11 32.538-0.61 65.37-10.927 96.388-10.317 31.014-26.999 59.537-48.981 83.733-21.978 24.192-48.772 43.529-78.66 56.768s-62.212 20.087-94.899 20.105h-21.845zM554.667 682.88h128l-213.333 277.333v-192h-128l213.333-277.547v192.213z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["thunderstorms-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2177,
+ "id": 172,
+ "name": "thunderstorms-fill",
+ "prevSize": 32,
+ "code": 61774
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2126
+ },
+ {
+ "icon": {
+ "paths": [
+ "M369.92 213.635c28.003-59.237 74.705-107.622 132.92-137.699 58.21-30.077 124.698-40.177 189.214-28.744-10.999 33.702-12.45 69.79-4.198 104.266 8.256 34.476 25.894 65.994 50.961 91.062s56.585 42.705 91.059 50.959c34.479 8.254 70.566 6.801 104.269-4.196 2.987 16.896 4.523 34.304 4.523 52.053 0.073 50.322-12.625 99.837-36.907 143.916 35.772 31.514 61.099 73.173 72.606 119.441 11.507 46.263 8.653 94.938-8.188 139.537s-46.869 83.017-86.080 110.127c-39.215 27.115-85.756 41.638-133.431 41.647h-362.667c-89.274-0.051-174.975-35.076-238.732-97.566s-100.493-147.473-102.335-236.727c-1.842-89.254 31.358-175.68 92.483-240.746s145.308-103.597 234.504-107.33zM462.805 222.467c53.769 12.813 103.633 38.468 145.318 74.767 41.69 36.3 73.954 82.162 94.042 133.661 42.261-8.102 85.935-4.486 126.293 10.453 9.643-18.135 16.768-37.762 20.821-58.455-64.521-5.947-124.928-34.292-170.735-80.116-45.811-45.825-74.133-106.24-80.060-170.764-55.415 11.008-104.205 43.535-135.68 90.453z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-cloudy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2178,
+ "id": 171,
+ "name": "moon-cloudy-fill",
+ "prevSize": 32,
+ "code": 61775
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2127
+ },
+ {
+ "icon": {
+ "paths": [
+ "M270.549 597.333c-18.113-51.23-19.454-106.897-3.831-158.942 15.624-52.043 47.403-97.766 90.738-130.55s95.979-50.929 150.311-51.808c54.332-0.879 107.533 15.552 151.906 46.917s77.615 76.035 94.912 127.548c17.301 51.511 17.762 107.191 1.318 158.98-16.448 51.789-48.947 97.003-92.796 129.101-43.844 32.094-96.768 49.399-151.108 49.421v-170.667h-241.451zM256 853.333h384v85.333h-384v-85.333zM42.667 469.333h128v85.333h-128v-85.333zM85.333 682.667h341.333v85.333h-341.333v-85.333zM469.333 42.667h85.333v128h-85.333v-128zM149.973 210.304l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM723.2 783.531l60.331-60.331 90.496 90.496-60.331 60.331-90.496-90.496zM813.696 149.931l60.331 60.373-90.496 90.496-60.331-60.331 90.496-90.539zM981.333 469.333v85.333h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sun-foggy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2179,
+ "id": 170,
+ "name": "sun-foggy-fill",
+ "prevSize": 32,
+ "code": 61776
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2128
+ },
+ {
+ "icon": {
+ "paths": [
+ "M485.547 86.146c-31.441 29.296-56.657 64.624-74.147 103.877s-26.895 81.627-27.653 124.593c-0.758 42.967 7.146 85.646 23.24 125.49 16.094 39.846 40.048 76.041 70.435 106.428s66.581 54.345 106.428 70.438c39.846 16.094 82.526 23.996 125.491 23.241 42.97-0.759 85.342-10.163 124.595-27.652 39.253-17.493 74.581-42.709 103.876-74.15-13.568 223.36-198.997 400.256-425.771 400.256-235.691 0-426.709-191.019-426.709-426.667 0-226.772 176.896-412.201 400.213-425.854z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2180,
+ "id": 169,
+ "name": "moon-fill",
+ "prevSize": 32,
+ "code": 61777
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2129
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 867.588v-99.584h-85.333v-170.667h-455.168c-9.436-34.769-14.199-70.643-14.165-106.667 0-194.562 137.088-357.122 320-396.332-24.509 65.819-28.118 137.596-10.334 205.541s56.094 128.75 109.705 174.121c53.615 45.372 119.915 73.101 189.867 79.407 69.952 6.302 140.143-9.122 201.003-44.177-3.575 78.003-29.594 153.314-74.927 216.892-45.338 63.578-108.066 112.713-180.646 141.508v-0.043zM298.667 853.338h298.667v85.333h-298.667v-85.333zM85.333 682.671h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["moon-foggy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2181,
+ "id": 168,
+ "name": "moon-foggy-fill",
+ "prevSize": 32,
+ "code": 61778
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2130
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810.453 759.211c-1.31-25.613-8.38-50.603-20.676-73.109-12.297-22.502-29.508-41.95-50.355-56.887s-44.791-24.99-70.054-29.397c-25.263-4.412-51.2-3.076-75.874 3.917-8.973-41.126-32.828-77.487-66.978-102.097s-76.19-35.738-118.045-31.241c-41.853 4.497-80.57 24.303-108.712 55.607s-43.726 71.902-43.759 113.997c0 46.080 18.261 87.851 47.872 118.528-57.039-13.798-109.557-42.065-152.485-82.078s-74.814-90.419-92.582-146.347c-17.767-55.932-20.815-115.495-8.848-172.946s38.543-110.846 77.163-155.030c38.62-44.185 87.98-77.666 143.313-97.211s114.771-24.495 172.576-14.371c57.801 10.124 112.021 34.98 157.414 72.169 45.397 37.188 80.439 85.452 101.743 140.132 59.593-11.869 121.468-0.161 172.604 32.663s87.543 84.202 101.568 143.326c14.025 59.123 4.565 121.382-26.381 173.675s-80.969 90.539-139.546 106.701h0.043zM426.667 725.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339c0-22.635 8.991-44.339 24.994-60.339 16.003-16.004 37.708-24.994 60.34-24.994 22.63 0 44.335 8.99 60.339 24.994 16.004 16 24.994 37.705 24.994 60.339 0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM640 853.333c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.635 8.99-44.339 24.994-60.339 16.004-16.004 37.709-24.994 60.339-24.994s44.335 8.99 60.339 24.994c16.004 16 24.994 37.705 24.994 60.339 0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM426.667 981.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339c0-22.635 8.991-44.339 24.994-60.339 16.003-16.004 37.708-24.994 60.34-24.994 22.63 0 44.335 8.99 60.339 24.994 16.004 16 24.994 37.705 24.994 60.339 0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hail-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2182,
+ "id": 167,
+ "name": "hail-fill",
+ "prevSize": 32,
+ "code": 61779
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2131
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 745.472c46.886 42.061 107.678 65.284 170.667 65.195h85.333v85.333h-85.333c-59.921 0.098-118.797-15.65-170.667-45.653-51.866 30.007-110.746 45.76-170.667 45.653-59.921 0.098-118.799-15.65-170.667-45.653-51.866 30.007-110.746 45.76-170.667 45.653h-85.333v-85.333h85.333c65.579 0 125.44-24.661 170.667-65.195 46.888 42.061 107.678 65.284 170.667 65.195 65.579 0 125.44-24.661 170.667-65.195zM536.448 65.367l4.267 3.413 440.619 400.553h-128v256c-33.122 0.030-65.796-7.671-95.424-22.485s-55.39-36.331-75.243-62.848c-19.849 26.522-45.611 48.043-75.238 62.857s-62.302 22.511-95.428 22.477c-33.122 0.030-65.796-7.671-95.424-22.485s-55.39-36.331-75.243-62.848c-19.848 26.522-45.611 48.043-75.238 62.857s-62.304 22.511-95.428 22.477l-0.043-256h-127.957l440.619-400.553c6.49-5.907 14.639-9.671 23.343-10.778s17.536 0.496 25.297 4.591l4.523 2.773z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["flood-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2183,
+ "id": 166,
+ "name": "flood-fill",
+ "prevSize": 32,
+ "code": 61780
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2132
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 437.547v-224.213c0-45.264 17.981-88.673 49.987-120.68s75.415-49.987 120.68-49.987c45.265 0 88.674 17.981 120.678 49.987 32.009 32.006 49.988 75.416 49.988 120.68v224.213c52.181 36.335 91.405 88.371 111.962 148.544 20.557 60.169 21.372 125.329 2.334 185.997-19.042 60.663-56.947 113.673-108.198 151.305-51.255 37.632-113.178 57.924-176.764 57.924s-125.51-20.292-176.762-57.924c-51.253-37.632-89.158-90.641-108.199-151.305-19.041-60.668-18.223-125.828 2.333-185.997 20.557-60.173 59.78-112.209 111.961-148.544zM341.333 682.667c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.415 49.988 120.68 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["temp-cold-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2184,
+ "id": 165,
+ "name": "temp-cold-fill",
+ "prevSize": 32,
+ "code": 61781
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2133
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 768v213.333h-85.333v-213.333h-85.334v128h-85.333v-138.752c-56.588-14.643-108.468-43.575-150.669-84.019s-73.308-91.051-90.341-146.965c-17.033-55.915-19.422-115.267-6.938-172.371s39.424-110.044 78.238-153.749c38.813-43.705 88.201-76.711 143.429-95.855s114.448-23.784 171.984-13.476c57.536 10.308 111.462 35.219 156.608 72.346s80.004 85.225 101.231 139.688c32.085-6.14 65.101-5.512 96.934 1.844 31.829 7.355 61.773 21.276 87.915 40.87 26.138 19.595 47.902 44.431 63.889 72.92 15.991 28.487 25.856 60.001 28.962 92.526 3.11 32.521-0.606 65.331-10.91 96.333s-26.965 59.511-48.922 83.703c-21.956 24.192-48.721 43.533-78.583 56.785-29.858 13.252-62.157 20.122-94.827 20.173l-21.333 0.043v128h-85.333v-128l-85.333-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["heavy-showers-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2185,
+ "id": 164,
+ "name": "heavy-showers-fill",
+ "prevSize": 32,
+ "code": 61782
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2134
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 42.667v512c-0.009 67.14-17.621 133.107-51.085 191.317-33.459 58.21-81.6 106.628-139.614 140.425-58.014 33.801-123.874 51.797-191.014 52.198-67.14 0.397-133.213-16.815-191.625-49.92s-107.124-80.947-141.275-138.752c-34.152-57.809-52.55-123.558-53.359-190.694-0.809-67.14 15.999-133.314 48.748-191.927s80.293-107.615 137.891-142.118l282.667-163.2v118.187l298.667-137.515zM512 341.333c-56.58 0-110.842 22.476-150.849 62.484-40.008 40.006-62.484 94.269-62.484 150.849s22.476 110.844 62.484 150.848c40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848s-22.477-110.844-62.485-150.849c-40.004-40.008-94.268-62.484-150.848-62.484z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["meteor-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2186,
+ "id": 163,
+ "name": "meteor-fill",
+ "prevSize": 32,
+ "code": 61783
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2135
+ },
+ {
+ "icon": {
+ "paths": [
+ "M425.983 215.894c17.306-32.963 41.076-62.104 69.889-85.685s62.076-41.12 97.809-51.57c35.733-10.45 73.207-13.598 110.187-9.257 36.975 4.342 72.7 16.084 105.041 34.528s60.642 43.21 83.204 72.823c22.566 29.614 38.938 63.468 48.141 99.543s11.046 73.636 5.423 110.44c-5.623 36.804-18.603 72.1-38.157 103.78 34.223 32.23 57.975 73.993 68.186 119.885 10.206 45.888 6.396 93.781-10.935 137.481-17.335 43.699-47.394 81.182-86.281 107.597-38.891 26.411-84.813 40.538-131.823 40.542l-362.668-0.043c-46.574-0.034-92.648-9.6-135.387-28.109s-81.237-45.568-113.126-79.514c-31.889-33.946-56.495-74.057-72.302-117.867-15.807-43.806-22.481-90.389-19.611-136.875s15.222-91.891 36.297-133.425c21.075-41.533 50.427-78.313 86.249-108.078s77.357-51.883 122.047-64.994c44.69-13.111 91.592-16.938 137.816-11.245v0.043zM514.347 239.104c42.615 17.665 81.225 43.759 113.506 76.716 32.286 32.957 57.574 72.097 74.355 115.070 44.706-8.568 90.94-4.019 133.12 13.099 19.776-42.207 23.526-90.168 10.547-134.936s-41.805-83.286-81.092-108.367c-39.287-25.082-86.357-35.014-132.433-27.945-46.071 7.069-88 30.657-117.961 66.364h-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sun-cloudy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2187,
+ "id": 162,
+ "name": "sun-cloudy-fill",
+ "prevSize": 32,
+ "code": 61784
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2136
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 512h298.667v85.333h-298.667v298.667h-85.333v-554.667c0-45.264 17.98-88.673 49.988-120.68 32.004-32.006 75.413-49.987 120.678-49.987h298.667v85.333h-298.667c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34v170.667zM192 426.667c-19.611 0-39.029-3.863-57.147-11.367s-34.58-18.505-48.447-32.372c-13.867-13.867-24.867-30.329-32.372-48.447s-11.367-37.536-11.367-57.147c0-19.611 3.863-39.029 11.367-57.147s18.505-34.58 32.372-48.447c13.867-13.867 30.329-24.867 48.447-32.372s37.536-11.367 57.147-11.367c39.606 0 77.589 15.733 105.594 43.739s43.739 65.989 43.739 105.594c0 39.606-15.733 77.589-43.739 105.594s-65.989 43.739-105.594 43.739zM192 341.333c16.974 0 33.253-6.743 45.255-18.745s18.745-28.281 18.745-45.255c0-16.974-6.743-33.253-18.745-45.255s-28.281-18.745-45.255-18.745c-16.974 0-33.253 6.743-45.255 18.745s-18.745 28.281-18.745 45.255c0 16.974 6.743 33.253 18.745 45.255s28.281 18.745 45.255 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fahrenheit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2188,
+ "id": 161,
+ "name": "fahrenheit-fill",
+ "prevSize": 32,
+ "code": 61785
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2137
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 768v128h-85.334v-128c-62.12-0.021-123.057-16.99-176.244-49.084-53.187-32.098-96.607-78.097-125.58-133.047s-42.403-116.762-38.839-178.781c3.563-62.018 23.983-121.887 59.059-173.157s83.479-91.994 139.992-117.786c56.512-25.792 118.992-35.673 180.706-28.578 61.712 7.095 120.319 30.897 169.505 68.841s87.083 88.591 109.611 146.482c32.098-6.174 65.135-5.574 96.99 1.763s61.824 21.247 87.991 40.84c26.163 19.593 47.949 44.436 63.953 72.938s25.882 60.033 28.992 92.575c3.11 32.538-0.614 65.37-10.931 96.388-10.313 31.014-26.995 59.537-48.977 83.733-21.982 24.192-48.772 43.529-78.66 56.768s-62.212 20.087-94.899 20.105h-277.333zM554.667 853.333h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["drizzle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2189,
+ "id": 160,
+ "name": "drizzle-fill",
+ "prevSize": 32,
+ "code": 61786
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2138
+ },
+ {
+ "icon": {
+ "paths": [
+ "M67.584 554.965c-33.427-84.151-32.057-178.134 3.81-261.274s103.292-148.627 187.443-182.054c84.151-33.427 178.133-32.057 261.274 3.81s148.625 103.293 182.054 187.443c35.759-6.91 72.64-5.402 107.716 4.406s67.388 27.647 94.379 52.103c26.991 24.457 47.915 54.86 61.124 88.805 13.205 33.941 18.33 70.494 14.967 106.761h-912.768zM170.667 810.667h725.333v85.333h-725.333v-85.333zM85.333 640h896v85.333h-896v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["foggy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2190,
+ "id": 159,
+ "name": "foggy-fill",
+ "prevSize": 32,
+ "code": 61787
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2139
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.333 768v-170.368h-508.843c-31.432-80.201-31.376-169.327 0.158-249.491 31.534-80.165 92.212-145.442 169.865-182.737s166.534-43.851 248.815-18.351c82.287 25.5 151.885 81.169 194.837 155.84 32.098-6.174 65.131-5.574 96.986 1.761 31.851 7.335 61.82 21.244 87.987 40.835 26.163 19.59 47.949 44.431 63.953 72.931 16.009 28.497 25.886 60.028 28.996 92.565 3.115 32.538-0.606 65.37-10.918 96.384-10.308 31.019-26.987 59.537-48.964 83.738-21.973 24.196-48.764 43.533-78.647 56.777s-62.204 20.096-94.891 20.117h-149.333zM256 853.333h426.667v85.333h-426.667v-85.333zM85.333 682.667h426.667v85.333h-426.667v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["cloud-windy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2191,
+ "id": 158,
+ "name": "cloud-windy-fill",
+ "prevSize": 32,
+ "code": 61788
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2140
+ },
+ {
+ "icon": {
+ "paths": [
+ "M483.285 68.777c7.159-6.516 16.324-10.403 25.984-11.023s19.243 2.063 27.179 7.61l4.267 3.413 440.619 400.556h-128v384c0 10.449-3.84 20.535-10.782 28.343-6.946 7.812-16.512 12.8-26.893 14.025l-4.992 0.299h-277.333l106.667-170.667-149.333-128 170.667-128-106.667-85.335 21.333-128-128 128 106.667 85.335-213.333 128 160 149.333-138.667 149.333h-149.333c-10.45-0.004-20.537-3.84-28.346-10.782-7.81-6.946-12.799-16.516-14.022-26.893l-0.299-4.992v-384h-128l440.619-400.556z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["earthquake-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2192,
+ "id": 157,
+ "name": "earthquake-fill",
+ "prevSize": 32,
+ "code": 61789
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2141
+ },
+ {
+ "icon": {
+ "paths": [
+ "M789.333 384c42.667 45.227 64 102.144 64 170.667 0 147.883-157.867 182.443-234.667 384-28.459-24.533-42.667-60.075-42.667-106.667 0-148.565 213.333-225.707 213.333-448zM618.667 213.333c51.2 52.821 76.8 109.739 76.8 170.667 0 211.243-257.92 242.859-204.8 554.667-71.125-49.493-106.667-120.619-106.667-213.333 0-141.867 234.667-256 234.667-512zM426.667 42.667c56.875 71.125 85.333 135.125 85.333 192 0 266.667-362.667 350.805-170.667 704-111.616-24.747-192-128-192-256 0-277.333 277.333-320 277.333-640z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["blaze-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2193,
+ "id": 156,
+ "name": "blaze-fill",
+ "prevSize": 32,
+ "code": 61790
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2142
+ },
+ {
+ "icon": {
+ "paths": [
+ "M257.152 743.68c-73.584-29.538-134.595-83.759-172.565-153.37-37.97-69.606-50.532-150.259-35.531-228.119 15.002-77.859 56.631-148.070 117.747-198.586s137.906-78.19 217.197-78.271c68.779-0.004 135.958 20.764 192.739 59.583s100.51 93.881 125.47 157.974c60.053-5.637 119.974 12.069 167.322 49.442s78.485 91.542 86.95 151.267c8.465 59.721-6.391 120.41-41.489 169.468-35.093 49.058-87.735 82.718-146.991 93.995-0.209-65.724-25.69-128.849-71.164-176.299-45.474-47.454-107.456-75.601-173.107-78.613-65.655-3.008-129.954 19.349-179.578 62.438-49.624 43.093-80.774 103.62-86.999 169.050v0.043zM554.667 694.059l83.797-48.384 42.667 73.899-83.797 48.427 83.797 48.384-42.667 73.899-83.797-48.384v96.768h-85.333v-96.768l-83.798 48.384-42.667-73.899 83.797-48.384-83.797-48.384 42.667-73.899 83.798 48.384v-96.768h85.333v96.725z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["snowy-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2194,
+ "id": 155,
+ "name": "snowy-fill",
+ "prevSize": 32,
+ "code": 61791
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2143
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM572.373 469.333l105.557-105.6-60.331-60.331-105.6 105.6-105.6-105.643-60.331 60.373 105.6 105.6-105.643 105.6 60.331 60.331 105.643-105.6 105.6 105.6 60.331-60.331-105.557-105.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-delete-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2195,
+ "id": 154,
+ "name": "chat-delete-fill",
+ "prevSize": 32,
+ "code": 61792
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2144
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-620.587l-190.080 149.333v-789.333c0-23.552 19.115-42.667 42.667-42.667h768zM725.333 298.667h-85.333v341.333h85.333v-341.333zM469.333 341.333h-85.333v85.291l-85.333 0.043v85.333l85.333-0.043v85.376h85.333v-85.376l85.333 0.043v-85.333l-85.333-0.043v-85.291z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-follow-up-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2196,
+ "id": 153,
+ "name": "chat-follow-up-fill",
+ "prevSize": 32,
+ "code": 61793
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2145
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM554.667 469.333h128l-170.667-170.667-170.667 170.667h128v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-upload-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2197,
+ "id": 152,
+ "name": "chat-upload-fill",
+ "prevSize": 32,
+ "code": 61794
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2146
+ },
+ {
+ "icon": {
+ "paths": [
+ "M210.304 813.696c-39.679-39.578-71.145-86.601-92.592-138.377s-32.451-107.277-32.379-163.319c0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667h-426.666l124.971-124.971zM469.333 256v512h85.333v-512h-85.333zM298.667 384v256h85.333v-256h-85.333zM640 384v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-voice-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2198,
+ "id": 151,
+ "name": "chat-voice-fill",
+ "prevSize": 32,
+ "code": 61795
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2147
+ },
+ {
+ "icon": {
+ "paths": [
+ "M119.805 59.432l844.756 844.798-60.373 60.331-153.941-153.941-474.836 0.043-190.080 149.333v-789.332c0-7.253 1.792-14.037 4.949-20.011l-30.848-30.848 60.373-60.373zM895.996 127.997c11.319 0 22.17 4.495 30.174 12.497 8 8.001 12.493 18.854 12.493 30.17v588.158l-630.868-630.825h588.201z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2199,
+ "id": 150,
+ "name": "chat-off-fill",
+ "prevSize": 32,
+ "code": 61796
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2148
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-72.619 0-141.013-18.133-200.875-50.133l-225.792 50.133 50.176-225.707c-32-59.904-50.176-128.299-50.176-200.96 0-235.648 191.019-426.667 426.667-426.667zM554.667 298.667h-85.333v298.667h256v-85.333h-170.667v-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-history-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2200,
+ "id": 149,
+ "name": "chat-history-fill",
+ "prevSize": 32,
+ "code": 61797
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2149
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-620.587l-190.080 149.333v-789.333c0-23.552 19.115-42.667 42.667-42.667h768zM554.667 298.667h-85.333v341.333h85.333v-341.333zM725.333 384h-85.333v256h85.333v-256zM384 469.333h-85.333v170.667h85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-poll-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2201,
+ "id": 148,
+ "name": "chat-poll-fill",
+ "prevSize": 32,
+ "code": 61798
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2150
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM512.768 627.2l143.317-143.317c8.913-8.913 15.987-19.499 20.809-31.147 4.826-11.644 7.309-24.128 7.309-36.736s-2.483-25.091-7.309-36.738c-4.821-11.648-11.895-22.231-20.809-31.145s-19.499-15.986-31.147-20.81c-11.644-4.825-24.128-7.308-36.736-7.308s-25.092 2.483-36.736 7.308c-11.648 4.824-22.234 11.896-31.147 20.81l-7.552 7.552-7.552-7.552c-8.913-8.914-19.499-15.986-31.147-20.81-11.644-4.825-24.128-7.308-36.736-7.308s-25.091 2.483-36.738 7.308c-11.648 4.824-22.231 11.896-31.145 20.81-18.004 18.004-28.118 42.422-28.118 67.883 0 25.459 10.114 49.877 28.118 67.883l143.317 143.317z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-heart-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2202,
+ "id": 147,
+ "name": "chat-heart-fill",
+ "prevSize": 32,
+ "code": 61799
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2151
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426.667 128h170.667c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359 0 90.526-35.964 177.348-99.972 241.361-64.013 64.009-150.835 99.972-241.361 99.972v149.333c-213.333-85.333-512-213.333-512-490.667 0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-1-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2203,
+ "id": 146,
+ "name": "chat-1-fill",
+ "prevSize": 32,
+ "code": 61800
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2152
+ },
+ {
+ "icon": {
+ "paths": [
+ "M311.083 888.491l-225.749 50.176 50.176-225.749c-33.044-61.807-50.281-130.833-50.176-200.917 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-70.084 0.107-139.109-17.131-200.917-50.176v0zM298.667 512c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848h-85.333c0 33.946-13.487 66.505-37.491 90.509s-56.559 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.509-37.491s-37.49-56.563-37.49-90.509h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-smile-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2204,
+ "id": 145,
+ "name": "chat-smile-2-fill",
+ "prevSize": 32,
+ "code": 61801
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2153
+ },
+ {
+ "icon": {
+ "paths": [
+ "M210.304 813.696c-39.679-39.578-71.145-86.601-92.592-138.377s-32.451-107.277-32.379-163.319c0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667h-426.666l124.971-124.971zM341.334 554.667c0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.414 49.988 120.679 49.988s88.674-17.98 120.678-49.988c32.009-32.004 49.988-75.413 49.988-120.678h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-smile-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2205,
+ "id": 144,
+ "name": "chat-smile-3-fill",
+ "prevSize": 32,
+ "code": 61802
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2154
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v597.333c0 23.552-19.115 42.667-42.667 42.667h-620.587l-190.080 149.333v-789.333c0-23.552 19.115-42.667 42.667-42.667h768zM467.712 345.6l-19.072-29.355c-76.245 33.067-128.64 99.968-128.64 174.635 0 42.453 11.819 68.651 33.792 91.989 13.824 14.677 35.712 25.131 58.624 25.131 41.216 0 74.667-33.451 74.667-74.667 0-39.253-30.336-70.869-68.864-74.453-6.827-0.64-13.824-0.512-20.437 0.427v-3.925c0.256-18.005 3.925-69.675 62.037-105.216l7.893-4.565v0zM661.973 316.245c-76.245 33.067-128.64 99.968-128.64 174.635 0 42.453 11.819 68.651 33.792 91.989 13.824 14.677 35.712 25.131 58.624 25.131 41.216 0 74.667-33.451 74.667-74.667 0-39.253-30.336-70.869-68.864-74.453-6.827-0.64-13.824-0.512-20.437 0.427 0-13.355-1.237-75.179 69.931-113.707l-19.072-29.355z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-quote-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2206,
+ "id": 143,
+ "name": "chat-quote-fill",
+ "prevSize": 32,
+ "code": 61803
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2155
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2207,
+ "id": 142,
+ "name": "chat-4-fill",
+ "prevSize": 32,
+ "code": 61804
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2156
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM469.333 426.667h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128h-85.333v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-new-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2208,
+ "id": 141,
+ "name": "chat-new-fill",
+ "prevSize": 32,
+ "code": 61805
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2157
+ },
+ {
+ "icon": {
+ "paths": [
+ "M716.8 810.667l-119.467 149.333-119.467-149.333h-221.867c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-464.939c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v464.939c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-221.867zM85.333 85.333h725.333v85.333h-682.667v469.333h-85.333v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["discuss-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2209,
+ "id": 140,
+ "name": "discuss-fill",
+ "prevSize": 32,
+ "code": 61806
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2158
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 768h436.779l75.221 59.093v-443.093h42.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v576l-190.080-149.333h-364.587c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-42.667zM232.747 682.667l-190.080 149.333v-661.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h640c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512h-535.253z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["question-answer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2210,
+ "id": 139,
+ "name": "question-answer-fill",
+ "prevSize": 32,
+ "code": 61807
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2159
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM298.667 426.667c0 56.58 22.476 110.844 62.484 150.848 40.008 40.009 94.269 62.485 150.849 62.485s110.844-22.477 150.848-62.485c40.009-40.004 62.485-94.268 62.485-150.848h-85.333c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-smile-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2211,
+ "id": 138,
+ "name": "chat-smile-fill",
+ "prevSize": 32,
+ "code": 61808
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2160
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667c-72.619 0-141.013-18.133-200.875-50.133l-225.792 50.133 50.176-225.707c-32-59.904-50.176-128.299-50.176-200.96 0-235.648 191.019-426.667 426.667-426.667zM512 298.667c-68.181 0-128 57.173-128 128v42.667h-42.667v213.333h341.333v-213.333h-42.667v-42.667c0-70.699-57.301-128-128-128zM597.333 554.667v42.667h-170.667v-42.667h170.667zM512 384c20.309 0 42.667 20.907 42.667 42.667v42.667h-85.333v-42.667c0-21.76 20.779-42.667 42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-private-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2212,
+ "id": 137,
+ "name": "chat-private-fill",
+ "prevSize": 32,
+ "code": 61809
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2161
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM554.667 469.333v-170.667h-85.333v170.667h-128l170.667 170.667 170.667-170.667h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-download-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2213,
+ "id": 136,
+ "name": "chat-download-fill",
+ "prevSize": 32,
+ "code": 61810
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2162
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM469.333 597.333v85.333h85.333v-85.333h-85.333zM365.525 376.021l83.712 16.768c2.377-11.886 8.077-22.852 16.444-31.624 8.363-8.772 19.046-14.988 30.805-17.925s24.111-2.475 35.618 1.334c11.507 3.808 21.696 10.806 29.38 20.179 7.689 9.373 12.553 20.735 14.033 32.765s-0.486 24.233-5.67 35.19c-5.184 10.957-13.376 20.215-23.616 26.697-10.24 6.485-22.11 9.929-34.231 9.929h-42.667v85.333h42.667c28.279-0.009 55.974-8.047 79.863-23.177 23.889-15.134 42.991-36.736 55.083-62.298s16.678-54.034 13.222-82.1c-3.456-28.067-14.805-54.575-32.734-76.443-17.933-21.868-41.702-38.194-68.548-47.082-26.842-8.887-55.659-9.97-83.098-3.122-27.435 6.848-52.364 21.346-71.884 41.806s-32.829 46.042-38.38 73.771v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["questionnaire-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2214,
+ "id": 135,
+ "name": "questionnaire-fill",
+ "prevSize": 32,
+ "code": 61811
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2163
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM469.333 554.667v85.333h85.333v-85.333h-85.333zM469.333 298.667v213.333h85.333v-213.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["feedback-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2215,
+ "id": 134,
+ "name": "feedback-fill",
+ "prevSize": 32,
+ "code": 61812
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2164
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM512 426.667h-170.667v85.333h170.667v128l170.667-170.667-170.667-170.667v128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-forward-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2216,
+ "id": 133,
+ "name": "chat-forward-fill",
+ "prevSize": 32,
+ "code": 61813
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2165
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM298.667 426.667v85.333h85.333v-85.333h-85.333zM469.333 426.667v85.333h85.333v-85.333h-85.333zM640 426.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["message-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2217,
+ "id": 132,
+ "name": "message-2-fill",
+ "prevSize": 32,
+ "code": 61814
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2166
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 383.744c-0.023-33.613 6.586-66.9 19.446-97.955s31.72-59.268 55.5-83.024c23.779-23.756 52.012-42.588 83.080-55.417s64.362-19.404 97.974-19.348h341.333c141.355 0 256 114.987 256 255.744v512.256h-597.333c-141.355 0-256-114.987-256-255.744v-256.512zM597.333 469.333v85.333h85.333v-85.333h-85.333zM341.333 469.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["message-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2218,
+ "id": 131,
+ "name": "message-3-fill",
+ "prevSize": 32,
+ "code": 61815
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2167
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM597.333 437.333v-96h-298.667v256h298.667v-96l128 96v-256l-128 96z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-chat-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2219,
+ "id": 130,
+ "name": "video-chat-fill",
+ "prevSize": 32,
+ "code": 61816
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2168
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM347.52 515.029l-41.6 24.021 42.667 73.899 41.643-24.021c21.376 21.76 48.64 37.845 79.104 45.696v48.043h85.333v-48.043c30.033-7.753 57.382-23.552 79.104-45.696l41.643 24.021 42.667-73.899-41.6-24.021c8.299-29.901 8.299-61.491 0-91.392l41.6-24.021-42.667-73.899-41.643 24.021c-21.722-22.144-49.071-37.943-79.104-45.696v-48.043h-85.333v48.043c-30.033 7.753-57.384 23.552-79.104 45.696l-41.643-24.021-42.667 73.899 41.6 24.021c-8.3 29.901-8.3 61.491 0 91.392v0zM512 554.667c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.63 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.709 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-settings-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2220,
+ "id": 129,
+ "name": "chat-settings-fill",
+ "prevSize": 32,
+ "code": 61817
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2169
+ },
+ {
+ "icon": {
+ "paths": [
+ "M311.083 888.491l-225.749 50.176 50.176-225.749c-33.044-61.807-50.281-130.833-50.176-200.917 0-235.648 191.019-426.667 426.666-426.667s426.667 191.019 426.667 426.667c0 235.648-191.019 426.667-426.667 426.667-70.084 0.107-139.109-17.131-200.917-50.176v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2221,
+ "id": 128,
+ "name": "chat-3-fill",
+ "prevSize": 32,
+ "code": 61818
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2170
+ },
+ {
+ "icon": {
+ "paths": [
+ "M616.533 810.667l-104.533 149.333-104.533-149.333h-279.467c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-279.467z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2222,
+ "id": 127,
+ "name": "chat-2-fill",
+ "prevSize": 32,
+ "code": 61819
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2171
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM341.333 426.667v85.333h341.333v-85.333h-341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["message-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2223,
+ "id": 126,
+ "name": "message-fill",
+ "prevSize": 32,
+ "code": 61820
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2172
+ },
+ {
+ "icon": {
+ "paths": [
+ "M275.413 810.667l-190.080 149.333v-789.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-620.587zM481.835 517.163l-105.6-105.6-60.331 60.373 165.931 165.931 241.365-241.365-60.331-60.331-181.035 180.992z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["chat-check-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2224,
+ "id": 125,
+ "name": "chat-check-fill",
+ "prevSize": 32,
+ "code": 61821
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2173
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 629.12c-52.18-36.335-91.404-88.371-111.961-148.544-20.557-60.169-21.374-125.329-2.333-185.996s56.946-113.673 108.199-151.305c51.252-37.632 113.178-57.924 176.762-57.924s125.508 20.293 176.764 57.924c51.251 37.632 89.156 90.638 108.198 151.305 19.038 60.667 18.223 125.827-2.334 185.996-20.557 60.173-59.78 112.209-111.962 148.544v266.88c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-256c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-266.88zM341.333 597.333c56.579 0 110.844-22.477 150.848-62.485 40.009-40.009 62.485-94.268 62.485-150.848 0-56.579-22.477-110.842-62.485-150.849-40.004-40.008-94.269-62.484-150.848-62.484s-110.842 22.476-150.849 62.484c-40.008 40.008-62.484 94.27-62.484 150.849 0 56.581 22.476 110.84 62.484 150.848s94.27 62.485 150.849 62.485zM298.667 768v85.333h85.333v-85.333h-85.333zM341.333 512c-33.948 0-66.505-13.487-90.51-37.491s-37.49-56.561-37.49-90.509c0-33.948 13.486-66.505 37.49-90.51s56.562-37.49 90.51-37.49c33.948 0 66.505 13.486 90.509 37.49s37.491 56.562 37.491 90.51c0 33.948-13.487 66.505-37.491 90.509s-56.561 37.491-90.509 37.491zM597.333 725.333v-55.125c40.316-35.981 72.563-80.081 94.622-129.408 22.063-49.327 33.438-102.767 33.378-156.8 0.137-94.481-34.701-185.671-97.792-256h268.459c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-298.667zM768 298.666v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dv-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2225, "id": 124, "name": "dv-fill", "prevSize": 32, "code": 61822 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2174
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128v597.333c-0.009 37.568-12.412 74.082-35.29 103.885-22.874 29.798-54.942 51.217-91.234 60.937-36.288 9.715-74.769 7.189-109.474-7.194-34.709-14.383-63.701-39.812-82.479-72.35-18.782-32.538-26.3-70.362-21.393-107.605 4.907-37.248 21.965-71.834 48.529-98.398 26.569-26.564 61.154-43.618 98.402-48.521s75.072 2.624 107.605 21.406v-321.493h-384v469.333c-0.009 37.568-12.413 74.082-35.288 103.885-22.876 29.798-54.945 51.217-91.235 60.937-36.289 9.715-74.771 7.189-109.478-7.194s-63.697-39.812-82.478-72.35c-18.78-32.538-26.3-70.362-21.393-107.605 4.907-37.248 21.966-71.834 48.532-98.398s61.154-43.618 98.401-48.521c37.247-4.902 75.070 2.624 107.605 21.406v-449.493h554.666z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["music-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2226,
+ "id": 123,
+ "name": "music-2-fill",
+ "prevSize": 32,
+ "code": 61823
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2175
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 725.333c-56.58 0-110.842-22.477-150.849-62.485-40.008-40.004-62.484-94.268-62.484-150.848s22.476-110.842 62.484-150.849c40.008-40.008 94.269-62.484 150.849-62.484s110.844 22.476 150.848 62.484c40.009 40.008 62.485 94.269 62.485 150.849s-22.477 110.844-62.485 150.848c-40.004 40.009-94.268 62.485-150.848 62.485zM512 810.667c39.223 0 78.059-7.727 114.295-22.733 36.237-15.010 69.158-37.009 96.892-64.747 27.738-27.733 49.737-60.655 64.747-96.892 15.006-36.237 22.733-75.072 22.733-114.295s-7.727-78.059-22.733-114.295c-15.010-36.236-37.009-69.161-64.747-96.895-27.733-27.734-60.655-49.733-96.892-64.743s-75.072-22.735-114.295-22.735c-79.211 0-155.178 31.467-211.189 87.477s-87.477 131.979-87.477 211.189c0 79.211 31.467 155.179 87.477 211.187 56.011 56.013 131.979 87.479 211.189 87.479zM512 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speaker-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2227,
+ "id": 122,
+ "name": "speaker-2-fill",
+ "prevSize": 32,
+ "code": 61824
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2176
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 682.667c-45.265 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678s17.981-88.673 49.987-120.68c32.006-32.006 75.415-49.987 120.68-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.415 49.988 120.68s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988zM512 768c67.895 0 133.009-26.97 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019s26.971 133.009 74.981 181.018c48.009 48.013 113.124 74.982 181.019 74.982zM256 298.667c11.316 0 22.168-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.495-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.495 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM768 298.667c11.315 0 22.17-4.495 30.17-12.497s12.497-18.854 12.497-30.17c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.316 4.497 22.168 12.497 30.17s18.854 12.497 30.17 12.497zM768 810.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.497-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.315 0-22.17 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM256 810.667c11.316 0 22.168-4.497 30.17-12.497s12.497-18.854 12.497-30.17c0-11.315-4.495-22.17-12.497-30.17s-18.854-12.497-30.17-12.497c-11.316 0-22.168 4.497-30.17 12.497s-12.497 18.854-12.497 30.17c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497zM512 576c16.973 0 33.254-6.741 45.257-18.743s18.743-28.284 18.743-45.257c0-16.973-6.741-33.254-18.743-45.257s-28.284-18.743-45.257-18.743c-16.973 0-33.254 6.741-45.257 18.743s-18.743 28.284-18.743 45.257c0 16.973 6.741 33.254 18.743 45.257s28.284 18.743 45.257 18.743z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speaker-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2228,
+ "id": 121,
+ "name": "speaker-3-fill",
+ "prevSize": 32,
+ "code": 61825
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2177
+ },
+ {
+ "icon": {
+ "paths": [
+ "M827.307 134.868l60.288 60.331-105.6 105.6 105.6 105.6-105.6 105.601 105.6 105.643-105.6 105.6 105.6 105.6-60.331 60.331-165.931-165.973 105.6-105.557-105.6-105.643 105.6-105.601-105.6-105.6 165.973-165.931zM554.667 850.987c0.004 4.041-1.143 8-3.302 11.413-2.159 3.418-5.244 6.148-8.896 7.881-3.652 1.728-7.723 2.385-11.733 1.894-4.011-0.495-7.799-2.116-10.927-4.676l-225.834-184.875-165.973 0.043c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256.001c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497l110.251-0.085-161.109-161.109 60.331-60.331 417.194 417.196v313.984zM549.845 159.53c3.115 3.805 4.817 8.567 4.821 13.483v243.285l-158.634-158.592 123.776-101.205c2.167-1.777 4.663-3.11 7.347-3.922s5.5-1.087 8.29-0.81c2.79 0.277 5.5 1.102 7.97 2.426s4.655 3.123 6.43 5.292v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-off-vibrate-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2229,
+ "id": 120,
+ "name": "volume-off-vibrate-fill",
+ "prevSize": 32,
+ "code": 61826
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2178
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c23.552 0 42.667 19.115 42.667 42.667v682.667c0 23.552-19.115 42.667-42.667 42.667h-768c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h768zM384 341.333c-94.208 0-170.667 76.459-170.667 170.667s76.459 170.667 170.667 170.667c46.933 0 89.6-19.2 120.661-50.005l-60.331-60.331c-15.403 15.445-36.736 25.003-60.331 25.003-47.147 0-85.333-38.187-85.333-85.333s38.187-85.333 85.333-85.333c23.467 0 44.715 9.387 60.373 25.045l60.331-60.331c-30.891-30.933-73.557-50.048-120.704-50.048zM682.667 341.333c-94.208 0-170.667 76.459-170.667 170.667s76.459 170.667 170.667 170.667c47.104 0 89.771-19.115 120.661-50.005l-60.331-60.331c-15.445 15.445-36.779 25.003-60.331 25.003-47.147 0-85.333-38.187-85.333-85.333s38.187-85.333 85.333-85.333c23.595 0 44.928 9.557 60.373 25.045l60.331-60.331c-30.891-30.933-73.557-50.048-120.704-50.048z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["closed-captioning-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2230,
+ "id": 119,
+ "name": "closed-captioning-fill",
+ "prevSize": 32,
+ "code": 61827
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2179
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 298.667v426.667c0 11.315 4.495 22.17 12.497 30.17s18.854 12.497 30.17 12.497h426.667c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-426.667c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497h-426.667c-11.316 0-22.168 4.495-30.17 12.497s-12.497 18.854-12.497 30.17z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stop-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2231,
+ "id": 118,
+ "name": "stop-mini-fill",
+ "prevSize": 32,
+ "code": 61828
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2180
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-682.667v597.333h256v85.333h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM896 554.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM286.165 268.501l96 96 87.168-87.168v234.667h-234.667l87.168-87.168-96-96 60.331-60.331z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["picture-in-picture-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2232,
+ "id": 117,
+ "name": "picture-in-picture-2-fill",
+ "prevSize": 32,
+ "code": 61829
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2181
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 128h256v256h-85.333v-170.667h-170.667v-85.333zM85.333 128h256v85.333h-170.667v170.667h-85.333v-256zM853.333 810.667v-170.667h85.333v256h-256v-85.333h170.667zM170.667 810.667h170.667v85.333h-256v-256h85.333v170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fullscreen-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2233,
+ "id": 116,
+ "name": "fullscreen-fill",
+ "prevSize": 32,
+ "code": 61830
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2182
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 540.459l-436.181 290.773c-3.212 2.138-6.945 3.362-10.799 3.55-3.855 0.183-7.687-0.683-11.089-2.505-3.402-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.032-7.1-3.034-10.957v-602.965c0.002-3.859 1.050-7.645 3.034-10.955s4.828-6.020 8.23-7.841c3.402-1.821 7.234-2.686 11.089-2.502s7.587 1.411 10.799 3.549l436.181 290.773v-270.208c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-270.208z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-forward-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2234,
+ "id": 115,
+ "name": "skip-forward-fill",
+ "prevSize": 32,
+ "code": 61831
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2183
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM320 480v-96h-64v256h64v-96h85.333v96h64v-256h-64v96h-85.333zM618.667 448h64c5.658 0 11.085 2.249 15.087 6.246 3.998 4.002 6.246 9.429 6.246 15.087v85.333c0 5.658-2.249 11.085-6.246 15.087-4.002 3.998-9.429 6.246-15.087 6.246h-64v-128zM554.667 384v256h128c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339v-85.333c0-22.63-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994h-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hd-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2235, "id": 114, "name": "hd-fill", "prevSize": 32, "code": 61832 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2184
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 483.541l436.181-290.773c3.213-2.138 6.946-3.364 10.799-3.549s7.689 0.68 11.089 2.502c3.401 1.821 6.246 4.531 8.23 7.841s3.034 7.096 3.034 10.955v602.965c0 3.857-1.050 7.646-3.034 10.957-1.984 3.307-4.83 6.020-8.23 7.838-3.401 1.822-7.236 2.688-11.089 2.505-3.853-0.188-7.586-1.412-10.799-3.55l-436.181-290.773v270.208c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v270.208z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-back-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2236,
+ "id": 113,
+ "name": "skip-back-fill",
+ "prevSize": 32,
+ "code": 61833
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2185
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 213.333h512c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v512c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-512c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stop-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2237,
+ "id": 112,
+ "name": "stop-fill",
+ "prevSize": 32,
+ "code": 61834
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2186
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 85.333h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v768c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-768c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM512 853.333c56.58 0 110.844-22.477 150.848-62.485 40.009-40.004 62.485-94.268 62.485-150.848s-22.477-110.844-62.485-150.848c-40.004-40.009-94.268-62.485-150.848-62.485s-110.842 22.477-150.849 62.485c-40.008 40.004-62.484 94.268-62.484 150.848s22.476 110.844 62.484 150.848c40.008 40.009 94.269 62.485 150.849 62.485zM512 341.333c16.973 0 33.254-6.743 45.257-18.745s18.743-28.281 18.743-45.255c0-16.974-6.741-33.253-18.743-45.255s-28.284-18.745-45.257-18.745c-16.973 0-33.254 6.743-45.257 18.745s-18.743 28.281-18.743 45.255c0 16.974 6.741 33.253 18.743 45.255s28.284 18.745 45.257 18.745zM512 768c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.509s56.564-37.491 90.51-37.491c33.946 0 66.505 13.487 90.509 37.491s37.491 56.563 37.491 90.509c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speaker-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2238,
+ "id": 111,
+ "name": "speaker-fill",
+ "prevSize": 32,
+ "code": 61835
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2187
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 128c23.552 0 42.667 19.115 42.667 42.667v74.965l-85.333 85.333v-117.632h-597.333v345.6l170.667-170.667 184.661 184.704-56.619 56.619-0.256 180.864 181.163 0.256 56.747-56.747 56.661 56.704h4.309v-117.675l85.333-85.333v245.675c0 23.552-19.115 42.667-42.667 42.667h-682.667c-23.552 0-42.667-19.115-42.667-42.667v-682.667c0-23.552 19.115-42.667 42.667-42.667h682.667zM929.195 333.141l60.331 60.331-331.861 331.861-60.416-0.085 0.085-60.245 331.861-331.861zM661.333 298.667c35.328 0 64 28.672 64 64s-28.672 64-64 64c-35.328 0-64-28.672-64-64s28.672-64 64-64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-edit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2239,
+ "id": 110,
+ "name": "image-edit-fill",
+ "prevSize": 32,
+ "code": 61836
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2188
+ },
+ {
+ "icon": {
+ "paths": [
+ "M793.003 853.333h-622.336c-3.962 0-7.846-1.105-11.216-3.187s-6.094-5.060-7.866-8.606c-1.772-3.541-2.522-7.509-2.166-11.456s1.803-7.714 4.18-10.884l17.067-22.741v-369.792c0-56.746 13.824-110.25 38.357-157.312l-149.589-149.547 60.373-60.373 844.757 844.8-60.373 60.331-111.189-111.232zM853.333 673.536l-530.816-530.816c51.402-34.307 111.155-54.014 172.881-57.020s123.11 10.802 177.6 39.952c54.494 29.149 100.053 72.547 131.81 125.56 31.761 53.014 48.533 113.655 48.525 175.454v246.869zM405.334 896h213.333c0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.002-20.006-31.24-47.138-31.24-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2240,
+ "id": 109,
+ "name": "notification-off-fill",
+ "prevSize": 32,
+ "code": 61837
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2189
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM320 480v-96h-64v256h64v-96h85.333v96h64v-256h-64v96h-85.333zM693.333 640h32c11.315 0 22.17-4.497 30.17-12.497s12.497-18.854 12.497-30.17v-170.667c0-11.316-4.497-22.168-12.497-30.17s-18.854-12.497-30.17-12.497h-128c-11.315 0-22.17 4.495-30.17 12.497s-12.497 18.854-12.497 30.17v170.667c0 11.315 4.497 22.17 12.497 30.17s18.854 12.497 30.17 12.497h32v64h64v-64zM618.667 448h85.333v128h-85.333v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hq-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2241, "id": 108, "name": "hq-fill", "prevSize": 32, "code": 61838 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2190
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 763.008v-80.341l213.333 128-213.333 128v-89.173c-65.22-9.34-126.938-35.302-179.221-75.392s-93.372-92.954-119.317-153.515l-0.128-0.213-0.128 0.256c-29.606 69.065-78.828 127.927-141.564 169.293s-136.23 63.411-211.375 63.411h-30.933v-85.333h30.933c58.452 0 115.62-17.156 164.417-49.335s87.078-77.973 110.1-131.699l32.128-74.965-32.128-74.965c-23.022-53.728-61.303-99.519-110.1-131.699s-105.964-49.334-164.417-49.335h-30.933v-85.333h30.933c75.15 0.003 148.647 22.058 211.383 63.43s111.953 100.243 141.555 169.317l0.128 0.213 0.128-0.256c25.95-60.553 67.042-113.411 119.326-153.492s113.997-66.037 179.213-75.372v-89.173l213.333 128-213.333 128v-80.341c-48.346 8.957-93.734 29.713-132.13 60.422-38.4 30.71-68.621 70.425-87.987 115.62l-32.128 74.965 32.128 74.965c19.366 45.197 49.587 84.911 87.987 115.618 38.396 30.711 83.785 51.469 132.13 60.425z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["shuffle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2242,
+ "id": 107,
+ "name": "shuffle-fill",
+ "prevSize": 32,
+ "code": 61839
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2191
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM300.8 303.829c-27.775 27.705-49.8 60.626-64.811 96.871s-22.71 75.097-22.656 114.329c0 82.475 33.451 157.141 87.467 211.2l60.331-60.331c-19.844-19.797-35.578-43.319-46.298-69.218-10.72-25.903-16.214-53.662-16.166-81.694 0-58.88 23.893-112.213 62.464-150.827l-60.331-60.331zM723.2 303.829l-60.331 60.373c19.827 19.781 35.554 43.285 46.272 69.163 10.722 25.873 16.222 53.615 16.192 81.621 0 58.88-23.893 112.213-62.464 150.869l60.331 60.331c27.776-27.703 49.801-60.625 64.811-96.87s22.711-75.098 22.656-114.33c0.055-39.232-7.646-78.084-22.656-114.329s-37.035-69.166-64.811-96.871v0.043zM512 643.029c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491zM512 557.696c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["surround-sound-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2243,
+ "id": 106,
+ "name": "surround-sound-fill",
+ "prevSize": 32,
+ "code": 61840
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2192
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 853.333v82.432c0.006 4.058-1.144 8.034-3.316 11.46s-5.277 6.161-8.95 7.885c-3.673 1.724-7.761 2.368-11.785 1.852-4.024-0.521-7.817-2.172-10.935-4.77l-175.787-146.475c-3.372-2.812-5.794-6.596-6.936-10.833s-0.949-8.725 0.554-12.851c1.502-4.126 4.241-7.689 7.842-10.197 3.601-2.513 7.889-3.853 12.279-3.836h623.701c22.63 0 44.335-8.99 60.339-24.994 16.004-16 24.994-37.709 24.994-60.339v-341.333h85.333v341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-426.667zM682.667 170.667v-82.432c-0.009-4.057 1.143-8.032 3.315-11.459 2.176-3.427 5.278-6.162 8.951-7.887s7.761-2.365 11.785-1.848c4.023 0.517 7.817 2.17 10.935 4.767l175.787 146.475c3.371 2.81 5.79 6.589 6.933 10.824s0.951 8.719-0.542 12.842c-1.498 4.123-4.233 7.684-7.825 10.199s-7.876 3.86-12.262 3.853h-623.744c-22.632 0-44.337 8.991-60.34 24.994s-24.994 37.708-24.994 60.34v341.333h-85.333v-341.333c0-45.263 17.981-88.673 49.987-120.679s75.416-49.987 120.68-49.987h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["repeat-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2244,
+ "id": 105,
+ "name": "repeat-2-fill",
+ "prevSize": 32,
+ "code": 61841
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2193
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM512 640c33.946 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["record-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2245,
+ "id": 104,
+ "name": "record-circle-fill",
+ "prevSize": 32,
+ "code": 61842
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2194
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM384 384v256h256v-256h-256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["stop-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2246,
+ "id": 103,
+ "name": "stop-circle-fill",
+ "prevSize": 32,
+ "code": 61843
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2195
+ },
+ {
+ "icon": {
+ "paths": [
+ "M263.253 768c8.815-24.981 25.162-46.618 46.788-61.918s47.466-23.518 73.958-23.518c26.492 0 52.331 8.218 73.958 23.518s37.973 36.937 46.788 61.918h433.92v85.333h-433.92c-8.815 24.981-25.161 46.618-46.788 61.918-21.628 15.305-47.466 23.522-73.958 23.522s-52.332-8.218-73.958-23.522c-21.626-15.3-37.973-36.937-46.788-61.918h-177.92v-85.333h177.92zM519.253 469.333c8.815-24.981 25.161-46.616 46.788-61.918s47.467-23.52 73.958-23.52c26.492 0 52.331 8.217 73.958 23.52s37.973 36.937 46.788 61.918h177.92v85.333h-177.92c-8.815 24.981-25.161 46.618-46.788 61.918-21.628 15.305-47.467 23.522-73.958 23.522s-52.331-8.218-73.958-23.522c-21.628-15.3-37.973-36.937-46.788-61.918h-433.92v-85.333h433.92zM263.253 170.667c8.815-24.983 25.162-46.616 46.788-61.918s47.466-23.52 73.958-23.52c26.492 0 52.331 8.217 73.958 23.52s37.973 36.936 46.788 61.918h433.92v85.333h-433.92c-8.815 24.983-25.161 46.616-46.788 61.918s-47.466 23.52-73.958 23.52c-26.492 0-52.332-8.218-73.958-23.52s-37.973-36.936-46.788-61.918h-177.92v-85.333h177.92z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["equalizer-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2247,
+ "id": 102,
+ "name": "equalizer-fill",
+ "prevSize": 32,
+ "code": 61844
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2196
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-682.667v597.333h256v85.333h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM896 554.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h341.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["picture-in-picture-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2248,
+ "id": 101,
+ "name": "picture-in-picture-fill",
+ "prevSize": 32,
+ "code": 61845
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2197
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 42.667v85.333h341.333v-85.333h85.333v85.333h128.341c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341v-85.333h85.333zM512 341.333l-170.667 170.667h128v170.667h85.333v-170.667h128l-170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gallery-upload-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2249,
+ "id": 100,
+ "name": "gallery-upload-fill",
+ "prevSize": 32,
+ "code": 61846
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2198
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 298.667h85.333v426.667h-85.333v-426.667zM42.667 426.667h85.333v170.667h-85.333v-170.667zM384 85.333h85.333v768h-85.333v-768zM554.667 170.667h85.333v768h-85.333v-768zM725.333 298.667h85.333v426.667h-85.333v-426.667zM896 426.667h85.333v170.667h-85.333v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["voiceprint-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2250,
+ "id": 99,
+ "name": "voiceprint-fill",
+ "prevSize": 32,
+ "code": 61847
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2199
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 298.667h170.667v85.333h-256v-256h85.333v170.667zM341.333 384h-256v-85.333h170.667v-170.667h85.333v256zM768 725.333v170.667h-85.333v-256h256v85.333h-170.667zM341.333 640v256h-85.333v-170.667h-170.667v-85.333h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["fullscreen-exit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2251,
+ "id": 98,
+ "name": "fullscreen-exit-fill",
+ "prevSize": 32,
+ "code": 61848
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2200
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128h256l85.333 85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667l85.333-85.333zM626.517 783.701l-38.187-76.373c-26.022 13.013-54.938 19.157-84.002 17.847-29.060-1.306-57.31-10.022-82.057-25.318s-45.175-36.663-59.34-62.076c-14.166-25.412-21.6-54.020-21.598-83.115h85.376l-92.245-184.448c-44.137 42.44-71.6 99.294-77.408 160.252-5.808 60.954 10.425 121.971 45.753 171.981 35.328 50.014 87.411 85.705 146.803 100.604 59.388 14.899 122.155 8.017 176.905-19.396v0.043zM397.483 325.632l38.187 76.373c26.022-13.012 54.938-19.156 84.002-17.848 29.060 1.307 57.31 10.023 82.057 25.319s45.175 36.664 59.341 62.076c14.165 25.412 21.602 54.020 21.598 83.115h-85.376l92.203 184.448c44.139-42.441 71.599-99.294 77.406-160.252 5.811-60.954-10.423-121.971-45.751-171.982s-87.411-85.704-146.803-100.603c-59.388-14.899-122.155-8.017-176.905 19.397l0.043-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-switch-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2252,
+ "id": 97,
+ "name": "camera-switch-fill",
+ "prevSize": 32,
+ "code": 61849
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2201
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 384h85.333v512h-85.333v-512zM341.333 128h85.333v768h-85.333v-768zM597.333 512h85.333v384h-85.333v-384zM853.333 256h85.333v640h-85.333v-640z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rhythm-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2253,
+ "id": 96,
+ "name": "rhythm-fill",
+ "prevSize": 32,
+ "code": 61850
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2202
+ },
+ {
+ "icon": {
+ "paths": [
+ "M462.080 554.667c9.058-25.613 9.728-53.449 1.916-79.467-7.812-26.022-23.701-48.884-45.365-65.276-21.666-16.392-47.986-25.466-75.151-25.907s-53.766 7.772-75.953 23.452c-22.187 15.68-38.81 38.013-47.462 63.767s-8.886 53.594-0.666 79.488c8.219 25.894 24.465 48.503 46.386 64.555 21.921 16.047 48.38 24.708 75.549 24.721h341.333c27.17-0.013 53.628-8.674 75.55-24.721 21.918-16.051 38.165-38.66 46.383-64.555 8.222-25.894 7.987-53.734-0.666-79.488s-25.276-48.087-47.462-63.767c-22.187-15.68-48.785-23.894-75.951-23.452s-53.487 9.515-75.153 25.907c-21.662 16.393-37.551 39.254-45.363 65.276-7.812 26.018-7.142 53.854 1.916 79.467h-99.84zM128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM682.667 554.667c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497zM341.333 554.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.495-22.17 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.497 30.17 12.497s12.497 18.854 12.497 30.17c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["tape-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2254, "id": 95, "name": "tape-fill", "prevSize": 32, "code": 61851 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2203
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 298.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667zM298.667 298.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pause-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2255,
+ "id": 94,
+ "name": "pause-mini-fill",
+ "prevSize": 32,
+ "code": 61852
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2204
+ },
+ {
+ "icon": {
+ "paths": [
+ "M213.333 473.6l85.333-85.333 234.667 234.667 149.333-149.333 128 128v-388.267h-597.333v260.267zM170.667 128h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM661.333 426.667c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2256,
+ "id": 93,
+ "name": "image-2-fill",
+ "prevSize": 32,
+ "code": 61853
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2205
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM453.205 359.040c-2.569-1.713-5.551-2.698-8.636-2.849s-6.148 0.536-8.875 1.99c-2.722 1.454-5.001 3.619-6.588 6.264-1.591 2.646-2.436 5.673-2.441 8.76v277.589c0.004 3.085 0.849 6.114 2.441 8.759 1.587 2.645 3.866 4.813 6.588 6.263 2.726 1.455 5.79 2.142 8.875 1.993 3.085-0.154 6.067-1.135 8.636-2.85l208.171-138.752c2.342-1.557 4.262-3.669 5.589-6.148s2.022-5.248 2.022-8.060c0-2.812-0.695-5.581-2.022-8.060s-3.247-4.591-5.589-6.148l-208.171-138.752z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2257,
+ "id": 92,
+ "name": "play-circle-fill",
+ "prevSize": 32,
+ "code": 61854
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2206
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM384 384v256h85.333v-256h-85.333zM554.667 384v256h85.333v-256h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pause-circle-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2258,
+ "id": 91,
+ "name": "pause-circle-fill",
+ "prevSize": 32,
+ "code": 61855
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2207
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 896v-45.653c-71.088-10.278-136.093-45.824-183.108-100.126s-72.893-123.725-72.892-195.554v-213.333c0-39.221 7.725-78.059 22.735-114.295s37.009-69.161 64.743-96.895c27.734-27.734 60.659-49.733 96.895-64.743s75.071-22.735 114.295-22.735c39.223 0 78.059 7.725 114.295 22.735s69.158 37.009 96.892 64.743c27.738 27.734 49.737 60.659 64.747 96.895 15.006 36.236 22.733 75.073 22.733 114.295v213.333c0 71.829-25.877 141.252-72.892 195.554s-112.021 89.847-183.108 100.126v45.653h170.667v85.333h-426.667v-85.333h170.667zM512 384c-11.315 0-22.17-4.495-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17c0 11.316-4.497 22.168-12.497 30.17s-18.854 12.497-30.17 12.497zM512 469.333c33.946 0 66.505-13.487 90.509-37.491s37.491-56.561 37.491-90.509c0-33.948-13.487-66.505-37.491-90.51s-56.563-37.49-90.509-37.49c-33.946 0-66.505 13.486-90.51 37.49s-37.49 56.562-37.49 90.51c0 33.948 13.486 66.505 37.49 90.509s56.564 37.491 90.51 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["webcam-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2259,
+ "id": 90,
+ "name": "webcam-fill",
+ "prevSize": 32,
+ "code": 61856
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2208
+ },
+ {
+ "icon": {
+ "paths": [
+ "M330.752 232.064l448.341 261.547c3.213 1.882 5.879 4.57 7.731 7.799s2.825 6.886 2.825 10.611c0 3.725-0.973 7.381-2.825 10.611s-4.518 5.918-7.731 7.799l-448.341 261.547c-3.248 1.894-6.94 2.897-10.701 2.906-3.761 0.013-7.457-0.973-10.715-2.854s-5.96-4.587-7.834-7.846c-1.873-3.264-2.852-6.963-2.836-10.722v-522.965c-0.001-3.754 0.989-7.441 2.868-10.69s4.584-5.945 7.838-7.814c3.255-1.87 6.946-2.848 10.699-2.835s7.438 1.016 10.679 2.908z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2260,
+ "id": 89,
+ "name": "play-mini-fill",
+ "prevSize": 32,
+ "code": 61857
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2209
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 469.333v-213.333l-213.333 298.667h128v213.333l213.333-298.667h-128zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["dvd-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2261, "id": 88, "name": "dvd-fill", "prevSize": 32, "code": 61858 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2210
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 128v-85.333h85.333v85.333h555.008c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341zM384 640c33.948 0 66.505-13.487 90.509-37.491s37.491-56.563 37.491-90.509c0-33.946-13.487-66.505-37.491-90.51s-56.561-37.49-90.509-37.49c-33.948 0-66.505 13.486-90.51 37.49s-37.49 56.564-37.49 90.51c0 33.946 13.486 66.505 37.49 90.509s56.562 37.491 90.51 37.491zM597.333 384v85.333h170.667v-85.333h-170.667zM597.333 554.667v85.333h170.667v-85.333h-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radio-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2262,
+ "id": 87,
+ "name": "radio-2-fill",
+ "prevSize": 32,
+ "code": 61859
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2211
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 768h426.667v85.333h-426.667v-85.333zM85.333 469.333h853.333v85.333h-853.333v-85.333zM85.333 170.667h853.333v85.333h-853.333v-85.333zM768 768v-128h85.333v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-list-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2263,
+ "id": 86,
+ "name": "play-list-add-fill",
+ "prevSize": 32,
+ "code": 61860
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2212
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128h256l85.333 85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v597.333c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h170.667l85.333-85.333zM512 810.667c67.895 0 133.009-26.97 181.018-74.982 48.013-48.009 74.982-113.122 74.982-181.018s-26.97-133.010-74.982-181.019c-48.009-48.009-113.122-74.981-181.018-74.981s-133.010 26.971-181.019 74.981c-48.009 48.009-74.981 113.124-74.981 181.019s26.971 133.009 74.981 181.018c48.009 48.013 113.124 74.982 181.019 74.982zM512 725.333c-45.265 0-88.673-17.98-120.68-49.988-32.006-32.004-49.987-75.413-49.987-120.678s17.981-88.674 49.987-120.678c32.006-32.007 75.415-49.988 120.68-49.988s88.674 17.981 120.678 49.988c32.009 32.004 49.988 75.413 49.988 120.678s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2264,
+ "id": 85,
+ "name": "camera-fill",
+ "prevSize": 32,
+ "code": 61861
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2213
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.749 154.623l301.483 452.225c2.138 3.213 3.362 6.942 3.55 10.799 0.183 3.853-0.683 7.684-2.505 11.089-1.818 3.401-4.531 6.246-7.838 8.23-3.311 1.984-7.1 3.029-10.957 3.034h-602.965c-3.859-0.004-7.645-1.050-10.955-3.034s-6.020-4.83-7.841-8.23c-1.821-3.405-2.686-7.236-2.502-11.089 0.184-3.857 1.411-7.586 3.549-10.799l301.483-452.225c1.95-2.922 4.587-5.318 7.684-6.974s6.554-2.524 10.065-2.524c3.511 0 6.967 0.867 10.065 2.524s5.734 4.052 7.684 6.974zM213.333 725.333h597.333c11.315 0 22.17 4.493 30.17 12.497 8 8 12.497 18.854 12.497 30.17s-4.497 22.17-12.497 30.17c-8 8-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17c0-11.315 4.495-22.17 12.497-30.17 8.002-8.004 18.854-12.497 30.17-12.497z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["eject-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2265,
+ "id": 84,
+ "name": "eject-fill",
+ "prevSize": 32,
+ "code": 61862
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2214
+ },
+ {
+ "icon": {
+ "paths": [
+ "M827.307 134.87l60.288 60.331-105.6 105.6 105.6 105.6-105.6 105.6 105.6 105.643-105.6 105.6 105.6 105.6-60.331 60.331-165.931-165.973 105.6-105.557-105.6-105.643 105.6-105.6-105.6-105.6 165.973-165.931zM549.845 159.531c3.11 3.805 4.817 8.567 4.821 13.483v677.973c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.835-184.875-165.973 0.043c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-256c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c2.167-1.777 4.663-3.11 7.347-3.922s5.5-1.087 8.29-0.81c2.79 0.277 5.495 1.102 7.97 2.426 2.47 1.324 4.655 3.123 6.43 5.292v0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-vibrate-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2266,
+ "id": 83,
+ "name": "volume-vibrate-fill",
+ "prevSize": 32,
+ "code": 61863
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2215
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 640v128h128v85.333h-128v128h-85.333v-128h-128v-85.333h128v-128h85.333zM896.341 128c23.381 0 42.325 18.987 42.325 42.368v398.891c-27.409-9.681-56.265-14.618-85.333-14.592v-341.333h-682.667l0.043 597.333 396.459-396.501c7.339-7.361 17.109-11.788 27.482-12.448s20.629 2.492 28.838 8.864l3.968 3.627 151.296 151.467c-33.084 10.082-63.778 26.756-90.244 49.024-26.462 22.263-48.141 49.66-63.731 80.529-15.586 30.869-24.764 64.58-26.97 99.093-2.21 34.513 2.594 69.116 14.118 101.722l-484.267-0.043c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683zM341.333 298.667c22.632 0 44.337 8.99 60.34 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2267,
+ "id": 82,
+ "name": "image-add-fill",
+ "prevSize": 32,
+ "code": 61864
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2216
+ },
+ {
+ "icon": {
+ "paths": [
+ "M742.784 810.667c-33.109-102.357-97.152-165.76-182.016-239.019 83.046-66.389 186.244-102.481 292.565-102.315v-341.333h43.008c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341v-85.333h85.333v170.667h-170.667v298.667c222.72 0 412.245 105.045 482.688 298.667h89.429zM768 42.667v170.667h-341.333v-85.333h256v-85.333h85.333zM704 426.667c-16.973 0-33.254-6.743-45.257-18.745s-18.743-28.281-18.743-45.255c0-16.974 6.741-33.253 18.743-45.255s28.284-18.745 45.257-18.745c16.973 0 33.254 6.743 45.257 18.745s18.743 28.281 18.743 45.255c0 16.974-6.741 33.253-18.743 45.255s-28.284 18.745-45.257 18.745z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["gallery-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2268,
+ "id": 81,
+ "name": "gallery-fill",
+ "prevSize": 32,
+ "code": 61865
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2217
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 391.253c-25.613-9.056-53.449-9.727-79.467-1.916-26.022 7.811-48.884 23.7-65.276 45.364-16.392 21.666-25.466 47.987-25.907 75.153s7.772 53.764 23.452 75.951c15.68 22.187 38.013 38.81 63.767 47.462s53.594 8.887 79.488 0.666c25.894-8.218 48.503-24.465 64.555-46.383 16.047-21.922 24.708-48.38 24.721-75.55v-407.125c173.099 54.357 298.667 216.064 298.667 407.125 0 235.648-191.019 426.667-426.667 426.667s-426.667-191.019-426.667-426.667c0-235.648 191.019-426.667 426.667-426.667 14.379 0 28.629 0.725 42.667 2.133v303.787z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["disc-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2269, "id": 80, "name": "disc-fill", "prevSize": 32, "code": 61866 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2218
+ },
+ {
+ "icon": {
+ "paths": [
+ "M251.264 682.667h-165.931c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-255.999c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c3.127-2.562 6.916-4.184 10.927-4.677s8.077 0.165 11.729 1.895c3.652 1.73 6.741 4.462 8.9 7.878s3.307 7.375 3.302 11.416v677.972c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.877-184.832zM870.997 512l150.869 150.869-60.331 60.331-150.869-150.869-150.869 150.869-60.331-60.331 150.869-150.869-150.869-150.868 60.331-60.331 150.869 150.868 150.869-150.868 60.331 60.331-150.869 150.868z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-mute-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2270,
+ "id": 79,
+ "name": "volume-mute-fill",
+ "prevSize": 32,
+ "code": 61867
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2219
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 896l-203.179-372.48 160.512-267.52 341.333 640h-298.667zM341.333 426.667l256 469.333h-512l256-469.333zM234.667 341.333c-28.29 0-55.421-11.238-75.425-31.242s-31.242-47.135-31.242-75.425c0-28.29 11.238-55.421 31.242-75.425s47.135-31.242 75.425-31.242c28.29 0 55.421 11.238 75.425 31.242s31.242 47.135 31.242 75.425c0 28.29-11.238 55.421-31.242 75.425s-47.135 31.242-75.425 31.242z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["landscape-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2271,
+ "id": 78,
+ "name": "landscape-fill",
+ "prevSize": 32,
+ "code": 61868
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2220
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667c28.015 0 55.757 5.518 81.638 16.239s49.399 26.435 69.21 46.245c19.81 19.81 35.524 43.327 46.246 69.21s16.239 53.624 16.239 81.639v256c0 56.58-22.477 110.844-62.485 150.848-40.009 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.85-62.485c-40.008-40.004-62.484-94.268-62.484-150.848v-256c0-56.579 22.476-110.842 62.484-150.849s94.27-62.484 150.85-62.484zM93.525 595.712l83.712-16.768c15.547 77.329 57.388 146.893 118.413 196.873 61.025 49.975 137.472 77.286 216.35 77.286s155.324-27.311 216.35-77.286c61.026-49.98 102.865-119.543 118.413-196.873l83.712 16.768c-38.912 195.541-211.541 342.955-418.475 342.955s-379.563-147.413-418.475-342.955z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mic-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2272,
+ "id": 77,
+ "name": "mic-2-fill",
+ "prevSize": 32,
+ "code": 61869
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2221
+ },
+ {
+ "icon": {
+ "paths": [
+ "M700.8 761.131c-45.009 25.472-94.729 41.527-146.133 47.189v173.013h-85.333v-173.013c-86.565-9.702-167.262-48.538-228.856-110.131s-100.427-142.289-110.13-228.855h85.973c6.652 46.054 23.969 89.92 50.573 128.098s61.758 69.611 102.661 91.802c40.902 22.187 86.424 34.513 132.931 35.994 46.511 1.485 92.723-7.919 134.955-27.456l-66.176-66.133c-31.778 9.19-65.259 10.863-97.796 4.89-32.533-5.978-63.237-19.435-89.677-39.317-26.44-19.878-47.895-45.636-62.668-75.234s-22.461-62.229-22.456-95.309v-67.669l-239.232-239.189 60.373-60.373 844.757 844.8-60.373 60.331-203.392-203.435zM826.667 646.827l-61.568-61.525c21.717-34.56 36.523-73.813 42.539-115.968h86.016c-7.044 63.855-30.084 124.907-66.987 177.493zM702.507 522.709l-374.613-374.614c23.675-40.442 60.009-71.965 103.389-89.696 43.375-17.732 91.388-20.686 136.614-8.407 45.222 12.279 85.15 39.107 113.604 76.342s43.861 82.803 43.831 129.666l0.043 170.667c0.051 33.357-7.757 66.262-22.784 96.043h-0.085z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mic-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2273,
+ "id": 76,
+ "name": "mic-off-fill",
+ "prevSize": 32,
+ "code": 61870
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2222
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170.667h640c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-597.333v128l-213.333-170.667 213.333-170.667v128zM768 853.333h-640c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-298.667h85.333v256h597.333v-128l213.333 170.667-213.333 170.667v-128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["repeat-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2274,
+ "id": 75,
+ "name": "repeat-fill",
+ "prevSize": 32,
+ "code": 61871
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2223
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v298.667h-85.333v-256h-682.667v597.333h256v85.333h-298.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM896 554.667c11.315 0 22.17 4.497 30.17 12.497s12.497 18.854 12.497 30.17v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-341.333c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-256c0-11.315 4.497-22.17 12.497-30.17s18.854-12.497 30.17-12.497h341.333zM490.667 298.667l-87.168 87.168 96 96-60.331 60.331-96-96-87.168 87.168v-234.667h234.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["picture-in-picture-exit-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2275,
+ "id": 74,
+ "name": "picture-in-picture-exit-fill",
+ "prevSize": 32,
+ "code": 61872
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2224
+ },
+ {
+ "icon": {
+ "paths": [
+ "M835.669 896h-707.669c-11.316 0-22.169-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.169 12.497-30.17s18.854-12.497 30.17-12.497h25.003l-93.568-93.525 60.373-60.373 844.757 844.8-60.373 60.331-68.523-68.565zM322.39 382.72c-44.124 48.699-67.832 112.499-66.214 178.193s28.436 128.252 74.903 174.72c46.467 46.464 109.024 73.284 174.717 74.901s129.498-22.089 178.193-66.214l-60.459-60.459c-32.623 28.207-74.709 43.017-117.807 41.451-43.098-1.562-84.002-19.379-114.495-49.873s-48.313-71.398-49.875-114.496c-1.562-43.098 13.247-85.184 41.452-117.807l-60.416-60.416zM938.667 758.827l-172.587-172.587c4.813-38.66 0.734-77.914-11.921-114.761s-33.549-70.322-61.099-97.871c-27.55-27.549-61.026-48.447-97.873-61.101s-76.096-16.731-114.761-11.92l-134.57-134.528 38.144-38.059h256l85.333 85.333h170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v502.826zM576.341 396.502c21.082 8.609 40.239 21.338 56.341 37.44 16.102 16.107 28.83 35.26 37.44 56.341l-93.781-93.781z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-off-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2276,
+ "id": 73,
+ "name": "camera-off-fill",
+ "prevSize": 32,
+ "code": 61873
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2225
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 768h426.667v85.333h-426.667v-85.333zM85.333 469.333h597.333v85.333h-597.333v-85.333zM85.333 170.667h853.333v85.333h-853.333v-85.333zM810.667 647.253v-263.253h213.333v85.333h-128v298.667c-0.013 27.17-8.674 53.628-24.721 75.55-16.051 21.918-38.66 38.165-64.555 46.383-25.894 8.222-53.734 7.987-79.488-0.666s-48.085-25.276-63.765-47.462c-15.68-22.187-23.893-48.785-23.454-75.951s9.515-53.487 25.907-75.153c16.393-21.666 39.253-37.551 65.276-45.363 26.018-7.812 53.854-7.142 79.467 1.916z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-list-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2277,
+ "id": 72,
+ "name": "play-list-fill",
+ "prevSize": 32,
+ "code": 61874
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2226
+ },
+ {
+ "icon": {
+ "paths": [
+ "M881.451 426.667c-20.13-56.936-59.738-104.922-111.829-135.478-52.087-30.556-113.301-41.714-172.821-31.502s-113.51 41.136-152.435 87.308c-38.924 46.171-60.273 104.615-60.273 165.006s21.349 118.835 60.273 165.005c38.925 46.174 92.915 77.094 152.435 87.309 59.52 10.21 120.734-0.947 172.821-31.501 52.092-30.558 91.699-78.545 111.829-135.479h14.549v256c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-682.667c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h682.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v256h-14.549zM213.333 256v128h85.333v-128h-85.333zM640 682.667c-45.265 0-88.674-17.98-120.678-49.988-32.009-32.004-49.988-75.413-49.988-120.678s17.98-88.673 49.988-120.68c32.004-32.006 75.413-49.987 120.678-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.415 49.988 120.68s-17.98 88.674-49.988 120.678c-32.004 32.009-75.413 49.988-120.678 49.988zM640 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["polaroid-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2278,
+ "id": 71,
+ "name": "polaroid-fill",
+ "prevSize": 32,
+ "code": 61875
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2227
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM512 640c-33.946 0-66.505-13.487-90.51-37.491s-37.49-56.563-37.49-90.509c0-33.946 13.486-66.505 37.49-90.51s56.564-37.49 90.51-37.49c33.946 0 66.505 13.486 90.509 37.49s37.491 56.564 37.491 90.51c0 33.946-13.487 66.505-37.491 90.509s-56.563 37.491-90.509 37.491zM512 725.333c56.58 0 110.844-22.477 150.848-62.485 40.009-40.004 62.485-94.268 62.485-150.848s-22.477-110.842-62.485-150.849c-40.004-40.008-94.268-62.484-150.848-62.484s-110.842 22.476-150.849 62.484c-40.008 40.008-62.484 94.269-62.484 150.849s22.476 110.844 62.484 150.848c40.008 40.009 94.269 62.485 150.849 62.485zM768 213.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2279,
+ "id": 70,
+ "name": "camera-2-fill",
+ "prevSize": 32,
+ "code": 61876
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2228
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 256c0-23.552 19.413-42.667 42.325-42.667h768.683c23.381 0 42.325 18.987 42.325 42.667v597.333c0 23.552-19.413 42.667-42.325 42.667h-768.683c-5.584-0.013-11.111-1.126-16.263-3.277-5.152-2.155-9.829-5.303-13.761-9.267s-7.043-8.666-9.155-13.833c-2.111-5.171-3.18-10.705-3.146-16.29v-597.333zM597.333 768c56.58 0 110.839-22.477 150.848-62.485 40.009-40.004 62.485-94.268 62.485-150.848s-22.477-110.844-62.485-150.849c-40.009-40.008-94.268-62.484-150.848-62.484s-110.844 22.476-150.848 62.484c-40.010 40.006-62.486 94.269-62.486 150.849s22.476 110.844 62.486 150.848c40.004 40.009 94.268 62.485 150.848 62.485zM170.666 298.667v85.333h128v-85.333h-128zM170.666 85.333h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2280,
+ "id": 69,
+ "name": "camera-3-fill",
+ "prevSize": 32,
+ "code": 61877
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2229
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 392.533l222.421-155.733c3.2-2.242 6.95-3.563 10.846-3.819 3.9-0.256 7.791 0.563 11.255 2.368s6.366 4.526 8.388 7.866c2.027 3.341 3.093 7.173 3.089 11.078v515.413c0.004 3.904-1.062 7.74-3.089 11.076-2.022 3.341-4.924 6.063-8.388 7.868s-7.356 2.624-11.255 2.368c-3.895-0.256-7.646-1.579-10.846-3.819l-222.421-155.733v179.2c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v179.2zM213.333 341.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vidicon-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2281,
+ "id": 68,
+ "name": "vidicon-fill",
+ "prevSize": 32,
+ "code": 61878
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2230
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768.043 853.333h85.291v85.333h-341.333c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667 0.055 66.244-15.339 131.588-44.958 190.839s-72.649 110.78-125.666 150.494zM512 426.667c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994zM341.333 597.333c22.632 0 44.337-8.99 60.34-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.708-24.994-60.34-24.994c-22.632 0-44.337 8.99-60.34 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.708 24.994 60.34 24.994zM682.667 597.333c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994zM512 768c22.63 0 44.335-8.99 60.339-24.994s24.994-37.709 24.994-60.339c0-22.63-8.99-44.335-24.994-60.339s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.709-24.994 60.339c0 22.63 8.99 44.335 24.994 60.339s37.709 24.994 60.339 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["movie-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2282,
+ "id": 67,
+ "name": "movie-2-fill",
+ "prevSize": 32,
+ "code": 61879
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2231
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM453.205 359.040c-2.569-1.713-5.551-2.698-8.636-2.849s-6.148 0.536-8.875 1.99c-2.722 1.454-5.001 3.619-6.588 6.264-1.591 2.646-2.436 5.673-2.441 8.76v277.589c0.004 3.085 0.849 6.114 2.441 8.759 1.587 2.645 3.866 4.813 6.588 6.263 2.726 1.455 5.79 2.142 8.875 1.993 3.085-0.154 6.067-1.135 8.636-2.85l208.171-138.752c2.342-1.557 4.262-3.669 5.589-6.148s2.022-5.248 2.022-8.060c0-2.812-0.695-5.581-2.022-8.060s-3.247-4.591-5.589-6.148l-208.171-138.752z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["movie-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2283,
+ "id": 66,
+ "name": "movie-fill",
+ "prevSize": 32,
+ "code": 61880
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2232
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.368c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 18.987 42.368 42.368v683.264c-0.013 11.234-4.48 22.003-12.42 29.948-7.945 7.94-18.714 12.407-29.948 12.42h-683.264c-11.233-0.013-22.003-4.48-29.946-12.42-7.943-7.945-12.411-18.714-12.422-29.948v-683.264zM256 725.333v85.333h512v-85.333h-512zM213.333 213.333v85.333h85.333v-85.333h-85.333zM512 512c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.709-24.994 60.339-24.994c22.63 0 44.335 8.99 60.339 24.994s24.994 37.708 24.994 60.34c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994zM512 597.333c45.265 0 88.674-17.98 120.678-49.988 32.009-32.004 49.988-75.413 49.988-120.678 0-45.264-17.98-88.673-49.988-120.68-32.004-32.006-75.413-49.987-120.678-49.987s-88.673 17.981-120.68 49.987c-32.006 32.006-49.987 75.416-49.987 120.68 0 45.265 17.981 88.674 49.987 120.678 32.006 32.009 75.415 49.988 120.68 49.988z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["polaroid-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2284,
+ "id": 65,
+ "name": "polaroid-2-fill",
+ "prevSize": 32,
+ "code": 61881
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2233
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 725.333h85.333v85.333h-853.333v-85.333h85.333v-298.667c0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359v298.667zM384 896h256v85.333h-256v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-3-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2285,
+ "id": 64,
+ "name": "notification-3-fill",
+ "prevSize": 32,
+ "code": 61882
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2234
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 853.333h-853.333v-85.333h42.667v-297.344c0-212.821 171.947-385.323 384-385.323s384 172.501 384 385.323v297.344h42.667v85.333zM405.333 896h213.333c0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.006-31.241-47.138-31.241-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2286,
+ "id": 63,
+ "name": "notification-2-fill",
+ "prevSize": 32,
+ "code": 61883
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2235
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM512 519.296c-25.617-9.058-53.449-9.728-79.471-1.916-26.025 7.812-48.887 23.706-65.278 45.372-16.392 21.67-25.463 47.991-25.901 75.162-0.438 27.166 7.78 53.769 23.465 75.951 15.684 22.187 38.022 38.805 63.78 47.454s53.598 8.875 79.492 0.649c25.894-8.226 48.499-24.478 64.546-46.404 16.043-21.926 24.695-48.393 24.7-75.563v-298.709h128v-85.291h-213.333v263.296z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mv-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2287, "id": 62, "name": "mv-fill", "prevSize": 32, "code": 61884 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2236
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 455.125l393.515-262.357c3.213-2.138 6.946-3.364 10.799-3.549s7.689 0.68 11.089 2.502c3.401 1.821 6.246 4.531 8.23 7.841s3.029 7.096 3.034 10.955v602.965c-0.004 3.857-1.050 7.646-3.034 10.957-1.984 3.307-4.83 6.020-8.23 7.838-3.401 1.822-7.236 2.688-11.089 2.505s-7.586-1.412-10.799-3.55l-393.515-262.357v244.608c-0.004 3.857-1.050 7.646-3.034 10.957-1.984 3.307-4.83 6.020-8.23 7.838-3.401 1.822-7.236 2.688-11.089 2.505s-7.586-1.412-10.799-3.55l-452.224-301.483c-2.922-1.95-5.317-4.587-6.974-7.684s-2.524-6.554-2.524-10.065c0-3.511 0.867-6.967 2.524-10.065s4.053-5.734 6.974-7.684l452.224-301.482c3.213-2.138 6.946-3.364 10.799-3.549s7.689 0.68 11.089 2.502c3.401 1.821 6.246 4.531 8.23 7.841s3.029 7.096 3.034 10.955v244.608z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rewind-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2288,
+ "id": 61,
+ "name": "rewind-fill",
+ "prevSize": 32,
+ "code": 61885
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2237
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938.667 768v85.333h-853.333v-85.333h853.333zM85.333 149.333l341.333 213.333-341.333 213.333v-426.667zM938.667 469.333v85.333h-426.667v-85.333h426.667zM938.667 170.667v85.333h-426.667v-85.333h426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-list-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2289,
+ "id": 60,
+ "name": "play-list-2-fill",
+ "prevSize": 32,
+ "code": 61886
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2238
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v179.2l222.421-155.733c3.2-2.242 6.95-3.563 10.846-3.819 3.9-0.256 7.791 0.563 11.255 2.368s6.366 4.526 8.388 7.866c2.027 3.341 3.093 7.173 3.089 11.078v515.413c0.004 3.904-1.062 7.74-3.089 11.076-2.022 3.341-4.924 6.063-8.388 7.868s-7.356 2.624-11.255 2.368c-3.895-0.256-7.646-1.579-10.846-3.819l-222.421-155.733v179.2c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-597.333c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h597.333zM315.733 376.704c-3.934-0.001-7.748 1.358-10.796 3.846s-5.143 5.952-5.929 9.807l-0.341 3.371v236.459c-0 2.765 0.671 5.487 1.955 7.932 1.284 2.449 3.144 4.548 5.419 6.118s4.897 2.564 7.641 2.897c2.743 0.329 5.527-0.009 8.111-0.99l3.115-1.536 185.813-118.272c2.167-1.387 3.994-3.247 5.342-5.44s2.185-4.659 2.441-7.223c0.26-2.56-0.064-5.146-0.947-7.565-0.883-2.415-2.3-4.604-4.147-6.396l-2.688-2.133-185.813-118.272c-2.753-1.707-5.935-2.595-9.173-2.56v-0.043z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["live-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2290, "id": 59, "name": "live-fill", "prevSize": 32, "code": 61887 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2239
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768v128h-85.333v-128h-85.333v-128h256v128h-85.333zM213.333 768v128h-85.333v-128h-85.333v-128h256v128h-85.333zM469.333 256v-128h85.333v128h85.333v128h-256v-128h85.333zM469.333 469.333h85.333v426.667h-85.333v-426.667zM128 554.667v-426.667h85.333v426.667h-85.333zM810.667 554.667v-426.667h85.333v426.667h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["sound-module-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2291,
+ "id": 58,
+ "name": "sound-module-fill",
+ "prevSize": 32,
+ "code": 61888
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2240
+ },
+ {
+ "icon": {
+ "paths": [
+ "M469.333 726.827c0.004 3.908-1.071 7.744-3.098 11.085-2.031 3.341-4.937 6.059-8.41 7.863-3.469 1.801-7.364 2.611-11.264 2.347-3.904-0.26-7.654-1.591-10.85-3.844l-304.341-214.869c-2.782-1.971-5.052-4.582-6.618-7.607-1.566-3.029-2.383-6.391-2.383-9.801s0.817-6.771 2.383-9.801c1.566-3.029 3.836-5.636 6.618-7.607l304.341-214.869c3.196-2.252 6.946-3.582 10.85-3.846 3.9-0.264 7.795 0.549 11.264 2.35 3.473 1.801 6.379 4.52 8.41 7.862 2.027 3.341 3.102 7.176 3.098 11.085v429.653zM515.371 529.408c-2.782-1.971-5.052-4.582-6.618-7.607-1.566-3.029-2.385-6.391-2.385-9.801s0.819-6.771 2.385-9.801c1.566-3.029 3.836-5.636 6.618-7.607l304.341-214.869c3.196-2.252 6.946-3.582 10.85-3.846 3.9-0.264 7.795 0.549 11.264 2.35 3.473 1.801 6.379 4.52 8.41 7.862 2.027 3.341 3.098 7.176 3.098 11.085v429.653c0 3.908-1.071 7.744-3.098 11.085-2.031 3.341-4.937 6.059-8.41 7.863-3.469 1.801-7.364 2.611-11.264 2.347-3.904-0.26-7.654-1.591-10.85-3.844l-304.341-214.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["rewind-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2292,
+ "id": 57,
+ "name": "rewind-mini-fill",
+ "prevSize": 32,
+ "code": 61889
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2241
+ },
+ {
+ "icon": {
+ "paths": [
+ "M210.304 124.972l60.331 60.331c-31.743 31.662-56.915 69.285-74.071 110.706s-25.957 85.825-25.897 130.658c0 94.293 38.187 179.627 99.968 241.365l-60.288 60.288c-39.681-39.565-71.153-86.583-92.607-138.351s-32.467-107.264-32.407-163.302c-0.072-56.041 10.932-111.543 32.379-163.318s52.913-98.801 92.592-138.377zM813.696 124.972c39.68 39.575 71.147 86.602 92.591 138.377 21.449 51.775 32.452 107.278 32.38 163.318 0.073 56.043-10.931 111.543-32.38 163.319-21.444 51.776-52.911 98.803-92.591 138.377l-60.331-60.331c31.744-31.663 56.917-69.282 74.069-110.707 17.156-41.421 25.958-85.824 25.899-130.658 0-94.292-38.187-179.626-99.968-241.364l60.331-60.331zM330.966 245.633l60.373 60.373c-15.874 15.826-28.463 34.633-37.044 55.34s-12.986 42.906-12.961 65.321c0 47.147 19.115 89.813 50.005 120.661l-60.373 60.373c-23.807-23.748-42.685-51.968-55.551-83.034-12.865-31.070-19.463-64.375-19.415-98.001 0-70.698 28.672-134.698 74.965-181.034zM693.035 245.633c23.808 23.748 42.684 51.967 55.552 83.035 12.864 31.068 19.46 64.373 19.413 97.999 0.047 33.626-6.549 66.931-19.413 98.001-12.868 31.066-31.744 59.285-55.552 83.034l-60.373-60.373c15.872-15.825 28.463-34.633 37.043-55.339 8.585-20.706 12.988-42.906 12.962-65.323 0.026-22.414-4.378-44.613-12.962-65.321-8.58-20.707-21.171-39.514-37.043-55.34l60.373-60.373zM512 512c-22.63 0-44.335-8.99-60.339-24.994-16.004-16-24.994-37.709-24.994-60.339s8.99-44.336 24.994-60.339c16.004-16.003 37.709-24.993 60.339-24.993s44.335 8.99 60.339 24.993c16.004 16.003 24.994 37.708 24.994 60.339s-8.99 44.339-24.994 60.339c-16.004 16.004-37.709 24.994-60.339 24.994zM512 597.333c24.747 0 45.952 17.621 50.517 41.941l56.149 299.392h-213.333l56.149-299.392c4.565-24.32 25.771-41.941 50.517-41.941z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["broadcast-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2293,
+ "id": 56,
+ "name": "broadcast-fill",
+ "prevSize": 32,
+ "code": 61890
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2242
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c23.552 0 42.667 19.115 42.667 42.667v179.2l222.421-155.733c9.643-6.741 22.955-4.395 29.739 5.291 2.475 3.584 3.84 7.851 3.84 12.203v515.413c0 11.776-9.557 21.333-21.333 21.333-4.395 0-8.661-1.365-12.245-3.84l-222.421-155.733v179.2c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM341.333 341.333v128h-128v85.333h127.957l0.043 128h85.333l-0.043-128h128.043v-85.333h-128v-128h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-add-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2294,
+ "id": 55,
+ "name": "video-add-fill",
+ "prevSize": 32,
+ "code": 61891
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2243
+ },
+ {
+ "icon": {
+ "paths": [
+ "M379.264 682.667h-165.931c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-255.999c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c3.127-2.562 6.916-4.184 10.927-4.677s8.077 0.165 11.729 1.895c3.652 1.73 6.741 4.462 8.9 7.878s3.307 7.375 3.302 11.416v677.972c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.877-184.832zM804.821 707.883l-60.672-60.672c20.715-15.927 37.487-36.403 49.020-59.849 11.533-23.45 17.523-49.233 17.498-75.362 0-61.013-32-114.559-80.213-144.724l61.397-61.397c32.32 23.773 58.586 54.82 76.681 90.629 18.091 35.808 27.503 75.373 27.469 115.493 0 78.592-35.413 148.907-91.179 195.883z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-down-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2295,
+ "id": 54,
+ "name": "volume-down-fill",
+ "prevSize": 32,
+ "code": 61892
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2244
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 568.875l-393.515 262.357c-3.212 2.138-6.945 3.366-10.799 3.55s-7.687-0.683-11.089-2.505c-3.402-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.032-7.1-3.034-10.957v-602.965c0.002-3.859 1.050-7.645 3.034-10.955s4.828-6.020 8.23-7.841c3.402-1.821 7.234-2.686 11.089-2.502s7.587 1.411 10.799 3.549l393.515 262.357v-244.608c0-3.859 1.050-7.645 3.034-10.955s4.83-6.020 8.23-7.841c3.401-1.821 7.236-2.686 11.089-2.502s7.586 1.411 10.799 3.549l452.224 301.482c2.923 1.95 5.316 4.587 6.976 7.684 1.655 3.098 2.522 6.554 2.522 10.065s-0.866 6.967-2.522 10.065c-1.66 3.098-4.053 5.734-6.976 7.684l-452.224 301.483c-3.213 2.138-6.946 3.366-10.799 3.55s-7.689-0.683-11.089-2.505c-3.401-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.034-7.1-3.034-10.957v-244.608z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speed-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2296,
+ "id": 53,
+ "name": "speed-fill",
+ "prevSize": 32,
+ "code": 61893
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2245
+ },
+ {
+ "icon": {
+ "paths": [
+ "M767.915 298.667l98.56-170.667h29.867c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.256l-98.56 170.667h98.56l98.56-170.667h157.44l-98.56 170.667h98.56l98.56-170.667h157.44l-98.56 170.667h98.56z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["clapperboard-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2297,
+ "id": 52,
+ "name": "clapperboard-fill",
+ "prevSize": 32,
+ "code": 61894
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2246
+ },
+ {
+ "icon": {
+ "paths": [
+ "M204.288 744.277c-3.195 2.253-6.948 3.584-10.848 3.844-3.9 0.265-7.798-0.546-11.267-2.347-3.47-1.805-6.378-4.523-8.407-7.863s-3.101-7.177-3.099-11.085v-429.653c-0.002-3.909 1.070-7.744 3.099-11.085s4.937-6.061 8.407-7.862c3.47-1.801 7.367-2.614 11.267-2.35s7.653 1.594 10.848 3.846l304.341 214.869c2.782 1.971 5.052 4.578 6.618 7.607s2.385 6.391 2.385 9.801c0 3.409-0.819 6.771-2.385 9.801-1.566 3.025-3.836 5.636-6.618 7.607l-304.341 214.869zM554.667 297.173c-0.004-3.909 1.071-7.744 3.098-11.085 2.031-3.342 4.937-6.061 8.41-7.862 3.469-1.801 7.364-2.614 11.264-2.35 3.904 0.264 7.654 1.594 10.85 3.846l304.341 214.869c2.782 1.971 5.052 4.578 6.618 7.607s2.385 6.391 2.385 9.801c0 3.409-0.819 6.771-2.385 9.801-1.566 3.025-3.836 5.636-6.618 7.607l-304.341 214.869c-3.196 2.253-6.946 3.584-10.85 3.844-3.9 0.265-7.795-0.546-11.264-2.347-3.473-1.805-6.379-4.523-8.41-7.863-2.027-3.341-3.102-7.177-3.098-11.085v-429.653z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["speed-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2298,
+ "id": 51,
+ "name": "speed-mini-fill",
+ "prevSize": 32,
+ "code": 61895
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2247
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 170.667v-82.432c-0.009-4.057 1.143-8.032 3.315-11.459 2.176-3.427 5.278-6.162 8.951-7.887s7.761-2.365 11.785-1.848c4.023 0.517 7.817 2.17 10.935 4.767l175.787 146.475c3.371 2.81 5.79 6.589 6.933 10.824s0.951 8.719-0.542 12.842c-1.498 4.123-4.233 7.684-7.825 10.199s-7.876 3.86-12.262 3.853h-837.077v-85.333h640zM85.333 768h853.333v85.333h-853.333v-85.333zM85.333 469.333h853.333v85.333h-853.333v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["order-play-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2299,
+ "id": 50,
+ "name": "order-play-fill",
+ "prevSize": 32,
+ "code": 61896
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2248
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 796.459l17.067 22.741c2.377 3.17 3.823 6.938 4.181 10.884 0.354 3.947-0.397 7.915-2.167 11.456-1.771 3.546-4.493 6.524-7.863 8.606s-7.253 3.187-11.217 3.187h-682.667c-3.962 0-7.846-1.105-11.216-3.187s-6.094-5.060-7.865-8.606c-1.772-3.541-2.522-7.509-2.166-11.456s1.804-7.714 4.18-10.884l17.067-22.741v-369.792c0-90.527 35.962-177.347 99.974-241.359s150.832-99.974 241.359-99.974c90.526 0 177.348 35.962 241.361 99.974 64.009 64.012 99.972 150.832 99.972 241.359v369.792zM405.333 896h213.333c0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.006-31.241-47.138-31.241-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-4-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2300,
+ "id": 49,
+ "name": "notification-4-fill",
+ "prevSize": 32,
+ "code": 61897
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2249
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM490.667 576v-64h-42.667v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42.667zM768 640l-96-128 96-128h-74.667l-74.667 96v-96h-64v256h64v-96l74.667 96h74.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["k-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2301, "id": 48, "name": "k-fill", "prevSize": 32, "code": 61898 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2250
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298.667 256c11.316 0 22.168 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.495 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497zM387.371 529.408c-2.782-1.971-5.052-4.582-6.618-7.607-1.566-3.029-2.383-6.391-2.383-9.801s0.817-6.771 2.383-9.801c1.566-3.025 3.836-5.636 6.618-7.607l304.341-214.869c3.196-2.252 6.946-3.582 10.85-3.846 3.9-0.264 7.795 0.549 11.264 2.35 3.473 1.801 6.379 4.521 8.41 7.862 2.027 3.341 3.102 7.176 3.098 11.085v429.653c0.004 3.908-1.071 7.744-3.098 11.085-2.031 3.341-4.937 6.063-8.41 7.863-3.469 1.801-7.364 2.611-11.264 2.347-3.904-0.26-7.654-1.591-10.85-3.844l-304.341-214.869z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-back-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2302,
+ "id": 47,
+ "name": "skip-back-mini-fill",
+ "prevSize": 32,
+ "code": 61899
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2251
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c23.552 0 42.667 19.115 42.667 42.667v179.2l222.421-155.733c9.643-6.741 22.955-4.395 29.739 5.291 2.475 3.584 3.84 7.851 3.84 12.203v515.413c0 11.776-9.557 21.333-21.333 21.333-4.395 0-8.661-1.365-12.245-3.84l-222.421-155.733v179.2c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM426.667 341.333h-85.333v170.667h-128l170.667 170.667 170.667-170.667h-128v-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-download-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2303,
+ "id": 46,
+ "name": "video-download-fill",
+ "prevSize": 32,
+ "code": 61900
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2252
+ },
+ {
+ "icon": {
+ "paths": [
+ "M631.595 170.667c-28.203 48.808-39.509 105.561-32.162 161.452s32.934 107.792 72.798 147.651c39.859 39.863 91.763 65.451 147.652 72.798s112.644-3.959 161.451-32.162v290.261c0 23.595-18.773 42.709-42.752 42.709h-853.163c-5.614 0.013-11.175-1.084-16.364-3.226s-9.905-5.286-13.876-9.254c-3.972-3.968-7.121-8.683-9.268-13.867-2.147-5.188-3.249-10.748-3.244-16.363v-597.333c0-23.552 18.773-42.667 42.752-42.667h546.176zM853.333 469.333c-45.265 0-88.674-17.98-120.678-49.987-32.009-32.006-49.988-75.416-49.988-120.68s17.98-88.673 49.988-120.68c32.004-32.006 75.413-49.987 120.678-49.987s88.674 17.981 120.678 49.987c32.009 32.006 49.988 75.416 49.988 120.68s-17.98 88.673-49.988 120.68c-32.004 32.007-75.413 49.987-120.678 49.987zM853.333 384c22.63 0 44.335-8.99 60.339-24.994s24.994-37.708 24.994-60.34c0-22.632-8.99-44.337-24.994-60.34s-37.709-24.994-60.339-24.994c-22.63 0-44.335 8.99-60.339 24.994s-24.994 37.708-24.994 60.34c0 22.632 8.99 44.337 24.994 60.34s37.709 24.994 60.339 24.994zM810.667 640v128h85.333v-128h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["phone-camera-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2304,
+ "id": 45,
+ "name": "phone-camera-fill",
+ "prevSize": 32,
+ "code": 61901
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2253
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v682.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-768c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-682.667c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h768zM768 512h-85.333v128h-128v85.333h213.333v-213.333zM469.333 298.667h-213.333v213.333h85.333v-128h128v-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["aspect-ratio-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2305,
+ "id": 44,
+ "name": "aspect-ratio-fill",
+ "prevSize": 32,
+ "code": 61902
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2254
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 577.493v-449.493h341.333v128h-256v469.333c-0.009 37.568-12.412 74.082-35.29 103.885-22.874 29.798-54.942 51.217-91.234 60.937-36.288 9.715-74.77 7.189-109.476-7.194s-63.697-39.812-82.478-72.35c-18.78-32.538-26.3-70.362-21.393-107.605 4.907-37.248 21.966-71.834 48.532-98.398s61.154-43.618 98.401-48.521c37.248-4.902 75.072 2.624 107.605 21.406z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["music-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2306,
+ "id": 43,
+ "name": "music-fill",
+ "prevSize": 32,
+ "code": 61903
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2255
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170.368c0-23.381 18.987-42.368 42.368-42.368h683.264c23.381 0 42.368 18.987 42.368 42.368v683.264c-0.013 11.234-4.48 22.003-12.42 29.948-7.945 7.94-18.714 12.407-29.948 12.42h-683.264c-11.233-0.013-22.003-4.48-29.946-12.42-7.943-7.945-12.411-18.714-12.422-29.948v-683.264zM453.205 359.040c-2.569-1.713-5.551-2.698-8.636-2.849s-6.148 0.536-8.875 1.99c-2.722 1.454-5.001 3.619-6.588 6.264-1.591 2.646-2.436 5.673-2.441 8.76v277.589c0.004 3.085 0.849 6.114 2.441 8.759 1.587 2.645 3.866 4.813 6.588 6.263 2.726 1.455 5.79 2.142 8.875 1.993 3.085-0.154 6.067-1.135 8.636-2.85l208.171-138.752c2.342-1.557 4.262-3.669 5.589-6.148s2.022-5.248 2.022-8.060c0-2.812-0.695-5.581-2.022-8.060s-3.247-4.591-5.589-6.148l-208.171-138.752z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2307,
+ "id": 42,
+ "name": "video-fill",
+ "prevSize": 32,
+ "code": 61904
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2256
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 213.333h85.333v597.333h-85.333v-597.333zM682.667 213.333h85.333v597.333h-85.333v-597.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["pause-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2308,
+ "id": 41,
+ "name": "pause-fill",
+ "prevSize": 32,
+ "code": 61905
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2257
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.333 853.333v82.432c0.006 4.058-1.144 8.034-3.316 11.46s-5.277 6.161-8.95 7.885c-3.673 1.724-7.761 2.368-11.785 1.852-4.024-0.521-7.817-2.172-10.935-4.77l-175.787-146.475c-3.372-2.812-5.794-6.596-6.936-10.833s-0.949-8.725 0.554-12.851c1.502-4.126 4.241-7.689 7.842-10.197 3.601-2.513 7.889-3.853 12.279-3.836h623.701c22.63 0 44.335-8.99 60.339-24.994 16.004-16 24.994-37.709 24.994-60.339v-341.333h85.333v341.333c0 45.265-17.98 88.674-49.988 120.678-32.004 32.009-75.413 49.988-120.678 49.988h-426.667zM682.667 170.667v-82.432c-0.009-4.057 1.143-8.032 3.315-11.459 2.176-3.427 5.278-6.162 8.951-7.887s7.761-2.365 11.785-1.848c4.023 0.517 7.817 2.17 10.935 4.767l175.787 146.475c3.371 2.81 5.79 6.589 6.933 10.824s0.951 8.719-0.542 12.842c-1.498 4.123-4.233 7.684-7.825 10.199s-7.876 3.86-12.262 3.853h-623.744c-22.632 0-44.337 8.991-60.34 24.994s-24.994 37.708-24.994 60.34v341.333h-85.333v-341.333c0-45.263 17.981-88.673 49.987-120.679s75.416-49.987 120.68-49.987h426.667zM469.333 341.334h85.333v341.333h-85.333v-256h-85.333v-42.666l85.333-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["repeat-one-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2309,
+ "id": 40,
+ "name": "repeat-one-fill",
+ "prevSize": 32,
+ "code": 61906
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2258
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c212.053 0 384 172.501 384 385.323v382.677h-768v-382.677c0-212.821 171.947-385.323 384-385.323zM405.333 896h213.333c0 28.288-11.238 55.42-31.241 75.426-20.006 20.002-47.138 31.241-75.426 31.241s-55.42-11.238-75.426-31.241c-20.003-20.006-31.241-47.138-31.241-75.426z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["notification-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2310,
+ "id": 39,
+ "name": "notification-fill",
+ "prevSize": 32,
+ "code": 61907
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2259
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42.667c28.015 0 55.757 5.518 81.638 16.239s49.399 26.435 69.21 46.245c19.81 19.81 35.524 43.327 46.246 69.21s16.239 53.624 16.239 81.639v170.667c0 56.58-22.477 110.844-62.485 150.848-40.009 40.009-94.268 62.485-150.848 62.485s-110.842-22.477-150.85-62.485c-40.008-40.004-62.484-94.268-62.484-150.848v-170.667c0-56.579 22.476-110.842 62.484-150.849s94.269-62.484 150.85-62.484zM130.346 469.333h85.973c10.338 71.031 45.904 135.966 100.192 182.925s123.668 72.802 195.446 72.802c71.778 0 141.158-25.843 195.447-72.802 54.285-46.959 89.852-111.893 100.19-182.925h86.016c-9.702 86.558-48.529 167.249-110.114 228.843s-142.272 100.433-228.83 110.144v173.013h-85.333v-173.013c-86.565-9.702-167.263-48.538-228.857-110.131s-100.427-142.289-110.13-228.855z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["mic-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2311, "id": 38, "name": "mic-fill", "prevSize": 32, "code": 61908 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2260
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 85.333c235.52 0 426.667 191.147 426.667 426.667s-191.147 426.667-426.667 426.667c-235.52 0-426.667-191.147-426.667-426.667s191.147-426.667 426.667-426.667zM512 682.667c94.421 0 170.667-76.245 170.667-170.667s-76.245-170.667-170.667-170.667c-94.421 0-170.667 76.245-170.667 170.667s76.245 170.667 170.667 170.667zM512 469.333c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["album-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2312,
+ "id": 37,
+ "name": "album-fill",
+ "prevSize": 32,
+ "code": 61909
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2261
+ },
+ {
+ "icon": {
+ "paths": [
+ "M332.288 744.277c-3.195 2.253-6.948 3.584-10.848 3.844-3.9 0.265-7.798-0.546-11.267-2.347s-6.378-4.523-8.407-7.863c-2.029-3.341-3.101-7.177-3.099-11.085v-429.653c-0.002-3.909 1.070-7.744 3.099-11.085s4.937-6.061 8.407-7.862c3.47-1.801 7.367-2.614 11.267-2.35s7.653 1.594 10.848 3.846l304.341 214.869c2.782 1.971 5.052 4.582 6.618 7.607 1.566 3.029 2.385 6.391 2.385 9.801s-0.819 6.771-2.385 9.801c-1.566 3.025-3.836 5.636-6.618 7.607l-304.341 214.869zM682.667 298.667c0-11.316 4.497-22.168 12.497-30.17s18.854-12.497 30.17-12.497c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v426.667c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497c-11.315 0-22.17-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["skip-forward-mini-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2313,
+ "id": 36,
+ "name": "skip-forward-mini-fill",
+ "prevSize": 32,
+ "code": 61910
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2262
+ },
+ {
+ "icon": {
+ "paths": [
+ "M85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM170.667 213.333v85.333h85.333v-85.333h-85.333zM768 213.333v85.333h85.333v-85.333h-85.333zM170.667 384v85.333h85.333v-85.333h-85.333zM768 384v85.333h85.333v-85.333h-85.333zM170.667 554.667v85.333h85.333v-85.333h-85.333zM768 554.667v85.333h85.333v-85.333h-85.333zM170.667 725.333v85.333h85.333v-85.333h-85.333zM768 725.333v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["film-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2314, "id": 35, "name": "film-fill", "prevSize": 32, "code": 61911 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2263
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682.667 170.667c23.552 0 42.667 19.115 42.667 42.667v179.2l222.421-155.733c9.643-6.741 22.955-4.395 29.739 5.291 2.475 3.584 3.84 7.851 3.84 12.203v515.413c0 11.776-9.557 21.333-21.333 21.333-4.395 0-8.661-1.365-12.245-3.84l-222.421-155.733v179.2c0 23.552-19.115 42.667-42.667 42.667h-597.333c-23.552 0-42.667-19.115-42.667-42.667v-597.333c0-23.552 19.115-42.667 42.667-42.667h597.333zM384 341.333l-170.667 170.667h128v170.667h85.333v-170.667h128l-170.667-170.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["video-upload-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2315,
+ "id": 34,
+ "name": "video-upload-fill",
+ "prevSize": 32,
+ "code": 61912
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2264
+ },
+ {
+ "icon": {
+ "paths": [
+ "M251.264 682.667h-165.931c-11.316 0-22.168-4.493-30.17-12.497-8.001-8-12.497-18.854-12.497-30.17v-255.999c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h165.931l225.877-184.832c3.127-2.562 6.916-4.184 10.927-4.677s8.077 0.165 11.729 1.895c3.652 1.73 6.741 4.462 8.9 7.878s3.307 7.375 3.302 11.416v677.972c0.004 4.041-1.143 8-3.302 11.418-2.159 3.413-5.248 6.148-8.9 7.876-3.652 1.732-7.718 2.389-11.729 1.894-4.011-0.491-7.799-2.112-10.927-4.676l-225.877-184.832zM827.989 859.051l-60.416-60.416c40.448-35.989 72.806-80.141 94.942-129.549s33.549-102.946 33.485-157.086c0.051-56.913-12.57-113.123-36.954-164.549s-59.917-96.774-104.017-132.752l60.587-60.587c51.989 44.013 93.747 98.836 122.372 160.649 28.621 61.812 43.413 129.121 43.345 197.239 0 137.515-59.136 261.205-153.344 347.051zM676.821 707.883l-60.672-60.672c20.715-15.927 37.487-36.403 49.020-59.849 11.533-23.45 17.523-49.233 17.498-75.362 0-61.013-32-114.559-80.213-144.724l61.397-61.397c32.32 23.773 58.586 54.82 76.681 90.629 18.091 35.808 27.503 75.373 27.469 115.493 0 78.592-35.413 148.907-91.179 195.883z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["volume-up-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2316,
+ "id": 33,
+ "name": "volume-up-fill",
+ "prevSize": 32,
+ "code": 61913
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2265
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.333 213.333h-682.667v597.333l396.459-396.544c8-7.999 18.85-12.492 30.165-12.492s22.165 4.494 30.165 12.492l225.877 226.304v-427.093zM85.333 170.368c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h768.683c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264zM341.333 469.333c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.708-24.994-60.339c0-22.632 8.99-44.337 24.994-60.34s37.708-24.994 60.34-24.994c22.632 0 44.337 8.99 60.34 24.994s24.994 37.708 24.994 60.34c0 22.632-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["image-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2317,
+ "id": 32,
+ "name": "image-fill",
+ "prevSize": 32,
+ "code": 61914
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2266
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 256v-85.333h-341.333v-85.333h426.667v170.667h42.667c11.315 0 22.17 4.495 30.17 12.497s12.497 18.854 12.497 30.17v93.867l222.421-155.733c3.2-2.242 6.95-3.563 10.846-3.819 3.9-0.256 7.791 0.563 11.255 2.368s6.366 4.526 8.388 7.866c2.027 3.341 3.093 7.173 3.089 11.078v515.413c0.004 3.904-1.062 7.74-3.089 11.076-2.022 3.341-4.924 6.063-8.388 7.868s-7.356 2.624-11.255 2.368c-3.895-0.256-7.646-1.579-10.846-3.819l-222.421-155.733v179.2c0 11.315-4.497 22.17-12.497 30.17s-18.854 12.497-30.17 12.497h-597.333c-11.316 0-22.168-4.497-30.17-12.497s-12.497-18.854-12.497-30.17v-512c0-11.316 4.495-22.168 12.497-30.17s18.854-12.497 30.17-12.497h469.333zM213.333 426.667v85.333h85.333v-85.333h-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["vidicon-2-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2318,
+ "id": 31,
+ "name": "vidicon-2-fill",
+ "prevSize": 32,
+ "code": 61915
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2267
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 426.667h128v-170.667h-682.667v170.667h469.333v-85.333h85.333v85.333zM256 128v-85.333h85.333v85.333h555.008c23.381 0 42.325 18.987 42.325 42.368v683.264c-0.077 11.204-4.561 21.931-12.48 29.858s-18.641 12.42-29.845 12.51h-768.683c-11.229-0.013-21.995-4.48-29.931-12.425s-12.394-18.714-12.394-29.943v-683.264c0.078-11.205 4.561-21.93 12.48-29.857s18.64-12.422 29.845-12.511h128.341zM298.667 810.667c33.948 0 66.505-13.487 90.51-37.491s37.49-56.563 37.49-90.509c0-33.946-13.486-66.505-37.49-90.509s-56.562-37.491-90.51-37.491c-33.948 0-66.505 13.487-90.51 37.491s-37.49 56.563-37.49 90.509c0 33.946 13.486 66.505 37.49 90.509s56.562 37.491 90.51 37.491z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["radio-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2319,
+ "id": 30,
+ "name": "radio-fill",
+ "prevSize": 32,
+ "code": 61916
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2268
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170.667 512h128c22.632 0 44.337 8.99 60.34 24.994s24.994 37.709 24.994 60.339v213.333c0 22.63-8.99 44.335-24.994 60.339s-37.708 24.994-60.34 24.994h-128c-22.632 0-44.337-8.99-60.34-24.994s-24.994-37.709-24.994-60.339v-298.667c0-235.648 191.019-426.667 426.667-426.667s426.667 191.019 426.667 426.667v298.667c0 22.63-8.99 44.335-24.994 60.339s-37.709 24.994-60.339 24.994h-128c-22.63 0-44.335-8.99-60.339-24.994s-24.994-37.709-24.994-60.339v-213.333c0-22.63 8.99-44.335 24.994-60.339s37.709-24.994 60.339-24.994h128c0-90.527-35.964-177.347-99.972-241.359-64.013-64.013-150.835-99.974-241.361-99.974-90.527 0-177.347 35.962-241.359 99.974s-99.974 150.832-99.974 241.359z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["headphone-fill"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2320,
+ "id": 29,
+ "name": "headphone-fill",
+ "prevSize": 32,
+ "code": 61917
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2269
+ },
+ {
+ "icon": {
+ "paths": [
+ "M826.709 529.749l-452.224 301.483c-3.212 2.138-6.945 3.366-10.799 3.55s-7.687-0.683-11.089-2.505c-3.402-1.818-6.246-4.531-8.23-7.838-1.984-3.311-3.032-7.1-3.034-10.957v-602.965c0.002-3.859 1.050-7.645 3.034-10.955s4.828-6.020 8.23-7.841c3.402-1.821 7.234-2.686 11.089-2.502s7.587 1.411 10.799 3.549l452.224 301.482c2.923 1.95 5.316 4.587 6.976 7.684 1.655 3.098 2.522 6.554 2.522 10.065s-0.866 6.967-2.522 10.065c-1.66 3.098-4.053 5.734-6.976 7.684z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["play-fill"]
+ },
+ "attrs": [{}],
+ "properties": { "order": 2321, "id": 28, "name": "play-fill", "prevSize": 32, "code": 61918 },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2270
+ },
+ {
+ "icon": {
+ "paths": [
+ "M420.608 840.96l91.392-158.293h-295.68c44.78 77.444 118.115 134.268 204.288 158.293zM181.419 597.333h182.784l-147.883-256.043c-30.008 51.881-45.759 110.775-45.653 170.709 0 29.44 3.755 58.027 10.752 85.333zM272.853 268.459l91.307 158.208 147.84-256c-89.473-0.116-175.391 35.017-239.147 97.792zM603.392 183.040l-91.392 158.293h295.68c-44.779-77.446-118.114-134.269-204.288-158.293zM842.581 426.667h-182.784l147.84 256.043c30.025-51.874 45.79-110.771 45.696-170.709 0-29.44-3.755-58.027-10.752-85.333zM751.147 755.541l-91.307-158.208-147.84 256c89.472 0.115 175.39-35.017 239.147-97.792zM512 938.667c-235.648 0-426.667-191.019-426.667-426.667s191.019-426.667 426.667-426.667c235.648 0 426.667 191.019 426.667 426.667s-191.019 426.667-426.667 426.667zM561.28 426.667h-98.56l-49.237 85.333 49.237 85.333h98.56l49.237-85.333-49.237-85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["camera-lens-line"]
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 2322,
+ "id": 27,
+ "name": "camera-lens-line",
+ "prevSize": 32,
+ "code": 61919
+ },
+ "setIdx": 0,
+ "setId": 7,
+ "iconIdx": 2271
+ }
+ ],
+ "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,
+ "autoHost": false
+ },
+ "imagePref": {
+ "prefix": "icon-",
+ "png": true,
+ "useClassSelector": true,
+ "color": 0,
+ "bgColor": 16777215,
+ "classSelector": ".icon"
+ },
+ "historySize": 50,
+ "showCodes": true,
+ "gridSize": 16,
+ "showLiga": false,
+ "quickUsageToken": {
+ "UntitledProject": "N2VhNTRjMDMyZTVlNjM5MjFhODcxNmUyZjE4MzM3ODEjMSMxNjQxMzkwNzc1IyMjMDBkMzFiMDMxYTBk"
+ }
+ }
+}
diff --git a/assets/adaptive-icon.png b/assets/icons/android/adaptive-icon-production.png
similarity index 100%
rename from assets/adaptive-icon.png
rename to assets/icons/android/adaptive-icon-production.png
diff --git a/assets/icons/android/adaptive-icon-qa.png b/assets/icons/android/adaptive-icon-qa.png
new file mode 100644
index 00000000..6cdfe455
Binary files /dev/null and b/assets/icons/android/adaptive-icon-qa.png differ
diff --git a/assets/icons/android/adaptive-icon-staging.png b/assets/icons/android/adaptive-icon-staging.png
new file mode 100644
index 00000000..6cdfe455
Binary files /dev/null and b/assets/icons/android/adaptive-icon-staging.png differ
diff --git a/assets/icon.png b/assets/icons/ios/icon-production.png
similarity index 100%
rename from assets/icon.png
rename to assets/icons/ios/icon-production.png
diff --git a/assets/icons/ios/icon-qa.png b/assets/icons/ios/icon-qa.png
new file mode 100644
index 00000000..8e8fedd0
Binary files /dev/null and b/assets/icons/ios/icon-qa.png differ
diff --git a/assets/icons/ios/icon-staging.png b/assets/icons/ios/icon-staging.png
new file mode 100644
index 00000000..8e8fedd0
Binary files /dev/null and b/assets/icons/ios/icon-staging.png differ
diff --git a/assets/favicon.png b/assets/icons/web/favicon-production.png
similarity index 100%
rename from assets/favicon.png
rename to assets/icons/web/favicon-production.png
diff --git a/assets/icons/web/favicon-qa.png b/assets/icons/web/favicon-qa.png
new file mode 100644
index 00000000..e75f697b
Binary files /dev/null and b/assets/icons/web/favicon-qa.png differ
diff --git a/assets/icons/web/favicon-staging.png b/assets/icons/web/favicon-staging.png
new file mode 100644
index 00000000..e75f697b
Binary files /dev/null and b/assets/icons/web/favicon-staging.png differ
diff --git a/assets/languages.json b/assets/languages.json
new file mode 100644
index 00000000..1b39d4cf
--- /dev/null
+++ b/assets/languages.json
@@ -0,0 +1,16 @@
+{
+ "EN": {
+ "language": "English",
+ "code": "EN",
+ "emoji": "🇬🇧",
+ "unicode": "U+1F1EC U+1F1E7",
+ "image": "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GB.svg"
+ },
+ "PL": {
+ "language": "Polski",
+ "code": "PL",
+ "emoji": "🇵🇱",
+ "unicode": "U+1F1F5 U+1F1F1",
+ "image": "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PL.svg"
+ }
+}
diff --git a/assets/logo-dark.png b/assets/logo-dark.png
new file mode 100644
index 00000000..c66bee6a
Binary files /dev/null and b/assets/logo-dark.png differ
diff --git a/assets/logo-light.png b/assets/logo-light.png
new file mode 100644
index 00000000..c9f8c367
Binary files /dev/null and b/assets/logo-light.png differ
diff --git a/assets/logo.png b/assets/logo.png
deleted file mode 100644
index 4229320f..00000000
Binary files a/assets/logo.png and /dev/null differ
diff --git a/assets/tutorials/check-last-release-date.png b/assets/tutorials/check-last-release-date.png
new file mode 100644
index 00000000..e1d8dfed
Binary files /dev/null and b/assets/tutorials/check-last-release-date.png differ
diff --git a/assets/tutorials/demo-dark.png b/assets/tutorials/demo-dark.png
new file mode 100644
index 00000000..3b215bd6
Binary files /dev/null and b/assets/tutorials/demo-dark.png differ
diff --git a/assets/tutorials/demo-light.png b/assets/tutorials/demo-light.png
new file mode 100644
index 00000000..2f6f43f7
Binary files /dev/null and b/assets/tutorials/demo-light.png differ
diff --git a/assets/tutorials/github-repository-template.png b/assets/tutorials/github-repository-template.png
new file mode 100644
index 00000000..8cd5653f
Binary files /dev/null and b/assets/tutorials/github-repository-template.png differ
diff --git a/babel.config.js b/babel.config.js
index eb87f1c3..2b407999 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -3,9 +3,13 @@ module.exports = function (api) {
return {
presets: ['babel-preset-expo'],
plugins: [
- ["@babel/plugin-transform-react-jsx", {
- "runtime": "automatic"
- }],
+ '@babel/plugin-transform-export-namespace-from',
+ [
+ '@babel/plugin-transform-react-jsx',
+ {
+ runtime: 'automatic',
+ },
+ ],
[
'module-resolver',
{
diff --git a/eas.json b/eas.json
index d7577e21..caad235f 100644
--- a/eas.json
+++ b/eas.json
@@ -1,22 +1,60 @@
{
"build": {
- "development": {
- "developmentClient": true,
- "distribution": "internal",
- "ios": {
- "simulator": true
- }
+ "production": {
+ "android": {
+ "autoIncrement": true,
+ "buildType": "apk"
+ },
+ "channel": "production",
+ "distribution": "store",
+ "ios": { "autoIncrement": "buildNumber" }
},
- "qa": {
- "developmentClient": true,
- "distribution": "internal"
- },
- "preview": {
- "distribution": "internal"
+ "staging": {
+ "android": {
+ "autoIncrement": true,
+ "buildType": "apk"
+ },
+ "channel": "staging",
+ "distribution": "store",
+ "ios": { "autoIncrement": "buildNumber" }
},
- "production": {}
+ "qa": {
+ "android": {
+ "autoIncrement": true,
+ "buildType": "apk"
+ },
+ "channel": "qa",
+ "distribution": "store",
+ "ios": { "autoIncrement": "buildNumber" }
+ }
},
"cli": {
+ "appVersionSource": "remote",
"version": ">= 0.53.1"
+ },
+ // CONFIG: Add submitting to store logic - more info (https://docs.expo.dev/submit/eas-json/)
+ // "android":{
+ // "serviceAccountKeyPath": "path_to_your_service_account_key",
+ // "track": "production"
+ // },
+ // "ios":{ "appleId": "your_apple_id",
+ // "ascAppId": "your_appStore_app_id",
+ // "appleTeamId": "your_apple_team_id",
+ // "appName": "your_app_name",
+ // "language": "your_app_language f.e en-US"
+ // }
+ "submit": {
+ "production": {
+ "android": {},
+ "ios": {}
+ },
+ "staging": {
+ "android": {},
+ "ios": {}
+ },
+ "qa": {
+ "android": {},
+ "ios": {}
+ }
}
}
diff --git a/gitignore b/gitignore
index 454c38f7..57447525 100644
--- a/gitignore
+++ b/gitignore
@@ -1,13 +1,36 @@
node_modules/
.expo/
-npm-debug.*
-*.jks
-*.p8
-*.p12
-*.key
-*.mobileprovision
-*.orig.*
+npm-debug.\*
+_.jks
+_.p8
+_.p12
+_.key
+_.mobileprovision
+_.orig.\*
web-build/
+# webstorm
+
+.idea/
+
# macOS
+
.DS_Store
+
+# yarn
+
+yarn-error.log
+
+dist/
+
+# project files
+
+# CONFIG: uncomment following lines
+
+# .env
+
+# .env.qa
+
+# .env.production
+
+# .env.staging
diff --git a/jest.setup.js b/jest.setup.js
index f2f279cd..e0393482 100644
--- a/jest.setup.js
+++ b/jest.setup.js
@@ -3,3 +3,17 @@ import mockAsyncStorage from '@react-native-async-storage/async-storage/jest/asy
jest.mock('@react-native-async-storage/async-storage', () => mockAsyncStorage)
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper')
+
+jest.mock('react-native-keyboard-aware-scroll-view', () => {
+ const KeyboardAwareScrollView = ({ children }) => children
+ return { KeyboardAwareScrollView }
+})
+
+// Workaround copied from the reanimated contributor github comment
+// Src: https://github.com/software-mansion/react-native-reanimated/issues/3125#issuecomment-1085865635
+global.__reanimatedWorkletInit = () => ({})
+jest.mock('react-native-reanimated', () => require('react-native-reanimated/mock'))
+
+jest.mock('expo-linking', () => ({
+ createURL: (str) => str,
+}))
diff --git a/package.json b/package.json
index f6c89aa2..cfe8529c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
- "name": "@kacgrzes/expo-template",
- "version": "1.2.0",
+ "name": "@binarapps/expo-ts-template",
+ "version": "1.6.4",
"description": "Expo template ready to develop mobile apps",
"keywords": [
"expo",
@@ -12,136 +12,176 @@
"eslint",
"prettier"
],
- "homepage": "https://github.com/kacgrzes/expo-typescript-template",
"repository": {
"type": "git",
- "url": "https://github.com/kacgrzes/expo-typescript-template.git"
+ "url": "https://github.com/binarapps/expo-ts-template.git"
},
"bugs": {
- "url": "https://github.com/kacgrzes/expo-typescript-template/issues"
+ "url": "https://github.com/binarapps/expo-ts-template/issues"
},
- "author": "Kacper Grzeszczyk",
+ "author": "BinarApps",
"license": "MIT",
- "main": "src/index.tsx",
"scripts": {
- "start": "expo start",
- "start:fast": "EXPO_USE_EXOTIC=1 expo start --clear",
- "android": "expo start --android",
- "ios": "expo start --ios",
- "web": "expo start --web",
+ "android": "cross-env cross-env IS_DEV=1 expo start --android",
+ "bootstrap:new_app": "yarn && node ./scripts/bootstrap.js",
+ "build:production:android": "yarn prepare:production && eas build --platform android --profile production",
+ "build:production:ios": "yarn prepare:production && eas build --platform ios --profile production",
+ "build:production": "yarn prepare:production && eas build --platform all --profile production",
+ "build:qa:android": "yarn prepare:qa && eas build --platform android --profile qa",
+ "build:qa:ios": "yarn prepare:qa && eas build --platform ios --profile qa",
+ "build:qa": "yarn prepare:qa && eas build --platform all --profile qa",
+ "build:staging:android": "yarn prepare:staging && eas build --platform android --profile staging",
+ "build:staging:ios": "yarn prepare:staging && eas build --platform ios --profile staging",
+ "build:staging": "yarn prepare:staging && eas build --platform all --profile staging",
+ "deploy:production:android": "yarn prepare:production && eas build --platform android --profile production --auto-submit --non-interactive",
+ "deploy:production:ios": "yarn prepare:production && eas build --platform ios --profile production --auto-submit --non-interactive",
+ "deploy:production": "yarn prepare:production && eas build --platform all --profile production --auto-submit --non-interactive",
+ "deploy:qa:android": "yarn prepare:qa && eas build --platform android --profile qa --auto-submit --non-interactive",
+ "deploy:qa:ios": "yarn prepare:qa && eas build --platform ios --profile qa --auto-submit --non-interactive",
+ "deploy:qa": "yarn prepare:qa && eas build --platform all --profile qa --auto-submit --non-interactive",
+ "deploy:staging:android": "yarn prepare:staging && eas build --platform android --profile staging --auto-submit --non-interactive",
+ "deploy:staging:ios": "yarn prepare:staging && eas build --platform ios --profile staging --auto-submit --non-interactive",
+ "deploy:staging": "yarn prepare:staging && eas build --platform all --profile staging --auto-submit --non-interactive",
"eject": "expo eject",
- "test": "jest --watch --coverage=false --changedSince=origin/main",
+ "generate:component": "node ./scripts/create_new_component.js && yarn eslint src --fix && yarn tsc",
+ "generate:env:production": "scripts/generate_dotenv.sh production",
+ "generate:env:qa": "scripts/generate_dotenv.sh qa",
+ "generate:env:staging": "scripts/generate_dotenv.sh staging",
+ "generate:icon:types": "node ./scripts/generate_icon_types.js",
+ "generate:screen": "node ./scripts/create_new_screen.js && yarn eslint src --fix && yarn tsc",
+ "ios": "cross-env IS_DEV=1 expo start --ios",
"lint": "eslint src && yarn tsc",
- "test:debug": "jest -o --watch --coverage=false",
- "test:final": "jest",
- "updateSnapshots": "jest -u --coverage=false",
- "publish": "expo publish",
"login": "expo login",
"logout": "expo logout",
- "register": "expo register",
- "whoami": "expo whoami",
- "build:ios": "expo build:ios",
- "build:android": "expo build:android",
- "build": "yarn build:ios && yarn build:android",
- "upload:ios": "expo upload:ios",
- "upload:android": "expo upload:android",
- "upload": "yarn upload:ios && yarn upload:android",
+ "postinstall": "patch-package",
+ "prepare:production": "yarn generate:env:production && BASH_ENV=./.env scripts/upload_env.sh",
+ "prepare:qa": "yarn generate:env:qa && BASH_ENV=./.env scripts/upload_env.sh",
+ "prepare:staging": "yarn generate:env:staging && BASH_ENV=./.env scripts/upload_env.sh",
"prepare": "husky install",
+ "prettier:write": "prettier --write ./src",
+ "register": "expo register",
+ "start:fast": "EXPO_USE_EXOTIC=1 expo start --clear",
+ "start": "cross-env IS_DEV=1 expo start -c -g",
+ "test:debug": "jest -o --watch --coverage=false",
+ "test:final": "jest",
+ "test": "jest --watch --coverage=false --changedSince=origin/main",
"typecheck": "eslint .eslintrc.js --fix",
- "prettier:write": "prettier --write ./src"
+ "update:expo_go": "yarn prepare:qa && cross-env IS_DEV=1 eas update --auto",
+ "update:production:android": "yarn prepare:production && eas update --branch production --platform android",
+ "update:production:ios": "yarn prepare:production && eas update --branch production --platform ios",
+ "update:production": "yarn prepare:production && eas update --branch production --message=\"ENV: Production\"",
+ "update:qa:android": "yarn prepare:qa && eas update --branch qa --platform android",
+ "update:qa:ios": "yarn prepare:qa && eas update --branch qa --platform ios",
+ "update:qa": "yarn prepare:qa && eas update --branch qa --message=\"ENV: QA\"",
+ "update:staging:android": "yarn prepare:staging && eas update --branch staging --platform android",
+ "update:staging:ios": "yarn prepare:staging && eas update --branch staging --platform ios",
+ "update:staging": "yarn prepare:staging && eas update --branch staging --message=\"ENV: Staging\"",
+ "updateSnapshots": "jest -u --coverage=false",
+ "upload": "yarn upload:ios && yarn upload:android",
+ "web:build": "expo export:web",
+ "web": "cross-env IS_DEV=1 expo start --web",
+ "whoami": "expo whoami"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
- "@gorhom/bottom-sheet": "^4.3.0",
+ "@gorhom/bottom-sheet": "^4.4.7",
"@motify/interactions": "^0.17.1",
"@motify/skeleton": "^0.18.0",
- "@react-native-async-storage/async-storage": "~1.17.3",
- "@react-native-community/hooks": "^2.8.1",
- "@react-native-community/netinfo": "9.3.0",
- "@react-navigation/bottom-tabs": "^6.3.1",
- "@react-navigation/native": "^6.0.10",
- "@react-navigation/native-stack": "^6.6.2",
- "@react-navigation/stack": "^6.2.1",
- "expo": "^46.0.0",
- "expo-app-loading": "~2.1.0",
- "expo-application": "~4.2.2",
- "expo-asset": "~8.6.1",
- "expo-constants": "~13.2.3",
- "expo-crypto": "~11.0.0",
- "expo-dev-client": "~1.2.1",
- "expo-device": "~4.3.0",
- "expo-error-recovery": "~3.2.0",
- "expo-font": "~10.2.0",
- "expo-haptics": "~11.3.0",
- "expo-linear-gradient": "~11.4.0",
- "expo-linking": "~3.2.2",
- "expo-local-authentication": "~12.3.0",
- "expo-localization": "~13.1.0",
- "expo-network": "~4.3.0",
- "expo-screen-orientation": "~4.3.0",
- "expo-secure-store": "~11.3.0",
- "expo-splash-screen": "~0.16.1",
- "expo-status-bar": "~1.4.0",
- "expo-updates": "~0.14.4",
- "expo-web-browser": "~11.0.0",
- "i18next": "^21.8.4",
- "jest": "^26.6.3",
- "moti": "^0.18.0",
- "native-base": "^3.4.9",
- "react": "18.0.0",
- "react-dom": "18.0.0",
- "react-hook-form": "^7.31.2",
- "react-i18next": "^11.16.9",
- "react-native": "0.69.4",
- "react-native-gesture-handler": "~2.5.0",
- "react-native-notificated": "^0.0.1-beta.0",
- "react-native-pager-view": "5.4.24",
- "react-native-reanimated": "~2.9.1",
- "react-native-redash": "^16.2.4",
- "react-native-safe-area-context": "4.3.1",
- "react-native-screens": "~3.15.0",
- "react-native-svg": "12.3.0",
- "react-native-web": "~0.18.7",
- "react-query": "^3.39.0",
- "use-debounce": "^8.0.1"
+ "@react-native-async-storage/async-storage": "1.18.2",
+ "@react-native-community/netinfo": "9.3.10",
+ "@react-navigation/bottom-tabs": "^6.5.8",
+ "@react-navigation/native": "^6.1.7",
+ "@react-navigation/native-stack": "^6.9.13",
+ "@react-navigation/stack": "^6.3.17",
+ "@tanstack/react-query": "^4.29.19",
+ "axios": "^0.27.2",
+ "expo": "^49.0.0",
+ "expo-app-loading": "^2.1.1",
+ "expo-application": "~5.3.0",
+ "expo-asset": "~8.10.1",
+ "expo-clipboard": "~4.3.0",
+ "expo-constants": "~14.4.2",
+ "expo-crypto": "~12.4.1",
+ "expo-dev-client": "~2.4.5",
+ "expo-device": "~5.4.0",
+ "expo-font": "~11.4.0",
+ "expo-haptics": "~12.4.0",
+ "expo-linear-gradient": "~12.3.0",
+ "expo-linking": "~5.0.2",
+ "expo-local-authentication": "~13.4.1",
+ "expo-localization": "~14.3.0",
+ "expo-network": "~5.4.0",
+ "expo-notifications": "~0.20.1",
+ "expo-screen-orientation": "~6.0.2",
+ "expo-secure-store": "~12.3.1",
+ "expo-splash-screen": "~0.20.4",
+ "expo-status-bar": "~1.6.0",
+ "expo-updates": "~0.18.9",
+ "expo-web-browser": "~12.3.2",
+ "i18next": "^23.2.10",
+ "jest": "^29.6.1",
+ "moti": "^0.25.3",
+ "native-base": "^3.4.28",
+ "react": "18.2.0",
+ "react-dom": "18.2.0",
+ "react-hook-form": "^7.45.1",
+ "react-i18next": "^13.0.2",
+ "react-native": "0.72.1",
+ "react-native-gesture-handler": "~2.9.0",
+ "react-native-keyboard-aware-scroll-view": "^0.9.5",
+ "react-native-notificated": "^0.1.0",
+ "react-native-pager-view": "6.2.0",
+ "react-native-reanimated": "~3.3.0",
+ "react-native-redash": "^18.1.0",
+ "react-native-safe-area-context": "4.6.3",
+ "react-native-screens": "~3.22.0",
+ "react-native-svg": "13.9.0",
+ "react-native-web": "~0.19.6",
+ "reactotron-react-native": "^5.0.3",
+ "setimmediate": "^1.0.5",
+ "use-debounce": "^9.0.4"
},
"resolutions": {
- "@types/react": "^17.0.4"
+ "react-error-overlay": "6.0.9"
},
"devDependencies": {
- "@babel/core": "^7.18.6",
- "@expo/config": "^7.0.0",
- "@expo/webpack-config": "^0.17.0",
- "@testing-library/jest-native": "^4.0.5",
- "@testing-library/react-native": "^11.0.0",
- "@types/i18next": "^13.0.0",
- "@types/jest": "^27.5.1",
- "@types/react": "~18.0.0",
- "@types/react-i18next": "^8.1.0",
- "@types/react-native": "~0.69.1",
- "@types/react-query": "^1.2.9",
- "@types/react-test-renderer": "^17.0.2",
- "@typescript-eslint/eslint-plugin": "^5.25.0",
- "@typescript-eslint/parser": "^5.25.0",
+ "@babel/core": "^7.22.8",
+ "@babel/plugin-transform-export-namespace-from": "^7.22.5",
+ "@expo/config": "~8.1.1",
+ "@expo/webpack-config": "^18.1.1",
+ "@testing-library/jest-native": "^5.4.2",
+ "@testing-library/react-native": "^12.1.2",
+ "@types/jest": "^29.5.3",
+ "@types/react": "~18.2.14",
+ "@types/react-native": "^0.72.2",
+ "@types/react-test-renderer": "^18.0.0",
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
+ "@typescript-eslint/parser": "^6.0.0",
"@welldone-software/why-did-you-render": "^7.0.1",
- "babel-plugin-module-resolver": "^4.1.0",
- "babel-preset-expo": "~9.2.0",
- "eslint": "^8.16.0",
- "eslint-config-prettier": "^8.5.0",
- "eslint-config-universe": "^11.0.0",
- "eslint-plugin-prettier": "^4.0.0",
- "eslint-plugin-react": "^7.30.0",
- "eslint-plugin-react-hooks": "^4.5.0",
+ "babel-plugin-module-resolver": "^5.0.0",
+ "babel-preset-expo": "^9.5.0",
+ "cross-env": "^7.0.3",
+ "dotenv": "^16.3.1",
+ "eslint": "^8.44.0",
+ "eslint-config-prettier": "^8.8.0",
+ "eslint-config-universe": "^11.2.0",
+ "eslint-plugin-prettier": "^4.2.1",
+ "eslint-plugin-react": "^7.32.2",
+ "eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-react-native-globals": "^0.1.2",
- "husky": "^8.0.1",
- "jest-expo": "^46.0.0",
- "lint-staged": "^12.4.1",
- "miragejs": "^0.1.44",
- "prettier": "^2.6.2",
+ "husky": "^8.0.3",
+ "jest-expo": "^49.0.0",
+ "lint-staged": "^13.2.3",
+ "miragejs": "^0.1.47",
+ "patch-package": "^7.0.1",
+ "prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
+ "prompt-sync": "^4.2.0",
"react-test-renderer": "^18.2.0",
- "typescript": "^4.6.3",
+ "readline": "^1.3.0",
+ "select-prompt": "^0.3.2",
+ "typescript": "^5.1.3",
"xmlhttprequest": "^1.8.0"
},
"lint-staged": {
diff --git a/patches/react-native-keyboard-aware-scroll-view+0.9.5.patch b/patches/react-native-keyboard-aware-scroll-view+0.9.5.patch
new file mode 100644
index 00000000..1e50d133
--- /dev/null
+++ b/patches/react-native-keyboard-aware-scroll-view+0.9.5.patch
@@ -0,0 +1,69 @@
+diff --git a/node_modules/react-native-keyboard-aware-scroll-view/lib/KeyboardAwareHOC.js b/node_modules/react-native-keyboard-aware-scroll-view/lib/KeyboardAwareHOC.js
+index 03f46af..8537de0 100644
+--- a/node_modules/react-native-keyboard-aware-scroll-view/lib/KeyboardAwareHOC.js
++++ b/node_modules/react-native-keyboard-aware-scroll-view/lib/KeyboardAwareHOC.js
+@@ -312,6 +312,7 @@ function KeyboardAwareHOC(
+ extraHeight?: number,
+ keyboardOpeningTime?: number
+ ) => {
++
+ if (extraHeight === undefined) {
+ extraHeight = this.props.extraHeight || 0
+ }
+@@ -326,7 +327,7 @@ function KeyboardAwareHOC(
+ responder &&
+ responder.scrollResponderScrollNativeHandleToKeyboard(
+ reactNode,
+- extraHeight,
++ extraHeight + 40,
+ true
+ )
+ }, keyboardOpeningTime)
+@@ -410,7 +411,8 @@ function KeyboardAwareHOC(
+ if (Platform.OS === 'ios') {
+ if (
+ textInputBottomPosition >
+- keyboardPosition - totalExtraHeight
++ keyboardPosition - totalExtraHeight ||
++ textInputBottomPosition < 200
+ ) {
+ this._scrollToFocusedInputWithNodeHandle(
+ currentlyFocusedField
+@@ -430,7 +432,8 @@ function KeyboardAwareHOC(
+ this.scrollForExtraHeightOnAndroid(totalExtraHeight)
+ } else if (
+ textInputBottomPosition >
+- keyboardPosition - totalExtraHeight
++ keyboardPosition - totalExtraHeight ||
++ textInputBottomPosition < 200
+ ) {
+ this.scrollForExtraHeightOnAndroid(
+ totalExtraHeight -
+@@ -523,21 +526,18 @@ function KeyboardAwareHOC(
+ }
+
+ render() {
+- const { enableOnAndroid, contentContainerStyle, onScroll } = this.props
++ const { contentContainerStyle, onScroll } = this.props
+ let newContentContainerStyle
+- if (Platform.OS === 'android' && enableOnAndroid) {
+- newContentContainerStyle = [].concat(contentContainerStyle).concat({
+- paddingBottom:
+- ((contentContainerStyle || {}).paddingBottom || 0) +
+- this.state.keyboardSpace
+- })
+- }
++ newContentContainerStyle = [].concat(contentContainerStyle).concat({
++ paddingBottom:
++ ((contentContainerStyle || {}).paddingBottom || 0) +
++ this.state.keyboardSpace
++ })
+ const refProps = { [hocOptions.refPropName]: this._handleRef }
+ return (
+
+
+# About scripts used in this template
+
+## 1. `generate_dotenv.sh`
+
+`generate_dotenv.sh` script is used to prepare `.env` with desire environment variables depending on desirable environment app should work.
+
+### 1.1. To execute `generate_dotenv.sh` script following steps has been done:
+
+1.1. Create `.env` files corresponding to the environment (`.env.production`,`.env.qa`,`.env.staging`)
+
+1.2. Each of newly created files should consist at least one variable `ENVIRONMENT`.
+
+Accordingly to environment value should be `production`,`qa` or `staging`
+
+### 1.2. Configuration of `.env` files
+
+You should pass environment variables to files provided in 1.1. which follow `.env` file rules
+
+Each `.env` file has included `ENVIRONMENT` variable to allow use proper configuration in build process.
+
+Values of the `ENVIRONMENT` variable should always be passed to `.env` file and have following values depending of environment `production`, `qa` or `staging`.
+
+### 1.3. Running `generate_dotenv.sh` script
+
+This script has to be executed with environment passed as an argument
+
+for example `./scripts/generate_dotenv.sh qa`
+
+Environment argument could be production, qa or staging
+
+## 2. `upload_env.sh`
+
+`upload_env.sh` script is used to upload proper environment variables to eas tool (tool to build and submit the app).
+
+This script should be executed after `generate_dotenv.sh` and before executing `eas build / update`.
+
+## The above scripts are used by following scripts in `package.json` file.
+
+```
+yarn prepare:production
+yarn prepare:qa
+yarn prepare:staging
+```
+
+## 3. `generate_icon_types.sh`
+
+This script has to be executed when new icons where added to the icomoon.ttf icons set in case to provide proper types for components which use icons.
+If script won't be executed typescript will throw an error when trying to use newly added icon.
+
+## 4. generators
+
+```bash
+## Create new component
+yarn generate:screen
+
+## Create new screen
+yarn generate:component
+
+## Bootstrap the app
+yarn bootstrap:new_app
+```
diff --git a/scripts/bootstrap.js b/scripts/bootstrap.js
new file mode 100644
index 00000000..1ab015a3
--- /dev/null
+++ b/scripts/bootstrap.js
@@ -0,0 +1,172 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
+const fs = require('fs')
+const prompt = require('prompt-sync')()
+
+const { logger, addAfter } = require('./utils')
+
+const paths = {
+ appConfig: './app.config.ts',
+ readme: './README.md',
+ readmeTemplate: './scripts/templates/readme_template.md',
+ pullRequestTemplate: './.github/pull_request_template.md',
+ newPullReuestTemplate: './scripts/templates/pull_request_template.md',
+}
+
+// 1.
+const replaceReadme = (appName, organizationOwner) => {
+ let contents = fs.readFileSync(paths.readmeTemplate, 'utf8')
+ contents = contents.replaceAll('_NAME_', appName)
+ contents = contents.replaceAll('_OWNER_', organizationOwner)
+
+ fs.writeFileSync(paths.readme, contents)
+}
+
+// 2.
+const setUpAppConfig = (appName, bundleId, androidPackageName, scheme, easId, androidIconColor) => {
+ let contents = fs.readFileSync(paths.appConfig, 'utf8')
+
+ const appConfig = `
+export const APP_CONFIG = {
+ androidPackageName: '${androidPackageName}', // CONFIG: Add your android package name here
+ appName: '${appName}', // CONFIG: Add your app name here
+ easProjectId: '${easId}', // CONFIG: Add your eas project ID here
+ iosBundleIdentifier: '${bundleId}', // CONFIG: Add your ios bundle identifier here
+ scheme: '${scheme}', // CONFIG: Add your url scheme to link to your app
+ adaptiveIconBackgroundColor: '${androidIconColor}', // CONFIG: Add your url scheme to link to your app
+} as const
+`
+
+ contents = contents.replace(/(\/\/ APP_CONFIG_START)[\s\S]*?(\/\/ APP_CONFIG_END)/g, '$1$2')
+
+ contents = addAfter(contents, '// APP_CONFIG_START', `${appConfig}`)
+ fs.writeFileSync(paths.appConfig, contents)
+}
+
+// 3.
+const replatePullRequestTemplate = () => {
+ const contents = fs.readFileSync(paths.newPullReuestTemplate, 'utf8')
+
+ fs.writeFileSync(paths.pullRequestTemplate, contents)
+}
+
+// 4.
+const changeAppJson = (appName, appSlug, organizationOwner) => {
+ const appJson = JSON.parse(fs.readFileSync('./app.json', 'utf8'))
+ appJson.expo.slug = appSlug
+ appJson.expo.name = appName
+ appJson.expo.owner = organizationOwner
+ fs.writeFileSync('./app.json', JSON.stringify(appJson, null, 2))
+}
+
+// 5.
+const changePackageJson = (appName, organizationOwner) => {
+ const packageJson = JSON.parse(fs.readFileSync('./package.json', 'utf8'))
+ packageJson.name = `@${organizationOwner}/${appName}`
+ packageJson.description = `App created from expo-template powered by binarapps`
+ packageJson.version = '1.0.0'
+ fs.writeFileSync('./package.json', JSON.stringify(packageJson, null, 2))
+}
+
+const setUpProject = async (
+ appName,
+ bundleId,
+ androidPackageName,
+ scheme,
+ easId,
+ organizationOwner,
+ androidIconColor,
+ appSlug
+) => {
+ // START
+ logger.success('Start ...')
+
+ // 1. Delete readme -> and create new, with new app name etc.
+ logger.info('Generating new readme file')
+ replaceReadme(appName, organizationOwner)
+
+ // 2. Replace appName, bundleId, androidPackageName,scheme and easProjectId in app.config.ts file
+ logger.info('Change project variables in app.config.ts file')
+ setUpAppConfig(appName, bundleId, androidPackageName, scheme, easId, androidIconColor)
+
+ // 3. Delete exist pull request template -> generate the new
+ logger.info('Generating new pull request template file')
+ replatePullRequestTemplate()
+
+ // 4. Change app.json file
+ logger.info('Change app.json file')
+ changeAppJson(appName, appSlug, organizationOwner)
+
+ // 5. Change package.json file
+ logger.info('Change package.json file')
+ changePackageJson(appName, organizationOwner)
+
+ //Finish
+ logger.success(`Config your project has been success`)
+}
+
+const bootstrap = () => {
+ logger.info('Please give me this information to setup your project:')
+ const appName = prompt('App name: ')
+ if (!appName) {
+ return logger.error('Please write correct app name')
+ }
+
+ const appSlug = prompt('App slug (from expo dashboard): ')
+ if (!appSlug) {
+ return logger.error('Please write app slug')
+ }
+
+ const organizationOwner = prompt('Organization owner (from expo dashboard): ')
+ if (!organizationOwner) {
+ return logger.error('Please write organziation owner')
+ }
+
+ const easId = prompt('EAS project ID (from expo dashboard): ')
+ if (!easId) {
+ return logger.error('Please write correct eas project ID')
+ }
+
+ const androidIconColor =
+ prompt('Android adaptive icon color (you can leave it empty and fill it later): ') ||
+ '#2E7AF0CC'
+
+ const bundleId = prompt('Bundle ID (ios): ')
+ if (!bundleId) {
+ return logger.error('Please write correct bundle ID')
+ }
+
+ const androidPackageName = prompt('Package name (android): ')
+ if (!androidPackageName) {
+ return logger.error('Please write correct android package name')
+ }
+
+ const scheme = prompt('URL scheme (for deeplinking): ')
+ if (!scheme) {
+ return logger.error('Please write correct scheme')
+ }
+
+ // 1. Setup project -> set ( appName, bundleId, androidPackageName, appScheme, easProjectId, organizationOwner, androidIconColor )
+ setUpProject(
+ appName,
+ bundleId,
+ androidPackageName,
+ scheme,
+ easId,
+ organizationOwner,
+ androidIconColor,
+ appSlug
+ )
+
+ logger.info(
+ '\nYou can also add images right now, go to assets folder and replace images to match your app \n'
+ )
+ logger.info('\nPlease verify the changes made by this script and commit it to your repository \n')
+}
+
+bootstrap()
+
+// INSTRUCTION:
+// 1. Delete readme and write the new one
+// 2. Setup app.config.ts file
+// 3. Setup pull_request_template.md
+// 4. Setup app.json file
diff --git a/scripts/create_new_component.js b/scripts/create_new_component.js
new file mode 100644
index 00000000..87127b8c
--- /dev/null
+++ b/scripts/create_new_component.js
@@ -0,0 +1,73 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
+const fs = require('fs')
+const prompt = require('prompt-sync')()
+const selectPrompt = require('select-prompt')
+
+const { logger } = require('./utils')
+
+const paths = {
+ template: './scripts/templates/component_template.tsx',
+ componentsIndex: './src/components/index.ts',
+}
+
+const createComponentFile = (name, type) => {
+ const newCommonComponentPath = `./src/components/${name}.tsx`
+ const newAtomicComponentPath = `./src/components/${type}s/${name}.tsx`
+ const componentFromFile = fs.readFileSync(paths.template, 'utf8')
+ const componentContent = componentFromFile.replaceAll('_NAME_', name)
+
+ if (type === 'common') {
+ fs.writeFileSync(newCommonComponentPath, componentContent)
+ return
+ }
+ fs.writeFileSync(newAtomicComponentPath, componentContent)
+}
+
+const addToIndex = (name, type) => {
+ const atomicComponentIndexPath = `./src/components/${type}s/index.ts`
+ const newExport = `
+export * from './${name}'`
+ if (type === 'common') {
+ const contents = fs.readFileSync(paths.componentsIndex, 'utf8')
+ fs.writeFileSync(paths.componentsIndex, contents + newExport)
+
+ return
+ }
+
+ const contents = fs.readFileSync(atomicComponentIndexPath, 'utf8')
+ fs.writeFileSync(atomicComponentIndexPath, contents + newExport)
+}
+
+const generateComponent = async (name, type) => {
+ // Generate Component file
+ logger.info('Generating component files')
+ createComponentFile(name, type)
+
+ // Add Component to index
+ addToIndex(name, type)
+
+ // Finish
+ logger.success(`Component ${name} created successfully`)
+}
+
+const generateNewComponent = async () => {
+ const componentTypes = [
+ { title: 'Atom', value: 'atom' },
+ { title: 'Molecule', value: 'molecule' },
+ { title: 'Organism', value: 'organism' },
+ { title: 'Common', value: 'common' },
+ ]
+
+ selectPrompt('Select type for new component', componentTypes, {
+ cursor: 0,
+ }).on('submit', async (type) => {
+ const name = prompt('What is component name? ')
+ if (!name) {
+ return logger.error('No component name passed')
+ }
+ // 1. New component -> component_name + component_type (atom | molecule | organism | common)
+ await generateComponent(name, type)
+ })
+}
+
+generateNewComponent()
diff --git a/scripts/create_new_screen.js b/scripts/create_new_screen.js
new file mode 100644
index 00000000..a85b7c0d
--- /dev/null
+++ b/scripts/create_new_screen.js
@@ -0,0 +1,309 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
+const fs = require('fs')
+const prompt = require('prompt-sync')()
+const selectPrompt = require('select-prompt')
+
+const Content = require('./templates/contents/content')
+const { addAfter, addBefore, execPromise, logger } = require('./utils')
+
+const enumsFileSrc = './src/navigation/config/enums.ts'
+const screensFileSrc = './src/navigation/config/screens.ts'
+const tabsFileSrc = './src/navigation/config/tabs.ts'
+const typesFileSrc = './src/navigation/config/navigation.d.ts'
+const screensIndexFileSrc = './src/screens/index.ts'
+
+/**
+ * @param {string} name
+ */
+const validateScreen = (name) => {
+ const enumsFile = require('./temp/enums')
+
+ Object.values(enumsFile).forEach((enumValue) => {
+ if (enumValue[name]) {
+ logger.error(`Screen with name ${name} already exists`)
+ process.exit(1)
+ }
+ })
+}
+
+/**
+ * @typedef {{
+ * "tabs",
+ * "tabs_new",
+ * "root",
+ * }} TYPES
+ */
+
+const createScreenFile = (name) => {
+ const screenFromFile = fs.readFileSync('./scripts/templates/screen_template.tsx', 'utf8')
+ const screenContent = screenFromFile.replaceAll('_NAME_', name)
+
+ fs.writeFileSync(`./src/screens/${name}Screen.tsx`, screenContent)
+}
+
+/**
+ * @param {string} name
+ * @param {Object} screenType
+ * @param {string} screenType.value
+ * @param {keyof TYPES} screenType.type
+ */
+const addToEnums = (name, screenType) => {
+ const enumsFile = require('./temp/enums')
+ const contents = fs.readFileSync(enumsFileSrc, 'utf8')
+ const StackScreens =
+ screenType.type === 'root' ? 'RootStackScreens' : screenType.value + 'Screens'
+
+ // 3. a) LOGIC WHEN ADDING NEW TAB
+ if (screenType.type === 'tabs_new') {
+ let newContents = addAfter(
+ contents,
+ 'export const BottomTabsScreens = {',
+ Content.bottomTab(screenType.value)
+ )
+
+ newContents = addBefore(
+ newContents,
+ '// ExamplesStack_SCREENS',
+ Content.tabEnum(screenType.value, StackScreens, name)
+ )
+
+ fs.writeFileSync(enumsFileSrc, newContents)
+ return
+ }
+
+ // 1. a), 2. a) LOGIC WHEN ADDING ONLY NEW SCREEN - ROOT STACK AND BOTTOM TABS
+ const startIdx = contents.indexOf(`export const ${StackScreens} = {`)
+ const endIdxString = '} as const'
+ const endIdx = contents.indexOf(endIdxString, startIdx) + endIdxString.length
+ const rootStackScreensData = enumsFile[StackScreens]
+ rootStackScreensData[name] = name
+
+ // Convert the updated object back to a string
+ const updatedRootStackScreensDataStr = `export const ${StackScreens} = ${JSON.stringify(
+ rootStackScreensData,
+ null,
+ 2
+ )} as const`
+
+ // Write the updated contents back to the file
+ fs.writeFileSync(
+ enumsFileSrc,
+ contents.substring(0, startIdx) + updatedRootStackScreensDataStr + contents.substring(endIdx)
+ )
+}
+
+/**
+ * @param {string} name
+ * @param {Object} screenType
+ * @param {string} screenType.value
+ * @param {keyof TYPES} screenType.type
+ */
+const addToScreens = (name, screenType) => {
+ const screenNameType = screenType.type === 'root' ? 'RootStack' : screenType.value
+ const newScreen = Content.screenOptions(name, screenNameType)
+ let contents =
+ screenType.type === 'root'
+ ? fs.readFileSync(screensFileSrc, 'utf8')
+ : fs.readFileSync(tabsFileSrc, 'utf8')
+
+ if (screenType.type === 'tabs_new') {
+ // 3. c) Add new tab to bottomTabs and create stack with screen
+ contents = addBefore(contents, '// StackEnums', Content.screenEnumImport(screenType.value))
+ contents = addBefore(contents, "} from '~screens'", Content.screenNameImport(name))
+ contents = addBefore(
+ contents,
+ '// ExamplesStack_SCREENS_START',
+ Content.newTab(screenType.value, newScreen)
+ )
+ contents = addBefore(contents, '// BottomTab_SCREENS_END', Content.tabOptions(screenType.value))
+ } else {
+ // 1. c), 2. c) Add screen to specific group (screens or tabs)
+ const typeToSearch = `// ${screenType.value}_SCREENS_END`
+
+ typeToSearch.replace(screenType.value, screenType.value)
+ contents = addBefore(contents, typeToSearch, newScreen)
+ contents = addBefore(contents, "} from '~screens'", Content.screenNameImport(name))
+ }
+
+ const path = screenType.type === 'root' ? screensFileSrc : tabsFileSrc
+ fs.writeFileSync(path, contents)
+}
+
+/**
+ * @param {string} name
+ * @param {Object} screenType
+ * @param {string} screenType.value
+ * @param {keyof TYPES} screenType.type
+ */
+const addToTypes = (name, screenType) => {
+ let contents = fs.readFileSync(typesFileSrc, 'utf8')
+ // 1. b) Add screen to navigation types
+ if (screenType.type === 'root') {
+ contents = addAfter(contents, `// Root_${screenType.value}`, Content.newAuthorizedScreen(name))
+ contents = addAfter(contents, ' // RootStack_SCREENS', Content.screenComposite(name))
+ }
+ // 2. b) Add screen to certain params list in navigation types
+ if (screenType.type === 'tabs') {
+ contents = addAfter(
+ contents,
+ `type ${screenType.value}ParamList = {`,
+ Content.newAuthorizedScreen(name)
+ )
+ contents = addAfter(contents, ` // ${screenType.value}_SCREENS`, Content.screenComposite(name))
+ }
+
+ // 3. b) Add stack param list with new screen
+ if (screenType.type === 'tabs_new') {
+ contents = addAfter(contents, '// PARAMS', Content.bottomTabParamsList(screenType.value, name))
+ contents = addBefore(
+ contents,
+ ' // BottomTabScreenProps END',
+ Content.bottomTabScreenProps(screenType.value)
+ )
+ contents = addBefore(
+ contents,
+ ' ExamplesStackParamList) = keyof RootStackParamList',
+ Content.screenCompositeKey(screenType.value)
+ )
+ contents = addAfter(
+ contents,
+ '> = StackScreenProps<',
+ Content.screenCompositeValue(screenType.value)
+ )
+ contents = addBefore(
+ contents,
+ '// MainTabParamList END',
+ Content.navigatorScreenParams(screenType.value)
+ )
+ contents = addBefore(contents, '// WebTabParamListEnd', Content.webTabBar(screenType.value))
+ contents = addBefore(
+ contents,
+ ` // HomeStack_SCREENS`,
+ Content.newBottomTabScreenComposite(screenType.value, name)
+ )
+ }
+
+ fs.writeFileSync(typesFileSrc, contents)
+}
+
+const addToIndex = (name) => {
+ const newExport = `
+export * from './${name}Screen'`
+
+ const contents = fs.readFileSync(screensIndexFileSrc, 'utf8')
+
+ fs.writeFileSync(screensIndexFileSrc, contents + newExport)
+}
+
+/**
+ * @param {string} name
+ * @param {Object} screenType
+ * @param {string} screenType.value
+ * @param {keyof TYPES} screenType.type
+ */
+const generateScreen = async (name, screenType) => {
+ // VALIDATE IF SCREEN NAME IS VALID
+ validateScreen(name)
+
+ // GENERATE SCREEN FILE
+ logger.info('Generating screen files')
+ createScreenFile(name)
+
+ // ADD SCREEN TO INDEX, ENUMS, SCREENS, TYPES
+ addToIndex(name)
+ addToEnums(name, screenType)
+ addToScreens(name, screenType)
+ addToTypes(name, screenType)
+
+ // Remove temp files
+ logger.info('Removing temp files')
+ await execPromise('rm -rf ./scripts/temp')
+
+ // FISNISH
+ logger.success(`Screen ${name} created successfully`)
+}
+
+const generateNewScreen = async () => {
+ logger.info('Creating temp files files')
+ await execPromise(`yarn tsc ${enumsFileSrc} --outDir ./scripts/temp --skipLibCheck`)
+
+ const rootVsBottomTabs = [
+ { title: 'Root stack', value: 'root' },
+ { title: 'Bottom tabs', value: 'tabs' },
+ ]
+
+ const rootScreenTypes = [
+ { title: 'Authorized', value: 'authorized' },
+ { title: 'Not authorized', value: 'unauthorized' },
+ { title: 'Modal', value: 'modals' },
+ { title: 'Normal - authorized and not authorized', value: 'normal' },
+ ]
+
+ const enumsFile = require('./temp/enums')
+
+ const bottomTabsScreens = Object.keys(enumsFile.BottomTabsScreens)
+ const bottomTabsTypes = bottomTabsScreens
+ .map((tab) => ({ title: tab, value: tab }))
+ .concat({ title: 'New tab', value: '_new' })
+
+ selectPrompt('Do you want this screen on root stack or on bottom tabs?', rootVsBottomTabs, {
+ cursor: 0,
+ }).on('submit', async (stackType) => {
+ if (stackType === 'root') {
+ selectPrompt('Select what type is this screen', rootScreenTypes, {
+ cursor: 1,
+ }).on('submit', async (screenType) => {
+ const name = prompt('What is screen name? ')
+ if (!name) {
+ return logger.error('No screen name passed')
+ }
+ // 1. NEW root screen -> screen_name + screen_type (authorized | not_authorized | modal | normal)
+ generateScreen(name, { type: 'root', value: screenType })
+ })
+ }
+
+ if (stackType === 'tabs') {
+ selectPrompt('Select what type is this screen', bottomTabsTypes, {
+ cursor: 1,
+ }).on('submit', async (screenType) => {
+ const name = prompt('What is screen name? ')
+ if (!name) {
+ return console.log('No screen name passed')
+ }
+
+ // Logic when adding new tab
+ if (screenType === '_new') {
+ const bottomTabName = prompt('What is bottom tab name? ')
+ // 2. New bottom tab screen - screen_name + bottom_tab_name
+ generateScreen(name, { type: 'tabs_new', value: bottomTabName + 'Stack' })
+ return
+ }
+
+ // 3. New bottom tab => screen_name + bottom_tab_name
+ generateScreen(name, { type: 'tabs', value: screenType })
+ })
+ }
+ })
+}
+
+generateNewScreen()
+
+// INSTRUCTION
+// 0. Common
+// a) index.ts -> export
+// b) screen_name.ts -> screen_name component
+
+// 1. NEW root screen -> screen_name + screen_type (authorized | not_authorized | modal | normal)
+// a) enums.ts -> const RootStackScreens = {
+// b) navigation.d.ts -> type RootStackParamList = {
+// c) screens.ts -> import + rootStackScreensData.authorized
+
+// 2. New bottom tab screen - screen_name + bottom_tab_name (ExampleStack)
+// a) enums.ts -> const {bottom_tab_name}Screens = {
+// b) navigation.d.ts -> type {bottom_tab_name}ParamList = {
+// c) tabs.ts -> import + // HomeStack_SCREENS_END (before)
+
+// 3. New bottom tab => screen_name + bottom_tab_name
+// a) enums.ts -> const {bottom_tab_name}StackScreens = { + export const BottomTabsScreens = { (after)
+// b) navigation.d.ts -> type {bottom_tab_name}ParamList = {
+// c) tabs.ts -> import + // ${bottom_tab_name}_SCREENS_END (before)
diff --git a/scripts/generate_dotenv.sh b/scripts/generate_dotenv.sh
new file mode 100755
index 00000000..cb9293e2
--- /dev/null
+++ b/scripts/generate_dotenv.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+ENVIRONMENT=$1
+echo $ENVIRONMENT
+
+cp .env.$ENVIRONMENT .env
diff --git a/scripts/generate_icon_types.js b/scripts/generate_icon_types.js
new file mode 100644
index 00000000..aaa50f06
--- /dev/null
+++ b/scripts/generate_icon_types.js
@@ -0,0 +1,17 @@
+#!/usr/bin/env node
+
+// eslint-disable-next-line @typescript-eslint/no-var-requires
+const fs = require('fs')
+
+const prefix = `export type IconNames =
+ | `
+const json = fs.readFileSync('./assets/icomoon/selection.json')
+
+const types = JSON.parse(json)
+ .icons.map((icon) => `'${icon.properties.name}'`)
+ .join('\n | ')
+ .concat('\n')
+
+const content = prefix + types
+
+fs.writeFileSync('./src/types/icon.d.ts', content)
diff --git a/scripts/templates/component_template.tsx b/scripts/templates/component_template.tsx
new file mode 100644
index 00000000..5ad9d04a
--- /dev/null
+++ b/scripts/templates/component_template.tsx
@@ -0,0 +1,20 @@
+import { FC } from 'react'
+
+import { Center, Text } from '~components/atoms'
+import { useTranslation } from '~hooks'
+
+type _NAME_Props = {
+ example: string
+}
+
+export const _NAME_: FC<_NAME_Props> = ({ ...props }): JSX.Element => {
+ const { example } = props
+ const { t } = useTranslation()
+
+ return (
+
+ {t('examples_component.example')} _NAME_
+ {example}
+
+ )
+}
diff --git a/scripts/templates/contents/content.js b/scripts/templates/contents/content.js
new file mode 100644
index 00000000..c3bcaec9
--- /dev/null
+++ b/scripts/templates/contents/content.js
@@ -0,0 +1,71 @@
+exports.screenOptions = (name, screenNameType) => `{
+ name: ${screenNameType}Screens.${name},
+ component: ${name}Screen,
+ // TODO: Add translation here
+ options: { title: '${name.replace('Stack', '')}' },
+ deeplink: '/${name.toLowerCase()}',
+ },
+`
+
+exports.tabOptions = (value) => ` {
+ // TODO: Change icon name
+ icons: {
+ active: 'file-list-2-fill',
+ inactive: 'file-list-2-line',
+ } as BottomTabIcons,
+ name: BottomTabsScreens.${value},
+ screens: ${value.charAt(0).toLowerCase() + value.slice(1)}ScreensData,
+ // TODO: Add translation here
+ options: { title: '${value.replace('Stack', '')}' },
+ },
+`
+
+exports.screenComposite = (name) => `
+type ${name}ScreenProps = ScreenComposite<'${name}'>`
+
+exports.newTab = (value, newScreen) => `// ${value}_SCREENS_START
+const ${
+ value.charAt(0).toLowerCase() + value.slice(1)
+}ScreensData: ScreenType[] = [
+ ${newScreen}// ${value}_SCREENS_END
+]
+
+`
+
+exports.screenNameImport = (name) => ` ${name}Screen,
+`
+
+exports.screenEnumImport = (value) => ` ${value}Screens,
+`
+
+exports.tabEnum = (value, StackScreens, name) => `// ${value}_SCREENS
+export const ${StackScreens} = {
+ ${name}: '${name}',
+} as const
+
+`
+
+exports.bottomTab = (value) => `
+${value}: '${value}',`
+
+exports.bottomTabParamsList = (value, name) => `
+type ${value}ParamList = {
+ ${name}: undefined
+}\n`
+
+exports.navigatorScreenParams = (value) => `${value}: NavigatorScreenParams<${value}ParamList>
+`
+exports.webTabBar = (value) => `& ${value}ParamList
+`
+exports.newBottomTabScreenComposite = (value, name) => `
+// ${value}_SCREENS
+type ${name}ScreenProps = ScreenComposite<'${name}'>\n\n`
+
+exports.screenCompositeKey = (value) => `${value}ParamList & `
+
+exports.screenCompositeValue = (value) => `${value}ParamList & `
+
+exports.bottomTabScreenProps = (value) => ` | '${value}'\n`
+
+exports.newAuthorizedScreen = (name) => `
+${name}: undefined`
diff --git a/scripts/templates/pull_request_template.md b/scripts/templates/pull_request_template.md
new file mode 100644
index 00000000..f2df2a52
--- /dev/null
+++ b/scripts/templates/pull_request_template.md
@@ -0,0 +1,11 @@
+# Describe your changes
+
+# Issue ticket number or link
+
+# Checklist before requesting a review
+
+- [ ] I did self-review of my code.
+- [ ] Do the tests work ?
+- [ ] Does lint work ?, it doesn't find any bugs or problems.
+
+# Do any blockers exist ? if yes, describe it below.
diff --git a/scripts/templates/readme_template.md b/scripts/templates/readme_template.md
new file mode 100644
index 00000000..663d86b1
--- /dev/null
+++ b/scripts/templates/readme_template.md
@@ -0,0 +1,133 @@
+# @_OWNER_/_NAME_
+
+This is a template to be used with expo. It includes all the necessary stuff to start working with expo framework. It has the most popular packages included so it's easier to start coding the app itself without all the necessary boilerplate setup. It has:
+
+Version in the `package.json` is one to one the latest expo on which the template was tested.
+
+## Scripts
+
+#### 1. Bootstrap - At start you should trigger script
+
+```
+node ./scripts/bootstrap.js
+```
+
+The script gives you opportunity to setup the essentialest variables for your project like app name, bundle ID or android package name
+
+#### 2. Generate new screen
+
+```
+node ./scripts/create_new_screen.js
+```
+
+You can use this script for generate new common screen, tabs screen or new bottom tab, from screen template. You have possiblity to change screen template for your own.
+
+#### 3. Generate new component
+
+```
+node ./scripts/create_new_component.js
+```
+
+You can use this script for generate new common component (atom, molecule, organism, common) from component template. You have possiblity to change component template for your own.
+
+## Run Locally
+
+1. Clone the project
+
+```bash
+ git clone git@github.com:binarapps/_NAME_.git
+```
+
+2. Go to the project directory
+
+```bash
+ cd _NAME_
+```
+
+3. Install dependencies
+
+```bash
+ yarn
+```
+
+4. Setup environment variables (right now not needed because we are using only mocked values)
+
+- We are using doppler in our project, and almost everything is happening automatically
+- While doing the setup for the first time you need to follow this [instructions](./scripts/README.md) - "1. `generate_dotenv.sh`"
+
+5. Start the expo server
+
+```bash
+ yarn start
+```
+
+## Icons
+
+This template uses [Remix icon set](https://remixicon.com/)
+
+It is added to the app as a font generated by [icomoon app](https://icomoon.io/app/#/select).
+
+## Adding new icons
+
+1. Find `assets/icomoon/selection.json` file in your machine
+2. Import this file to this [page (icomoon app)](https://icomoon.io/app/#/select):
+
+- Make sure there are no other icons imported there
+
+3. Download icon which need to be added to the app as svg file.
+4. Make sure new icon name is unique (already not used).
+5. Add svg file to icomoon app.
+6. Go to generate font tab - icomoon app.
+
+- Make sure that all icons that you have added have correct names
+
+7. Download font - icomoon app
+8. Replace old files with downloaded ones
+
+- ./selection.json => assets/icomoon/selection.json
+- ./fonts/icomoon.ttf => assets/icomoon/icomoon.ttf
+
+9. Generate new types for icons
+
+- run script generating icon types `yarn generate:icon:types`
+
+## Sync up with template:
+
+1. Add template remote
+
+```bash
+git remote add template git@github.com:binarapps/expo-ts-template.git
+```
+
+2. Go to new branch (for safety reason)
+
+```bash
+git checkout -b "sync_with_template/1"
+```
+
+3. Fetch template remote
+
+```bash
+git fetch template
+```
+
+4. Merge with template
+
+```bash
+git merge -X theirs template/main --allow-unrelated-histories --no-commit
+```
+
+5. Review changes
+
+- There can be some issues with files that you were also working, make sure merge doesnt remove your logic
+
+6. Adjust and commit changes
+
+```bash
+git commit -m "chore: sync up with template code"
+```
+
+## Working with designer in your project
+
+Expo template, you are going to use - bundles native-base ui lib out of the box.
+To have the best starting experience in your project - write a dm to your designer that they should use [NativeBase Figma Design Kit](https://www.figma.com/community/file/1050753649783931446)
diff --git a/scripts/templates/screen_template.tsx b/scripts/templates/screen_template.tsx
new file mode 100644
index 00000000..9d7b1697
--- /dev/null
+++ b/scripts/templates/screen_template.tsx
@@ -0,0 +1,25 @@
+import { Button, Center, Text } from '~components/atoms'
+import { useCallback, useTranslation } from '~hooks'
+
+// eslint-disable-next-line @typescript-eslint/ban-ts-comment
+// @ts-ignore
+export const _NAME_Screen = (props: _NAME_ScreenProps): JSX.Element => {
+ const {
+ navigation: { navigate },
+ } = props
+ const { t } = useTranslation()
+
+ const navigateToDetails = useCallback(() => {
+ navigate('Home')
+ }, [navigate])
+
+ return (
+
+ _NAME_
+ {t('hello')}
+
+ {t('home_screen.details')}
+
+
+ )
+}
diff --git a/scripts/upload_env.sh b/scripts/upload_env.sh
new file mode 100755
index 00000000..9dc8dc43
--- /dev/null
+++ b/scripts/upload_env.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+
+# Global colors
+green="$bold$(tput setaf 2)" # bright green text
+darkcyan=$(tput setaf 6) # dim cyan text
+
+echo "${darkcyan}[START] Generating build and submit credentials"
+echo ${ENVIRONMENT}
+
+eas secret:push --scope project --env-file .env --force
+
+echo "${green}[SUCESS] Generating build and submit credentials"
+
+eas secret:list
\ No newline at end of file
diff --git a/scripts/utils.js b/scripts/utils.js
new file mode 100644
index 00000000..ed8c566d
--- /dev/null
+++ b/scripts/utils.js
@@ -0,0 +1,53 @@
+// eslint-disable-next-line @typescript-eslint/no-var-requires
+const { exec } = require('child_process')
+
+const LCERROR = '\x1b[31m%s\x1b[0m' //red
+const LCWARN = '\x1b[33m%s\x1b[0m' //yellow
+const LCINFO = '\x1b[36m%s\x1b[0m' //cyan
+const LCSUCCESS = '\x1b[32m%s\x1b[0m' //green
+
+exports.__esModule = true
+const logger = class {
+ static error(message, ...optionalParams) {
+ console.error(LCERROR, message, ...optionalParams)
+ }
+ static warn(message, ...optionalParams) {
+ console.warn(LCWARN, message, ...optionalParams)
+ }
+ static info(message, ...optionalParams) {
+ console.info(LCINFO, message, ...optionalParams)
+ }
+ static success(message, ...optionalParams) {
+ console.info(LCSUCCESS, message, ...optionalParams)
+ }
+}
+exports.logger = logger
+
+exports.execPromise = (cmd) => {
+ return new Promise(function (resolve, reject) {
+ exec(cmd, function (err, stdout) {
+ if (err) {
+ logger.error(
+ 'Error when running command',
+ cmd,
+ '\n',
+ 'Run this command manually to see more details'
+ )
+ return reject(err)
+ }
+ resolve(stdout)
+ })
+ })
+}
+
+exports.addAfter = (content, searchText, textToAdd) => {
+ return content.replace(searchText, searchText + textToAdd)
+}
+
+exports.addBefore = (content, searchText, textToAdd) => {
+ return content.replace(searchText, textToAdd + searchText)
+}
+
+exports.deleteText = (content, searchText) => {
+ return content.replace(searchText, '')
+}
diff --git a/src/components/AppLoading.tsx b/src/components/AppLoading.tsx
index 4f18a0ec..e4f9d40d 100644
--- a/src/components/AppLoading.tsx
+++ b/src/components/AppLoading.tsx
@@ -1,23 +1,73 @@
import * as SplashScreen from 'expo-splash-screen'
-import { FC, Fragment, PropsWithChildren } from 'react'
+import { FC, PropsWithChildren, useCallback, useEffect } from 'react'
+import { StyleSheet, View } from 'react-native'
-import { useAuth, useCachedResources, useEffect } from '~hooks'
+import { AbsoluteFullFill, Loader, Center } from './atoms'
+
+import { useAuth, useBoolean, useCachedResources } from '~hooks'
SplashScreen.preventAutoHideAsync()
export const AppLoading: FC = ({ children }) => {
const isLoadingComplete = useCachedResources()
+
+ // Delay loading logic was made to prevent displaying empty screen after splash screen will hide
+ const [isDelayLoading, setIsDelayLoading] = useBoolean(true)
const { isSignedIn } = useAuth()
useEffect(() => {
- if (isLoadingComplete && isSignedIn !== null) {
- SplashScreen.hideAsync()
+ async function prepare() {
+ try {
+ // Keep the splash screen visible while we fetch resources
+ await SplashScreen.preventAutoHideAsync()
+ } catch (e) {
+ console.warn(e)
+ }
+ }
+
+ prepare()
+ }, [])
+
+ const onLayoutRootView = useCallback(async () => {
+ try {
+ // Source: https://docs.expo.dev/versions/latest/sdk/splash-screen/#usage
+ // This tells the splash screen to hide immediately! If we call this after
+ // `prepare`, then we may see a blank screen while the app is
+ // loading its initial state and rendering its first pixels. So instead,
+ // we hide the splash screen once we know the root view has already
+ // performed layout.
+ await SplashScreen.hideAsync()
+ } catch {
+ console.log('There was some error while hiding splash screen')
}
- }, [isLoadingComplete, isSignedIn])
+ }, [])
- if (!isLoadingComplete || isSignedIn === null) {
- return null
- }
+ const isLoading = !isLoadingComplete || isSignedIn === null
- return {children}
+ useEffect(() => {
+ if (!isLoading) {
+ setTimeout(() => {
+ setIsDelayLoading.off()
+ }, 200)
+ }
+ }, [isLoading, setIsDelayLoading])
+
+ return (
+
+ {isLoading ? null : children}
+ {isLoading || isDelayLoading ? (
+
+
+
+
+
+ ) : null}
+
+ )
}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ },
+})
diff --git a/src/components/KeyboardAwareScrollView.tsx b/src/components/KeyboardAwareScrollView.tsx
new file mode 100644
index 00000000..8d8e8982
--- /dev/null
+++ b/src/components/KeyboardAwareScrollView.tsx
@@ -0,0 +1,48 @@
+import { forwardRef, useMemo } from 'react'
+import { Platform, StyleProp, ViewStyle } from 'react-native'
+import {
+ KeyboardAwareScrollView as KeyboardAwareScroll,
+ KeyboardAwareScrollViewProps,
+} from 'react-native-keyboard-aware-scroll-view'
+
+import { useNavigationTheme } from '~hooks'
+
+const keyboardDismissMode = Platform.OS === 'android' ? 'on-drag' : 'interactive'
+
+type Props = Omit & {
+ contentContainerStyle?: Omit, 'false'>
+}
+
+export const KeyboardAwareScrollView = forwardRef(
+ ({ children, contentContainerStyle = {}, ...rest }, ref) => {
+ const { navigationTheme } = useNavigationTheme()
+
+ const scrollViewContentContainerStyle = useMemo(
+ () => [
+ {
+ backgroundColor: navigationTheme.colors.background,
+ flexGrow: 1,
+ },
+ contentContainerStyle,
+ ],
+ [contentContainerStyle, navigationTheme.colors.background]
+ )
+
+ return (
+
+ {children}
+
+ )
+ }
+)
diff --git a/src/components/LanguagePicker.tsx b/src/components/LanguagePicker.tsx
new file mode 100644
index 00000000..db143a40
--- /dev/null
+++ b/src/components/LanguagePicker.tsx
@@ -0,0 +1,73 @@
+import { Pressable, Menu, IPressableProps } from 'native-base'
+import { StyleSheet } from 'react-native'
+import Animated, {
+ useAnimatedStyle,
+ useDerivedValue,
+ useSharedValue,
+ withTiming,
+} from 'react-native-reanimated'
+
+import languages from '../../assets/languages.json'
+
+import { Icon, Row, Text } from '~components/atoms'
+import { useCallback, useTranslation, useTheme } from '~hooks'
+
+export const LanguagePicker: React.FC = () => {
+ const { sizes } = useTheme()
+ const { i18n } = useTranslation()
+ const language = i18n.language.slice(0, 2).toUpperCase() as keyof typeof languages
+ const isOpen = useSharedValue(false)
+
+ const rotateZ = useDerivedValue(() => withTiming(isOpen.value ? 180 : 0))
+ const animatedIconStyle = useAnimatedStyle(() => ({
+ transform: [{ rotateZ: `${rotateZ.value}deg` }],
+ }))
+
+ const styles = StyleSheet.create({
+ icon: { height: sizes[8], justifyContent: 'center' },
+ })
+
+ const renderTrigger = useCallback(
+ (
+ props: IPressableProps,
+ state: {
+ open: boolean
+ }
+ ) => {
+ // Set animated value based on a `Menu` state
+ isOpen.value = state.open
+
+ return (
+
+
+
+ {languages[language].emoji}
+
+
+
+
+
+
+ )
+ },
+ [animatedIconStyle, isOpen, language, styles.icon]
+ )
+
+ const handleItemPress = useCallback(
+ (lng: string) => () => {
+ i18n.changeLanguage(lng.toLowerCase())
+ },
+ [i18n]
+ )
+
+ return (
+
+ {Object.entries(languages).map(([key, languageData]) => (
+ {`${languageData.emoji} ${languageData.language}`}
+ ))}
+
+ )
+}
diff --git a/src/components/README.md b/src/components/README.md
index 62c60152..f56b597a 100644
--- a/src/components/README.md
+++ b/src/components/README.md
@@ -1,6 +1,6 @@
# Components
-Components in [expo-typescript-template](https://github.com/kacgrzes/expo-typescript-template) follows [atomic design methodology](https://atomicdesign.bradfrost.com/).
+Components in [expo-ts-template](https://github.com/binarapps/expo-ts-template) follows [atomic design methodology](https://atomicdesign.bradfrost.com/).
For more information on such a design methodology, visit the page above.
On the other hand, below you can find documentation of the implemented components
diff --git a/src/components/Version.tsx b/src/components/Version.tsx
new file mode 100644
index 00000000..d6587dd4
--- /dev/null
+++ b/src/components/Version.tsx
@@ -0,0 +1,28 @@
+import * as Application from 'expo-application'
+import * as Clipboard from 'expo-clipboard'
+import Constants from 'expo-constants'
+import * as Updates from 'expo-updates'
+import { useCallback } from 'react'
+import { Pressable } from 'react-native'
+
+import { Spacer, Text } from './atoms'
+
+const appName = Application?.applicationName ?? Constants?.expoConfig?.name
+const appVersion = Application?.nativeApplicationVersion ?? Constants?.expoConfig?.version
+
+export const Version = ({ onPress }: { onPress: () => void }) => {
+ const version = `${appName}: ${appVersion} (${Application?.nativeBuildVersion ?? '-'}) ${
+ Updates.updateId ? 'update: ' + Updates.updateId : ''
+ }`
+
+ const handleShortPress = useCallback(async () => {
+ await Clipboard.setStringAsync(version)
+ }, [version])
+
+ return (
+
+ {version}
+
+
+ )
+}
diff --git a/src/components/atoms/Absolute.tsx b/src/components/atoms/Absolute.tsx
index 80c5f536..35a7eab0 100644
--- a/src/components/atoms/Absolute.tsx
+++ b/src/components/atoms/Absolute.tsx
@@ -1,5 +1,5 @@
-import { Box } from 'native-base'
-
import type { AbsoluteProps } from './types'
+import { Box } from '~components/atoms'
+
export const Absolute = (props: AbsoluteProps) =>
diff --git a/src/components/atoms/AbsoluteFullFill.tsx b/src/components/atoms/AbsoluteFullFill.tsx
index 76326e86..32796dd7 100644
--- a/src/components/atoms/AbsoluteFullFill.tsx
+++ b/src/components/atoms/AbsoluteFullFill.tsx
@@ -1,7 +1,7 @@
-import { Box } from 'native-base'
-
import type { AbsoluteProps } from './types'
+import { Box } from '~components/atoms'
+
export const AbsoluteFullFill = (props: AbsoluteProps) => (
)
diff --git a/src/components/atoms/BricksLoader.tsx b/src/components/atoms/BricksLoader.tsx
new file mode 100644
index 00000000..7d2ebed4
--- /dev/null
+++ b/src/components/atoms/BricksLoader.tsx
@@ -0,0 +1,78 @@
+import React from 'react'
+import Animated from 'react-native-reanimated'
+
+import { useBricksLoader } from '~hooks/loaders'
+
+export type BricksLoaderType = {
+ color?: string
+ colors?: [string, string, string]
+ containerSize?: number
+ size?: number
+}
+
+export const BricksLoader = ({
+ color,
+ size = 20,
+ colors = ['#0055a5', '#45aee7', '#bda0b2'],
+ containerSize = 45,
+}: BricksLoaderType): JSX.Element => {
+ const { animatedStyleBoxOne, animatedStyleBoxTwo, animatedStyleBoxThree } = useBricksLoader({
+ containerSize,
+ size,
+ })
+
+ const containerStyle = {
+ width: containerSize,
+ height: containerSize,
+ } as const
+
+ const mainBrickStyle = {
+ width: size,
+ height: size,
+ borderRadius: 8,
+ position: 'absolute',
+ } as const
+
+ const secondBrickStyle = {
+ ...mainBrickStyle,
+ right: 0,
+ } as const
+
+ const thirdBrickStyle = {
+ ...mainBrickStyle,
+ bottom: 0,
+ right: 0,
+ } as const
+
+ return (
+
+
+
+
+
+ )
+}
diff --git a/src/components/atoms/BubblesLoader.tsx b/src/components/atoms/BubblesLoader.tsx
new file mode 100644
index 00000000..61ae3311
--- /dev/null
+++ b/src/components/atoms/BubblesLoader.tsx
@@ -0,0 +1,49 @@
+import React from 'react'
+import Animated from 'react-native-reanimated'
+
+import { Box } from '~components/atoms'
+import { useBubblesLoader } from '~hooks/loaders'
+
+export type BubblesLoaderType = {
+ color?: string
+ size?: number
+}
+
+const FullCircle = ({ size = 10, color = 'black' }: BubblesLoaderType): JSX.Element => (
+
+)
+
+export const BubblesLoader = ({ size = 40, color = 'black' }: BubblesLoaderType): JSX.Element => {
+ const { animatedHeight, animatedRotate, animatedWidth } = useBubblesLoader()
+
+ const containerStyle = {
+ width: size,
+ height: size,
+ alignItems: 'center',
+ justifyContent: 'center',
+ } as const
+
+ const rowStyle = {
+ flexDirection: 'row',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ } as const
+
+ const absoluteStyle = {
+ justifyContent: 'space-between',
+ position: 'absolute',
+ } as const
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/atoms/CircleLoader.tsx b/src/components/atoms/CircleLoader.tsx
new file mode 100644
index 00000000..1d9db3d4
--- /dev/null
+++ b/src/components/atoms/CircleLoader.tsx
@@ -0,0 +1,128 @@
+import React from 'react'
+import Animated, {
+ Extrapolate,
+ interpolate,
+ SharedValue,
+ useAnimatedStyle,
+} from 'react-native-reanimated'
+
+import { Box } from '~components/atoms'
+import { useCircleLoader } from '~hooks/loaders'
+
+type HalfCircleProps = {
+ progress: SharedValue
+ isFlipped?: boolean
+ color?: string
+ size?: number
+ thickness?: number
+}
+
+export type CircleLoaderType = Omit
+
+const HalfCircle = ({
+ thickness,
+ size = 20,
+ progress,
+ isFlipped = false,
+ color,
+}: HalfCircleProps): JSX.Element => {
+ const fullCircleStyle = {
+ width: size,
+ height: size,
+ borderRadius: size / 2,
+ } as const
+
+ const halfCircleContainerStyle = {
+ width: size / 2,
+ height: size,
+ overflow: 'hidden',
+ } as const
+
+ const animatedStyle = useAnimatedStyle(() => {
+ if (progress.value > 1) {
+ const rotateValue = interpolate(
+ progress.value,
+ isFlipped ? [1, 1.5] : [1.5, 2],
+ isFlipped ? [0, -180] : [0, 180],
+ Extrapolate.CLAMP
+ )
+ return {
+ transform: [
+ {
+ rotate: `${rotateValue}deg`,
+ },
+ ],
+ }
+ }
+ const rotateValue = interpolate(
+ progress.value,
+ isFlipped ? [0, 0.5] : [0.5, 1],
+ isFlipped ? [180, 0] : [-180, 0],
+ Extrapolate.CLAMP
+ )
+ return {
+ transform: [
+ {
+ rotate: `${rotateValue}deg`,
+ },
+ ],
+ }
+ })
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+export const CircleLoader = ({
+ size = 32,
+ thickness = 2,
+ color = 'black',
+}: CircleLoaderType): JSX.Element => {
+ const { animatedRotate, progress } = useCircleLoader()
+
+ const fullCircleStyle = {
+ width: size,
+ height: size,
+ borderRadius: size / 2,
+ flexDirection: 'row',
+ } as const
+
+ const circleStyleProps = {
+ color,
+ size,
+ thickness,
+ }
+
+ return (
+
+
+
+
+ )
+}
diff --git a/src/components/atoms/DiskLoader.tsx b/src/components/atoms/DiskLoader.tsx
new file mode 100644
index 00000000..ad9165f2
--- /dev/null
+++ b/src/components/atoms/DiskLoader.tsx
@@ -0,0 +1,71 @@
+import React, { useEffect } from 'react'
+import Animated, {
+ Easing,
+ Extrapolate,
+ interpolate,
+ useAnimatedStyle,
+ useSharedValue,
+ withRepeat,
+ withSequence,
+ withTiming,
+} from 'react-native-reanimated'
+
+import { Box } from '~components/atoms'
+
+export type DiskLoaderType = {
+ circleColor?: string
+ containerColor?: string
+ size?: number
+}
+
+export const DiskLoader = ({
+ circleColor = '#4c5630',
+ containerColor = '#b3c430',
+ size = 40,
+}: DiskLoaderType): JSX.Element => {
+ const moving = useSharedValue(0)
+ const easing = Easing.linear
+ const containerSize = size / 1.5
+ const circleSize = size / 3.2
+ const DURATION = 1000
+
+ const containerStyle = {
+ width: size,
+ height: size,
+ backgroundColor: containerColor,
+ borderRadius: 999,
+ justifyContent: 'center',
+ alignItems: 'center',
+ } as const
+
+ useEffect(() => {
+ moving.value = withRepeat(withSequence(withTiming(1, { duration: DURATION, easing })), -1)
+ }, [easing, moving])
+
+ const animatedStyle = useAnimatedStyle(() => {
+ const rotate = interpolate(moving.value, [0, 1], [0, 360], Extrapolate.CLAMP)
+ return { transform: [{ rotate: `${rotate}deg` }] }
+ }, [])
+
+ return (
+
+
+
+
+
+ )
+}
diff --git a/src/components/atoms/Icon.tsx b/src/components/atoms/Icon.tsx
new file mode 100644
index 00000000..d1879c47
--- /dev/null
+++ b/src/components/atoms/Icon.tsx
@@ -0,0 +1,24 @@
+import { createIconSetFromIcoMoon } from '@expo/vector-icons'
+import iconJson from 'assets/icomoon/selection.json'
+import { StyleProp, ViewStyle } from 'react-native'
+
+import { useTheme } from '~hooks'
+import { IconNames } from '~types/icon'
+import { ColorNames } from '~types/native-base'
+import { getColorValue } from '~utils'
+
+export type IconProps = {
+ style?: StyleProp
+ color?: ColorNames
+ name: IconNames
+ size: number
+}
+
+const IconFont = createIconSetFromIcoMoon(iconJson, 'IcoMoon', 'icomoon.ttf')
+
+export const Icon = ({ color, name, size, style }: IconProps) => {
+ const { colors } = useTheme()
+
+ // Using provided color is prevention if user will pass color that is not included in ColorNames
+ return
+}
diff --git a/src/components/atoms/Input.tsx b/src/components/atoms/Input.tsx
index eb9c125b..ae71beaa 100644
--- a/src/components/atoms/Input.tsx
+++ b/src/components/atoms/Input.tsx
@@ -1,9 +1,9 @@
-import { Feather } from '@expo/vector-icons'
-import { Input as NBInput, useTheme, Pressable as Touchable } from 'native-base'
+import { Input as NBInput, Pressable as Touchable } from 'native-base'
import { forwardRef } from 'react'
import { TextInput } from 'react-native'
import type { InputProps } from '.'
+import { Icon } from './Icon'
import { useSecurePassword } from '~hooks'
@@ -12,7 +12,6 @@ import { useSecurePassword } from '~hooks'
*/
export const Input = forwardRef(
({ secureTextIconName, secureTextIconColor, secureTextIconSize = 24, ...props }, ref) => {
- const { colors } = useTheme()
const { securePassword, toggleSecurePassword, iconName } = useSecurePassword(props.type)
return (
(
rightElement={
props.type === 'password' ? (
-
diff --git a/src/components/atoms/Loader.tsx b/src/components/atoms/Loader.tsx
new file mode 100644
index 00000000..7cae30c5
--- /dev/null
+++ b/src/components/atoms/Loader.tsx
@@ -0,0 +1,58 @@
+import { Center } from 'native-base'
+import React, { useMemo } from 'react'
+import { ActivityIndicator, ActivityIndicatorProps } from 'react-native'
+
+import { BricksLoader, BricksLoaderType } from './BricksLoader'
+import { BubblesLoader, BubblesLoaderType } from './BubblesLoader'
+import { CircleLoader, CircleLoaderType } from './CircleLoader'
+import { DiskLoader, DiskLoaderType } from './DiskLoader'
+
+type LoaderType =
+ | {
+ type: 'circle'
+ isFlipped?: boolean
+ color?: string
+ size?: number
+ thickness?: number
+ }
+ | {
+ type: 'bubbles'
+ color?: string
+ size?: number
+ }
+ | {
+ type: 'bricks'
+ size?: number
+ colors?: [string, string, string]
+ containerSize?: number
+ color?: string
+ }
+ | {
+ type: 'disk'
+ circleColor?: string
+ containerColor?: string
+ size?: number
+ }
+ | {
+ type: 'default'
+ color?: string
+ size?: string | number
+ }
+
+export const Loader = ({ type, ...props }: LoaderType): JSX.Element => {
+ const renderLoader = useMemo((): JSX.Element => {
+ if (type === 'circle') {
+ return
+ } else if (type === 'bubbles') {
+ return
+ } else if (type === 'bricks') {
+ return
+ } else if (type === 'disk') {
+ return
+ } else {
+ return
+ }
+ }, [type, props])
+
+ return {renderLoader}
+}
diff --git a/src/components/atoms/icons/CheckIcon.tsx b/src/components/atoms/icons/CheckIcon.tsx
deleted file mode 100644
index b628c2db..00000000
--- a/src/components/atoms/icons/CheckIcon.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import { FC } from 'react'
-import Svg, { Path } from 'react-native-svg'
-
-import { IconProps } from './types'
-
-export const CheckIcon: FC = ({ width = 54, height = 54, color }) => (
-
-
-
-
-)
diff --git a/src/components/atoms/icons/index.ts b/src/components/atoms/icons/index.ts
deleted file mode 100644
index d5ef8189..00000000
--- a/src/components/atoms/icons/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export * from './CheckIcon'
-export type { IconProps } from './types'
diff --git a/src/components/atoms/icons/types.ts b/src/components/atoms/icons/types.ts
deleted file mode 100644
index 47714daa..00000000
--- a/src/components/atoms/icons/types.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export type IconProps = {
- width?: number
- height?: number
- color?: string
-}
diff --git a/src/components/atoms/index.ts b/src/components/atoms/index.ts
index 4e7fddab..22f01888 100644
--- a/src/components/atoms/index.ts
+++ b/src/components/atoms/index.ts
@@ -1,9 +1,10 @@
-export { Pressable as Touchable } from 'native-base'
+export { Pressable as Touchable, Box, Center, Text, Button, Row } from 'native-base'
export { LinearGradient as Gradient } from 'expo-linear-gradient'
export * from './Absolute'
export * from './AbsoluteFullFill'
-export * from './icons'
export * from './Input'
export * from './Spacer'
export * from './types'
+export * from './Icon'
+export * from './Loader'
diff --git a/src/components/atoms/types.ts b/src/components/atoms/types.ts
index df47e5e5..e1dae324 100644
--- a/src/components/atoms/types.ts
+++ b/src/components/atoms/types.ts
@@ -1,8 +1,9 @@
-import { Feather } from '@expo/vector-icons'
import { IBoxProps, Theme, IInputProps } from 'native-base'
-import { ComponentProps } from 'react'
import { ViewStyle } from 'react-native'
+import { IconNames } from '~types/icon'
+import { ColorNames } from '~types/native-base'
+
export type AbsoluteProps = Omit
export type SpacingValue = keyof Theme['space']
@@ -13,7 +14,7 @@ export type SpacerProps = {
}
export type InputProps = IInputProps & {
- secureTextIconName?: ComponentProps['name']
- secureTextIconColor?: string
+ secureTextIconName?: IconNames
+ secureTextIconColor?: ColorNames
secureTextIconSize?: number
}
diff --git a/src/components/bottomSheets/BottomSheet.tsx b/src/components/bottomSheets/BottomSheet.tsx
new file mode 100644
index 00000000..5a288006
--- /dev/null
+++ b/src/components/bottomSheets/BottomSheet.tsx
@@ -0,0 +1,47 @@
+import {
+ BottomSheetModal,
+ BottomSheetScrollView,
+ useBottomSheetDynamicSnapPoints,
+ BottomSheetBackdrop,
+ BottomSheetBackdropProps,
+} from '@gorhom/bottom-sheet'
+import { BottomSheetModalMethods } from '@gorhom/bottom-sheet/lib/typescript/types'
+import { forwardRef, Ref, useCallback } from 'react'
+
+import { Box } from '~components/atoms'
+import { useMemo } from '~hooks'
+
+type Props = {
+ children: JSX.Element | JSX.Element[]
+}
+
+export { BottomSheetScrollView }
+export const BottomSheet = forwardRef(
+ ({ children }: Props, ref: Ref | undefined) => {
+ const snapPoints = useMemo(() => ['CONTENT_HEIGHT'], [])
+ const { animatedHandleHeight, animatedContentHeight, animatedSnapPoints, handleContentLayout } =
+ useBottomSheetDynamicSnapPoints(snapPoints)
+
+ const renderBackdrop = useCallback(
+ (props: BottomSheetBackdropProps) => (
+
+ ),
+ []
+ )
+
+ return (
+
+
+ {children}
+
+
+ )
+ }
+)
diff --git a/src/components/bottomSheets/BottomSheet.web.tsx b/src/components/bottomSheets/BottomSheet.web.tsx
new file mode 100644
index 00000000..41ede36d
--- /dev/null
+++ b/src/components/bottomSheets/BottomSheet.web.tsx
@@ -0,0 +1,36 @@
+import { Box, Modal } from 'native-base'
+import { forwardRef, useCallback, useImperativeHandle } from 'react'
+import { ScrollView } from 'react-native'
+
+import { useState } from '~hooks'
+
+type Props = {
+ children: JSX.Element | JSX.Element[]
+}
+export const BottomSheetScrollView = ScrollView
+export const BottomSheet = forwardRef(({ children }: Props, ref) => {
+ const [isOpen, setIsOpen] = useState(false)
+
+ useImperativeHandle(ref, () => ({
+ snapToPosition: (index: number) => {
+ if (index === -1) {
+ setIsOpen(false)
+ }
+ },
+ present: () => {
+ // show modal
+ setIsOpen(true)
+ },
+ }))
+ const closeModalHandler = useCallback(() => {
+ setIsOpen(false)
+ }, [])
+
+ return (
+
+
+ {children}
+
+
+ )
+})
diff --git a/src/components/bottomSheets/index.tsx b/src/components/bottomSheets/index.tsx
new file mode 100644
index 00000000..cc2c16aa
--- /dev/null
+++ b/src/components/bottomSheets/index.tsx
@@ -0,0 +1 @@
+export * from './useBottomSheets'
diff --git a/src/components/bottomSheets/useBottomSheets.tsx b/src/components/bottomSheets/useBottomSheets.tsx
new file mode 100644
index 00000000..932b0a57
--- /dev/null
+++ b/src/components/bottomSheets/useBottomSheets.tsx
@@ -0,0 +1,21 @@
+import { BottomSheetModal } from '@gorhom/bottom-sheet'
+import { useCallback, useRef } from 'react'
+
+import { BottomSheet } from './BottomSheet'
+
+export const useBottomSheet = () => {
+ const bottomSheetRef = useRef(null)
+
+ const bottomSheetComponentRenderFunction = (children: JSX.Element | JSX.Element[]) => {
+ return {children}
+ }
+
+ const presentBottomSheet = useCallback(() => {
+ bottomSheetRef.current?.present?.()
+ }, [])
+
+ return {
+ bottomSheetComponentRenderFunction,
+ presentBottomSheet,
+ }
+}
diff --git a/src/components/index.ts b/src/components/index.ts
index 14fc301d..68a25927 100644
--- a/src/components/index.ts
+++ b/src/components/index.ts
@@ -1,6 +1,10 @@
export * from './atoms'
+export * from './bottomSheets'
export * from './molecules'
export * from './organisms'
export * from './AppLoading'
+export * from './KeyboardAwareScrollView'
+export * from './LanguagePicker'
export * from './StatusBar'
+export * from './Version'
diff --git a/src/components/molecules/Field/Input.tsx b/src/components/molecules/Field/Input.tsx
index a61f92ae..f715e720 100644
--- a/src/components/molecules/Field/Input.tsx
+++ b/src/components/molecules/Field/Input.tsx
@@ -1,6 +1,6 @@
-import { FormControl } from 'native-base'
-import { forwardRef } from 'react'
-import { TextInput } from 'react-native'
+import { Box, Text } from 'native-base'
+import { forwardRef, useCallback, useImperativeHandle, useRef } from 'react'
+import { NativeSyntheticEvent, Pressable, TextInput, TextInputFocusEventData } from 'react-native'
import { Input as BaseInput } from '../../atoms/Input'
import type { FieldInputProps } from './types'
@@ -34,8 +34,23 @@ const layoutPropsKeys = [
'py',
]
-export const Input = forwardRef(
- ({ isDisabled, isRequired, isInvalid, label, helperText, errorMessage, ...props }, ref) => {
+export const Input = forwardRef, FieldInputProps>(
+ (
+ {
+ isDisabled,
+ isRequired,
+ isInvalid,
+ label,
+ helperText,
+ errorMessage,
+ onFocus,
+ onBlur,
+ ...props
+ },
+ ref
+ ) => {
+ const _inputRef = useRef(null)
+
const layoutProps = useMemo(
() =>
Object.fromEntries(Object.entries(props).filter(([key]) => layoutPropsKeys.includes(key))),
@@ -47,17 +62,53 @@ export const Input = forwardRef(
[props]
)
+ const handleFocus = useCallback(
+ (e?: NativeSyntheticEvent) => {
+ onFocus && e && onFocus?.(e)
+ _inputRef?.current?.focus()
+ },
+ [onFocus]
+ )
+ const handleBlur = useCallback(
+ (e?: NativeSyntheticEvent) => {
+ onBlur && e && onBlur(e)
+ _inputRef.current?.blur()
+ },
+ [onBlur]
+ )
+
+ useImperativeHandle(
+ ref,
+ () => ({
+ focus: handleFocus,
+ blur: handleBlur,
+ ..._inputRef.current,
+ }),
+ [handleBlur, handleFocus]
+ )
+
return (
-
- {label && {label} }
-
- {helperText && {helperText} }
- {errorMessage && {errorMessage} }
-
+
+ handleFocus()}>
+ {label && (
+
+ {label}
+ {isRequired && * }
+
+ )}
+
+ {errorMessage && (
+
+ {errorMessage}
+
+ )}
+
+
)
}
)
diff --git a/src/components/molecules/Field/Radio.tsx b/src/components/molecules/Field/Radio.tsx
new file mode 100644
index 00000000..f3518f85
--- /dev/null
+++ b/src/components/molecules/Field/Radio.tsx
@@ -0,0 +1,24 @@
+import { FormControl, Radio as NBRadio } from 'native-base'
+import { MutableRefObject, forwardRef } from 'react'
+
+import { FieldRadioProps } from './types'
+
+export const Radio = forwardRef(
+ (
+ { isInvalid, isRequired, isDisabled, value, radioOptions, name, errorMessage, onChange },
+ ref
+ ) => {
+ return (
+
+
+ {radioOptions?.map((radio) => (
+ }>
+ {radio}
+
+ ))}
+
+ {errorMessage}
+
+ )
+ }
+)
diff --git a/src/components/molecules/Field/index.tsx b/src/components/molecules/Field/index.tsx
index f06da5db..d6a079fb 100644
--- a/src/components/molecules/Field/index.tsx
+++ b/src/components/molecules/Field/index.tsx
@@ -2,10 +2,12 @@ import React, { PropsWithChildren } from 'react'
import { Checkbox } from './Checkbox'
import { Input } from './Input'
+import { Radio } from './Radio'
type FieldComposition = React.FC & {
Input: typeof Input
Checkbox: typeof Checkbox
+ Radio: typeof Radio
}
const Field: FieldComposition = ({ children }) => {
@@ -14,6 +16,7 @@ const Field: FieldComposition = ({ children }) => {
Field.Input = Input
Field.Checkbox = Checkbox
+Field.Radio = Radio
export { Field }
export * from './types'
diff --git a/src/components/molecules/Field/types.ts b/src/components/molecules/Field/types.ts
index edba2d80..ffcbc3c9 100644
--- a/src/components/molecules/Field/types.ts
+++ b/src/components/molecules/Field/types.ts
@@ -1,4 +1,4 @@
-import { ICheckboxProps, IFormControlProps } from 'native-base'
+import { ICheckboxProps, IFormControlProps, IRadioGroupProps } from 'native-base'
import { InputProps } from '~components'
@@ -13,3 +13,10 @@ export type FieldCheckboxProps = ICheckboxProps &
IFormControlProps & {
label?: string
}
+
+export type FieldRadioProps = IRadioGroupProps &
+ IFormControlProps & {
+ label?: string
+ radioOptions?: string[]
+ errorMessage?: string
+ }
diff --git a/src/components/organisms/ControlledField/Input.tsx b/src/components/organisms/ControlledField/Input.tsx
index a04872ee..442f7df6 100644
--- a/src/components/organisms/ControlledField/Input.tsx
+++ b/src/components/organisms/ControlledField/Input.tsx
@@ -1,27 +1,31 @@
-import { forwardRef, useCallback } from 'react'
+import { useCallback } from 'react'
import { Controller, get } from 'react-hook-form'
-import { TextInput } from 'react-native'
import { Field } from '../../molecules'
import type { ControlledInputProps, RenderInputProps } from './types'
-export const Input = forwardRef(
- ({ control, name, errors, rules, children, ...props }, ref) => {
- const errorMessage = get(errors, name)?.message
+export const Input = ({
+ control,
+ name,
+ errors,
+ rules,
+ children,
+ ...props
+}: ControlledInputProps) => {
+ const errorMessage = get(errors, name)?.message
- const renderInput = useCallback(
- ({ field: { onChange, name, ...fieldProps } }: RenderInputProps) => (
-
- ),
- [ref, errorMessage, props]
- )
+ const renderInput = useCallback(
+ ({ field: { onChange, name, ref, ...fieldProps } }: RenderInputProps) => (
+
+ ),
+ [errorMessage, props]
+ )
- return
- }
-)
+ return
+}
diff --git a/src/components/organisms/ControlledField/Radio.tsx b/src/components/organisms/ControlledField/Radio.tsx
new file mode 100644
index 00000000..3254cfbc
--- /dev/null
+++ b/src/components/organisms/ControlledField/Radio.tsx
@@ -0,0 +1,42 @@
+import { Radio as NBRadio } from 'native-base'
+import { forwardRef } from 'react'
+import { Controller, get } from 'react-hook-form'
+
+import { Field } from '../../molecules'
+import type { ControlledRadioProps, RenderInputProps } from './types'
+
+import { useCallback } from '~hooks'
+
+export const Radio = forwardRef(
+ ({ name, control, errors, isRequired, onChange, ...props }, ref) => {
+ const error = !!get(errors, name)
+
+ const renderRadio = useCallback(
+ ({ field }: RenderInputProps): JSX.Element => (
+
+ {
+ field.onChange(newValue)
+ }}
+ isInvalid={error}
+ isRequired={isRequired}
+ />
+
+ ),
+ [error, isRequired, props, ref]
+ )
+
+ return (
+
+ )
+ }
+)
diff --git a/src/components/organisms/ControlledField/index.tsx b/src/components/organisms/ControlledField/index.tsx
index 3daec8d8..33c5cefc 100644
--- a/src/components/organisms/ControlledField/index.tsx
+++ b/src/components/organisms/ControlledField/index.tsx
@@ -2,10 +2,12 @@ import React, { PropsWithChildren } from 'react'
import { Checkbox } from './Checkbox'
import { Input } from './Input'
+import { Radio } from './Radio'
type ControlledFieldComposition = React.FC & {
Input: typeof Input
Checkbox: typeof Checkbox
+ Radio: typeof Radio
}
const ControlledField: ControlledFieldComposition = ({ children }) => {
@@ -14,6 +16,7 @@ const ControlledField: ControlledFieldComposition = ({ children }) => {
ControlledField.Input = Input
ControlledField.Checkbox = Checkbox
+ControlledField.Radio = Radio
export { ControlledField }
export * from './types'
diff --git a/src/components/organisms/ControlledField/types.ts b/src/components/organisms/ControlledField/types.ts
index b4b59391..b2b4297b 100644
--- a/src/components/organisms/ControlledField/types.ts
+++ b/src/components/organisms/ControlledField/types.ts
@@ -8,7 +8,7 @@ import {
RegisterOptions,
} from 'react-hook-form'
-import { FieldCheckboxProps, FieldInputProps } from '~components/molecules'
+import { FieldCheckboxProps, FieldInputProps, FieldRadioProps } from '~components/molecules'
export type ControlledCheckboxProps = Omit & {
// TODO: Think how to change this to proper type
@@ -20,7 +20,7 @@ export type ControlledCheckboxProps = Omit & {
errors?: FieldErrors
}
-export type ControlledInputProps = FieldInputProps & {
+export type ControlledInputProps = Omit & {
// TODO: Think how to change this to proper type
// Could be helpful when solving
// - https://fettblog.eu/typescript-react-generic-forward-refs/
@@ -34,3 +34,13 @@ export type ControlledInputProps = FieldInputProps & {
export interface RenderInputProps {
field: ControllerRenderProps
}
+
+export type ControlledRadioProps = FieldRadioProps & {
+ // TODO: Think how to change this to proper type
+ // Could be helpful when solving
+ // - https://fettblog.eu/typescript-react-generic-forward-refs/
+ // - https://react-hook-form.com/ts#Control
+ name: Path
+ control: Control
+ errors?: FieldErrors
+}
diff --git a/src/constants/asyncStorageKeys.ts b/src/constants/asyncStorageKeys.ts
index 8ce11eb3..f80705d3 100644
--- a/src/constants/asyncStorageKeys.ts
+++ b/src/constants/asyncStorageKeys.ts
@@ -1,4 +1,6 @@
export const ASYNC_STORAGE_KEYS = {
+ PUSH_TOKEN: '@notification/push-token',
+ NEXT_DEEP_LINK: '@navigation/next_deeplink',
NAVIGATION_STATE: '@navigation/navigation-state',
USER_LANGUAGE: '@language/user-language',
COLOR_SCHEME: '@theme/colorScheme',
diff --git a/src/constants/breakpoints.ts b/src/constants/breakpoints.ts
new file mode 100644
index 00000000..493db444
--- /dev/null
+++ b/src/constants/breakpoints.ts
@@ -0,0 +1 @@
+export const BREAKPOINTS = { tablet: 568, desktop: 1024 }
diff --git a/src/constants/env.ts b/src/constants/env.ts
new file mode 100644
index 00000000..6bc2f2de
--- /dev/null
+++ b/src/constants/env.ts
@@ -0,0 +1,6 @@
+import Constants from 'expo-constants'
+
+export const ENV = {
+ API_URL: 'https://catfact.ninja', //CONFIG: This is example URL, change to proper, TODO: create env for dev/staging/prod and keep it there
+ ENVIRONMENT: Constants?.expoConfig?.extra?.ENVIRONMENT,
+}
diff --git a/src/constants/environments.ts b/src/constants/environments.ts
index 1c0ddcdd..9e44fbfc 100644
--- a/src/constants/environments.ts
+++ b/src/constants/environments.ts
@@ -1,2 +1,5 @@
+import Constants, { AppOwnership } from 'expo-constants'
+
+export const isExpoGo = Constants.appOwnership === AppOwnership.Expo
export const isDevelopment = __DEV__ || process.env.NODE_ENV === 'development'
export const isProduction = !isDevelopment || process.env.NODE_ENV === 'production'
diff --git a/src/constants/images.ts b/src/constants/images.ts
new file mode 100644
index 00000000..e8414bd7
--- /dev/null
+++ b/src/constants/images.ts
@@ -0,0 +1,3 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
+export const darkLogo = require('~assets/logo-dark.png')
+export const lightLogo = require('~assets/logo-light.png')
diff --git a/src/constants/index.ts b/src/constants/index.ts
index 37d20afc..e3e1d206 100644
--- a/src/constants/index.ts
+++ b/src/constants/index.ts
@@ -1,6 +1,11 @@
export * from './asyncStorageKeys'
+export * from './breakpoints'
export * from './colorSchemes'
+export * from './env'
export * from './environments'
+export * from './images'
+export * from './NativeBaseConfig'
+export * from './navigation'
export * from './regex'
export * from './theme'
-export * from './NativeBaseConfig'
+export * from './time'
diff --git a/src/constants/navigation.ts b/src/constants/navigation.ts
new file mode 100644
index 00000000..e8b09708
--- /dev/null
+++ b/src/constants/navigation.ts
@@ -0,0 +1,10 @@
+export const MOBILE_MIN_WIDTH = 320
+export const WEB_NAV_BAR_ICON_SIZE = 24
+
+export const WEB_SCREEN_STYLES = {
+ alignSelf: 'center',
+ minWidth: MOBILE_MIN_WIDTH,
+ width: '100%',
+} as const
+
+export const TAB_DEFAULT_ICON = 'alert-line'
diff --git a/src/constants/theme.ts b/src/constants/theme.ts
index 995bf027..f1194cf7 100644
--- a/src/constants/theme.ts
+++ b/src/constants/theme.ts
@@ -32,6 +32,10 @@ const commonColors = {
notification: '#000',
}
+export const ProjectColors = {
+ //CONFIG: Add your project specific colors here
+}
+
const fontSizes = {
'2xs': 10,
xs: 12,
@@ -75,11 +79,19 @@ export const space = {
'96': 24 * scale,
} as const
+const breakpoints = {
+ mobile: 0,
+ tablet: 568,
+ desktop: 1024,
+}
+
export const theme = extendTheme({
+ breakpoints,
config: {
- useSystemColorMode: true,
+ useSystemColorMode: false,
+ initialColorMode: 'light',
},
- colors: commonColors,
+ colors: { ...commonColors, ...ProjectColors },
space,
shadows: {
inputShadow: {
diff --git a/src/constants/time.ts b/src/constants/time.ts
new file mode 100644
index 00000000..4bf3aaae
--- /dev/null
+++ b/src/constants/time.ts
@@ -0,0 +1 @@
+export const SECOND_IN_MS = 1000 as const
diff --git a/src/contexts/AuthContext.ts b/src/contexts/AuthContext.ts
index 6e851fb8..0aa12d8f 100644
--- a/src/contexts/AuthContext.ts
+++ b/src/contexts/AuthContext.ts
@@ -1,3 +1,5 @@
+import { createRef, MutableRefObject } from 'react'
+
import { SignInFormValues, SignUpFormValues } from '~types/authForms'
import createGenericContext from '~utils/createGenericContext'
@@ -11,3 +13,5 @@ export type AuthContextType = {
export const [useAuthContext, AuthContextProvider] =
createGenericContext('AuthContext')
+
+export const authContextRef: MutableRefObject = createRef()
diff --git a/src/contexts/ColorSchemeContext.ts b/src/contexts/ColorSchemeContext.ts
new file mode 100644
index 00000000..42a83844
--- /dev/null
+++ b/src/contexts/ColorSchemeContext.ts
@@ -0,0 +1,14 @@
+import { colorSchemesList } from '~constants'
+import createGenericContext from '~utils/createGenericContext'
+
+export type SettingColorSchemeName = (typeof colorSchemesList)[number]
+export type ColorSchemeName = Exclude
+
+export type ColorSchemeContextType = {
+ colorSchemeSetting: SettingColorSchemeName
+ colorScheme: ColorSchemeName
+ setColorSchemeSetting: (newColorScheme: SettingColorSchemeName) => void
+}
+
+export const [useColorScheme, ColorSchemeContextProvider] =
+ createGenericContext('ColorSchemeContext')
diff --git a/src/contexts/NotificationContext.ts b/src/contexts/NotificationContext.ts
new file mode 100644
index 00000000..249c521e
--- /dev/null
+++ b/src/contexts/NotificationContext.ts
@@ -0,0 +1,17 @@
+import { PermissionStatus } from 'expo-modules-core'
+import * as Notifications from 'expo-notifications'
+import { Dispatch, SetStateAction } from 'react'
+
+import createGenericContext from '~utils/createGenericContext'
+
+export type NotificationContextType = {
+ permissionStatus?: PermissionStatus
+ setPermissionStatus: Dispatch>
+ notification?: Notifications.Notification
+ setNotification: Dispatch>
+ inAppNotification?: Notifications.Notification
+ setInAppNotification: Dispatch>
+}
+
+export const [useNotificationContext, NotificationContextProvider] =
+ createGenericContext('NotificationContext')
diff --git a/src/contexts/index.ts b/src/contexts/index.ts
index 73854db0..a595c424 100644
--- a/src/contexts/index.ts
+++ b/src/contexts/index.ts
@@ -1 +1,3 @@
export * from './AuthContext'
+export * from './NotificationContext'
+export * from './ColorSchemeContext'
diff --git a/src/enums/index.ts b/src/enums/index.ts
new file mode 100644
index 00000000..92388afe
--- /dev/null
+++ b/src/enums/index.ts
@@ -0,0 +1 @@
+export * from './queryKeys'
diff --git a/src/enums/queryKeys.ts b/src/enums/queryKeys.ts
new file mode 100644
index 00000000..9f6ef770
--- /dev/null
+++ b/src/enums/queryKeys.ts
@@ -0,0 +1,3 @@
+export enum QueryKeys {
+ CatsExample = 'catsExample',
+}
diff --git a/src/hooks/forms/index.ts b/src/hooks/forms/index.ts
index 30f67a19..14f4e5d7 100644
--- a/src/hooks/forms/index.ts
+++ b/src/hooks/forms/index.ts
@@ -1,2 +1,3 @@
export * from './useSignInForm'
export * from './useSignUpForm'
+export * from './useTestForm'
diff --git a/src/hooks/forms/useSignInForm.ts b/src/hooks/forms/useSignInForm.ts
index 7d687ed7..a7065f23 100644
--- a/src/hooks/forms/useSignInForm.ts
+++ b/src/hooks/forms/useSignInForm.ts
@@ -1,11 +1,12 @@
-import { impactAsync, ImpactFeedbackStyle } from 'expo-haptics'
+import { isError } from '@tanstack/react-query'
import { useState } from 'react'
import { useForm } from 'react-hook-form'
import { useTranslation } from 'react-i18next'
-import { isError } from 'react-query'
-import { useAuth } from '~hooks'
+import { useAuth } from '../useAuth'
+
import { SignInFormValues } from '~types/authForms'
+import { hapticImpact } from '~utils'
const defaultValues: SignInFormValues = {
// TODO: Reset this values when building production app
@@ -23,6 +24,7 @@ export const useSignInForm = () => {
const {
control,
formState: { errors },
+ setFocus,
handleSubmit,
} = useForm({
mode: 'onTouched',
@@ -40,7 +42,7 @@ export const useSignInForm = () => {
} else {
setError(t('errors.something_went_wrong'))
}
- impactAsync(ImpactFeedbackStyle.Medium)
+ hapticImpact()
} finally {
setIsSubmitting(false)
}
@@ -50,6 +52,7 @@ export const useSignInForm = () => {
submit: handleSubmit(onSubmit),
isSubmitting,
setIsSubmitting,
+ setFocus,
control,
errors,
error,
diff --git a/src/hooks/forms/useSignUpForm.ts b/src/hooks/forms/useSignUpForm.ts
index 9dbf74bc..5c2f179b 100644
--- a/src/hooks/forms/useSignUpForm.ts
+++ b/src/hooks/forms/useSignUpForm.ts
@@ -1,11 +1,12 @@
-import { impactAsync, ImpactFeedbackStyle } from 'expo-haptics'
+import { isError } from '@tanstack/react-query'
import { useState } from 'react'
import { useForm } from 'react-hook-form'
import { useTranslation } from 'react-i18next'
-import { isError } from 'react-query'
-import { useAuth } from '~hooks'
+import { useAuth } from '../useAuth'
+
import { SignUpFormValues } from '~types/authForms'
+import { hapticImpact } from '~utils'
const defaultValues: SignUpFormValues = {
user: '',
@@ -24,6 +25,7 @@ export const useSignUpForm = () => {
const {
control,
formState: { errors },
+ setFocus,
handleSubmit,
} = useForm({
mode: 'onTouched',
@@ -41,7 +43,7 @@ export const useSignUpForm = () => {
} else {
setError(t('errors.something_went_wrong'))
}
- impactAsync(ImpactFeedbackStyle.Medium)
+ hapticImpact()
} finally {
setIsSubmitting(false)
}
@@ -52,6 +54,7 @@ export const useSignUpForm = () => {
isSubmitting,
setIsSubmitting,
control,
+ setFocus,
errors,
error,
}
diff --git a/src/hooks/forms/useTestForm.ts b/src/hooks/forms/useTestForm.ts
new file mode 100644
index 00000000..a33b8f9b
--- /dev/null
+++ b/src/hooks/forms/useTestForm.ts
@@ -0,0 +1,97 @@
+import { isError } from '@tanstack/react-query'
+import { useState } from 'react'
+import { useForm } from 'react-hook-form'
+import { useTranslation } from 'react-i18next'
+
+import { TestFormValues } from '~types/testForm'
+
+const defaultValues: TestFormValues = {
+ name: '',
+ surname: '',
+ email: '',
+ city: '',
+ phone: '',
+ postalCode: '',
+ sex: '',
+ music: [],
+ comment: '',
+ shoeSize: '',
+ age: '',
+ education: '',
+ interests: [],
+}
+
+export const useTestForm = () => {
+ const [error, setError] = useState('')
+ const [isSubmitting, setIsSubmitting] = useState(false)
+ const { t } = useTranslation()
+
+ const VALIDATION = {
+ name: { required: t('test_form.errors.name') },
+ surname: { required: t('test_form.errors.surname') },
+ email: { required: t('test_form.errors.email') },
+ phone: {
+ required: t('test_form.errors.phone'),
+ pattern: {
+ value: /[0-9]{3}-[0-9]{3}-[0-9]{3}/,
+ message: t('test_form.errors.phone_format'),
+ },
+ },
+ postalCode: {
+ required: t('test_form.errors.postalCode'),
+ pattern: {
+ value: /[0-9]{2}-[0-9]{3}/,
+ message: t('test_form.errors.postalCode_format'),
+ },
+ },
+ city: {
+ required: t('test_form.errors.city'),
+ },
+ shoeSize: { required: t('test_form.errors.shoeSize') },
+ age: { required: t('test_form.errors.age') },
+ education: { required: t('test_form.errors.education') },
+ music: { required: t('test_form.errors.music') },
+ interests: { required: t('test_form.errors.interests') },
+ sex: { required: t('test_form.errors.sex') },
+ }
+
+ const {
+ control,
+ register,
+ formState: { errors },
+ setFocus,
+ handleSubmit,
+ } = useForm({
+ mode: 'onTouched',
+ defaultValues,
+ })
+
+ const onSubmit = async (data: TestFormValues) => {
+ try {
+ setIsSubmitting(true)
+ setError('')
+ console.log(data)
+ } catch (e) {
+ console.log(e)
+ if (isError(e)) {
+ setError(e.message)
+ } else {
+ setError(t('errors.something_went_wrong'))
+ }
+ } finally {
+ setIsSubmitting(false)
+ }
+ }
+
+ return {
+ VALIDATION,
+ submit: handleSubmit(onSubmit),
+ register,
+ isSubmitting,
+ setIsSubmitting,
+ setFocus,
+ control,
+ errors,
+ error,
+ }
+}
diff --git a/src/hooks/index.ts b/src/hooks/index.ts
index cb7405eb..7fbb5783 100644
--- a/src/hooks/index.ts
+++ b/src/hooks/index.ts
@@ -1,5 +1,19 @@
// Reexport all the hooks that you use within the project here
-
+// Hooks from external packages
+export {
+ useBottomSheet,
+ useBottomSheetDynamicSnapPoints,
+ useBottomSheetInternal,
+ useBottomSheetModal,
+ useBottomSheetSpringConfigs,
+ useBottomSheetTimingConfigs,
+} from '@gorhom/bottom-sheet'
+export { useAsyncStorage } from '@react-native-async-storage/async-storage'
+export { useNetInfo } from '@react-native-community/netinfo'
+export { useAssets } from 'expo-asset'
+export { useFonts } from 'expo-font'
+export { useURL } from 'expo-linking'
+export { useAnimationState, useDynamicAnimation } from 'moti'
export {
useAccessibleColors,
useColorMode,
@@ -21,21 +35,16 @@ export {
useState,
} from 'react'
export {
- useBottomSheet,
- useBottomSheetDynamicSnapPoints,
- useBottomSheetInternal,
- useBottomSheetModal,
- useBottomSheetSpringConfigs,
- useBottomSheetTimingConfigs,
-} from '@gorhom/bottom-sheet'
-export { useAsyncStorage } from '@react-native-async-storage/async-storage'
-export { useNetInfo } from '@react-native-community/netinfo'
-export { useAssets } from 'expo-asset'
-export { useFonts } from 'expo-font'
-export { useURL } from 'expo-linking'
-export { useAnimationState, useDynamicAnimation } from 'moti'
+ useController,
+ useFieldArray,
+ useForm,
+ useFormContext,
+ useFormState,
+ useWatch,
+} from 'react-hook-form'
export { useSSR, useTranslation } from 'react-i18next'
export { useWindowDimensions } from 'react-native'
+export { useNotificationController, useNotifications } from 'react-native-notificated'
export {
useSpring,
useTiming,
@@ -43,15 +52,6 @@ export {
useVector,
} from 'react-native-redash'
export { useSafeAreaFrame, useSafeAreaInsets } from 'react-native-safe-area-context'
-export {
- useController,
- useFieldArray,
- useForm,
- useFormContext,
- useFormState,
- useWatch,
-} from 'react-hook-form'
-export * from '@react-native-community/hooks'
export {
useHydrate,
useInfiniteQuery,
@@ -62,13 +62,19 @@ export {
useQuery,
useQueryClient,
useQueryErrorResetBoundary,
-} from 'react-query'
-export * from './useCachedResources'
-export * from './useSecurePasword'
-export * from './navigation'
-export * from './forms'
-export * from './useToggle'
+} from '@tanstack/react-query'
export { useDebounce, useDebouncedCallback, useThrottledCallback } from 'use-debounce'
+
+export * from './forms'
+export * from './navigation'
+
+// Custom hooks implemented in app
+export * from './useAppStateActive'
+export * from './useAuth'
+export * from './useBoolean'
+export * from './useCachedResources'
+export * from './useKeyboardHeight'
+export * from './useSafeAreaInsetsStyle'
+export * from './useSecurePassword'
export * from './useTimestamp'
-export { useNotificationController, useNotifications } from 'react-native-notificated'
-export { useAuthContext as useAuth } from '~contexts'
+export * from './useToggle'
diff --git a/src/hooks/loaders/index.ts b/src/hooks/loaders/index.ts
new file mode 100644
index 00000000..ed3eb317
--- /dev/null
+++ b/src/hooks/loaders/index.ts
@@ -0,0 +1,3 @@
+export * from './useBubblesLoader'
+export * from './useCircleLoader'
+export * from './useBricksLoader'
diff --git a/src/hooks/loaders/useBricksLoader.ts b/src/hooks/loaders/useBricksLoader.ts
new file mode 100644
index 00000000..92920ed1
--- /dev/null
+++ b/src/hooks/loaders/useBricksLoader.ts
@@ -0,0 +1,95 @@
+import { useEffect } from 'react'
+import { ViewStyle } from 'react-native'
+import {
+ Easing,
+ Extrapolate,
+ interpolate,
+ useAnimatedStyle,
+ useSharedValue,
+ withRepeat,
+ withSequence,
+ withTiming,
+} from 'react-native-reanimated'
+
+const DURATION = 500
+
+type UseBricksLoaderType = {
+ animatedStyleBoxOne: ViewStyle
+ animatedStyleBoxTwo: ViewStyle
+ animatedStyleBoxThree: ViewStyle
+}
+
+const easing = Easing.cubic
+
+export const useBricksLoader = ({
+ containerSize,
+ size,
+}: {
+ containerSize: number
+ size: number
+}): UseBricksLoaderType => {
+ const moving = useSharedValue(0)
+ const width = containerSize - size
+
+ useEffect(() => {
+ moving.value = withRepeat(
+ withSequence(
+ withTiming(1, { duration: DURATION, easing }),
+ withTiming(2, { duration: DURATION, easing }),
+ withTiming(3, { duration: DURATION, easing }),
+ withTiming(4, { duration: DURATION, easing }),
+ withTiming(5, { duration: DURATION, easing }),
+ withTiming(6, { duration: DURATION, easing }),
+ withTiming(7, { duration: DURATION, easing }),
+ withTiming(8, { duration: DURATION, easing }),
+ withTiming(9, { duration: DURATION, easing }),
+ withTiming(10, { duration: DURATION, easing }),
+ withTiming(11, { duration: DURATION, easing }),
+ withTiming(12, { duration: DURATION, easing })
+ ),
+ -1
+ )
+ }, [moving])
+
+ const animatedStyleBoxOne = useAnimatedStyle(() => {
+ const left =
+ moving.value > 8
+ ? interpolate(moving.value, [8, 9], [width, 0], Extrapolate.CLAMP)
+ : interpolate(moving.value, [2, 3], [0, width], Extrapolate.CLAMP)
+ const top =
+ moving.value > 11
+ ? interpolate(moving.value, [11, 12], [width, 0], Extrapolate.CLAMP)
+ : interpolate(moving.value, [5, 6], [0, width], Extrapolate.CLAMP)
+ return { left, top }
+ }, [])
+
+ const animatedStyleBoxTwo = useAnimatedStyle(() => {
+ const top =
+ moving.value > 7
+ ? interpolate(moving.value, [7, 8], [width, 0], Extrapolate.CLAMP)
+ : interpolate(moving.value, [1, 2], [0, width], Extrapolate.CLAMP)
+ const left =
+ moving.value > 10
+ ? interpolate(moving.value, [10, 11], [0, width], Extrapolate.CLAMP)
+ : interpolate(moving.value, [4, 5], [width, 0], Extrapolate.CLAMP)
+ return { left, top }
+ }, [])
+
+ const animatedStyleBoxThree = useAnimatedStyle(() => {
+ const top =
+ moving.value > 9
+ ? interpolate(moving.value, [9, 10], [0, width], Extrapolate.CLAMP)
+ : interpolate(moving.value, [3, 4], [width, 0], Extrapolate.CLAMP)
+ const left =
+ moving.value > 6
+ ? interpolate(moving.value, [6, 7], [0, width], Extrapolate.CLAMP)
+ : interpolate(moving.value, [0, 1], [width, 0], Extrapolate.CLAMP)
+ return { left, top }
+ }, [])
+
+ return {
+ animatedStyleBoxOne,
+ animatedStyleBoxTwo,
+ animatedStyleBoxThree,
+ }
+}
diff --git a/src/hooks/loaders/useBubblesLoader.ts b/src/hooks/loaders/useBubblesLoader.ts
new file mode 100644
index 00000000..0204e4f2
--- /dev/null
+++ b/src/hooks/loaders/useBubblesLoader.ts
@@ -0,0 +1,86 @@
+import { useEffect } from 'react'
+import { ViewStyle } from 'react-native'
+import {
+ AnimateStyle,
+ Easing,
+ Extrapolate,
+ interpolate,
+ useAnimatedStyle,
+ useSharedValue,
+ withRepeat,
+ withSequence,
+ withTiming,
+} from 'react-native-reanimated'
+
+const STRETCHING_DURATION = 500
+const ROTATION_DURATION = 1000
+
+type UseBubblesLoaderType = {
+ animatedRotate: {
+ transform: {
+ rotate: string
+ }[]
+ }
+ animatedHeight: AnimateStyle
+ animatedWidth: AnimateStyle
+}
+
+const easing = Easing.linear
+const clamp = Extrapolate.CLAMP
+const stretchingOutputRange = [80, 150]
+const stretchingInputRange = [0, 2]
+
+export const useBubblesLoader = (): UseBubblesLoaderType => {
+ const stretching = useSharedValue(0)
+ const rotation = useSharedValue(0)
+
+ useEffect(() => {
+ stretching.value = withRepeat(
+ withSequence(
+ withTiming(1, { duration: STRETCHING_DURATION, easing }),
+ withTiming(2, { duration: STRETCHING_DURATION, easing })
+ ),
+ -1,
+ true
+ )
+ }, [stretching])
+
+ useEffect(() => {
+ rotation.value = withRepeat(
+ withSequence(
+ withTiming(1, { duration: ROTATION_DURATION, easing }),
+ withTiming(2, { duration: ROTATION_DURATION, easing }),
+ withTiming(3, { duration: ROTATION_DURATION, easing }),
+ withTiming(4, { duration: ROTATION_DURATION, easing })
+ ),
+ -1
+ )
+ }, [rotation])
+
+ const animatedRotate = useAnimatedStyle(() => {
+ const rotate = interpolate(rotation.value, [0, 4], [0, 360], clamp)
+ return {
+ transform: [
+ {
+ rotate: `${rotate}deg`,
+ },
+ ],
+ }
+ }, [])
+
+ const animatedWidth = useAnimatedStyle(() => {
+ const width = interpolate(stretching.value, stretchingInputRange, stretchingOutputRange, clamp)
+ return { width: `${width}%` }
+ }, [])
+
+ const animatedHeight = useAnimatedStyle(() => {
+ const height = interpolate(stretching.value, stretchingInputRange, stretchingOutputRange, clamp)
+ return { height: `${height}%` }
+ }, [])
+
+ return {
+ animatedRotate,
+ animatedHeight,
+ animatedWidth,
+ }
+}
diff --git a/src/hooks/loaders/useCircleLoader.ts b/src/hooks/loaders/useCircleLoader.ts
new file mode 100644
index 00000000..48540d30
--- /dev/null
+++ b/src/hooks/loaders/useCircleLoader.ts
@@ -0,0 +1,52 @@
+import { useEffect } from 'react'
+import {
+ Easing,
+ Extrapolate,
+ SharedValue,
+ interpolate,
+ useAnimatedStyle,
+ useSharedValue,
+ withRepeat,
+ withSequence,
+ withTiming,
+} from 'react-native-reanimated'
+
+type UseCircleLoaderType = {
+ progress: SharedValue
+ animatedRotate: {
+ transform: {
+ rotate: string
+ }[]
+ }
+}
+
+export const useCircleLoader = (): UseCircleLoaderType => {
+ const progress = useSharedValue(0)
+ const easing = Easing.bezier(0.33, 0, 0.68, 1)
+
+ useEffect(() => {
+ progress.value = withRepeat(
+ withSequence(
+ withTiming(1, { duration: 1000, easing }),
+ withTiming(2, { duration: 1000, easing })
+ ),
+ -1
+ )
+ }, [easing, progress])
+
+ const animatedRotate = useAnimatedStyle(() => {
+ const rotateValue = interpolate(progress.value, [0, 2], [0, 720], Extrapolate.CLAMP)
+ return {
+ transform: [
+ {
+ rotate: `${rotateValue}deg`,
+ },
+ ],
+ }
+ }, [])
+
+ return {
+ progress,
+ animatedRotate,
+ }
+}
diff --git a/src/hooks/navigation/index.ts b/src/hooks/navigation/index.ts
index e724389e..52c79acc 100644
--- a/src/hooks/navigation/index.ts
+++ b/src/hooks/navigation/index.ts
@@ -14,6 +14,7 @@ export {
} from '@react-navigation/native'
export { useCardAnimation, useGestureHandlerRef } from '@react-navigation/stack'
export * from './useNavigationStatePersistence'
+export * from './useNavigationTheme'
export * from './usePreventGoBack'
export * from './useScreenTracker'
-export * from './useNavigationTheme'
+export * from './useWeb'
diff --git a/src/hooks/navigation/useNavigationTheme.ts b/src/hooks/navigation/useNavigationTheme.ts
index 4b847585..71867b3f 100644
--- a/src/hooks/navigation/useNavigationTheme.ts
+++ b/src/hooks/navigation/useNavigationTheme.ts
@@ -1,25 +1,22 @@
-import { BottomTabNavigationOptions } from '@react-navigation/bottom-tabs'
-import { Theme } from '@react-navigation/native'
import { useTheme, useColorMode } from 'native-base'
import { useMemo } from 'react'
import { darkNavigationTheme, lightNavigationTheme } from '~constants'
-type ReturnValues = {
- navigationTheme: Theme
- tabBarTheme: BottomTabNavigationOptions
-}
-
-export const useNavigationTheme = (): ReturnValues => {
+export const useNavigationTheme = () => {
const { colorMode } = useColorMode()
const { colors } = useTheme()
- const tabBarTheme: BottomTabNavigationOptions = useMemo(
+ const tabBarTheme = useMemo(
() => ({
tabBarActiveTintColor: colors.primary[400],
tabBarInactiveTintColor: colors.gray[500],
+ tabBarStyle: {
+ backgroundColor: colorMode === 'dark' ? colors.gray[900] : colors.light[100],
+ paddingTop: 4,
+ },
}),
- [colors.primary, colors.gray]
+ [colors.primary, colors.gray, colors.light, colorMode]
)
const navigationTheme = colorMode === 'dark' ? darkNavigationTheme : lightNavigationTheme
diff --git a/src/hooks/navigation/usePreventGoBack.ts b/src/hooks/navigation/usePreventGoBack.ts
index 7fb3c9b3..ab2012e9 100644
--- a/src/hooks/navigation/usePreventGoBack.ts
+++ b/src/hooks/navigation/usePreventGoBack.ts
@@ -1,7 +1,8 @@
import { useNavigation } from '@react-navigation/native'
import { useEffect } from 'react'
import { useTranslation } from 'react-i18next'
-import { Alert } from 'react-native'
+
+import { alert } from '~utils'
export const usePreventGoBack = (shouldPrevent = true): void => {
const { t } = useTranslation()
@@ -16,7 +17,7 @@ export const usePreventGoBack = (shouldPrevent = true): void => {
event?.preventDefault()
- Alert.alert(
+ alert(
t('navigation.prevent_go_back_alert.title'),
t('navigation.prevent_go_back_alert.description'),
[
diff --git a/src/hooks/navigation/useScreenTracker.ts b/src/hooks/navigation/useScreenTracker.ts
index 1316a8a5..d2761201 100644
--- a/src/hooks/navigation/useScreenTracker.ts
+++ b/src/hooks/navigation/useScreenTracker.ts
@@ -6,7 +6,8 @@ import { navigationRef } from '~utils'
type Callback = (currentRouteName: string) => Promise | undefined
const defaultCallback: Callback = async (currentRouteName) => {
- console.log(`Current route: ${currentRouteName}`)
+ // TODO: Add analytics logs here
+ // console.log(`Current route: ${currentRouteName}`)
}
type ScreenTrackerReturn = {
diff --git a/src/hooks/navigation/useWeb.ts b/src/hooks/navigation/useWeb.ts
new file mode 100644
index 00000000..80e25cee
--- /dev/null
+++ b/src/hooks/navigation/useWeb.ts
@@ -0,0 +1,48 @@
+import { useState, useEffect } from 'react'
+import { Dimensions } from 'react-native'
+
+import { theme } from '~constants'
+
+type ReturnType = {
+ webContentWidth: number
+ shouldApplyDesktopStyles: boolean
+ shouldApplyMobileStyles: boolean
+}
+const {
+ breakpoints: { desktop, tablet },
+} = theme
+
+export const useWeb: () => ReturnType = () => {
+ const [width, setWidth] = useState(0)
+
+ useEffect(() => {
+ const setDimensions = (windowWidth: number, screenWidth: number) => {
+ switch (true) {
+ case windowWidth < tablet:
+ setWidth(windowWidth)
+ break
+ case windowWidth >= tablet && windowWidth < desktop:
+ setWidth(tablet)
+ break
+ case windowWidth >= desktop:
+ setWidth(desktop)
+ break
+ default:
+ setWidth(screenWidth)
+ }
+ }
+ setDimensions(Dimensions.get('window').width, Dimensions.get('screen').width)
+ Dimensions.addEventListener(
+ 'change',
+ ({ window: { width: windowWidth }, screen: { width: screenWidth } }) => {
+ setDimensions(windowWidth, screenWidth)
+ }
+ )
+ }, [])
+
+ return {
+ webContentWidth: width,
+ shouldApplyDesktopStyles: width >= desktop,
+ shouldApplyMobileStyles: width < tablet,
+ }
+}
diff --git a/src/hooks/useAppStateActive.ts b/src/hooks/useAppStateActive.ts
new file mode 100644
index 00000000..06f6fed9
--- /dev/null
+++ b/src/hooks/useAppStateActive.ts
@@ -0,0 +1,32 @@
+import { useCallback, useEffect, useRef } from 'react'
+import { AppState, AppStateStatus } from 'react-native'
+
+import { noop } from '~utils'
+
+/**
+ * This hook will run on every app state change from background to foreground
+ */
+export function useAppStateActive(onChange = noop, runOnMount = true) {
+ const appState = useRef(AppState.currentState)
+
+ const _handleChange = useCallback(
+ (nextAppState: AppStateStatus) => {
+ if (appState.current.match(/inactive|background/) && nextAppState === 'active') {
+ onChange()
+ }
+ appState.current = nextAppState
+ },
+ [onChange]
+ )
+
+ useEffect(() => {
+ const appStateListener = AppState.addEventListener('change', _handleChange)
+ if (runOnMount) {
+ onChange()
+ }
+
+ return () => {
+ appStateListener.remove()
+ }
+ }, [_handleChange, onChange, runOnMount])
+}
diff --git a/src/hooks/useAuth.ts b/src/hooks/useAuth.ts
new file mode 100644
index 00000000..cbfe7d29
--- /dev/null
+++ b/src/hooks/useAuth.ts
@@ -0,0 +1,2 @@
+// This was made to prevent require cycle in the app
+export { useAuthContext as useAuth } from '~contexts'
diff --git a/src/hooks/useBoolean.ts b/src/hooks/useBoolean.ts
new file mode 100644
index 00000000..11824990
--- /dev/null
+++ b/src/hooks/useBoolean.ts
@@ -0,0 +1,40 @@
+import { Dispatch, SetStateAction, useCallback, useState, useMemo } from 'react'
+
+type InitialState = boolean | (() => boolean)
+
+export type SetValueType = {
+ readonly on: () => void
+ readonly off: () => void
+ readonly toggle: () => void
+ readonly reset: () => void
+ readonly setValue: Dispatch>
+}
+
+/**
+ * React hook to manage boolean (on - off) states
+ *
+ * @param initialState the initial boolean state value
+ */
+export function useBoolean(initialState: InitialState = false) {
+ const [value, setValue] = useState(initialState)
+
+ const on = useCallback(() => {
+ setValue(true)
+ }, [])
+
+ const off = useCallback(() => {
+ setValue(false)
+ }, [])
+
+ const reset = useCallback(() => {
+ setValue(initialState)
+ }, [initialState])
+
+ const toggle = useCallback(() => {
+ setValue((prev) => !prev)
+ }, [])
+
+ const setter = useMemo(() => ({ on, off, toggle, reset, setValue }), [off, on, reset, toggle])
+
+ return [value, setter] as const
+}
diff --git a/src/hooks/useCachedResources.ts b/src/hooks/useCachedResources.ts
index 883e8463..46c66d1d 100644
--- a/src/hooks/useCachedResources.ts
+++ b/src/hooks/useCachedResources.ts
@@ -2,6 +2,7 @@ import { Ionicons } from '@expo/vector-icons'
import * as Font from 'expo-font'
import { useEffect, useState } from 'react'
+import { checkForUpdates } from '~utils'
export const useCachedResources = (): boolean => {
const [isLoadingComplete, setLoadingComplete] = useState(false)
@@ -14,7 +15,9 @@ export const useCachedResources = (): boolean => {
'lato-regular': require('assets/fonts/Lato-Regular.ttf'),
'lato-bold': require('assets/fonts/Lato-Bold.ttf'),
'lato-extra-bold': require('assets/fonts/Lato-Black.ttf'),
+ IcoMoon: require('~assets/icomoon/icomoon.ttf'),
})
+ await checkForUpdates(true)
} catch (e) {
// We might want to provide this error information to an error reporting service
console.warn(e)
diff --git a/src/hooks/useKeyboardHeight.ts b/src/hooks/useKeyboardHeight.ts
new file mode 100644
index 00000000..ebf79d48
--- /dev/null
+++ b/src/hooks/useKeyboardHeight.ts
@@ -0,0 +1,26 @@
+import { useEffect, useState } from 'react'
+import { Keyboard, KeyboardEventListener } from 'react-native'
+
+export const useKeyboardHeight = () => {
+ const [keyboardHeight, setKeyboardHeight] = useState(0)
+ useEffect(() => {
+ const showListener = Keyboard.addListener('keyboardDidShow', keyboardDidShow)
+ const hideListener = Keyboard.addListener('keyboardDidHide', keyboardDidHide)
+
+ // cleanup function
+ return () => {
+ showListener.remove()
+ hideListener.remove()
+ }
+ }, [])
+
+ const keyboardDidShow: KeyboardEventListener = (frames) => {
+ setKeyboardHeight(frames?.endCoordinates?.height)
+ }
+
+ const keyboardDidHide = () => {
+ setKeyboardHeight(0)
+ }
+
+ return keyboardHeight
+}
diff --git a/src/hooks/useNotificationSetup.ts b/src/hooks/useNotificationSetup.ts
new file mode 100644
index 00000000..586c56ea
--- /dev/null
+++ b/src/hooks/useNotificationSetup.ts
@@ -0,0 +1,80 @@
+import AsyncStorage from '@react-native-async-storage/async-storage'
+import { useLinkTo } from '@react-navigation/native'
+import * as Notifications from 'expo-notifications'
+import { useCallback, useEffect } from 'react'
+
+import { ASYNC_STORAGE_KEYS } from '~constants'
+import { authContextRef, useNotificationContext } from '~contexts'
+import { registerForPushNotificationsAsync } from '~services'
+import { alert } from '~utils'
+import { isAuthorizedLink } from '~utils/isAuthorizedLink'
+
+type Options = {
+ /**
+ * When *true* automatically handles deeplink provided in notification.
+ */
+ enableDeeplink?: boolean
+}
+
+export const useNotificationSetup = (opts?: Options) => {
+ const { inAppNotification, setInAppNotification } = useNotificationContext()
+ const linkTo = useLinkTo()
+
+ useEffect(() => {
+ const initNotifications = async () => {
+ await registerForPushNotificationsAsync()
+ }
+ initNotifications()
+ }, [])
+
+ const handleDeeplink = useCallback(
+ (deeplinkPath?: string) => {
+ if (!deeplinkPath) return
+
+ // Deeplink that is used in `linkTo` method after authorized checks
+ let finalDeeplink = deeplinkPath
+
+ const isAuthorizedPath = isAuthorizedLink(deeplinkPath)
+
+ if (!authContextRef.current?.isSignedIn && isAuthorizedPath) {
+ AsyncStorage.setItem(ASYNC_STORAGE_KEYS.NEXT_DEEP_LINK, deeplinkPath)
+ finalDeeplink = '/sign-in'
+ }
+
+ const addSlash = !finalDeeplink.startsWith('/')
+ finalDeeplink = `${addSlash ? '/' : ''}${finalDeeplink}`
+
+ if (opts?.enableDeeplink) {
+ linkTo(finalDeeplink)
+ }
+ },
+ [linkTo, opts?.enableDeeplink]
+ )
+
+ // CONFIG: Handle in app notification
+ const navigateWithNotification = useCallback(
+ (notification: Notifications.Notification) => {
+ const { title, body } = notification?.request?.content ?? {}
+ alert(title ?? 'Notification', body ?? 'Navigate somewhere', [
+ { text: 'Cancel', onPress: () => setInAppNotification(undefined), style: 'cancel' },
+ {
+ text: 'Ok',
+ onPress: () => {
+ // Elvis chains prevent crashes in undiscslosed edge cases
+ const deeplinkPath = notification?.request?.content?.data?.deeplink as
+ | string
+ | undefined
+ handleDeeplink(deeplinkPath)
+ },
+ },
+ ])
+ },
+ [handleDeeplink, setInAppNotification]
+ )
+
+ useEffect(() => {
+ if (inAppNotification) {
+ navigateWithNotification(inAppNotification)
+ }
+ }, [inAppNotification, navigateWithNotification, setInAppNotification])
+}
diff --git a/src/hooks/useSafeAreaInsetsStyle.ts b/src/hooks/useSafeAreaInsetsStyle.ts
new file mode 100644
index 00000000..1ed3320e
--- /dev/null
+++ b/src/hooks/useSafeAreaInsetsStyle.ts
@@ -0,0 +1,38 @@
+// This hook is copy of hook create by infinite red
+// Source: https://github.com/infinitered/ignite/blob/master/boilerplate/app/utils/useSafeAreaInsetsStyle.ts
+
+import { FlexStyle } from 'react-native'
+import { Edge, useSafeAreaInsets } from 'react-native-safe-area-context'
+
+const propertySuffixMap = {
+ top: 'Top',
+ bottom: 'Bottom',
+ left: 'Left',
+ right: 'Right',
+}
+
+/**
+ * A hook that can be used to create a safe-area-aware style object that can be passed directly to a View.
+ *
+ * - [Documentation and Examples](https://github.com/infinitered/ignite/blob/master/docs/Utils-useSafeAreaInsetsStyle.md)
+ */
+export function useSafeAreaInsetsStyle(
+ safeAreaEdges: Edge[] = [],
+ property: 'padding' | 'margin' = 'padding'
+): Pick<
+ FlexStyle,
+ | 'marginBottom'
+ | 'marginEnd'
+ | 'marginStart'
+ | 'marginTop'
+ | 'paddingBottom'
+ | 'paddingEnd'
+ | 'paddingStart'
+ | 'paddingTop'
+> {
+ const insets = useSafeAreaInsets()
+
+ return safeAreaEdges.reduce((acc, e) => {
+ return { ...acc, [`${property}${propertySuffixMap[e]}`]: insets[e] }
+ }, {})
+}
diff --git a/src/hooks/useSecurePasword.ts b/src/hooks/useSecurePassword.ts
similarity index 67%
rename from src/hooks/useSecurePasword.ts
rename to src/hooks/useSecurePassword.ts
index 3f8159ee..eb6d8f9b 100644
--- a/src/hooks/useSecurePasword.ts
+++ b/src/hooks/useSecurePassword.ts
@@ -1,10 +1,10 @@
-import { IInputProps } from 'native-base'
import { useCallback, useState } from 'react'
-export const useSecurePassword = (type: IInputProps['type']) => {
+import { IconNames } from '~types/icon'
+export const useSecurePassword = (type?: 'text' | 'password') => {
const isPasswordType = type === 'password'
const [securePassword, setSecurePassword] = useState(isPasswordType)
- const iconName: 'eye' | 'eye-off' = securePassword ? 'eye-off' : 'eye'
+ const iconName: IconNames = securePassword ? 'eye-line' : 'eye-off-line'
const toggleSecurePassword = useCallback(() => {
setSecurePassword(!securePassword)
diff --git a/src/hooks/useTimestamp.ts b/src/hooks/useTimestamp.ts
index 425804b7..d8194d10 100644
--- a/src/hooks/useTimestamp.ts
+++ b/src/hooks/useTimestamp.ts
@@ -1,11 +1,16 @@
import { useEffect } from 'react'
+import { alert } from '~utils'
+
export const useTimestamp = (): void => {
useEffect(() => {
fetch('/api/timestamp')
.then((response) => response.json())
.then((data) => {
- alert(`This is just an example response form miragejs \n\n ${JSON.stringify(data)}`)
+ alert(
+ 'Warning',
+ `This is just an example response form miragejs \n\n ${JSON.stringify(data)}`
+ )
})
}, [])
}
diff --git a/src/i18n/i18nForTests.ts b/src/i18n/i18nForTests.ts
new file mode 100644
index 00000000..4150917a
--- /dev/null
+++ b/src/i18n/i18nForTests.ts
@@ -0,0 +1,19 @@
+import i18n from 'i18next'
+import { initReactI18next } from 'react-i18next'
+
+import { resources } from '.'
+
+i18n.use(initReactI18next).init({
+ lng: 'en',
+ fallbackLng: 'en',
+
+ debug: false,
+
+ interpolation: {
+ escapeValue: false, // not needed for react!!
+ },
+
+ resources,
+})
+
+export default i18n
diff --git a/src/i18n/index.ts b/src/i18n/index.ts
index 623c65bd..86dc7ccb 100644
--- a/src/i18n/index.ts
+++ b/src/i18n/index.ts
@@ -6,9 +6,10 @@ import languageDetector from './languageDetector'
// Add more resources here
const RESOURCES = {
en: require('./translations/en.json'),
+ pl: require('./translations/pl.json'),
}
-const resources = Object.fromEntries(
+export const resources = Object.fromEntries(
Object.entries(RESOURCES).map(([lang, translation]) => {
return [lang, { translation }]
})
diff --git a/src/i18n/languageDetector.ts b/src/i18n/languageDetector.ts
index e79ea1c9..af278e77 100644
--- a/src/i18n/languageDetector.ts
+++ b/src/i18n/languageDetector.ts
@@ -3,29 +3,22 @@ import * as Localization from 'expo-localization'
import { LanguageDetectorAsyncModule } from 'i18next'
import { ASYNC_STORAGE_KEYS } from '~constants'
-
const { USER_LANGUAGE } = ASYNC_STORAGE_KEYS
-
const languageDetector: LanguageDetectorAsyncModule = {
type: 'languageDetector',
async: true, // If this is set to true, your detect function receives a callback function that you should call with your language, useful to retrieve your language stored in AsyncStorage for example
init: () => undefined,
- detect: async (callback: (language: string) => void) => {
+ detect: async (callback) => {
+ let language
try {
- await AsyncStorage.getItem(USER_LANGUAGE).then(async (language) => {
- if (language) {
- return callback(language)
- }
-
- const { locale } = await Localization.getLocalizationAsync()
-
- return callback(locale)
- })
- } catch {
- const { locale } = await Localization.getLocalizationAsync()
-
- return callback(locale)
+ language = await AsyncStorage.getItem(USER_LANGUAGE)
+ } finally {
+ if (!language) {
+ language = Localization?.getLocales?.()?.[0]?.languageCode
+ }
}
+ callback(language)
+ return language
},
cacheUserLanguage: async (language) => {
try {
@@ -36,5 +29,4 @@ const languageDetector: LanguageDetectorAsyncModule = {
}
},
}
-
export default languageDetector
diff --git a/src/i18n/translations/en.json b/src/i18n/translations/en.json
index 2c001fbe..170f2e91 100644
--- a/src/i18n/translations/en.json
+++ b/src/i18n/translations/en.json
@@ -15,8 +15,8 @@
"discard": "Discard"
},
"screen_titles": {
- "home_stack": "HomeStack",
- "examples_stack": "ExamplesStack",
+ "home_stack": "Home",
+ "examples_stack": "Examples",
"examples": "Examples",
"components": "Components",
"colors": "Colors",
@@ -67,6 +67,9 @@
"screen_params": "Screen params: {{params}}",
"awesome": "Awesome 🎉"
},
+ "examples_component": {
+ "example": "Example"
+ },
"examples_screen": {
"header": "This is Example screen",
"go_to_application_info": "Go to ApplicationInfo",
@@ -74,7 +77,9 @@
"go_to_components": "Go to Components",
"go_to_typography": "Go to Typography",
"go_to_home_stack_details": "Go to HomeStackDetails",
- "go_to_settings": "Go to Settings"
+ "go_to_settings": "Go to Settings",
+ "go_to_screen_with_BEdata": "Go to screen with data from BE",
+ "go_to_screen_test_form": "Go to test form"
},
"components_screen": {
"test_notification": "Test notification",
@@ -98,16 +103,70 @@
"ghost": "Button ghost",
"disabled": "Button disabled"
},
+ "loader_variants": {
+ "header": "Loader variants",
+ "circle": "Circle loader",
+ "bubbles": "Bubbles loader",
+ "bricks": "Bricks loader",
+ "disk": "Disk loader",
+ "default": "Default loader"
+ },
"notification": {
"title": "In-app notification example",
"description": "by react-native-notificated 🎉"
}
},
"settings_screen": {
+ "copy_push_token": "Copy push token",
"current_theme": "Current theme: {{theme}}",
"sign_out": "Sign out!",
"selected": " - selected"
},
+ "test_form": {
+ "interests": "Interests",
+ "cooking": "Cooking",
+ "sport": "Sport",
+ "games": "Games",
+ "dancing": "Dancing",
+ "age": "Age",
+ "education": "Education",
+ "primary": "Primary",
+ "middle": "Middle",
+ "secondary": "Secondary",
+ "postsecondary": "Postsecondary",
+ "contact_data": "Contact data",
+ "name_placeholder": "Name",
+ "surname_placeholder": "Surname",
+ "email_placeholder": "E-mail",
+ "phone_placeholder": "Phone number",
+ "postalCode_placeholder": "Postal code",
+ "city_placeholder": "City",
+ "sex": "Sex",
+ "male": "Male",
+ "female": "Female",
+ "shoe_size": "Shoe size",
+ "which_music": "what kind of music do you listen ?",
+ "classic_music": "Classic music",
+ "additiona_comment": "Additional comment",
+ "comment": "Comment",
+ "submit": "Submit",
+ "errors": {
+ "name": "Name is required",
+ "surname": "Surname is required",
+ "email": "Email is required",
+ "city": "City is required",
+ "postalCode": "Postal code is required",
+ "postalCode_format": "Postal code must be in form 00-000",
+ "phone": "Phone is required",
+ "phone_format": "Phone number must be in form 000-000-000",
+ "age": "Age is required",
+ "sex": "Sex is is required",
+ "education": "Education is required",
+ "shoeSize": "Shoe size is required",
+ "music": "Atleast 1 music is needed",
+ "interests": "Atleast 1 interest is needed"
+ }
+ },
"common": {
"add": "Add",
"back": "Back",
diff --git a/src/i18n/translations/pl.json b/src/i18n/translations/pl.json
new file mode 100644
index 00000000..bcbe34e8
--- /dev/null
+++ b/src/i18n/translations/pl.json
@@ -0,0 +1,194 @@
+{
+ "errors": {
+ "screen_not_found": "NotFound screen",
+ "something_went_wrong": "Coś poszło nie tak"
+ },
+ "form": {
+ "invalid_email_format": "Zły adres e-mail",
+ "required": "Pole wymagane"
+ },
+ "navigation": {
+ "prevent_go_back_alert": {
+ "title": "Anulować zmiany?",
+ "description": "Masz niezapisane zmiany. Jesteś pewny, że chcesz je porzucić i wyjść?",
+ "dont_leave": "Nie wychodź",
+ "discard": "Porzuć"
+ },
+ "screen_titles": {
+ "home_stack": "Home",
+ "examples_stack": "Examples",
+ "examples": "Examples",
+ "components": "Components",
+ "colors": "Colors",
+ "typography": "Typography",
+ "home": "Home",
+ "details": "Details",
+ "sign_in": "Sign in",
+ "sign_up": "Sign up",
+ "main_tab": "MainTab",
+ "settings": "Settings",
+ "application_info": "ApplicationInfo",
+ "not_found": "NotFound"
+ }
+ },
+ "application_info_screen": {
+ "navigation_info": "Kiedy będziesz próbował cofnąć to zostaniesz podwójnie zapytany, czy na pewno tego chcesz \n"
+ },
+ "sign_in_screen": {
+ "sign_in": "Zaloguj",
+ "sign_up": "Zarejestruj",
+ "dont_have_an_account": "Nie masz konta?",
+ "forgot_password": "Zapomniałeś hasła?",
+ "or_pass": "lub wprowadź:",
+ "email_helper_text": "Email",
+ "password_label": "Hasło",
+ "password_helper_text": "Hasła muszą być takie same",
+ "password_placeholder": "hasło",
+ "remember_me": "Zapamiętaj mnie"
+ },
+ "sign_up_screen": {
+ "agree_terms_label": "Zgadzam się z warunkami użytkowania",
+ "newsletter_label": "Subskrybuj nasz newsletter",
+ "sign_up": "Zarejestruj"
+ },
+ "home_screen": {
+ "details": "Detale"
+ },
+ "colors_screen": {
+ "colors_label": "Kolory"
+ },
+ "typography_screen": {
+ "text_font_size": "Text.fontSize: ",
+ "heading_size": "Heading.size: "
+ },
+ "details_screen": {
+ "title": "To jest przykładowy widok",
+ "open_bottom_sheet": "Otwórz BottomSheetModal",
+ "screen_params": "Parametry widoku: {{params}}",
+ "awesome": "Wspaniale 🎉"
+ },
+ "examples_component": {
+ "example": "Przyklad"
+ },
+ "examples_screen": {
+ "header": "To jest przykładowy widok",
+ "go_to_application_info": "Idź do ApplicationInfo",
+ "go_to_colors": "Idź do Kolorów",
+ "go_to_components": "Idź do Komponentów",
+ "go_to_typography": "Idź do Typografii",
+ "go_to_home_stack_details": "Idź do HomeStackDetails",
+ "go_to_settings": "Idź do Ustawień",
+ "go_to_screen_with_BEdata": "Idź do widoku z danymi z backendu",
+ "go_to_screen_test_form": "Idź do formularza testowego"
+ },
+ "components_screen": {
+ "test_notification": "Test notification",
+ "typography": {
+ "label": "Typography",
+ "xs": "xs",
+ "sm": "sm",
+ "md": "md",
+ "lg": "lg",
+ "xl": "xl",
+ "2xl": "2xl",
+ "3xl": "3xl",
+ "4xl": "4xl"
+ },
+ "button_variants": {
+ "header": "Button variants",
+ "secondary": "Button secondary",
+ "outline": "Button outline",
+ "solid": "Button solid",
+ "subtle": "Button subtle",
+ "ghost": "Button ghost",
+ "disabled": "Button disabled"
+ },
+ "loader_variants": {
+ "header": "Loader variants",
+ "circle": "Circle loader",
+ "bubbles": "Bubbles loader",
+ "bricks": "Bricks loader",
+ "disk": "Disk loader",
+ "default": "Default loader"
+ },
+ "notification": {
+ "title": "In-app notification example",
+ "description": "by react-native-notificated 🎉"
+ }
+ },
+ "settings_screen": {
+ "current_theme": "Current theme: {{theme}}",
+ "sign_out": "Wyloguj!",
+ "selected": " - wybrano"
+ },
+ "test_form": {
+ "interests": "Zainteresowania",
+ "cooking": "Gotowanie",
+ "sport": "Sport",
+ "games": "Gry",
+ "dancing": "Taniec",
+ "age": "Wiek",
+ "education": "Wykształcenie",
+ "primary": "Podstawowe",
+ "middle": "Gimnazjalne",
+ "secondary": "Zawodowe",
+ "postsecondary": "Wyzsze",
+ "contact_data": "Dane kontaktowe",
+ "name_placeholder": "Imie",
+ "surname_placeholder": "Nazwisko",
+ "email_placeholder": "E-mail",
+ "phone_placeholder": "Telefon",
+ "postalCode_placeholder": "Kod pocztowy",
+ "city_placeholder": "Miasto",
+ "sex": "Płeć",
+ "male": "Mezczyzna",
+ "female": "Kobieta",
+ "shoe_size": "Rozmiar buta",
+ "which_music": "Jakiej muzyki sluchasz ?",
+ "classic_music": "Muzyka klasyczna",
+ "additiona_comment": "Dodatkowy komentarz",
+ "comment": "Komentarz",
+ "submit": "Zatwierdź",
+ "errors": {
+ "name": "Imie jest wymagane",
+ "surname": "Nazwisko jest wymagane",
+ "email": "Email jest wymagany",
+ "city": "Miasto jest wymagane",
+ "postalCode": "Kod pocztowy jest wymagany",
+ "postalCode_format": "Kod pocztowy musi byc w formacie 00-000",
+ "phone": "Number telefonu jest wymagany",
+ "phone_format": "Numer telefonu musi byc w formacie 000-000-000",
+ "age": "Wiek jest wymagany",
+ "sex": "Płeć jest wymagana",
+ "education": "Wykształcenie jest wymagane",
+ "shoeSize": "Rozmiar buta jest wymagany",
+ "music": "Zaznacz przynajmniej 1 rodzaj muzyki",
+ "interests": "Zaznacz przynajmniej 1 zainteresowanie"
+ }
+ },
+ "common": {
+ "add": "Dodaj",
+ "back": "Cofnij",
+ "cancel": "Anuluj",
+ "email_label": "E-mail",
+ "email_placeholder": "john@doe.com",
+ "empty_list": "Lista jest pusta",
+ "go_back": "Cofnij",
+ "log_in": "Login",
+ "phone_label": "Telefon",
+ "remove": "Usuń",
+ "save": "Zapisz",
+ "search": "Szukaj",
+ "send_again": "Wyślij ponownie",
+ "show_on_map": "Pokaż na mapie",
+ "sign_in": "Zaloguj",
+ "sign_up": "Zarejestruj",
+ "try_again_later": "Proszę spróbuj ponownie później",
+ "try_again": "Spróbuj ponownie",
+ "user_label": "Użytkownik",
+ "user_placeholder": "Użytkownik"
+ },
+ "hello": "Witaj",
+ "thanks": "Dzięki za używanie najlepszej templatki dla aplikacji expo",
+ "app_information": "Potrząśnij swoim urządzeniem, by otworzyć menu dewelopera"
+}
diff --git a/src/index.tsx b/src/index.tsx
deleted file mode 100644
index df7d19ef..00000000
--- a/src/index.tsx
+++ /dev/null
@@ -1,60 +0,0 @@
-// duplicated import of gesture handler is required for bottom sheet modal to work on android
-/* eslint-disable import/no-duplicates */
-// FIXME: see how why did you render works
-// import './wdyr'
-import 'react-native-gesture-handler'
-import 'react-native-reanimated'
-import '~i18n'
-
-import { BottomSheetModalProvider } from '@gorhom/bottom-sheet'
-import { registerRootComponent } from 'expo'
-import { StyleSheet } from 'react-native'
-import { GestureHandlerRootView } from 'react-native-gesture-handler'
-import { QueryClientProvider, QueryClient } from 'react-query'
-
-import { AppLoading } from '~components'
-import { theme, nativeBaseConfig } from '~constants'
-import { Navigation } from '~navigation'
-import { AuthProvider, NotificationsProvider, NativeBaseProvider } from '~providers'
-import { startMockedServer, colorModeManager } from '~services'
-
-// FIXME: there is some issue with miragejs that causes console.log to not work
-const DISABLE_CONSOLE_ENABLE_MOCKED_SERVER = false
-
-if (DISABLE_CONSOLE_ENABLE_MOCKED_SERVER) {
- startMockedServer()
-}
-
-const queryClient = new QueryClient({})
-
-const App = (): JSX.Element => {
- return (
-
- {/* NativeBaseProvider includes SafeAreaProvider so that we don't have to include it in a root render tree */}
- {/* @ts-expect-error: error comes from a react-native-notificated library which doesn't have declared children in types required in react 18 */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-
-const styles = StyleSheet.create({
- gestureHandlerRootView: {
- flex: 1,
- },
-})
-
-registerRootComponent(App)
-
-export default App
diff --git a/src/navigation/BottomTabNavigator.tsx b/src/navigation/BottomTabNavigator.tsx
index 2d92ae59..18e35af5 100644
--- a/src/navigation/BottomTabNavigator.tsx
+++ b/src/navigation/BottomTabNavigator.tsx
@@ -1,35 +1,51 @@
-import { Feather } from '@expo/vector-icons'
import { createBottomTabNavigator, BottomTabNavigationOptions } from '@react-navigation/bottom-tabs'
-import { FC } from 'react'
+import { createStackNavigator } from '@react-navigation/stack'
+import { memo } from 'react'
-import { ExamplesStack } from './ExamplesStack'
-import { HomeStack } from './HomeStack'
+import { bottomTabsScreensData } from './config/tabs'
-import { useCallback, useNavigationTheme, useTranslation } from '~hooks'
+import { Text, Icon } from '~components/atoms'
+import { TAB_DEFAULT_ICON } from '~constants'
+import { useCallback, useNavigationTheme } from '~hooks'
const { Navigator, Screen } = createBottomTabNavigator()
type ScreenOptions = (params: BottomTabScreenProps) => BottomTabNavigationOptions
-export const BottomTabNavigator: FC = () => {
- const { t } = useTranslation()
+const navigatorScreens = bottomTabsScreensData.map((props) => {
+ const Component = memo((): JSX.Element => {
+ const { Navigator: StackNavigator, Screen: StackScreen } = createStackNavigator()
+ const screens = props.screens.map((props) => )
+ return {screens}
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ })
+
+ return
+})
+
+export const BottomTabNavigator = () => {
const { tabBarTheme } = useNavigationTheme()
const screenOptions = useCallback(
({ route }) => ({
- tabBarIcon: ({ color, size }) => {
- let iconName: keyof typeof Feather.glyphMap
-
- if (route.name === 'HomeStack') {
- iconName = 'home'
- } else if (route.name === 'ExamplesStack') {
- iconName = 'list'
- } else {
- iconName = 'alert-triangle'
- }
-
- // You can return any component that you like here!
- return
+ tabBarIcon: ({ color, size, focused }) => {
+ const { active, inactive } =
+ bottomTabsScreensData.find((screen) => screen.name === route.name)?.icons || {}
+ const iconToRender = (focused ? active : inactive) || TAB_DEFAULT_ICON
+
+ // CONFIG: You can return any component that you like here!
+ return
+ },
+ tabBarLabel: ({ color, focused }) => {
+ const title =
+ bottomTabsScreensData.find((screen) => screen.name === route.name)?.options?.title || ''
+
+ // CONFIG: You can return any component that you like here!
+ return (
+
+ {title}
+
+ )
},
headerShown: false,
...tabBarTheme,
@@ -37,18 +53,5 @@ export const BottomTabNavigator: FC = () => {
[tabBarTheme]
)
- return (
-
-
-
-
- )
+ return {navigatorScreens}
}
diff --git a/src/navigation/ExamplesStack.tsx b/src/navigation/ExamplesStack.tsx
deleted file mode 100644
index 273df6d8..00000000
--- a/src/navigation/ExamplesStack.tsx
+++ /dev/null
@@ -1,34 +0,0 @@
-import { createStackNavigator } from '@react-navigation/stack'
-
-import { useTranslation } from '~hooks'
-import { ColorsScreen, ComponentsScreen, ExamplesScreen, TypographyScreen } from '~screens'
-
-const { Navigator, Screen } = createStackNavigator()
-
-export const ExamplesStack = (): JSX.Element => {
- const { t } = useTranslation()
- return (
-
-
-
-
-
-
- )
-}
diff --git a/src/navigation/HomeStack.tsx b/src/navigation/HomeStack.tsx
deleted file mode 100644
index ccbf06e2..00000000
--- a/src/navigation/HomeStack.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import { createStackNavigator } from '@react-navigation/stack'
-
-import { useTranslation } from '~hooks'
-import { DetailsScreen, HomeScreen } from '~screens'
-
-const { Navigator, Screen } = createStackNavigator()
-
-export const HomeStack = (): JSX.Element => {
- const { t } = useTranslation()
- return (
-
-
-
-
- )
-}
diff --git a/src/navigation/RootNavigator.tsx b/src/navigation/RootNavigator.tsx
index 9110fc07..d4af3065 100644
--- a/src/navigation/RootNavigator.tsx
+++ b/src/navigation/RootNavigator.tsx
@@ -1,68 +1,81 @@
import { createStackNavigator } from '@react-navigation/stack'
import { FC } from 'react'
+import { Platform, useWindowDimensions } from 'react-native'
-import { BottomTabNavigator } from './BottomTabNavigator'
+import { rootStackScreensData } from './config/screens'
+import { WebNavBar } from './webNavigator/WebNavBar'
-import { useAuth, useTranslation } from '~hooks'
-import {
- ApplicationInfoScreen,
- NotFoundScreen,
- SettingsScreen,
- SignInScreen,
- SignUpScreen,
-} from '~screens'
+import { WEB_SCREEN_STYLES } from '~constants'
+import { useAuth, useNavigationTheme, useWeb } from '~hooks'
+import { useNotificationSetup } from '~hooks/useNotificationSetup'
const { Navigator, Screen, Group } = createStackNavigator()
-export const RootNavigator: FC = () => {
- const { t } = useTranslation()
+const authorizedScreens = rootStackScreensData.authorized.map((props) => (
+
+))
+
+const unauthorizedScreens = rootStackScreensData.unauthorized.map((props) => (
+
+))
+
+const modalsScreens = rootStackScreensData.modals.map((props) => (
+
+))
+
+const RootNavigatorMobile: FC = () => {
const { isSignedIn } = useAuth()
+ // CONFIG: Handle in app notification
+ useNotificationSetup({
+ enableDeeplink: true,
+ })
+
return (
{!isSignedIn ? (
-
-
-
-
+ {unauthorizedScreens}
) : (
-
-
-
-
+ {authorizedScreens}
)}
-
-
+ {modalsScreens}
)
}
+
+const RootNavigatorWeb: FC = () => {
+ const { shouldApplyMobileStyles, webContentWidth } = useWeb()
+ const { navigationTheme } = useNavigationTheme()
+ const { width: windowWidth } = useWindowDimensions()
+ const { isSignedIn } = useAuth()
+
+ return (
+ <>
+ {!shouldApplyMobileStyles && isSignedIn && }
+
+ {!isSignedIn ? (
+ {unauthorizedScreens}
+ ) : (
+ {authorizedScreens}
+ )}
+
+ {modalsScreens}
+
+
+ {shouldApplyMobileStyles && isSignedIn && }
+ >
+ )
+}
+
+export const RootNavigator = Platform.OS === 'web' ? RootNavigatorWeb : RootNavigatorMobile
diff --git a/src/navigation/config/enums.ts b/src/navigation/config/enums.ts
new file mode 100644
index 00000000..ad3e45f5
--- /dev/null
+++ b/src/navigation/config/enums.ts
@@ -0,0 +1,36 @@
+type Keys = keyof T
+export const keys = (object: T) => Object.keys(object) as (keyof T)[]
+
+// Root_SCREENS
+export const RootStackScreens = {
+ SignIn: 'SignIn',
+ SignUp: 'SignUp',
+ MainTab: 'MainTab',
+ Settings: 'Settings',
+ ApplicationInfo: 'ApplicationInfo',
+ NotFound: 'NotFound',
+} as const
+
+// BottomTabs_SCREENS
+export const BottomTabsScreens = {
+ HomeStack: 'HomeStack',
+ ExamplesStack: 'ExamplesStack',
+} as const
+
+// ExamplesStack_SCREENS
+export const ExamplesStackScreens = {
+ Examples: 'Examples',
+ Typography: 'Typography',
+ Colors: 'Colors',
+ Components: 'Components',
+ DataFromBeScreen_EXAMPLE: 'DataFromBeScreen_EXAMPLE',
+ TestForm: 'TestForm',
+} as const
+
+// HomeStack_SCREENS
+export const HomeStackScreens = {
+ Home: 'Home',
+ Details: 'Details',
+} as const
+
+export type BottomTabsScreensKeys = Keys
diff --git a/src/navigation/config/navigation.d.ts b/src/navigation/config/navigation.d.ts
new file mode 100644
index 00000000..59b4893f
--- /dev/null
+++ b/src/navigation/config/navigation.d.ts
@@ -0,0 +1,82 @@
+import { NavigatorScreenParams } from '@react-navigation/native'
+import { StackScreenProps } from '@react-navigation/stack'
+import { BottomTabScreenProps as BaseBottomTabScreenProps } from '@react-navigation/bottom-tabs'
+
+declare global {
+ // PARAMS
+ type HomeStackParamList = {
+ Home: undefined
+ Details: { id: string }
+ }
+
+ type ExamplesStackParamList = {
+ TestForm: undefined
+ Examples: undefined
+ Components: undefined
+ Colors: undefined
+ Typography: undefined
+ DataFromBeScreen_EXAMPLE: undefined
+ }
+
+ type MainTabParamList = {
+ HomeStack: NavigatorScreenParams
+ ExamplesStack: NavigatorScreenParams
+ // MainTabParamList END
+ }
+
+ type WebTabParamList = ExamplesStackParamList & HomeStackParamList
+ // WebTabParamListEnd
+
+ type RootStackParamList = {
+ // Root_unauthorized
+ SignUp: undefined
+ SignIn: undefined
+
+ // Root_authorized
+ MainTab: NavigatorScreenParams
+ Settings: undefined
+
+ // Root_modals
+ ApplicationInfo: undefined
+ NotFound: undefined
+ }
+
+ namespace ReactNavigation {
+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
+ interface RootParamList extends RootStackParamList {}
+ }
+
+ // SCREENS - specific screens props
+ // You can get navigation or route prop for every screen f. eg.
+ // - HomeScreenNavigationProps['route']
+ // - HomeScreenNavigationProps['navigation']
+
+ type BottomTabScreenProps = BaseBottomTabScreenProps<
+ MainTabParamList,
+ 'ExamplesStack' | 'HomeStack'
+ // BottomTabScreenProps END
+ >
+
+ // root_stack
+ type RootStackScreenProps = ScreenComposite
+
+ // RootStack_SCREENS
+
+ // HomeStack_SCREENS
+ type HomeScreenProps = ScreenComposite<'Home'>
+ type DetailsScreenProps = ScreenComposite<'Details'>
+
+ // ExamplesStack_SCREENS
+ type TestFormScreenProps = ScreenComposite<'TestForm'>
+ type ExamplesScreenProps = ScreenComposite<'Examples'>
+ type ComponentsScreenProps = ScreenComposite<'Components'>
+}
+
+// type ScreenHehe = ScreenComponent
+
+// Helper types
+type ScreenComposite<
+ S extends keyof (RootStackParamList &
+ HomeStackParamList &
+ ExamplesStackParamList) = keyof RootStackParamList
+> = StackScreenProps
diff --git a/src/navigation/config/screens.ts b/src/navigation/config/screens.ts
new file mode 100644
index 00000000..e23be928
--- /dev/null
+++ b/src/navigation/config/screens.ts
@@ -0,0 +1,83 @@
+import { StackNavigationOptions } from '@react-navigation/stack'
+import { t } from 'i18next'
+import { Platform } from 'react-native'
+
+import { RootStackScreens } from './enums'
+import { bottomTabsScreensData } from './tabs'
+
+import { BottomTabNavigator } from '~navigation/BottomTabNavigator'
+import { WebNavigator } from '~navigation/webNavigator/WebNavigator'
+import {
+ ApplicationInfoScreen,
+ NotFoundScreen,
+ SettingsScreen,
+ SignInScreen,
+ SignUpScreen,
+} from '~screens'
+
+const isWeb = Platform.OS === 'web'
+
+type RootScreenType = {
+ name: keyof RootStackParamList
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ component: (props: { navigation: any; route: any }) => JSX.Element
+ options?: StackNavigationOptions
+ deeplink: string
+}
+
+type RootScreensType = {
+ authorized: RootScreenType[]
+ unauthorized: RootScreenType[]
+ modals: RootScreenType[]
+}
+
+// RootStack_SCREENS_START
+export const rootStackScreensData: RootScreensType = {
+ authorized: [
+ {
+ name: RootStackScreens.MainTab,
+ component: isWeb ? WebNavigator : BottomTabNavigator,
+ options: { title: t('navigation.screen_titles.home'), headerShown: false },
+ deeplink: '/',
+ },
+ {
+ name: RootStackScreens.Settings,
+ component: SettingsScreen,
+ options: { title: t('navigation.screen_titles.home') },
+ deeplink: '/settings',
+ },
+ // authorized_SCREENS_END
+ ],
+ unauthorized: [
+ {
+ name: RootStackScreens.SignIn,
+ component: SignInScreen,
+ options: { title: t('navigation.screen_titles.sign_in') },
+ deeplink: '/sign-in',
+ },
+ {
+ name: RootStackScreens.SignUp,
+ component: SignUpScreen,
+ options: { title: t('navigation.screen_titles.sign_up') },
+ deeplink: '/sign-up',
+ },
+ // unauthorized_SCREENS_END
+ ],
+ modals: [
+ {
+ name: RootStackScreens.ApplicationInfo,
+ component: ApplicationInfoScreen,
+ options: { title: t('navigation.screen_titles.application_info') },
+ deeplink: '/app-info',
+ },
+ {
+ name: RootStackScreens.NotFound,
+ component: NotFoundScreen,
+ options: { title: t('navigation.screen_titles.not_found') },
+ deeplink: '*',
+ },
+ // modals_SCREENS_END
+ ],
+} // RootStack_SCREENS_END
+
+export const webScreensData = bottomTabsScreensData.map((tab) => tab?.screens ?? []).flat()
diff --git a/src/navigation/config/tabs.ts b/src/navigation/config/tabs.ts
new file mode 100644
index 00000000..b3cbb316
--- /dev/null
+++ b/src/navigation/config/tabs.ts
@@ -0,0 +1,117 @@
+import { StackNavigationOptions } from '@react-navigation/stack'
+import { t } from 'i18next'
+
+import {
+ BottomTabsScreens,
+ ExamplesStackScreens,
+ HomeStackScreens,
+ // StackEnums
+} from './enums'
+
+import {
+ ColorsScreen,
+ ComponentsScreen,
+ DataFromBeScreen_EXAMPLE,
+ DetailsScreen,
+ ExamplesScreen,
+ HomeScreen,
+ TypographyScreen,
+ TestFormScreen,
+} from '~screens'
+import { IconNames } from '~types/icon'
+
+type ScreenType = {
+ name: T
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ component: (props: { navigation: any; route: any }) => JSX.Element
+ options?: StackNavigationOptions
+ deeplink: string
+}
+
+// ExamplesStack_SCREENS_START
+const examplesStackScreensData: ScreenType[] = [
+ {
+ name: ExamplesStackScreens.Examples,
+ component: ExamplesScreen,
+ options: { title: t('navigation.screen_titles.examples') },
+ deeplink: '/examples',
+ },
+ {
+ name: ExamplesStackScreens.Typography,
+ component: TypographyScreen,
+ options: { title: t('navigation.screen_titles.typography') },
+ deeplink: '/typography',
+ },
+ {
+ name: ExamplesStackScreens.Colors,
+ component: ColorsScreen,
+ options: { title: t('navigation.screen_titles.colors') },
+ deeplink: '/colors',
+ },
+ {
+ name: ExamplesStackScreens.Components,
+ component: ComponentsScreen,
+ options: { title: t('navigation.screen_titles.components') },
+ deeplink: '/components',
+ },
+ {
+ name: ExamplesStackScreens.DataFromBeScreen_EXAMPLE,
+ component: DataFromBeScreen_EXAMPLE,
+ options: { title: t('navigation.screen_titles.data_from_be_screen_example') },
+ deeplink: '/data-example',
+ },
+ {
+ name: ExamplesStackScreens.TestForm,
+ component: TestFormScreen,
+ // TODO: Add translation here
+ options: { title: 'TestForm' },
+ deeplink: '/testform',
+ },
+ // ExamplesStack_SCREENS_END
+]
+
+// HomeStack_SCREENS_START
+const homeStackScreensData: ScreenType[] = [
+ {
+ name: HomeStackScreens.Home,
+ component: HomeScreen,
+ options: { title: t('navigation.screen_titles.home') },
+ deeplink: '/',
+ },
+ {
+ name: HomeStackScreens.Details,
+ component: DetailsScreen,
+ options: { title: t('navigation.screen_titles.details') },
+ deeplink: '/details',
+ },
+ // HomeStack_SCREENS_END
+]
+
+type BottomTabIcons = {
+ active: IconNames
+ inactive: IconNames
+}
+// BottomTab_SCREENS_START
+export const bottomTabsScreensData = [
+ {
+ icons: {
+ active: 'home-5-fill',
+ inactive: 'home-line',
+ } as BottomTabIcons,
+ name: BottomTabsScreens.HomeStack,
+ screens: homeStackScreensData,
+ options: { title: t('navigation.screen_titles.home_stack') },
+ },
+ {
+ icons: {
+ active: 'file-list-2-fill',
+ inactive: 'file-list-2-line',
+ } as BottomTabIcons,
+ name: BottomTabsScreens.ExamplesStack,
+ screens: examplesStackScreensData,
+ options: { title: t('navigation.screen_titles.examples_stack') },
+ },
+ // BottomTab_SCREENS_END
+]
+
+export const webScreensData = bottomTabsScreensData.map((tab) => tab?.screens ?? []).flat()
diff --git a/src/navigation/linking.ts b/src/navigation/linking.ts
index 97725b0e..0f3992a6 100644
--- a/src/navigation/linking.ts
+++ b/src/navigation/linking.ts
@@ -7,40 +7,81 @@
import { LinkingOptions } from '@react-navigation/native'
import Constants from 'expo-constants'
import { createURL } from 'expo-linking'
+import { Platform } from 'react-native'
+
+import { HomeStackScreens, RootStackScreens } from './config/enums'
+import { rootStackScreensData } from './config/screens'
+import { bottomTabsScreensData, webScreensData } from './config/tabs'
const prefix = createURL('/')
const universalLinks = Constants.manifest?.extra?.universalLinks ?? []
+const webTabsScreens = webScreensData.reduce<{ [key: string]: string }>((prev, current) => {
+ prev[current.name] = current.deeplink
+ return prev
+}, {})
+
+const mobileTabsScreens = bottomTabsScreensData.reduce<{
+ [key: string]: {
+ initialRouteName: string
+ screens: { [key: string]: string }
+ }
+}>((prev, current) => {
+ // issue in typescript, follow this thread: https://github.com/microsoft/TypeScript/issues/44373
+ const screens = current.screens as unknown as {
+ initialRouteName: string
+ name: string
+ deeplink: string
+ screens: { [key: string]: string }
+ }[]
+ prev[current.name] = {
+ initialRouteName: current.screens[0].name,
+ screens: screens.reduce<{ [key: string]: string }>((prev, current) => {
+ prev[current.name] = current.deeplink
+ return prev
+ }, {}),
+ }
+ return prev
+}, {})
+
+const rootScreensData = [
+ // Filter out MainTab because it's handled separately
+ ...rootStackScreensData.authorized.filter((screen) => screen.name !== RootStackScreens.MainTab),
+ ...rootStackScreensData.unauthorized,
+ ...rootStackScreensData.modals,
+]
+
+const webRootScreens = rootScreensData.reduce<{ [key: string]: string }>((prev, current) => {
+ prev[current.name] = current.deeplink
+ return prev
+}, {})
+
// Visit https://reactnavigation.org/docs/configuring-links#playground to see more
-export const linking: LinkingOptions = {
- prefixes: [prefix, ...universalLinks],
- config: {
- initialRouteName: 'MainTab',
- screens: {
- Settings: 'settings',
- MainTab: {
- screens: {
- HomeStack: {
- initialRouteName: 'Home',
- screens: {
- Home: '',
- Details: '/details/:id',
- },
- },
- ExamplesStack: {
- initialRouteName: 'Examples',
- screens: {
- Examples: '/examples',
- Components: '/components',
- Colors: '/colors',
- Typography: '/typography',
- },
- },
- },
- },
- SignIn: 'sign-in',
- SignUp: 'sign-up',
- NotFound: '*',
+const WEB_LINKS_CONFIG: LinkingOptions['config'] = {
+ initialRouteName: 'MainTab',
+ screens: {
+ MainTab: {
+ // @ts-expect-error: Enum can't be cast to string, but the values are the same
+ initialRouteName: HomeStackScreens.Home,
+ screens: webTabsScreens,
},
+ ...webRootScreens,
},
}
+
+const APP_LINKS_CONFIG: LinkingOptions['config'] = {
+ initialRouteName: 'MainTab',
+ screens: {
+ MainTab: {
+ // @ts-expect-error: Enum can't be cast to string, but the values are the same
+ initialRouteName: HomeStackScreens.Home,
+ screens: mobileTabsScreens,
+ },
+ ...webRootScreens,
+ },
+}
+
+export const linking: LinkingOptions = {
+ prefixes: [prefix, ...universalLinks],
+ config: Platform.OS === 'web' ? WEB_LINKS_CONFIG : APP_LINKS_CONFIG,
+}
diff --git a/src/navigation/webNavigator/WebNavBar.tsx b/src/navigation/webNavigator/WebNavBar.tsx
new file mode 100644
index 00000000..ec2edd5f
--- /dev/null
+++ b/src/navigation/webNavigator/WebNavBar.tsx
@@ -0,0 +1,97 @@
+import React, { useCallback } from 'react'
+import { StyleSheet } from 'react-native'
+
+import { BottomTabsScreensKeys } from '../config/enums'
+
+import { Icon, Box, Row, Text, Touchable } from '~components'
+import { TAB_DEFAULT_ICON, WEB_NAV_BAR_ICON_SIZE } from '~constants'
+import { useNavigation, useNavigationState, useNavigationTheme, useWeb } from '~hooks'
+import { bottomTabsScreensData } from '~navigation/config/tabs'
+import { navigationRef } from '~utils'
+
+export const WebNavBar = (): JSX.Element => {
+ const { navigate } = useNavigation()
+ const { shouldApplyMobileStyles, webContentWidth } = useWeb()
+ const { tabBarTheme } = useNavigationTheme()
+
+ // This hook call is needed to rerender this component when navigation state will change
+ // thanks to that function `getCurrentRoute` will have proper value
+ useNavigationState((state) => state?.routes)
+ const currentRouteName = navigationRef.current?.getCurrentRoute()?.name ?? ''
+
+ const handleTabPress = useCallback(
+ (stackName: BottomTabsScreensKeys) => {
+ // Search for first screen that is in selected tab
+ const screenToNavigate = bottomTabsScreensData?.find((stack) => stack.name === stackName)
+ ?.screens?.[0].name as any // eslint-disable-line @typescript-eslint/no-explicit-any
+
+ navigate(screenToNavigate)
+ },
+ [navigate]
+ )
+
+ const isActiveTab = useCallback(
+ (screens: { name: string }[]) => {
+ // search through screens that are in single bottom tab,
+ // if one of screens from bottom tab is found then we should mark it as active
+ return screens.some((screen) => screen.name === currentRouteName)
+ },
+ [currentRouteName]
+ )
+
+ return (
+
+
+
+ {bottomTabsScreensData.map(({ name, icons, screens, options }) => {
+ const focused = isActiveTab(screens)
+ const iconToRender = (focused ? icons.active : icons.inactive) || TAB_DEFAULT_ICON
+ const color = focused
+ ? tabBarTheme.tabBarActiveTintColor
+ : tabBarTheme.tabBarInactiveTintColor
+ return (
+
+ handleTabPress(name)}
+ bgColor="red"
+ >
+ {({ isHovered, isPressed }) => (
+
+
+ {options.title ? (
+
+ {options.title}
+
+ ) : null}
+ {focused && }
+
+ )}
+
+
+ )
+ })}
+
+
+
+ )
+}
+
+const styles = StyleSheet.create({
+ iconContainer: {
+ opacity: 0.8,
+ transform: [{ scale: 0.9 }],
+ },
+})
diff --git a/src/navigation/webNavigator/WebNavigator.tsx b/src/navigation/webNavigator/WebNavigator.tsx
new file mode 100644
index 00000000..2ea93d41
--- /dev/null
+++ b/src/navigation/webNavigator/WebNavigator.tsx
@@ -0,0 +1,19 @@
+import { createStackNavigator } from '@react-navigation/stack'
+import React from 'react'
+
+import { webScreensData } from '~navigation/config/tabs'
+
+const { Navigator: NavigatorWeb, Screen: ScreenWeb } = createStackNavigator()
+
+const renderScreens = webScreensData.map((screen) => (
+
+))
+
+export const WebNavigator = () => {
+ return {renderScreens}
+}
diff --git a/src/providers/AuthProvider.tsx b/src/providers/AuthProvider.tsx
index ee78240f..1729dcf0 100644
--- a/src/providers/AuthProvider.tsx
+++ b/src/providers/AuthProvider.tsx
@@ -1,6 +1,6 @@
import { FC, PropsWithChildren } from 'react'
-import { AuthContextProvider, AuthContextType } from '~contexts'
+import { AuthContextProvider, AuthContextType, authContextRef } from '~contexts'
import { useCallback, useEffect, useMemo, useState } from '~hooks'
import { deleteToken, getToken, setToken } from '~services'
import { SignUpFormValues } from '~types/authForms'
@@ -53,5 +53,7 @@ export const AuthProvider: FC = ({ children }) => {
}
}, [isSignedIn, signIn, signOut, signUp])
+ authContextRef.current = value
+
return {children}
}
diff --git a/src/providers/ColorSchemeProvider.tsx b/src/providers/ColorSchemeProvider.tsx
new file mode 100644
index 00000000..90f0ccc4
--- /dev/null
+++ b/src/providers/ColorSchemeProvider.tsx
@@ -0,0 +1,73 @@
+import { useAsyncStorage } from '@react-native-async-storage/async-storage'
+import { FC, PropsWithChildren, useEffect } from 'react'
+import { useColorScheme as useRNColorScheme } from 'react-native'
+
+import { colorSchemes, ASYNC_STORAGE_KEYS } from '~constants'
+import {
+ ColorSchemeContextProvider,
+ ColorSchemeContextType,
+ SettingColorSchemeName,
+} from '~contexts'
+import { useState, useMemo, useCallback, useColorMode } from '~hooks'
+
+const defaultColorScheme = colorSchemes.LIGHT
+
+export const ColorSchemeProvider: FC = ({ children }) => {
+ const { setItem, getItem } = useAsyncStorage(ASYNC_STORAGE_KEYS.COLOR_SCHEME)
+ const systemColorScheme = useRNColorScheme()
+
+ const { setColorMode } = useColorMode()
+ const [colorSchemeSetting, setColorSchemeSetting] = useState(
+ colorSchemes.SYSTEM
+ )
+
+ const colorScheme =
+ (colorSchemeSetting === 'system' ? systemColorScheme : colorSchemeSetting) || defaultColorScheme
+
+ useEffect(() => {
+ const getInitialColorScheme = async () => {
+ getItem((error, savedColorScheme) => {
+ if (!error && savedColorScheme) {
+ setColorSchemeSetting(savedColorScheme as SettingColorSchemeName)
+ } else if (systemColorScheme) {
+ // For old devices it's possible that system color scheme name is null or undefined
+ setColorSchemeSetting(systemColorScheme)
+ } else {
+ setColorSchemeSetting(defaultColorScheme)
+ }
+ })
+ }
+
+ getInitialColorScheme()
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, [])
+
+ useEffect(() => {
+ setColorMode(colorScheme)
+ }, [setColorMode, colorScheme])
+
+ const setNewColorSchemeSetting = useCallback(
+ (newColorScheme: SettingColorSchemeName) => {
+ const oldColorScheme = colorSchemeSetting
+ setColorSchemeSetting(newColorScheme)
+ setItem(newColorScheme, (error) => {
+ if (error) {
+ setColorSchemeSetting(oldColorScheme)
+ }
+ // TODO: Handle error
+ })
+ },
+ [colorSchemeSetting, setItem]
+ )
+
+ const value: ColorSchemeContextType = useMemo(
+ () => ({
+ colorScheme,
+ colorSchemeSetting,
+ setColorSchemeSetting: setNewColorSchemeSetting,
+ }),
+ [colorScheme, colorSchemeSetting, setNewColorSchemeSetting]
+ )
+
+ return {children}
+}
diff --git a/src/providers/NotificationProvider.tsx b/src/providers/NotificationProvider.tsx
new file mode 100644
index 00000000..b8f2215a
--- /dev/null
+++ b/src/providers/NotificationProvider.tsx
@@ -0,0 +1,65 @@
+import * as Notifications from 'expo-notifications'
+import { PropsWithChildren, FC } from 'react'
+
+import { NotificationContextProvider, NotificationContextType } from '~contexts'
+import { useState, useMemo, useEffect } from '~hooks'
+import {
+ disableAndroidBackgroundNotificationListener,
+ getNotificationFromStack,
+ getNotificationStackLength,
+} from '~services'
+
+export const NotificationProvider: FC = ({ children }) => {
+ const [permissionStatus, setPermissionStatus] =
+ useState()
+ const [notification, setNotification] = useState()
+ const [inAppNotification, setInAppNotification] =
+ useState()
+
+ useEffect(() => {
+ const getPermissionStatus = async () => {
+ const { status } = await Notifications.getPermissionsAsync()
+ setPermissionStatus(status)
+ }
+ getPermissionStatus()
+ }, [])
+
+ useEffect(() => {
+ while (getNotificationStackLength() > 0) {
+ const androidBackgroundNotification = getNotificationFromStack()
+ if (androidBackgroundNotification) {
+ setNotification(androidBackgroundNotification)
+ }
+ }
+ disableAndroidBackgroundNotificationListener()
+
+ const notificationResponseReceived = Notifications.addNotificationResponseReceivedListener(
+ ({ notification }) => {
+ setNotification(notification)
+ }
+ )
+
+ const notificationReceived = Notifications.addNotificationReceivedListener((notification) => {
+ setNotification(notification)
+ setInAppNotification(notification)
+ })
+
+ return () => {
+ Notifications.removeNotificationSubscription(notificationResponseReceived)
+ Notifications.removeNotificationSubscription(notificationReceived)
+ }
+ }, [])
+
+ const value: NotificationContextType = useMemo(
+ () => ({
+ permissionStatus,
+ setPermissionStatus,
+ notification,
+ setNotification,
+ inAppNotification,
+ setInAppNotification,
+ }),
+ [inAppNotification, notification, permissionStatus]
+ )
+ return {children}
+}
diff --git a/src/providers/Providers.tsx b/src/providers/Providers.tsx
new file mode 100644
index 00000000..19114a1a
--- /dev/null
+++ b/src/providers/Providers.tsx
@@ -0,0 +1,50 @@
+import { BottomSheetModalProvider } from '@gorhom/bottom-sheet'
+import { QueryClientProvider, QueryClient } from '@tanstack/react-query'
+import { NativeBaseProvider } from 'native-base'
+import { ReactNode } from 'react'
+import { StyleSheet } from 'react-native'
+import { GestureHandlerRootView } from 'react-native-gesture-handler'
+
+import { AuthProvider } from './AuthProvider'
+import { ColorSchemeProvider } from './ColorSchemeProvider'
+import { NotificationsProvider } from './NotificatedProvider'
+import { NotificationProvider as ExpoNotificationsProvider } from './NotificationProvider'
+
+import { AppLoading } from '~components'
+import { theme, nativeBaseConfig } from '~constants'
+import { useAppStateActive } from '~hooks'
+import { checkForUpdates } from '~utils'
+
+const queryClient = new QueryClient({})
+
+export const Providers = ({ children }: { children: ReactNode }): JSX.Element => {
+ useAppStateActive(checkForUpdates, false)
+
+ return (
+ // NativeBaseProvider includes SafeAreaProvider so that we don't have to include it in a root render tree
+
+
+ {/* @ts-expect-error: error comes from a react-native-notificated library which doesn't have declared children in types required in react 18 */}
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+ )
+}
+
+const styles = StyleSheet.create({
+ gestureHandlerRootView: {
+ flex: 1,
+ },
+})
diff --git a/src/providers/index.ts b/src/providers/index.ts
index 9ffd2b59..76a2d6d9 100644
--- a/src/providers/index.ts
+++ b/src/providers/index.ts
@@ -2,3 +2,5 @@ export { NativeBaseProvider } from 'native-base'
export { SafeAreaProvider } from 'react-native-safe-area-context'
export * from './AuthProvider'
export * from './NotificatedProvider'
+export * from './NotificationProvider'
+export * from './Providers'
diff --git a/src/query-hooks/index.ts b/src/query-hooks/index.ts
new file mode 100644
index 00000000..4749da0e
--- /dev/null
+++ b/src/query-hooks/index.ts
@@ -0,0 +1 @@
+export * from './useGetData_EXAMPLE'
diff --git a/src/query-hooks/useGetData_EXAMPLE.ts b/src/query-hooks/useGetData_EXAMPLE.ts
new file mode 100644
index 00000000..bab552e5
--- /dev/null
+++ b/src/query-hooks/useGetData_EXAMPLE.ts
@@ -0,0 +1,15 @@
+import { useQuery } from '@tanstack/react-query'
+
+import { QueryKeys } from '~enums'
+import { getData, CatFactsListType } from '~services'
+
+export const useGetCity_EXAMPLE = () => {
+ const {
+ data: dataList,
+ status: dataStatus,
+ refetch: refetchData,
+ isFetchedAfterMount: isFetchedDataAfterMount,
+ } = useQuery([QueryKeys.CatsExample], getData)
+
+ return { dataList, dataStatus, refetchData, isFetchedDataAfterMount }
+}
diff --git a/src/screens/ApplicationInfoScreen.tsx b/src/screens/ApplicationInfoScreen.tsx
index 5dbdc92e..fe7bf598 100644
--- a/src/screens/ApplicationInfoScreen.tsx
+++ b/src/screens/ApplicationInfoScreen.tsx
@@ -1,15 +1,49 @@
// TODO: there are tons of more interesting methods there!
import * as Application from 'expo-application'
-import { ScrollView, Text } from 'native-base'
+import * as Clipboard from 'expo-clipboard'
+import Constants from 'expo-constants'
+import * as Notifications from 'expo-notifications'
+import { ScrollView, StyleSheet } from 'react-native'
-import { usePreventGoBack, useTranslation } from '~hooks'
+import { Button, Text } from '~components'
+import { isExpoGo } from '~constants'
+import { useCallback, usePreventGoBack, useTranslation } from '~hooks'
+
+const projectId = Constants.expoConfig?.extra?.eas?.projectId
export const ApplicationInfoScreen = (): JSX.Element => {
const { i18n, t } = useTranslation()
usePreventGoBack()
+ const handleCopyPushToken = useCallback(async () => {
+ try {
+ if (!isExpoGo && !projectId) {
+ throw new Error(
+ 'You must set `projectId` in eas build then value will be avaliable from Constants?.expoConfig?.extra?.eas?.projectId'
+ )
+ }
+ const token = (
+ await Notifications.getExpoPushTokenAsync(
+ !isExpoGo
+ ? {
+ projectId,
+ }
+ : {}
+ )
+ ).data
+
+ console.log(token)
+ await Clipboard.setStringAsync(token)
+ alert('Copied push token to clipboard.')
+ } catch (error) {
+ console.log('error', error)
+ }
+ }, [])
return (
-
+
+
+ {t('settings_screen.copy_push_token')}
+
{t('application_info_screen.navigation_info')}
{Application.applicationId}
{Application.applicationName}
@@ -19,3 +53,9 @@ export const ApplicationInfoScreen = (): JSX.Element => {
)
}
+
+const styles = StyleSheet.create({
+ container: {
+ padding: 16,
+ },
+})
diff --git a/src/screens/ColorsScreen.tsx b/src/screens/ColorsScreen.tsx
index f42da949..c95258b8 100644
--- a/src/screens/ColorsScreen.tsx
+++ b/src/screens/ColorsScreen.tsx
@@ -1,4 +1,8 @@
-import { useTheme, ScrollView, Heading, Row, Box, Theme, Center } from 'native-base'
+import { Theme } from 'native-base'
+import { ScrollView, StyleSheet } from 'react-native'
+
+import { Box, Text, Row, Center } from '~components/atoms'
+import { useTheme } from '~hooks'
type ColorsKeys = keyof Theme['colors']
const colorsVariants: ColorsKeys[] = [
@@ -42,10 +46,10 @@ export const ColorsScreen = (): JSX.Element => {
const { colors } = useTheme()
return (
-
+
{colorsVariants.map((colorVariant) => (
- {colorVariant}
+ {colorVariant}
{Object.values(colors[colorVariant]).map((color) => (
@@ -56,3 +60,10 @@ export const ColorsScreen = (): JSX.Element => {
)
}
+
+const styles = StyleSheet.create({
+ container: {
+ flexGrow: 1,
+ padding: 16,
+ },
+})
diff --git a/src/screens/ComponentsScreen.tsx b/src/screens/ComponentsScreen.tsx
index da26b962..4e130f64 100644
--- a/src/screens/ComponentsScreen.tsx
+++ b/src/screens/ComponentsScreen.tsx
@@ -1,10 +1,34 @@
import * as Linking from 'expo-linking'
-import { VStack, Heading, Divider, Button, ScrollView } from 'native-base'
+import { ScrollView, StyleSheet } from 'react-native'
+import { Icon, Loader } from '~components'
+import { Box, Text, Spacer, Button } from '~components/atoms'
import { useCallback, useNotifications, useTranslation } from '~hooks'
const headingSizes = ['xs', 'sm', 'md', 'lg', '2xl', '3xl', '4xl'] as const
const buttonVariants = ['solid', 'outline', 'subtle', 'ghost'] as const
+const loaderVariants = [
+ {
+ type: 'circle',
+ headerText: 'components_screen.loader_variants.circle',
+ },
+ {
+ type: 'bubbles',
+ headerText: 'components_screen.loader_variants.bubbles',
+ },
+ {
+ type: 'bricks',
+ headerText: 'components_screen.loader_variants.bricks',
+ },
+ {
+ type: 'disk',
+ headerText: 'components_screen.loader_variants.disk',
+ },
+ {
+ type: 'default',
+ headerText: 'components_screen.loader_variants.default',
+ },
+] as const
export const ComponentsScreen = (): JSX.Element => {
const { notify } = useNotifications()
@@ -24,30 +48,50 @@ export const ComponentsScreen = (): JSX.Element => {
)
return (
-
+
{t('components_screen.test_notification')}
-
-
- {t('components_screen.typography.label')}
+
+
+ {t('components_screen.typography.label')}
{headingSizes.map((size) => (
-
+
{t(`components_screen.typography.${size}`)}
-
+
))}
-
- {t('components_screen.button_variants.header')}
+
+ {t('components_screen.button_variants.header')}
{buttonVariants.map((variant) => (
{t(`components_screen.button_variants.${variant}`)}
))}
-
+
+
{t('components_screen.button_variants.disabled')}
-
+
+ {t('components_screen.loader_variants.header')}
+ {loaderVariants?.map((loader) => (
+
+
+ {t(loader?.headerText)}
+
+
+
+
+ ))}
+
+
)
}
+
+const styles = StyleSheet.create({
+ container: {
+ flexGrow: 1,
+ padding: 16,
+ },
+})
diff --git a/src/screens/DataFromBeScreen_EXAMPLE.tsx b/src/screens/DataFromBeScreen_EXAMPLE.tsx
new file mode 100644
index 00000000..03ac1812
--- /dev/null
+++ b/src/screens/DataFromBeScreen_EXAMPLE.tsx
@@ -0,0 +1,48 @@
+import React, { useCallback } from 'react'
+import { StyleSheet, ListRenderItem, FlatList } from 'react-native'
+
+import { Loader, Center, Text, Box } from '~components'
+import { Spacer } from '~components/atoms'
+import { useGetCity_EXAMPLE } from '~query-hooks'
+import { CatFactType } from '~types/catFacts'
+export const DataFromBeScreen_EXAMPLE = () => {
+ const { dataList, isFetchedDataAfterMount } = useGetCity_EXAMPLE()
+
+ const renderItem: ListRenderItem = useCallback(({ item: { fact, length } }) => {
+ return (
+
+ {'fact:' + fact}
+ {'length: ' + length}
+
+ )
+ }, [])
+
+ return (
+
+
+ THIS IS EXAMPLE SCREEN
+ which contains data from backend
+
+
+
+
+ ) : (
+ No data found
+ )
+ }
+ data={dataList}
+ renderItem={renderItem}
+ />
+
+
+ )
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ },
+})
diff --git a/src/screens/DetailsScreen.tsx b/src/screens/DetailsScreen.tsx
index e0f6f618..2d67c588 100644
--- a/src/screens/DetailsScreen.tsx
+++ b/src/screens/DetailsScreen.tsx
@@ -1,57 +1,24 @@
-import {
- BottomSheetModal,
- BottomSheetBackdrop,
- BottomSheetBackdropProps,
-} from '@gorhom/bottom-sheet'
-import { Box, Center, Text, Button } from 'native-base'
-
-import { useCallback, useMemo, useRef, useTranslation } from '~hooks'
+import { useBottomSheet, Center, Text, Button, Box } from '~components'
+import { useTranslation } from '~hooks'
export const DetailsScreen = (props: DetailsScreenProps): JSX.Element => {
const {
route: { params },
} = props
-
+ const { bottomSheetComponentRenderFunction, presentBottomSheet } = useBottomSheet()
const { t } = useTranslation()
- // ref
- const bottomSheetModalRef = useRef(null)
-
- // variables
- const snapPoints = useMemo(() => ['25%', '50%'], [])
-
- // callbacks
- const openModal = useCallback(() => {
- bottomSheetModalRef.current?.present()
- }, [])
-
- const handleSheetChanges = useCallback((index: number) => {
- console.log('handleSheetChanges', index)
- }, [])
-
- const renderBackdrop = useCallback(
- (props: BottomSheetBackdropProps) => (
-
- ),
- []
+ const bottomSheet = bottomSheetComponentRenderFunction(
+
+ {t('details_screen.awesome')}
+
)
-
return (
{t('details_screen.title')}
- {t('details_screen.open_bottom_sheet')}
+ {t('details_screen.open_bottom_sheet')}
{t('details_screen.screen_params', { params: JSON.stringify(params) })}
-
-
- {t('details_screen.awesome')}
-
-
+ {bottomSheet}
)
}
diff --git a/src/screens/ExamplesScreen.tsx b/src/screens/ExamplesScreen.tsx
index 6d197548..a3efe927 100644
--- a/src/screens/ExamplesScreen.tsx
+++ b/src/screens/ExamplesScreen.tsx
@@ -1,5 +1,6 @@
-import { Button, ScrollView, Center } from 'native-base'
+import { StyleSheet, ScrollView } from 'react-native'
+import { Button, Center } from '~components/atoms'
import { useTranslation, useCallback } from '~hooks'
export const ExamplesScreen = (props: ExamplesScreenProps): JSX.Element => {
@@ -14,16 +15,16 @@ export const ExamplesScreen = (props: ExamplesScreenProps): JSX.Element => {
const goToColors = useCallback(() => navigate('Colors'), [navigate])
const goToComponents = useCallback(() => navigate('Components'), [navigate])
const goToTypography = useCallback(() => navigate('Typography'), [navigate])
- const goToHomeStackDetails = useCallback(
- () =>
- navigate('HomeStack', {
- screen: 'Details',
- params: { id: 'examples-id' },
- }),
+ const goToCityListScreen_EXAMPLE = useCallback(
+ () => navigate('DataFromBeScreen_EXAMPLE'),
[navigate]
)
+ const goToTestForm = useCallback(() => navigate('TestForm'), [navigate])
+
+ const goToHomeStackDetails = useCallback(() => navigate('Details', { id: 'xdd' }), [navigate])
+
return (
-
+
{t('examples_screen.go_to_application_info')}
@@ -43,7 +44,19 @@ export const ExamplesScreen = (props: ExamplesScreenProps): JSX.Element => {
{t('examples_screen.go_to_settings')}
+
+ {t('examples_screen.go_to_screen_with_BEdata')}
+
+
+ {t('examples_screen.go_to_screen_test_form')}
+
)
}
+
+const styles = StyleSheet.create({
+ container: {
+ padding: 16,
+ },
+})
diff --git a/src/screens/HomeScreen.tsx b/src/screens/HomeScreen.tsx
index 78ce5a47..8b8395fe 100644
--- a/src/screens/HomeScreen.tsx
+++ b/src/screens/HomeScreen.tsx
@@ -1,5 +1,8 @@
-import { Button, Center, Text, Image } from 'native-base'
+import { Image, StyleSheet } from 'react-native'
+import { Button, Center, Text } from '~components/atoms'
+import { darkLogo, lightLogo } from '~constants'
+import { useColorScheme } from '~contexts'
import { useCallback, useTranslation } from '~hooks'
export const HomeScreen = (props: HomeScreenProps): JSX.Element => {
@@ -7,6 +10,7 @@ export const HomeScreen = (props: HomeScreenProps): JSX.Element => {
navigation: { navigate },
} = props
const { t } = useTranslation()
+ const { colorScheme } = useColorScheme()
const navigateToDetails = useCallback(() => {
navigate('Details', { id: 'home-id' })
@@ -15,11 +19,10 @@ export const HomeScreen = (props: HomeScreenProps): JSX.Element => {
return (
{t('hello')}
{t('thanks')}
@@ -30,3 +33,10 @@ export const HomeScreen = (props: HomeScreenProps): JSX.Element => {
)
}
+
+const styles = StyleSheet.create({
+ logo: {
+ height: 100,
+ width: '100%',
+ },
+})
diff --git a/src/screens/NotFoundScreen.tsx b/src/screens/NotFoundScreen.tsx
index d639de67..141fadf1 100644
--- a/src/screens/NotFoundScreen.tsx
+++ b/src/screens/NotFoundScreen.tsx
@@ -1,5 +1,4 @@
-import { Center, Text } from 'native-base'
-
+import { Center, Text } from '~components/atoms'
import { useTranslation } from '~hooks'
export const NotFoundScreen = (): JSX.Element => {
diff --git a/src/screens/SettingsScreen.tsx b/src/screens/SettingsScreen.tsx
index 78f5d0d7..284b72af 100644
--- a/src/screens/SettingsScreen.tsx
+++ b/src/screens/SettingsScreen.tsx
@@ -1,25 +1,32 @@
-import { ScrollView, Text, Button, Center, ColorMode } from 'native-base'
+import { ScrollView } from 'react-native'
-import { useAuth, useCallback, useColorMode, useTranslation } from '~hooks'
+import { Version, Spacer } from '~components'
+import { Button, Center, Text } from '~components/atoms'
+import { colorSchemesList } from '~constants'
+import { useColorScheme } from '~contexts'
+import { useAuth, useCallback, useTranslation } from '~hooks'
+import { noop } from '~utils'
export const SettingsScreen = (): JSX.Element => {
const { t } = useTranslation()
- const { colorMode, setColorMode } = useColorMode()
+ const { setColorSchemeSetting, colorSchemeSetting } = useColorScheme()
const { signOut } = useAuth()
const handleColorSchemeSettingChange = useCallback(
- (colorScheme: ColorMode) => () => setColorMode(colorScheme),
- [setColorMode]
+ (scheme: typeof colorSchemeSetting) => () => {
+ setColorSchemeSetting(scheme)
+ },
+ [setColorSchemeSetting]
)
return (
-
+
- {t('settings_screen.current_theme', { theme: colorMode })}
+ {t('settings_screen.current_theme', { theme: colorSchemeSetting })}
- {(['light', 'dark'] as ColorMode[]).map((scheme) => {
- const isSelected = scheme === colorMode
+ {colorSchemesList.map((scheme) => {
+ const isSelected = scheme === colorSchemeSetting
return (
{
mb={2}
onPress={handleColorSchemeSettingChange(scheme)}
>
- {`${scheme}${isSelected ? t('settings_screen.selected') : ''}`}
+ {scheme + (isSelected ? ' - selected' : '')}
)
})}
@@ -37,6 +44,8 @@ export const SettingsScreen = (): JSX.Element => {
{t('settings_screen.sign_out')}
+
+
)
diff --git a/src/screens/SignInScreen.tsx b/src/screens/SignInScreen.tsx
index 842d20c8..71d2166b 100644
--- a/src/screens/SignInScreen.tsx
+++ b/src/screens/SignInScreen.tsx
@@ -1,98 +1,133 @@
-import { Box, Button, Center, Image, Text } from 'native-base'
-import { TextInput } from 'react-native'
+import { StyleSheet, Image } from 'react-native'
-import { ControlledField } from '~components'
-import { REGEX } from '~constants'
-import { useCallback, useSignInForm, useNavigation, useTranslation, useRef } from '~hooks'
+import {
+ ControlledField,
+ KeyboardAwareScrollView,
+ LanguagePicker,
+ Spacer,
+ Version,
+} from '~components'
+import { Box, Button, Center, Text } from '~components/atoms'
+import { REGEX, darkLogo, lightLogo } from '~constants'
+import { useColorScheme } from '~contexts'
+import {
+ useCallback,
+ useSignInForm,
+ useNavigation,
+ useTranslation,
+ useTheme,
+ useEffect,
+} from '~hooks'
export const SignInScreen = (): JSX.Element => {
const { navigate } = useNavigation()
const { t } = useTranslation()
- const passwordInputRef = useRef(null)
- const { control, errors, submit, isSubmitting } = useSignInForm()
+ const { space } = useTheme()
+ const { colorScheme } = useColorScheme()
- const goToSignUp = useCallback(() => navigate('SignUp'), [navigate])
+ const { control, errors, submit, isSubmitting, setFocus } = useSignInForm()
+
+ useEffect(() => {
+ setTimeout(() => {
+ setFocus('email')
+ }, 500)
+ }, [setFocus])
+
+ const navigateToSignUp = useCallback(() => navigate('SignUp'), [navigate])
+ const navigateToAppInfo = useCallback(() => navigate('ApplicationInfo'), [navigate])
+ const focusPasswordInput = useCallback(() => setFocus('password'), [setFocus])
return (
-
-
-
-
-
-
+
+
+
+
+
+
+
-
- {t('sign_in_screen.sign_in')}
-
-
- {t('sign_in_screen.dont_have_an_account')}
+
+
+
+
+ {t('sign_in_screen.sign_in')}
+
+
+ {t('sign_in_screen.dont_have_an_account')}
+
+
+ {t('sign_in_screen.sign_up')}
+
+
+
+
+ {/* TODO: Remove this after implementing signing in with backend */}
+ Correct credentials
+
+ Email: test@example.com{'\n'}Password: 123456
-
- {t('sign_in_screen.sign_up')}
-
+
-
-
- {/* TODO: Remove this after implementing signing in with backend */}
- Correct credentials
-
- Email: test@example.com{'\n'}Password: 123456
-
-
+
)
}
+
+const styles = StyleSheet.create({
+ logo: {
+ height: 100,
+ width: '100%',
+ },
+})
diff --git a/src/screens/SignUpScreen.tsx b/src/screens/SignUpScreen.tsx
index add24c31..b4a6dbad 100644
--- a/src/screens/SignUpScreen.tsx
+++ b/src/screens/SignUpScreen.tsx
@@ -1,97 +1,99 @@
-import { Button, Center } from 'native-base'
-import { RefObject, useRef } from 'react'
-import { TextInput } from 'react-native'
+import { useCallback, useEffect } from 'react'
-import { ControlledField } from '~components'
+import { ControlledField, KeyboardAwareScrollView } from '~components'
+import { Button, Center } from '~components/atoms'
import { REGEX } from '~constants'
-import { useSignUpForm, useTranslation } from '~hooks'
-
-type SignUpFields = {
- email: RefObject
- password: RefObject
-}
+import { useSignUpForm, useTranslation, useTheme } from '~hooks'
export const SignUpScreen = () => {
const { t } = useTranslation()
+ const { space } = useTheme()
+
+ const { control, errors, submit, isSubmitting, setFocus } = useSignUpForm()
- const fields: SignUpFields = {
- email: useRef(null),
- password: useRef(null),
- }
+ useEffect(() => {
+ setTimeout(() => {
+ setFocus('user')
+ }, 500)
+ }, [setFocus])
- const { control, errors, submit, isSubmitting } = useSignUpForm()
+ const focusEmailInput = useCallback(() => setFocus('email'), [setFocus])
+ const focusPasswordInput = useCallback(() => setFocus('password'), [setFocus])
return (
-
-
-
-
+
+
+
+
+
-
-
-
- {t('sign_up_screen.sign_up')}
-
-
+
+
+
+ {t('sign_up_screen.sign_up')}
+
+
+
)
}
diff --git a/src/screens/TestFormScreen.tsx b/src/screens/TestFormScreen.tsx
new file mode 100644
index 00000000..ca059687
--- /dev/null
+++ b/src/screens/TestFormScreen.tsx
@@ -0,0 +1,240 @@
+import { TextArea, Checkbox, FormControl, Select } from 'native-base'
+import { Controller } from 'react-hook-form'
+import { StyleSheet } from 'react-native'
+
+import { ControlledField, KeyboardAwareScrollView } from '~components'
+import { Button, Text } from '~components/atoms'
+import { useTestForm, useTranslation } from '~hooks'
+
+const SHOE_SIZES = [
+ '34',
+ '35',
+ '36',
+ '37',
+ '38',
+ '39',
+ '40',
+ '41',
+ '42',
+ '43',
+ '44',
+ '45',
+ '46',
+ '47',
+]
+const AGES = ['18-30', '31-40', '41-50', '51-60', '61-70', '71-80', '81-90', '91-100']
+const MUSICS = ['Metal', 'Heavy Metal', 'Rock', 'Pop', 'Rap']
+
+export const TestFormScreen = (): JSX.Element => {
+ const { t } = useTranslation()
+ const { control, errors, submit, VALIDATION } = useTestForm()
+ const INTERESTS = [
+ 'IT',
+ t('test_form.cooking'),
+ t('test_form.sport'),
+ t('test_form.games'),
+ t('test_form.dancing'),
+ ]
+
+ return (
+
+
+ {t('test_form.contact_data')}
+
+
+
+
+
+
+
+
+ {t('test_form.age')}
+
+
+
+ {t('test_form.sex')}
+
+
+
+ {t('test_form.education')}
+
+
+ (
+
+ {[
+ t('test_form.primary'),
+ t('test_form.middle'),
+ t('test_form.secondary'),
+ t('test_form.postsecondary'),
+ ].map((education) => (
+
+ ))}
+
+ )}
+ />
+ {errors.education?.message}
+
+
+ {t('test_form.shoe_size')}
+
+
+ (
+
+ {SHOE_SIZES.map((size) => (
+
+ ))}
+
+ )}
+ />
+ {errors.shoeSize?.message}
+
+
+ {t('test_form.which_music')}
+
+
+ (
+ field.onChange(value)}>
+ {MUSICS.map((music) => (
+
+ {music}
+
+ ))}
+
+ )}
+ />
+ {errors.music?.message}
+
+
+ {t('test_form.interests')}
+
+
+ (
+ field.onChange(value)}>
+ {INTERESTS.map((interest) => (
+
+ {interest}
+
+ ))}
+
+ )}
+ />
+ {errors.interests?.message}
+
+
+ {t('test_form.additiona_comment')}
+
+
+ (
+
+
+ {t('test_form.submit')}
+
+
+ )
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flexGrow: 1,
+ padding: 16,
+ },
+})
diff --git a/src/screens/TypographyScreen.tsx b/src/screens/TypographyScreen.tsx
index 315bf421..675dd9ce 100644
--- a/src/screens/TypographyScreen.tsx
+++ b/src/screens/TypographyScreen.tsx
@@ -1,6 +1,8 @@
-import { Center, Divider, Heading, Row, ScrollView, Switch, Text } from 'native-base'
+import { ScrollView, Switch } from 'react-native'
-import { useColorMode, useTranslation } from '~hooks'
+import { Center, Text, Row, Box } from '~components/atoms'
+import { useColorScheme } from '~contexts'
+import { useTranslation } from '~hooks'
export const fontSizes = [
'xs',
@@ -17,10 +19,10 @@ export const fontSizes = [
'8xl',
'9xl',
]
-export const headingSizes = ['xs', 'sm', 'md', 'lg', 'xl', '2xl', '3xl', '4xl']
export const TypographyScreen = (): JSX.Element => {
- const { toggleColorMode, colorMode } = useColorMode()
+ const { setColorSchemeSetting, colorScheme } = useColorScheme()
+
const { t } = useTranslation()
return (
@@ -31,7 +33,12 @@ export const TypographyScreen = (): JSX.Element => {
Investigate the issue about using `useCallback` on `onChange`
https://github.com/adobe/react-spectrum/issues/2320
*/}
-
+
+ setColorSchemeSetting(colorScheme === 'dark' ? 'light' : 'dark')}
+ />
+
🌚
{t('typography_screen.text_font_size')}
@@ -40,15 +47,6 @@ export const TypographyScreen = (): JSX.Element => {
Text - {fontSize}
))}
-
-
-
- {t('typography_screen.heading_size')}
- {headingSizes.map((size) => (
-
- Heading - {size}
-
- ))}
)
diff --git a/src/screens/index.ts b/src/screens/index.ts
index 47a81b09..ddaf4ff9 100644
--- a/src/screens/index.ts
+++ b/src/screens/index.ts
@@ -1,11 +1,14 @@
export * from './ApplicationInfoScreen'
export * from './ColorsScreen'
export * from './ComponentsScreen'
+export * from './DataFromBeScreen_EXAMPLE'
export * from './DetailsScreen'
export * from './ExamplesScreen'
export * from './HomeScreen'
export * from './NotFoundScreen'
-export * from './SignInScreen'
export * from './SettingsScreen'
+export * from './SignInScreen'
export * from './SignUpScreen'
export * from './TypographyScreen'
+
+export * from './TestFormScreen'
diff --git a/src/services/ColorSchemeManager.ts b/src/services/ColorSchemeManager.ts
deleted file mode 100644
index d4b8ff62..00000000
--- a/src/services/ColorSchemeManager.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import AsyncStorage from '@react-native-async-storage/async-storage'
-import type { StorageManager, ColorMode } from 'native-base'
-
-import { ASYNC_STORAGE_KEYS } from '~constants'
-
-export const colorModeManager: StorageManager = {
- get: async () => {
- try {
- const val = await AsyncStorage.getItem(ASYNC_STORAGE_KEYS.COLOR_SCHEME)
- return val === 'dark' ? 'dark' : 'light'
- } catch (e) {
- console.error(e)
- return 'light'
- }
- },
- set: async (value: ColorMode) => {
- try {
- await AsyncStorage.setItem(ASYNC_STORAGE_KEYS.COLOR_SCHEME, String(value))
- } catch (e) {
- console.error(e)
- }
- },
-}
diff --git a/src/services/NotificationService.ts b/src/services/NotificationService.ts
new file mode 100644
index 00000000..fbeebd2d
--- /dev/null
+++ b/src/services/NotificationService.ts
@@ -0,0 +1,55 @@
+import * as Device from 'expo-device'
+import { Subscription } from 'expo-modules-core'
+import * as Notifications from 'expo-notifications'
+import { Platform } from 'react-native'
+
+export const schedulePushNotification = async (request: Notifications.NotificationRequestInput) => {
+ await Notifications.scheduleNotificationAsync(request)
+}
+
+export const registerForPushNotificationsAsync = async () => {
+ if (Platform.OS === 'android') {
+ await Notifications.setNotificationChannelAsync('default', {
+ name: 'default',
+ importance: Notifications.AndroidImportance.MAX,
+ vibrationPattern: [0, 250, 250, 250],
+ lightColor: '#FF231F7C',
+ })
+ }
+
+ if (Device.isDevice) {
+ const { status: existingStatus } = await Notifications.getPermissionsAsync()
+ let finalStatus = existingStatus
+ if (existingStatus !== 'granted') {
+ const { status } = await Notifications.requestPermissionsAsync()
+ finalStatus = status
+ }
+ if (finalStatus !== 'granted') {
+ console.log('Failed to get push token for push notification!')
+ throw new Error('Failed to get push token for push notification!')
+ }
+ } else {
+ console.log('Must use physical device for Push Notifications')
+ }
+}
+
+let notificationListener: Subscription | null = null
+
+const notificationStack: Notifications.Notification[] = []
+
+export const enableAndroidBackgroundNotificationListener = () => {
+ if (Platform.OS !== 'android') return
+ notificationListener = Notifications.addNotificationResponseReceivedListener(
+ ({ notification }) => {
+ notificationStack.push(notification)
+ }
+ )
+}
+
+export const disableAndroidBackgroundNotificationListener = () => {
+ notificationListener?.remove()
+}
+
+export const getNotificationFromStack = () => notificationStack.shift()
+
+export const getNotificationStackLength = () => notificationStack.length
diff --git a/src/services/api/apiClient.ts b/src/services/api/apiClient.ts
new file mode 100644
index 00000000..39590b6b
--- /dev/null
+++ b/src/services/api/apiClient.ts
@@ -0,0 +1,51 @@
+import axios, { AxiosError } from 'axios'
+import i18n from 'i18next'
+import qs from 'qs'
+
+import { injectTokenToRequest } from '../interceptors/injectToken'
+
+import { ENV, SECOND_IN_MS } from '~constants'
+import { getApiError } from '~utils'
+
+export type ApiError = {
+ message: string
+ errors: {
+ [key: string]: string[]
+ }
+}
+
+export const baseURL = ENV.API_URL
+
+export const apiClient = axios.create({
+ baseURL,
+ timeout: 30 * SECOND_IN_MS,
+ paramsSerializer: (params) => qs.stringify(params),
+})
+
+apiClient.interceptors.request.use(injectTokenToRequest, (error) => {
+ console.log('Error while sending request', JSON.stringify(error, null, 2))
+ return Promise.reject(error)
+})
+
+apiClient.interceptors.response.use(
+ async (response) => {
+ return response?.data?.data
+ },
+ async (error: AxiosError) => {
+ const errorMessage = error?.response?.data?.message
+
+ if (errorMessage) {
+ //CONFIG: Add errors in getApiError
+ const api_error = getApiError(errorMessage)
+
+ if (api_error) {
+ return Promise.reject(new Error(api_error?.translation))
+ }
+
+ //FIXME: Delete this before deploy, this is unhandled error from backend
+ return Promise.reject(new Error('BE: ' + errorMessage))
+ }
+
+ return Promise.reject(new Error(i18n.t('errors.something_went_wrong')))
+ }
+)
diff --git a/src/services/api/index.ts b/src/services/api/index.ts
new file mode 100644
index 00000000..d19cf7a9
--- /dev/null
+++ b/src/services/api/index.ts
@@ -0,0 +1 @@
+export * from './apiClient'
diff --git a/src/services/index.ts b/src/services/index.ts
index 71cd2db3..04bc93ee 100644
--- a/src/services/index.ts
+++ b/src/services/index.ts
@@ -1,3 +1,5 @@
+export * from './api'
export * from './MockedServerService'
+export * from './requests'
+export * from './NotificationService'
export * from './TokenService'
-export * from './ColorSchemeManager'
diff --git a/src/services/interceptors/injectToken.ts b/src/services/interceptors/injectToken.ts
new file mode 100644
index 00000000..f9dd60c3
--- /dev/null
+++ b/src/services/interceptors/injectToken.ts
@@ -0,0 +1,19 @@
+import { AxiosRequestConfig } from 'axios'
+
+import { getToken } from '../TokenService'
+
+export const injectTokenToRequest = async (config: AxiosRequestConfig) => {
+ const token = await getToken()
+
+ let Authorization = ''
+ if (token) {
+ Authorization = `Bearer ${token}`
+ }
+ return {
+ ...config,
+ headers: {
+ ...config?.headers,
+ Authorization,
+ },
+ }
+}
diff --git a/src/services/requests/AnyService_EXAMPLE.ts b/src/services/requests/AnyService_EXAMPLE.ts
new file mode 100644
index 00000000..f9c5df39
--- /dev/null
+++ b/src/services/requests/AnyService_EXAMPLE.ts
@@ -0,0 +1,9 @@
+//THIS IS EXAMPLE REQUEST
+import { apiClient } from '../api'
+
+import { CatFactType } from '~types/catFacts'
+export type CatFactsListType = CatFactType[]
+
+export const getData = () => {
+ return apiClient.get(`/facts`)
+}
diff --git a/src/services/requests/index.ts b/src/services/requests/index.ts
new file mode 100644
index 00000000..706a3d16
--- /dev/null
+++ b/src/services/requests/index.ts
@@ -0,0 +1 @@
+export * from './AnyService_EXAMPLE'
diff --git a/src/types/catFacts.ts b/src/types/catFacts.ts
new file mode 100644
index 00000000..362fb17d
--- /dev/null
+++ b/src/types/catFacts.ts
@@ -0,0 +1,4 @@
+export type CatFactType = {
+ fact: string
+ length: number
+}
diff --git a/src/types/i18next.d.ts b/src/types/i18next.d.ts
new file mode 100644
index 00000000..8819e31b
--- /dev/null
+++ b/src/types/i18next.d.ts
@@ -0,0 +1,7 @@
+import 'i18next'
+
+declare module 'i18next' {
+ interface CustomTypeOptions {
+ returnNull: false
+ }
+}
diff --git a/src/types/icon.d.ts b/src/types/icon.d.ts
new file mode 100644
index 00000000..1de1dbb9
--- /dev/null
+++ b/src/types/icon.d.ts
@@ -0,0 +1,2273 @@
+export type IconNames =
+ | 'layout-right-2-line'
+ | 'drag-drop-line'
+ | 'layout-bottom-line'
+ | 'drop-line'
+ | 'anticlockwise-2-line'
+ | 'paint-brush-line'
+ | 'mark-pen-line'
+ | 'edit-circle-line'
+ | 'ink-bottle-line'
+ | 'clockwise-line'
+ | 'pantone-line'
+ | 'clockwise-2-line'
+ | 'layout-top-line'
+ | 't-box-line'
+ | 'layout-5-line'
+ | 'layout-4-line'
+ | 'magic-line'
+ | 'pen-nib-line'
+ | 'anticlockwise-line'
+ | 'compasses-2-line'
+ | 'contrast-drop-line'
+ | 'compasses-line'
+ | 'crop-2-line'
+ | 'table-alt-line'
+ | 'layout-bottom-2-line'
+ | 'layout-2-line'
+ | 'layout-3-line'
+ | 'layout-top-2-line'
+ | 'focus-line'
+ | 'contrast-2-line'
+ | 'pencil-ruler-line'
+ | 'layout-left-line'
+ | 'layout-grid-line'
+ | 'edit-line'
+ | 'scissors-line'
+ | 'slice-line'
+ | 'grid-line'
+ | 'edit-box-line'
+ | 'contrast-line'
+ | 'layout-6-line'
+ | 'palette-line'
+ | 'eraser-line'
+ | 'drag-move-line'
+ | 'ruler-2-line'
+ | 'ball-pen-line'
+ | 'layout-column-line'
+ | 'edit-2-line'
+ | 'focus-2-line'
+ | 'focus-3-line'
+ | 'shape-2-line'
+ | 'layout-row-line'
+ | 'ruler-line'
+ | 'brush-3-line'
+ | 'brush-2-line'
+ | 'screenshot-2-line'
+ | 'hammer-line'
+ | 'blur-off-line'
+ | 'layout-right-line'
+ | 'pencil-ruler-2-line'
+ | 'scissors-2-line'
+ | 'brush-line'
+ | 'layout-left-2-line'
+ | 'layout-line'
+ | 'screenshot-line'
+ | 'table-line'
+ | 'markup-line'
+ | 'brush-4-line'
+ | 'paint-line'
+ | 'layout-masonry-line'
+ | 'scissors-cut-line'
+ | 'pencil-line'
+ | 'tools-line'
+ | 'artboard-line'
+ | 'quill-pen-line'
+ | 'contrast-drop-2-line'
+ | 'collage-line'
+ | 'sip-line'
+ | 'input-method-line'
+ | 'artboard-2-line'
+ | 'shape-line'
+ | 'drag-move-2-line'
+ | 'crop-line'
+ | 'hospital-line'
+ | 'home-heart-line'
+ | 'community-line'
+ | 'home-4-line'
+ | 'home-5-line'
+ | 'home-8-line'
+ | 'home-3-line'
+ | 'home-2-line'
+ | 'home-line'
+ | 'government-line'
+ | 'home-smile-2-line'
+ | 'home-7-line'
+ | 'home-6-line'
+ | 'home-smile-line'
+ | 'building-4-line'
+ | 'building-line'
+ | 'home-wifi-line'
+ | 'store-3-line'
+ | 'store-2-line'
+ | 'hotel-line'
+ | 'home-gear-line'
+ | 'ancient-pavilion-line'
+ | 'ancient-gate-line'
+ | 'building-3-line'
+ | 'building-2-line'
+ | 'bank-line'
+ | 'store-line'
+ | 'cursor-line'
+ | 'code-line'
+ | 'braces-line'
+ | 'git-branch-line'
+ | 'terminal-box-line'
+ | 'git-commit-line'
+ | 'git-repository-commits-line'
+ | 'css3-line'
+ | 'code-box-line'
+ | 'terminal-window-line'
+ | 'bug-line'
+ | 'html5-line'
+ | 'git-pull-request-line'
+ | 'code-s-slash-line'
+ | 'terminal-line'
+ | 'parentheses-line'
+ | 'bug-2-line'
+ | 'command-line'
+ | 'git-merge-line'
+ | 'git-repository-line'
+ | 'git-repository-private-line'
+ | 'brackets-line'
+ | 'code-s-line'
+ | 'heart-add-line'
+ | 'mental-health-line'
+ | 'flask-line'
+ | 'nurse-line'
+ | 'empathize-line'
+ | 'capsule-line'
+ | 'pulse-line'
+ | 'syringe-line'
+ | 'hearts-line'
+ | 'first-aid-kit-line'
+ | 'dislike-line'
+ | 'thermometer-line'
+ | 'zzz-line'
+ | 'medicine-bottle-line'
+ | 'lungs-line'
+ | 'stethoscope-line'
+ | 'rest-time-line'
+ | 'surgical-mask-line'
+ | 'heart-2-line'
+ | 'heart-3-line'
+ | 'virus-line'
+ | 'heart-line'
+ | 'infrared-thermometer-line'
+ | 'psychotherapy-line'
+ | 'dossier-line'
+ | 'heart-pulse-line'
+ | 'microscope-line'
+ | 'hand-sanitizer-line'
+ | 'health-book-line'
+ | 'test-tube-line'
+ | 'at-line'
+ | 'mail-send-line'
+ | 'bar-chart-horizontal-line'
+ | 'window-line'
+ | 'cloud-off-line'
+ | 'profile-line'
+ | 'mail-check-line'
+ | 'advertisement-line'
+ | 'mail-forbid-line'
+ | 'projector-2-line'
+ | 'award-line'
+ | 'creative-commons-line'
+ | 'creative-commons-sa-line'
+ | 'bar-chart-box-line'
+ | 'printer-cloud-line'
+ | 'bubble-chart-line'
+ | 'calendar-check-line'
+ | 'inbox-archive-line'
+ | 'reply-line'
+ | 'creative-commons-nd-line'
+ | 'briefcase-2-line'
+ | 'briefcase-3-line'
+ | 'archive-drawer-line'
+ | 'pie-chart-line'
+ | 'links-line'
+ | 'printer-line'
+ | 'global-line'
+ | 'inbox-line'
+ | 'reply-all-line'
+ | 'mail-star-line'
+ | 'creative-commons-nc-line'
+ | 'slideshow-line'
+ | 'copyleft-line'
+ | 'briefcase-5-line'
+ | 'briefcase-4-line'
+ | 'medal-line'
+ | 'bookmark-line'
+ | 'stack-line'
+ | 'window-2-line'
+ | 'mail-volume-line'
+ | 'mail-add-line'
+ | 'mail-unread-line'
+ | 'trademark-line'
+ | 'bar-chart-line'
+ | 'customer-service-line'
+ | 'send-plane-2-line'
+ | 'send-plane-line'
+ | 'flag-line'
+ | 'calendar-todo-line'
+ | 'slideshow-4-line'
+ | 'flag-2-line'
+ | 'calculator-line'
+ | 'projector-line'
+ | 'calendar-2-line'
+ | 'calendar-event-line'
+ | 'pie-chart-2-line'
+ | 'mail-open-line'
+ | 'attachment-line'
+ | 'calendar-line'
+ | 'pie-chart-box-line'
+ | 'mail-settings-line'
+ | 'mail-line'
+ | 'record-mail-line'
+ | 'donut-chart-line'
+ | 'briefcase-line'
+ | 'archive-line'
+ | 'mail-lock-line'
+ | 'service-line'
+ | 'registered-line'
+ | 'bar-chart-grouped-line'
+ | 'honour-line'
+ | 'mail-close-line'
+ | 'mail-download-line'
+ | 'bar-chart-2-line'
+ | 'bookmark-3-line'
+ | 'bookmark-2-line'
+ | 'creative-commons-zero-line'
+ | 'copyright-line'
+ | 'medal-2-line'
+ | 'cloud-line'
+ | 'line-chart-line'
+ | 'creative-commons-by-line'
+ | 'inbox-unarchive-line'
+ | 'slideshow-2-line'
+ | 'slideshow-3-line'
+ | 'donut-chart-fill'
+ | 'customer-service-2-line'
+ | 'google-line'
+ | 'windows-line'
+ | 'gatsby-line'
+ | 'telegram-line'
+ | 'ubuntu-line'
+ | 'vimeo-line'
+ | 'facebook-circle-line'
+ | 'ie-line'
+ | 'behance-line'
+ | 'gitlab-line'
+ | 'wechat-line'
+ | 'opera-line'
+ | 'remixicon-line'
+ | 'steam-line'
+ | 'stack-overflow-line'
+ | 'wechat-pay-line'
+ | 'open-source-line'
+ | 'snapchat-line'
+ | 'mini-program-line'
+ | 'wechat-2-line'
+ | 'xbox-line'
+ | 'playstation-line'
+ | 'product-hunt-line'
+ | 'pinterest-line'
+ | 'invision-line'
+ | 'douban-line'
+ | 'qq-line'
+ | 'reddit-line'
+ | 'alipay-line'
+ | 'edge-line'
+ | 'drive-line'
+ | 'linkedin-line'
+ | 'taobao-line'
+ | 'vuejs-line'
+ | 'npmjs-line'
+ | 'skype-line'
+ | 'tumblr-line'
+ | 'unsplash-line'
+ | 'google-play-line'
+ | 'paypal-line'
+ | 'dingding-line'
+ | 'facebook-box-line'
+ | 'switch-line'
+ | 'reactjs-line'
+ | 'instagram-line'
+ | 'twitch-line'
+ | 'dropbox-line'
+ | 'messenger-line'
+ | 'bilibili-line'
+ | 'android-line'
+ | 'youtube-line'
+ | 'firefox-line'
+ | 'kakao-talk-line'
+ | 'disqus-line'
+ | 'pixelfed-line'
+ | 'centos-line'
+ | 'apple-line'
+ | 'trello-line'
+ | 'zhihu-line'
+ | 'angularjs-line'
+ | 'honor-of-kings-line'
+ | 'slack-line'
+ | 'stackshare-line'
+ | 'xing-line'
+ | 'facebook-line'
+ | 'discord-line'
+ | 'netease-cloud-music-line'
+ | 'chrome-line'
+ | 'codepen-line'
+ | 'flutter-line'
+ | 'patreon-line'
+ | 'microsoft-line'
+ | 'soundcloud-line'
+ | 'zcool-line'
+ | 'linkedin-box-line'
+ | 'app-store-line'
+ | 'finder-line'
+ | 'whatsapp-line'
+ | 'netflix-line'
+ | 'safari-line'
+ | 'twitter-line'
+ | 'github-line'
+ | 'mastodon-line'
+ | 'mastercard-line'
+ | 'medium-line'
+ | 'dribbble-line'
+ | 'baidu-line'
+ | 'coreos-line'
+ | 'evernote-line'
+ | 'visa-line'
+ | 'amazon-line'
+ | 'spectrum-line'
+ | 'line-line'
+ | 'spotify-line'
+ | 'weibo-line'
+ | 'lightbulb-flash-line'
+ | 'door-lock-box-line'
+ | 'wheelchair-line'
+ | 'knife-blood-line'
+ | 'cake-2-line'
+ | 'cake-3-line'
+ | 'seedling-line'
+ | 'umbrella-line'
+ | 'cactus-line'
+ | 'knife-line'
+ | 'outlet-line'
+ | 'key-2-line'
+ | 'door-line'
+ | 'voice-recognition-line'
+ | 'cake-line'
+ | 'leaf-line'
+ | 'plant-line'
+ | 'plug-2-line'
+ | 'lightbulb-line'
+ | 'scales-3-line'
+ | 'scales-2-line'
+ | 'sword-line'
+ | 'fridge-line'
+ | 'recycle-line'
+ | 'boxing-line'
+ | 'ping-pong-line'
+ | 'bell-line'
+ | 't-shirt-line'
+ | 'scales-line'
+ | 'billiards-line'
+ | 'shirt-line'
+ | 't-shirt-air-line'
+ | 'character-recognition-line'
+ | 'door-open-line'
+ | 'reserved-line'
+ | 'game-line'
+ | 'key-line'
+ | 'plug-line'
+ | 'outlet-2-line'
+ | 'door-closed-line'
+ | 'basketball-line'
+ | 'door-lock-line'
+ | 'football-line'
+ | 'handbag-line'
+ | 't-shirt-2-line'
+ | 'user-voice-line'
+ | 'travesti-line'
+ | 'open-arm-line'
+ | 'emotion-unhappy-line'
+ | 'aliens-line'
+ | 'spy-line'
+ | 'user-unfollow-line'
+ | 'user-2-line'
+ | 'skull-2-line'
+ | 'user-3-line'
+ | 'user-heart-line'
+ | 'account-pin-circle-line'
+ | 'user-star-line'
+ | 'robot-line'
+ | 'emotion-2-line'
+ | 'admin-line'
+ | 'bear-smile-line'
+ | 'account-circle-line'
+ | 'user-shared-2-line'
+ | 'user-location-line'
+ | 'user-received-line'
+ | 'women-line'
+ | 'emotion-laugh-line'
+ | 'ghost-line'
+ | 'body-scan-line'
+ | 'user-follow-line'
+ | 'user-5-line'
+ | 'user-4-line'
+ | 'team-line'
+ | 'parent-line'
+ | 'ghost-smile-line'
+ | 'user-line'
+ | 'men-line'
+ | 'user-settings-line'
+ | 'criminal-line'
+ | 'group-2-line'
+ | 'emotion-sad-line'
+ | 'star-smile-line'
+ | 'group-line'
+ | 'account-pin-box-line'
+ | 'user-smile-line'
+ | 'account-box-line'
+ | 'user-shared-line'
+ | 'user-6-line'
+ | 'user-search-line'
+ | 'emotion-line'
+ | 'emotion-normal-line'
+ | 'user-received-2-line'
+ | 'user-add-line'
+ | 'genderless-line'
+ | 'contacts-line'
+ | 'emotion-happy-line'
+ | 'ghost-2-line'
+ | 'skull-line'
+ | 'mickey-line'
+ | 'folder-shared-line'
+ | 'file-paper-2-line'
+ | 'folder-history-line'
+ | 'folder-download-line'
+ | 'file-upload-line'
+ | 'file-info-line'
+ | 'file-line'
+ | 'task-line'
+ | 'folder-user-line'
+ | 'folder-upload-line'
+ | 'book-3-line'
+ | 'book-2-line'
+ | 'book-mark-line'
+ | 'folders-line'
+ | 'file-hwp-line'
+ | 'file-edit-line'
+ | 'file-search-line'
+ | 'file-excel-2-line'
+ | 'file-music-line'
+ | 'file-copy-2-line'
+ | 'markdown-line'
+ | 'file-history-line'
+ | 'bill-line'
+ | 'folder-5-line'
+ | 'folder-4-line'
+ | 'file-settings-line'
+ | 'folder-open-line'
+ | 'file-ppt-2-line'
+ | 'file-word-line'
+ | 'file-mark-line'
+ | 'file-pdf-line'
+ | 'folder-chart-2-line'
+ | 'file-ppt-line'
+ | 'book-line'
+ | 'file-excel-line'
+ | 'folder-keyhole-line'
+ | 'folder-line'
+ | 'file-shred-line'
+ | 'contacts-book-upload-line'
+ | 'newspaper-line'
+ | 'file-code-line'
+ | 'folder-2-line'
+ | 'folder-3-line'
+ | 'file-paper-line'
+ | 'file-cloud-line'
+ | 'folder-settings-line'
+ | 'folder-warning-line'
+ | 'book-read-line'
+ | 'file-download-line'
+ | 'sticky-note-2-line'
+ | 'pages-line'
+ | 'folder-lock-line'
+ | 'file-warning-line'
+ | 'file-chart-2-line'
+ | 'contacts-book-line'
+ | 'draft-line'
+ | 'article-line'
+ | 'folder-music-line'
+ | 'file-forbid-line'
+ | 'booklet-line'
+ | 'file-shield-line'
+ | 'folder-shield-line'
+ | 'folder-forbid-line'
+ | 'folder-zip-line'
+ | 'folder-shield-2-line'
+ | 'folder-add-line'
+ | 'folder-received-line'
+ | 'file-copy-line'
+ | 'file-zip-line'
+ | 'folder-transfer-line'
+ | 'survey-line'
+ | 'file-list-line'
+ | 'file-add-line'
+ | 'file-lock-line'
+ | 'file-chart-line'
+ | 'file-2-line'
+ | 'file-3-line'
+ | 'todo-line'
+ | 'numbers-line'
+ | 'file-transfer-line'
+ | 'contacts-book-2-line'
+ | 'folder-info-line'
+ | 'clipboard-line'
+ | 'file-damage-line'
+ | 'file-text-line'
+ | 'book-open-line'
+ | 'file-4-line'
+ | 'file-user-line'
+ | 'file-gif-line'
+ | 'sticky-note-line'
+ | 'file-reduce-line'
+ | 'file-word-2-line'
+ | 'folder-unknow-line'
+ | 'keynote-line'
+ | 'file-list-2-line'
+ | 'file-list-3-line'
+ | 'file-unknow-line'
+ | 'folder-reduce-line'
+ | 'folder-chart-line'
+ | 'file-shield-2-line'
+ | 'menu-line'
+ | 'share-box-line'
+ | 'check-line'
+ | 'delete-back-line'
+ | 'shield-star-line'
+ | 'arrow-go-back-line'
+ | 'radio-button-line'
+ | 'arrow-left-right-line'
+ | 'shield-keyhole-line'
+ | 'arrow-right-s-line'
+ | 'eye-off-line'
+ | 'arrow-drop-right-line'
+ | 'arrow-left-up-line'
+ | 'function-line'
+ | 'thumb-up-line'
+ | 'close-circle-line'
+ | 'search-2-line'
+ | 'eye-line'
+ | 'arrow-go-forward-line'
+ | 'star-line'
+ | 'checkbox-blank-circle-line'
+ | 'star-half-s-line'
+ | 'check-double-line'
+ | 'spam-3-line'
+ | 'spam-2-line'
+ | 'download-line'
+ | 'share-forward-line'
+ | 'menu-add-line'
+ | 'checkbox-circle-line'
+ | 'menu-5-line'
+ | 'menu-4-line'
+ | 'lock-password-line'
+ | 'more-line'
+ | 'download-2-line'
+ | 'shield-cross-line'
+ | 'alarm-line'
+ | 'settings-6-line'
+ | 'delete-bin-4-line'
+ | 'delete-bin-5-line'
+ | 'arrow-down-circle-line'
+ | 'eye-close-line'
+ | 'login-box-line'
+ | 'search-line'
+ | 'arrow-right-line'
+ | 'upload-cloud-line'
+ | 'checkbox-multiple-blank-line'
+ | 'download-cloud-2-line'
+ | 'add-box-line'
+ | 'logout-box-line'
+ | 'lock-2-line'
+ | 'upload-2-line'
+ | 'menu-2-line'
+ | 'menu-3-line'
+ | 'arrow-right-down-line'
+ | 'divide-line'
+ | 'filter-off-line'
+ | 'delete-bin-3-line'
+ | 'delete-bin-2-line'
+ | 'share-circle-line'
+ | 'star-s-line'
+ | 'search-eye-line'
+ | 'arrow-down-s-line'
+ | 'dashboard-line'
+ | 'timer-line'
+ | 'toggle-line'
+ | 'refresh-line'
+ | 'upload-cloud-2-line'
+ | 'arrow-down-line'
+ | 'settings-line'
+ | 'arrow-drop-left-line'
+ | 'share-line'
+ | 'arrow-up-line'
+ | 'logout-circle-r-line'
+ | 'shield-flash-line'
+ | 'error-warning-line'
+ | 'add-line'
+ | 'upload-line'
+ | 'checkbox-blank-line'
+ | 'login-circle-line'
+ | 'zoom-in-line'
+ | 'arrow-left-circle-line'
+ | 'download-cloud-line'
+ | 'arrow-up-s-line'
+ | 'settings-5-line'
+ | 'settings-4-line'
+ | 'add-circle-line'
+ | 'delete-bin-7-line'
+ | 'delete-bin-6-line'
+ | 'share-forward-2-line'
+ | 'filter-line'
+ | 'arrow-up-down-line'
+ | 'alarm-warning-line'
+ | 'shield-user-line'
+ | 'arrow-right-up-line'
+ | 'loader-4-line'
+ | 'loader-5-line'
+ | 'information-line'
+ | 'side-bar-line'
+ | 'delete-back-2-line'
+ | 'logout-circle-line'
+ | 'find-replace-line'
+ | 'checkbox-multiple-line'
+ | 'arrow-up-circle-line'
+ | 'menu-fold-line'
+ | 'spam-line'
+ | 'apps-line'
+ | 'loader-line'
+ | 'more-2-line'
+ | 'menu-unfold-line'
+ | 'logout-box-r-line'
+ | 'zoom-out-line'
+ | 'time-line'
+ | 'lock-unlock-line'
+ | 'arrow-left-s-line'
+ | 'close-line'
+ | 'question-line'
+ | 'notification-badge-line'
+ | 'arrow-left-down-line'
+ | 'delete-bin-line'
+ | 'shield-check-line'
+ | 'eye-2-line'
+ | 'external-link-line'
+ | 'timer-2-line'
+ | 'thumb-down-line'
+ | 'arrow-drop-up-line'
+ | 'history-line'
+ | 'apps-2-line'
+ | 'settings-2-line'
+ | 'settings-3-line'
+ | 'timer-flash-line'
+ | 'list-settings-line'
+ | 'arrow-left-line'
+ | 'subtract-line'
+ | 'checkbox-line'
+ | 'arrow-right-circle-line'
+ | 'arrow-drop-down-line'
+ | 'checkbox-indeterminate-line'
+ | 'forbid-line'
+ | 'loader-3-line'
+ | 'forbid-2-line'
+ | 'loader-2-line'
+ | 'indeterminate-circle-line'
+ | 'shield-line'
+ | 'lock-line'
+ | 'filter-2-line'
+ | 'filter-3-line'
+ | 'share-forward-box-line'
+ | 'alert-line'
+ | 'star-half-line'
+ | 'map-pin-2-line'
+ | 'map-pin-3-line'
+ | 'pushpin-2-line'
+ | 'map-line'
+ | 'gas-station-line'
+ | 'ship-line'
+ | 'restaurant-2-line'
+ | 'guide-line'
+ | 'walk-line'
+ | 'goblet-line'
+ | 'train-wifi-line'
+ | 'riding-line'
+ | 'steering-line'
+ | 'takeaway-line'
+ | 'passport-line'
+ | 'china-railway-line'
+ | 'pin-distance-line'
+ | 'oil-line'
+ | 'compass-4-line'
+ | 'car-washing-line'
+ | 'police-car-line'
+ | 'car-line'
+ | 'flight-land-line'
+ | 'truck-line'
+ | 'lifebuoy-line'
+ | 'flight-takeoff-line'
+ | 'map-pin-range-line'
+ | 'hotel-bed-line'
+ | 'compass-3-line'
+ | 'compass-2-line'
+ | 'direction-line'
+ | 'restaurant-line'
+ | 'charging-pile-2-line'
+ | 'map-pin-5-line'
+ | 'map-pin-4-line'
+ | 'compass-line'
+ | 'navigation-line'
+ | 'subway-wifi-line'
+ | 'map-2-line'
+ | 'taxi-wifi-line'
+ | 'ship-2-line'
+ | 'suitcase-line'
+ | 'steering-2-line'
+ | 'caravan-line'
+ | 'earth-line'
+ | 'pushpin-line'
+ | 'plane-line'
+ | 'map-pin-add-line'
+ | 'train-line'
+ | 'map-pin-user-line'
+ | 'taxi-line'
+ | 'parking-line'
+ | 'luggage-deposit-line'
+ | 'globe-line'
+ | 'bus-line'
+ | 'parking-box-line'
+ | 'compass-discover-line'
+ | 'cup-line'
+ | 'sailboat-line'
+ | 'map-pin-line'
+ | 'rocket-line'
+ | 'e-bike-line'
+ | 'treasure-map-line'
+ | 'charging-pile-line'
+ | 'barricade-line'
+ | 'motorbike-line'
+ | 'run-line'
+ | 'anchor-line'
+ | 'bus-wifi-line'
+ | 'roadster-line'
+ | 'bus-2-line'
+ | 'map-pin-time-line'
+ | 'signal-tower-line'
+ | 'suitcase-3-line'
+ | 'suitcase-2-line'
+ | 'route-line'
+ | 'rocket-2-line'
+ | 'e-bike-2-line'
+ | 'space-ship-line'
+ | 'traffic-light-line'
+ | 'footprint-line'
+ | 'bike-line'
+ | 'subway-line'
+ | 'luggage-cart-line'
+ | 'road-map-line'
+ | 'money-euro-circle-line'
+ | 'coins-line'
+ | 'coin-line'
+ | 'swap-line-1'
+ | 'exchange-funds-fill'
+ | 'price-tag-line'
+ | 'money-cny-circle-line'
+ | 'shopping-cart-2-line'
+ | 'coupon-5-line'
+ | 'coupon-4-line'
+ | 'safe-line'
+ | 'gift-line'
+ | 'money-dollar-box-line'
+ | 'bank-card-2-line'
+ | 'shopping-bag-line'
+ | 'vip-crown-2-line'
+ | 'exchange-line'
+ | 'ticket-line'
+ | 'money-pound-circle-line'
+ | 'money-cny-box-line'
+ | 'refund-line'
+ | 'swap-line'
+ | 'currency-line'
+ | 'exchange-box-line'
+ | 'swap-box-line'
+ | 'safe-2-line'
+ | 'coupon-line'
+ | 'refund-2-line'
+ | 'gift-2-line'
+ | 'coupon-2-line'
+ | 'coupon-3-line'
+ | 'money-pound-box-line'
+ | 'bank-card-line'
+ | 'copper-coin-line'
+ | 'shopping-basket-2-line'
+ | 'hand-coin-line'
+ | 'money-dollar-circle-line'
+ | 'exchange-dollar-line'
+ | 'stock-line'
+ | 'shopping-bag-3-line'
+ | 'shopping-bag-2-line'
+ | 'ticket-2-line'
+ | 'trophy-line'
+ | 'wallet-3-line'
+ | 'wallet-2-line'
+ | 'vip-diamond-line'
+ | 'exchange-cny-line'
+ | 'money-euro-box-line'
+ | 'wallet-line'
+ | 'auction-line'
+ | 'water-flash-line'
+ | 'copper-diamond-line'
+ | 'percent-line'
+ | 'vip-line'
+ | 'funds-line'
+ | 'shopping-cart-line'
+ | 'red-packet-line'
+ | 'price-tag-2-line'
+ | 'price-tag-3-line'
+ | 'hand-heart-line'
+ | 'vip-crown-line'
+ | 'secure-payment-line'
+ | 'shopping-basket-line'
+ | 'hours-line'
+ | 'bit-coin-line'
+ | 'increase-decrease-line'
+ | 'funds-box-line'
+ | 'sensor-line'
+ | 'macbook-line'
+ | 'save-3-line'
+ | 'save-2-line'
+ | 'install-line'
+ | 'signal-wifi-2-line'
+ | 'signal-wifi-3-line'
+ | 'rotate-lock-line'
+ | 'router-line'
+ | 'restart-line'
+ | 'database-2-line'
+ | 'scan-line'
+ | 'qr-scan-line'
+ | 'hard-drive-line'
+ | 'battery-share-line'
+ | 'battery-2-charge-line'
+ | 'bluetooth-connect-line'
+ | 'qr-code-line'
+ | 'shut-down-line'
+ | 'sim-card-2-line'
+ | 'server-line'
+ | 'mac-line'
+ | 'device-recover-line'
+ | 'battery-charge-line'
+ | 'gradienter-line'
+ | 'sd-card-line'
+ | 'battery-line'
+ | 'smartphone-line'
+ | 'tablet-line'
+ | 'tv-2-line'
+ | 'device-line'
+ | 'remote-control-2-line'
+ | 'dual-sim-1-line'
+ | 'fingerprint-line'
+ | 'rss-line'
+ | 'barcode-box-line'
+ | 'cellphone-line'
+ | 'qr-scan-2-line'
+ | 'bluetooth-line'
+ | 'gps-line'
+ | 'keyboard-box-line'
+ | 'phone-lock-line'
+ | 'scan-2-line'
+ | 'cpu-line'
+ | 'cast-line'
+ | 'gamepad-line'
+ | 'mouse-line'
+ | 'battery-low-line'
+ | 'battery-saver-line'
+ | 'remote-control-line'
+ | 'u-disk-line'
+ | 'tv-line'
+ | 'airplay-line'
+ | 'uninstall-line'
+ | 'signal-wifi-1-line'
+ | 'radar-line'
+ | 'save-line'
+ | 'signal-wifi-error-line'
+ | 'hard-drive-2-line'
+ | 'keyboard-line'
+ | 'wifi-off-line'
+ | 'dashboard-2-line'
+ | 'dashboard-3-line'
+ | 'dual-sim-2-line'
+ | 'database-line'
+ | 'battery-2-line'
+ | 'signal-wifi-off-line'
+ | 'phone-find-line'
+ | 'wireless-charging-line'
+ | 'hotspot-line'
+ | 'computer-line'
+ | 'signal-wifi-line'
+ | 'sd-card-mini-line'
+ | 'usb-line'
+ | 'wifi-line'
+ | 'barcode-line'
+ | 'fingerprint-2-line'
+ | 'base-station-line'
+ | 'sim-card-line'
+ | 'phone-line'
+ | 'temp-hot-line'
+ | 'cloudy-2-line'
+ | 'cloudy-line'
+ | 'haze-line'
+ | 'windy-line'
+ | 'moon-clear-line'
+ | 'fire-line'
+ | 'thunderstorms-line'
+ | 'moon-cloudy-line'
+ | 'sun-foggy-line'
+ | 'showers-line'
+ | 'typhoon-line'
+ | 'celsius-line'
+ | 'haze-2-line'
+ | 'mist-line'
+ | 'flashlight-line'
+ | 'rainy-line'
+ | 'rainbow-line'
+ | 'sun-line'
+ | 'tornado-line'
+ | 'sun-cloudy-line'
+ | 'fahrenheit-line'
+ | 'hail-line'
+ | 'flood-line'
+ | 'temp-cold-line'
+ | 'heavy-showers-line'
+ | 'meteor-line'
+ | 'cloud-windy-line'
+ | 'blaze-line'
+ | 'earthquake-line'
+ | 'snowy-line'
+ | 'drizzle-line'
+ | 'foggy-line'
+ | 'moon-line'
+ | 'moon-foggy-line'
+ | 'chat-1-line'
+ | 'chat-quote-line'
+ | 'chat-smile-3-line'
+ | 'chat-smile-2-line'
+ | 'chat-follow-up-line'
+ | 'chat-upload-line'
+ | 'chat-off-line'
+ | 'chat-voice-line'
+ | 'chat-poll-line'
+ | 'chat-history-line'
+ | 'chat-delete-line'
+ | 'chat-heart-line'
+ | 'questionnaire-line'
+ | 'feedback-line'
+ | 'message-3-line'
+ | 'message-2-line'
+ | 'chat-forward-line'
+ | 'video-chat-line'
+ | 'chat-check-line'
+ | 'message-line'
+ | 'chat-settings-line'
+ | 'chat-2-line'
+ | 'chat-3-line'
+ | 'question-answer-line'
+ | 'chat-4-line'
+ | 'chat-new-line'
+ | 'discuss-line'
+ | 'chat-private-line'
+ | 'chat-download-line'
+ | 'chat-smile-line'
+ | 'underline'
+ | 'delete-row'
+ | 'subscript'
+ | 'single-quotes-r'
+ | 'translate'
+ | 'omega'
+ | 'heading'
+ | 'strikethrough'
+ | 'wubi-input'
+ | 'bring-to-front'
+ | 'align-bottom'
+ | 'mind-map'
+ | 'align-justify'
+ | 'page-separator'
+ | 'a-b'
+ | 'flow-chart'
+ | 'font-size'
+ | 'translate-2'
+ | 'link'
+ | 'space'
+ | 'sort-desc'
+ | 'align-vertically'
+ | 'double-quotes-r'
+ | 'insert-column-left'
+ | 'link-m'
+ | 'insert-column-right'
+ | 'number-8'
+ | 'rounded-corner'
+ | 'link-unlink-m'
+ | 'organization-chart'
+ | 'paragraph'
+ | 'strikethrough-2'
+ | 'merge-cells-vertical'
+ | 'number-9'
+ | 'list-ordered'
+ | 'bold'
+ | 'functions'
+ | 'text-direction-r'
+ | 'line-height'
+ | 'input-cursor-move'
+ | 'code-view'
+ | 'number-7'
+ | 'h-3'
+ | 'text'
+ | 'align-right'
+ | 'h-2'
+ | 'number-6'
+ | 'merge-cells-horizontal'
+ | 'number-4'
+ | 'superscript'
+ | 'insert-row-bottom'
+ | 'double-quotes-l'
+ | 'font-color'
+ | 'h-1'
+ | 'number-5'
+ | 'separator'
+ | 'number-1'
+ | 'h-5'
+ | 'split-cells-vertical'
+ | 'split-cells-horizontal'
+ | 'pinyin-input'
+ | 'subscript-2'
+ | 'h-4'
+ | 'hashtag'
+ | 'number-0'
+ | 'delete-column'
+ | 'number-2'
+ | 'h-6'
+ | 'bring-forward'
+ | 'insert-row-top'
+ | 'text-direction-l'
+ | 'table-2'
+ | 'number-3'
+ | 'send-to-back'
+ | 'sort-asc'
+ | 'format-clear'
+ | 'question-mark'
+ | 'indent-increase'
+ | 'english-input'
+ | 'single-quotes-l'
+ | 'italic'
+ | 'align-center'
+ | 'text-wrap'
+ | 'emphasis'
+ | 'list-unordered'
+ | 'superscript-2'
+ | 'list-check'
+ | 'emphasis-cn'
+ | 'node-tree'
+ | 'indent-decrease'
+ | 'asterisk'
+ | 'list-check-2'
+ | 'text-spacing'
+ | 'attachment-2'
+ | 'send-backward'
+ | 'align-top'
+ | 'link-unlink'
+ | 'font-size-2'
+ | 'align-left'
+ | 'image-2-line'
+ | 'play-circle-line'
+ | 'fullscreen-exit-line'
+ | 'camera-switch-line'
+ | 'pause-mini-line'
+ | 'rhythm-line'
+ | 'tape-line'
+ | 'radio-2-line'
+ | 'dvd-line'
+ | 'play-list-add-line'
+ | 'pause-circle-line'
+ | 'play-mini-line'
+ | 'webcam-line'
+ | 'picture-in-picture-2-line'
+ | 'fullscreen-line'
+ | 'skip-forward-line'
+ | 'skip-back-line'
+ | 'hd-line'
+ | 'dv-line'
+ | 'music-2-line'
+ | 'speaker-3-line'
+ | 'speaker-2-line'
+ | 'stop-mini-line'
+ | 'volume-off-vibrate-line'
+ | 'closed-captioning-line'
+ | 'hq-line'
+ | 'shuffle-line'
+ | 'notification-off-line'
+ | 'surround-sound-line'
+ | 'repeat-2-line'
+ | 'stop-circle-line'
+ | 'equalizer-line'
+ | 'record-circle-line'
+ | 'gallery-upload-line'
+ | 'voiceprint-line'
+ | 'picture-in-picture-line'
+ | 'stop-line'
+ | 'speaker-line'
+ | 'image-edit-line'
+ | 'notification-4-line'
+ | 'skip-back-mini-line'
+ | 'k-line'
+ | 'aspect-ratio-line'
+ | 'music-line'
+ | 'phone-camera-line'
+ | 'video-download-line'
+ | 'repeat-one-line'
+ | 'pause-line'
+ | 'video-line'
+ | 'sound-module-line'
+ | 'broadcast-line'
+ | 'video-add-line'
+ | 'volume-down-line'
+ | 'rewind-mini-line'
+ | 'speed-line'
+ | 'order-play-line'
+ | 'speed-mini-line'
+ | 'clapperboard-line'
+ | 'headphone-line'
+ | 'play-line'
+ | 'camera-lens-fill'
+ | 'film-line'
+ | 'mic-line'
+ | 'notification-line'
+ | 'album-line'
+ | 'skip-forward-mini-line'
+ | 'radio-line'
+ | 'video-upload-line'
+ | 'volume-up-line'
+ | 'vidicon-2-line'
+ | 'image-line'
+ | 'volume-mute-line'
+ | 'disc-line'
+ | 'landscape-line'
+ | 'mic-2-line'
+ | 'mic-off-line'
+ | 'picture-in-picture-exit-line'
+ | 'repeat-line'
+ | 'volume-vibrate-line'
+ | 'camera-line'
+ | 'eject-line'
+ | 'image-add-line'
+ | 'gallery-line'
+ | 'polaroid-2-line'
+ | 'movie-line'
+ | 'notification-2-line'
+ | 'notification-3-line'
+ | 'movie-2-line'
+ | 'mv-line'
+ | 'rewind-line'
+ | 'play-list-2-line'
+ | 'live-line'
+ | 'polaroid-line'
+ | 'camera-off-line'
+ | 'play-list-line'
+ | 'camera-3-line'
+ | 'camera-2-line'
+ | 'vidicon-line'
+ | 'layout-3-fill'
+ | 'layout-2-fill'
+ | 'layout-top-2-fill'
+ | 'contrast-2-fill'
+ | 'focus-fill'
+ | 'layout-left-fill'
+ | 'pencil-ruler-fill'
+ | 'layout-bottom-2-fill'
+ | 'grid-fill'
+ | 'slice-fill'
+ | 'scissors-fill'
+ | 'edit-box-fill'
+ | 'edit-fill'
+ | 'layout-grid-fill'
+ | 'anticlockwise-2-fill'
+ | 'paint-brush-fill'
+ | 'ink-bottle-fill'
+ | 'edit-circle-fill'
+ | 'mark-pen-fill'
+ | 'clockwise-fill'
+ | 'layout-right-2-fill'
+ | 'drag-drop-fill'
+ | 'layout-bottom-fill'
+ | 'drop-fill'
+ | 'magic-fill'
+ | 'layout-4-fill'
+ | 'layout-5-fill'
+ | 'pen-nib-fill'
+ | 'anticlockwise-fill'
+ | 'crop-2-fill'
+ | 'compasses-fill'
+ | 'contrast-drop-fill'
+ | 'compasses-2-fill'
+ | 'table-alt-fill'
+ | 'layout-top-fill'
+ | 'pantone-fill'
+ | 'clockwise-2-fill'
+ | 't-box-fill'
+ | 'tools-fill'
+ | 'pencil-fill'
+ | 'scissors-cut-fill'
+ | 'quill-pen-fill'
+ | 'artboard-fill'
+ | 'markup-fill'
+ | 'brush-4-fill'
+ | 'layout-masonry-fill'
+ | 'paint-fill'
+ | 'sip-fill'
+ | 'input-method-fill'
+ | 'artboard-2-fill'
+ | 'shape-fill'
+ | 'crop-fill'
+ | 'drag-move-2-fill'
+ | 'collage-fill'
+ | 'contrast-drop-2-fill'
+ | 'edit-2-fill'
+ | 'focus-3-fill'
+ | 'focus-2-fill'
+ | 'shape-2-fill'
+ | 'ruler-fill'
+ | 'layout-row-fill'
+ | 'layout-6-fill'
+ | 'palette-fill'
+ | 'contrast-fill'
+ | 'eraser-fill'
+ | 'drag-move-fill'
+ | 'ruler-2-fill'
+ | 'ball-pen-fill'
+ | 'layout-column-fill'
+ | 'scissors-2-fill'
+ | 'brush-fill'
+ | 'layout-left-2-fill'
+ | 'layout-fill'
+ | 'screenshot-fill'
+ | 'table-fill'
+ | 'brush-2-fill'
+ | 'brush-3-fill'
+ | 'hammer-fill'
+ | 'screenshot-2-fill'
+ | 'pencil-ruler-2-fill'
+ | 'blur-off-fill'
+ | 'layout-right-fill'
+ | 'home-2-fill'
+ | 'home-3-fill'
+ | 'home-8-fill'
+ | 'home-smile-2-fill'
+ | 'government-fill'
+ | 'home-fill'
+ | 'home-heart-fill'
+ | 'hospital-fill'
+ | 'home-5-fill'
+ | 'home-4-fill'
+ | 'community-fill'
+ | 'ancient-pavilion-fill'
+ | 'ancient-gate-fill'
+ | 'home-gear-fill'
+ | 'bank-fill'
+ | 'store-fill'
+ | 'building-2-fill'
+ | 'building-3-fill'
+ | 'building-fill'
+ | 'home-6-fill'
+ | 'home-7-fill'
+ | 'building-4-fill'
+ | 'home-smile-fill'
+ | 'store-2-fill'
+ | 'store-3-fill'
+ | 'hotel-fill'
+ | 'home-wifi-fill'
+ | 'git-branch-fill'
+ | 'braces-fill'
+ | 'git-commit-fill'
+ | 'css3-fill'
+ | 'git-repository-commits-fill'
+ | 'terminal-box-fill'
+ | 'cursor-fill'
+ | 'code-fill'
+ | 'git-repository-private-fill'
+ | 'command-fill'
+ | 'git-repository-fill'
+ | 'git-merge-fill'
+ | 'code-s-fill'
+ | 'brackets-fill'
+ | 'git-pull-request-fill'
+ | 'bug-fill'
+ | 'code-box-fill'
+ | 'terminal-window-fill'
+ | 'html5-fill'
+ | 'terminal-fill'
+ | 'parentheses-fill'
+ | 'bug-2-fill'
+ | 'code-s-slash-fill'
+ | 'medicine-bottle-fill'
+ | 'first-aid-kit-fill'
+ | 'hearts-fill'
+ | 'zzz-fill'
+ | 'dislike-fill'
+ | 'thermometer-fill'
+ | 'stethoscope-fill'
+ | 'lungs-fill'
+ | 'flask-fill'
+ | 'nurse-fill'
+ | 'capsule-fill'
+ | 'empathize-fill'
+ | 'heart-add-fill'
+ | 'mental-health-fill'
+ | 'syringe-fill'
+ | 'pulse-fill'
+ | 'psychotherapy-fill'
+ | 'dossier-fill'
+ | 'virus-fill'
+ | 'heart-fill'
+ | 'infrared-thermometer-fill'
+ | 'health-book-fill'
+ | 'test-tube-fill'
+ | 'heart-pulse-fill'
+ | 'hand-sanitizer-fill'
+ | 'microscope-fill'
+ | 'rest-time-fill'
+ | 'surgical-mask-fill'
+ | 'heart-3-fill'
+ | 'heart-2-fill'
+ | 'inbox-fill'
+ | 'reply-all-fill'
+ | 'creative-commons-nc-fill'
+ | 'mail-star-fill'
+ | 'slideshow-fill'
+ | 'briefcase-4-fill'
+ | 'briefcase-5-fill'
+ | 'copyleft-fill'
+ | 'links-fill'
+ | 'archive-drawer-fill'
+ | 'pie-chart-fill'
+ | 'printer-fill'
+ | 'global-fill'
+ | 'mail-volume-fill'
+ | 'mail-add-fill'
+ | 'trademark-fill'
+ | 'mail-unread-fill'
+ | 'bar-chart-fill'
+ | 'send-plane-2-fill'
+ | 'customer-service-fill'
+ | 'medal-fill'
+ | 'window-2-fill'
+ | 'stack-fill'
+ | 'bookmark-fill'
+ | 'projector-2-fill'
+ | 'award-fill'
+ | 'mail-forbid-fill'
+ | 'creative-commons-fill'
+ | 'creative-commons-sa-fill'
+ | 'bar-chart-box-fill'
+ | 'bar-chart-horizontal-fill'
+ | 'window-fill'
+ | 'at-fill'
+ | 'mail-send-fill'
+ | 'profile-fill'
+ | 'cloud-off-fill'
+ | 'mail-check-fill'
+ | 'advertisement-fill'
+ | 'creative-commons-nd-fill'
+ | 'briefcase-3-fill'
+ | 'briefcase-2-fill'
+ | 'printer-cloud-fill'
+ | 'bubble-chart-fill'
+ | 'calendar-check-fill'
+ | 'inbox-archive-fill'
+ | 'reply-fill'
+ | 'bookmark-2-fill'
+ | 'bookmark-3-fill'
+ | 'bar-chart-2-fill'
+ | 'creative-commons-zero-fill'
+ | 'copyright-fill'
+ | 'medal-2-fill'
+ | 'mail-close-fill'
+ | 'honour-fill'
+ | 'mail-download-fill'
+ | 'customer-service-2-fill'
+ | 'cloud-fill'
+ | 'line-chart-fill'
+ | 'slideshow-3-fill'
+ | 'slideshow-2-fill'
+ | 'creative-commons-by-fill'
+ | 'inbox-unarchive-fill'
+ | 'calendar-2-fill'
+ | 'projector-fill'
+ | 'calendar-event-fill'
+ | 'mail-open-fill'
+ | 'pie-chart-2-fill'
+ | 'attachment-fill'
+ | 'calendar-fill'
+ | 'mail-settings-fill'
+ | 'pie-chart-box-fill'
+ | 'send-plane-fill'
+ | 'flag-fill'
+ | 'flag-2-fill'
+ | 'calendar-todo-fill'
+ | 'slideshow-4-fill'
+ | 'calculator-fill'
+ | 'archive-fill'
+ | 'mail-lock-fill'
+ | 'service-fill'
+ | 'registered-fill'
+ | 'bar-chart-grouped-fill'
+ | 'mail-fill'
+ | 'record-mail-fill'
+ | 'briefcase-fill'
+ | 'unsplash-fill'
+ | 'skype-fill'
+ | 'tumblr-fill'
+ | 'google-play-fill'
+ | 'paypal-fill'
+ | 'dingding-fill'
+ | 'switch-fill'
+ | 'facebook-box-fill'
+ | 'edge-fill'
+ | 'alipay-fill'
+ | 'reddit-fill'
+ | 'drive-fill'
+ | 'taobao-fill'
+ | 'linkedin-fill'
+ | 'npmjs-fill'
+ | 'vuejs-fill'
+ | 'android-fill'
+ | 'youtube-fill'
+ | 'kakao-talk-fill'
+ | 'firefox-fill'
+ | 'reactjs-fill'
+ | 'twitch-fill'
+ | 'dropbox-fill'
+ | 'instagram-fill'
+ | 'messenger-fill'
+ | 'bilibili-fill'
+ | 'steam-fill'
+ | 'remixicon-fill'
+ | 'gitlab-fill'
+ | 'wechat-fill'
+ | 'opera-fill'
+ | 'stack-overflow-fill'
+ | 'snapchat-fill'
+ | 'open-source-fill'
+ | 'wechat-pay-fill'
+ | 'mini-program-fill'
+ | 'telegram-fill'
+ | 'gatsby-fill'
+ | 'google-fill'
+ | 'windows-fill'
+ | 'ubuntu-fill'
+ | 'ie-fill'
+ | 'facebook-circle-fill'
+ | 'vimeo-fill'
+ | 'behance-fill'
+ | 'product-hunt-fill'
+ | 'invision-fill'
+ | 'pinterest-fill'
+ | 'douban-fill'
+ | 'qq-fill'
+ | 'wechat-2-fill'
+ | 'xbox-fill'
+ | 'playstation-fill'
+ | 'mastercard-fill'
+ | 'medium-fill'
+ | 'dribbble-fill'
+ | 'baidu-fill'
+ | 'coreos-fill'
+ | 'whatsapp-fill'
+ | 'netflix-fill'
+ | 'twitter-fill'
+ | 'mastodon-fill'
+ | 'github-fill'
+ | 'safari-fill'
+ | 'spotify-fill'
+ | 'spectrum-fill'
+ | 'line-fill'
+ | 'weibo-fill'
+ | 'evernote-fill'
+ | 'visa-fill'
+ | 'amazon-fill'
+ | 'slack-fill'
+ | 'stackshare-fill'
+ | 'facebook-fill'
+ | 'discord-fill'
+ | 'xing-fill'
+ | 'netease-cloud-music-fill'
+ | 'centos-fill'
+ | 'pixelfed-fill'
+ | 'disqus-fill'
+ | 'apple-fill'
+ | 'zhihu-fill'
+ | 'trello-fill'
+ | 'angularjs-fill'
+ | 'honor-of-kings-fill'
+ | 'zcool-fill'
+ | 'soundcloud-fill'
+ | 'linkedin-box-fill'
+ | 'app-store-fill'
+ | 'finder-fill'
+ | 'codepen-fill'
+ | 'chrome-fill'
+ | 'flutter-fill'
+ | 'patreon-fill'
+ | 'microsoft-fill'
+ | 'outlet-fill'
+ | 'key-2-fill'
+ | 'door-fill'
+ | 'knife-fill'
+ | 'cactus-fill'
+ | 'plant-fill'
+ | 'scales-2-fill'
+ | 'scales-3-fill'
+ | 'plug-2-fill'
+ | 'lightbulb-fill'
+ | 'voice-recognition-fill'
+ | 'cake-fill'
+ | 'leaf-fill'
+ | 'lightbulb-flash-fill'
+ | 'door-lock-box-fill'
+ | 'cake-3-fill'
+ | 'cake-2-fill'
+ | 'seedling-fill'
+ | 'umbrella-fill'
+ | 'wheelchair-fill'
+ | 'knife-blood-fill'
+ | 'plug-fill'
+ | 'outlet-2-fill'
+ | 'key-fill'
+ | 'door-closed-fill'
+ | 'character-recognition-fill'
+ | 'door-open-fill'
+ | 'reserved-fill'
+ | 'game-fill'
+ | 't-shirt-2-fill'
+ | 'basketball-fill'
+ | 'football-fill'
+ | 'door-lock-fill'
+ | 'handbag-fill'
+ | 'sword-fill'
+ | 'fridge-fill'
+ | 'boxing-fill'
+ | 'recycle-fill'
+ | 'bell-fill'
+ | 'ping-pong-fill'
+ | 't-shirt-fill'
+ | 't-shirt-air-fill'
+ | 'scales-fill'
+ | 'billiards-fill'
+ | 'shirt-fill'
+ | 'account-circle-fill'
+ | 'user-shared-2-fill'
+ | 'user-location-fill'
+ | 'user-star-fill'
+ | 'robot-fill'
+ | 'emotion-2-fill'
+ | 'bear-smile-fill'
+ | 'admin-fill'
+ | 'ghost-fill'
+ | 'body-scan-fill'
+ | 'user-4-fill'
+ | 'user-5-fill'
+ | 'user-follow-fill'
+ | 'user-received-fill'
+ | 'women-fill'
+ | 'emotion-laugh-fill'
+ | 'user-unfollow-fill'
+ | 'user-3-fill'
+ | 'skull-2-fill'
+ | 'user-2-fill'
+ | 'travesti-fill'
+ | 'user-voice-fill'
+ | 'emotion-unhappy-fill'
+ | 'open-arm-fill'
+ | 'aliens-fill'
+ | 'spy-fill'
+ | 'account-pin-circle-fill'
+ | 'user-heart-fill'
+ | 'account-box-fill'
+ | 'user-shared-fill'
+ | 'user-6-fill'
+ | 'ghost-2-fill'
+ | 'mickey-fill'
+ | 'skull-fill'
+ | 'emotion-fill'
+ | 'user-search-fill'
+ | 'user-add-fill'
+ | 'emotion-normal-fill'
+ | 'user-received-2-fill'
+ | 'emotion-happy-fill'
+ | 'contacts-fill'
+ | 'genderless-fill'
+ | 'men-fill'
+ | 'parent-fill'
+ | 'team-fill'
+ | 'ghost-smile-fill'
+ | 'user-fill'
+ | 'star-smile-fill'
+ | 'group-fill'
+ | 'account-pin-box-fill'
+ | 'user-smile-fill'
+ | 'user-settings-fill'
+ | 'criminal-fill'
+ | 'emotion-sad-fill'
+ | 'group-2-fill'
+ | 'folder-fill'
+ | 'file-excel-fill'
+ | 'folder-keyhole-fill'
+ | 'contacts-book-upload-fill'
+ | 'file-shred-fill'
+ | 'folder-3-fill'
+ | 'folder-2-fill'
+ | 'newspaper-fill'
+ | 'file-code-fill'
+ | 'folder-settings-fill'
+ | 'folder-warning-fill'
+ | 'file-paper-fill'
+ | 'file-cloud-fill'
+ | 'file-word-fill'
+ | 'file-mark-fill'
+ | 'folder-open-fill'
+ | 'file-ppt-2-fill'
+ | 'file-ppt-fill'
+ | 'file-pdf-fill'
+ | 'folder-chart-2-fill'
+ | 'book-fill'
+ | 'draft-fill'
+ | 'contacts-book-fill'
+ | 'file-chart-2-fill'
+ | 'folder-music-fill'
+ | 'article-fill'
+ | 'book-read-fill'
+ | 'file-download-fill'
+ | 'sticky-note-2-fill'
+ | 'pages-fill'
+ | 'file-warning-fill'
+ | 'folder-lock-fill'
+ | 'file-fill'
+ | 'task-fill'
+ | 'folder-user-fill'
+ | 'book-mark-fill'
+ | 'folder-upload-fill'
+ | 'book-2-fill'
+ | 'book-3-fill'
+ | 'folder-shared-fill'
+ | 'folder-history-fill'
+ | 'folder-download-fill'
+ | 'file-paper-2-fill'
+ | 'file-upload-fill'
+ | 'file-info-fill'
+ | 'file-excel-2-fill'
+ | 'file-edit-fill'
+ | 'file-search-fill'
+ | 'markdown-fill'
+ | 'file-history-fill'
+ | 'file-copy-2-fill'
+ | 'file-music-fill'
+ | 'bill-fill'
+ | 'folder-4-fill'
+ | 'folder-5-fill'
+ | 'file-settings-fill'
+ | 'folders-fill'
+ | 'file-hwp-fill'
+ | 'clipboard-fill'
+ | 'file-damage-fill'
+ | 'file-text-fill'
+ | 'book-open-fill'
+ | 'file-4-fill'
+ | 'file-gif-fill'
+ | 'sticky-note-fill'
+ | 'file-user-fill'
+ | 'file-transfer-fill'
+ | 'numbers-fill'
+ | 'folder-info-fill'
+ | 'contacts-book-2-fill'
+ | 'file-unknow-fill'
+ | 'folder-chart-fill'
+ | 'folder-reduce-fill'
+ | 'file-shield-2-fill'
+ | 'file-reduce-fill'
+ | 'file-word-2-fill'
+ | 'keynote-fill'
+ | 'folder-unknow-fill'
+ | 'file-list-3-fill'
+ | 'file-list-2-fill'
+ | 'folder-shield-fill'
+ | 'folder-forbid-fill'
+ | 'folder-zip-fill'
+ | 'folder-shield-2-fill'
+ | 'folder-received-fill'
+ | 'file-copy-fill'
+ | 'folder-add-fill'
+ | 'file-forbid-fill'
+ | 'file-shield-fill'
+ | 'booklet-fill'
+ | 'file-chart-fill'
+ | 'file-3-fill'
+ | 'file-2-fill'
+ | 'todo-fill'
+ | 'folder-transfer-fill'
+ | 'survey-fill'
+ | 'file-zip-fill'
+ | 'file-list-fill'
+ | 'file-add-fill'
+ | 'file-lock-fill'
+ | 'filter-off-fill'
+ | 'arrow-right-down-fill'
+ | 'divide-fill'
+ | 'delete-bin-2-fill'
+ | 'delete-bin-3-fill'
+ | 'share-circle-fill'
+ | 'arrow-right-fill'
+ | 'upload-cloud-fill'
+ | 'search-fill'
+ | 'add-box-fill'
+ | 'download-cloud-2-fill'
+ | 'checkbox-multiple-blank-fill'
+ | 'logout-box-fill'
+ | 'lock-2-fill'
+ | 'upload-2-fill'
+ | 'menu-3-fill'
+ | 'menu-2-fill'
+ | 'logout-circle-r-fill'
+ | 'settings-fill'
+ | 'arrow-drop-left-fill'
+ | 'arrow-up-fill'
+ | 'share-fill'
+ | 'error-warning-fill'
+ | 'add-fill'
+ | 'shield-flash-fill'
+ | 'upload-fill'
+ | 'checkbox-blank-fill'
+ | 'login-circle-fill'
+ | 'zoom-in-fill'
+ | 'star-s-fill'
+ | 'search-eye-fill'
+ | 'arrow-down-s-fill'
+ | 'timer-fill'
+ | 'toggle-fill'
+ | 'dashboard-fill'
+ | 'refresh-fill'
+ | 'arrow-down-fill'
+ | 'upload-cloud-2-fill'
+ | 'arrow-drop-right-fill'
+ | 'eye-off-fill'
+ | 'function-fill'
+ | 'arrow-left-up-fill'
+ | 'thumb-up-fill'
+ | 'close-circle-fill'
+ | 'eye-fill'
+ | 'arrow-go-forward-fill'
+ | 'star-fill'
+ | 'search-2-fill'
+ | 'checkbox-blank-circle-fill'
+ | 'menu-fill'
+ | 'share-box-fill'
+ | 'shield-star-fill'
+ | 'delete-back-fill'
+ | 'arrow-go-back-fill'
+ | 'check-fill'
+ | 'radio-button-fill'
+ | 'arrow-right-s-fill'
+ | 'shield-keyhole-fill'
+ | 'arrow-left-right-fill'
+ | 'shield-cross-fill'
+ | 'download-2-fill'
+ | 'alarm-fill'
+ | 'settings-6-fill'
+ | 'delete-bin-5-fill'
+ | 'delete-bin-4-fill'
+ | 'login-box-fill'
+ | 'arrow-down-circle-fill'
+ | 'eye-close-fill'
+ | 'check-double-fill'
+ | 'star-half-s-fill'
+ | 'spam-2-fill'
+ | 'spam-3-fill'
+ | 'share-forward-fill'
+ | 'menu-add-fill'
+ | 'download-fill'
+ | 'more-fill'
+ | 'lock-password-fill'
+ | 'checkbox-circle-fill'
+ | 'menu-4-fill'
+ | 'menu-5-fill'
+ | 'shield-check-fill'
+ | 'eye-2-fill'
+ | 'external-link-fill'
+ | 'timer-2-fill'
+ | 'time-fill'
+ | 'zoom-out-fill'
+ | 'logout-box-r-fill'
+ | 'lock-unlock-fill'
+ | 'question-fill'
+ | 'close-fill'
+ | 'arrow-left-s-fill'
+ | 'arrow-left-down-fill'
+ | 'delete-bin-fill'
+ | 'notification-badge-fill'
+ | 'forbid-fill'
+ | 'arrow-right-circle-fill'
+ | 'arrow-drop-down-fill'
+ | 'checkbox-indeterminate-fill'
+ | 'shield-fill'
+ | 'loader-2-fill'
+ | 'flight-takeoff-fill'
+ | 'map-pin-range-fill'
+ | 'hotel-bed-fill'
+ | 'direction-fill'
+ | 'compass-2-fill'
+ | 'compass-3-fill'
+ | 'car-washing-fill'
+ | 'police-car-fill'
+ | 'flight-land-fill'
+ | 'car-fill'
+ | 'truck-fill'
+ | 'lifebuoy-fill'
+ | 'subway-wifi-fill'
+ | 'navigation-fill'
+ | 'map-2-fill'
+ | 'taxi-wifi-fill'
+ | 'ship-2-fill'
+ | 'restaurant-fill'
+ | 'charging-pile-2-fill'
+ | 'map-pin-4-fill'
+ | 'map-pin-5-fill'
+ | 'compass-fill'
+ | 'gas-station-fill'
+ | 'restaurant-2-fill'
+ | 'ship-fill'
+ | 'walk-fill'
+ | 'goblet-fill'
+ | 'guide-fill'
+ | 'map-pin-3-fill'
+ | 'map-pin-2-fill'
+ | 'pushpin-2-fill'
+ | 'map-fill'
+ | 'steering-fill'
+ | 'passport-fill'
+ | 'takeaway-fill'
+ | 'oil-fill'
+ | 'pin-distance-fill'
+ | 'china-railway-fill'
+ | 'compass-4-fill'
+ | 'train-wifi-fill'
+ | 'riding-fill'
+ | 'run-fill'
+ | 'motorbike-fill'
+ | 'roadster-fill'
+ | 'bus-wifi-fill'
+ | 'anchor-fill'
+ | 'bus-2-fill'
+ | 'map-pin-time-fill'
+ | 'e-bike-fill'
+ | 'treasure-map-fill'
+ | 'rocket-fill'
+ | 'charging-pile-fill'
+ | 'barricade-fill'
+ | 'bike-fill'
+ | 'road-map-fill'
+ | 'subway-fill'
+ | 'luggage-cart-fill'
+ | 'signal-tower-fill'
+ | 'route-fill'
+ | 'suitcase-2-fill'
+ | 'suitcase-3-fill'
+ | 'e-bike-2-fill'
+ | 'space-ship-fill'
+ | 'rocket-2-fill'
+ | 'footprint-fill'
+ | 'traffic-light-fill'
+ | 'map-pin-user-fill'
+ | 'parking-fill'
+ | 'taxi-fill'
+ | 'suitcase-fill'
+ | 'steering-2-fill'
+ | 'earth-fill'
+ | 'pushpin-fill'
+ | 'caravan-fill'
+ | 'map-pin-add-fill'
+ | 'plane-fill'
+ | 'train-fill'
+ | 'cup-fill'
+ | 'map-pin-fill'
+ | 'sailboat-fill'
+ | 'luggage-deposit-fill'
+ | 'globe-fill'
+ | 'bus-fill'
+ | 'compass-discover-fill'
+ | 'parking-box-fill'
+ | 'forbid-2-fill'
+ | 'loader-3-fill'
+ | 'indeterminate-circle-fill'
+ | 'filter-3-fill'
+ | 'filter-2-fill'
+ | 'share-forward-box-fill'
+ | 'lock-fill'
+ | 'alert-fill'
+ | 'star-half-fill'
+ | 'history-fill'
+ | 'thumb-down-fill'
+ | 'arrow-drop-up-fill'
+ | 'settings-3-fill'
+ | 'settings-2-fill'
+ | 'timer-flash-fill'
+ | 'apps-2-fill'
+ | 'list-settings-fill'
+ | 'checkbox-fill'
+ | 'subtract-fill'
+ | 'arrow-left-fill'
+ | 'shield-user-fill'
+ | 'arrow-right-up-fill'
+ | 'arrow-up-down-fill'
+ | 'alarm-warning-fill'
+ | 'loader-5-fill'
+ | 'loader-4-fill'
+ | 'information-fill'
+ | 'side-bar-fill'
+ | 'delete-back-2-fill'
+ | 'download-cloud-fill'
+ | 'arrow-up-s-fill'
+ | 'arrow-left-circle-fill'
+ | 'settings-4-fill'
+ | 'settings-5-fill'
+ | 'delete-bin-6-fill'
+ | 'delete-bin-7-fill'
+ | 'add-circle-fill'
+ | 'share-forward-2-fill'
+ | 'filter-fill'
+ | 'spam-fill'
+ | 'menu-fold-fill'
+ | 'more-2-fill'
+ | 'loader-fill'
+ | 'apps-fill'
+ | 'menu-unfold-fill'
+ | 'logout-circle-fill'
+ | 'arrow-up-circle-fill'
+ | 'find-replace-fill'
+ | 'checkbox-multiple-fill'
+ | 'safe-2-fill'
+ | 'swap-box-fill'
+ | 'money-pound-circle-fill'
+ | 'swap-fill'
+ | 'refund-fill'
+ | 'money-cny-box-fill'
+ | 'exchange-box-fill'
+ | 'currency-fill'
+ | 'money-pound-box-fill'
+ | 'coupon-3-fill'
+ | 'coupon-2-fill'
+ | 'copper-coin-fill'
+ | 'shopping-basket-2-fill'
+ | 'bank-card-fill'
+ | 'coupon-fill'
+ | 'refund-2-fill'
+ | 'gift-2-fill'
+ | 'shopping-cart-2-fill'
+ | 'money-cny-circle-fill'
+ | 'price-tag-fill'
+ | 'exchange-funds-line'
+ | 'coupon-4-fill'
+ | 'coupon-5-fill'
+ | 'money-euro-circle-fill'
+ | 'coin-fill'
+ | 'coins-fill'
+ | 'bank-card-2-fill'
+ | 'shopping-bag-fill'
+ | 'ticket-fill'
+ | 'exchange-fill'
+ | 'vip-crown-2-fill'
+ | 'gift-fill'
+ | 'safe-fill'
+ | 'money-dollar-box-fill'
+ | 'shopping-cart-fill'
+ | 'funds-fill'
+ | 'red-packet-fill'
+ | 'percent-fill'
+ | 'vip-fill'
+ | 'copper-diamond-fill'
+ | 'increase-decrease-fill'
+ | 'funds-box-fill'
+ | 'price-tag-3-fill'
+ | 'price-tag-2-fill'
+ | 'secure-payment-fill'
+ | 'vip-crown-fill'
+ | 'hand-heart-fill'
+ | 'shopping-basket-fill'
+ | 'bit-coin-fill'
+ | 'hours-fill'
+ | 'stock-fill'
+ | 'shopping-bag-2-fill'
+ | 'shopping-bag-3-fill'
+ | 'ticket-2-fill'
+ | 'trophy-fill'
+ | 'hand-coin-fill'
+ | 'money-dollar-circle-fill'
+ | 'exchange-dollar-fill'
+ | 'wallet-fill'
+ | 'auction-fill'
+ | 'water-flash-fill'
+ | 'wallet-2-fill'
+ | 'wallet-3-fill'
+ | 'vip-diamond-fill'
+ | 'exchange-cny-fill'
+ | 'money-euro-box-fill'
+ | 'gradienter-fill'
+ | 'sd-card-fill'
+ | 'battery-fill'
+ | 'smartphone-fill'
+ | 'mac-fill'
+ | 'device-recover-fill'
+ | 'battery-charge-fill'
+ | 'rss-fill'
+ | 'barcode-box-fill'
+ | 'cellphone-fill'
+ | 'bluetooth-fill'
+ | 'gps-fill'
+ | 'qr-scan-2-fill'
+ | 'tv-2-fill'
+ | 'tablet-fill'
+ | 'remote-control-2-fill'
+ | 'dual-sim-1-fill'
+ | 'device-fill'
+ | 'fingerprint-fill'
+ | 'router-fill'
+ | 'restart-fill'
+ | 'database-2-fill'
+ | 'scan-fill'
+ | 'sensor-fill'
+ | 'macbook-fill'
+ | 'save-2-fill'
+ | 'save-3-fill'
+ | 'install-fill'
+ | 'signal-wifi-3-fill'
+ | 'signal-wifi-2-fill'
+ | 'rotate-lock-fill'
+ | 'bluetooth-connect-fill'
+ | 'qr-code-fill'
+ | 'sim-card-2-fill'
+ | 'shut-down-fill'
+ | 'server-fill'
+ | 'qr-scan-fill'
+ | 'battery-share-fill'
+ | 'hard-drive-fill'
+ | 'battery-2-charge-fill'
+ | 'wifi-off-fill'
+ | 'dual-sim-2-fill'
+ | 'dashboard-3-fill'
+ | 'dashboard-2-fill'
+ | 'database-fill'
+ | 'radar-fill'
+ | 'signal-wifi-error-fill'
+ | 'save-fill'
+ | 'keyboard-fill'
+ | 'hard-drive-2-fill'
+ | 'wifi-fill'
+ | 'usb-fill'
+ | 'barcode-fill'
+ | 'fingerprint-2-fill'
+ | 'phone-fill'
+ | 'sim-card-fill'
+ | 'base-station-fill'
+ | 'battery-2-fill'
+ | 'signal-wifi-off-fill'
+ | 'hotspot-fill'
+ | 'wireless-charging-fill'
+ | 'phone-find-fill'
+ | 'computer-fill'
+ | 'signal-wifi-fill'
+ | 'sd-card-mini-fill'
+ | 'mouse-fill'
+ | 'keyboard-box-fill'
+ | 'phone-lock-fill'
+ | 'scan-2-fill'
+ | 'cast-fill'
+ | 'gamepad-fill'
+ | 'cpu-fill'
+ | 'tv-fill'
+ | 'signal-wifi-1-fill'
+ | 'uninstall-fill'
+ | 'airplay-fill'
+ | 'battery-low-fill'
+ | 'battery-saver-fill'
+ | 'remote-control-fill'
+ | 'u-disk-fill'
+ | 'flashlight-fill'
+ | 'rainy-fill'
+ | 'celsius-fill'
+ | 'haze-2-fill'
+ | 'mist-fill'
+ | 'rainbow-fill'
+ | 'sun-fill'
+ | 'tornado-fill'
+ | 'haze-fill'
+ | 'windy-fill'
+ | 'moon-clear-fill'
+ | 'cloudy-fill'
+ | 'cloudy-2-fill'
+ | 'temp-hot-fill'
+ | 'showers-fill'
+ | 'typhoon-fill'
+ | 'fire-fill'
+ | 'thunderstorms-fill'
+ | 'moon-cloudy-fill'
+ | 'sun-foggy-fill'
+ | 'moon-fill'
+ | 'moon-foggy-fill'
+ | 'hail-fill'
+ | 'flood-fill'
+ | 'temp-cold-fill'
+ | 'heavy-showers-fill'
+ | 'meteor-fill'
+ | 'sun-cloudy-fill'
+ | 'fahrenheit-fill'
+ | 'drizzle-fill'
+ | 'foggy-fill'
+ | 'cloud-windy-fill'
+ | 'earthquake-fill'
+ | 'blaze-fill'
+ | 'snowy-fill'
+ | 'chat-delete-fill'
+ | 'chat-follow-up-fill'
+ | 'chat-upload-fill'
+ | 'chat-voice-fill'
+ | 'chat-off-fill'
+ | 'chat-history-fill'
+ | 'chat-poll-fill'
+ | 'chat-heart-fill'
+ | 'chat-1-fill'
+ | 'chat-smile-2-fill'
+ | 'chat-smile-3-fill'
+ | 'chat-quote-fill'
+ | 'chat-4-fill'
+ | 'chat-new-fill'
+ | 'discuss-fill'
+ | 'question-answer-fill'
+ | 'chat-smile-fill'
+ | 'chat-private-fill'
+ | 'chat-download-fill'
+ | 'questionnaire-fill'
+ | 'feedback-fill'
+ | 'chat-forward-fill'
+ | 'message-2-fill'
+ | 'message-3-fill'
+ | 'video-chat-fill'
+ | 'chat-settings-fill'
+ | 'chat-3-fill'
+ | 'chat-2-fill'
+ | 'message-fill'
+ | 'chat-check-fill'
+ | 'dv-fill'
+ | 'music-2-fill'
+ | 'speaker-2-fill'
+ | 'speaker-3-fill'
+ | 'volume-off-vibrate-fill'
+ | 'closed-captioning-fill'
+ | 'stop-mini-fill'
+ | 'picture-in-picture-2-fill'
+ | 'fullscreen-fill'
+ | 'skip-forward-fill'
+ | 'hd-fill'
+ | 'skip-back-fill'
+ | 'stop-fill'
+ | 'speaker-fill'
+ | 'image-edit-fill'
+ | 'notification-off-fill'
+ | 'hq-fill'
+ | 'shuffle-fill'
+ | 'surround-sound-fill'
+ | 'repeat-2-fill'
+ | 'record-circle-fill'
+ | 'stop-circle-fill'
+ | 'equalizer-fill'
+ | 'picture-in-picture-fill'
+ | 'gallery-upload-fill'
+ | 'voiceprint-fill'
+ | 'fullscreen-exit-fill'
+ | 'camera-switch-fill'
+ | 'rhythm-fill'
+ | 'tape-fill'
+ | 'pause-mini-fill'
+ | 'image-2-fill'
+ | 'play-circle-fill'
+ | 'pause-circle-fill'
+ | 'webcam-fill'
+ | 'play-mini-fill'
+ | 'dvd-fill'
+ | 'radio-2-fill'
+ | 'play-list-add-fill'
+ | 'camera-fill'
+ | 'eject-fill'
+ | 'volume-vibrate-fill'
+ | 'image-add-fill'
+ | 'gallery-fill'
+ | 'disc-fill'
+ | 'volume-mute-fill'
+ | 'landscape-fill'
+ | 'mic-2-fill'
+ | 'mic-off-fill'
+ | 'repeat-fill'
+ | 'picture-in-picture-exit-fill'
+ | 'camera-off-fill'
+ | 'play-list-fill'
+ | 'polaroid-fill'
+ | 'camera-2-fill'
+ | 'camera-3-fill'
+ | 'vidicon-fill'
+ | 'movie-2-fill'
+ | 'movie-fill'
+ | 'polaroid-2-fill'
+ | 'notification-3-fill'
+ | 'notification-2-fill'
+ | 'mv-fill'
+ | 'rewind-fill'
+ | 'play-list-2-fill'
+ | 'live-fill'
+ | 'sound-module-fill'
+ | 'rewind-mini-fill'
+ | 'broadcast-fill'
+ | 'video-add-fill'
+ | 'volume-down-fill'
+ | 'speed-fill'
+ | 'clapperboard-fill'
+ | 'speed-mini-fill'
+ | 'order-play-fill'
+ | 'notification-4-fill'
+ | 'k-fill'
+ | 'skip-back-mini-fill'
+ | 'video-download-fill'
+ | 'phone-camera-fill'
+ | 'aspect-ratio-fill'
+ | 'music-fill'
+ | 'video-fill'
+ | 'pause-fill'
+ | 'repeat-one-fill'
+ | 'notification-fill'
+ | 'mic-fill'
+ | 'album-fill'
+ | 'skip-forward-mini-fill'
+ | 'film-fill'
+ | 'video-upload-fill'
+ | 'volume-up-fill'
+ | 'image-fill'
+ | 'vidicon-2-fill'
+ | 'radio-fill'
+ | 'headphone-fill'
+ | 'play-fill'
+ | 'camera-lens-line'
diff --git a/src/types/native-base.d.ts b/src/types/native-base.d.ts
index 69f09e12..d972536e 100644
--- a/src/types/native-base.d.ts
+++ b/src/types/native-base.d.ts
@@ -1,7 +1,11 @@
-import { theme } from '~constants/theme'
+import { ProjectColors, theme } from '~constants/theme'
+import { IBoxProps } from 'native-base'
-type CustomThemeType = NonNullable
+type CustomThemeType = typeof theme
declare module 'native-base' {
- type ICustomTheme = CustomThemeType
+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
+ interface ICustomTheme extends CustomThemeType {}
}
+
+export type ColorNames = keyof typeof ProjectColors | IBoxProps['color']
diff --git a/src/types/navigation.d.ts b/src/types/navigation.d.ts
deleted file mode 100644
index 091d2c9e..00000000
--- a/src/types/navigation.d.ts
+++ /dev/null
@@ -1,85 +0,0 @@
-import { CompositeScreenProps, NavigatorScreenParams } from '@react-navigation/native'
-import { BottomTabScreenProps } from '@react-navigation/bottom-tabs'
-import { StackScreenProps } from '@react-navigation/stack'
-
-declare global {
- // PARAMS
- type HomeStackParamList = {
- Home: undefined
- Details: { id: string }
- }
-
- type ExampleStackParamList = {
- Examples: undefined
- Components: undefined
- Colors: undefined
- Typography: undefined
- }
-
- type MainTabParamList = {
- HomeStack: NavigatorScreenParams
- ExamplesStack: NavigatorScreenParams
- }
-
- type RootStackParamList = {
- // unauthorized
- SignUp: undefined
- SignIn: undefined
-
- // authorized
- MainTab: NavigatorScreenParams
- Settings: undefined
-
- // modals
- ApplicationInfo: undefined
- NotFound: undefined
- }
-
- namespace ReactNavigation {
- // eslint-disable-next-line @typescript-eslint/no-empty-interface
- interface RootParamList extends RootStackParamList {}
- }
-
- // SCREENS - specific screens props
- // You can get navigation or route prop for every screen f. eg.
- // - HomeScreenNavigationProps['route']
- // - HomeScreenNavigationProps['navigation']
-
- type BottomTabScreenProps = BaseBottomTabScreenProps<
- MainTabParamList,
- 'ExamplesStack' | 'HomeStack'
- >
-
- // Root stack
- type RootStackScreenProps = RootStackComposite
-
- // Home stack
- type HomeScreenProps = HomeStackComposite<'Home'>
- type DetailsScreenProps = HomeStackComposite<'Details'>
-
- // Examples stack
- type ExamplesScreenProps = ExamplesStackComposite<'Examples'>
- type ComponentsScreenProps = ExamplesStackComposite<'Components'>
-}
-
-type RootStackComposite =
- CompositeScreenProps<
- StackScreenProps,
- BottomTabScreenProps
- >
-
-type HomeStackComposite = CompositeScreenProps<
- CompositeScreenProps<
- StackScreenProps,
- BottomTabScreenProps
- >,
- StackScreenProps
->
-
-type ExamplesStackComposite = CompositeScreenProps<
- CompositeScreenProps<
- BottomTabScreenProps,
- StackScreenProps
- >,
- StackScreenProps
->
diff --git a/src/types/testForm.ts b/src/types/testForm.ts
new file mode 100644
index 00000000..7f7ec8da
--- /dev/null
+++ b/src/types/testForm.ts
@@ -0,0 +1,15 @@
+export type TestFormValues = {
+ name: string
+ surname: string
+ email: string
+ phone: string
+ postalCode: string
+ city: string
+ sex: string
+ music: string[]
+ comment: string
+ shoeSize: string
+ age: string
+ education: string
+ interests: string[]
+}
diff --git a/src/utils/alert.ts b/src/utils/alert.ts
new file mode 100644
index 00000000..eea21c36
--- /dev/null
+++ b/src/utils/alert.ts
@@ -0,0 +1,17 @@
+import { Alert, Platform } from 'react-native'
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+type AlertType = typeof Alert.alert
+const alertPolyfill: AlertType = (title, description, buttons) => {
+ const result = window.confirm([title, description].filter(Boolean).join('\n'))
+
+ if (result) {
+ const confirmOption = buttons?.find(({ style }) => style !== 'cancel')
+ confirmOption && confirmOption?.onPress?.()
+ } else {
+ const cancelOption = buttons?.find(({ style }) => style === 'cancel')
+ cancelOption && cancelOption?.onPress?.()
+ }
+}
+
+export const alert = Platform.OS === 'web' ? alertPolyfill : Alert.alert
diff --git a/src/utils/checkForUpdates.ts b/src/utils/checkForUpdates.ts
new file mode 100644
index 00000000..0a52708d
--- /dev/null
+++ b/src/utils/checkForUpdates.ts
@@ -0,0 +1,46 @@
+import * as Updates from 'expo-updates'
+import i18n from 'i18next'
+
+import { alert } from './alert'
+import { wait } from './wait'
+
+import { isDevelopment } from '~constants'
+
+let isAlertOpened = false
+
+export const checkForUpdates = async (shouldReload?: boolean) => {
+ if (isDevelopment) return
+ try {
+ const update = await Updates.checkForUpdateAsync()
+
+ if (!update.isAvailable) return
+ await Updates.fetchUpdateAsync()
+
+ if (shouldReload) {
+ await wait(500)
+ await Updates.reloadAsync()
+ return
+ }
+
+ if (isAlertOpened) return
+ isAlertOpened = true
+
+ alert(i18n.t('update.alert_title'), i18n.t('update.alert_message'), [
+ {
+ text: i18n.t('common.cancel'),
+ onPress: () => {
+ isAlertOpened = false
+ },
+ style: 'cancel',
+ },
+ {
+ text: i18n.t('update.restart'),
+ onPress: async () => {
+ await Updates.reloadAsync()
+ },
+ },
+ ])
+ } catch (e) {
+ console.log('There was some error while checking updates', e)
+ }
+}
diff --git a/src/utils/getApiError.ts b/src/utils/getApiError.ts
new file mode 100644
index 00000000..54ef65ad
--- /dev/null
+++ b/src/utils/getApiError.ts
@@ -0,0 +1,12 @@
+import i18n from '../i18n'
+
+//CONFIG: This are examples errors, change it
+export const API_ERRORS = [
+ { errorMessage: 'ERROR.INCORRECT.EMAIL', translation: i18n.t('errors.incorrect.email') },
+ { errorMessage: 'Token invalid', translation: i18n.t('errors.token.expired') },
+ { errorMessage: 'Missing authentication', translation: i18n.t('errors.missing_auth') },
+]
+export const getApiError = (errorMessage: string) => {
+ const api_error = API_ERRORS.find((el) => el.errorMessage === errorMessage)
+ return api_error
+}
diff --git a/src/utils/getColorValue.ts b/src/utils/getColorValue.ts
new file mode 100644
index 00000000..8d56de3d
--- /dev/null
+++ b/src/utils/getColorValue.ts
@@ -0,0 +1,17 @@
+import { theme } from '~constants'
+import { ColorNames } from '~types/native-base'
+
+type GetColorValueProps = {
+ color: ColorNames
+ colors: (typeof theme)['colors']
+}
+
+export const getColorValue = ({ color, colors }: GetColorValueProps): string => {
+ if (!color || typeof color === 'object') return 'transparent'
+
+ const [main, number] = color.split('.') as unknown as [string, string]
+
+ // @ts-expect-error: native base color literal
+ const colorToReturn = number ? colors[main][number] : colors[main]
+ return colorToReturn || color
+}
diff --git a/src/utils/hapticImpact.ts b/src/utils/hapticImpact.ts
new file mode 100644
index 00000000..4260f6f8
--- /dev/null
+++ b/src/utils/hapticImpact.ts
@@ -0,0 +1,12 @@
+import { impactAsync, ImpactFeedbackStyle } from 'expo-haptics'
+import { Platform } from 'react-native'
+
+export const hapticImpact = async (hapticStyle?: ImpactFeedbackStyle): Promise => {
+ try {
+ if (Platform.OS === 'web') return
+
+ await impactAsync(hapticStyle || ImpactFeedbackStyle.Medium)
+ } catch {
+ // TODO: Handle error somehow
+ }
+}
diff --git a/src/utils/index.ts b/src/utils/index.ts
index c18e8d0d..37927d6e 100644
--- a/src/utils/index.ts
+++ b/src/utils/index.ts
@@ -1,5 +1,10 @@
+export * from './alert'
+export * from './checkForUpdates'
+export * from './getApiError'
+export * from './getColorValue'
export * from './getNavigator'
export * from './hex2rgba'
+export * from './hapticImpact'
export * from './noop'
export * from './secureStore'
export * from './wait'
diff --git a/src/utils/isAuthorizedLink.ts b/src/utils/isAuthorizedLink.ts
new file mode 100644
index 00000000..903efa5c
--- /dev/null
+++ b/src/utils/isAuthorizedLink.ts
@@ -0,0 +1,16 @@
+import { rootStackScreensData } from '~navigation/config/screens'
+
+const unauthorizedPaths = [
+ ...rootStackScreensData.modals,
+ ...rootStackScreensData.unauthorized,
+].map((screen) => screen.deeplink)
+
+/**
+ * Checks whether provided link contains authorized link or not.
+ *
+ * @param linkWithoutPrefix link to check with navigation authorized paths
+ */
+export const isAuthorizedLink = (linkWithoutPrefix: string): boolean => {
+ console.log(linkWithoutPrefix, unauthorizedPaths)
+ return unauthorizedPaths.some((path) => !linkWithoutPrefix.includes(path))
+}
diff --git a/src/utils/testUtils.tsx b/src/utils/testUtils.tsx
index 63a848f8..6d1f46fd 100644
--- a/src/utils/testUtils.tsx
+++ b/src/utils/testUtils.tsx
@@ -4,8 +4,9 @@ import { NativeBaseProvider } from 'native-base'
import { PropsWithChildren, ReactElement } from 'react'
import { I18nextProvider } from 'react-i18next'
-import i18n from '~i18n'
+import i18n from '~i18n/i18nForTests'
import { AuthProvider } from '~providers'
+import { ColorSchemeProvider } from '~providers/ColorSchemeProvider'
type RenderOptions = Parameters[1]
@@ -14,18 +15,20 @@ const nbInitialWindowMetrics = {
insets: { top: 0, left: 0, right: 0, bottom: 0 },
}
-const Providers: React.FC = ({ children }) => (
+const ProvidersWrapper: React.FC = ({ children }) => (
- {children}
+
+ {children}
+
)
const customRender = (ui: ReactElement, options?: RenderOptions): RenderAPI => {
- return render(ui, { wrapper: Providers, ...options })
+ return render(ui, { wrapper: ProvidersWrapper, ...options })
}
export * from '@testing-library/react-native'
diff --git a/tsconfig.json b/tsconfig.json
index f0ec20c1..295b821b 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,14 +5,15 @@
"baseUrl": ".",
"paths": {
"~*": ["src/*"],
- "~assets": ["assets"]
+ "~assets": ["assets"],
+ "react": ["./node_modules/@types/react"]
},
"allowSyntheticDefaultImports": true,
- "resolveJsonModule": true,
// sets types for project using src/types folder
"typeRoots": ["node_modules/@types", "src/types"],
"jsx": "react-native",
"lib": ["es6", "dom", "esnext"],
+ "module": "ESNext",
"target": "esnext",
"skipLibCheck": true
},
@@ -23,6 +24,7 @@
"jest.config.js",
".eslint.config.js",
"node_modules",
+ "webpack.config.js",
"**/*.spec.ts",
"dist"
]
diff --git a/web/_redirects b/web/_redirects
new file mode 100644
index 00000000..a54e2e89
--- /dev/null
+++ b/web/_redirects
@@ -0,0 +1 @@
+ /* /index.html 200
\ No newline at end of file
diff --git a/webpack.config.js b/webpack.config.js
index 83a6df19..5c8a397b 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -1,9 +1,21 @@
-// eslint-disable-next-line @typescript-eslint/no-var-requires
const createExpoWebpackConfigAsync = require('@expo/webpack-config')
+// Expo CLI will await this method so you can optionally return a promise.
module.exports = async function (env, argv) {
const config = await createExpoWebpackConfigAsync(env, argv)
- config.resolve.alias['framer-motion'] = 'framer-motion/dist/framer-motion'
+ // If you want to add a new alias to the config.
+ config.resolve.alias['moduleA'] = 'moduleB'
+ // Maybe you want to turn off compression in dev mode.
+ if (config.mode === 'development') {
+ config.devServer.compress = false
+ }
+
+ // Or prevent minimizing the bundle when you build.
+ if (config.mode === 'production') {
+ config.optimization.minimize = false
+ }
+
+ // Finally return the new config for the CLI to use.
return config
}
diff --git a/yarn.lock b/yarn.lock
index 98129c5a..b9271dee 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,6 +2,11 @@
# yarn lockfile v1
+"@aashutoshrathi/word-wrap@^1.2.3":
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
+ integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
+
"@ampproject/remapping@^2.1.0":
version "2.2.0"
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
@@ -10,6 +15,14 @@
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
+"@ampproject/remapping@^2.2.0":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
+ integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.0"
+ "@jridgewell/trace-mapping" "^0.3.9"
+
"@babel/code-frame@7.10.4", "@babel/code-frame@~7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
@@ -17,7 +30,7 @@
dependencies:
"@babel/highlight" "^7.10.4"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
@@ -31,39 +44,55 @@
dependencies:
"@babel/highlight" "^7.18.6"
+"@babel/code-frame@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658"
+ integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==
+ dependencies:
+ "@babel/highlight" "^7.22.5"
+
"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.10":
version "7.17.10"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.10.tgz#711dc726a492dfc8be8220028b1b92482362baab"
integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==
-"@babel/compat-data@^7.18.8":
- version "7.18.8"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d"
- integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==
-
-"@babel/core@7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e"
- integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/generator" "^7.9.0"
- "@babel/helper-module-transforms" "^7.9.0"
- "@babel/helpers" "^7.9.0"
- "@babel/parser" "^7.9.0"
- "@babel/template" "^7.8.6"
- "@babel/traverse" "^7.9.0"
- "@babel/types" "^7.9.0"
+"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255"
+ integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==
+
+"@babel/compat-data@^7.20.5":
+ version "7.20.10"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.10.tgz#9d92fa81b87542fff50e848ed585b4212c1d34ec"
+ integrity sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==
+
+"@babel/compat-data@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.6.tgz#15606a20341de59ba02cd2fcc5086fcbe73bf544"
+ integrity sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==
+
+"@babel/core@^7.11.6", "@babel/core@^7.20.0", "@babel/core@^7.20.2":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89"
+ integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.22.5"
+ "@babel/generator" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helpers" "^7.22.5"
+ "@babel/parser" "^7.22.5"
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.5"
+ "@babel/types" "^7.22.5"
convert-source-map "^1.7.0"
debug "^4.1.0"
- gensync "^1.0.0-beta.1"
- json5 "^2.1.2"
- lodash "^4.17.13"
- resolve "^1.3.2"
- semver "^5.4.1"
- source-map "^0.5.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.2.2"
+ semver "^6.3.0"
-"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.7.5":
+"@babel/core@^7.12.3", "@babel/core@^7.13.16":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.0.tgz#c58d04d7c6fbfb58ea7681e2b9145cfb62726756"
integrity sha512-Xyw74OlJwDijToNi0+6BBI5mLLR5+5R3bcSH80LXzjzEGEUlvNzujEE71BaD/ApEZHAvFI/Mlmp4M5lIkdeeWw==
@@ -84,35 +113,26 @@
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/core@^7.18.6":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.10.tgz#39ad504991d77f1f3da91be0b8b949a5bc466fb8"
- integrity sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==
- dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.18.10"
- "@babel/helper-compilation-targets" "^7.18.9"
- "@babel/helper-module-transforms" "^7.18.9"
- "@babel/helpers" "^7.18.9"
- "@babel/parser" "^7.18.10"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.18.10"
- "@babel/types" "^7.18.10"
+"@babel/core@^7.22.8":
+ version "7.22.8"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.8.tgz#386470abe884302db9c82e8e5e87be9e46c86785"
+ integrity sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.22.5"
+ "@babel/generator" "^7.22.7"
+ "@babel/helper-compilation-targets" "^7.22.6"
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helpers" "^7.22.6"
+ "@babel/parser" "^7.22.7"
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.8"
+ "@babel/types" "^7.22.5"
+ "@nicolo-ribaudo/semver-v6" "^6.3.3"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
- semver "^6.3.0"
-
-"@babel/generator@^7.14.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.0.tgz#46d28e8a18fc737b028efb25ab105d74473af43f"
- integrity sha512-81YO9gGx6voPXlvYdZBliFXAZU8vZ9AZ6z+CjlmcnaeOcYSFbMTpdeDUO9xD9dh/68Vq03I8ZspfUTPfitcDHg==
- dependencies:
- "@babel/types" "^7.18.0"
- "@jridgewell/gen-mapping" "^0.3.0"
- jsesc "^2.5.1"
+ json5 "^2.2.2"
"@babel/generator@^7.18.0", "@babel/generator@^7.18.2":
version "7.18.2"
@@ -132,13 +152,24 @@
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/generator@^7.18.6", "@babel/generator@^7.9.0":
- version "7.18.7"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.7.tgz#2aa78da3c05aadfc82dbac16c99552fc802284bd"
- integrity sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==
+"@babel/generator@^7.20.0", "@babel/generator@^7.22.5", "@babel/generator@^7.7.2":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7"
+ integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==
+ dependencies:
+ "@babel/types" "^7.22.5"
+ "@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
+ jsesc "^2.5.1"
+
+"@babel/generator@^7.22.7":
+ version "7.22.7"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.7.tgz#a6b8152d5a621893f2c9dacf9a4e286d520633d5"
+ integrity sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ==
dependencies:
- "@babel/types" "^7.18.7"
+ "@babel/types" "^7.22.5"
"@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
"@babel/helper-annotate-as-pure@^7.16.7":
@@ -155,13 +186,19 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b"
- integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==
+"@babel/helper-annotate-as-pure@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
+ integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
dependencies:
- "@babel/helper-explode-assignable-expression" "^7.16.7"
- "@babel/types" "^7.16.7"
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878"
+ integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==
+ dependencies:
+ "@babel/types" "^7.22.5"
"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7":
version "7.17.10"
@@ -183,16 +220,39 @@
browserslist "^4.20.2"
semver "^6.3.0"
-"@babel/helper-compilation-targets@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz#69e64f57b524cde3e5ff6cc5a9f4a387ee5563bf"
- integrity sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==
+"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02"
+ integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==
+ dependencies:
+ "@babel/compat-data" "^7.22.5"
+ "@babel/helper-validator-option" "^7.22.5"
+ browserslist "^4.21.3"
+ lru-cache "^5.1.1"
+ semver "^6.3.0"
+
+"@babel/helper-compilation-targets@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
+ integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
dependencies:
- "@babel/compat-data" "^7.18.8"
+ "@babel/compat-data" "^7.20.5"
"@babel/helper-validator-option" "^7.18.6"
- browserslist "^4.20.2"
+ browserslist "^4.21.3"
+ lru-cache "^5.1.1"
semver "^6.3.0"
+"@babel/helper-compilation-targets@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz#e30d61abe9480aa5a83232eb31c111be922d2e52"
+ integrity sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==
+ dependencies:
+ "@babel/compat-data" "^7.22.6"
+ "@babel/helper-validator-option" "^7.22.5"
+ "@nicolo-ribaudo/semver-v6" "^6.3.3"
+ browserslist "^4.21.9"
+ lru-cache "^5.1.1"
+
"@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.0":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz#fac430912606331cb075ea8d82f9a4c145a4da19"
@@ -206,6 +266,36 @@
"@babel/helper-replace-supers" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
+"@babel/helper-create-class-features-plugin@^7.18.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz#58564873c889a6fea05a538e23f9f6d201f10950"
+ integrity sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@nicolo-ribaudo/semver-v6" "^6.3.3"
+
+"@babel/helper-create-class-features-plugin@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz#2192a1970ece4685fbff85b48da2c32fcb130b7c"
+ integrity sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.5"
+ semver "^6.3.0"
+
"@babel/helper-create-regexp-features-plugin@^7.16.7", "@babel/helper-create-regexp-features-plugin@^7.17.12":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz#bb37ca467f9694bbe55b884ae7a5cc1e0084e4fd"
@@ -222,6 +312,15 @@
"@babel/helper-annotate-as-pure" "^7.18.6"
regexpu-core "^5.1.0"
+"@babel/helper-create-regexp-features-plugin@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz#bb2bf0debfe39b831986a4efbf4066586819c6e4"
+ integrity sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ regexpu-core "^5.3.1"
+ semver "^6.3.0"
+
"@babel/helper-define-polyfill-provider@^0.3.1":
version "0.3.1"
resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz#52411b445bdb2e676869e5a74960d2d3826d2665"
@@ -236,27 +335,32 @@
resolve "^1.14.2"
semver "^6.1.2"
+"@babel/helper-define-polyfill-provider@^0.4.0":
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8"
+ integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==
+ dependencies:
+ "@babel/helper-compilation-targets" "^7.17.7"
+ "@babel/helper-plugin-utils" "^7.16.7"
+ debug "^4.1.1"
+ lodash.debounce "^4.0.8"
+ resolve "^1.14.2"
+ semver "^6.1.2"
+
"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2":
version "7.18.2"
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd"
integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==
-"@babel/helper-environment-visitor@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz#b7eee2b5b9d70602e59d1a6cad7dd24de7ca6cd7"
- integrity sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==
-
"@babel/helper-environment-visitor@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
-"@babel/helper-explode-assignable-expression@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a"
- integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==
- dependencies:
- "@babel/types" "^7.16.7"
+"@babel/helper-environment-visitor@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98"
+ integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==
"@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9":
version "7.17.9"
@@ -266,14 +370,6 @@
"@babel/template" "^7.16.7"
"@babel/types" "^7.17.0"
-"@babel/helper-function-name@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz#8334fecb0afba66e6d87a7e8c6bb7fed79926b83"
- integrity sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==
- dependencies:
- "@babel/template" "^7.18.6"
- "@babel/types" "^7.18.6"
-
"@babel/helper-function-name@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz#940e6084a55dee867d33b4e487da2676365e86b0"
@@ -282,6 +378,14 @@
"@babel/template" "^7.18.6"
"@babel/types" "^7.18.9"
+"@babel/helper-function-name@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be"
+ integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==
+ dependencies:
+ "@babel/template" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
"@babel/helper-hoist-variables@^7.16.7":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246"
@@ -296,6 +400,13 @@
dependencies:
"@babel/types" "^7.18.6"
+"@babel/helper-hoist-variables@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+ integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-member-expression-to-functions@^7.16.7", "@babel/helper-member-expression-to-functions@^7.17.7":
version "7.17.7"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4"
@@ -303,6 +414,13 @@
dependencies:
"@babel/types" "^7.17.0"
+"@babel/helper-member-expression-to-functions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2"
+ integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
@@ -310,14 +428,14 @@
dependencies:
"@babel/types" "^7.16.7"
-"@babel/helper-module-imports@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
- integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
+"@babel/helper-module-imports@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
+ integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.22.5"
-"@babel/helper-module-transforms@^7.18.0", "@babel/helper-module-transforms@^7.9.0":
+"@babel/helper-module-transforms@^7.18.0":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz#baf05dec7a5875fb9235bd34ca18bad4e21221cd"
integrity sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==
@@ -331,19 +449,19 @@
"@babel/traverse" "^7.18.0"
"@babel/types" "^7.18.0"
-"@babel/helper-module-transforms@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz#5a1079c005135ed627442df31a42887e80fcb712"
- integrity sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==
+"@babel/helper-module-transforms@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef"
+ integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==
dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.18.6"
- "@babel/template" "^7.18.6"
- "@babel/traverse" "^7.18.9"
- "@babel/types" "^7.18.9"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-module-imports" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.5"
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.5"
+ "@babel/types" "^7.22.5"
"@babel/helper-optimise-call-expression@^7.16.7":
version "7.16.7"
@@ -352,6 +470,13 @@
dependencies:
"@babel/types" "^7.16.7"
+"@babel/helper-optimise-call-expression@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
+ integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96"
@@ -362,14 +487,15 @@
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f"
integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==
-"@babel/helper-remap-async-to-generator@^7.16.8":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3"
- integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.7"
- "@babel/helper-wrap-function" "^7.16.8"
- "@babel/types" "^7.16.8"
+"@babel/helper-plugin-utils@^7.20.2":
+ version "7.20.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
+ integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
+
+"@babel/helper-plugin-utils@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+ integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
"@babel/helper-remap-async-to-generator@^7.18.9":
version "7.18.9"
@@ -381,6 +507,16 @@
"@babel/helper-wrap-function" "^7.18.9"
"@babel/types" "^7.18.9"
+"@babel/helper-remap-async-to-generator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2"
+ integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-wrap-function" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
"@babel/helper-replace-supers@^7.16.7":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz#e9f5f5f32ac90429c1a4bdec0f231ef0c2838ab1"
@@ -392,6 +528,18 @@
"@babel/traverse" "^7.16.7"
"@babel/types" "^7.16.7"
+"@babel/helper-replace-supers@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc"
+ integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
"@babel/helper-simple-access@^7.17.7":
version "7.18.2"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz#4dc473c2169ac3a1c9f4a51cfcd091d1c36fcff9"
@@ -399,12 +547,12 @@
dependencies:
"@babel/types" "^7.18.2"
-"@babel/helper-simple-access@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea"
- integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==
+"@babel/helper-simple-access@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
+ integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
version "7.16.0"
@@ -413,6 +561,13 @@
dependencies:
"@babel/types" "^7.16.0"
+"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
+ integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-split-export-declaration@^7.16.7":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b"
@@ -427,11 +582,35 @@
dependencies:
"@babel/types" "^7.18.6"
+"@babel/helper-split-export-declaration@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08"
+ integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-split-export-declaration@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-string-parser@^7.18.10":
version "7.18.10"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56"
integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==
+"@babel/helper-string-parser@^7.19.4":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
+ integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
+
+"@babel/helper-string-parser@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
+ integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
+
"@babel/helper-validator-identifier@^7.16.7":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
@@ -442,6 +621,16 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
+"@babel/helper-validator-identifier@^7.19.1":
+ version "7.19.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
+ integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
+
+"@babel/helper-validator-identifier@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
+ integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
+
"@babel/helper-validator-option@^7.16.7":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23"
@@ -452,15 +641,10 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-"@babel/helper-wrap-function@^7.16.8":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz#58afda087c4cd235de92f7ceedebca2c41274200"
- integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==
- dependencies:
- "@babel/helper-function-name" "^7.16.7"
- "@babel/template" "^7.16.7"
- "@babel/traverse" "^7.16.8"
- "@babel/types" "^7.16.8"
+"@babel/helper-validator-option@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
+ integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
"@babel/helper-wrap-function@^7.18.9":
version "7.18.11"
@@ -472,7 +656,17 @@
"@babel/traverse" "^7.18.11"
"@babel/types" "^7.18.10"
-"@babel/helpers@^7.18.0", "@babel/helpers@^7.9.0":
+"@babel/helper-wrap-function@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06"
+ integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==
+ dependencies:
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
+"@babel/helpers@^7.18.0":
version "7.18.2"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.2.tgz#970d74f0deadc3f5a938bfa250738eb4ac889384"
integrity sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==
@@ -481,14 +675,23 @@
"@babel/traverse" "^7.18.2"
"@babel/types" "^7.18.2"
-"@babel/helpers@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.9.tgz#4bef3b893f253a1eced04516824ede94dcfe7ff9"
- integrity sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==
+"@babel/helpers@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820"
+ integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==
dependencies:
- "@babel/template" "^7.18.6"
- "@babel/traverse" "^7.18.9"
- "@babel/types" "^7.18.9"
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
+"@babel/helpers@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd"
+ integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==
+ dependencies:
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.6"
+ "@babel/types" "^7.22.5"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7":
version "7.17.12"
@@ -508,7 +711,16 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7":
+"@babel/highlight@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031"
+ integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.22.5"
+ chalk "^2.0.0"
+ js-tokens "^4.0.0"
+
+"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.0.tgz#10a8d4e656bc01128d299a787aa006ce1a91e112"
integrity sha512-AqDccGC+m5O/iUStSJy3DGRIUFu7WbY/CppZYwrEUB4N0tZlnI8CSTsgL7v5fHVFmUbRv2sd+yy27o8Ydt4MGg==
@@ -523,26 +735,41 @@
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.11.tgz#68bb07ab3d380affa9a3f96728df07969645d2d9"
integrity sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==
-"@babel/parser@^7.18.6", "@babel/parser@^7.9.0":
+"@babel/parser@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.6.tgz#845338edecad65ebffef058d3be851f1d28a63bc"
integrity sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12.tgz#1dca338caaefca368639c9ffb095afbd4d420b1e"
- integrity sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==
+"@babel/parser@^7.20.0", "@babel/parser@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea"
+ integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==
+
+"@babel/parser@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
+ integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
+
+"@babel/parser@^7.22.7":
+ version "7.22.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae"
+ integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==
+
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e"
+ integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12.tgz#0d498ec8f0374b1e2eb54b9cb2c4c78714c77753"
- integrity sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca"
+ integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
- "@babel/plugin-proposal-optional-chaining" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/plugin-transform-optional-chaining" "^7.22.5"
"@babel/plugin-proposal-async-generator-functions@^7.0.0":
version "7.18.10"
@@ -554,16 +781,7 @@
"@babel/helper-remap-async-to-generator" "^7.18.9"
"@babel/plugin-syntax-async-generators" "^7.8.4"
-"@babel/plugin-proposal-async-generator-functions@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.17.12.tgz#094a417e31ce7e692d84bab06c8e2a607cbeef03"
- integrity sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-remap-async-to-generator" "^7.16.8"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
-
-"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.17.12":
+"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz#84f65c0cc247d46f40a6da99aadd6438315d80a4"
integrity sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==
@@ -571,14 +789,13 @@
"@babel/helper-create-class-features-plugin" "^7.17.12"
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-proposal-class-static-block@^7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.0.tgz#7d02253156e3c3793bdb9f2faac3a1c05f0ba710"
- integrity sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==
+"@babel/plugin-proposal-class-properties@^7.18.0":
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
+ integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.18.0"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
+ "@babel/helper-create-class-features-plugin" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-decorators@^7.12.9":
version "7.17.12"
@@ -592,14 +809,6 @@
"@babel/plugin-syntax-decorators" "^7.17.12"
charcodes "^0.2.0"
-"@babel/plugin-proposal-dynamic-import@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz#c19c897eaa46b27634a00fee9fb7d829158704b2"
- integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-
"@babel/plugin-proposal-export-default-from@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.17.12.tgz#df785e638618d8ffa14e08c78c44d9695d083b73"
@@ -608,31 +817,15 @@
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/plugin-syntax-export-default-from" "^7.16.7"
-"@babel/plugin-proposal-export-namespace-from@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.17.12.tgz#b22864ccd662db9606edb2287ea5fd1709f05378"
- integrity sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==
+"@babel/plugin-proposal-export-namespace-from@^7.18.9":
+ version "7.18.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203"
+ integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-"@babel/plugin-proposal-json-strings@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.17.12.tgz#f4642951792437233216d8c1af370bb0fbff4664"
- integrity sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
-
-"@babel/plugin-proposal-logical-assignment-operators@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.17.12.tgz#c64a1bcb2b0a6d0ed2ff674fd120f90ee4b88a23"
- integrity sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.17.12":
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.17.12.tgz#1e93079bbc2cbc756f6db6a1925157c4a92b94be"
integrity sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==
@@ -640,15 +833,23 @@
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-"@babel/plugin-proposal-numeric-separator@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz#d6b69f4af63fb38b6ca2558442a7fb191236eba9"
- integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.0":
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
+ integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+
+"@babel/plugin-proposal-numeric-separator@^7.0.0":
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75"
+ integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
-"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.18.0":
+"@babel/plugin-proposal-object-rest-spread@^7.0.0":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.0.tgz#79f2390c892ba2a68ec112eb0d895cfbd11155e8"
integrity sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==
@@ -659,7 +860,18 @@
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.17.12"
-"@babel/plugin-proposal-optional-catch-binding@^7.0.0", "@babel/plugin-proposal-optional-catch-binding@^7.16.7":
+"@babel/plugin-proposal-object-rest-spread@^7.12.13", "@babel/plugin-proposal-object-rest-spread@^7.20.0":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
+ integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
+ dependencies:
+ "@babel/compat-data" "^7.20.5"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.20.7"
+
+"@babel/plugin-proposal-optional-catch-binding@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf"
integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==
@@ -667,7 +879,7 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.17.12":
+"@babel/plugin-proposal-optional-chaining@^7.13.12":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz#f96949e9bacace3a9066323a5cf90cfb9de67174"
integrity sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==
@@ -676,25 +888,21 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
-"@babel/plugin-proposal-private-methods@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.17.12.tgz#c2ca3a80beb7539289938da005ad525a038a819c"
- integrity sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==
+"@babel/plugin-proposal-optional-chaining@^7.20.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
+ integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.17.12"
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
-"@babel/plugin-proposal-private-property-in-object@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.17.12.tgz#b02efb7f106d544667d91ae97405a9fd8c93952d"
- integrity sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.7"
- "@babel/helper-create-class-features-plugin" "^7.17.12"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
+"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
+ version "7.21.0-placeholder-for-preset-env.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
+ integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
-"@babel/plugin-proposal-unicode-property-regex@^7.17.12", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.17.12.tgz#3dbd7a67bd7f94c8238b394da112d86aaf32ad4d"
integrity sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==
@@ -737,7 +945,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
+"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
@@ -758,21 +966,35 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.3"
-"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.17.12", "@babel/plugin-syntax-flow@^7.2.0":
+"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.17.12":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.17.12.tgz#23d852902acd19f42923fca9d0f196984d124e73"
integrity sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-syntax-import-assertions@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.17.12.tgz#58096a92b11b2e4e54b24c6a0cc0e5e607abcedd"
- integrity sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==
+"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859"
+ integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-syntax-import-assertions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98"
+ integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-syntax-import-meta@^7.8.3":
+"@babel/plugin-syntax-import-attributes@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb"
+ integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
@@ -793,6 +1015,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
+"@babel/plugin-syntax-jsx@^7.7.2":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
+ integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
@@ -856,37 +1085,100 @@
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.17.12":
+"@babel/plugin-syntax-typescript@^7.7.2":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272"
+ integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
+ integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.18.6"
+
+"@babel/plugin-transform-arrow-functions@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.17.12.tgz#dddd783b473b1b1537ef46423e3944ff24898c45"
integrity sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.17.12.tgz#dbe5511e6b01eee1496c944e35cdfe3f58050832"
- integrity sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==
+"@babel/plugin-transform-arrow-functions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
+ integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
dependencies:
- "@babel/helper-module-imports" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-remap-async-to-generator" "^7.16.8"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-async-generator-functions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz#7336356d23380eda9a56314974f053a020dab0c3"
+ integrity sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-remap-async-to-generator" "^7.22.5"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+
+"@babel/plugin-transform-async-to-generator@^7.20.0", "@babel/plugin-transform-async-to-generator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
+ integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
+ dependencies:
+ "@babel/helper-module-imports" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-remap-async-to-generator" "^7.22.5"
-"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.16.7":
+"@babel/plugin-transform-block-scoped-functions@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620"
integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.17.12":
+"@babel/plugin-transform-block-scoped-functions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
+ integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-block-scoping@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.17.12.tgz#68fc3c4b3bb7dfd809d97b7ed19a584052a2725c"
integrity sha512-jw8XW/B1i7Lqwqj2CbrViPcZijSxfguBWZP2aN59NHgxUyO/OcO1mfdCxH13QhN5LbWhPkX+f+brKGhZTiqtZQ==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.17.12":
+"@babel/plugin-transform-block-scoping@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b"
+ integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-class-properties@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77"
+ integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-class-static-block@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba"
+ integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-class-static-block" "^7.14.5"
+
+"@babel/plugin-transform-classes@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.17.12.tgz#da889e89a4d38375eeb24985218edeab93af4f29"
integrity sha512-cvO7lc7pZat6BsvH6l/EGaI8zpl8paICaoGk+7x7guvtfak/TbIf66nYmJOH13EuG0H+Xx3M+9LQDtSvZFKXKw==
@@ -900,21 +1192,59 @@
"@babel/helper-split-export-declaration" "^7.16.7"
globals "^11.1.0"
-"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.17.12":
+"@babel/plugin-transform-classes@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz#635d4e98da741fad814984639f4c0149eb0135e1"
+ integrity sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.5"
+ globals "^11.1.0"
+
+"@babel/plugin-transform-computed-properties@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.17.12.tgz#bca616a83679698f3258e892ed422546e531387f"
integrity sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.18.0":
+"@babel/plugin-transform-computed-properties@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
+ integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/template" "^7.22.5"
+
+"@babel/plugin-transform-destructuring@^7.0.0":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz#dc4f92587e291b4daa78aa20cc2d7a63aa11e858"
integrity sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4":
+"@babel/plugin-transform-destructuring@^7.20.0", "@babel/plugin-transform-destructuring@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc"
+ integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-dotall-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165"
+ integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-dotall-regex@^7.4.4":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz#6b2d67686fab15fb6a7fd4bd895d5982cfc81241"
integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==
@@ -922,20 +1252,36 @@
"@babel/helper-create-regexp-features-plugin" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-duplicate-keys@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.17.12.tgz#a09aa709a3310013f8e48e0e23bc7ace0f21477c"
- integrity sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==
+"@babel/plugin-transform-duplicate-keys@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285"
+ integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b"
- integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==
+"@babel/plugin-transform-dynamic-import@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e"
+ integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==
dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+
+"@babel/plugin-transform-exponentiation-operator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
+ integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-export-namespace-from@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b"
+ integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.17.12":
version "7.17.12"
@@ -945,14 +1291,29 @@
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/plugin-syntax-flow" "^7.17.12"
-"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.17.12":
+"@babel/plugin-transform-flow-strip-types@^7.20.0":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2"
+ integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-flow" "^7.22.5"
+
+"@babel/plugin-transform-for-of@^7.0.0":
version "7.18.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.1.tgz#ed14b657e162b72afbbb2b4cdad277bf2bb32036"
integrity sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.16.7":
+"@babel/plugin-transform-for-of@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f"
+ integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-function-name@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf"
integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==
@@ -961,30 +1322,68 @@
"@babel/helper-function-name" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.17.12":
+"@babel/plugin-transform-function-name@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
+ integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
+ dependencies:
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-json-strings@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0"
+ integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+
+"@babel/plugin-transform-literals@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.17.12.tgz#97131fbc6bbb261487105b4b3edbf9ebf9c830ae"
integrity sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.16.7":
+"@babel/plugin-transform-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
+ integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-logical-assignment-operators@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c"
+ integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-transform-member-expression-literals@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384"
integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-modules-amd@^7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.0.tgz#7ef1002e67e36da3155edc8bf1ac9398064c02ed"
- integrity sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==
+"@babel/plugin-transform-member-expression-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
+ integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
dependencies:
- "@babel/helper-module-transforms" "^7.18.0"
- "@babel/helper-plugin-utils" "^7.17.12"
- babel-plugin-dynamic-import-node "^2.3.3"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.18.0":
+"@babel/plugin-transform-modules-amd@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526"
+ integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.0.tgz#3be575e19fbd273d42adbc84566b1fad3582b3db"
integrity sha512-cCeR0VZWtfxWS4YueAK2qtHtBPJRSaJcMlbS8jhSIm/A3E2Kpro4W1Dn4cqJtp59dtWfXjQwK7SPKF8ghs7rlw==
@@ -994,24 +1393,32 @@
"@babel/helper-simple-access" "^7.17.7"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-systemjs@^7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.0.tgz#50ecdb43de97c8483824402f7125edb94cddb09a"
- integrity sha512-vwKpxdHnlM5tIrRt/eA0bzfbi7gUBLN08vLu38np1nZevlPySRe6yvuATJB5F/WPJ+ur4OXwpVYq9+BsxqAQuQ==
+"@babel/plugin-transform-modules-commonjs@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa"
+ integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==
dependencies:
- "@babel/helper-hoist-variables" "^7.16.7"
- "@babel/helper-module-transforms" "^7.18.0"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-validator-identifier" "^7.16.7"
- babel-plugin-dynamic-import-node "^2.3.3"
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
-"@babel/plugin-transform-modules-umd@^7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.0.tgz#56aac64a2c2a1922341129a4597d1fd5c3ff020f"
- integrity sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==
+"@babel/plugin-transform-modules-systemjs@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496"
+ integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==
dependencies:
- "@babel/helper-module-transforms" "^7.18.0"
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.5"
+
+"@babel/plugin-transform-modules-umd@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98"
+ integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-named-capturing-groups-regex@^7.0.0":
version "7.18.6"
@@ -1021,20 +1428,36 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.12.tgz#9c4a5a5966e0434d515f2675c227fd8cc8606931"
- integrity sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f"
+ integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.17.12"
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-new-target@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.17.12.tgz#10842cd605a620944e81ea6060e9e65c265742e3"
- integrity sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==
+"@babel/plugin-transform-new-target@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d"
+ integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381"
+ integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+
+"@babel/plugin-transform-numeric-separator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58"
+ integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-transform-object-assign@^7.16.7":
version "7.16.7"
@@ -1043,7 +1466,18 @@
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.16.7":
+"@babel/plugin-transform-object-rest-spread@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1"
+ integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==
+ dependencies:
+ "@babel/compat-data" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.22.5"
+
+"@babel/plugin-transform-object-super@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94"
integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==
@@ -1051,6 +1485,31 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/helper-replace-supers" "^7.16.7"
+"@babel/plugin-transform-object-super@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
+ integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
+
+"@babel/plugin-transform-optional-catch-binding@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333"
+ integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+
+"@babel/plugin-transform-optional-chaining@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz#1003762b9c14295501beb41be72426736bedd1e0"
+ integrity sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.17.12":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.17.12.tgz#eb467cd9586ff5ff115a9880d6fdbd4a846b7766"
@@ -1058,13 +1517,52 @@
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.16.7":
+"@babel/plugin-transform-parameters@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz#0ee349e9d1bc96e78e3b37a7af423a4078a7083f"
+ integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.20.2"
+
+"@babel/plugin-transform-parameters@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18"
+ integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-private-methods@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722"
+ integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-private-property-in-object@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32"
+ integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
+
+"@babel/plugin-transform-property-literals@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55"
integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
+"@babel/plugin-transform-property-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
+ integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
"@babel/plugin-transform-react-display-name@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz#7b6d40d232f4c0f550ea348593db3b21e2404340"
@@ -1097,20 +1595,20 @@
"@babel/plugin-syntax-jsx" "^7.17.12"
"@babel/types" "^7.17.12"
-"@babel/plugin-transform-regenerator@^7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.0.tgz#44274d655eb3f1af3f3a574ba819d3f48caf99d5"
- integrity sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==
+"@babel/plugin-transform-regenerator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa"
+ integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- regenerator-transform "^0.15.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ regenerator-transform "^0.15.1"
-"@babel/plugin-transform-reserved-words@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.17.12.tgz#7dbd349f3cdffba751e817cf40ca1386732f652f"
- integrity sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==
+"@babel/plugin-transform-reserved-words@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb"
+ integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-runtime@^7.0.0":
version "7.18.0"
@@ -1124,14 +1622,21 @@
babel-plugin-polyfill-regenerator "^0.3.0"
semver "^6.3.0"
-"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.16.7":
+"@babel/plugin-transform-shorthand-properties@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a"
integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.17.12":
+"@babel/plugin-transform-shorthand-properties@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
+ integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-spread@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.17.12.tgz#c112cad3064299f03ea32afed1d659223935d1f5"
integrity sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==
@@ -1139,26 +1644,48 @@
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
-"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.16.7":
+"@babel/plugin-transform-spread@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
+ integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+
+"@babel/plugin-transform-sticky-regex@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660"
integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.17.12":
+"@babel/plugin-transform-sticky-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
+ integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-template-literals@^7.0.0":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.17.12.tgz#4aec0a18f39dd86c442e1d077746df003e362c6e"
integrity sha512-kAKJ7DX1dSRa2s7WN1xUAuaQmkTpN+uig4wCKWivVXIObqGbVTUlSavHyfI2iZvz89GFAMGm9p2DBJ4Y1Tp0hw==
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
-"@babel/plugin-transform-typeof-symbol@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.17.12.tgz#0f12f57ac35e98b35b4ed34829948d42bd0e6889"
- integrity sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==
+"@babel/plugin-transform-template-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
+ integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-typeof-symbol@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34"
+ integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-typescript@^7.17.12", "@babel/plugin-transform-typescript@^7.5.0":
version "7.18.1"
@@ -1169,14 +1696,22 @@
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/plugin-syntax-typescript" "^7.17.12"
-"@babel/plugin-transform-unicode-escapes@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz#da8717de7b3287a2c6d659750c964f302b31ece3"
- integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==
+"@babel/plugin-transform-unicode-escapes@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c"
+ integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-unicode-property-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81"
+ integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.16.7":
+"@babel/plugin-transform-unicode-regex@^7.0.0":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2"
integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==
@@ -1184,38 +1719,42 @@
"@babel/helper-create-regexp-features-plugin" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/preset-env@^7.12.9":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.0.tgz#ec7e51f4c6e026816000b230ed7cf74a1530d91d"
- integrity sha512-cP74OMs7ECLPeG1reiCQ/D/ypyOxgfm8uR6HRYV23vTJ7Lu1nbgj9DQDo/vH59gnn7GOAwtTDPPYV4aXzsMKHA==
- dependencies:
- "@babel/compat-data" "^7.17.10"
- "@babel/helper-compilation-targets" "^7.17.10"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-validator-option" "^7.16.7"
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.17.12"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.17.12"
- "@babel/plugin-proposal-async-generator-functions" "^7.17.12"
- "@babel/plugin-proposal-class-properties" "^7.17.12"
- "@babel/plugin-proposal-class-static-block" "^7.18.0"
- "@babel/plugin-proposal-dynamic-import" "^7.16.7"
- "@babel/plugin-proposal-export-namespace-from" "^7.17.12"
- "@babel/plugin-proposal-json-strings" "^7.17.12"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.17.12"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.17.12"
- "@babel/plugin-proposal-numeric-separator" "^7.16.7"
- "@babel/plugin-proposal-object-rest-spread" "^7.18.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.16.7"
- "@babel/plugin-proposal-optional-chaining" "^7.17.12"
- "@babel/plugin-proposal-private-methods" "^7.17.12"
- "@babel/plugin-proposal-private-property-in-object" "^7.17.12"
- "@babel/plugin-proposal-unicode-property-regex" "^7.17.12"
+"@babel/plugin-transform-unicode-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
+ integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-unicode-sets-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91"
+ integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/preset-env@^7.20.0":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.5.tgz#3da66078b181f3d62512c51cf7014392c511504e"
+ integrity sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==
+ dependencies:
+ "@babel/compat-data" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-option" "^7.22.5"
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5"
+ "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-class-properties" "^7.12.13"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-import-assertions" "^7.17.12"
+ "@babel/plugin-syntax-import-assertions" "^7.22.5"
+ "@babel/plugin-syntax-import-attributes" "^7.22.5"
+ "@babel/plugin-syntax-import-meta" "^7.10.4"
"@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
@@ -1225,44 +1764,61 @@
"@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.17.12"
- "@babel/plugin-transform-async-to-generator" "^7.17.12"
- "@babel/plugin-transform-block-scoped-functions" "^7.16.7"
- "@babel/plugin-transform-block-scoping" "^7.17.12"
- "@babel/plugin-transform-classes" "^7.17.12"
- "@babel/plugin-transform-computed-properties" "^7.17.12"
- "@babel/plugin-transform-destructuring" "^7.18.0"
- "@babel/plugin-transform-dotall-regex" "^7.16.7"
- "@babel/plugin-transform-duplicate-keys" "^7.17.12"
- "@babel/plugin-transform-exponentiation-operator" "^7.16.7"
- "@babel/plugin-transform-for-of" "^7.17.12"
- "@babel/plugin-transform-function-name" "^7.16.7"
- "@babel/plugin-transform-literals" "^7.17.12"
- "@babel/plugin-transform-member-expression-literals" "^7.16.7"
- "@babel/plugin-transform-modules-amd" "^7.18.0"
- "@babel/plugin-transform-modules-commonjs" "^7.18.0"
- "@babel/plugin-transform-modules-systemjs" "^7.18.0"
- "@babel/plugin-transform-modules-umd" "^7.18.0"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.17.12"
- "@babel/plugin-transform-new-target" "^7.17.12"
- "@babel/plugin-transform-object-super" "^7.16.7"
- "@babel/plugin-transform-parameters" "^7.17.12"
- "@babel/plugin-transform-property-literals" "^7.16.7"
- "@babel/plugin-transform-regenerator" "^7.18.0"
- "@babel/plugin-transform-reserved-words" "^7.17.12"
- "@babel/plugin-transform-shorthand-properties" "^7.16.7"
- "@babel/plugin-transform-spread" "^7.17.12"
- "@babel/plugin-transform-sticky-regex" "^7.16.7"
- "@babel/plugin-transform-template-literals" "^7.17.12"
- "@babel/plugin-transform-typeof-symbol" "^7.17.12"
- "@babel/plugin-transform-unicode-escapes" "^7.16.7"
- "@babel/plugin-transform-unicode-regex" "^7.16.7"
+ "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
+ "@babel/plugin-transform-arrow-functions" "^7.22.5"
+ "@babel/plugin-transform-async-generator-functions" "^7.22.5"
+ "@babel/plugin-transform-async-to-generator" "^7.22.5"
+ "@babel/plugin-transform-block-scoped-functions" "^7.22.5"
+ "@babel/plugin-transform-block-scoping" "^7.22.5"
+ "@babel/plugin-transform-class-properties" "^7.22.5"
+ "@babel/plugin-transform-class-static-block" "^7.22.5"
+ "@babel/plugin-transform-classes" "^7.22.5"
+ "@babel/plugin-transform-computed-properties" "^7.22.5"
+ "@babel/plugin-transform-destructuring" "^7.22.5"
+ "@babel/plugin-transform-dotall-regex" "^7.22.5"
+ "@babel/plugin-transform-duplicate-keys" "^7.22.5"
+ "@babel/plugin-transform-dynamic-import" "^7.22.5"
+ "@babel/plugin-transform-exponentiation-operator" "^7.22.5"
+ "@babel/plugin-transform-export-namespace-from" "^7.22.5"
+ "@babel/plugin-transform-for-of" "^7.22.5"
+ "@babel/plugin-transform-function-name" "^7.22.5"
+ "@babel/plugin-transform-json-strings" "^7.22.5"
+ "@babel/plugin-transform-literals" "^7.22.5"
+ "@babel/plugin-transform-logical-assignment-operators" "^7.22.5"
+ "@babel/plugin-transform-member-expression-literals" "^7.22.5"
+ "@babel/plugin-transform-modules-amd" "^7.22.5"
+ "@babel/plugin-transform-modules-commonjs" "^7.22.5"
+ "@babel/plugin-transform-modules-systemjs" "^7.22.5"
+ "@babel/plugin-transform-modules-umd" "^7.22.5"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5"
+ "@babel/plugin-transform-new-target" "^7.22.5"
+ "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5"
+ "@babel/plugin-transform-numeric-separator" "^7.22.5"
+ "@babel/plugin-transform-object-rest-spread" "^7.22.5"
+ "@babel/plugin-transform-object-super" "^7.22.5"
+ "@babel/plugin-transform-optional-catch-binding" "^7.22.5"
+ "@babel/plugin-transform-optional-chaining" "^7.22.5"
+ "@babel/plugin-transform-parameters" "^7.22.5"
+ "@babel/plugin-transform-private-methods" "^7.22.5"
+ "@babel/plugin-transform-private-property-in-object" "^7.22.5"
+ "@babel/plugin-transform-property-literals" "^7.22.5"
+ "@babel/plugin-transform-regenerator" "^7.22.5"
+ "@babel/plugin-transform-reserved-words" "^7.22.5"
+ "@babel/plugin-transform-shorthand-properties" "^7.22.5"
+ "@babel/plugin-transform-spread" "^7.22.5"
+ "@babel/plugin-transform-sticky-regex" "^7.22.5"
+ "@babel/plugin-transform-template-literals" "^7.22.5"
+ "@babel/plugin-transform-typeof-symbol" "^7.22.5"
+ "@babel/plugin-transform-unicode-escapes" "^7.22.5"
+ "@babel/plugin-transform-unicode-property-regex" "^7.22.5"
+ "@babel/plugin-transform-unicode-regex" "^7.22.5"
+ "@babel/plugin-transform-unicode-sets-regex" "^7.22.5"
"@babel/preset-modules" "^0.1.5"
- "@babel/types" "^7.18.0"
- babel-plugin-polyfill-corejs2 "^0.3.0"
- babel-plugin-polyfill-corejs3 "^0.5.0"
- babel-plugin-polyfill-regenerator "^0.3.0"
- core-js-compat "^3.22.1"
+ "@babel/types" "^7.22.5"
+ babel-plugin-polyfill-corejs2 "^0.4.3"
+ babel-plugin-polyfill-corejs3 "^0.8.1"
+ babel-plugin-polyfill-regenerator "^0.5.0"
+ core-js-compat "^3.30.2"
semver "^6.3.0"
"@babel/preset-flow@^7.13.13":
@@ -1305,6 +1861,11 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
+"@babel/regjsgen@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
+
"@babel/runtime@^7.0.0", "@babel/runtime@^7.18.6":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz#b4fcfce55db3d2e5e080d2490f608a3b9f407f4a"
@@ -1312,7 +1873,14 @@
dependencies:
regenerator-runtime "^0.13.4"
-"@babel/runtime@^7.12.5", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2":
+"@babel/runtime@^7.20.0", "@babel/runtime@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec"
+ integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==
+ dependencies:
+ regenerator-runtime "^0.13.11"
+
+"@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2":
version "7.18.3"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4"
integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==
@@ -1351,7 +1919,7 @@
"@babel/parser" "^7.18.10"
"@babel/types" "^7.18.10"
-"@babel/template@^7.18.6", "@babel/template@^7.8.6":
+"@babel/template@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.6.tgz#1283f4993e00b929d6e2d3c72fdc9168a2977a31"
integrity sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==
@@ -1360,7 +1928,16 @@
"@babel/parser" "^7.18.6"
"@babel/types" "^7.18.6"
-"@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8", "@babel/traverse@^7.7.4":
+"@babel/template@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec"
+ integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==
+ dependencies:
+ "@babel/code-frame" "^7.22.5"
+ "@babel/parser" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
+"@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.7.4":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.0.tgz#0e5ec6db098660b2372dd63d096bf484e32d27ba"
integrity sha512-oNOO4vaoIQoGjDQ84LgtF/IAlxlyqL4TUuoQ7xLkQETFaHkY1F7yazhB4Kt3VcZGL0ZF/jhrEpnXqUb0M7V3sw==
@@ -1392,7 +1969,7 @@
debug "^4.1.0"
globals "^11.1.0"
-"@babel/traverse@^7.18.10", "@babel/traverse@^7.18.11", "@babel/traverse@^7.18.9":
+"@babel/traverse@^7.18.11":
version "7.18.11"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.11.tgz#3d51f2afbd83ecf9912bcbb5c4d94e3d2ddaa16f"
integrity sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==
@@ -1408,23 +1985,39 @@
debug "^4.1.0"
globals "^11.1.0"
-"@babel/traverse@^7.9.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.6.tgz#a228562d2f46e89258efa4ddd0416942e2fd671d"
- integrity sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.18.6"
- "@babel/helper-environment-visitor" "^7.18.6"
- "@babel/helper-function-name" "^7.18.6"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.18.6"
- "@babel/types" "^7.18.6"
+"@babel/traverse@^7.20.0", "@babel/traverse@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1"
+ integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==
+ dependencies:
+ "@babel/code-frame" "^7.22.5"
+ "@babel/generator" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.5"
+ "@babel/parser" "^7.22.5"
+ "@babel/types" "^7.22.5"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.8", "@babel/types@^7.17.12", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
+"@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8":
+ version "7.22.8"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e"
+ integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==
+ dependencies:
+ "@babel/code-frame" "^7.22.5"
+ "@babel/generator" "^7.22.7"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/parser" "^7.22.7"
+ "@babel/types" "^7.22.5"
+ debug "^4.1.0"
+ globals "^11.1.0"
+
+"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.17.12", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
version "7.18.0"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.0.tgz#ef523ea349722849cb4bf806e9342ede4d071553"
integrity sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw==
@@ -1449,7 +2042,7 @@
"@babel/helper-validator-identifier" "^7.18.6"
to-fast-properties "^2.0.0"
-"@babel/types@^7.18.6", "@babel/types@^7.18.7", "@babel/types@^7.9.0":
+"@babel/types@^7.18.6":
version "7.18.7"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.7.tgz#a4a2c910c15040ea52cdd1ddb1614a65c8041726"
integrity sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==
@@ -1457,19 +2050,29 @@
"@babel/helper-validator-identifier" "^7.18.6"
to-fast-properties "^2.0.0"
+"@babel/types@^7.20.0", "@babel/types@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe"
+ integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==
+ dependencies:
+ "@babel/helper-string-parser" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.5"
+ to-fast-properties "^2.0.0"
+
+"@babel/types@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
+ integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
+ dependencies:
+ "@babel/helper-string-parser" "^7.19.4"
+ "@babel/helper-validator-identifier" "^7.19.1"
+ to-fast-properties "^2.0.0"
+
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-"@cnakazawa/watch@^1.0.3":
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
- integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
- dependencies:
- exec-sh "^0.3.2"
- minimist "^1.2.0"
-
"@egjs/hammerjs@^2.0.17":
version "2.0.17"
resolved "https://registry.yarnpkg.com/@egjs/hammerjs/-/hammerjs-2.0.17.tgz#5dc02af75a6a06e4c2db0202cae38c9263895124"
@@ -1489,21 +2092,38 @@
resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
-"@eslint/eslintrc@^1.3.0":
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f"
- integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==
+"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.3.0":
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
+ integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
+ dependencies:
+ eslint-visitor-keys "^3.3.0"
+
+"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.5.0":
+ version "4.5.1"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884"
+ integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==
+
+"@eslint/eslintrc@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d"
+ integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
- espree "^9.3.2"
- globals "^13.15.0"
+ espree "^9.6.0"
+ globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.0"
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
+"@eslint/js@8.44.0":
+ version "8.44.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af"
+ integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==
+
"@expo/bunyan@4.0.0", "@expo/bunyan@^4.0.0":
version "4.0.0"
resolved "https://registry.yarnpkg.com/@expo/bunyan/-/bunyan-4.0.0.tgz#be0c1de943c7987a9fbd309ea0b1acd605890c7b"
@@ -1514,23 +2134,24 @@
mv "~2"
safe-json-stringify "~1"
-"@expo/cli@0.2.6":
- version "0.2.6"
- resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.2.6.tgz#b8048388f1d6148032656dc19725afc0c65a129a"
- integrity sha512-WFt4P4oUjmOUyvWFxW5LSXzJqjy9Jx5FCFDFEvfRlcdEkDhCNPOZOybuSjxKIWUoJ57TtPzyeG2J0OzAfhBl8g==
+"@expo/cli@0.10.10":
+ version "0.10.10"
+ resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.10.10.tgz#6a4b85d27cb039c4b976703665c68b2ce58810bb"
+ integrity sha512-YN5ziGfb+CBY51ezZHSRTnZ6FpJT8t8RG4OIKPFyvuO7PWctC52CEXgJ6CJDzgxAaiD/ubogciVAYqjvNa6Lnw==
dependencies:
- "@babel/runtime" "^7.14.0"
- "@expo/code-signing-certificates" "^0.0.2"
- "@expo/config" "~7.0.0"
- "@expo/config-plugins" "~5.0.0"
- "@expo/dev-server" "~0.1.110"
+ "@babel/runtime" "^7.20.0"
+ "@expo/code-signing-certificates" "0.0.5"
+ "@expo/config" "~8.1.0"
+ "@expo/config-plugins" "~7.2.0"
+ "@expo/dev-server" "0.5.4"
"@expo/devcert" "^1.0.0"
- "@expo/json-file" "^8.2.35"
- "@expo/metro-config" "~0.3.18"
+ "@expo/env" "0.0.5"
+ "@expo/json-file" "^8.2.37"
+ "@expo/metro-config" "~0.10.0"
"@expo/osascript" "^2.0.31"
- "@expo/package-manager" "~0.0.53"
- "@expo/plist" "^0.0.18"
- "@expo/prebuild-config" "~5.0.0"
+ "@expo/package-manager" "~1.0.0"
+ "@expo/plist" "^0.0.20"
+ "@expo/prebuild-config" "6.2.6"
"@expo/rudder-sdk-node" "1.1.1"
"@expo/spawn-async" "1.5.0"
"@expo/xcpretty" "^4.2.1"
@@ -1551,6 +2172,7 @@
getenv "^1.0.0"
graphql "15.8.0"
graphql-tag "^2.10.1"
+ https-proxy-agent "^5.0.1"
internal-ip "4.3.0"
is-root "^2.1.0"
js-yaml "^3.13.1"
@@ -1566,9 +2188,10 @@
progress "2.0.3"
prompts "^2.3.2"
qrcode-terminal "0.11.0"
+ require-from-string "^2.0.2"
requireg "^0.2.2"
resolve-from "^5.0.0"
- semver "^6.3.0"
+ semver "^7.5.3"
send "^0.18.0"
slugify "^1.3.4"
structured-headers "^0.4.1"
@@ -1577,46 +2200,25 @@
terminal-link "^2.1.1"
text-table "^0.2.0"
url-join "4.0.0"
- uuid "^3.4.0"
wrap-ansi "^7.0.0"
+ ws "^8.12.1"
-"@expo/code-signing-certificates@0.0.2", "@expo/code-signing-certificates@^0.0.2":
- version "0.0.2"
- resolved "https://registry.yarnpkg.com/@expo/code-signing-certificates/-/code-signing-certificates-0.0.2.tgz#65cd615800e6724b54831c966dd1a90145017246"
- integrity sha512-vnPHFjwOqxQ1VLztktY+fYCfwvLzjqpzKn09rchcQE7Sdf0wtW5fFtIZBEFOOY5wasp8tXSnp627zrAwazPHzg==
+"@expo/code-signing-certificates@0.0.5":
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz#a693ff684fb20c4725dade4b88a6a9f96b02496c"
+ integrity sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==
dependencies:
node-forge "^1.2.1"
nullthrows "^1.1.1"
-"@expo/config-plugins@4.1.5":
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-4.1.5.tgz#9d357d2cda9c095e511b51583ede8a3b76174068"
- integrity sha512-RVvU40RtZt12HavuDAe+LDIq9lHj7sheOfMEHdmpJ/uTA8pgvkbc56XF6JHQD+yRr6+uhhb+JnAasGq49dsQbw==
- dependencies:
- "@expo/config-types" "^45.0.0"
- "@expo/json-file" "8.2.36"
- "@expo/plist" "0.0.18"
- "@expo/sdk-runtime-versions" "^1.0.0"
- "@react-native/normalize-color" "^2.0.0"
- chalk "^4.1.2"
- debug "^4.3.1"
- find-up "~5.0.0"
- getenv "^1.0.0"
- glob "7.1.6"
- resolve-from "^5.0.0"
- semver "^7.3.5"
- slash "^3.0.0"
- xcode "^3.0.1"
- xml2js "0.4.23"
-
-"@expo/config-plugins@~5.0.0":
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-5.0.0.tgz#19f699aafa5809756b9be055189a14842f8da7ae"
- integrity sha512-Bgjgv64f/XqpXXKPAoGhc5dbmuJB8eOBkhV6FMI/RMP06HfL7EQvXgcBBoJThLAZVyd29XikFgaCvABt/NavxQ==
+"@expo/config-plugins@7.2.5", "@expo/config-plugins@~7.2.0":
+ version "7.2.5"
+ resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-7.2.5.tgz#b15f22878975fdc4ddcfa8cdc971937ddc4c0249"
+ integrity sha512-w+5ccu1IxBHgyQk9CPFKLZOk8yZQEyTjbJwOzESK1eR7QwosbcsLkN1c1WWUZYiCXwORu3UTwJYll4+X2xxJhQ==
dependencies:
- "@expo/config-types" "^46.0.0"
- "@expo/json-file" "8.2.36"
- "@expo/plist" "0.0.18"
+ "@expo/config-types" "^49.0.0-alpha.1"
+ "@expo/json-file" "~8.2.37"
+ "@expo/plist" "^0.0.20"
"@expo/sdk-runtime-versions" "^1.0.0"
"@react-native/normalize-color" "^2.0.0"
chalk "^4.1.2"
@@ -1625,17 +2227,17 @@
getenv "^1.0.0"
glob "7.1.6"
resolve-from "^5.0.0"
- semver "^7.3.5"
+ semver "^7.5.3"
slash "^3.0.0"
xcode "^3.0.1"
- xml2js "0.4.23"
+ xml2js "0.6.0"
-"@expo/config-plugins@~5.0.1":
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-5.0.1.tgz#66bc8d15785bdcd3598e466344f8c0518390179d"
- integrity sha512-1OfnsOrfeSkB0VZfT01UjQ5Uq6p+yYbq8yNkj0e99K/6NLHpyvIxj+5tZIV0nQXgkOcqBIABL2uA7lwB8CkaBQ==
+"@expo/config-plugins@~5.0.3":
+ version "5.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-5.0.4.tgz#216fea6558fe66615af1370de55193f4181cb23e"
+ integrity sha512-vzUcVpqOMs3h+hyRdhGwk+eGIOhXa5xYdd92yO17RMNHav3v/+ekMbs7XA2c3lepMO8Yd4/5hqmRw9ZTL6jGzg==
dependencies:
- "@expo/config-types" "^46.0.0"
+ "@expo/config-types" "^47.0.0"
"@expo/json-file" "8.2.36"
"@expo/plist" "0.0.18"
"@expo/sdk-runtime-versions" "^1.0.0"
@@ -1651,63 +2253,41 @@
xcode "^3.0.1"
xml2js "0.4.23"
-"@expo/config-types@^45.0.0":
- version "45.0.0"
- resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-45.0.0.tgz#963c2fdce8fbcbd003758b92ed8a25375f437ef6"
- integrity sha512-/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA==
-
-"@expo/config-types@^46.0.0":
- version "46.0.1"
- resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-46.0.1.tgz#ba5d6197222039de13aefdf0171d24b027781cd0"
- integrity sha512-LQWGDagQ0YXGSJyLomNDZrYXj/cUP+wczs9y2M8MB9UDoSU6dbLRMiSX0FMhhKKdxBK0p92VQxZyqOzGpIYfSw==
+"@expo/config-types@^47.0.0":
+ version "47.0.0"
+ resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-47.0.0.tgz#99eeabe0bba7a776e0f252b78beb0c574692c38d"
+ integrity sha512-r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g==
-"@expo/config-types@^46.0.1":
- version "46.0.2"
- resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-46.0.2.tgz#191f225ebfcbe624868ddc40efae79593f948dd8"
- integrity sha512-PXkmOgNwRyBfgVT1HmFZhfh3Qm7WKKyV6mk3/5HJ/LzPh1t+Zs2JrWX8U2YncTLV1QzV7nV8tnkyvszzqnZEzQ==
+"@expo/config-types@^49.0.0-alpha.1":
+ version "49.0.0"
+ resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-49.0.0.tgz#15ffef715285c06703f6fb7ec0cda853f645cc09"
+ integrity sha512-8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA==
-"@expo/config@6.0.24":
- version "6.0.24"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-6.0.24.tgz#3602da8fdfa817e290a52fb328fc8ed9d6bc61e7"
- integrity sha512-OcACI1md1Yo5TQmUxxueJ/RaTlR2Mgl6KswTFOYCL1XJERF/jjAx95zhWXH+JQGdlM0yB0vqM6vB6GbUFRvLxA==
+"@expo/config@8.1.2", "@expo/config@~8.1.0", "@expo/config@~8.1.1":
+ version "8.1.2"
+ resolved "https://registry.yarnpkg.com/@expo/config/-/config-8.1.2.tgz#7fff28b3acefe39702e9f3ce1c9fd896a52caa80"
+ integrity sha512-4e7hzPj50mQIlsrzOH6XZ36O094mPfPTIDIH4yv49bWNMc7GFLTofB/lcT+QyxiLaJuC0Wlk9yOLB8DIqmtwug==
dependencies:
"@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "4.1.5"
- "@expo/config-types" "^45.0.0"
- "@expo/json-file" "8.2.36"
- getenv "^1.0.0"
- glob "7.1.6"
- require-from-string "^2.0.2"
- resolve-from "^5.0.0"
- semver "7.3.2"
- slugify "^1.3.4"
- sucrase "^3.20.0"
-
-"@expo/config@7.0.0", "@expo/config@^7.0.0", "@expo/config@~7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-7.0.0.tgz#0289d4cadff48eaed33683384c41ae9a90bb8b00"
- integrity sha512-4807iau5gTcCAMUDWxsXfBX4E3embZJREO9c098GiRgAvCBc7PCqdGs9jEAKakCxmPbMGBURL17rKYAsHtZuQw==
- dependencies:
- "@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "~5.0.0"
- "@expo/config-types" "^46.0.0"
- "@expo/json-file" "8.2.36"
+ "@expo/config-plugins" "~7.2.0"
+ "@expo/config-types" "^49.0.0-alpha.1"
+ "@expo/json-file" "^8.2.37"
getenv "^1.0.0"
glob "7.1.6"
require-from-string "^2.0.2"
resolve-from "^5.0.0"
- semver "7.3.2"
+ semver "7.5.3"
slugify "^1.3.4"
sucrase "^3.20.0"
-"@expo/config@7.0.1", "@expo/config@~7.0.1":
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-7.0.1.tgz#d8e2e5410bb0b8e305690bbc76e6bb76f6a6de31"
- integrity sha512-4lu0wr45XXJ2MXiLAm2+fmOyy/jjqF3NuDm92fO6nuulRzEEvTP4w3vsibJ690rT81ohtvhpruKhkRs0wSjKWA==
+"@expo/config@~7.0.2":
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/@expo/config/-/config-7.0.3.tgz#c9c634e76186de25e296485e51418f1e52966e6e"
+ integrity sha512-joVtB5o+NF40Tmsdp65UzryRtbnCuMbXkVO4wJnNJO4aaK0EYLdHCYSewORVqNcDfGN0LphQr8VTG2npbd9CJA==
dependencies:
"@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "~5.0.1"
- "@expo/config-types" "^46.0.1"
+ "@expo/config-plugins" "~5.0.3"
+ "@expo/config-types" "^47.0.0"
"@expo/json-file" "8.2.36"
getenv "^1.0.0"
glob "7.1.6"
@@ -1731,22 +2311,24 @@
xcode "^3.0.0"
xml-js "^1.6.11"
-"@expo/dev-server@~0.1.110":
- version "0.1.113"
- resolved "https://registry.yarnpkg.com/@expo/dev-server/-/dev-server-0.1.113.tgz#db4a52af1817fbfbc9dbe52d8673ddc159d0b92c"
- integrity sha512-PT3HT+3h4ZS1bw6Zz8fqjNeryKOWe1FqGdnz4RSASxZGCzib6VHLfLbJeYHkq7t+ashSXRoAw3XW/9yVdbUqLA==
+"@expo/dev-server@0.5.4":
+ version "0.5.4"
+ resolved "https://registry.yarnpkg.com/@expo/dev-server/-/dev-server-0.5.4.tgz#de60dff310e32f24e8beb54ed5505bf0a03dbf08"
+ integrity sha512-+4CxCWq+lLIiOtO6r1CErU9U4irepBJbXUMzeQ3Vik9FEkuhMwSHHHAxxOB+VmD5IuomubUY3RVMUzEWABIouw==
dependencies:
"@expo/bunyan" "4.0.0"
- "@expo/metro-config" "0.3.18"
+ "@expo/metro-config" "~0.10.0"
"@expo/osascript" "2.0.33"
- body-parser "1.19.0"
+ "@expo/spawn-async" "^1.5.0"
+ body-parser "^1.20.1"
chalk "^4.0.0"
connect "^3.7.0"
fs-extra "9.0.0"
+ is-docker "^2.0.0"
+ is-wsl "^2.1.1"
node-fetch "^2.6.0"
open "^8.3.0"
resolve-from "^5.0.0"
- semver "7.3.2"
serialize-error "6.0.0"
temp-dir "^2.0.0"
@@ -1769,10 +2351,21 @@
tmp "^0.0.33"
tslib "^1.10.0"
-"@expo/image-utils@0.3.20":
- version "0.3.20"
- resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.3.20.tgz#b8777a2ca18e331f084e62ee8e0f047a6fc52c16"
- integrity sha512-NgF/80XENyCS+amwC0P6uk1fauEtUq7gijD19jvl2xknJaADq8M2dMCRHwWMVOXosr2v46f3Z++G/NjmyOVS7A==
+"@expo/env@0.0.5":
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/@expo/env/-/env-0.0.5.tgz#86526ed5c966fc39b2644341f7a10f4b855e59b8"
+ integrity sha512-UXuKAqyXfhMQC3gP0OyjXmFX08Z1fkVWiGBN7bYzfoX8LHatjeHrDtI6w5nDvd8XPxPvmqaZoEDw1lW3+dz3oQ==
+ dependencies:
+ chalk "^4.0.0"
+ debug "^4.3.4"
+ dotenv "~16.0.3"
+ dotenv-expand "~10.0.0"
+ getenv "^1.0.0"
+
+"@expo/image-utils@0.3.22", "@expo/image-utils@^0.3.18":
+ version "0.3.22"
+ resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.3.22.tgz#3a45fb2e268d20fcc761c87bca3aca7fd8e24260"
+ integrity sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==
dependencies:
"@expo/spawn-async" "1.5.0"
chalk "^4.0.0"
@@ -1786,10 +2379,10 @@
semver "7.3.2"
tempy "0.3.0"
-"@expo/image-utils@0.3.22":
- version "0.3.22"
- resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.3.22.tgz#3a45fb2e268d20fcc761c87bca3aca7fd8e24260"
- integrity sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==
+"@expo/image-utils@0.3.23":
+ version "0.3.23"
+ resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.3.23.tgz#f14fd7e1f5ff6f8e4911a41e27dd274470665c3f"
+ integrity sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==
dependencies:
"@expo/spawn-async" "1.5.0"
chalk "^4.0.0"
@@ -1803,7 +2396,7 @@
semver "7.3.2"
tempy "0.3.0"
-"@expo/json-file@8.2.36", "@expo/json-file@^8.2.35":
+"@expo/json-file@8.2.36":
version "8.2.36"
resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-8.2.36.tgz#62a505cb7f30a34d097386476794680a3f7385ff"
integrity sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==
@@ -1812,45 +2405,30 @@
json5 "^1.0.1"
write-file-atomic "^2.3.0"
-"@expo/metro-config@0.3.18":
- version "0.3.18"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.3.18.tgz#72705b3a0a3fb863b1a068f2b5f4cb43828cb26b"
- integrity sha512-DWtwV67kD8X2uOKIs5QyHlHD+6L6RAgudZZDBmu433ZvL62HAUYfjEi3+i0jeMiUqN85o1vbXg6xqWnBCpS50g==
- dependencies:
- "@expo/config" "6.0.24"
- "@expo/json-file" "8.2.36"
- chalk "^4.1.0"
- debug "^4.3.2"
- find-yarn-workspace-root "~2.0.0"
- getenv "^1.0.0"
- resolve-from "^5.0.0"
- sucrase "^3.20.0"
-
-"@expo/metro-config@~0.3.18":
- version "0.3.21"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.3.21.tgz#f0ac853aa43291b678a26d9f3d7b5f873ed794dc"
- integrity sha512-z3vaB+He/hvO3F65hdpmYjB2y969UtzB8u7M1y91AURDemsMT82xri7fjNxx6R4EVNzhr5a3PG93kArEDnuBfw==
+"@expo/json-file@^8.2.37", "@expo/json-file@~8.2.37":
+ version "8.2.37"
+ resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-8.2.37.tgz#9c02d3b42134907c69cc0a027b18671b69344049"
+ integrity sha512-YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q==
dependencies:
- "@expo/config" "7.0.0"
- "@expo/json-file" "8.2.36"
- chalk "^4.1.0"
- debug "^4.3.2"
- find-yarn-workspace-root "~2.0.0"
- getenv "^1.0.0"
- resolve-from "^5.0.0"
- sucrase "^3.20.0"
+ "@babel/code-frame" "~7.10.4"
+ json5 "^2.2.2"
+ write-file-atomic "^2.3.0"
-"@expo/metro-config@~0.3.19":
- version "0.3.22"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.3.22.tgz#fa4a0729ec8ecbc9c9fb79c63ecc66a299505c82"
- integrity sha512-R81sLbaeUBjN8IXcxiVx7GcpSj8z7szILl1b5yJDb38WdIFwxhrseA5wXaTT1yMhI+59w6n99T2qtFV2yD5qYA==
+"@expo/metro-config@~0.10.0":
+ version "0.10.6"
+ resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.10.6.tgz#d35761cd49a893f687b757cbd777d3ff461ee90f"
+ integrity sha512-TBSAEEBlFggsQcxY+LaDwoxOGT6hybCrEBtmi/UCzD/Ap2QIPX9jDxL9n+kXLv4x2EeTqFIK3pGHGChHahziHg==
dependencies:
- "@expo/config" "7.0.1"
- "@expo/json-file" "8.2.36"
+ "@expo/config" "~8.1.0"
+ "@expo/env" "0.0.5"
+ "@expo/json-file" "~8.2.37"
chalk "^4.1.0"
debug "^4.3.2"
find-yarn-workspace-root "~2.0.0"
getenv "^1.0.0"
+ jsc-safe-url "^0.2.4"
+ lightningcss "~1.19.0"
+ postcss "~8.4.21"
resolve-from "^5.0.0"
sucrase "^3.20.0"
@@ -1862,23 +2440,24 @@
"@expo/spawn-async" "^1.5.0"
exec-async "^2.2.0"
-"@expo/package-manager@~0.0.53":
- version "0.0.56"
- resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-0.0.56.tgz#214a8db48752cde968827c20c5b54a88187b5422"
- integrity sha512-PGk34uz4XDyhoNIlPh2D+BDsiXYuW2jXavTiax8d32uvHlRO6FN0cAsqlWD6fx3H2hRn8cU/leTuc4M7pYovCQ==
+"@expo/package-manager@~1.0.0":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.0.1.tgz#d0d6b0937df5016b0155b1d87bbaba9839bbeb9f"
+ integrity sha512-ue6NIIsNafa2bK7zUl7Y61YNtkPsg7sJcTOyQo/87Yqf6Q+2bOrvdw1xjviaFrMsTZcpOPVf+ZIEYtE0lw0k6A==
dependencies:
- "@expo/json-file" "8.2.36"
+ "@expo/json-file" "^8.2.37"
"@expo/spawn-async" "^1.5.0"
ansi-regex "^5.0.0"
chalk "^4.0.0"
find-up "^5.0.0"
find-yarn-workspace-root "~2.0.0"
+ js-yaml "^3.13.1"
+ micromatch "^4.0.2"
npm-package-arg "^7.0.0"
- rimraf "^3.0.2"
split "^1.0.1"
sudo-prompt "9.1.1"
-"@expo/plist@0.0.18", "@expo/plist@^0.0.18":
+"@expo/plist@0.0.18":
version "0.0.18"
resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.0.18.tgz#9abcde78df703a88f6d9fa1a557ee2f045d178b0"
integrity sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==
@@ -1887,15 +2466,24 @@
base64-js "^1.2.3"
xmlbuilder "^14.0.0"
-"@expo/prebuild-config@~5.0.0":
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-5.0.2.tgz#f4670f2482feee3ab3d4acc336b99c13ce0979dd"
- integrity sha512-EYVdPSnZTArC60g1C7ZTt0wFD6EQA23us7JcETae9y2KVdYQwQ+KF8okPJwlqVtMqk3Yaa6jpIXbzdxmHS+2ew==
+"@expo/plist@^0.0.20":
+ version "0.0.20"
+ resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.0.20.tgz#a6b3124438031c02b762bad5a47b70584d3c0072"
+ integrity sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==
+ dependencies:
+ "@xmldom/xmldom" "~0.7.7"
+ base64-js "^1.2.3"
+ xmlbuilder "^14.0.0"
+
+"@expo/prebuild-config@5.0.7":
+ version "5.0.7"
+ resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-5.0.7.tgz#4658b66126c4d32c7b6302571e458a71811b07aa"
+ integrity sha512-D+TBpJUHe4+oTGFPb4o0rrw/h1xxc6wF+abJnbDHUkhnaeiHkE2O3ByS7FdiZ2FT36t0OKqeSKG/xFwWT3m1Ew==
dependencies:
- "@expo/config" "7.0.0"
- "@expo/config-plugins" "~5.0.0"
- "@expo/config-types" "^46.0.0"
- "@expo/image-utils" "0.3.20"
+ "@expo/config" "~7.0.2"
+ "@expo/config-plugins" "~5.0.3"
+ "@expo/config-types" "^47.0.0"
+ "@expo/image-utils" "0.3.22"
"@expo/json-file" "8.2.36"
debug "^4.3.1"
fs-extra "^9.0.0"
@@ -1903,6 +2491,22 @@
semver "7.3.2"
xml2js "0.4.23"
+"@expo/prebuild-config@6.2.6":
+ version "6.2.6"
+ resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-6.2.6.tgz#c5b4f8adcba4be00c874d6b24a8267d45c555261"
+ integrity sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==
+ dependencies:
+ "@expo/config" "~8.1.0"
+ "@expo/config-plugins" "~7.2.0"
+ "@expo/config-types" "^49.0.0-alpha.1"
+ "@expo/image-utils" "0.3.22"
+ "@expo/json-file" "^8.2.37"
+ debug "^4.3.1"
+ fs-extra "^9.0.0"
+ resolve-from "^5.0.0"
+ semver "7.5.3"
+ xml2js "0.6.0"
+
"@expo/rudder-sdk-node@1.1.1":
version "1.1.1"
resolved "https://registry.yarnpkg.com/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz#6aa575f346833eb6290282118766d4919c808c6a"
@@ -1940,41 +2544,33 @@
resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-13.0.0.tgz#e2989b85e95a82bce216f88cf8fb583ab050ec95"
integrity sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA==
-"@expo/webpack-config@^0.17.0":
- version "0.17.0"
- resolved "https://registry.yarnpkg.com/@expo/webpack-config/-/webpack-config-0.17.0.tgz#25253e60a6d551be679b8864184d602cd10351ce"
- integrity sha512-qRBBcuMsWVQD3tiNlPkaX/KMOUxIq9bGCFwK4gW9Yw2WC2mrQHb3wVIsnVPRgHtnD29FFgRG8GypeKKT6cAkBQ==
+"@expo/webpack-config@^18.1.1":
+ version "18.1.1"
+ resolved "https://registry.yarnpkg.com/@expo/webpack-config/-/webpack-config-18.1.1.tgz#8f55442e44e8e906c7516973c12f143aa7db25ad"
+ integrity sha512-6mBEnnviwIsQ/+YBT9Nos+nFkNP+g+58DU4y3DTR8sKR/MPm3FAtJ57FOGAoCKX/Kur/5aV92qWVax6L08M4+g==
dependencies:
- "@babel/core" "7.9.0"
- "@expo/config" "6.0.24"
- babel-loader "8.1.0"
+ "@babel/core" "^7.20.2"
+ babel-loader "^8.3.0"
chalk "^4.0.0"
- clean-webpack-plugin "^3.0.0"
- copy-webpack-plugin "~6.0.3"
- css-loader "~3.6.0"
- expo-pwa "0.0.122"
- file-loader "~6.0.0"
+ clean-webpack-plugin "^4.0.0"
+ copy-webpack-plugin "^10.2.0"
+ css-loader "^6.5.1"
+ css-minimizer-webpack-plugin "^3.4.1"
+ expo-pwa "0.0.126"
+ find-up "^5.0.0"
find-yarn-workspace-root "~2.0.0"
getenv "^1.0.0"
- html-loader "~1.1.0"
- html-webpack-plugin "~4.3.0"
- image-size "^1.0.0"
+ html-webpack-plugin "^5.5.0"
is-wsl "^2.0.0"
- loader-utils "^2.0.0"
- mini-css-extract-plugin "^0.5.0"
- node-html-parser "^1.2.12"
- optimize-css-assets-webpack-plugin "^5.0.3"
- pnp-webpack-plugin "^1.5.0"
- postcss-safe-parser "^4.0.2"
- react-dev-utils "~11.0.1"
- schema-utils "^3.1.1"
+ mini-css-extract-plugin "^2.5.2"
+ node-html-parser "^5.2.0"
semver "~7.3.2"
- style-loader "~1.2.1"
- terser-webpack-plugin "^3.0.6"
- url-loader "~4.1.0"
- webpack "4.43.0"
- webpack-dev-server "3.11.0"
- webpack-manifest-plugin "~2.2.0"
+ source-map-loader "^3.0.1"
+ style-loader "^3.3.1"
+ terser-webpack-plugin "^5.3.0"
+ webpack "^5.64.4"
+ webpack-dev-server "^4.11.1"
+ webpack-manifest-plugin "^4.1.1"
"@expo/xcpretty@^4.2.1":
version "4.2.2"
@@ -2030,20 +2626,18 @@
resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
-"@gorhom/bottom-sheet@^4.3.0":
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/@gorhom/bottom-sheet/-/bottom-sheet-4.3.1.tgz#842790fd9f4c2470dc0682a1eb9616b68f93a71e"
- integrity sha512-z7Mlo8GOqGAZsPJXL17v3o+I1TQBPZ+n+FmZybBCoM73m/aYXLCtpXo/knoPaZkI91eKuWQ3LLz+yCfGkNPiuA==
+"@gorhom/bottom-sheet@^4.4.7":
+ version "4.4.7"
+ resolved "https://registry.yarnpkg.com/@gorhom/bottom-sheet/-/bottom-sheet-4.4.7.tgz#fc80b3f0b7ebab056ce226f3aa3a89b2db8660dd"
+ integrity sha512-ukTuTqDQi2heo68hAJsBpUQeEkdqP9REBcn47OpuvPKhdPuO1RBOOADjqXJNCnZZRcY+HqbnGPMSLFVc31zylQ==
dependencies:
- "@gorhom/portal" "1.0.13"
+ "@gorhom/portal" "1.0.14"
invariant "^2.2.4"
- nanoid "^3.3.3"
- react-native-redash "^16.1.1"
-"@gorhom/portal@1.0.13":
- version "1.0.13"
- resolved "https://registry.yarnpkg.com/@gorhom/portal/-/portal-1.0.13.tgz#da3af4d427e1fa68d264107de4b3072a4adf35ce"
- integrity sha512-ViClKPkyGnj8HVMW45OGQSnGbWBVh8i3tgMOkGqpm6Cv0WVcDfUL7SER6zyGQy8Wdoj3GUDpAJFMqVOxpmRpzw==
+"@gorhom/portal@1.0.14":
+ version "1.0.14"
+ resolved "https://registry.yarnpkg.com/@gorhom/portal/-/portal-1.0.14.tgz#1953edb76aaba80fb24021dc774550194a18e111"
+ integrity sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==
dependencies:
nanoid "^3.3.1"
@@ -2064,20 +2658,30 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@humanwhocodes/config-array@^0.9.2":
- version "0.9.5"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
- integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
+"@humanwhocodes/config-array@^0.11.10":
+ version "0.11.10"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
+ integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
debug "^4.1.1"
- minimatch "^3.0.4"
+ minimatch "^3.0.5"
+
+"@humanwhocodes/module-importer@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
+ integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
"@humanwhocodes/object-schema@^1.2.1":
version "1.2.1"
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
+"@ide/backoff@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@ide/backoff/-/backoff-1.0.0.tgz#466842c25bd4a4833e0642fab41ccff064010176"
+ integrity sha512-F0YfUDjvT+Mtt/R4xdl2X0EYCHMMiJqNLdxHD++jDT5ydEFIyqbCHh51Qx2E211dgZprPKhV7sHmnXKpLuvc5g==
+
"@internationalized/date@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.0.0.tgz#078fabe35d148717ed817746673042281b77a958"
@@ -2116,201 +2720,278 @@
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
-"@jest/console@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2"
- integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==
+"@jest/console@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57"
+ integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==
dependencies:
- "@jest/types" "^26.6.2"
+ "@jest/types" "^29.5.0"
"@types/node" "*"
chalk "^4.0.0"
- jest-message-util "^26.6.2"
- jest-util "^26.6.2"
+ jest-message-util "^29.5.0"
+ jest-util "^29.5.0"
slash "^3.0.0"
-"@jest/console@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba"
- integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==
+"@jest/console@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.6.1.tgz#b48ba7b9c34b51483e6d590f46e5837f1ab5f639"
+ integrity sha512-Aj772AYgwTSr5w8qnyoJ0eDYvN6bMsH3ORH1ivMotrInHLKdUz6BDlaEXHdM6kODaBIkNIyQGzsMvRdOv7VG7Q==
dependencies:
- "@jest/types" "^27.5.1"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
chalk "^4.0.0"
- jest-message-util "^27.5.1"
- jest-util "^27.5.1"
+ jest-message-util "^29.6.1"
+ jest-util "^29.6.1"
slash "^3.0.0"
-"@jest/core@^26.6.3":
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad"
- integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==
+"@jest/core@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.6.1.tgz#fac0d9ddf320490c93356ba201451825231e95f6"
+ integrity sha512-CcowHypRSm5oYQ1obz1wfvkjZZ2qoQlrKKvlfPwh5jUXVU12TWr2qMeH8chLMuTFzHh5a1g2yaqlqDICbr+ukQ==
dependencies:
- "@jest/console" "^26.6.2"
- "@jest/reporters" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
+ "@jest/console" "^29.6.1"
+ "@jest/reporters" "^29.6.1"
+ "@jest/test-result" "^29.6.1"
+ "@jest/transform" "^29.6.1"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
+ ci-info "^3.2.0"
exit "^0.1.2"
- graceful-fs "^4.2.4"
- jest-changed-files "^26.6.2"
- jest-config "^26.6.3"
- jest-haste-map "^26.6.2"
- jest-message-util "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-resolve-dependencies "^26.6.3"
- jest-runner "^26.6.3"
- jest-runtime "^26.6.3"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- jest-watcher "^26.6.2"
- micromatch "^4.0.2"
- p-each-series "^2.1.0"
- rimraf "^3.0.0"
+ graceful-fs "^4.2.9"
+ jest-changed-files "^29.5.0"
+ jest-config "^29.6.1"
+ jest-haste-map "^29.6.1"
+ jest-message-util "^29.6.1"
+ jest-regex-util "^29.4.3"
+ jest-resolve "^29.6.1"
+ jest-resolve-dependencies "^29.6.1"
+ jest-runner "^29.6.1"
+ jest-runtime "^29.6.1"
+ jest-snapshot "^29.6.1"
+ jest-util "^29.6.1"
+ jest-validate "^29.6.1"
+ jest-watcher "^29.6.1"
+ micromatch "^4.0.4"
+ pretty-format "^29.6.1"
slash "^3.0.0"
strip-ansi "^6.0.0"
-"@jest/create-cache-key-function@^27.0.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-27.5.1.tgz#7448fae15602ea95c828f5eceed35c202a820b31"
- integrity sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==
+"@jest/create-cache-key-function@^29.2.1":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-29.5.0.tgz#24e019d03e634be4affe8bcee787d75a36ae57a2"
+ integrity sha512-LIDZyZgnZss7uikvBKBB/USWwG+GO8+GnwRWT+YkCGDGsqLQlhm9BC3z6+7+eMs1kUlvXQIWEzBR8Q2Pnvx6lg==
dependencies:
- "@jest/types" "^27.5.1"
+ "@jest/types" "^29.5.0"
-"@jest/environment@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c"
- integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==
+"@jest/environment@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65"
+ integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==
dependencies:
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
+ "@jest/fake-timers" "^29.5.0"
+ "@jest/types" "^29.5.0"
"@types/node" "*"
- jest-mock "^26.6.2"
+ jest-mock "^29.5.0"
-"@jest/fake-timers@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad"
- integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==
+"@jest/environment@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.6.1.tgz#ee358fff2f68168394b4a50f18c68278a21fe82f"
+ integrity sha512-RMMXx4ws+Gbvw3DfLSuo2cfQlK7IwGbpuEWXCqyYDcqYTI+9Ju3a5hDnXaxjNsa6uKh9PQF2v+qg+RLe63tz5A==
dependencies:
- "@jest/types" "^26.6.2"
- "@sinonjs/fake-timers" "^6.0.1"
+ "@jest/fake-timers" "^29.6.1"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
- jest-message-util "^26.6.2"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
+ jest-mock "^29.6.1"
-"@jest/globals@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a"
- integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==
+"@jest/expect-utils@^29.2.2":
+ version "29.2.2"
+ resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.2.2.tgz#460a5b5a3caf84d4feb2668677393dd66ff98665"
+ integrity sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==
dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/types" "^26.6.2"
- expect "^26.6.2"
+ jest-get-type "^29.2.0"
-"@jest/reporters@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6"
- integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==
+"@jest/expect-utils@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.6.1.tgz#ab83b27a15cdd203fe5f68230ea22767d5c3acc5"
+ integrity sha512-o319vIf5pEMx0LmzSxxkYYxo4wrRLKHq9dP1yJU7FoPTB0LfAKSz8SWD6D/6U3v/O52t9cF5t+MeJiRsfk7zMw==
+ dependencies:
+ jest-get-type "^29.4.3"
+
+"@jest/expect@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.6.1.tgz#fef18265188f6a97601f1ea0a2912d81a85b4657"
+ integrity sha512-N5xlPrAYaRNyFgVf2s9Uyyvr795jnB6rObuPx4QFvNJz8aAjpZUDfO4bh5G/xuplMID8PrnuF1+SfSyDxhsgYg==
+ dependencies:
+ expect "^29.6.1"
+ jest-snapshot "^29.6.1"
+
+"@jest/fake-timers@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c"
+ integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==
+ dependencies:
+ "@jest/types" "^29.5.0"
+ "@sinonjs/fake-timers" "^10.0.2"
+ "@types/node" "*"
+ jest-message-util "^29.5.0"
+ jest-mock "^29.5.0"
+ jest-util "^29.5.0"
+
+"@jest/fake-timers@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.6.1.tgz#c773efddbc61e1d2efcccac008139f621de57c69"
+ integrity sha512-RdgHgbXyosCDMVYmj7lLpUwXA4c69vcNzhrt69dJJdf8azUrpRh3ckFCaTPNjsEeRi27Cig0oKDGxy5j7hOgHg==
+ dependencies:
+ "@jest/types" "^29.6.1"
+ "@sinonjs/fake-timers" "^10.0.2"
+ "@types/node" "*"
+ jest-message-util "^29.6.1"
+ jest-mock "^29.6.1"
+ jest-util "^29.6.1"
+
+"@jest/globals@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.6.1.tgz#c8a8923e05efd757308082cc22893d82b8aa138f"
+ integrity sha512-2VjpaGy78JY9n9370H8zGRCFbYVWwjY6RdDMhoJHa1sYfwe6XM/azGN0SjY8kk7BOZApIejQ1BFPyH7FPG0w3A==
+ dependencies:
+ "@jest/environment" "^29.6.1"
+ "@jest/expect" "^29.6.1"
+ "@jest/types" "^29.6.1"
+ jest-mock "^29.6.1"
+
+"@jest/reporters@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.6.1.tgz#3325a89c9ead3cf97ad93df3a427549d16179863"
+ integrity sha512-9zuaI9QKr9JnoZtFQlw4GREQbxgmNYXU6QuWtmuODvk5nvPUeBYapVR/VYMyi2WSx3jXTLJTJji8rN6+Cm4+FA==
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
- "@jest/console" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
+ "@jest/console" "^29.6.1"
+ "@jest/test-result" "^29.6.1"
+ "@jest/transform" "^29.6.1"
+ "@jest/types" "^29.6.1"
+ "@jridgewell/trace-mapping" "^0.3.18"
+ "@types/node" "*"
chalk "^4.0.0"
collect-v8-coverage "^1.0.0"
exit "^0.1.2"
- glob "^7.1.2"
- graceful-fs "^4.2.4"
+ glob "^7.1.3"
+ graceful-fs "^4.2.9"
istanbul-lib-coverage "^3.0.0"
- istanbul-lib-instrument "^4.0.3"
+ istanbul-lib-instrument "^5.1.0"
istanbul-lib-report "^3.0.0"
istanbul-lib-source-maps "^4.0.0"
- istanbul-reports "^3.0.2"
- jest-haste-map "^26.6.2"
- jest-resolve "^26.6.2"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
+ istanbul-reports "^3.1.3"
+ jest-message-util "^29.6.1"
+ jest-util "^29.6.1"
+ jest-worker "^29.6.1"
slash "^3.0.0"
- source-map "^0.6.0"
string-length "^4.0.1"
- terminal-link "^2.0.0"
- v8-to-istanbul "^7.0.0"
- optionalDependencies:
- node-notifier "^8.0.0"
+ strip-ansi "^6.0.0"
+ v8-to-istanbul "^9.0.1"
-"@jest/schemas@^28.1.3":
- version "28.1.3"
- resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.1.3.tgz#ad8b86a66f11f33619e3d7e1dcddd7f2d40ff905"
- integrity sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==
+"@jest/schemas@^29.0.0":
+ version "29.0.0"
+ resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.0.0.tgz#5f47f5994dd4ef067fb7b4188ceac45f77fe952a"
+ integrity sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==
dependencies:
"@sinclair/typebox" "^0.24.1"
-"@jest/source-map@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535"
- integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==
+"@jest/schemas@^29.4.3":
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788"
+ integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==
dependencies:
- callsites "^3.0.0"
- graceful-fs "^4.2.4"
- source-map "^0.6.0"
+ "@sinclair/typebox" "^0.25.16"
-"@jest/test-result@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18"
- integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==
+"@jest/schemas@^29.6.0":
+ version "29.6.0"
+ resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040"
+ integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==
dependencies:
- "@jest/console" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/istanbul-lib-coverage" "^2.0.0"
+ "@sinclair/typebox" "^0.27.8"
+
+"@jest/source-map@^29.6.0":
+ version "29.6.0"
+ resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.0.tgz#bd34a05b5737cb1a99d43e1957020ac8e5b9ddb1"
+ integrity sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA==
+ dependencies:
+ "@jridgewell/trace-mapping" "^0.3.18"
+ callsites "^3.0.0"
+ graceful-fs "^4.2.9"
+
+"@jest/test-result@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408"
+ integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==
+ dependencies:
+ "@jest/console" "^29.5.0"
+ "@jest/types" "^29.5.0"
+ "@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
-"@jest/test-result@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb"
- integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==
+"@jest/test-result@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.6.1.tgz#850e565a3f58ee8ca6ec424db00cb0f2d83c36ba"
+ integrity sha512-Ynr13ZRcpX6INak0TPUukU8GWRfm/vAytE3JbJNGAvINySWYdfE7dGZMbk36oVuK4CigpbhMn8eg1dixZ7ZJOw==
dependencies:
- "@jest/console" "^27.5.1"
- "@jest/types" "^27.5.1"
+ "@jest/console" "^29.6.1"
+ "@jest/types" "^29.6.1"
"@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
-"@jest/test-sequencer@^26.6.3":
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17"
- integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==
+"@jest/test-sequencer@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.6.1.tgz#e3e582ee074dd24ea9687d7d1aaf05ee3a9b068e"
+ integrity sha512-oBkC36PCDf/wb6dWeQIhaviU0l5u6VCsXa119yqdUosYAt7/FbQU2M2UoziO3igj/HBDEgp57ONQ3fm0v9uyyg==
dependencies:
- "@jest/test-result" "^26.6.2"
- graceful-fs "^4.2.4"
- jest-haste-map "^26.6.2"
- jest-runner "^26.6.3"
- jest-runtime "^26.6.3"
+ "@jest/test-result" "^29.6.1"
+ graceful-fs "^4.2.9"
+ jest-haste-map "^29.6.1"
+ slash "^3.0.0"
-"@jest/transform@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.6.2.tgz#5ac57c5fa1ad17b2aae83e73e45813894dcf2e4b"
- integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==
+"@jest/transform@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9"
+ integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==
dependencies:
- "@babel/core" "^7.1.0"
- "@jest/types" "^26.6.2"
- babel-plugin-istanbul "^6.0.0"
+ "@babel/core" "^7.11.6"
+ "@jest/types" "^29.5.0"
+ "@jridgewell/trace-mapping" "^0.3.15"
+ babel-plugin-istanbul "^6.1.1"
chalk "^4.0.0"
- convert-source-map "^1.4.0"
- fast-json-stable-stringify "^2.0.0"
- graceful-fs "^4.2.4"
- jest-haste-map "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-util "^26.6.2"
- micromatch "^4.0.2"
- pirates "^4.0.1"
+ convert-source-map "^2.0.0"
+ fast-json-stable-stringify "^2.1.0"
+ graceful-fs "^4.2.9"
+ jest-haste-map "^29.5.0"
+ jest-regex-util "^29.4.3"
+ jest-util "^29.5.0"
+ micromatch "^4.0.4"
+ pirates "^4.0.4"
slash "^3.0.0"
- source-map "^0.6.1"
- write-file-atomic "^3.0.0"
+ write-file-atomic "^4.0.2"
+
+"@jest/transform@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.6.1.tgz#acb5606019a197cb99beda3c05404b851f441c92"
+ integrity sha512-URnTneIU3ZjRSaf906cvf6Hpox3hIeJXRnz3VDSw5/X93gR8ycdfSIEy19FlVx8NFmpN7fe3Gb1xF+NjXaQLWg==
+ dependencies:
+ "@babel/core" "^7.11.6"
+ "@jest/types" "^29.6.1"
+ "@jridgewell/trace-mapping" "^0.3.18"
+ babel-plugin-istanbul "^6.1.1"
+ chalk "^4.0.0"
+ convert-source-map "^2.0.0"
+ fast-json-stable-stringify "^2.1.0"
+ graceful-fs "^4.2.9"
+ jest-haste-map "^29.6.1"
+ jest-regex-util "^29.4.3"
+ jest-util "^29.6.1"
+ micromatch "^4.0.4"
+ pirates "^4.0.4"
+ slash "^3.0.0"
+ write-file-atomic "^4.0.2"
"@jest/types@^26.6.2":
version "26.6.2"
@@ -2334,6 +3015,42 @@
"@types/yargs" "^16.0.0"
chalk "^4.0.0"
+"@jest/types@^29.2.1":
+ version "29.2.1"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.2.1.tgz#ec9c683094d4eb754e41e2119d8bdaef01cf6da0"
+ integrity sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw==
+ dependencies:
+ "@jest/schemas" "^29.0.0"
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
+ "@types/yargs" "^17.0.8"
+ chalk "^4.0.0"
+
+"@jest/types@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593"
+ integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==
+ dependencies:
+ "@jest/schemas" "^29.4.3"
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
+ "@types/yargs" "^17.0.8"
+ chalk "^4.0.0"
+
+"@jest/types@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2"
+ integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==
+ dependencies:
+ "@jest/schemas" "^29.6.0"
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
+ "@types/yargs" "^17.0.8"
+ chalk "^4.0.0"
+
"@jridgewell/gen-mapping@^0.1.0":
version "0.1.1"
resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
@@ -2360,6 +3077,11 @@
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
+"@jridgewell/resolve-uri@3.1.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
+ integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
+
"@jridgewell/resolve-uri@^3.0.3":
version "3.0.7"
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe"
@@ -2375,11 +3097,32 @@
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
+"@jridgewell/source-map@^0.3.3":
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda"
+ integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.0"
+ "@jridgewell/trace-mapping" "^0.3.9"
+
+"@jridgewell/sourcemap-codec@1.4.14":
+ version "1.4.14"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
+ integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
+
"@jridgewell/sourcemap-codec@^1.4.10":
version "1.4.13"
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c"
integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==
+"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18":
+ version "0.3.18"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
+ integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
+ dependencies:
+ "@jridgewell/resolve-uri" "3.1.0"
+ "@jridgewell/sourcemap-codec" "1.4.14"
+
"@jridgewell/trace-mapping@^0.3.9":
version "0.3.13"
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea"
@@ -2388,6 +3131,11 @@
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
+"@leichtgewicht/ip-codec@^2.0.1":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b"
+ integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==
+
"@miragejs/pretender-node-polyfill@^0.1.0":
version "0.1.2"
resolved "https://registry.yarnpkg.com/@miragejs/pretender-node-polyfill/-/pretender-node-polyfill-0.1.2.tgz#d26b6b7483fb70cd62189d05c95d2f67153e43f2"
@@ -2437,6 +3185,64 @@
"@motify/components" "^0.18.0"
"@motify/core" "^0.18.0"
+"@motionone/animation@^10.12.0":
+ version "10.15.1"
+ resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.15.1.tgz#4a85596c31cbc5100ae8eb8b34c459fb0ccf6807"
+ integrity sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ==
+ dependencies:
+ "@motionone/easing" "^10.15.1"
+ "@motionone/types" "^10.15.1"
+ "@motionone/utils" "^10.15.1"
+ tslib "^2.3.1"
+
+"@motionone/dom@10.12.0":
+ version "10.12.0"
+ resolved "https://registry.yarnpkg.com/@motionone/dom/-/dom-10.12.0.tgz#ae30827fd53219efca4e1150a5ff2165c28351ed"
+ integrity sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==
+ dependencies:
+ "@motionone/animation" "^10.12.0"
+ "@motionone/generators" "^10.12.0"
+ "@motionone/types" "^10.12.0"
+ "@motionone/utils" "^10.12.0"
+ hey-listen "^1.0.8"
+ tslib "^2.3.1"
+
+"@motionone/easing@^10.15.1":
+ version "10.15.1"
+ resolved "https://registry.yarnpkg.com/@motionone/easing/-/easing-10.15.1.tgz#95cf3adaef34da6deebb83940d8143ede3deb693"
+ integrity sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw==
+ dependencies:
+ "@motionone/utils" "^10.15.1"
+ tslib "^2.3.1"
+
+"@motionone/generators@^10.12.0":
+ version "10.15.1"
+ resolved "https://registry.yarnpkg.com/@motionone/generators/-/generators-10.15.1.tgz#dc6abb11139d1bafe758a41c134d4c753a9b871c"
+ integrity sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ==
+ dependencies:
+ "@motionone/types" "^10.15.1"
+ "@motionone/utils" "^10.15.1"
+ tslib "^2.3.1"
+
+"@motionone/types@^10.12.0", "@motionone/types@^10.15.1":
+ version "10.15.1"
+ resolved "https://registry.yarnpkg.com/@motionone/types/-/types-10.15.1.tgz#89441b54285012795cbba8612cbaa0fa420db3eb"
+ integrity sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA==
+
+"@motionone/utils@^10.12.0", "@motionone/utils@^10.15.1":
+ version "10.15.1"
+ resolved "https://registry.yarnpkg.com/@motionone/utils/-/utils-10.15.1.tgz#6b5f51bde75be88b5411e084310299050368a438"
+ integrity sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw==
+ dependencies:
+ "@motionone/types" "^10.15.1"
+ hey-listen "^1.0.8"
+ tslib "^2.3.1"
+
+"@nicolo-ribaudo/semver-v6@^6.3.3":
+ version "6.3.3"
+ resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz#ea6d23ade78a325f7a52750aab1526b02b628c29"
+ integrity sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==
+
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
@@ -2450,7 +3256,7 @@
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
-"@nodelib/fs.walk@^1.2.3":
+"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
version "1.2.8"
resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
@@ -2733,7 +3539,7 @@
"@react-stately/toggle" "^3.2.1"
"@react-types/checkbox" "^3.2.1"
-"@react-native-aria/checkbox@^0.2.2":
+"@react-native-aria/checkbox@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@react-native-aria/checkbox/-/checkbox-0.2.3.tgz#b6c99c215677df872f1bb4e596b54573f1c7a5f0"
integrity sha512-YtWtXGg5tvOaV6v1CmbusXoOZvGRAVYygms9qNeUF7/B8/iDNGSKjlxHE5LVOLRtJO/B9ndZnr6RkL326ceyng==
@@ -2756,10 +3562,10 @@
"@react-native-aria/utils" "^0.2.6"
"@react-types/button" "^3.3.1"
-"@react-native-aria/focus@^0.2.4":
- version "0.2.5"
- resolved "https://registry.yarnpkg.com/@react-native-aria/focus/-/focus-0.2.5.tgz#28ff752b28b7dfeb737147856aaf6669de3290f9"
- integrity sha512-PUTGNL5JMCWJ2dNAehpQqLuSUUdkXcLlFjl52Dv84XcIUTuXRvDl5+jr4OW0jyUSGUS6ooqDNRW/PSza35P+tw==
+"@react-native-aria/focus@^0.2.6":
+ version "0.2.7"
+ resolved "https://registry.yarnpkg.com/@react-native-aria/focus/-/focus-0.2.7.tgz#fd339d5ec8384cee6afe0c0115a528f360d04a27"
+ integrity sha512-7Ol8AoTzEN7qC4t4AzclPzjQZ0oRkNBePmVBm2lAQwOnmkKwa+TdiVGtU7MgvsQxUV3aTTMY2Nu1Z5YwCwhUkA==
dependencies:
"@react-aria/focus" "^3.2.3"
@@ -2787,10 +3593,10 @@
"@react-types/listbox" "^3.1.1"
"@react-types/shared" "^3.4.0"
-"@react-native-aria/overlays@0.3.3-rc.0":
- version "0.3.3-rc.0"
- resolved "https://registry.yarnpkg.com/@react-native-aria/overlays/-/overlays-0.3.3-rc.0.tgz#9041ddd6f151e6edb50c971d29920c458aa41459"
- integrity sha512-RgaIYIHMltt0RdMrVwfXLAVxc22TIUY1Yx07HbQRMdt4LcSmU8pyp5CEtJ/MQCXceuqocnXfsUxyHOSnfhmfpA==
+"@react-native-aria/overlays@^0.3.3":
+ version "0.3.7"
+ resolved "https://registry.yarnpkg.com/@react-native-aria/overlays/-/overlays-0.3.7.tgz#4e9e9024947cc4219ec9c6461f96033e2cd7e779"
+ integrity sha512-R0egaQoQtwMG6HA4hAoLFHcQOMLfv2WBIjPdnF6OJHxqFW2+Kzw9j2WqwjV90/cP1evU/iWnzKX48ed83xAh9Q==
dependencies:
"@react-aria/interactions" "^3.3.2"
"@react-aria/overlays" "^3.7.0"
@@ -2856,53 +3662,55 @@
"@react-aria/ssr" "^3.0.1"
"@react-aria/utils" "^3.3.0"
-"@react-native-async-storage/async-storage@~1.17.3":
- version "1.17.6"
- resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.17.6.tgz#ddb3520d051f71698c8a0e79e8959a7bf6d9f43b"
- integrity sha512-XXnoheQI3vQTQmjphdXNLTmtiKZeRqvI8kPQ25X5Eae7nZjdYEEGN+0z8N2qyelbUIQwKgmW0aagJk56q7DyNg==
+"@react-native-async-storage/async-storage@1.18.2":
+ version "1.18.2"
+ resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.18.2.tgz#ec8fd487a0b6c9500b43ece4b8779d1561f12e91"
+ integrity sha512-dM8AfdoeIxlh+zqgr0o5+vCTPQ0Ru1mrPzONZMsr7ufp5h+6WgNxQNza7t0r5qQ6b04AJqTlBNixTWZxqP649Q==
dependencies:
merge-options "^3.0.4"
-"@react-native-community/cli-clean@^8.0.4":
- version "8.0.4"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-8.0.4.tgz#97e16a20e207b95de12e29b03816e8f2b2c80cc7"
- integrity sha512-IwS1M1NHg6+qL8PThZYMSIMYbZ6Zbx+lIck9PLBskbosFo24M3lCOflOl++Bggjakp6mR+sRXxLMexid/GeOsQ==
+"@react-native-community/cli-clean@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-11.3.3.tgz#e3b2d5a374f1b35d158087c3be196b59e1757262"
+ integrity sha512-5csu0Z2wNkLRZs4AxA+5UVtOdyGqdjZ9DEPccePlkN9IXEHTia2GdDuWZVVnlC50Ab3eTaGDKvFzy9QONHQusw==
dependencies:
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-tools" "11.3.3"
chalk "^4.1.2"
- execa "^1.0.0"
+ execa "^5.0.0"
prompts "^2.4.0"
-"@react-native-community/cli-config@^8.0.6":
- version "8.0.6"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-8.0.6.tgz#041eee7dd8fdef595bf7a3f24228c173bf294a44"
- integrity sha512-mjVpVvdh8AviiO8xtqeX+BkjqE//NMDnISwsLWSJUfNCwTAPmdR8PGbhgP5O4hWHyJ3WkepTopl0ya7Tfi3ifw==
+"@react-native-community/cli-config@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-11.3.3.tgz#85dc44dd4f43a73f73b395241db24235e81c5914"
+ integrity sha512-j87RHJlybNHD1mYSkHnWA4qLkEO6qVn0+sREZGdQ6gVmOzxvLzvEB+YMoNEEqFGmPiyt3WTMLgi7jUr6WVoKuQ==
dependencies:
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-tools" "11.3.3"
+ chalk "^4.1.2"
cosmiconfig "^5.1.0"
- deepmerge "^3.2.0"
+ deepmerge "^4.3.0"
glob "^7.1.3"
joi "^17.2.1"
-"@react-native-community/cli-debugger-ui@^8.0.0":
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-8.0.0.tgz#98263dc525e65015e2d6392c940114028f87e8e9"
- integrity sha512-u2jq06GZwZ9sRERzd9FIgpW6yv4YOW4zz7Ym/B8eSzviLmy3yI/8mxJtvlGW+J8lBsfMcQoqJpqI6Rl1nZy9yQ==
+"@react-native-community/cli-debugger-ui@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-11.3.3.tgz#4bdf5665926c63d73a96d21adde03a93df447215"
+ integrity sha512-iVKcwyK2iKlq/qVtSbhk5fGsrOamAx7j50QhDMrZ6NmYZq+k75k253+YTzXoxWdPPZhsdhmILuBJgf8orIYCPQ==
dependencies:
serve-static "^1.13.1"
-"@react-native-community/cli-doctor@^8.0.6":
- version "8.0.6"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-8.0.6.tgz#954250155ab2f3a66a54821e071bc4a631d2dfff"
- integrity sha512-ZQqyT9mJMVeFEVIwj8rbDYGCA2xXjJfsQjWk2iTRZ1CFHfhPSUuUiG8r6mJmTinAP9t+wYcbbIYzNgdSUKnDMw==
+"@react-native-community/cli-doctor@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-11.3.3.tgz#cc0066e60f0a73e6d061681661ab9f1a2f1550ed"
+ integrity sha512-11MlCYZkZ602lmoxZUM6FZYjqFgyYci0X0QoBgBHi+3hqmrlA9JkYR/6OpPo34ASVObhE4DQ7eZ1+EQnVJHXsA==
dependencies:
- "@react-native-community/cli-config" "^8.0.6"
- "@react-native-community/cli-platform-ios" "^8.0.6"
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-config" "11.3.3"
+ "@react-native-community/cli-platform-android" "11.3.3"
+ "@react-native-community/cli-platform-ios" "11.3.3"
+ "@react-native-community/cli-tools" "11.3.3"
chalk "^4.1.2"
command-exists "^1.2.8"
envinfo "^7.7.2"
- execa "^1.0.0"
+ execa "^5.0.0"
hermes-profile-transformer "^0.0.6"
ip "^1.1.5"
node-stream-zip "^1.9.1"
@@ -2912,101 +3720,82 @@
strip-ansi "^5.2.0"
sudo-prompt "^9.0.0"
wcwidth "^1.0.1"
+ yaml "^2.2.1"
-"@react-native-community/cli-hermes@^8.0.5":
- version "8.0.5"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-8.0.5.tgz#639edc6b0ce73f705e4b737e3de1cc47d42516ff"
- integrity sha512-Zm0wM6SfgYAEX1kfJ1QBvTayabvh79GzmjHyuSnEROVNPbl4PeCG4WFbwy489tGwOP9Qx9fMT5tRIFCD8bp6/g==
+"@react-native-community/cli-hermes@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-11.3.3.tgz#f3006a119ce8888a10b2b52a4e7cfb2ffbb2c59f"
+ integrity sha512-IoBLspPg4EwKwYj+5Ki4xrGUz7vVeE9soULCXJij2IKB68U63WmjG42+ng96+ryJDaQqERqF7NGll1jqnenJYQ==
dependencies:
- "@react-native-community/cli-platform-android" "^8.0.5"
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-platform-android" "11.3.3"
+ "@react-native-community/cli-tools" "11.3.3"
chalk "^4.1.2"
hermes-profile-transformer "^0.0.6"
ip "^1.1.5"
-"@react-native-community/cli-platform-android@^8.0.4", "@react-native-community/cli-platform-android@^8.0.5":
- version "8.0.5"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-8.0.5.tgz#da11d2678adeca98e83494d68de80e50571b4af4"
- integrity sha512-z1YNE4T1lG5o9acoQR1GBvf7mq6Tzayqo/za5sHVSOJAC9SZOuVN/gg/nkBa9a8n5U7qOMFXfwhTMNqA474gXA==
+"@react-native-community/cli-platform-android@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-11.3.3.tgz#b4dad813f8ccbe84872baa2bc27fcd9b93f0b784"
+ integrity sha512-hjkPTJXKw2PZNKdeZZ1I4Mv2gRbPOfZmpgRVXtDwEP4cXZUGTDP54lBhFnC+8KxiKJBWJ/m4wYyC3ZqX87M2jg==
dependencies:
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-tools" "11.3.3"
chalk "^4.1.2"
- execa "^1.0.0"
- fs-extra "^8.1.0"
+ execa "^5.0.0"
glob "^7.1.3"
- jetifier "^1.6.2"
- lodash "^4.17.15"
logkitty "^0.7.1"
- slash "^3.0.0"
-
-"@react-native-community/cli-platform-ios@^8.0.4":
- version "8.0.4"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-8.0.4.tgz#15225c09a1218a046f11165a54bf14b59dad7020"
- integrity sha512-7Jdptedfg/J0Xo2rQbJ4jmo+PMYOiIiRcNDCSI5dBcNkQfSq4MMYUnKQx5DdZHgrfxE0O1vE4iNmJdd4wePz8w==
- dependencies:
- "@react-native-community/cli-tools" "^8.0.4"
- chalk "^4.1.2"
- execa "^1.0.0"
- glob "^7.1.3"
- js-yaml "^3.13.1"
- lodash "^4.17.15"
- ora "^5.4.1"
- plist "^3.0.2"
-"@react-native-community/cli-platform-ios@^8.0.6":
- version "8.0.6"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-8.0.6.tgz#ab80cd4eb3014b8fcfc9bd1b53ec0a9f8e5d1430"
- integrity sha512-CMR6mu/LVx6JVfQRDL9uULsMirJT633bODn+IrYmrwSz250pnhON16We8eLPzxOZHyDjm7JPuSgHG3a/BPiRuQ==
+"@react-native-community/cli-platform-ios@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-11.3.3.tgz#b7f7387928e38f9deb4c1fd1c2efd3f6abbed57d"
+ integrity sha512-mFdZjOaPCQy3y4DoMdA5l5/zVXtvsi8pbJFTV7ms7avNShuqqvue/Fm4wmiccZd0Zfi5p9TOP3Bh9Aw/jC+UAQ==
dependencies:
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-tools" "11.3.3"
chalk "^4.1.2"
- execa "^1.0.0"
+ execa "^5.0.0"
+ fast-xml-parser "^4.0.12"
glob "^7.1.3"
- js-yaml "^3.13.1"
- lodash "^4.17.15"
ora "^5.4.1"
- plist "^3.0.2"
-"@react-native-community/cli-plugin-metro@^8.0.4":
- version "8.0.4"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-8.0.4.tgz#a364a50a2e05fc5d0b548759e499e5b681b6e4cc"
- integrity sha512-UWzY1eMcEr/6262R2+d0Is5M3L/7Y/xXSDIFMoc5Rv5Wucl3hJM/TxHXmByvHpuJf6fJAfqOskyt4bZCvbI+wQ==
+"@react-native-community/cli-plugin-metro@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-11.3.3.tgz#a838a09fe371f50d54f4968271d5e852dd781b6d"
+ integrity sha512-jbutvKqjIUTIuSK6mGmVt+x/MygLAIG6VNIwbywFtY+P4CCxUxo8o8h3O2cPRB2xeg9qikksm3Wys7fME4Ly+A==
dependencies:
- "@react-native-community/cli-server-api" "^8.0.4"
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-server-api" "11.3.3"
+ "@react-native-community/cli-tools" "11.3.3"
chalk "^4.1.2"
- metro "^0.70.1"
- metro-config "^0.70.1"
- metro-core "^0.70.1"
- metro-react-native-babel-transformer "^0.70.1"
- metro-resolver "^0.70.1"
- metro-runtime "^0.70.1"
+ execa "^5.0.0"
+ metro "0.76.5"
+ metro-config "0.76.5"
+ metro-core "0.76.5"
+ metro-react-native-babel-transformer "0.76.5"
+ metro-resolver "0.76.5"
+ metro-runtime "0.76.5"
readline "^1.3.0"
-"@react-native-community/cli-server-api@^8.0.4":
- version "8.0.4"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-8.0.4.tgz#d45d895a0a6e8b960c9d677188d414a996faa4d3"
- integrity sha512-Orr14njx1E70CVrUA8bFdl+mrnbuXUjf1Rhhm0RxUadFpvkHuOi5dh8Bryj2MKtf8eZrpEwZ7tuQPhJEULW16A==
+"@react-native-community/cli-server-api@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-11.3.3.tgz#fe5c8b57abeadad743954ca65bf0b47c8728154d"
+ integrity sha512-3ja7WZzXMCeGTaeWLzKxAoueqLjsuo0YURcAjqf044rkY5F1Xk5yIaTN8fb66Lnl2eB3DwuatqEB4dYl34/GZw==
dependencies:
- "@react-native-community/cli-debugger-ui" "^8.0.0"
- "@react-native-community/cli-tools" "^8.0.4"
+ "@react-native-community/cli-debugger-ui" "11.3.3"
+ "@react-native-community/cli-tools" "11.3.3"
compression "^1.7.1"
connect "^3.6.5"
- errorhandler "^1.5.0"
+ errorhandler "^1.5.1"
nocache "^3.0.1"
pretty-format "^26.6.2"
serve-static "^1.13.1"
ws "^7.5.1"
-"@react-native-community/cli-tools@^8.0.4":
- version "8.0.4"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-8.0.4.tgz#994b9d56c84472491c876b71acd4356773fcbe65"
- integrity sha512-ePN9lGxh6LRFiotyddEkSmuqpQhnq2iw9oiXYr4EFWpIEy0yCigTuSTiDF68+c8M9B+7bTwkRpz/rMPC4ViO5Q==
+"@react-native-community/cli-tools@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-11.3.3.tgz#96fa0b5979f8d1a3feb785ce8d3566a2d31e0e88"
+ integrity sha512-rRFSOAVVwI9R9PyPMff5WqmHbgJYrzGHFH1PA+tFvuiSmWlAf51bzkZIPehTBAQON03a6d5epNsGlBKMLA/BKw==
dependencies:
appdirsjs "^1.2.4"
chalk "^4.1.2"
find-up "^5.0.0"
- lodash "^4.17.15"
mime "^2.4.1"
node-fetch "^2.6.0"
open "^6.2.0"
@@ -3014,121 +3803,152 @@
semver "^6.3.0"
shell-quote "^1.7.3"
-"@react-native-community/cli-types@^8.0.0":
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-8.0.0.tgz#72d24178e5ed1c2d271da43e0a4a4f59178f261a"
- integrity sha512-1lZS1PEvMlFaN3Se1ksyoFWzMjk+YfKi490GgsqKJln9gvFm8tqVPdnXttI5Uf2DQf3BMse8Bk8dNH4oV6Ewow==
+"@react-native-community/cli-types@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-11.3.3.tgz#72840a6dab9593cd96591bc69c37807ee31aa72e"
+ integrity sha512-/u7N93ZUsKAGv3WSGAjKhpK2uCPBkyaw/SuScjHAuL9ifPjvwDhi71K5NbCcYl3ZYh5K39EF3Hm664Jfk9c0MQ==
dependencies:
joi "^17.2.1"
-"@react-native-community/cli@^8.0.4":
- version "8.0.6"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-8.0.6.tgz#7aae37843ab8e44b75c477c1de69f4c902e599ef"
- integrity sha512-E36hU/if3quQCfJHGWVkpsCnwtByRCwORuAX0r6yr1ebKktpKeEO49zY9PAu/Z1gfyxCtgluXY0HfRxjKRFXTg==
- dependencies:
- "@react-native-community/cli-clean" "^8.0.4"
- "@react-native-community/cli-config" "^8.0.6"
- "@react-native-community/cli-debugger-ui" "^8.0.0"
- "@react-native-community/cli-doctor" "^8.0.6"
- "@react-native-community/cli-hermes" "^8.0.5"
- "@react-native-community/cli-plugin-metro" "^8.0.4"
- "@react-native-community/cli-server-api" "^8.0.4"
- "@react-native-community/cli-tools" "^8.0.4"
- "@react-native-community/cli-types" "^8.0.0"
+"@react-native-community/cli@11.3.3":
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-11.3.3.tgz#a18634282f535f5cec7436aeda1ffacd796b7a0c"
+ integrity sha512-+XwD9IEtaff0q8hyWTQL4xVc7V4P8B7zD0zpcEV8FVV+qUfIFMbNpaYNJFlNOFYRzZmo0/hXsa66S/Im5perlQ==
+ dependencies:
+ "@react-native-community/cli-clean" "11.3.3"
+ "@react-native-community/cli-config" "11.3.3"
+ "@react-native-community/cli-debugger-ui" "11.3.3"
+ "@react-native-community/cli-doctor" "11.3.3"
+ "@react-native-community/cli-hermes" "11.3.3"
+ "@react-native-community/cli-plugin-metro" "11.3.3"
+ "@react-native-community/cli-server-api" "11.3.3"
+ "@react-native-community/cli-tools" "11.3.3"
+ "@react-native-community/cli-types" "11.3.3"
chalk "^4.1.2"
- commander "^2.19.0"
- execa "^1.0.0"
+ commander "^9.4.1"
+ execa "^5.0.0"
find-up "^4.1.0"
fs-extra "^8.1.0"
graceful-fs "^4.1.3"
- leven "^3.1.0"
- lodash "^4.17.15"
- minimist "^1.2.0"
prompts "^2.4.0"
semver "^6.3.0"
-"@react-native-community/hooks@^2.8.1":
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/@react-native-community/hooks/-/hooks-2.8.1.tgz#6e785431db49318048fdd14b601998437b6cc200"
- integrity sha512-DCmCIC0Gn9m6K0Mlg2MwNmTxMEpBu5lTLsI6b/XUAv/vLGa6o+X7RhCai4FWeqkjCU36+ZOwaLzDo4NBWMXaoQ==
+"@react-native-community/netinfo@9.3.10":
+ version "9.3.10"
+ resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-9.3.10.tgz#9b6cc2aec9329b5ccf35e866094c43aa420d927a"
+ integrity sha512-OwnqoJUp/4sa9e3ju+wQavAa8l0fiA3DheeLMKzKxtKeAe0CA7bNxWRM752JvRQ6A/igPnt1V0zSlu5owvQEuA==
-"@react-native-community/netinfo@9.3.0":
- version "9.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-9.3.0.tgz#9792c23341eab5c629566baee016146f4f3f6086"
- integrity sha512-NNdMeIXXqmPCbXrWxVqRzZ1gEZ6L1ykotWnCZLVjQBUgjyGWdL5LiDM/bcIa5DLzqZY7Km08rMgB7BoHUuEmnQ==
+"@react-native/assets-registry@^0.72.0":
+ version "0.72.0"
+ resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.72.0.tgz#c82a76a1d86ec0c3907be76f7faf97a32bbed05d"
+ integrity sha512-Im93xRJuHHxb1wniGhBMsxLwcfzdYreSZVQGDoMJgkd6+Iky61LInGEHnQCTN0fKNYF1Dvcofb4uMmE1RQHXHQ==
-"@react-native/assets@1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@react-native/assets/-/assets-1.0.0.tgz#c6f9bf63d274bafc8e970628de24986b30a55c8e"
- integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==
+"@react-native/codegen@^0.72.6":
+ version "0.72.6"
+ resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.72.6.tgz#029cf61f82f5c6872f0b2ce58f27c4239a5586c8"
+ integrity sha512-idTVI1es/oopN0jJT/0jB6nKdvTUKE3757zA5+NPXZTeB46CIRbmmos4XBiAec8ufu9/DigLPbHTYAaMNZJ6Ig==
+ dependencies:
+ "@babel/parser" "^7.20.0"
+ flow-parser "^0.206.0"
+ jscodeshift "^0.14.0"
+ nullthrows "^1.1.1"
-"@react-native/normalize-color@2.0.0", "@react-native/normalize-color@^2.0.0":
+"@react-native/gradle-plugin@^0.72.11":
+ version "0.72.11"
+ resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.72.11.tgz#c063ef12778706611de7a1e42b74b14d9405fb9f"
+ integrity sha512-P9iRnxiR2w7EHcZ0mJ+fmbPzMby77ZzV6y9sJI3lVLJzF7TLSdbwcQyD3lwMsiL+q5lKUHoZJS4sYmih+P2HXw==
+
+"@react-native/js-polyfills@^0.72.1":
+ version "0.72.1"
+ resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.72.1.tgz#905343ef0c51256f128256330fccbdb35b922291"
+ integrity sha512-cRPZh2rBswFnGt5X5EUEPs0r+pAsXxYsifv/fgy9ZLQokuT52bPH+9xjDR+7TafRua5CttGW83wP4TntRcWNDA==
+
+"@react-native/normalize-color@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.0.0.tgz#da955909432474a9a0fe1cbffc66576a0447f567"
integrity sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==
-"@react-native/polyfills@2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@react-native/polyfills/-/polyfills-2.0.0.tgz#4c40b74655c83982c8cf47530ee7dc13d957b6aa"
- integrity sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==
+"@react-native/normalize-color@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.1.0.tgz#939b87a9849e81687d3640c5efa2a486ac266f91"
+ integrity sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==
-"@react-navigation/bottom-tabs@^6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@react-navigation/bottom-tabs/-/bottom-tabs-6.3.1.tgz#1552ccdb789b6c9fc05af0877f8f3a50ab28870c"
- integrity sha512-sL9F4WMhhR6I9bE7bpsPVHnK1cN9doaFHAuy5YmD+Sw6OyO0TAmNgQFx4xZWqboA5ZwSkN0tWcRCr6wGXaRRag==
+"@react-native/normalize-colors@*":
+ version "0.73.0"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.73.0.tgz#23e15cf2a2b73ac7e5e6df8d5b86b173cfb35a3f"
+ integrity sha512-EmSCmJ0djeMJadeFsms6Pl/R85i9xSJMc+tyJu/GEMkKXBVyYQyqanK4RHFU0v8MO90OWj+SiFXjCkKYiJ6mkg==
+
+"@react-native/normalize-colors@^0.72.0":
+ version "0.72.0"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.72.0.tgz#14294b7ed3c1d92176d2a00df48456e8d7d62212"
+ integrity sha512-285lfdqSXaqKuBbbtP9qL2tDrfxdOFtIMvkKadtleRQkdOxx+uzGvFr82KHmc/sSiMtfXGp7JnFYWVh4sFl7Yw==
+
+"@react-native/virtualized-lists@^0.72.4", "@react-native/virtualized-lists@^0.72.6":
+ version "0.72.6"
+ resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.72.6.tgz#375f88a1371927d803afad8d8a0ede3261464030"
+ integrity sha512-JhT6ydu35LvbSKdwnhWDuGHMOwM0WAh9oza/X8vXHA8ELHRyQ/4p8eKz/bTQcbQziJaaleUURToGhFuCtgiMoA==
+ dependencies:
+ invariant "^2.2.4"
+ nullthrows "^1.1.1"
+
+"@react-navigation/bottom-tabs@^6.5.8":
+ version "6.5.8"
+ resolved "https://registry.yarnpkg.com/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.8.tgz#9536c6e45154abc183c363d07c94991e10b14856"
+ integrity sha512-0aa/jXea+LyBgR5NoRNWGKw0aFhjHwCkusigMRXIrCA4kINauDcAO0w0iFbZeKfaTCVAix5kK5UxDJJ2aJpevg==
dependencies:
- "@react-navigation/elements" "^1.3.3"
- color "^3.1.3"
+ "@react-navigation/elements" "^1.3.18"
+ color "^4.2.3"
warn-once "^0.1.0"
-"@react-navigation/core@^6.2.1":
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.2.1.tgz#90459f9afd25b71a9471b0706ebea2cdd2534fc4"
- integrity sha512-3mjS6ujwGnPA/BC11DN9c2c42gFld6B6dQBgDedxP2djceXESpY2kVTTwISDHuqFnF7WjvRjsrDu3cKBX+JosA==
+"@react-navigation/core@^6.4.9":
+ version "6.4.9"
+ resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.4.9.tgz#aa09ce534f5393427cb993cf242abdbd848fb2c7"
+ integrity sha512-G9GH7bP9x0qqupxZnkSftnkn4JoXancElTvFc8FVGfEvxnxP+gBo3wqcknyBi7M5Vad4qecsYjCOa9wqsftv9g==
dependencies:
- "@react-navigation/routers" "^6.1.0"
+ "@react-navigation/routers" "^6.1.9"
escape-string-regexp "^4.0.0"
nanoid "^3.1.23"
- query-string "^7.0.0"
+ query-string "^7.1.3"
react-is "^16.13.0"
+ use-latest-callback "^0.1.5"
-"@react-navigation/elements@^1.3.3":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.3.tgz#9f56b650a9a1a8263a271628be7342c8121d1788"
- integrity sha512-Lv2lR7si5gNME8dRsqz57d54m4FJtrwHRjNQLOyQO546ZxO+g864cSvoLC6hQedQU0+IJnPTsZiEI2hHqfpEpw==
+"@react-navigation/elements@^1.3.18":
+ version "1.3.18"
+ resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.18.tgz#d8364b40276f3efb9c229c39da3b8b465f18f0a2"
+ integrity sha512-/0hwnJkrr415yP0Hf4PjUKgGyfshrvNUKFXN85Mrt1gY49hy9IwxZgrrxlh0THXkPeq8q4VWw44eHDfAcQf20Q==
-"@react-navigation/native-stack@^6.6.2":
- version "6.6.2"
- resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.6.2.tgz#09e696ad72299872f4c5c1e5b1ad309869853628"
- integrity sha512-pFMuzhxbPml5MBvJVAzHWoaUkQaefAOKpuUnAs/AxNQuHQwwnxRmDit1PQLuIPo7g7DlfwFXagDHE1R0tbnS8Q==
+"@react-navigation/native-stack@^6.9.13":
+ version "6.9.13"
+ resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.9.13.tgz#f308c398ee18fcd45de8ec7c04fe0641735feb31"
+ integrity sha512-ejlepMrvFneewL+XlXHHhn+6y3lwvavM4/R7XwBV0XJxCymujexK+7Vkg7UcvJ1lx4CRhOcyBSNfGmdNIHREyQ==
dependencies:
- "@react-navigation/elements" "^1.3.3"
+ "@react-navigation/elements" "^1.3.18"
warn-once "^0.1.0"
-"@react-navigation/native@^6.0.10":
- version "6.0.10"
- resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.0.10.tgz#c58aa176eb0e63f3641c83a65c509faf253e4385"
- integrity sha512-H6QhLeiieGxNcAJismIDXIPZgf1myr7Og8v116tezIGmincJTOcWavTd7lPHGnMMXaZg94LlVtbaBRIx9cexqw==
+"@react-navigation/native@^6.1.7":
+ version "6.1.7"
+ resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.1.7.tgz#968ef85b76d35f63111890668836fe2f125bbf90"
+ integrity sha512-W6E3+AtTombMucCRo6q7vPmluq8hSjS+IxfazJ/SokOe7ChJX7eLvvralIsJkjFj3iWV1KgOSnHxa6hdiFasBw==
dependencies:
- "@react-navigation/core" "^6.2.1"
+ "@react-navigation/core" "^6.4.9"
escape-string-regexp "^4.0.0"
fast-deep-equal "^3.1.3"
nanoid "^3.1.23"
-"@react-navigation/routers@^6.1.0":
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.0.tgz#d5682be88f1eb7809527c48f9cd3dedf4f344e40"
- integrity sha512-8xJL+djIzpFdRW/sGlKojQ06fWgFk1c5jER9501HYJ12LF5DIJFr/tqBI2TJ6bk+y+QFu0nbNyeRC80OjRlmkA==
+"@react-navigation/routers@^6.1.9":
+ version "6.1.9"
+ resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.9.tgz#73f5481a15a38e36592a0afa13c3c064b9f90bed"
+ integrity sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==
dependencies:
nanoid "^3.1.23"
-"@react-navigation/stack@^6.2.1":
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/@react-navigation/stack/-/stack-6.2.1.tgz#2b14473579eced6def5cca06860044d60e59d06e"
- integrity sha512-JI7boxtPAMCBXi4VJHVEq61jLVHFW5f3npvbndS+XfOsv7Gf0f91HOVJ28DS5c2Fn4+CO4AByjUozzlN296X+A==
+"@react-navigation/stack@^6.3.17":
+ version "6.3.17"
+ resolved "https://registry.yarnpkg.com/@react-navigation/stack/-/stack-6.3.17.tgz#dd3375916a2adaa130659c0113fe05939bc19470"
+ integrity sha512-8/8ZvJROK3fp6PRmQ9MrXd9epBowA8NkfCaWW/N9H5arqwNX9lTXAkmcjicRhjpX+UNlMBR9dTLkWvPRe2vY9A==
dependencies:
- "@react-navigation/elements" "^1.3.3"
- color "^3.1.3"
+ "@react-navigation/elements" "^1.3.18"
+ color "^4.2.3"
warn-once "^0.1.0"
"@react-stately/checkbox@3.0.3":
@@ -3516,51 +4336,78 @@
resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.27.tgz#d55643516a1546174e10da681a8aaa81e757452d"
integrity sha512-K7C7IlQ3zLePEZleUN21ceBA2aLcMnLHTLph8QWk1JK37L90obdpY+QGY8bXMKxf1ht1Z0MNewvXxWv0oGDYFg==
-"@sinonjs/commons@^1.7.0":
- version "1.8.3"
- resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d"
- integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==
+"@sinclair/typebox@^0.25.16":
+ version "0.25.24"
+ resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718"
+ integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==
+
+"@sinclair/typebox@^0.27.8":
+ version "0.27.8"
+ resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e"
+ integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
+
+"@sinonjs/commons@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72"
+ integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==
dependencies:
type-detect "4.0.8"
-"@sinonjs/fake-timers@^6.0.1":
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40"
- integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
+"@sinonjs/fake-timers@^10.0.2":
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz#b3e322a34c5f26e3184e7f6115695f299c1b1194"
+ integrity sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==
dependencies:
- "@sinonjs/commons" "^1.7.0"
+ "@sinonjs/commons" "^3.0.0"
-"@testing-library/jest-native@^4.0.5":
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/@testing-library/jest-native/-/jest-native-4.0.5.tgz#4f8c000bcf46f1fdb9ab032271e4252b1defc0ff"
- integrity sha512-SwtoZmNGjYC88CBCIf8FJxQD6vGv942zIgJwVK0/WgT/j77t6dDM1kkvaMaQy/poyjHnsq4QH5FgxNZLg5PenA==
+"@tanstack/query-core@4.29.19":
+ version "4.29.19"
+ resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.29.19.tgz#49ccbd0606633d1e55baf3b91ab7cc7aef411b1d"
+ integrity sha512-uPe1DukeIpIHpQi6UzIgBcXsjjsDaLnc7hF+zLBKnaUlh7jFE/A+P8t4cU4VzKPMFB/C970n/9SxtpO5hmIRgw==
+
+"@tanstack/react-query@^4.29.19":
+ version "4.29.19"
+ resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.29.19.tgz#6ba187f2d0ea36ae83ff1f67068f53c88ce7b228"
+ integrity sha512-XiTIOHHQ5Cw1WUlHaD4fmVUMhoWjuNJlAeJGq7eM4BraI5z7y8WkZO+NR8PSuRnQGblpuVdjClQbDFtwxTtTUw==
dependencies:
- chalk "^2.4.1"
- jest-diff "^27.4.6"
- jest-matcher-utils "^27.4.6"
- pretty-format "^27.3.1"
- ramda "^0.26.1"
- redent "^2.0.0"
+ "@tanstack/query-core" "4.29.19"
+ use-sync-external-store "^1.2.0"
-"@testing-library/react-native@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@testing-library/react-native/-/react-native-11.0.0.tgz#604cd14a42331ce01f2b3695aeb9abf73940183b"
- integrity sha512-2WZF8P8YYXO5Ka1yzj3TZUg4x6noKU5RuCpx4oAhKBkxkVbrRl1pMCvRIozdTPSiru4rNBmAi074ZJjm2OED5g==
+"@testing-library/jest-native@^5.4.2":
+ version "5.4.2"
+ resolved "https://registry.yarnpkg.com/@testing-library/jest-native/-/jest-native-5.4.2.tgz#6b0c987cc57f8d900763e763025d00d26ccbc85f"
+ integrity sha512-Vo/CE1uvCVH1H8YPoOEXLXVsm+BjzSQTq35+wkri1fr0O5D+A2WZ+m3ni5g6f1OCzNKNGIAHmisBEWkDs1P1mw==
dependencies:
- pretty-format "^28.1.3"
+ chalk "^4.1.2"
+ jest-diff "^29.0.1"
+ jest-matcher-utils "^29.0.1"
+ pretty-format "^29.0.3"
+ redent "^3.0.0"
-"@tootallnate/once@1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
- integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
+"@testing-library/react-native@^12.1.2":
+ version "12.1.2"
+ resolved "https://registry.yarnpkg.com/@testing-library/react-native/-/react-native-12.1.2.tgz#1935affe1106aeddf0087dff31a6d7414917c098"
+ integrity sha512-5rQMQpbSQAuJc4TxjTt1IoeT1a5eVXaa61hf/YcjV2QtGqCoyhuW8DvhTowrL7y2Ds4NzuYBmbVxjNPR6GIblw==
+ dependencies:
+ pretty-format "^29.0.0"
+
+"@tootallnate/once@2":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf"
+ integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==
+
+"@trysound/sax@0.2.0":
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
+ integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
-"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
- version "7.1.19"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460"
- integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==
+"@types/babel__core@^7.1.14":
+ version "7.20.1"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b"
+ integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==
dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
@@ -3580,13 +4427,84 @@
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
-"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
+"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
version "7.17.1"
resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314"
integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==
dependencies:
"@babel/types" "^7.3.0"
+"@types/body-parser@*":
+ version "1.19.2"
+ resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0"
+ integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==
+ dependencies:
+ "@types/connect" "*"
+ "@types/node" "*"
+
+"@types/bonjour@^3.5.9":
+ version "3.5.10"
+ resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275"
+ integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==
+ dependencies:
+ "@types/node" "*"
+
+"@types/connect-history-api-fallback@^1.3.5":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#9fd20b3974bdc2bcd4ac6567e2e0f6885cb2cf41"
+ integrity sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==
+ dependencies:
+ "@types/express-serve-static-core" "*"
+ "@types/node" "*"
+
+"@types/connect@*":
+ version "3.4.35"
+ resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1"
+ integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==
+ dependencies:
+ "@types/node" "*"
+
+"@types/eslint-scope@^3.7.3":
+ version "3.7.4"
+ resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16"
+ integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==
+ dependencies:
+ "@types/eslint" "*"
+ "@types/estree" "*"
+
+"@types/eslint@*":
+ version "8.40.2"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.40.2.tgz#2833bc112d809677864a4b0e7d1de4f04d7dac2d"
+ integrity sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==
+ dependencies:
+ "@types/estree" "*"
+ "@types/json-schema" "*"
+
+"@types/estree@*", "@types/estree@^1.0.0":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194"
+ integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==
+
+"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33":
+ version "4.17.35"
+ resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz#c95dd4424f0d32e525d23812aa8ab8e4d3906c4f"
+ integrity sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==
+ dependencies:
+ "@types/node" "*"
+ "@types/qs" "*"
+ "@types/range-parser" "*"
+ "@types/send" "*"
+
+"@types/express@*", "@types/express@^4.17.13":
+ version "4.17.17"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4"
+ integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==
+ dependencies:
+ "@types/body-parser" "*"
+ "@types/express-serve-static-core" "^4.17.33"
+ "@types/qs" "*"
+ "@types/serve-static" "*"
+
"@types/glob@^7.1.1":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb"
@@ -3595,10 +4513,10 @@
"@types/minimatch" "*"
"@types/node" "*"
-"@types/graceful-fs@^4.1.2":
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
- integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
+"@types/graceful-fs@^4.1.3":
+ version "4.1.6"
+ resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae"
+ integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==
dependencies:
"@types/node" "*"
@@ -3607,22 +4525,17 @@
resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.41.tgz#f6ecf57d1b12d2befcce00e928a6a097c22980aa"
integrity sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==
-"@types/html-minifier-terser@^5.0.0":
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz#693b316ad323ea97eed6b38ed1a3cc02b1672b57"
- integrity sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==
+"@types/html-minifier-terser@^6.0.0":
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35"
+ integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==
-"@types/i18next@^13.0.0":
- version "13.0.0"
- resolved "https://registry.yarnpkg.com/@types/i18next/-/i18next-13.0.0.tgz#403ef338add0104e74d9759f1b39217e7c5d4084"
- integrity sha512-gp/SIShAuf4WOqi8ey0nuI7qfWaVpMNCcs/xLygrh/QTQIXmlDC1E0TtVejweNW+7SGDY7g0lyxyKZIJuCKIJw==
+"@types/http-proxy@^1.17.8":
+ version "1.17.11"
+ resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293"
+ integrity sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==
dependencies:
- i18next "*"
-
-"@types/invariant@^2.2.35":
- version "2.2.35"
- resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.35.tgz#cd3ebf581a6557452735688d8daba6cf0bd5a3be"
- integrity sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==
+ "@types/node" "*"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
version "2.0.4"
@@ -3643,13 +4556,27 @@
dependencies:
"@types/istanbul-lib-report" "*"
-"@types/jest@^27.5.1":
- version "27.5.2"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.5.2.tgz#ec49d29d926500ffb9fd22b84262e862049c026c"
- integrity sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==
+"@types/jest@^29.5.3":
+ version "29.5.3"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.3.tgz#7a35dc0044ffb8b56325c6802a4781a626b05777"
+ integrity sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==
dependencies:
- jest-matcher-utils "^27.0.0"
- pretty-format "^27.0.0"
+ expect "^29.0.0"
+ pretty-format "^29.0.0"
+
+"@types/jsdom@^20.0.0":
+ version "20.0.1"
+ resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-20.0.1.tgz#07c14bc19bd2f918c1929541cdaacae894744808"
+ integrity sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==
+ dependencies:
+ "@types/node" "*"
+ "@types/tough-cookie" "*"
+ parse5 "^7.0.0"
+
+"@types/json-schema@*", "@types/json-schema@^7.0.11":
+ version "7.0.12"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb"
+ integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==
"@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
version "7.0.11"
@@ -3661,17 +4588,15 @@
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
-"@types/lodash.has@^4.5.6":
- version "4.5.7"
- resolved "https://registry.yarnpkg.com/@types/lodash.has/-/lodash.has-4.5.7.tgz#9e1c3da3ee67f68fadc3d168ffdf8e11a3f3ccd3"
- integrity sha512-nfbAzRbsZBdzSAkL9iiLy4SQk89uuFcXBFwZ7pf6oZhBgPvNys8BY5Twp/w8XvZKGt1o6cAa85wX4QhqO3uQ7A==
- dependencies:
- "@types/lodash" "*"
+"@types/mime@*":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
+ integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
-"@types/lodash@*":
- version "4.14.182"
- resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.182.tgz#05301a4d5e62963227eaafe0ce04dd77c54ea5c2"
- integrity sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==
+"@types/mime@^1":
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
+ integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
"@types/minimatch@*", "@types/minimatch@^3.0.3":
version "3.0.5"
@@ -3683,60 +4608,42 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.42.tgz#d7e8f22700efc94d125103075c074396b5f41f9b"
integrity sha512-Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ==
-"@types/normalize-package-data@^2.4.0":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301"
- integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==
-
-"@types/prettier@^2.0.0":
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.1.tgz#76e72d8a775eef7ce649c63c8acae1a0824bbaed"
- integrity sha512-XFjFHmaLVifrAKaZ+EKghFHtHSUonyw8P2Qmy2/+osBnrKbH9UYtlK10zg8/kCt47MFilll/DEDKy3DHfJ0URw==
+"@types/prettier@^2.1.5":
+ version "2.7.3"
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f"
+ integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==
"@types/prop-types@*":
version "15.7.5"
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
-"@types/q@^1.5.1":
- version "1.5.5"
- resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df"
- integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==
-
-"@types/qs@^6.5.3":
+"@types/qs@*", "@types/qs@^6.9.7":
version "6.9.7"
resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb"
integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==
-"@types/react-i18next@^8.1.0":
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/@types/react-i18next/-/react-i18next-8.1.0.tgz#5faacbfe7dc0f24729c1df6914610bfe861a50de"
- integrity sha512-d4xhcjX5b3roNMObRNMfb1HinHQlQLPo8xlDj60dnHeeAw2bBymR2cy/l1giJpHzo/ZFgSvgVUvIWr4kCrenCg==
- dependencies:
- react-i18next "*"
+"@types/range-parser@*":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
+ integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
-"@types/react-native@~0.69.1":
- version "0.69.5"
- resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.69.5.tgz#7709fdbff031a5ecf1956705e6c4a07cdfe6867c"
- integrity sha512-mSUCuGUsW2kJlZiu4GmdYVDKZX/52iyC9rm6dxAmflJj1b7kSO/CMSDy5WbcfS8QerxTqbYGTrIwHD0GnXHzbQ==
+"@types/react-native@^0.72.2":
+ version "0.72.2"
+ resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.72.2.tgz#27c931a899c555b28e20cdd12e570b017808de96"
+ integrity sha512-/eEjr04Zqo7mTMszuSdrLx90+j5nWhDMMOgtnKZfAYyV3RwmlpSb7F17ilmMMxZWJY81n/JZ4e6wdhMJFpjrCg==
dependencies:
+ "@react-native/virtualized-lists" "^0.72.4"
"@types/react" "*"
-"@types/react-query@^1.2.9":
- version "1.2.9"
- resolved "https://registry.yarnpkg.com/@types/react-query/-/react-query-1.2.9.tgz#61df5a0594ea4b90234f9c0fdd8f12a06e331fed"
- integrity sha512-xfVcv5zjC6fGf6axPyKxdXNm9RKK9OFzSIyZeCR3r9h4zDuqSpHc8ilTBtfQ1zU/uCx+tAsB+W6vzdCBMu1jtg==
- dependencies:
- react-query "*"
-
-"@types/react-test-renderer@^17.0.2":
- version "17.0.2"
- resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.2.tgz#5f800a39b12ac8d2a2149e7e1885215bcf4edbbf"
- integrity sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg==
+"@types/react-test-renderer@^18.0.0":
+ version "18.0.0"
+ resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.0.0.tgz#7b7f69ca98821ea5501b21ba24ea7b6139da2243"
+ integrity sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==
dependencies:
- "@types/react" "^17"
+ "@types/react" "*"
-"@types/react@*", "@types/react@^17", "@types/react@^17.0.4":
+"@types/react@*":
version "17.0.45"
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.45.tgz#9b3d5b661fd26365fefef0e766a1c6c30ccf7b3f"
integrity sha512-YfhQ22Lah2e3CHPsb93tRwIGNiSwkuz1/blk4e6QrWS0jQzCSNbGLtOEYhPg02W0yGTTmpajp7dCTbBAMN3qsg==
@@ -3745,62 +4652,76 @@
"@types/scheduler" "*"
csstype "^3.0.2"
-"@types/react@~18.0.0":
- version "18.0.16"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.16.tgz#8de9bf7feebfa520777e8d30815070b39cb663c0"
- integrity sha512-3vX1dzVucqc2nhXtzyaParTIIRZeNbisRqLE7QdeLomVybEyeiuAouzZXgz71P+2kbJOqj3dy0fzoATg2I06GQ==
+"@types/react@~18.2.14":
+ version "18.2.14"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.14.tgz#fa7a6fecf1ce35ca94e74874f70c56ce88f7a127"
+ integrity sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
csstype "^3.0.2"
+"@types/retry@0.12.0":
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
+ integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
+
"@types/scheduler@*":
version "0.16.2"
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
-"@types/source-list-map@*":
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
- integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==
+"@types/semver@^7.3.12":
+ version "7.3.13"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
+ integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
-"@types/stack-utils@^2.0.0":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
- integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
+"@types/send@*":
+ version "0.17.1"
+ resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301"
+ integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==
+ dependencies:
+ "@types/mime" "^1"
+ "@types/node" "*"
-"@types/tapable@^1", "@types/tapable@^1.0.5":
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.8.tgz#b94a4391c85666c7b73299fd3ad79d4faa435310"
- integrity sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==
+"@types/serve-index@^1.9.1":
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278"
+ integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==
+ dependencies:
+ "@types/express" "*"
-"@types/uglify-js@*":
- version "3.13.3"
- resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.3.tgz#556fd2ac75cc649aba21f87e0be7b1a7e9915bfe"
- integrity sha512-9dmBYXt/rKxedUXfCvXSxyiPvpDXLkiRlv17DnqdhS+pRustL1967rI1jZVt1xysTO+xJGMoZzcy3cWC9+b6Tw==
+"@types/serve-static@*", "@types/serve-static@^1.13.10":
+ version "1.15.1"
+ resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d"
+ integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==
dependencies:
- source-map "^0.6.1"
+ "@types/mime" "*"
+ "@types/node" "*"
-"@types/webpack-sources@*":
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz#16d759ba096c289034b26553d2df1bf45248d38b"
- integrity sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==
+"@types/sockjs@^0.3.33":
+ version "0.3.33"
+ resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f"
+ integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==
dependencies:
"@types/node" "*"
- "@types/source-list-map" "*"
- source-map "^0.7.3"
-"@types/webpack@^4.4.31", "@types/webpack@^4.41.8":
- version "4.41.32"
- resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.32.tgz#a7bab03b72904070162b2f169415492209e94212"
- integrity sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==
+"@types/stack-utils@^2.0.0":
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
+ integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
+
+"@types/tough-cookie@*":
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397"
+ integrity sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==
+
+"@types/ws@^8.5.5":
+ version "8.5.5"
+ resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.5.tgz#af587964aa06682702ee6dcbc7be41a80e4b28eb"
+ integrity sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==
dependencies:
"@types/node" "*"
- "@types/tapable" "^1"
- "@types/uglify-js" "*"
- "@types/webpack-sources" "*"
- anymatch "^3.0.0"
- source-map "^0.6.0"
"@types/yargs-parser@*":
version "21.0.0"
@@ -3821,165 +4742,184 @@
dependencies:
"@types/yargs-parser" "*"
-"@typescript-eslint/eslint-plugin@^5.14.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.25.0.tgz#e8ce050990e4d36cc200f2de71ca0d3eb5e77a31"
- integrity sha512-icYrFnUzvm+LhW0QeJNKkezBu6tJs9p/53dpPLFH8zoM9w1tfaKzVurkPotEpAqQ8Vf8uaFyL5jHd0Vs6Z0ZQg==
+"@types/yargs@^17.0.8":
+ version "17.0.13"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.13.tgz#34cced675ca1b1d51fcf4d34c3c6f0fa142a5c76"
+ integrity sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==
dependencies:
- "@typescript-eslint/scope-manager" "5.25.0"
- "@typescript-eslint/type-utils" "5.25.0"
- "@typescript-eslint/utils" "5.25.0"
- debug "^4.3.4"
- functional-red-black-tree "^1.0.1"
- ignore "^5.2.0"
- regexpp "^3.2.0"
- semver "^7.3.7"
- tsutils "^3.21.0"
+ "@types/yargs-parser" "*"
-"@typescript-eslint/eslint-plugin@^5.25.0":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz#fdf59c905354139046b41b3ed95d1609913d0758"
- integrity sha512-6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw==
+"@typescript-eslint/eslint-plugin@^5.50.0":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.11.tgz#8d466aa21abea4c3f37129997b198d141f09e76f"
+ integrity sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==
dependencies:
- "@typescript-eslint/scope-manager" "5.27.1"
- "@typescript-eslint/type-utils" "5.27.1"
- "@typescript-eslint/utils" "5.27.1"
+ "@eslint-community/regexpp" "^4.4.0"
+ "@typescript-eslint/scope-manager" "5.59.11"
+ "@typescript-eslint/type-utils" "5.59.11"
+ "@typescript-eslint/utils" "5.59.11"
debug "^4.3.4"
- functional-red-black-tree "^1.0.1"
+ grapheme-splitter "^1.0.4"
ignore "^5.2.0"
- regexpp "^3.2.0"
+ natural-compare-lite "^1.4.0"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/parser@^5.14.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.25.0.tgz#fb533487147b4b9efd999a4d2da0b6c263b64f7f"
- integrity sha512-r3hwrOWYbNKP1nTcIw/aZoH+8bBnh/Lh1iDHoFpyG4DnCpvEdctrSl6LOo19fZbzypjQMHdajolxs6VpYoChgA==
- dependencies:
- "@typescript-eslint/scope-manager" "5.25.0"
- "@typescript-eslint/types" "5.25.0"
- "@typescript-eslint/typescript-estree" "5.25.0"
+"@typescript-eslint/eslint-plugin@^6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.0.0.tgz#19ff4f1cab8d6f8c2c1825150f7a840bc5d9bdc4"
+ integrity sha512-xuv6ghKGoiq856Bww/yVYnXGsKa588kY3M0XK7uUW/3fJNNULKRfZfSBkMTSpqGG/8ZCXCadfh8G/z/B4aqS/A==
+ dependencies:
+ "@eslint-community/regexpp" "^4.5.0"
+ "@typescript-eslint/scope-manager" "6.0.0"
+ "@typescript-eslint/type-utils" "6.0.0"
+ "@typescript-eslint/utils" "6.0.0"
+ "@typescript-eslint/visitor-keys" "6.0.0"
+ debug "^4.3.4"
+ grapheme-splitter "^1.0.4"
+ graphemer "^1.4.0"
+ ignore "^5.2.4"
+ natural-compare "^1.4.0"
+ natural-compare-lite "^1.4.0"
+ semver "^7.5.0"
+ ts-api-utils "^1.0.1"
+
+"@typescript-eslint/parser@^5.50.0":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.11.tgz#af7d4b7110e3068ce0b97550736de455e4250103"
+ integrity sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==
+ dependencies:
+ "@typescript-eslint/scope-manager" "5.59.11"
+ "@typescript-eslint/types" "5.59.11"
+ "@typescript-eslint/typescript-estree" "5.59.11"
debug "^4.3.4"
-"@typescript-eslint/parser@^5.25.0":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.27.1.tgz#3a4dcaa67e45e0427b6ca7bb7165122c8b569639"
- integrity sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==
+"@typescript-eslint/parser@^6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.0.0.tgz#46b2600fd1f67e62fc00a28093a75f41bf7effc4"
+ integrity sha512-TNaufYSPrr1U8n+3xN+Yp9g31vQDJqhXzzPSHfQDLcaO4tU+mCfODPxCwf4H530zo7aUBE3QIdxCXamEnG04Tg==
dependencies:
- "@typescript-eslint/scope-manager" "5.27.1"
- "@typescript-eslint/types" "5.27.1"
- "@typescript-eslint/typescript-estree" "5.27.1"
+ "@typescript-eslint/scope-manager" "6.0.0"
+ "@typescript-eslint/types" "6.0.0"
+ "@typescript-eslint/typescript-estree" "6.0.0"
+ "@typescript-eslint/visitor-keys" "6.0.0"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@5.25.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.25.0.tgz#e78f1484bca7e484c48782075219c82c6b77a09f"
- integrity sha512-p4SKTFWj+2VpreUZ5xMQsBMDdQ9XdRvODKXN4EksyBjFp2YvQdLkyHqOffakYZPuWJUDNu3jVXtHALDyTv3cww==
+"@typescript-eslint/scope-manager@5.59.11":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.11.tgz#5d131a67a19189c42598af9fb2ea1165252001ce"
+ integrity sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==
dependencies:
- "@typescript-eslint/types" "5.25.0"
- "@typescript-eslint/visitor-keys" "5.25.0"
+ "@typescript-eslint/types" "5.59.11"
+ "@typescript-eslint/visitor-keys" "5.59.11"
-"@typescript-eslint/scope-manager@5.27.1":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz#4d1504392d01fe5f76f4a5825991ec78b7b7894d"
- integrity sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==
+"@typescript-eslint/scope-manager@6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.0.0.tgz#8ede47a37cb2b7ed82d329000437abd1113b5e11"
+ integrity sha512-o4q0KHlgCZTqjuaZ25nw5W57NeykZT9LiMEG4do/ovwvOcPnDO1BI5BQdCsUkjxFyrCL0cSzLjvIMfR9uo7cWg==
dependencies:
- "@typescript-eslint/types" "5.27.1"
- "@typescript-eslint/visitor-keys" "5.27.1"
+ "@typescript-eslint/types" "6.0.0"
+ "@typescript-eslint/visitor-keys" "6.0.0"
-"@typescript-eslint/type-utils@5.25.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.25.0.tgz#5750d26a5db4c4d68d511611e0ada04e56f613bc"
- integrity sha512-B6nb3GK3Gv1Rsb2pqalebe/RyQoyG/WDy9yhj8EE0Ikds4Xa8RR28nHz+wlt4tMZk5bnAr0f3oC8TuDAd5CPrw==
+"@typescript-eslint/type-utils@5.59.11":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.11.tgz#5eb67121808a84cb57d65a15f48f5bdda25f2346"
+ integrity sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==
dependencies:
- "@typescript-eslint/utils" "5.25.0"
+ "@typescript-eslint/typescript-estree" "5.59.11"
+ "@typescript-eslint/utils" "5.59.11"
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/type-utils@5.27.1":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz#369f695199f74c1876e395ebea202582eb1d4166"
- integrity sha512-+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw==
+"@typescript-eslint/type-utils@6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.0.0.tgz#0478d8a94f05e51da2877cc0500f1b3c27ac7e18"
+ integrity sha512-ah6LJvLgkoZ/pyJ9GAdFkzeuMZ8goV6BH7eC9FPmojrnX9yNCIsfjB+zYcnex28YO3RFvBkV6rMV6WpIqkPvoQ==
dependencies:
- "@typescript-eslint/utils" "5.27.1"
+ "@typescript-eslint/typescript-estree" "6.0.0"
+ "@typescript-eslint/utils" "6.0.0"
debug "^4.3.4"
- tsutils "^3.21.0"
+ ts-api-utils "^1.0.1"
-"@typescript-eslint/types@5.25.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.25.0.tgz#dee51b1855788b24a2eceeae54e4adb89b088dd8"
- integrity sha512-7fWqfxr0KNHj75PFqlGX24gWjdV/FDBABXL5dyvBOWHpACGyveok8Uj4ipPX/1fGU63fBkzSIycEje4XsOxUFA==
+"@typescript-eslint/types@5.59.11":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.11.tgz#1a9018fe3c565ba6969561f2a49f330cf1fe8db1"
+ integrity sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==
-"@typescript-eslint/types@5.27.1":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.27.1.tgz#34e3e629501349d38be6ae97841298c03a6ffbf1"
- integrity sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==
+"@typescript-eslint/types@6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.0.0.tgz#19795f515f8decbec749c448b0b5fc76d82445a1"
+ integrity sha512-Zk9KDggyZM6tj0AJWYYKgF0yQyrcnievdhG0g5FqyU3Y2DRxJn4yWY21sJC0QKBckbsdKKjYDV2yVrrEvuTgxg==
-"@typescript-eslint/typescript-estree@5.25.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.25.0.tgz#a7ab40d32eb944e3fb5b4e3646e81b1bcdd63e00"
- integrity sha512-MrPODKDych/oWs/71LCnuO7NyR681HuBly2uLnX3r5i4ME7q/yBqC4hW33kmxtuauLTM0OuBOhhkFaxCCOjEEw==
+"@typescript-eslint/typescript-estree@5.59.11":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.11.tgz#b2caaa31725e17c33970c1197bcd54e3c5f42b9f"
+ integrity sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==
dependencies:
- "@typescript-eslint/types" "5.25.0"
- "@typescript-eslint/visitor-keys" "5.25.0"
+ "@typescript-eslint/types" "5.59.11"
+ "@typescript-eslint/visitor-keys" "5.59.11"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/typescript-estree@5.27.1":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz#7621ee78607331821c16fffc21fc7a452d7bc808"
- integrity sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==
+"@typescript-eslint/typescript-estree@6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.0.0.tgz#1e09aab7320e404fb9f83027ea568ac24e372f81"
+ integrity sha512-2zq4O7P6YCQADfmJ5OTDQTP3ktajnXIRrYAtHM9ofto/CJZV3QfJ89GEaM2BNGeSr1KgmBuLhEkz5FBkS2RQhQ==
dependencies:
- "@typescript-eslint/types" "5.27.1"
- "@typescript-eslint/visitor-keys" "5.27.1"
+ "@typescript-eslint/types" "6.0.0"
+ "@typescript-eslint/visitor-keys" "6.0.0"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
- semver "^7.3.7"
- tsutils "^3.21.0"
+ semver "^7.5.0"
+ ts-api-utils "^1.0.1"
-"@typescript-eslint/utils@5.25.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.25.0.tgz#272751fd737733294b4ab95e16c7f2d4a75c2049"
- integrity sha512-qNC9bhnz/n9Kba3yI6HQgQdBLuxDoMgdjzdhSInZh6NaDnFpTUlwNGxplUFWfY260Ya0TRPvkg9dd57qxrJI9g==
+"@typescript-eslint/utils@5.59.11":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.11.tgz#9dbff49dc80bfdd9289f9f33548f2e8db3c59ba1"
+ integrity sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==
dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
"@types/json-schema" "^7.0.9"
- "@typescript-eslint/scope-manager" "5.25.0"
- "@typescript-eslint/types" "5.25.0"
- "@typescript-eslint/typescript-estree" "5.25.0"
+ "@types/semver" "^7.3.12"
+ "@typescript-eslint/scope-manager" "5.59.11"
+ "@typescript-eslint/types" "5.59.11"
+ "@typescript-eslint/typescript-estree" "5.59.11"
eslint-scope "^5.1.1"
- eslint-utils "^3.0.0"
+ semver "^7.3.7"
-"@typescript-eslint/utils@5.27.1":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.27.1.tgz#b4678b68a94bc3b85bf08f243812a6868ac5128f"
- integrity sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==
- dependencies:
- "@types/json-schema" "^7.0.9"
- "@typescript-eslint/scope-manager" "5.27.1"
- "@typescript-eslint/types" "5.27.1"
- "@typescript-eslint/typescript-estree" "5.27.1"
+"@typescript-eslint/utils@6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.0.0.tgz#27a16d0d8f2719274a39417b9782f7daa3802db0"
+ integrity sha512-SOr6l4NB6HE4H/ktz0JVVWNXqCJTOo/mHnvIte1ZhBQ0Cvd04x5uKZa3zT6tiodL06zf5xxdK8COiDvPnQ27JQ==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.3.0"
+ "@types/json-schema" "^7.0.11"
+ "@types/semver" "^7.3.12"
+ "@typescript-eslint/scope-manager" "6.0.0"
+ "@typescript-eslint/types" "6.0.0"
+ "@typescript-eslint/typescript-estree" "6.0.0"
eslint-scope "^5.1.1"
- eslint-utils "^3.0.0"
+ semver "^7.5.0"
-"@typescript-eslint/visitor-keys@5.25.0":
- version "5.25.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.25.0.tgz#33aa5fdcc5cedb9f4c8828c6a019d58548d4474b"
- integrity sha512-yd26vFgMsC4h2dgX4+LR+GeicSKIfUvZREFLf3DDjZPtqgLx5AJZr6TetMNwFP9hcKreTTeztQYBTNbNoOycwA==
+"@typescript-eslint/visitor-keys@5.59.11":
+ version "5.59.11"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.11.tgz#dca561ddad169dc27d62396d64f45b2d2c3ecc56"
+ integrity sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==
dependencies:
- "@typescript-eslint/types" "5.25.0"
+ "@typescript-eslint/types" "5.59.11"
eslint-visitor-keys "^3.3.0"
-"@typescript-eslint/visitor-keys@5.27.1":
- version "5.27.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz#05a62666f2a89769dac2e6baa48f74e8472983af"
- integrity sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==
+"@typescript-eslint/visitor-keys@6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.0.0.tgz#0b49026049fbd096d2c00c5e784866bc69532a31"
+ integrity sha512-cvJ63l8c0yXdeT5POHpL0Q1cZoRcmRKFCtSjNGJxPkcP571EfZMcNbzWAc7oK3D1dRzm/V5EwtkANTZxqvuuUA==
dependencies:
- "@typescript-eslint/types" "5.27.1"
- eslint-visitor-keys "^3.3.0"
+ "@typescript-eslint/types" "6.0.0"
+ eslint-visitor-keys "^3.4.1"
"@urql/core@2.3.6":
version "2.3.6"
@@ -4005,163 +4945,144 @@
"@urql/core" ">=2.3.1"
wonka "^4.0.14"
-"@webassemblyjs/ast@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
- integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
+"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24"
+ integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==
dependencies:
- "@webassemblyjs/helper-module-context" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/wast-parser" "1.9.0"
-
-"@webassemblyjs/floating-point-hex-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
- integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
-
-"@webassemblyjs/helper-api-error@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
- integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
+ "@webassemblyjs/helper-numbers" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
-"@webassemblyjs/helper-buffer@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
- integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
+"@webassemblyjs/floating-point-hex-parser@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431"
+ integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==
-"@webassemblyjs/helper-code-frame@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
- integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
- dependencies:
- "@webassemblyjs/wast-printer" "1.9.0"
+"@webassemblyjs/helper-api-error@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768"
+ integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==
-"@webassemblyjs/helper-fsm@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
- integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
+"@webassemblyjs/helper-buffer@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093"
+ integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==
-"@webassemblyjs/helper-module-context@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
- integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
+"@webassemblyjs/helper-numbers@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5"
+ integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==
dependencies:
- "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/floating-point-hex-parser" "1.11.6"
+ "@webassemblyjs/helper-api-error" "1.11.6"
+ "@xtuc/long" "4.2.2"
-"@webassemblyjs/helper-wasm-bytecode@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
- integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
+"@webassemblyjs/helper-wasm-bytecode@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9"
+ integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==
-"@webassemblyjs/helper-wasm-section@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
- integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
+"@webassemblyjs/helper-wasm-section@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577"
+ integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==
dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-buffer" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/wasm-gen" "1.11.6"
-"@webassemblyjs/ieee754@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
- integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
+"@webassemblyjs/ieee754@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a"
+ integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==
dependencies:
"@xtuc/ieee754" "^1.2.0"
-"@webassemblyjs/leb128@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
- integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
+"@webassemblyjs/leb128@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7"
+ integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==
dependencies:
"@xtuc/long" "4.2.2"
-"@webassemblyjs/utf8@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
- integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
+"@webassemblyjs/utf8@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a"
+ integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==
+
+"@webassemblyjs/wasm-edit@^1.11.5":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab"
+ integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-buffer" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/helper-wasm-section" "1.11.6"
+ "@webassemblyjs/wasm-gen" "1.11.6"
+ "@webassemblyjs/wasm-opt" "1.11.6"
+ "@webassemblyjs/wasm-parser" "1.11.6"
+ "@webassemblyjs/wast-printer" "1.11.6"
+
+"@webassemblyjs/wasm-gen@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268"
+ integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/ieee754" "1.11.6"
+ "@webassemblyjs/leb128" "1.11.6"
+ "@webassemblyjs/utf8" "1.11.6"
+
+"@webassemblyjs/wasm-opt@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2"
+ integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-buffer" "1.11.6"
+ "@webassemblyjs/wasm-gen" "1.11.6"
+ "@webassemblyjs/wasm-parser" "1.11.6"
+
+"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1"
+ integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-api-error" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/ieee754" "1.11.6"
+ "@webassemblyjs/leb128" "1.11.6"
+ "@webassemblyjs/utf8" "1.11.6"
+
+"@webassemblyjs/wast-printer@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20"
+ integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@xtuc/long" "4.2.2"
-"@webassemblyjs/wasm-edit@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
- integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/helper-wasm-section" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
- "@webassemblyjs/wasm-opt" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
- "@webassemblyjs/wast-printer" "1.9.0"
-
-"@webassemblyjs/wasm-gen@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
- integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
+"@welldone-software/why-did-you-render@^7.0.1":
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/@welldone-software/why-did-you-render/-/why-did-you-render-7.0.1.tgz#09f487d84844bd8e66435843c2e0305702e61efb"
+ integrity sha512-Qe/8Xxa2G+LMdI6VoazescPzjjkHYduCDa8aHOJR50e9Bgs8ihkfMBY+ev7B4oc3N59Zm547Sgjf8h5y0FOyoA==
dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/ieee754" "1.9.0"
- "@webassemblyjs/leb128" "1.9.0"
- "@webassemblyjs/utf8" "1.9.0"
-
-"@webassemblyjs/wasm-opt@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
- integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
-
-"@webassemblyjs/wasm-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
- integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-api-error" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/ieee754" "1.9.0"
- "@webassemblyjs/leb128" "1.9.0"
- "@webassemblyjs/utf8" "1.9.0"
-
-"@webassemblyjs/wast-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
- integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/floating-point-hex-parser" "1.9.0"
- "@webassemblyjs/helper-api-error" "1.9.0"
- "@webassemblyjs/helper-code-frame" "1.9.0"
- "@webassemblyjs/helper-fsm" "1.9.0"
- "@xtuc/long" "4.2.2"
-
-"@webassemblyjs/wast-printer@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
- integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/wast-parser" "1.9.0"
- "@xtuc/long" "4.2.2"
-
-"@welldone-software/why-did-you-render@^7.0.1":
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/@welldone-software/why-did-you-render/-/why-did-you-render-7.0.1.tgz#09f487d84844bd8e66435843c2e0305702e61efb"
- integrity sha512-Qe/8Xxa2G+LMdI6VoazescPzjjkHYduCDa8aHOJR50e9Bgs8ihkfMBY+ev7B4oc3N59Zm547Sgjf8h5y0FOyoA==
- dependencies:
- lodash "^4"
+ lodash "^4"
"@xmldom/xmldom@~0.7.0":
version "0.7.5"
resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.5.tgz#09fa51e356d07d0be200642b0e4f91d8e6dd408d"
integrity sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==
+"@xmldom/xmldom@~0.7.7":
+ version "0.7.11"
+ resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.11.tgz#adecc134521274711d071d5b0200907cc83b38ee"
+ integrity sha512-UDi3g6Jss/W5FnSzO9jCtQwEpfymt0M+sPPlmLhDH6h2TJ8j4ESE/LpmNPBij15J5NKkk4/cg/qoVMdWI3vnlQ==
+
"@xtuc/ieee754@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
@@ -4172,7 +5093,12 @@
resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
-abab@^2.0.3, abab@^2.0.5:
+"@yarnpkg/lockfile@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31"
+ integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==
+
+abab@^2.0.5, abab@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
@@ -4189,11 +5115,6 @@ abs-svg-path@^0.1.1:
resolved "https://registry.yarnpkg.com/abs-svg-path/-/abs-svg-path-0.1.1.tgz#df601c8e8d2ba10d4a76d625e236a9a39c2723bf"
integrity sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==
-absolute-path@^0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7"
- integrity sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==
-
accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7, accepts@~1.3.8:
version "1.3.8"
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
@@ -4202,48 +5123,38 @@ accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7,
mime-types "~2.1.34"
negotiator "0.6.3"
-acorn-globals@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
- integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
+acorn-globals@^7.0.0:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3"
+ integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==
dependencies:
- acorn "^7.1.1"
- acorn-walk "^7.1.1"
+ acorn "^8.1.0"
+ acorn-walk "^8.0.2"
+
+acorn-import-assertions@^1.9.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac"
+ integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==
acorn-jsx@^5.3.2:
version "5.3.2"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-acorn-walk@^7.1.1:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
- integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
-
-acorn@^6.4.1:
- version "6.4.2"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
- integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
+acorn-walk@^8.0.2:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
+ integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
-acorn@^7.1.1:
- version "7.4.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
- integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
-
-acorn@^8.2.4, acorn@^8.7.1:
- version "8.7.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
- integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
-
-address@1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
- integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
+acorn@^8.1.0, acorn@^8.7.1, acorn@^8.8.1, acorn@^8.8.2:
+ version "8.9.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59"
+ integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==
-address@^1.0.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/address/-/address-1.2.0.tgz#d352a62c92fee90f89a693eccd2a8b2139ab02d9"
- integrity sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==
+acorn@^8.9.0:
+ version "8.10.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
+ integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
agent-base@6:
version "6.0.2"
@@ -4260,17 +5171,26 @@ aggregate-error@^3.0.0:
clean-stack "^2.0.0"
indent-string "^4.0.0"
-ajv-errors@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
- integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
+ajv-formats@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
+ integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==
+ dependencies:
+ ajv "^8.0.0"
-ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
+ajv-keywords@^3.5.2:
version "3.5.2"
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
-ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
+ajv-keywords@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16"
+ integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==
+ dependencies:
+ fast-deep-equal "^3.1.3"
+
+ajv@^6.10.0, ajv@^6.12.4, ajv@^6.12.5:
version "6.12.6"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -4280,33 +5200,45 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
-alphanum-sort@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
- integrity sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==
+ajv@^8.0.0, ajv@^8.9.0:
+ version "8.12.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
+ integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ json-schema-traverse "^1.0.0"
+ require-from-string "^2.0.2"
+ uri-js "^4.2.2"
anser@^1.4.9:
version "1.4.10"
resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b"
integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==
-ansi-colors@^3.0.0:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
- integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
+ansi-escapes@^1.3, ansi-escapes@^1.4:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
+ integrity sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==
ansi-escapes@^3.1.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
-ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.1:
+ansi-escapes@^4.2.1, ansi-escapes@^4.3.0:
version "4.3.2"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
dependencies:
type-fest "^0.21.3"
+ansi-escapes@^6.0.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.0.tgz#8a13ce75286f417f1963487d86ba9f90dccf9947"
+ integrity sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==
+ dependencies:
+ type-fest "^3.0.0"
+
ansi-fragments@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e"
@@ -4316,10 +5248,10 @@ ansi-fragments@^0.2.1:
slice-ansi "^2.0.0"
strip-ansi "^5.0.0"
-ansi-html@0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
- integrity sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==
+ansi-html-community@^0.0.8:
+ version "0.0.8"
+ resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
+ integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==
ansi-regex@^2.0.0:
version "2.1.1"
@@ -4341,6 +5273,11 @@ ansi-regex@^6.0.1:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
+ansi-styles@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+ integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==
+
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
version "3.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
@@ -4370,15 +5307,7 @@ any-promise@^1.0.0:
resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==
-anymatch@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
- integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
- dependencies:
- micromatch "^3.1.4"
- normalize-path "^2.1.1"
-
-anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.2:
+anymatch@^3.0.3, anymatch@~3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
@@ -4396,11 +5325,6 @@ application-config-path@^0.1.0:
resolved "https://registry.yarnpkg.com/application-config-path/-/application-config-path-0.1.0.tgz#193c5f0a86541a4c66fba1e2dc38583362ea5e8f"
integrity sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==
-aproba@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
- integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-
arg@4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.0.tgz#583c518199419e0037abb74062c37f8519e575f0"
@@ -4418,20 +5342,13 @@ argparse@^2.0.1:
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
-arr-diff@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
- integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==
-
-arr-flatten@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
- integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
-
-arr-union@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
- integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==
+array-buffer-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+ integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
+ dependencies:
+ call-bind "^1.0.2"
+ is-array-buffer "^3.0.1"
array-differ@^3.0.0:
version "3.0.0"
@@ -4443,12 +5360,12 @@ array-flatten@1.1.1:
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
-array-flatten@^2.1.0:
+array-flatten@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
-array-includes@^3.1.4, array-includes@^3.1.5:
+array-includes@^3.1.4:
version "3.1.5"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb"
integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==
@@ -4459,6 +5376,17 @@ array-includes@^3.1.4, array-includes@^3.1.5:
get-intrinsic "^1.1.1"
is-string "^1.0.7"
+array-includes@^3.1.6:
+ version "3.1.6"
+ resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
+ integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+ get-intrinsic "^1.1.3"
+ is-string "^1.0.7"
+
array-union@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
@@ -4471,16 +5399,16 @@ array-union@^2.1.0:
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+array-union@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-3.0.1.tgz#da52630d327f8b88cfbfb57728e2af5cd9b6b975"
+ integrity sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==
+
array-uniq@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
integrity sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==
-array-unique@^0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
- integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
-
array.prototype.flat@^1.2.5:
version "1.3.0"
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b"
@@ -4491,26 +5419,26 @@ array.prototype.flat@^1.2.5:
es-abstract "^1.19.2"
es-shim-unscopables "^1.0.0"
-array.prototype.flatmap@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f"
- integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==
+array.prototype.flatmap@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183"
+ integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
es-shim-unscopables "^1.0.0"
-array.prototype.reduce@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz#8167e80089f78bff70a99e20bd4201d4663b0a6f"
- integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==
+array.prototype.tosorted@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532"
+ integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.2"
- es-array-method-boxes-properly "^1.0.0"
- is-string "^1.0.7"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+ es-shim-unscopables "^1.0.0"
+ get-intrinsic "^1.1.3"
arrify@^2.0.1:
version "2.0.1"
@@ -4522,33 +5450,20 @@ asap@~2.0.3, asap@~2.0.6:
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
-asn1.js@^5.2.0:
- version "5.4.1"
- resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
- integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
- dependencies:
- bn.js "^4.0.0"
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
- safer-buffer "^2.1.0"
-
-assert@^1.1.1:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
- integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
+assert@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32"
+ integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==
dependencies:
- object-assign "^4.1.1"
- util "0.10.3"
-
-assign-symbols@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
- integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==
+ es6-object-assign "^1.1.0"
+ is-nan "^1.2.1"
+ object-is "^1.0.1"
+ util "^0.12.0"
-ast-types@0.14.2:
- version "0.14.2"
- resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd"
- integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==
+ast-types@0.15.2:
+ version "0.15.2"
+ resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d"
+ integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==
dependencies:
tslib "^2.0.1"
@@ -4562,23 +5477,11 @@ astral-regex@^2.0.0:
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
-async-each@^1.0.1:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
- integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
-
async-limiter@~1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-async@^2.6.2:
- version "2.6.4"
- resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221"
- integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==
- dependencies:
- lodash "^4.17.14"
-
async@^3.2.2:
version "3.2.4"
resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c"
@@ -4594,39 +5497,58 @@ at-least-node@^1.0.0:
resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
-atob@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
- integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
+available-typed-arrays@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
+ integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
+
+axios@^0.27.2:
+ version "0.27.2"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972"
+ integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==
+ dependencies:
+ follow-redirects "^1.14.9"
+ form-data "^4.0.0"
babel-core@^7.0.0-bridge.0:
version "7.0.0-bridge.0"
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece"
integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==
-babel-jest@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056"
- integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==
+babel-jest@^29.2.1:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5"
+ integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==
dependencies:
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/babel__core" "^7.1.7"
- babel-plugin-istanbul "^6.0.0"
- babel-preset-jest "^26.6.2"
+ "@jest/transform" "^29.5.0"
+ "@types/babel__core" "^7.1.14"
+ babel-plugin-istanbul "^6.1.1"
+ babel-preset-jest "^29.5.0"
chalk "^4.0.0"
- graceful-fs "^4.2.4"
+ graceful-fs "^4.2.9"
slash "^3.0.0"
-babel-loader@8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
- integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
+babel-jest@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.6.1.tgz#a7141ad1ed5ec50238f3cd36127636823111233a"
+ integrity sha512-qu+3bdPEQC6KZSPz+4Fyjbga5OODNcp49j6GKzG1EKbkfyJBxEYGVUmVGpwCSeGouG52R4EgYMLb6p9YeEEQ4A==
dependencies:
- find-cache-dir "^2.1.0"
- loader-utils "^1.4.0"
- mkdirp "^0.5.3"
- pify "^4.0.1"
+ "@jest/transform" "^29.6.1"
+ "@types/babel__core" "^7.1.14"
+ babel-plugin-istanbul "^6.1.1"
+ babel-preset-jest "^29.5.0"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.9"
+ slash "^3.0.0"
+
+babel-loader@^8.3.0:
+ version "8.3.0"
+ resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8"
+ integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==
+ dependencies:
+ find-cache-dir "^3.3.1"
+ loader-utils "^2.0.0"
+ make-dir "^3.1.0"
schema-utils "^2.6.5"
babel-plugin-dynamic-import-node@^2.3.3:
@@ -4636,7 +5558,7 @@ babel-plugin-dynamic-import-node@^2.3.3:
dependencies:
object.assign "^4.1.0"
-babel-plugin-istanbul@^6.0.0:
+babel-plugin-istanbul@^6.1.1:
version "6.1.1"
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73"
integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==
@@ -4647,26 +5569,26 @@ babel-plugin-istanbul@^6.0.0:
istanbul-lib-instrument "^5.0.4"
test-exclude "^6.0.0"
-babel-plugin-jest-hoist@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d"
- integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==
+babel-plugin-jest-hoist@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a"
+ integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==
dependencies:
"@babel/template" "^7.3.3"
"@babel/types" "^7.3.3"
- "@types/babel__core" "^7.0.0"
+ "@types/babel__core" "^7.1.14"
"@types/babel__traverse" "^7.0.6"
-babel-plugin-module-resolver@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-module-resolver/-/babel-plugin-module-resolver-4.1.0.tgz#22a4f32f7441727ec1fbf4967b863e1e3e9f33e2"
- integrity sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==
+babel-plugin-module-resolver@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-module-resolver/-/babel-plugin-module-resolver-5.0.0.tgz#2b7fc176bd55da25f516abf96015617b4f70fc73"
+ integrity sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==
dependencies:
- find-babel-config "^1.2.0"
- glob "^7.1.6"
+ find-babel-config "^2.0.0"
+ glob "^8.0.3"
pkg-up "^3.1.0"
- reselect "^4.0.0"
- resolve "^1.13.1"
+ reselect "^4.1.7"
+ resolve "^1.22.1"
babel-plugin-polyfill-corejs2@^0.3.0:
version "0.3.1"
@@ -4677,6 +5599,15 @@ babel-plugin-polyfill-corejs2@^0.3.0:
"@babel/helper-define-polyfill-provider" "^0.3.1"
semver "^6.1.1"
+babel-plugin-polyfill-corejs2@^0.4.3:
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd"
+ integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==
+ dependencies:
+ "@babel/compat-data" "^7.17.7"
+ "@babel/helper-define-polyfill-provider" "^0.4.0"
+ semver "^6.1.1"
+
babel-plugin-polyfill-corejs3@^0.5.0:
version "0.5.2"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz#aabe4b2fa04a6e038b688c5e55d44e78cd3a5f72"
@@ -4685,6 +5616,14 @@ babel-plugin-polyfill-corejs3@^0.5.0:
"@babel/helper-define-polyfill-provider" "^0.3.1"
core-js-compat "^3.21.0"
+babel-plugin-polyfill-corejs3@^0.8.1:
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a"
+ integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.4.0"
+ core-js-compat "^3.30.1"
+
babel-plugin-polyfill-regenerator@^0.3.0:
version "0.3.1"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz#2c0678ea47c75c8cc2fbb1852278d8fb68233990"
@@ -4692,16 +5631,30 @@ babel-plugin-polyfill-regenerator@^0.3.0:
dependencies:
"@babel/helper-define-polyfill-provider" "^0.3.1"
-babel-plugin-react-native-web@~0.18.2:
- version "0.18.7"
- resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.7.tgz#d32750aca96e5518122504338196502034393261"
- integrity sha512-DF7huAePyphXsqWhGyshjQAU9qektOqOSP2NHevtUBhsgLu57D4gEGZM1xPtbJYvW6/DoxuaXUAqjYqfexT+gQ==
+babel-plugin-polyfill-regenerator@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380"
+ integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.4.0"
+
+babel-plugin-react-native-web@~0.18.10:
+ version "0.18.12"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.12.tgz#3e9764484492ea612a16b40135b07c2d05b7969d"
+ integrity sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==
babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
version "7.0.0-beta.0"
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf"
integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==
+babel-plugin-transform-flow-enums@^0.0.2:
+ version "0.0.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz#d1d0cc9bdc799c850ca110d0ddc9f21b9ec3ef25"
+ integrity sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==
+ dependencies:
+ "@babel/plugin-syntax-flow" "^7.12.1"
+
babel-preset-current-node-syntax@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b"
@@ -4720,17 +5673,19 @@ babel-preset-current-node-syntax@^1.0.0:
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-syntax-top-level-await" "^7.8.3"
-babel-preset-expo@~9.2.0:
- version "9.2.0"
- resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-9.2.0.tgz#d01793e3a556065f103b3095fbbc959d52f08e88"
- integrity sha512-aM2htiNx0H49H+MWCp9+cKVSdcdNSn0tbE5Dln/GO1xna4ZlnA30clbfClcYJFUcZtW90IsYeZwQ/hj8zyWhNA==
+babel-preset-expo@^9.5.0, babel-preset-expo@~9.5.0:
+ version "9.5.0"
+ resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-9.5.0.tgz#c42f84e75e8a0f715bb5efd7f93455481c20113e"
+ integrity sha512-c5YPPro5g0rVf6WtednbCdRPFkZ+VT43/DhQQNh8rRubDxvKHT1bq0EUG0cgm5M61hXjTwgLJn9YzxX1TeBm/g==
dependencies:
"@babel/plugin-proposal-decorators" "^7.12.9"
+ "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
+ "@babel/plugin-proposal-object-rest-spread" "^7.12.13"
"@babel/plugin-transform-react-jsx" "^7.12.17"
- "@babel/preset-env" "^7.12.9"
- babel-plugin-module-resolver "^4.1.0"
- babel-plugin-react-native-web "~0.18.2"
- metro-react-native-babel-preset "~0.70.3"
+ "@babel/preset-env" "^7.20.0"
+ babel-plugin-module-resolver "^5.0.0"
+ babel-plugin-react-native-web "~0.18.10"
+ metro-react-native-babel-preset "0.76.5"
babel-preset-fbjs@^3.4.0:
version "3.4.0"
@@ -4765,37 +5720,29 @@ babel-preset-fbjs@^3.4.0:
"@babel/plugin-transform-template-literals" "^7.0.0"
babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0"
-babel-preset-jest@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee"
- integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==
+babel-preset-jest@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2"
+ integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==
dependencies:
- babel-plugin-jest-hoist "^26.6.2"
+ babel-plugin-jest-hoist "^29.5.0"
babel-preset-current-node-syntax "^1.0.0"
+badgin@^1.1.5:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/badgin/-/badgin-1.2.3.tgz#994b5f519827d7d5422224825b2c8faea2bc43ad"
+ integrity sha512-NQGA7LcfCpSzIbGRbkgjgdWkjy7HI+Th5VLxTJfW5EeaAf3fnS+xWQaQOCYiny+q6QSvxqoSO04vCx+4u++EJw==
+
balanced-match@^1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.2.3, base64-js@^1.3.1, base64-js@^1.5.1:
+base64-js@^1.1.2, base64-js@^1.2.3, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
-base@^0.11.1:
- version "0.11.2"
- resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
- integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
- dependencies:
- 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"
-
batch@0.6.1:
version "0.6.1"
resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
@@ -4808,7 +5755,7 @@ better-opn@~3.0.2:
dependencies:
open "^8.0.4"
-big-integer@1.6.x, big-integer@^1.6.16:
+big-integer@1.6.x:
version "1.6.51"
resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686"
integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==
@@ -4818,23 +5765,11 @@ big.js@^5.2.2:
resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
-binary-extensions@^1.0.0:
- version "1.13.1"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
- integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
-
binary-extensions@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
-bindings@^1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
- integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
- dependencies:
- file-uri-to-path "1.0.0"
-
bl@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
@@ -4844,73 +5779,58 @@ bl@^4.1.0:
inherits "^2.0.4"
readable-stream "^3.4.0"
-bluebird@^3.5.5:
- version "3.7.2"
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
- integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
-
blueimp-md5@^2.10.0:
version "2.19.0"
resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0"
integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==
-bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
- version "4.12.0"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
- integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
-
-bn.js@^5.0.0, bn.js@^5.1.1:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"
- integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==
-
-body-parser@1.19.0:
- version "1.19.0"
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
- integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
+body-parser@1.20.1:
+ version "1.20.1"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668"
+ integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==
dependencies:
- bytes "3.1.0"
+ bytes "3.1.2"
content-type "~1.0.4"
debug "2.6.9"
- depd "~1.1.2"
- http-errors "1.7.2"
+ depd "2.0.0"
+ destroy "1.2.0"
+ http-errors "2.0.0"
iconv-lite "0.4.24"
- on-finished "~2.3.0"
- qs "6.7.0"
- raw-body "2.4.0"
- type-is "~1.6.17"
+ on-finished "2.4.1"
+ qs "6.11.0"
+ raw-body "2.5.1"
+ type-is "~1.6.18"
+ unpipe "1.0.0"
-body-parser@1.20.0:
- version "1.20.0"
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5"
- integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==
+body-parser@^1.20.1:
+ version "1.20.2"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd"
+ integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==
dependencies:
bytes "3.1.2"
- content-type "~1.0.4"
+ content-type "~1.0.5"
debug "2.6.9"
depd "2.0.0"
destroy "1.2.0"
http-errors "2.0.0"
iconv-lite "0.4.24"
on-finished "2.4.1"
- qs "6.10.3"
- raw-body "2.5.1"
+ qs "6.11.0"
+ raw-body "2.5.2"
type-is "~1.6.18"
unpipe "1.0.0"
-bonjour@^3.5.0:
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
- integrity sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==
+bonjour-service@^1.0.11:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135"
+ integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==
dependencies:
- array-flatten "^2.1.0"
- deep-equal "^1.0.1"
+ array-flatten "^2.1.2"
dns-equal "^1.0.0"
- dns-txt "^2.0.2"
- multicast-dns "^6.0.1"
- multicast-dns-service-types "^1.1.0"
+ fast-deep-equal "^3.1.3"
+ multicast-dns "^7.2.5"
-boolbase@^1.0.0, boolbase@~1.0.0:
+boolbase@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
@@ -4944,21 +5864,12 @@ brace-expansion@^1.1.7:
balanced-match "^1.0.0"
concat-map "0.0.1"
-braces@^2.3.1, braces@^2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
- integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
+brace-expansion@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
+ integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
dependencies:
- 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"
+ balanced-match "^1.0.0"
braces@^3.0.2, braces@~3.0.2:
version "3.0.2"
@@ -4967,101 +5878,6 @@ braces@^3.0.2, braces@~3.0.2:
dependencies:
fill-range "^7.0.1"
-broadcast-channel@^3.4.1:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/broadcast-channel/-/broadcast-channel-3.7.0.tgz#2dfa5c7b4289547ac3f6705f9c00af8723889937"
- integrity sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==
- dependencies:
- "@babel/runtime" "^7.7.2"
- detect-node "^2.1.0"
- js-sha3 "0.8.0"
- microseconds "0.2.0"
- nano-time "1.0.0"
- oblivious-set "1.0.0"
- rimraf "3.0.2"
- unload "2.2.0"
-
-brorand@^1.0.1, brorand@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
- integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==
-
-browser-process-hrtime@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
- integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-
-browserify-aes@^1.0.0, browserify-aes@^1.0.4:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
- integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
- dependencies:
- buffer-xor "^1.0.3"
- cipher-base "^1.0.0"
- create-hash "^1.1.0"
- evp_bytestokey "^1.0.3"
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-browserify-cipher@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
- integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
- dependencies:
- browserify-aes "^1.0.4"
- browserify-des "^1.0.0"
- evp_bytestokey "^1.0.0"
-
-browserify-des@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
- integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
- dependencies:
- cipher-base "^1.0.1"
- des.js "^1.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
-browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
- integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
- dependencies:
- bn.js "^5.0.0"
- randombytes "^2.0.1"
-
-browserify-sign@^4.0.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
- integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
- dependencies:
- bn.js "^5.1.1"
- browserify-rsa "^4.0.1"
- create-hash "^1.2.0"
- create-hmac "^1.1.7"
- elliptic "^6.5.3"
- inherits "^2.0.4"
- parse-asn1 "^5.1.5"
- readable-stream "^3.6.0"
- safe-buffer "^5.2.0"
-
-browserify-zlib@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
- integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
- dependencies:
- pako "~1.0.5"
-
-browserslist@4.14.2:
- version "4.14.2"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.2.tgz#1b3cec458a1ba87588cc5e9be62f19b6d48813ce"
- integrity sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==
- dependencies:
- caniuse-lite "^1.0.30001125"
- electron-to-chromium "^1.3.564"
- escalade "^3.0.2"
- node-releases "^1.1.61"
-
browserslist@^4.0.0:
version "4.21.1"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.1.tgz#c9b9b0a54c7607e8dc3e01a0d311727188011a00"
@@ -5072,6 +5888,16 @@ browserslist@^4.0.0:
node-releases "^2.0.5"
update-browserslist-db "^1.0.4"
+browserslist@^4.14.5, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9:
+ version "4.21.9"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635"
+ integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==
+ dependencies:
+ caniuse-lite "^1.0.30001503"
+ electron-to-chromium "^1.4.431"
+ node-releases "^2.0.12"
+ update-browserslist-db "^1.0.11"
+
browserslist@^4.20.2:
version "4.20.4"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.4.tgz#98096c9042af689ee1e0271333dbc564b8ce4477"
@@ -5094,6 +5920,16 @@ browserslist@^4.20.3:
node-releases "^2.0.3"
picocolors "^1.0.0"
+browserslist@^4.21.3:
+ version "4.21.4"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
+ integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
+ dependencies:
+ caniuse-lite "^1.0.30001400"
+ electron-to-chromium "^1.4.251"
+ node-releases "^2.0.6"
+ update-browserslist-db "^1.0.9"
+
bser@2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
@@ -5124,25 +5960,6 @@ buffer-from@^1.0.0:
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
-buffer-indexof@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
- integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==
-
-buffer-xor@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
- integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==
-
-buffer@^4.3.0:
- version "4.9.2"
- resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
- integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
- dependencies:
- base64-js "^1.0.2"
- ieee754 "^1.1.4"
- isarray "^1.0.0"
-
buffer@^5.5.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
@@ -5151,11 +5968,6 @@ buffer@^5.5.0:
base64-js "^1.3.1"
ieee754 "^1.1.13"
-builtin-status-codes@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
- integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==
-
builtins@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
@@ -5166,38 +5978,12 @@ bytes@3.0.0:
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==
-bytes@3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
- integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
-
bytes@3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
-cacache@^12.0.2:
- version "12.0.4"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
- integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
- dependencies:
- bluebird "^3.5.5"
- chownr "^1.1.1"
- figgy-pudding "^3.5.1"
- glob "^7.1.4"
- graceful-fs "^4.1.15"
- infer-owner "^1.0.3"
- lru-cache "^5.1.1"
- mississippi "^3.0.0"
- mkdirp "^0.5.1"
- move-concurrently "^1.0.1"
- promise-inflight "^1.0.1"
- rimraf "^2.6.3"
- ssri "^6.0.1"
- unique-filename "^1.1.1"
- y18n "^4.0.0"
-
-cacache@^15.0.5, cacache@^15.3.0:
+cacache@^15.3.0:
version "15.3.0"
resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
@@ -5221,21 +6007,6 @@ cacache@^15.0.5, cacache@^15.3.0:
tar "^6.0.2"
unique-filename "^1.1.1"
-cache-base@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
- integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
- dependencies:
- 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"
-
call-bind@^1.0.0, call-bind@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
@@ -5268,7 +6039,7 @@ callsites@^3.0.0:
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-camel-case@^4.1.1:
+camel-case@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
@@ -5281,7 +6052,7 @@ camelcase@^5.0.0, camelcase@^5.3.1:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-camelcase@^6.0.0:
+camelcase@^6.2.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
@@ -5296,7 +6067,7 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001359:
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001359:
version "1.0.30001363"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz#26bec2d606924ba318235944e1193304ea7c4f15"
integrity sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==
@@ -5306,14 +6077,33 @@ caniuse-lite@^1.0.30001332, caniuse-lite@^1.0.30001349:
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001352.tgz#cc6f5da3f983979ad1e2cdbae0505dccaa7c6a12"
integrity sha512-GUgH8w6YergqPQDGWhJGt8GDRnY0L/iJVQcU3eJ46GYf52R8tk0Wxp0PymuFVZboJYXGiCqwozAYZNRjVj6IcA==
-capture-exit@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
- integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
+caniuse-lite@^1.0.30001400:
+ version "1.0.30001441"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz#987437b266260b640a23cd18fbddb509d7f69f3e"
+ integrity sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==
+
+caniuse-lite@^1.0.30001503:
+ version "1.0.30001503"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001503.tgz#88b6ff1b2cf735f1f3361dc1a15b59f0561aa398"
+ integrity sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==
+
+chalk@5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3"
+ integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==
+
+chalk@^1.1.1, chalk@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+ integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==
dependencies:
- rsvp "^4.8.4"
+ ansi-styles "^2.2.1"
+ escape-string-regexp "^1.0.2"
+ has-ansi "^2.0.0"
+ strip-ansi "^3.0.0"
+ supports-color "^2.0.0"
-chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2:
+chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -5343,6 +6133,11 @@ char-regex@^1.0.2:
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
+char-regex@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.1.tgz#6dafdb25f9d3349914079f010ba8d0e6ff9cd01e"
+ integrity sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==
+
charcodes@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/charcodes/-/charcodes-0.2.0.tgz#5208d327e6cc05f99eb80ffc814707572d1f14e4"
@@ -5353,26 +6148,7 @@ charenc@0.0.2, charenc@~0.0.1:
resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==
-chokidar@^2.1.8:
- version "2.1.8"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
- integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
- dependencies:
- anymatch "^2.0.0"
- async-each "^1.0.1"
- braces "^2.3.2"
- 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"
- optionalDependencies:
- fsevents "^1.2.7"
-
-chokidar@^3.4.1:
+chokidar@^3.5.3:
version "3.5.3"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
@@ -5387,11 +6163,6 @@ chokidar@^3.4.1:
optionalDependencies:
fsevents "~2.3.2"
-chownr@^1.1.1:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
- integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
-
chownr@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
@@ -5412,33 +6183,20 @@ ci-info@^3.2.0, ci-info@^3.3.0:
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.1.tgz#58331f6f472a25fe3a50a351ae3052936c2c7f32"
integrity sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==
-cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
- integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-cjs-module-lexer@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f"
- integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==
+ci-info@^3.7.0:
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91"
+ integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==
-class-utils@^0.3.5:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
- integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
- dependencies:
- arr-union "^3.1.0"
- define-property "^0.2.5"
- isobject "^3.0.0"
- static-extend "^0.1.1"
+cjs-module-lexer@^1.0.0:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107"
+ integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==
-clean-css@^4.2.3:
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178"
- integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==
+clean-css@^5.2.2:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224"
+ integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==
dependencies:
source-map "~0.6.0"
@@ -5447,12 +6205,11 @@ clean-stack@^2.0.0:
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
-clean-webpack-plugin@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz#a99d8ec34c1c628a4541567aa7b457446460c62b"
- integrity sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==
+clean-webpack-plugin@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/clean-webpack-plugin/-/clean-webpack-plugin-4.0.0.tgz#72947d4403d452f38ed61a9ff0ada8122aacd729"
+ integrity sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==
dependencies:
- "@types/webpack" "^4.4.31"
del "^4.1.1"
cli-cursor@^2.1.0:
@@ -5474,7 +6231,15 @@ cli-spinners@^2.0.0, cli-spinners@^2.5.0:
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d"
integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==
-cli-truncate@^2.1.0:
+cli-styles@^0.4:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/cli-styles/-/cli-styles-0.4.0.tgz#099a6d3d04dfde277244fa824918a678bfb9ae6f"
+ integrity sha512-vftbMiExtwwZn/sEFdD4Niw76lfKCmVSJkWHFyO9kqsNPiE6ngiXfP4sJaO9ak1XC1aNKpY53Fu8uMDy3UjhNA==
+ dependencies:
+ chalk "^1.1.1"
+ figures "^1.4"
+
+cli-truncate@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
@@ -5490,15 +6255,6 @@ cli-truncate@^3.1.0:
slice-ansi "^5.0.0"
string-width "^5.0.0"
-cliui@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
- integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
- dependencies:
- string-width "^3.1.0"
- strip-ansi "^5.2.0"
- wrap-ansi "^5.1.0"
-
cliui@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
@@ -5508,6 +6264,15 @@ cliui@^6.0.0:
strip-ansi "^6.0.0"
wrap-ansi "^6.2.0"
+cliui@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
+ integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.1"
+ wrap-ansi "^7.0.0"
+
clone-deep@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
@@ -5537,29 +6302,12 @@ co@^4.6.0:
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
-coa@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
- integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
- dependencies:
- "@types/q" "^1.5.1"
- chalk "^2.4.1"
- q "^1.1.2"
-
collect-v8-coverage@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
-collection-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
- integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
- dependencies:
- map-visit "^1.0.0"
- object-visit "^1.0.0"
-
-color-convert@^1.9.0, color-convert@^1.9.3:
+color-convert@^1.9.0:
version "1.9.3"
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
@@ -5583,7 +6331,7 @@ color-name@^1.0.0, color-name@~1.1.4:
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-color-string@^1.5.3, color-string@^1.6.0:
+color-string@^1.5.3, color-string@^1.9.0:
version "1.9.1"
resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4"
integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
@@ -5591,23 +6339,28 @@ color-string@^1.5.3, color-string@^1.6.0:
color-name "^1.0.0"
simple-swizzle "^0.2.2"
-color@^3.0.0, color@^3.1.3:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164"
- integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==
+color@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a"
+ integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==
dependencies:
- color-convert "^1.9.3"
- color-string "^1.6.0"
+ color-convert "^2.0.1"
+ color-string "^1.9.0"
+
+colord@^2.9.1:
+ version "2.9.3"
+ resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
+ integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
colorette@^1.0.7:
version "1.4.0"
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40"
integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==
-colorette@^2.0.16:
- version "2.0.17"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.17.tgz#5dd4c0d15e2984b7433cb4a9f2ead45063b80c47"
- integrity sha512-hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g==
+colorette@^2.0.10, colorette@^2.0.19:
+ version "2.0.20"
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
+ integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
combined-stream@^1.0.8:
version "1.0.8"
@@ -5626,12 +6379,17 @@ commander@2.20.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
-commander@^2.19.0, commander@^2.20.0:
+commander@^10.0.0:
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
+ integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==
+
+commander@^2.20.0:
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
-commander@^4.0.0, commander@^4.1.1:
+commander@^4.0.0:
version "4.1.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
@@ -5646,10 +6404,15 @@ commander@^7.2.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
-commander@^9.3.0:
- version "9.3.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-9.3.0.tgz#f619114a5a2d2054e0d9ff1b31d5ccf89255e26b"
- integrity sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==
+commander@^8.3.0:
+ version "8.3.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
+ integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
+
+commander@^9.4.1:
+ version "9.5.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30"
+ integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==
commander@~2.13.0:
version "2.13.0"
@@ -5673,11 +6436,6 @@ compare-versions@^3.4.0:
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
-component-emitter@^1.2.1:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
- integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
-
component-type@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.2.1.tgz#8a47901700238e4fc32269771230226f24b415a9"
@@ -5708,20 +6466,10 @@ concat-map@0.0.1:
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
-concat-stream@^1.5.0:
- version "1.6.2"
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
- integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
- dependencies:
- buffer-from "^1.0.0"
- inherits "^2.0.3"
- readable-stream "^2.2.2"
- typedarray "^0.0.6"
-
-connect-history-api-fallback@^1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
- integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
+connect-history-api-fallback@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8"
+ integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==
connect@^3.6.5, connect@^3.7.0:
version "3.7.0"
@@ -5733,16 +6481,6 @@ connect@^3.6.5, connect@^3.7.0:
parseurl "~1.3.3"
utils-merge "1.0.1"
-console-browserify@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
- integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
-
-constants-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
- integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==
-
content-disposition@0.5.4:
version "0.5.4"
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
@@ -5755,13 +6493,23 @@ content-type@~1.0.4:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
-convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
+content-type@~1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
+ integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
+
+convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.8.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
dependencies:
safe-buffer "~5.1.1"
+convert-source-map@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+
cookie-signature@1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
@@ -5772,41 +6520,19 @@ cookie@0.5.0:
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b"
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
-copy-concurrently@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
- integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
- dependencies:
- aproba "^1.1.1"
- fs-write-stream-atomic "^1.0.8"
- iferr "^0.1.5"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.0"
-
-copy-descriptor@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
- integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-
-copy-webpack-plugin@~6.0.3:
- version "6.0.4"
- resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-6.0.4.tgz#7b7d7f7f290aa21b3411d02525859b89988a200b"
- integrity sha512-zCazfdYAh3q/O4VzZFiadWGpDA2zTs6FC6D7YTHD6H1J40pzo0H4z22h1NYMCl4ArQP4CK8y/KWqPrJ4rVkZ5A==
+copy-webpack-plugin@^10.2.0:
+ version "10.2.4"
+ resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz#6c854be3fdaae22025da34b9112ccf81c63308fe"
+ integrity sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==
dependencies:
- cacache "^15.0.5"
- fast-glob "^3.2.4"
- find-cache-dir "^3.3.1"
- glob-parent "^5.1.1"
- globby "^11.0.1"
- loader-utils "^2.0.0"
+ fast-glob "^3.2.7"
+ glob-parent "^6.0.1"
+ globby "^12.0.2"
normalize-path "^3.0.0"
- p-limit "^3.0.2"
- schema-utils "^2.7.0"
- serialize-javascript "^4.0.0"
- webpack-sources "^1.4.3"
+ schema-utils "^4.0.0"
+ serialize-javascript "^6.0.0"
-core-js-compat@^3.21.0, core-js-compat@^3.22.1:
+core-js-compat@^3.21.0:
version "3.22.6"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.22.6.tgz#2e7c7a703238c168883dbf55c24bbb67503cddcb"
integrity sha512-dQ/SxlHcuiywaPIoSUCU6Fx+Mk/H5TXENqd/ZJcK85ta0ZcQkbzHwblxPeL0hF5o+NsT2uK3q9ZOG5TboiVuWw==
@@ -5814,12 +6540,19 @@ core-js-compat@^3.21.0, core-js-compat@^3.22.1:
browserslist "^4.20.3"
semver "7.0.0"
+core-js-compat@^3.30.1, core-js-compat@^3.30.2:
+ version "3.31.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.0.tgz#4030847c0766cc0e803dcdfb30055d7ef2064bf1"
+ integrity sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==
+ dependencies:
+ browserslist "^4.21.5"
+
core-util-is@~1.0.0:
version "1.0.3"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
-cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.1.0:
+cosmiconfig@^5.0.5, cosmiconfig@^5.1.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
@@ -5829,44 +6562,12 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.1.0:
js-yaml "^3.13.1"
parse-json "^4.0.0"
-create-ecdh@^4.0.0:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
- integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
- dependencies:
- bn.js "^4.1.0"
- elliptic "^6.5.3"
-
-create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
- integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
- dependencies:
- cipher-base "^1.0.1"
- inherits "^2.0.1"
- md5.js "^1.3.4"
- ripemd160 "^2.0.1"
- sha.js "^2.4.0"
-
-create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
- integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
- dependencies:
- cipher-base "^1.0.3"
- create-hash "^1.1.0"
- inherits "^2.0.1"
- ripemd160 "^2.0.0"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
-create-react-class@^15.7.0:
- version "15.7.0"
- resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.7.0.tgz#7499d7ca2e69bb51d13faf59bd04f0c65a1d6c1e"
- integrity sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==
+cross-env@^7.0.3:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf"
+ integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==
dependencies:
- loose-envify "^1.3.1"
- object-assign "^4.1.1"
+ cross-spawn "^7.0.1"
cross-fetch@^3.1.5:
version "3.1.5"
@@ -5875,15 +6576,6 @@ cross-fetch@^3.1.5:
dependencies:
node-fetch "2.6.7"
-cross-spawn@7.0.3, cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
- integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
- dependencies:
- path-key "^3.1.0"
- shebang-command "^2.0.0"
- which "^2.0.1"
-
cross-spawn@^6.0.0, cross-spawn@^6.0.5:
version "6.0.5"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
@@ -5895,28 +6587,20 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
+cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+ integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ dependencies:
+ path-key "^3.1.0"
+ shebang-command "^2.0.0"
+ which "^2.0.1"
+
crypt@0.0.2, crypt@~0.0.1:
version "0.0.2"
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==
-crypto-browserify@^3.11.0:
- version "3.12.0"
- resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
- integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
- dependencies:
- browserify-cipher "^1.0.0"
- browserify-sign "^4.0.0"
- create-ecdh "^4.0.0"
- create-hash "^1.1.0"
- create-hmac "^1.1.0"
- diffie-hellman "^5.0.0"
- inherits "^2.0.1"
- pbkdf2 "^3.0.3"
- public-encrypt "^4.0.0"
- randombytes "^2.0.0"
- randomfill "^1.0.3"
-
crypto-random-string@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
@@ -5927,18 +6611,10 @@ crypto-random-string@^2.0.0:
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
-css-color-names@0.0.4, css-color-names@^0.0.4:
- version "0.0.4"
- resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
- integrity sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==
-
-css-declaration-sorter@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22"
- integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==
- dependencies:
- postcss "^7.0.1"
- timsort "^0.3.0"
+css-declaration-sorter@^6.3.1:
+ version "6.4.0"
+ resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad"
+ integrity sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==
css-in-js-utils@^2.0.0:
version "2.0.1"
@@ -5948,39 +6624,31 @@ css-in-js-utils@^2.0.0:
hyphenate-style-name "^1.0.2"
isobject "^3.0.1"
-css-loader@~3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645"
- integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==
- dependencies:
- camelcase "^5.3.1"
- cssesc "^3.0.0"
- icss-utils "^4.1.1"
- loader-utils "^1.2.3"
- normalize-path "^3.0.0"
- postcss "^7.0.32"
- postcss-modules-extract-imports "^2.0.0"
- postcss-modules-local-by-default "^3.0.2"
- postcss-modules-scope "^2.2.0"
- postcss-modules-values "^3.0.0"
- postcss-value-parser "^4.1.0"
- schema-utils "^2.7.0"
- semver "^6.3.0"
-
-css-select-base-adapter@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
- integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
+css-loader@^6.5.1:
+ version "6.8.1"
+ resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88"
+ integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==
+ dependencies:
+ icss-utils "^5.1.0"
+ postcss "^8.4.21"
+ postcss-modules-extract-imports "^3.0.0"
+ postcss-modules-local-by-default "^4.0.3"
+ postcss-modules-scope "^3.0.0"
+ postcss-modules-values "^4.0.0"
+ postcss-value-parser "^4.2.0"
+ semver "^7.3.8"
-css-select@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
- integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
- dependencies:
- boolbase "^1.0.0"
- css-what "^3.2.1"
- domutils "^1.7.0"
- nth-check "^1.0.2"
+css-minimizer-webpack-plugin@^3.4.1:
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f"
+ integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==
+ dependencies:
+ cssnano "^5.0.6"
+ jest-worker "^27.0.2"
+ postcss "^8.3.5"
+ schema-utils "^4.0.0"
+ serialize-javascript "^6.0.0"
+ source-map "^0.6.1"
css-select@^4.1.3, css-select@^4.2.1:
version "4.3.0"
@@ -5993,15 +6661,18 @@ css-select@^4.1.3, css-select@^4.2.1:
domutils "^2.8.0"
nth-check "^2.0.1"
-css-tree@1.0.0-alpha.37:
- version "1.0.0-alpha.37"
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
- integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
+css-select@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6"
+ integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==
dependencies:
- mdn-data "2.0.4"
- source-map "^0.6.1"
+ boolbase "^1.0.0"
+ css-what "^6.1.0"
+ domhandler "^5.0.2"
+ domutils "^3.0.1"
+ nth-check "^2.0.1"
-css-tree@^1.0.0-alpha.39, css-tree@^1.1.2:
+css-tree@^1.1.2, css-tree@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
@@ -6009,12 +6680,7 @@ css-tree@^1.0.0-alpha.39, css-tree@^1.1.2:
mdn-data "2.0.14"
source-map "^0.6.1"
-css-what@^3.2.1:
- version "3.4.2"
- resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
- integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
-
-css-what@^6.0.1:
+css-what@^6.0.1, css-what@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
@@ -6024,85 +6690,66 @@ cssesc@^3.0.0:
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
-cssnano-preset-default@^4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz#920622b1fc1e95a34e8838203f1397a504f2d3ff"
- integrity sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==
- dependencies:
- css-declaration-sorter "^4.0.1"
- cssnano-util-raw-cache "^4.0.1"
- postcss "^7.0.0"
- postcss-calc "^7.0.1"
- postcss-colormin "^4.0.3"
- postcss-convert-values "^4.0.1"
- postcss-discard-comments "^4.0.2"
- postcss-discard-duplicates "^4.0.2"
- postcss-discard-empty "^4.0.1"
- postcss-discard-overridden "^4.0.1"
- postcss-merge-longhand "^4.0.11"
- postcss-merge-rules "^4.0.3"
- postcss-minify-font-values "^4.0.2"
- postcss-minify-gradients "^4.0.2"
- postcss-minify-params "^4.0.2"
- postcss-minify-selectors "^4.0.2"
- postcss-normalize-charset "^4.0.1"
- postcss-normalize-display-values "^4.0.2"
- postcss-normalize-positions "^4.0.2"
- postcss-normalize-repeat-style "^4.0.2"
- postcss-normalize-string "^4.0.2"
- postcss-normalize-timing-functions "^4.0.2"
- postcss-normalize-unicode "^4.0.1"
- postcss-normalize-url "^4.0.1"
- postcss-normalize-whitespace "^4.0.2"
- postcss-ordered-values "^4.1.2"
- postcss-reduce-initial "^4.0.3"
- postcss-reduce-transforms "^4.0.2"
- postcss-svgo "^4.0.3"
- postcss-unique-selectors "^4.0.1"
-
-cssnano-util-get-arguments@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f"
- integrity sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==
-
-cssnano-util-get-match@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d"
- integrity sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==
-
-cssnano-util-raw-cache@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"
- integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==
- dependencies:
- postcss "^7.0.0"
-
-cssnano-util-same-parent@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
- integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
+cssnano-preset-default@^5.2.14:
+ version "5.2.14"
+ resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8"
+ integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==
+ dependencies:
+ css-declaration-sorter "^6.3.1"
+ cssnano-utils "^3.1.0"
+ postcss-calc "^8.2.3"
+ postcss-colormin "^5.3.1"
+ postcss-convert-values "^5.1.3"
+ postcss-discard-comments "^5.1.2"
+ postcss-discard-duplicates "^5.1.0"
+ postcss-discard-empty "^5.1.1"
+ postcss-discard-overridden "^5.1.0"
+ postcss-merge-longhand "^5.1.7"
+ postcss-merge-rules "^5.1.4"
+ postcss-minify-font-values "^5.1.0"
+ postcss-minify-gradients "^5.1.1"
+ postcss-minify-params "^5.1.4"
+ postcss-minify-selectors "^5.2.1"
+ postcss-normalize-charset "^5.1.0"
+ postcss-normalize-display-values "^5.1.0"
+ postcss-normalize-positions "^5.1.1"
+ postcss-normalize-repeat-style "^5.1.1"
+ postcss-normalize-string "^5.1.0"
+ postcss-normalize-timing-functions "^5.1.0"
+ postcss-normalize-unicode "^5.1.1"
+ postcss-normalize-url "^5.1.0"
+ postcss-normalize-whitespace "^5.1.1"
+ postcss-ordered-values "^5.1.3"
+ postcss-reduce-initial "^5.1.2"
+ postcss-reduce-transforms "^5.1.0"
+ postcss-svgo "^5.1.0"
+ postcss-unique-selectors "^5.1.1"
+
+cssnano-utils@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861"
+ integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
-cssnano@^4.1.10:
- version "4.1.11"
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.11.tgz#c7b5f5b81da269cb1fd982cb960c1200910c9a99"
- integrity sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==
+cssnano@^5.0.6:
+ version "5.1.15"
+ resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf"
+ integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==
dependencies:
- cosmiconfig "^5.0.0"
- cssnano-preset-default "^4.0.8"
- is-resolvable "^1.0.0"
- postcss "^7.0.0"
+ cssnano-preset-default "^5.2.14"
+ lilconfig "^2.0.3"
+ yaml "^1.10.2"
-csso@^4.0.2:
+csso@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
dependencies:
css-tree "^1.1.2"
-cssom@^0.4.4:
- version "0.4.4"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
- integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
+cssom@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36"
+ integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==
cssom@~0.3.6:
version "0.3.8"
@@ -6121,31 +6768,26 @@ csstype@^3.0.2:
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2"
integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==
-cyclist@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
- integrity sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==
-
dag-map@~1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/dag-map/-/dag-map-1.0.2.tgz#e8379f041000ed561fc515475c1ed2c85eece8d7"
integrity sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==
-data-urls@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
- integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
+data-urls@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143"
+ integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==
dependencies:
- abab "^2.0.3"
- whatwg-mimetype "^2.3.0"
- whatwg-url "^8.0.0"
+ abab "^2.0.6"
+ whatwg-mimetype "^3.0.0"
+ whatwg-url "^11.0.0"
dayjs@^1.8.15:
version "1.11.2"
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.2.tgz#fa0f5223ef0d6724b3d8327134890cfe3d72fbe5"
integrity sha512-F4LXf1OeU9hrSYRPTTj/6FbO4HTjPKXvEIC1P2kcnFurViINCVk3ZV0xAS3XVx9MkMsXbbqlK6hjseaYbgKEHw==
-debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
+debug@2.6.9, debug@^2.2.0, debug@^2.6.9:
version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
@@ -6159,7 +6801,7 @@ debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4:
dependencies:
ms "2.1.2"
-debug@^3.1.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.7:
+debug@^3.1.0, debug@^3.2.7:
version "3.2.7"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
@@ -6171,27 +6813,25 @@ decamelize@^1.2.0:
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
-decimal.js@^10.2.1:
- version "10.3.1"
- resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783"
- integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==
+decimal.js@^10.4.2:
+ version "10.4.3"
+ resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23"
+ integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==
decode-uri-component@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-deep-equal@^1.0.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a"
- integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==
- dependencies:
- 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"
+decode-uri-component@^0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
+ integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
+
+dedent@^0.7.0:
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
+ integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==
deep-extend@^0.6.0:
version "0.6.0"
@@ -6203,16 +6843,16 @@ deep-is@^0.1.3, deep-is@~0.1.3:
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
-deepmerge@^3.2.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7"
- integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==
-
deepmerge@^4.2.2:
version "4.2.2"
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
+deepmerge@^4.3.0:
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
+ integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
+
default-gateway@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b"
@@ -6221,6 +6861,13 @@ default-gateway@^4.2.0:
execa "^1.0.0"
ip-regex "^2.1.0"
+default-gateway@^6.0.3:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71"
+ integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==
+ dependencies:
+ execa "^5.0.0"
+
defaults@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
@@ -6233,7 +6880,7 @@ define-lazy-prop@^2.0.0:
resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
-define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4:
+define-properties@^1.1.3, define-properties@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
@@ -6241,28 +6888,6 @@ define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4:
has-property-descriptors "^1.0.0"
object-keys "^1.1.1"
-define-property@^0.2.5:
- version "0.2.5"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
- integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
- dependencies:
- is-descriptor "^0.1.0"
-
-define-property@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
- integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
- dependencies:
- is-descriptor "^1.0.0"
-
-define-property@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
- integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
- dependencies:
- is-descriptor "^1.0.2"
- isobject "^3.0.1"
-
del@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
@@ -6310,55 +6935,44 @@ depd@~1.1.2:
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
-des.js@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
- integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
+deprecated-react-native-prop-types@4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-4.1.0.tgz#8ed03a64c21b7fbdd2d000957b6838d4f38d2c66"
+ integrity sha512-WfepZHmRbbdTvhcolb8aOKEvQdcmTMn5tKLbqbXmkBvjFjRVWAYqsXk/DBsV8TZxws8SdGHLuHaJrHSQUPRdfw==
dependencies:
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
+ "@react-native/normalize-colors" "*"
+ invariant "*"
+ prop-types "*"
destroy@1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
+detect-libc@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
+ integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
+
detect-newline@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
-detect-node@^2.0.4, detect-node@^2.1.0:
+detect-node@^2.0.4:
version "2.1.0"
resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1"
integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==
-detect-port-alt@1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275"
- integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==
- dependencies:
- address "^1.0.1"
- debug "^2.6.0"
-
-diff-sequences@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1"
- integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==
-
-diff-sequences@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327"
- integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==
+diff-sequences@^29.2.0:
+ version "29.2.0"
+ resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.2.0.tgz#4c55b5b40706c7b5d2c5c75999a50c56d214e8f6"
+ integrity sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw==
-diffie-hellman@^5.0.0:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
- integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
- dependencies:
- bn.js "^4.1.0"
- miller-rabin "^4.0.0"
- randombytes "^2.0.0"
+diff-sequences@^29.4.3:
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2"
+ integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==
dir-glob@^3.0.1:
version "3.0.1"
@@ -6372,20 +6986,12 @@ dns-equal@^1.0.0:
resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
-dns-packet@^1.3.1:
- version "1.3.4"
- resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f"
- integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==
- dependencies:
- ip "^1.1.0"
- safe-buffer "^5.0.1"
-
-dns-txt@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
- integrity sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==
+dns-packet@^5.2.2:
+ version "5.6.0"
+ resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.0.tgz#2202c947845c7a63c23ece58f2f70ff6ab4c2f7d"
+ integrity sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==
dependencies:
- buffer-indexof "^1.0.0"
+ "@leichtgewicht/ip-codec" "^2.0.1"
doctrine@^2.1.0:
version "2.1.0"
@@ -6416,14 +7022,6 @@ dom-helpers@^5.0.0, dom-helpers@^5.0.1, dom-helpers@^5.2.1:
"@babel/runtime" "^7.8.7"
csstype "^3.0.2"
-dom-serializer@0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
- integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
- dependencies:
- domelementtype "^2.0.1"
- entities "^2.0.0"
-
dom-serializer@^1.0.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30"
@@ -6433,34 +7031,26 @@ dom-serializer@^1.0.1:
domhandler "^4.2.0"
entities "^2.0.0"
-domain-browser@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
- integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
-
-domelementtype@1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
- integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
+dom-serializer@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
+ integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
+ dependencies:
+ domelementtype "^2.3.0"
+ domhandler "^5.0.2"
+ entities "^4.2.0"
-domelementtype@^2.0.1, domelementtype@^2.2.0:
+domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
-domexception@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
- integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
- dependencies:
- webidl-conversions "^5.0.0"
-
-domhandler@^3.0.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a"
- integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==
+domexception@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673"
+ integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==
dependencies:
- domelementtype "^2.0.1"
+ webidl-conversions "^7.0.0"
domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1:
version "4.3.1"
@@ -6469,15 +7059,14 @@ domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1:
dependencies:
domelementtype "^2.2.0"
-domutils@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
- integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
+domhandler@^5.0.1, domhandler@^5.0.2:
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
+ integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
dependencies:
- dom-serializer "0"
- domelementtype "1"
+ domelementtype "^2.3.0"
-domutils@^2.0.0, domutils@^2.5.2, domutils@^2.8.0:
+domutils@^2.5.2, domutils@^2.8.0:
version "2.8.0"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==
@@ -6486,6 +7075,15 @@ domutils@^2.0.0, domutils@^2.5.2, domutils@^2.8.0:
domelementtype "^2.2.0"
domhandler "^4.2.0"
+domutils@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c"
+ integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==
+ dependencies:
+ dom-serializer "^2.0.0"
+ domelementtype "^2.3.0"
+ domhandler "^5.0.1"
+
dot-case@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
@@ -6494,27 +7092,20 @@ dot-case@^3.0.4:
no-case "^3.0.4"
tslib "^2.0.3"
-dot-prop@^5.2.0:
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
- integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
- dependencies:
- is-obj "^2.0.0"
+dotenv-expand@~10.0.0:
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37"
+ integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==
-duplexer@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
- integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
+dotenv@^16.3.1:
+ version "16.3.1"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e"
+ integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==
-duplexify@^3.4.2, duplexify@^3.6.0:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
- integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
- dependencies:
- end-of-stream "^1.0.0"
- inherits "^2.0.1"
- readable-stream "^2.0.0"
- stream-shift "^1.0.0"
+dotenv@~16.0.3:
+ version "16.0.3"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07"
+ integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==
eastasianwidth@^0.2.0:
version "0.2.0"
@@ -6526,38 +7117,30 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-electron-to-chromium@^1.3.564, electron-to-chromium@^1.4.172:
- version "1.4.180"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.180.tgz#380b06037836055d12c7de181ee90b8ed911c3e7"
- integrity sha512-7at5ash3FD9U5gPa3/wPr6OdiZd/zBjvDZaaHBpcqFOFUhZiWnb7stkqk8xUFL9H9nk7Yok5vCCNK8wyC/+f8A==
-
electron-to-chromium@^1.4.118, electron-to-chromium@^1.4.147:
version "1.4.152"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.152.tgz#7dedbe8f3dc1c597088982a203f392e60f7ee90a"
integrity sha512-jk4Ju5SGZAQQJ1iI4Rgru7dDlvkQPLpNPWH9gIZmwCD4YteA5Bbk1xPcPDUf5jUYs3e1e80RXdi8XgKQZaigeg==
-elliptic@^6.5.3:
- version "6.5.4"
- resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
- integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
- dependencies:
- bn.js "^4.11.9"
- brorand "^1.1.0"
- hash.js "^1.0.0"
- hmac-drbg "^1.0.1"
- inherits "^2.0.4"
- minimalistic-assert "^1.0.1"
- minimalistic-crypto-utils "^1.0.1"
+electron-to-chromium@^1.4.172:
+ version "1.4.180"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.180.tgz#380b06037836055d12c7de181ee90b8ed911c3e7"
+ integrity sha512-7at5ash3FD9U5gPa3/wPr6OdiZd/zBjvDZaaHBpcqFOFUhZiWnb7stkqk8xUFL9H9nk7Yok5vCCNK8wyC/+f8A==
-emittery@^0.7.1:
- version "0.7.2"
- resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82"
- integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==
+electron-to-chromium@^1.4.251:
+ version "1.4.284"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
+ integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
-emoji-regex@^7.0.1:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
- integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
+electron-to-chromium@^1.4.431:
+ version "1.4.432"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.432.tgz#154a69d5ead974347f534aea4d28b03c7149fd7b"
+ integrity sha512-yz3U/khQgAFT2HURJA3/F4fKIyO2r5eK09BQzBZFd6BvBSSaRuzKc2ZNBHtJcO75/EKiRYbVYJZ2RB0P4BuD2g==
+
+emittery@^0.13.1:
+ version "0.13.1"
+ resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad"
+ integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==
emoji-regex@^8.0.0:
version "8.0.0"
@@ -6579,27 +7162,36 @@ encodeurl@~1.0.2:
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
-end-of-stream@^1.0.0, end-of-stream@^1.1.0:
+end-of-stream@^1.1.0:
version "1.4.4"
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
dependencies:
once "^1.4.0"
-enhanced-resolve@^4.1.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
- integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
+enhanced-resolve@^5.15.0:
+ version "5.15.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35"
+ integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==
dependencies:
- graceful-fs "^4.1.2"
- memory-fs "^0.5.0"
- tapable "^1.0.0"
+ graceful-fs "^4.2.4"
+ tapable "^2.2.0"
entities@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
+entities@^4.2.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-4.4.0.tgz#97bdaba170339446495e653cfd2db78962900174"
+ integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==
+
+entities@^4.4.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+ integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
+
env-editor@^0.4.1:
version "0.4.2"
resolved "https://registry.yarnpkg.com/env-editor/-/env-editor-0.4.2.tgz#4e76568d0bd8f5c2b6d314a9412c8fe9aa3ae861"
@@ -6615,13 +7207,6 @@ eol@^0.9.1:
resolved "https://registry.yarnpkg.com/eol/-/eol-0.9.1.tgz#f701912f504074be35c6117a5c4ade49cd547acd"
integrity sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==
-errno@^0.1.3, errno@~0.1.7:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
- integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
- dependencies:
- prr "~1.0.1"
-
error-ex@^1.3.1:
version "1.3.2"
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
@@ -6636,7 +7221,7 @@ error-stack-parser@^2.0.6:
dependencies:
stackframe "^1.1.1"
-errorhandler@^1.5.0:
+errorhandler@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91"
integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==
@@ -6644,7 +7229,7 @@ errorhandler@^1.5.0:
accepts "~1.3.7"
escape-html "~1.0.3"
-es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.1:
+es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5:
version "1.20.1"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814"
integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==
@@ -6673,28 +7258,112 @@ es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19
string.prototype.trimstart "^1.0.5"
unbox-primitive "^1.0.2"
-es-array-method-boxes-properly@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
- integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
-
-es-shim-unscopables@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
- integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
+es-abstract@^1.20.0:
+ version "1.20.4"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"
+ integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
dependencies:
+ call-bind "^1.0.2"
+ es-to-primitive "^1.2.1"
+ function-bind "^1.1.1"
+ function.prototype.name "^1.1.5"
+ get-intrinsic "^1.1.3"
+ get-symbol-description "^1.0.0"
has "^1.0.3"
+ has-property-descriptors "^1.0.0"
+ has-symbols "^1.0.3"
+ internal-slot "^1.0.3"
+ is-callable "^1.2.7"
+ is-negative-zero "^2.0.2"
+ is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
+ is-string "^1.0.7"
+ is-weakref "^1.0.2"
+ object-inspect "^1.12.2"
+ object-keys "^1.1.1"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.4.3"
+ safe-regex-test "^1.0.0"
+ string.prototype.trimend "^1.0.5"
+ string.prototype.trimstart "^1.0.5"
+ unbox-primitive "^1.0.2"
-es-to-primitive@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
- integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+es-abstract@^1.20.4:
+ version "1.21.2"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff"
+ integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==
dependencies:
- is-callable "^1.1.4"
- is-date-object "^1.0.1"
- is-symbol "^1.0.2"
+ array-buffer-byte-length "^1.0.0"
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ es-set-tostringtag "^2.0.1"
+ es-to-primitive "^1.2.1"
+ function.prototype.name "^1.1.5"
+ get-intrinsic "^1.2.0"
+ get-symbol-description "^1.0.0"
+ globalthis "^1.0.3"
+ gopd "^1.0.1"
+ has "^1.0.3"
+ has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
+ has-symbols "^1.0.3"
+ internal-slot "^1.0.5"
+ is-array-buffer "^3.0.2"
+ is-callable "^1.2.7"
+ is-negative-zero "^2.0.2"
+ is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
+ is-string "^1.0.7"
+ is-typed-array "^1.1.10"
+ is-weakref "^1.0.2"
+ object-inspect "^1.12.3"
+ object-keys "^1.1.1"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.4.3"
+ safe-regex-test "^1.0.0"
+ string.prototype.trim "^1.2.7"
+ string.prototype.trimend "^1.0.6"
+ string.prototype.trimstart "^1.0.6"
+ typed-array-length "^1.0.4"
+ unbox-primitive "^1.0.2"
+ which-typed-array "^1.1.9"
+
+es-module-lexer@^1.2.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f"
+ integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==
+
+es-set-tostringtag@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
+ integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
+ dependencies:
+ get-intrinsic "^1.1.3"
+ has "^1.0.3"
+ has-tostringtag "^1.0.0"
+
+es-shim-unscopables@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
+ integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
+ dependencies:
+ has "^1.0.3"
+
+es-to-primitive@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+ integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+ dependencies:
+ is-callable "^1.1.4"
+ is-date-object "^1.0.1"
+ is-symbol "^1.0.2"
+
+es6-object-assign@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c"
+ integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==
-escalade@^3.0.2, escalade@^3.1.1:
+escalade@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
@@ -6704,16 +7373,16 @@ escape-html@~1.0.3:
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
-escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
- integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
-
-escape-string-regexp@^1.0.5:
+escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
+escape-string-regexp@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
+ integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
+
escape-string-regexp@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
@@ -6736,19 +7405,24 @@ eslint-config-prettier@^8.5.0:
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1"
integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==
-eslint-config-universe@^11.0.0:
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/eslint-config-universe/-/eslint-config-universe-11.0.0.tgz#78d18b814bb15f0ac71c2de30beaab9fa9a230a9"
- integrity sha512-/Ax8Y3YDTjBQ5kLl84UddGjO08y4iV07h8G7cRsIoG78dy4u3KRz0Dn1gMLdHQkCDHqbguF6c+SVPHPaBTvqEA==
+eslint-config-prettier@^8.8.0:
+ version "8.8.0"
+ resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348"
+ integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==
+
+eslint-config-universe@^11.2.0:
+ version "11.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-config-universe/-/eslint-config-universe-11.2.0.tgz#36b27112d6ef237e1bcafd8458cd90a25ca5053c"
+ integrity sha512-exyQ2DozdDjq+FmIFmo0l3LDVBIn9l8/hJn6EP/EYKGutj0Wr7MvDLp1nVLP07Wk9ykD0Hi2s8g+TP4SW5cOmQ==
dependencies:
- "@typescript-eslint/eslint-plugin" "^5.14.0"
- "@typescript-eslint/parser" "^5.14.0"
+ "@typescript-eslint/eslint-plugin" "^5.50.0"
+ "@typescript-eslint/parser" "^5.50.0"
eslint-config-prettier "^8.5.0"
- eslint-plugin-import "^2.25.4"
+ eslint-plugin-import "^2.26.0"
eslint-plugin-node "^11.1.0"
- eslint-plugin-prettier "^4.0.0"
- eslint-plugin-react "^7.29.3"
- eslint-plugin-react-hooks "^4.3.0"
+ eslint-plugin-prettier "^4.2.1"
+ eslint-plugin-react "^7.31.11"
+ eslint-plugin-react-hooks "^4.6.0"
eslint-import-resolver-node@^0.3.6:
version "0.3.6"
@@ -6774,7 +7448,7 @@ eslint-plugin-es@^3.0.0:
eslint-utils "^2.0.0"
regexpp "^3.0.0"
-eslint-plugin-import@^2.25.4:
+eslint-plugin-import@^2.26.0:
version "2.26.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b"
integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==
@@ -6805,17 +7479,17 @@ eslint-plugin-node@^11.1.0:
resolve "^1.10.1"
semver "^6.1.0"
-eslint-plugin-prettier@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz#8b99d1e4b8b24a762472b4567992023619cb98e0"
- integrity sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==
+eslint-plugin-prettier@^4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b"
+ integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
dependencies:
prettier-linter-helpers "^1.0.0"
-eslint-plugin-react-hooks@^4.3.0, eslint-plugin-react-hooks@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.5.0.tgz#5f762dfedf8b2cf431c689f533c9d3fa5dcf25ad"
- integrity sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==
+eslint-plugin-react-hooks@^4.6.0:
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3"
+ integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
eslint-plugin-react-native-globals@^0.1.1, eslint-plugin-react-native-globals@^0.1.2:
version "0.1.2"
@@ -6830,35 +7504,28 @@ eslint-plugin-react-native@^4.0.0:
"@babel/traverse" "^7.7.4"
eslint-plugin-react-native-globals "^0.1.1"
-eslint-plugin-react@^7.29.3, eslint-plugin-react@^7.30.0:
- version "7.30.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.0.tgz#8e7b1b2934b8426ac067a0febade1b13bd7064e3"
- integrity sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==
+eslint-plugin-react@^7.31.11, eslint-plugin-react@^7.32.2:
+ version "7.32.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10"
+ integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==
dependencies:
- array-includes "^3.1.5"
- array.prototype.flatmap "^1.3.0"
+ array-includes "^3.1.6"
+ array.prototype.flatmap "^1.3.1"
+ array.prototype.tosorted "^1.1.1"
doctrine "^2.1.0"
estraverse "^5.3.0"
jsx-ast-utils "^2.4.1 || ^3.0.0"
minimatch "^3.1.2"
- object.entries "^1.1.5"
- object.fromentries "^2.0.5"
- object.hasown "^1.1.1"
- object.values "^1.1.5"
+ object.entries "^1.1.6"
+ object.fromentries "^2.0.6"
+ object.hasown "^1.1.2"
+ object.values "^1.1.6"
prop-types "^15.8.1"
- resolve "^2.0.0-next.3"
+ resolve "^2.0.0-next.4"
semver "^6.3.0"
- string.prototype.matchall "^4.0.7"
-
-eslint-scope@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
- integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
+ string.prototype.matchall "^4.0.8"
-eslint-scope@^5.1.1:
+eslint-scope@5.1.1, eslint-scope@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
@@ -6866,10 +7533,10 @@ eslint-scope@^5.1.1:
esrecurse "^4.3.0"
estraverse "^4.1.1"
-eslint-scope@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
- integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
+eslint-scope@^7.2.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b"
+ integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==
dependencies:
esrecurse "^4.3.0"
estraverse "^5.2.0"
@@ -6881,91 +7548,88 @@ eslint-utils@^2.0.0:
dependencies:
eslint-visitor-keys "^1.1.0"
-eslint-utils@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
- integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
- dependencies:
- eslint-visitor-keys "^2.0.0"
-
eslint-visitor-keys@^1.1.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
-eslint-visitor-keys@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
- integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
-
eslint-visitor-keys@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
-eslint@^8.16.0:
- version "8.17.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.17.0.tgz#1cfc4b6b6912f77d24b874ca1506b0fe09328c21"
- integrity sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==
- dependencies:
- "@eslint/eslintrc" "^1.3.0"
- "@humanwhocodes/config-array" "^0.9.2"
+eslint-visitor-keys@^3.4.1:
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994"
+ integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==
+
+eslint@^8.44.0:
+ version "8.44.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.44.0.tgz#51246e3889b259bbcd1d7d736a0c10add4f0e500"
+ integrity sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.4.0"
+ "@eslint/eslintrc" "^2.1.0"
+ "@eslint/js" "8.44.0"
+ "@humanwhocodes/config-array" "^0.11.10"
+ "@humanwhocodes/module-importer" "^1.0.1"
+ "@nodelib/fs.walk" "^1.2.8"
ajv "^6.10.0"
chalk "^4.0.0"
cross-spawn "^7.0.2"
debug "^4.3.2"
doctrine "^3.0.0"
escape-string-regexp "^4.0.0"
- eslint-scope "^7.1.1"
- eslint-utils "^3.0.0"
- eslint-visitor-keys "^3.3.0"
- espree "^9.3.2"
- esquery "^1.4.0"
+ eslint-scope "^7.2.0"
+ eslint-visitor-keys "^3.4.1"
+ espree "^9.6.0"
+ esquery "^1.4.2"
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 "^6.0.1"
- globals "^13.15.0"
+ find-up "^5.0.0"
+ glob-parent "^6.0.2"
+ globals "^13.19.0"
+ graphemer "^1.4.0"
ignore "^5.2.0"
import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
+ is-path-inside "^3.0.3"
js-yaml "^4.1.0"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1"
lodash.merge "^4.6.2"
minimatch "^3.1.2"
natural-compare "^1.4.0"
- optionator "^0.9.1"
- regexpp "^3.2.0"
+ optionator "^0.9.3"
strip-ansi "^6.0.1"
strip-json-comments "^3.1.0"
text-table "^0.2.0"
- v8-compile-cache "^2.0.3"
-espree@^9.3.2:
- version "9.3.2"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596"
- integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==
+espree@^9.6.0:
+ version "9.6.0"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.0.tgz#80869754b1c6560f32e3b6929194a3fe07c5b82f"
+ integrity sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==
dependencies:
- acorn "^8.7.1"
+ acorn "^8.9.0"
acorn-jsx "^5.3.2"
- eslint-visitor-keys "^3.3.0"
+ eslint-visitor-keys "^3.4.1"
esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esquery@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
- integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
+esquery@^1.4.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+ integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
dependencies:
estraverse "^5.1.0"
-esrecurse@^4.1.0, esrecurse@^4.3.0:
+esrecurse@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
@@ -7002,34 +7666,16 @@ eventemitter3@^4.0.0:
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
-events@^3.0.0:
+events@^3.2.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
-eventsource@^1.0.7:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.1.2.tgz#bc75ae1c60209e7cb1541231980460343eaea7c2"
- integrity sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==
-
-evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
- integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
- dependencies:
- md5.js "^1.3.4"
- safe-buffer "^5.1.1"
-
exec-async@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/exec-async/-/exec-async-2.2.0.tgz#c7c5ad2eef3478d38390c6dd3acfe8af0efc8301"
integrity sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==
-exec-sh@^0.3.2:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc"
- integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==
-
execa@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
@@ -7058,7 +7704,7 @@ execa@^4.0.0:
signal-exit "^3.0.2"
strip-final-newline "^2.0.0"
-execa@^5.1.1:
+execa@^5.0.0:
version "5.1.1"
resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
@@ -7073,326 +7719,353 @@ execa@^5.1.1:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
+execa@^7.0.0:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-7.1.1.tgz#3eb3c83d239488e7b409d48e8813b76bb55c9c43"
+ integrity sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==
+ dependencies:
+ cross-spawn "^7.0.3"
+ get-stream "^6.0.1"
+ human-signals "^4.3.0"
+ is-stream "^3.0.0"
+ merge-stream "^2.0.0"
+ npm-run-path "^5.1.0"
+ onetime "^6.0.0"
+ signal-exit "^3.0.7"
+ strip-final-newline "^3.0.0"
+
exit@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
-expand-brackets@^2.1.4:
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
- integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
+expect@^29.0.0:
+ version "29.2.2"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-29.2.2.tgz#ba2dd0d7e818727710324a6e7f13dd0e6d086106"
+ integrity sha512-hE09QerxZ5wXiOhqkXy5d2G9ar+EqOyifnCXCpMNu+vZ6DG9TJ6CO2c2kPDSLqERTTWrO7OZj8EkYHQqSd78Yw==
dependencies:
- 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"
+ "@jest/expect-utils" "^29.2.2"
+ jest-get-type "^29.2.0"
+ jest-matcher-utils "^29.2.2"
+ jest-message-util "^29.2.1"
+ jest-util "^29.2.1"
-expect@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/expect/-/expect-26.6.2.tgz#c6b996bf26bf3fe18b67b2d0f51fc981ba934417"
- integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==
+expect@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-29.6.1.tgz#64dd1c8f75e2c0b209418f2b8d36a07921adfdf1"
+ integrity sha512-XEdDLonERCU1n9uR56/Stx9OqojaLAQtZf9PrCHH9Hl8YXiEIka3H4NXJ3NOIBmQJTg7+j7buh34PMHfJujc8g==
dependencies:
- "@jest/types" "^26.6.2"
- ansi-styles "^4.0.0"
- jest-get-type "^26.3.0"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-regex-util "^26.0.0"
+ "@jest/expect-utils" "^29.6.1"
+ "@types/node" "*"
+ jest-get-type "^29.4.3"
+ jest-matcher-utils "^29.6.1"
+ jest-message-util "^29.6.1"
+ jest-util "^29.6.1"
-expo-app-loading@~2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/expo-app-loading/-/expo-app-loading-2.1.0.tgz#536d89ae70bdd23f1ad48897333edc7f60d91a7d"
- integrity sha512-txHH76rEKveKP5KK8EvlqxzGcSpuERe4bR+D7JO5tP2QYzuIXjg7v62ktvbJq+M8DiCgp7AjCqBDHnkfGkyNxA==
+expo-app-loading@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/expo-app-loading/-/expo-app-loading-2.1.1.tgz#5abde2e219ed4a6dcf8a9858a7317792fd9a18d2"
+ integrity sha512-b3VNkPuFaI9J847HSpjI4uiuyE4+IWyAIPT9uzbkS7QFknL99DMoihtgzeWzKaJKSAmbYc3ph2Vl9skJAkVYUg==
dependencies:
- expo-splash-screen "~0.16.0"
+ expo-splash-screen "~0.17.0"
-expo-application@~4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-4.2.2.tgz#c9500819723c59eaee5ca9832bf17d1fd4139f74"
- integrity sha512-bFEaFRUdV6aK2iBd+HzkHNPYsyj88EAhaQW5leznmO0qQMJxpAQ3eoUXMey1hfDBh1qgkkHgSyCZ9BIgMAGJ1g==
+expo-application@~5.3.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-5.3.0.tgz#0811f2de69a3a7f521762fd7f8a0a4563276dada"
+ integrity sha512-XLkaELwmiXW6JjFVkwuiFQaGZoNKAxNAcSJkFdz8s4rCljEwehylbzoPk37QHw3cxqb4v0/2EICtg4C4kpEVCA==
-expo-asset@~8.6.1:
- version "8.6.1"
- resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-8.6.1.tgz#86355b3e231e8aa6cf68a456ce9746dff1478b48"
- integrity sha512-urbUp1YtwH2J0Qc3inGQJdqTjWKML77SeMNgff+iR9MUE8gDkFqSCDjrBi7i5Oj5DDtq43mmtDg8G8ei6Vchcg==
+expo-asset@~8.10.1:
+ version "8.10.1"
+ resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-8.10.1.tgz#a7e8cf1c555ab8f844599822cb084fee95a93644"
+ integrity sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==
dependencies:
blueimp-md5 "^2.10.0"
- expo-constants "~13.2.2"
- expo-file-system "~14.1.0"
+ expo-constants "~14.4.2"
+ expo-file-system "~15.4.0"
invariant "^2.2.4"
md5-file "^3.2.3"
path-browserify "^1.0.0"
url-parse "^1.5.9"
-expo-constants@~13.2.0, expo-constants@~13.2.2, expo-constants@~13.2.3:
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-13.2.3.tgz#526711851d8ebec1f0b1f06d9b91271b119e4f33"
- integrity sha512-2Rrp7GtSTeW7gNz3BsZ+AWMBbBaBnymELuo1ecTQ6fga8F5IRXgj1TW5yFpTmqOTtVfCiQfS0M1QO+JZEatPCQ==
+expo-clipboard@~4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/expo-clipboard/-/expo-clipboard-4.3.0.tgz#19321dabeab3514c6ab6e7e2e39ac51bab47acc6"
+ integrity sha512-FsPv7FFdVCPGT1P9mnOhB7o6wPMI05Bpuchj58ACGEx8mYfA90CLL/sdQFSS7VmQOxdgUh+De3GDJgHq3JvckA==
+
+expo-constants@~14.4.2:
+ version "14.4.2"
+ resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-14.4.2.tgz#cac5e8b524069545739b8d8595ce96cc5be6578c"
+ integrity sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==
dependencies:
- "@expo/config" "~7.0.0"
+ "@expo/config" "~8.1.0"
uuid "^3.3.2"
-expo-crypto@~11.0.0:
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/expo-crypto/-/expo-crypto-11.0.0.tgz#e434ebede6bae20f5a5cf7d7ea99d41e7b67690e"
- integrity sha512-EH1Ikcy/HxfLJpo+zVRic4Igl6AovZEksAheKfeM2u+2TfL3FEBiQo+cGkuIa8NQ9ui3xYqQcyMk+IIZ6AO0Xg==
+expo-crypto@~12.4.1:
+ version "12.4.1"
+ resolved "https://registry.yarnpkg.com/expo-crypto/-/expo-crypto-12.4.1.tgz#f3ee7156fd8167c3c3304b6e21dcfb0dc8a44bba"
+ integrity sha512-/en03oPNAX6gP0bKpwA1EyLBnGG9uv0+Q7uvGYyOXaQQEvj31a+8cEvNPkv75x6GuK1hcaBfO25RtX9AGOMwVA==
+ dependencies:
+ base64-js "^1.3.0"
-expo-dev-client@~1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-1.2.1.tgz#54eb6160d1b512f38e9832f41a10c5223aa81269"
- integrity sha512-LKFfReJbUDF3r3cSjt4PLmykKsfMonT1kdCc1Cepz82/btMzL/RASnRYjk7eGd+fcq06lethEQ+w2MLo/70hDQ==
+expo-dev-client@~2.4.5:
+ version "2.4.5"
+ resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-2.4.5.tgz#7b55666ffccfc886d7d268f50d32ea3b49afc899"
+ integrity sha512-lcrOLJF8rlesNXnnuJJ2Dg4cj0Yuuo5KlG+ZLZ+lERIi5Grmm9hx3CoGVnj5A9FZB20nbUeoNPdkuCul3B/skw==
dependencies:
- "@expo/config-plugins" "~5.0.0"
- expo-dev-launcher "1.2.1"
- expo-dev-menu "1.2.1"
- expo-dev-menu-interface "0.7.2"
- expo-manifests "~0.3.0"
- expo-updates-interface "~0.7.0"
+ expo-dev-launcher "2.4.7"
+ expo-dev-menu "3.1.7"
+ expo-dev-menu-interface "1.3.0"
+ expo-manifests "~0.7.0"
+ expo-updates-interface "~0.10.0"
-expo-dev-launcher@1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-1.2.1.tgz#4270d1b67a6b6e9d7f0896eecca899175787664a"
- integrity sha512-q1BBnC69mTlbpHpiaezoHJ5rQgkvdvl6NH9rNSrg0tUfNRMNLDhjHwQWSpDGGIww7rVJ354ysjQp8E35OKOEJw==
+expo-dev-launcher@2.4.7:
+ version "2.4.7"
+ resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-2.4.7.tgz#cd0347b64ea2966be0c21a28881506ca9391a418"
+ integrity sha512-kgIaCfbEaDcjNg2nzUcCus6LfinLy3RWAwT/BMFIS296tbubjTlq4iwO29q9tar2wlCywhNYN9FMBy61VxtiQQ==
dependencies:
- "@expo/config-plugins" "~5.0.0"
- expo-dev-menu "1.2.1"
+ expo-dev-menu "3.1.7"
resolve-from "^5.0.0"
- semver "^7.3.5"
+ semver "^7.5.3"
-expo-dev-menu-interface@0.7.2:
- version "0.7.2"
- resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-0.7.2.tgz#2198d014bcbe11335225cc3f100226195b441bc4"
- integrity sha512-Ym0IFsgBj9bdInjRcxv6xfczdTCKfPKUAsLZ1sD5twpOs7oBViMnTC0+KTGkkYHG4EapWbu9yApPmbV3N10Zcg==
+expo-dev-menu-interface@1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.3.0.tgz#51b6be8c6e0ce73e414ac7a545998dfad0dfdb80"
+ integrity sha512-WtRP7trQ2lizJJTTFXUSGGn1deIeHaYej0sUynvu/uC69VrSP4EeSnYOxbmEO29kuT/MsQBMGu0P/AkMQOqCOg==
-expo-dev-menu@1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-1.2.1.tgz#8325e5787a005663926e3b95d0f59e0fd6fa77b2"
- integrity sha512-QurTAJitgIIXQKsZCEW+aY4y3RZFFR0ygP17p1odeoiCwsxKnoIkksKGOL46sdcLzONiVGZBu6z58Mg2JymfIQ==
+expo-dev-menu@3.1.7:
+ version "3.1.7"
+ resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-3.1.7.tgz#fd85624413f85802f85a60c1b9241fee04d1a5c7"
+ integrity sha512-4tJmiepdHyhv3pn5Rla06tv1Auiom9hPkw92sO+kRTecbW4zH9iZFdxiFQIcjEoBtymx3WHPO6XJJrWC6dgdow==
dependencies:
- "@expo/config-plugins" "~5.0.0"
- expo-dev-menu-interface "0.7.2"
- semver "^7.3.5"
+ expo-dev-menu-interface "1.3.0"
+ semver "^7.5.3"
-expo-device@~4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/expo-device/-/expo-device-4.3.0.tgz#a25257febe8dd18378f556ef61b5ff73ee687a6b"
- integrity sha512-NRmsEuZVxx0EvD/dHZdng87wDgN9msfyjqp5DbNIyzvMGhxOrGtE/iEivvMyOdQpVotHGK8rBRbFKJzOtYB5lg==
+expo-device@~5.4.0:
+ version "5.4.0"
+ resolved "https://registry.yarnpkg.com/expo-device/-/expo-device-5.4.0.tgz#4dc4db4b2265d1f5c9d7c2be6548c375882be437"
+ integrity sha512-TQxSVPrC6njCbzZ9Cqpc1lGLIjPmO1zBIbqW7CTqBPD1dOIMrgQvt7lZZhkHh3pWzoZznH283sSYqCvy3XcURw==
dependencies:
- ua-parser-js "^0.7.19"
+ ua-parser-js "^0.7.33"
-expo-eas-client@~0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/expo-eas-client/-/expo-eas-client-0.3.0.tgz#21383fc95a52e71e13c7276456db20388fefcf95"
- integrity sha512-dBD00lJ629ayh5abbmgn6I1Z5NOaWM1iea2ODLd/EF1ZcS1P3yiPm6blpvL/tD+uewL8gxxmla/Ac+SiDdYAYA==
-
-expo-error-recovery@~3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/expo-error-recovery/-/expo-error-recovery-3.2.0.tgz#3a4543382904a5e70829cb41d7fc0f022c2bef6e"
- integrity sha512-XZ630ks5HNxa9oc2Ya1hEn1ez031Cy4VnyxerPC2o9fKNKSrD/64cRqGF9NkGM3X2uf8+PCB9adxVflAIXBf6w==
+expo-eas-client@~0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/expo-eas-client/-/expo-eas-client-0.6.0.tgz#b722dde0de1b8b56701b282a5fdf28d3d3e79ec4"
+ integrity sha512-FSPy0ThcJBvzEzOZVhpOrYyHgQ8U1jJ4v7u7tr1x0KOVRqyf25APEQZFxxRPn3zAYW0tQ+uDTCbrwNymFqhQfw==
-expo-file-system@~14.1.0:
- version "14.1.0"
- resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-14.1.0.tgz#4fa410873ef12ac8bec873593f7489f4305a14b8"
- integrity sha512-lJcPGQ8yKXVknVkD5TmcJnR/TpQbEL0JP8hknLejfq3FIqPqI/LBFn31YiP37grxW8lITz1al8pq5T6CSUjAzQ==
+expo-file-system@~15.4.0, expo-file-system@~15.4.2:
+ version "15.4.2"
+ resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-15.4.2.tgz#f18e9d84f06a50eb4084b4a34ca7ca9c5a42f92e"
+ integrity sha512-WFaEWuFEuUpETiq85YlhKYJgedccWTjtCMnYGAgyNfCfvnIgfMCVH7dWudGuxhfAcTZqh36OcqtSckbtbhOtyg==
dependencies:
- "@expo/config-plugins" "~5.0.0"
uuid "^3.4.0"
-expo-font@~10.2.0:
- version "10.2.0"
- resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-10.2.0.tgz#881f767e13b2b534a4d3ffaedcf675ce6b63439d"
- integrity sha512-2V4EcpmhNoppaLn+lPprZVS+3bmV9hxLPKttKh2u8ghjH/oX9bv3u4JVo77SYh0EfrWO4toqVyXn8pXH8GpbIg==
+expo-font@~11.4.0:
+ version "11.4.0"
+ resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-11.4.0.tgz#e2d31c0bb76ba3c37c2d84703a49aeafc3afef28"
+ integrity sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==
dependencies:
fontfaceobserver "^2.1.0"
-expo-haptics@~11.3.0:
- version "11.3.0"
- resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-11.3.0.tgz#74283bd212a86f16ff2d6b0125e2a9604c940523"
- integrity sha512-mQYSZsJ7LcdM2b8JecrV2qEw9ymNzGleS/+bpufdHZ+n5tCnWZXiMvZFFczaExHfaeGY3nGQvH1RjEOFIXSfig==
+expo-haptics@~12.4.0:
+ version "12.4.0"
+ resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-12.4.0.tgz#99ad9d6a8eafb219aee022ec1412a998e1c90d71"
+ integrity sha512-eELhZOO64oJa6AtEUxosatjSENE/tQgF2rVJxDsvRdx8Vgd3uFC+FRoM3nbMVJkxDgAaP3EKOPT1zVM41sNurw==
-expo-json-utils@~0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.3.0.tgz#0c4a0195ee2bbde02cbb5f4d384d1cb63bea7493"
- integrity sha512-ceo0pWFJqRAsNjZWX3rVDhy+NDzmrBNFOdvW+HE4EHqlt+OEUu9INIYKO8fU+g3ifI0VcKqHfvvj5wKsSpvPBw==
+expo-json-utils@~0.7.0:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.7.1.tgz#efe315c982113204be46419cbc26d4d9a2af145f"
+ integrity sha512-L0lyH8diXQtV0q5BLbFlcoxTqPF5im79xDHPhybB0j36xYdm65hjwRJ4yMrPIN5lR18hj48FUZeONiDHRyEvIg==
-expo-keep-awake@~10.2.0:
- version "10.2.0"
- resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-10.2.0.tgz#46f04740bccd321732bbbed93491e2076d5dbbd7"
- integrity sha512-kIRtO4Hmrvxh4E45IPWG/NiUZsuRe1AQwBT09pq+kx8nm6tUS4B9TeL6+1NFy+qVBLbGKDqoQD5Ez7XYTFtBeQ==
+expo-keep-awake@~12.3.0:
+ version "12.3.0"
+ resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-12.3.0.tgz#c42449ae19c993274ddc43aafa618792b6aec408"
+ integrity sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==
-expo-linear-gradient@~11.4.0:
- version "11.4.0"
- resolved "https://registry.yarnpkg.com/expo-linear-gradient/-/expo-linear-gradient-11.4.0.tgz#20ecad4d11e66e35b31600e5389ec9c4067f7312"
- integrity sha512-qtIfsLs7NOpfxYrFSJL5uLtNHIkBHQFuQ3f7++XpoJTSm4eQVFxjjkCGWiLIrkpVjKzmgp3DLuIVsadsGX21lA==
+expo-linear-gradient@~12.3.0:
+ version "12.3.0"
+ resolved "https://registry.yarnpkg.com/expo-linear-gradient/-/expo-linear-gradient-12.3.0.tgz#7abd8fedbf0138c86805aebbdfbbf5e5fa865f19"
+ integrity sha512-f9e+Oxe5z7fNQarTBZXilMyswlkbYWQHONVfq8MqmiEnW3h9XsxxmVJLG8uVQSQPUsbW+x1UUT/tnU6mkMWeLg==
-expo-linking@~3.2.2:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/expo-linking/-/expo-linking-3.2.2.tgz#88272cc6d4aab9804d7a1f6c2521cae00b1477a2"
- integrity sha512-2OY7WAyZXuc8zdTGm2rLu5ESJaFL2TYmPHsJuDJcfIJFaw+nS5vIVk5DGPlk+zCNC3uoqT02t7a5PZVp2bvqtQ==
+expo-linking@~5.0.2:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/expo-linking/-/expo-linking-5.0.2.tgz#273c9dfec0c5542a13638bd422ef9acbf4638bc5"
+ integrity sha512-SPQus0+tYGx9c69Uw4wmdo3rkKX8vRT1vyJz/mvkpSlZN986s0NmP/V0M5vDv5Zv2qZzVdqJyuITFe0Pg5aI+A==
dependencies:
- "@types/qs" "^6.5.3"
- expo-constants "~13.2.0"
+ "@types/qs" "^6.9.7"
+ expo-constants "~14.4.2"
invariant "^2.2.4"
- qs "^6.9.1"
+ qs "^6.11.0"
url-parse "^1.5.9"
-expo-local-authentication@~12.3.0:
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/expo-local-authentication/-/expo-local-authentication-12.3.0.tgz#eb44fd6e58eca55cb3240ebdf54f603f7019b2d2"
- integrity sha512-7rL2La2VneAXANTNtTV3kihbq+EYv0uRLL/8aZ/A+jPg2mHwMuwKHVaCLHuq1pR+MAV47JbiHeEh+Mx/t534dA==
+expo-local-authentication@~13.4.1:
+ version "13.4.1"
+ resolved "https://registry.yarnpkg.com/expo-local-authentication/-/expo-local-authentication-13.4.1.tgz#908516d395530f6895d7980009e4c85cdcff5327"
+ integrity sha512-FWTUkMNo9aDT3cg02SWAcSFjTiDu20izhCn5CGwdtFNCBpPQUD0BJ/czhjrIFE70teMzE5wZUdbJuSKYonUaWA==
dependencies:
- "@expo/config-plugins" "~5.0.0"
invariant "^2.2.4"
-expo-localization@~13.1.0:
- version "13.1.0"
- resolved "https://registry.yarnpkg.com/expo-localization/-/expo-localization-13.1.0.tgz#a69eac5dfee3f1e7b3a443bdd61fd38de5e4e28b"
- integrity sha512-UFQShIiygfAeRoK3vowYzulWx0a5sM/BtkjVppPII8ZUUDKu2MkGS0uuwGkPyp2zFx3StJ2RxNFISU8cLPSk9w==
+expo-localization@~14.3.0:
+ version "14.3.0"
+ resolved "https://registry.yarnpkg.com/expo-localization/-/expo-localization-14.3.0.tgz#a7614114079658000f46c7e3029703c8508e0678"
+ integrity sha512-TML3TeVtwpfuSNwbhBspC9XsGJaa0TWJNh+UaR/35YP9fQiaJfVWUMSrAq84ba6rY1Pm3kti07LV8UUa505oqg==
dependencies:
rtl-detect "^1.0.2"
-expo-manifests@~0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.3.0.tgz#724e85a4e726cb1ef775f9846c9ecb8d243a17d7"
- integrity sha512-HegANp+KpZlMX0T2Zb8X7mAVkCThFDq1wjLIjkrSLHhKLczYI2xa/Z5Nk0Tm7qPdGT8NTInCDoOL/nUMtKdNyQ==
+expo-manifests@~0.7.0:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.7.1.tgz#2033e974744699a3cfaf1c1cee7e51dfdf2c8fae"
+ integrity sha512-9+pTMWkQx3hPEmc7D3MzWM+fCqN4DnPxStfmO7daL562yw+VCiJ4gfmkioOW/optqj4AE9jWoEOVv/iXOZbPWw==
dependencies:
- expo-json-utils "~0.3.0"
+ expo-json-utils "~0.7.0"
-expo-modules-autolinking@0.10.1:
- version "0.10.1"
- resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-0.10.1.tgz#9d7e004cbfee7cb12245cc2686180c2d14ed9095"
- integrity sha512-SxVjAO7XqRrwpJMxgBj2SCC1pGDSRKf1cirCPRywJUPFzN3PgZTfAjDMBZFGJGrmGreumFxZ8KmQeYyR7t3DoA==
+expo-modules-autolinking@1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-1.5.0.tgz#64d6ea4fd77ba2d578dd5c98af0a7630e30f2be3"
+ integrity sha512-i9zll5xNYh0/sjaa6hpZlTHodKEu2tMEFsJJYsfBMTt8G9J8gGhalOydrX/Ql1E8bQ4GxnLAqrM7duR0Tj2VTQ==
dependencies:
+ "@expo/config" "~8.1.0"
chalk "^4.1.0"
commander "^7.2.0"
fast-glob "^3.2.5"
find-up "^5.0.0"
fs-extra "^9.1.0"
-expo-modules-core@0.11.3:
- version "0.11.3"
- resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-0.11.3.tgz#3f6d4831f7f97bb8bdda54c84edc06585c3ecaca"
- integrity sha512-1it+0fxugTWkof3E5vY23jZrl+ULy8d7OyUKL3+nTxTq98wGJdg9VellT18WvvS2YfKqLzYl31fkQsxFz5rRLA==
+expo-modules-core@1.5.6:
+ version "1.5.6"
+ resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-1.5.6.tgz#32476b7f3835b65535281a56f2321cf291568f51"
+ integrity sha512-3OsWO8p0BSX7qgkYPnl+B/fz5rCJt1rU3nsa1fi1p3Oy44bvvdb2FVejTBIb87I41i0Rcj7vn2uG1KWuK1TA1Q==
dependencies:
compare-versions "^3.4.0"
invariant "^2.2.4"
-expo-network@~4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/expo-network/-/expo-network-4.3.0.tgz#4bad33aed3bdde835062926c488843aab6a559b3"
- integrity sha512-Rcw6jUXajbS1esNVbk9jRMQfOTouoxegsj7HkZyKe1oTS12+VuhbiKmR31nBEhpfqE4WeQ21LBvKmKvZwl130Q==
+expo-network@~5.4.0:
+ version "5.4.0"
+ resolved "https://registry.yarnpkg.com/expo-network/-/expo-network-5.4.0.tgz#4eddde3e54a80b46c7cd2e4ce22a98e61aa97468"
+ integrity sha512-6Hdm6CRmt7KpEYSTp9Q0fH1V63Y3tLlgkZfJBqJHksxEP/ooOjBLsK8M09q+FiWsStByI/PKj6NO86+uymz5ig==
-expo-pwa@0.0.122:
- version "0.0.122"
- resolved "https://registry.yarnpkg.com/expo-pwa/-/expo-pwa-0.0.122.tgz#1ebe55694908a1f6d7b6f03d251464a4531cafcc"
- integrity sha512-E2DVR/1SWFXqLLT9XNKnSVoHbZLGhpkx7PigaqfcI/t1hF+A6zAopwDfKmpFGymuSVqlwEJMTr/PYRdhUY55/g==
+expo-notifications@~0.20.1:
+ version "0.20.1"
+ resolved "https://registry.yarnpkg.com/expo-notifications/-/expo-notifications-0.20.1.tgz#55479e3bbde31ab5ccf6f6fd3ed288c6c91101d2"
+ integrity sha512-Y4Y8IWYj/cSWCP/P167z3GRg//5ZlsznfMXi4ABdWOOpF0RGNpd5N17TxioNivtt7tMhZ/o1vmzFxulhy0nBWg==
dependencies:
- "@expo/config" "6.0.24"
- "@expo/image-utils" "0.3.22"
+ "@expo/image-utils" "^0.3.18"
+ "@ide/backoff" "^1.0.0"
+ abort-controller "^3.0.0"
+ assert "^2.0.0"
+ badgin "^1.1.5"
+ expo-application "~5.3.0"
+ expo-constants "~14.4.2"
+ fs-extra "^9.1.0"
+ uuid "^3.4.0"
+
+expo-pwa@0.0.126:
+ version "0.0.126"
+ resolved "https://registry.yarnpkg.com/expo-pwa/-/expo-pwa-0.0.126.tgz#2d554a4a671eb25a3560eb99d46de65634de52dd"
+ integrity sha512-9qb6aIY0awez4FTyIiNhqyekb6sKnbvODOFCDPg23PqpkvdhuzzDRtP/Avgippt8kqRAgPpFXmIp2LaAyH1/aw==
+ dependencies:
+ "@expo/image-utils" "0.3.23"
chalk "^4.0.0"
commander "2.20.0"
update-check "1.5.3"
-expo-screen-orientation@~4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/expo-screen-orientation/-/expo-screen-orientation-4.3.0.tgz#8504e10ae978c44c31fe891d1c0e058dadae4eba"
- integrity sha512-jMLjkhft5aJSkdoKjb1HiLlf73gpsfI54L//uPvPuuwsPq3FMHwAnkDesY8XIZdZqw+exrK/SMbDAEryMJ45kg==
- dependencies:
- "@expo/config-plugins" "~5.0.0"
+expo-screen-orientation@~6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/expo-screen-orientation/-/expo-screen-orientation-6.0.2.tgz#c5632b46119c76db76b037409625c191fc266680"
+ integrity sha512-roqUjygbEFZUlnPinm/7psY+M9Z/sAqNOrW8HmudRgAouUwKygbbJ43D9bXyXMDyQFneIqlzq1vzXLAEdpfeIw==
-expo-secure-store@~11.3.0:
- version "11.3.0"
- resolved "https://registry.yarnpkg.com/expo-secure-store/-/expo-secure-store-11.3.0.tgz#7f2f05f6aa6669f2d31e034561aa6b3d530a71a0"
- integrity sha512-k8dw1v7MCHIv7MnAIBXqyqplJo0I5MmRjZXO7bsVPb/BqWvvfBo/JAFdM6K60X6szh+13TWgxwx6GxAkCJVUnQ==
+expo-secure-store@~12.3.1:
+ version "12.3.1"
+ resolved "https://registry.yarnpkg.com/expo-secure-store/-/expo-secure-store-12.3.1.tgz#7e5ba94f6e7374f132108c9feb5cc811568f3db6"
+ integrity sha512-XLIgWDiIuiR0c+AA4NCWWibAMHCZUyRcy+lQBU49U6rvG+xmd3YrBJfQjfqAPyLroEqnLPGTWUX57GyRsfDOQw==
-expo-splash-screen@~0.16.0, expo-splash-screen@~0.16.1:
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.16.1.tgz#d1e34a37d1e050831eea4988fbf7e75c166b4dc3"
- integrity sha512-R3EUV5OM4RO+tb5XHgx9TNjaKCpHULo2CrIPbfZGnIdef3MeQucg4dNGw+Kiub9oKGPeExQfwtWqW+VXZqa0vg==
+expo-splash-screen@~0.17.0:
+ version "0.17.5"
+ resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.17.5.tgz#a18dc59c1cc28ebbedbf0a7529a419d18ab0b311"
+ integrity sha512-ejSO78hwHXz8T9u8kh8t4r6CR4h70iBvA65gX8GK+dYxZl6/IANPbIb2VnUpND9vqfW+JnkDw+ZFst+gDnkpcQ==
dependencies:
"@expo/configure-splash-screen" "^0.6.0"
- "@expo/prebuild-config" "~5.0.0"
+ "@expo/prebuild-config" "5.0.7"
-expo-status-bar@~1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-1.4.0.tgz#c0317de2c53878340f4b4f00ff7e4ba14399a7fb"
- integrity sha512-vh98g8qMIjig/2XTBsoAWS6Vo2dIIwDWjB3/GiuZ9Lazpxc9GO/APfJ4dar7MibzIDUKIrjotrcL6rLdPH13Ew==
+expo-splash-screen@~0.20.4:
+ version "0.20.4"
+ resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.20.4.tgz#abe77d7a9612627f7048d885cfc5a696e3d3ee3d"
+ integrity sha512-JMfVqkb3Fbt9mdrWfSkTxaIkjd2RMJmQ19/JN+4Gk2MVEP4L1yzTQLomneH5+z/N5x48Tk3ZN+bFhtUXIlfjzg==
+ dependencies:
+ "@expo/prebuild-config" "6.2.6"
-expo-structured-headers@~2.2.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/expo-structured-headers/-/expo-structured-headers-2.2.1.tgz#739f969101de6bead921eee59e5899399ad67715"
- integrity sha512-nY6GuvoS/U5XdhfBNmvXGRoGzIXywXpSZs2wdiP+FbS79P9UWyEqzgARrBTF+6pQxUVMs6/vdffxRpwhjwYPug==
+expo-status-bar@~1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-1.6.0.tgz#e79ffdb9a84d2e0ec9a0dc7392d9ab364fefa9cf"
+ integrity sha512-e//Oi2WPdomMlMDD3skE4+1ZarKCJ/suvcB4Jo/nO427niKug5oppcPNYO+csR6y3ZglGuypS+3pp/hJ+Xp6fQ==
-expo-updates-interface@~0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-0.7.0.tgz#f4f03b61dbdd949cac9fb44e250e1162ba177650"
- integrity sha512-saThnbrYDSjKxfMFFguAvh5o5KGabvAOHItkJRwq2L3c0T/3q26Q0kM83880h/+TTtAVsl1+Vhny9d+ImD3yvQ==
-
-expo-updates@~0.14.4:
- version "0.14.5"
- resolved "https://registry.yarnpkg.com/expo-updates/-/expo-updates-0.14.5.tgz#3de2764b143c93eee636cab538c081a7867aa086"
- integrity sha512-m6IOiETTwsJhL93meHG/Y3FWuaRQIbn9LJ5wpWurQ7RniqIV9Ae61SRmJJyYtxk1qLy/dKJ/jHyF1xp8PKIlnQ==
- dependencies:
- "@expo/code-signing-certificates" "0.0.2"
- "@expo/config" "~7.0.1"
- "@expo/config-plugins" "~5.0.1"
- "@expo/metro-config" "~0.3.19"
+expo-structured-headers@~3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/expo-structured-headers/-/expo-structured-headers-3.3.0.tgz#9f0b041a1d243a22a4a23d9eb19f02ace3c5258c"
+ integrity sha512-t+h5Zqaukd3Tn97LaWPpibVsmiC/TFP8F+8sAUliwCSMzgcb5TATRs2NcAB+JcIr8EP3JJDyYXJrZle1cjs4mQ==
+
+expo-updates-interface@~0.10.0:
+ version "0.10.1"
+ resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-0.10.1.tgz#cab075641cd381718ccd9264bf133dc393430a44"
+ integrity sha512-I6JMR7EgjXwckrydDmrkBEX/iw750dcqpzQVsjznYWfi0HTEOxajLHB90fBFqQkUV5i5s4Fd3hYQ1Cn0oMzUbA==
+
+expo-updates@~0.18.9:
+ version "0.18.9"
+ resolved "https://registry.yarnpkg.com/expo-updates/-/expo-updates-0.18.9.tgz#1c9f092bbb71218c32c56e78c53e758c91c1d886"
+ integrity sha512-TZ9Pqz2V91RGEvImmiquOii161HCHcUe+kuHP0ULBrroK9q+988t9/RWfwBFKxSpLvy78S/GnobChkWN+ymVIQ==
+ dependencies:
+ "@expo/code-signing-certificates" "0.0.5"
+ "@expo/config" "~8.1.0"
+ "@expo/config-plugins" "~7.2.0"
arg "4.1.0"
- expo-eas-client "~0.3.0"
- expo-manifests "~0.3.0"
- expo-structured-headers "~2.2.0"
- expo-updates-interface "~0.7.0"
+ expo-eas-client "~0.6.0"
+ expo-manifests "~0.7.0"
+ expo-structured-headers "~3.3.0"
+ expo-updates-interface "~0.10.0"
fbemitter "^3.0.0"
resolve-from "^5.0.0"
- uuid "^3.4.0"
-expo-web-browser@~11.0.0:
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-11.0.0.tgz#5116a99a32f8b98fc47a6aff026b4d608ffe18ec"
- integrity sha512-LKakUgsDIFLCYWh+RrjB8ANzgD6TTpi0fe00Gu5GrGuEs0cQmEynltq2OVPYOXiaNdcaaora7VFqC47A9rDE+A==
+expo-web-browser@~12.3.2:
+ version "12.3.2"
+ resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-12.3.2.tgz#45ac727a5d8462d7faa403ea2fa1db160ed8e4b5"
+ integrity sha512-ohBf+vnRnGzlTleY8EQ2XQU0vRdRwqMJtKkzM9MZRPDOK5QyJYPJjpk6ixGhxdeoUG2Ogj0InvhhgX9NUn4jkg==
dependencies:
compare-urls "^2.0.0"
+ url "^0.11.0"
-expo@^46.0.0:
- version "46.0.2"
- resolved "https://registry.yarnpkg.com/expo/-/expo-46.0.2.tgz#6ee13b28b8d36dd224402575f523b37d8f153101"
- integrity sha512-E7MEzsWnxUAVolFGxBGxI1UazQYPvRx9c+2RlRlr6Kpp4BTsIuRZiYgHywJe9jZVw9csc4C4aL3TYcKg+3lehg==
+expo@^49.0.0:
+ version "49.0.2"
+ resolved "https://registry.yarnpkg.com/expo/-/expo-49.0.2.tgz#4d069999867bcb2c88020ee3471ca625e46a01df"
+ integrity sha512-fpUz1vegrd1lPzS+A+HbkOF5Lt+tIq6vKiSmw6sW89JMBx5rpKTnTnVVvDuMOG1pnXxZlmQtYTrw0C6H9zcTNw==
dependencies:
- "@babel/runtime" "^7.14.0"
- "@expo/cli" "0.2.6"
+ "@babel/runtime" "^7.20.0"
+ "@expo/cli" "0.10.10"
+ "@expo/config" "8.1.2"
+ "@expo/config-plugins" "7.2.5"
"@expo/vector-icons" "^13.0.0"
- babel-preset-expo "~9.2.0"
- cross-spawn "^6.0.5"
- expo-application "~4.2.2"
- expo-asset "~8.6.1"
- expo-constants "~13.2.3"
- expo-file-system "~14.1.0"
- expo-font "~10.2.0"
- expo-keep-awake "~10.2.0"
- expo-modules-autolinking "0.10.1"
- expo-modules-core "0.11.3"
+ babel-preset-expo "~9.5.0"
+ expo-application "~5.3.0"
+ expo-asset "~8.10.1"
+ expo-constants "~14.4.2"
+ expo-file-system "~15.4.2"
+ expo-font "~11.4.0"
+ expo-keep-awake "~12.3.0"
+ expo-modules-autolinking "1.5.0"
+ expo-modules-core "1.5.6"
fbemitter "^3.0.0"
- getenv "^1.0.0"
invariant "^2.2.4"
md5-file "^3.2.3"
node-fetch "^2.6.7"
pretty-format "^26.5.2"
uuid "^3.4.0"
- optionalDependencies:
- expo-error-recovery "~3.2.0"
-express@^4.17.1:
- version "4.18.1"
- resolved "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz#7797de8b9c72c857b9cd0e14a5eea80666267caf"
- integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==
+express@^4.17.3:
+ version "4.18.2"
+ resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59"
+ integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==
dependencies:
accepts "~1.3.8"
array-flatten "1.1.1"
- body-parser "1.20.0"
+ body-parser "1.20.1"
content-disposition "0.5.4"
content-type "~1.0.4"
cookie "0.5.0"
@@ -7411,7 +8084,7 @@ express@^4.17.1:
parseurl "~1.3.3"
path-to-regexp "0.1.7"
proxy-addr "~2.0.7"
- qs "6.10.3"
+ qs "6.11.0"
range-parser "~1.2.1"
safe-buffer "5.2.1"
send "0.18.0"
@@ -7422,35 +8095,6 @@ express@^4.17.1:
utils-merge "1.0.1"
vary "~1.1.2"
-extend-shallow@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
- integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
- dependencies:
- is-extendable "^0.1.0"
-
-extend-shallow@^3.0.0, extend-shallow@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
- integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
- dependencies:
- assign-symbols "^1.0.0"
- is-extendable "^1.0.1"
-
-extglob@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
- integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
- dependencies:
- 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"
-
fake-xml-http-request@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/fake-xml-http-request/-/fake-xml-http-request-2.1.2.tgz#f1786720cae50bbb46273035a0173414f3e85e74"
@@ -7466,7 +8110,7 @@ fast-diff@^1.1.2:
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
-fast-glob@^3.1.1, fast-glob@^3.2.4, fast-glob@^3.2.5, fast-glob@^3.2.9:
+fast-glob@^3.2.5, fast-glob@^3.2.9:
version "3.2.11"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
@@ -7477,7 +8121,18 @@ fast-glob@^3.1.1, fast-glob@^3.2.4, fast-glob@^3.2.5, fast-glob@^3.2.9:
merge2 "^1.3.0"
micromatch "^4.0.4"
-fast-json-stable-stringify@^2.0.0:
+fast-glob@^3.2.7:
+ version "3.2.12"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
+ integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ glob-parent "^5.1.2"
+ merge2 "^1.3.0"
+ micromatch "^4.0.4"
+
+fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
@@ -7487,6 +8142,13 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
+fast-xml-parser@^4.0.12:
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.4.tgz#6e846ede1e56ad9e5ef07d8720809edf0ed07e9b"
+ integrity sha512-fbfMDvgBNIdDJLdLOwacjFAPYt67tr31H9ZhWSm45CDAxvd0I6WTlSOUo7K2P/K5sA5JgMKG64PI3DMcaFdWpQ==
+ dependencies:
+ strnum "^1.0.5"
+
fastq@^1.6.0:
version "1.13.0"
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
@@ -7494,14 +8156,7 @@ fastq@^1.6.0:
dependencies:
reusify "^1.0.4"
-faye-websocket@^0.10.0:
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
- integrity sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==
- dependencies:
- websocket-driver ">=0.5.1"
-
-faye-websocket@~0.11.1:
+faye-websocket@^0.11.3:
version "0.11.4"
resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da"
integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==
@@ -7545,10 +8200,20 @@ fetch-retry@^4.1.1:
resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-4.1.1.tgz#fafe0bb22b54f4d0a9c788dff6dd7f8673ca63f3"
integrity sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==
-figgy-pudding@^3.5.1:
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
- integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
+figures@^1.4:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
+ integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==
+ dependencies:
+ escape-string-regexp "^1.0.5"
+ object-assign "^4.1.0"
+
+figures@^2:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
+ integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==
+ dependencies:
+ escape-string-regexp "^1.0.5"
file-entry-cache@^6.0.1:
version "6.0.1"
@@ -7557,34 +8222,6 @@ file-entry-cache@^6.0.1:
dependencies:
flat-cache "^3.0.4"
-file-loader@~6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.0.0.tgz#97bbfaab7a2460c07bcbd72d3a6922407f67649f"
- integrity sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ==
- dependencies:
- loader-utils "^2.0.0"
- schema-utils "^2.6.5"
-
-file-uri-to-path@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
- integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-
-filesize@6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00"
- integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==
-
-fill-range@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
- integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
- dependencies:
- extend-shallow "^2.0.1"
- is-number "^3.0.0"
- repeat-string "^1.6.1"
- to-regex-range "^2.1.0"
-
fill-range@^7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
@@ -7623,15 +8260,15 @@ finalhandler@1.2.0:
statuses "2.0.1"
unpipe "~1.0.0"
-find-babel-config@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/find-babel-config/-/find-babel-config-1.2.0.tgz#a9b7b317eb5b9860cda9d54740a8c8337a2283a2"
- integrity sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==
+find-babel-config@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/find-babel-config/-/find-babel-config-2.0.0.tgz#a8216f825415a839d0f23f4d18338a1cc966f701"
+ integrity sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==
dependencies:
- json5 "^0.5.1"
- path-exists "^3.0.0"
+ json5 "^2.1.1"
+ path-exists "^4.0.0"
-find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
+find-cache-dir@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
@@ -7649,14 +8286,6 @@ find-cache-dir@^3.3.1:
make-dir "^3.0.2"
pkg-dir "^4.1.0"
-find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
- integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
- dependencies:
- locate-path "^5.0.0"
- path-exists "^4.0.0"
-
find-up@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
@@ -7671,6 +8300,14 @@ find-up@^3.0.0:
dependencies:
locate-path "^3.0.0"
+find-up@^4.0.0, find-up@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+ integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+ dependencies:
+ locate-path "^5.0.0"
+ path-exists "^4.0.0"
+
find-up@^5.0.0, find-up@~5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
@@ -7679,7 +8316,7 @@ find-up@^5.0.0, find-up@~5.0.0:
locate-path "^6.0.0"
path-exists "^4.0.0"
-find-yarn-workspace-root@~2.0.0:
+find-yarn-workspace-root@^2.0.0, find-yarn-workspace-root@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd"
integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==
@@ -7699,53 +8336,44 @@ flatted@^3.1.0:
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
+flow-enums-runtime@^0.0.5:
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/flow-enums-runtime/-/flow-enums-runtime-0.0.5.tgz#95884bfcc82edaf27eef7e1dd09732331cfbafbc"
+ integrity sha512-PSZF9ZuaZD03sT9YaIs0FrGJ7lSUw7rHZIex+73UYVXg46eL/wxN5PaVcPJFudE2cJu5f0fezitV5aBkLHPUOQ==
+
flow-parser@0.*:
version "0.178.1"
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.178.1.tgz#4efe62b3c551c615411bd4a75031c881ff53a7da"
integrity sha512-TOvOfZVOhCsKAVU2E4QgFD5vmmF/JWl4bX77H4aYoq8No1mZdtUV8GW6wv03l8N3dmlRqAC5rZcDQ5e8aLDBOg==
-flow-parser@^0.121.0:
- version "0.121.0"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.121.0.tgz#9f9898eaec91a9f7c323e9e992d81ab5c58e618f"
- integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==
-
-flush-write-stream@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
- integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
- dependencies:
- inherits "^2.0.3"
- readable-stream "^2.3.6"
+flow-parser@^0.206.0:
+ version "0.206.0"
+ resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.206.0.tgz#f4f794f8026535278393308e01ea72f31000bfef"
+ integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==
follow-redirects@^1.0.0:
version "1.15.1"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5"
integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==
+follow-redirects@^1.14.9:
+ version "1.15.2"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
+ integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
+
fontfaceobserver@^2.1.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz#5fb392116e75d5024b7ec8e4f2ce92106d1488c8"
integrity sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==
-for-in@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
- integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
-
-fork-ts-checker-webpack-plugin@4.1.6:
- version "4.1.6"
- resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5"
- integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==
+for-each@^0.3.3:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+ integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
dependencies:
- "@babel/code-frame" "^7.5.5"
- chalk "^2.4.1"
- micromatch "^3.1.10"
- minimatch "^3.0.4"
- semver "^5.6.0"
- tapable "^1.0.0"
- worker-rpc "^0.1.0"
+ is-callable "^1.1.3"
-form-data@^3.0.0, form-data@^3.0.1:
+form-data@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
@@ -7754,18 +8382,20 @@ form-data@^3.0.0, form-data@^3.0.1:
combined-stream "^1.0.8"
mime-types "^2.1.12"
+form-data@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
+ integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.8"
+ mime-types "^2.1.12"
+
forwarded@0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
-fragment-cache@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
- integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
- dependencies:
- map-cache "^0.2.2"
-
framer-motion@^3.9.1:
version "3.10.6"
resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-3.10.6.tgz#67737ef05ed0408860751d81c919770ac831b394"
@@ -7792,6 +8422,20 @@ framer-motion@^6.3.0:
optionalDependencies:
"@emotion/is-prop-valid" "^0.8.2"
+framer-motion@^6.5.1:
+ version "6.5.1"
+ resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-6.5.1.tgz#802448a16a6eb764124bf36d8cbdfa6dd6b931a7"
+ integrity sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==
+ dependencies:
+ "@motionone/dom" "10.12.0"
+ framesync "6.0.1"
+ hey-listen "^1.0.8"
+ popmotion "11.0.3"
+ style-value-types "5.0.0"
+ tslib "^2.1.0"
+ optionalDependencies:
+ "@emotion/is-prop-valid" "^0.8.2"
+
framesync@5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/framesync/-/framesync-5.2.0.tgz#f14480654cd05a6af4c72c9890cad93556841643"
@@ -7814,14 +8458,6 @@ fresh@0.5.2:
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-from2@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
- integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==
- dependencies:
- inherits "^2.0.1"
- readable-stream "^2.0.0"
-
fs-extra@9.0.0:
version "9.0.0"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3"
@@ -7832,24 +8468,6 @@ fs-extra@9.0.0:
jsonfile "^6.0.1"
universalify "^1.0.0"
-fs-extra@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950"
- integrity sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^2.1.0"
- klaw "^1.0.0"
-
-fs-extra@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
- integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^4.0.0"
- universalify "^0.1.0"
-
fs-extra@^8.1.0, fs-extra@~8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
@@ -7876,30 +8494,17 @@ fs-minipass@^2.0.0:
dependencies:
minipass "^3.0.0"
-fs-write-stream-atomic@^1.0.8:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
- integrity sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==
- dependencies:
- graceful-fs "^4.1.2"
- iferr "^0.1.5"
- imurmurhash "^0.1.4"
- readable-stream "1 || 2"
+fs-monkey@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747"
+ integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
-fsevents@^1.2.7:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
- integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
- dependencies:
- bindings "^1.5.0"
- nan "^2.12.1"
-
-fsevents@^2.1.2, fsevents@^2.3.2, fsevents@~2.3.2:
+fsevents@^2.3.2, fsevents@~2.3.2:
version "2.3.2"
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
@@ -7919,22 +8524,17 @@ function.prototype.name@^1.1.5:
es-abstract "^1.19.0"
functions-have-names "^1.2.2"
-functional-red-black-tree@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
- integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
-
functions-have-names@^1.2.2:
version "1.2.3"
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
-gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2:
+gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
-get-caller-file@^2.0.1:
+get-caller-file@^2.0.1, get-caller-file@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
@@ -7948,6 +8548,25 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
has "^1.0.3"
has-symbols "^1.0.1"
+get-intrinsic@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
+ integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
+ dependencies:
+ function-bind "^1.1.1"
+ has "^1.0.3"
+ has-symbols "^1.0.3"
+
+get-intrinsic@^1.2.0:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
+ integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
+ dependencies:
+ function-bind "^1.1.1"
+ has "^1.0.3"
+ has-proto "^1.0.1"
+ has-symbols "^1.0.3"
+
get-package-type@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
@@ -7972,7 +8591,7 @@ get-stream@^5.0.0:
dependencies:
pump "^3.0.0"
-get-stream@^6.0.0:
+get-stream@^6.0.0, get-stream@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
@@ -7985,38 +8604,30 @@ get-symbol-description@^1.0.0:
call-bind "^1.0.2"
get-intrinsic "^1.1.1"
-get-value@^2.0.3, get-value@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
- integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-
getenv@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/getenv/-/getenv-1.0.0.tgz#874f2e7544fbca53c7a4738f37de8605c3fcfc31"
integrity sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==
-glob-parent@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
- integrity sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==
- dependencies:
- is-glob "^3.1.0"
- path-dirname "^1.0.0"
-
-glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.2:
+glob-parent@^5.1.2, glob-parent@~5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
dependencies:
is-glob "^4.0.1"
-glob-parent@^6.0.1:
+glob-parent@^6.0.1, glob-parent@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
dependencies:
is-glob "^4.0.3"
+glob-to-regexp@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+ integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+
glob@7.1.6:
version "7.1.6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
@@ -8040,7 +8651,7 @@ glob@^6.0.1:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
+glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -8052,45 +8663,35 @@ glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
once "^1.3.0"
path-is-absolute "^1.0.0"
-global-modules@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
- integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
- dependencies:
- global-prefix "^3.0.0"
-
-global-prefix@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
- integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
+glob@^8.0.3:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
+ integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
dependencies:
- ini "^1.3.5"
- kind-of "^6.0.2"
- which "^1.3.1"
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^5.0.1"
+ once "^1.3.0"
globals@^11.1.0:
version "11.12.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-globals@^13.15.0:
- version "13.15.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac"
- integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==
+globals@^13.19.0:
+ version "13.19.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
+ integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
dependencies:
type-fest "^0.20.2"
-globby@11.0.1:
- version "11.0.1"
- resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
- integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
+globalthis@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+ integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
dependencies:
- 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"
+ define-properties "^1.1.3"
globby@^11.0.1, globby@^11.1.0:
version "11.1.0"
@@ -8104,6 +8705,18 @@ globby@^11.0.1, globby@^11.1.0:
merge2 "^1.4.1"
slash "^3.0.0"
+globby@^12.0.2:
+ version "12.2.0"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-12.2.0.tgz#2ab8046b4fba4ff6eede835b29f678f90e3d3c22"
+ integrity sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==
+ dependencies:
+ array-union "^3.0.1"
+ dir-glob "^3.0.1"
+ fast-glob "^3.2.7"
+ ignore "^5.1.9"
+ merge2 "^1.4.1"
+ slash "^4.0.0"
+
globby@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
@@ -8115,11 +8728,33 @@ globby@^6.1.0:
pify "^2.0.0"
pinkie-promise "^2.0.0"
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
+gopd@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+ integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+ dependencies:
+ get-intrinsic "^1.1.3"
+
+graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
version "4.2.10"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+graceful-fs@^4.2.6:
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
+
+grapheme-splitter@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
+ integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
+
+graphemer@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
+ integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
+
graphql-tag@^2.10.1:
version "2.12.6"
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1"
@@ -8132,24 +8767,18 @@ graphql@15.8.0:
resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38"
integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==
-growly@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
- integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
-
-gzip-size@5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
- integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
- dependencies:
- duplexer "^0.1.1"
- pify "^4.0.1"
-
handle-thing@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
+has-ansi@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+ integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==
+ dependencies:
+ ansi-regex "^2.0.0"
+
has-bigints@^1.0.1, has-bigints@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
@@ -8172,6 +8801,11 @@ has-property-descriptors@^1.0.0:
dependencies:
get-intrinsic "^1.1.1"
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
@@ -8184,82 +8818,29 @@ has-tostringtag@^1.0.0:
dependencies:
has-symbols "^1.0.2"
-has-value@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
- integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
- dependencies:
- get-value "^2.0.3"
- has-values "^0.1.4"
- isobject "^2.0.0"
-
-has-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
- integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
- dependencies:
- get-value "^2.0.6"
- has-values "^1.0.0"
- isobject "^3.0.0"
-
-has-values@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
- integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
-
-has-values@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
- integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
- dependencies:
- is-number "^3.0.0"
- kind-of "^4.0.0"
-
-has@^1.0.0, has@^1.0.3:
+has@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
dependencies:
function-bind "^1.1.1"
-hash-base@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
- integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
- dependencies:
- inherits "^2.0.4"
- readable-stream "^3.6.0"
- safe-buffer "^5.2.0"
-
-hash.js@^1.0.0, hash.js@^1.0.3:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
- integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
- dependencies:
- inherits "^2.0.3"
- minimalistic-assert "^1.0.1"
-
he@1.2.0, he@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
-hermes-engine@~0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.11.0.tgz#bb224730d230a02a5af02c4e090d1f52d57dd3db"
- integrity sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw==
-
-hermes-estree@0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.6.0.tgz#e866fddae1b80aec65fe2ae450a5f2070ad54033"
- integrity sha512-2YTGzJCkhdmT6VuNprWjXnvTvw/3iPNw804oc7yknvQpNKo+vJGZmtvLLCghOZf0OwzKaNAzeIMp71zQbNl09w==
+hermes-estree@0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.8.0.tgz#530be27243ca49f008381c1f3e8b18fb26bf9ec0"
+ integrity sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==
-hermes-parser@0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.6.0.tgz#00d14e91bca830b3c1457050fa4187400cb96328"
- integrity sha512-Vf58jBZca2+QBLR9h7B7mdg8oFz2g5ILz1iVouZ5DOrOrAfBmPfJjdjDT8jrO0f+iJ4/hSRrQHqHIjSnTaLUDQ==
+hermes-parser@0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.8.0.tgz#116dceaba32e45b16d6aefb5c4c830eaeba2d257"
+ integrity sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==
dependencies:
- hermes-estree "0.6.0"
+ hermes-estree "0.8.0"
hermes-profile-transformer@^0.0.6:
version "0.0.6"
@@ -8268,25 +8849,11 @@ hermes-profile-transformer@^0.0.6:
dependencies:
source-map "^0.7.3"
-hex-color-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
- integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
-
hey-listen@^1.0.8:
version "1.0.8"
resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68"
integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==
-hmac-drbg@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
- integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==
- dependencies:
- hash.js "^1.0.3"
- minimalistic-assert "^1.0.0"
- minimalistic-crypto-utils "^1.0.1"
-
hoist-non-react-statics@^3.3.0:
version "3.3.2"
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
@@ -8294,11 +8861,6 @@ hoist-non-react-statics@^3.3.0:
dependencies:
react-is "^16.7.0"
-hosted-git-info@^2.1.4:
- version "2.8.9"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
- integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-
hosted-git-info@^3.0.2:
version "3.0.8"
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d"
@@ -8316,56 +8878,35 @@ hpack.js@^2.1.6:
readable-stream "^2.0.1"
wbuf "^1.1.0"
-hsl-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
- integrity sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==
-
-hsla-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
- integrity sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==
-
-html-encoding-sniffer@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
- integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
+html-encoding-sniffer@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9"
+ integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==
dependencies:
- whatwg-encoding "^1.0.5"
+ whatwg-encoding "^2.0.0"
-html-entities@^1.3.1:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc"
- integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==
+html-entities@^2.3.2:
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.6.tgz#966391d58e5737c77bca4025e31721b496ab7454"
+ integrity sha512-9o0+dcpIw2/HxkNuYKxSJUF/MMRZQECK4GnF+oQOmJ83yCVHTWgCH5aOXxK5bozNRmM8wtgryjHD3uloPBDEGw==
-html-escaper@^2.0.0, html-escaper@^2.0.2:
+html-escaper@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
-html-loader@~1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-1.1.0.tgz#91915f4d274caa9d46d1c3dc847cd82bfc037dbd"
- integrity sha512-zwLbEgy+i7sgIYTlxI9M7jwkn29IvdsV6f1y7a2aLv/w8l1RigVk0PFijBZLLFsdi2gvL8sf2VJhTjLlfnK8sA==
- dependencies:
- html-minifier-terser "^5.0.5"
- htmlparser2 "^4.1.0"
- loader-utils "^2.0.0"
- parse-srcset "^1.0.2"
- schema-utils "^2.6.5"
-
-html-minifier-terser@^5.0.1, html-minifier-terser@^5.0.5:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
- integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==
+html-minifier-terser@^6.0.2:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab"
+ integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==
dependencies:
- camel-case "^4.1.1"
- clean-css "^4.2.3"
- commander "^4.1.1"
+ camel-case "^4.1.2"
+ clean-css "^5.2.2"
+ commander "^8.3.0"
he "^1.2.0"
- param-case "^3.0.3"
+ param-case "^3.0.4"
relateurl "^0.2.7"
- terser "^4.6.3"
+ terser "^5.10.0"
html-parse-stringify@^3.0.1:
version "3.0.1"
@@ -8374,30 +8915,16 @@ html-parse-stringify@^3.0.1:
dependencies:
void-elements "3.1.0"
-html-webpack-plugin@~4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.3.0.tgz#53bf8f6d696c4637d5b656d3d9863d89ce8174fd"
- integrity sha512-C0fzKN8yQoVLTelcJxZfJCE+aAvQiY2VUf3UuKrR4a9k5UMWYOtpDLsaXwATbcVCnI05hUS7L9ULQHWLZhyi3w==
- dependencies:
- "@types/html-minifier-terser" "^5.0.0"
- "@types/tapable" "^1.0.5"
- "@types/webpack" "^4.41.8"
- html-minifier-terser "^5.0.1"
- loader-utils "^1.2.3"
- lodash "^4.17.15"
- pretty-error "^2.1.1"
- tapable "^1.1.3"
- util.promisify "1.0.0"
-
-htmlparser2@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78"
- integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==
+html-webpack-plugin@^5.5.0:
+ version "5.5.3"
+ resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz#72270f4a78e222b5825b296e5e3e1328ad525a3e"
+ integrity sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==
dependencies:
- domelementtype "^2.0.1"
- domhandler "^3.0.0"
- domutils "^2.0.0"
- entities "^2.0.0"
+ "@types/html-minifier-terser" "^6.0.0"
+ html-minifier-terser "^6.0.2"
+ lodash "^4.17.21"
+ pretty-error "^4.0.0"
+ tapable "^2.0.0"
htmlparser2@^6.1.0:
version "6.1.0"
@@ -8414,17 +8941,6 @@ http-deceiver@^1.2.7:
resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==
-http-errors@1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
- integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.3"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
http-errors@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"
@@ -8451,26 +8967,27 @@ http-parser-js@>=0.5.1:
resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.6.tgz#2e02406ab2df8af8a7abfba62e0da01c62b95afd"
integrity sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==
-http-proxy-agent@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
- integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
+http-proxy-agent@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43"
+ integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==
dependencies:
- "@tootallnate/once" "1"
+ "@tootallnate/once" "2"
agent-base "6"
debug "4"
-http-proxy-middleware@0.19.1:
- version "0.19.1"
- resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a"
- integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
+http-proxy-middleware@^2.0.3:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f"
+ integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==
dependencies:
- http-proxy "^1.17.0"
- is-glob "^4.0.0"
- lodash "^4.17.11"
- micromatch "^3.1.10"
+ "@types/http-proxy" "^1.17.8"
+ http-proxy "^1.18.1"
+ is-glob "^4.0.1"
+ is-plain-obj "^3.0.0"
+ micromatch "^4.0.2"
-http-proxy@^1.17.0:
+http-proxy@^1.18.1:
version "1.18.1"
resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
@@ -8479,12 +8996,7 @@ http-proxy@^1.17.0:
follow-redirects "^1.0.0"
requires-port "^1.0.0"
-https-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
- integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==
-
-https-proxy-agent@^5.0.0:
+https-proxy-agent@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
@@ -8502,29 +9014,27 @@ human-signals@^2.1.0:
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
-husky@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.1.tgz#511cb3e57de3e3190514ae49ed50f6bc3f50b3e9"
- integrity sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==
+human-signals@^4.3.0:
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2"
+ integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==
+
+husky@^8.0.3:
+ version "8.0.3"
+ resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184"
+ integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==
hyphenate-style-name@^1.0.2:
version "1.0.4"
resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d"
integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==
-i18next@*:
- version "21.8.4"
- resolved "https://registry.yarnpkg.com/i18next/-/i18next-21.8.4.tgz#646e23065752036b38d9fda8898c18139b9e8ebe"
- integrity sha512-b3LQ5n9V1juu8UItb5x1QTI4OTvNqsNs/wetwQlBvfijEqks+N5HKMKSoevf8w0/RGUrDQ7g4cvVzF8WBp9pUw==
+i18next@^23.2.10:
+ version "23.2.10"
+ resolved "https://registry.yarnpkg.com/i18next/-/i18next-23.2.10.tgz#a9db1aaf84d8853da402888c837aeaf8fa7f71e2"
+ integrity sha512-oVFO06H/njXpvLfXDjlAX3LN8VMMhMn1I8wl+EzJqcMtRW0Glc6apy9mtmOq3AnA2QBPAFMvxIfkdlLFqGKKLw==
dependencies:
- "@babel/runtime" "^7.17.2"
-
-i18next@^21.8.4:
- version "21.8.9"
- resolved "https://registry.yarnpkg.com/i18next/-/i18next-21.8.9.tgz#c79edd5bba61e0a0d5b43a93d52e2d13a526de82"
- integrity sha512-PY9a/8ADVmnju1tETeglbbVQi+nM5pcJQWm9kvKMTE3GPgHHtpDsHy5HQ/hccz2/xtW7j3vuso23JdQSH0EttA==
- dependencies:
- "@babel/runtime" "^7.17.2"
+ "@babel/runtime" "^7.22.5"
iconv-lite@0.4.24:
version "0.4.24"
@@ -8533,45 +9043,40 @@ iconv-lite@0.4.24:
dependencies:
safer-buffer ">= 2.1.2 < 3"
-icss-utils@^4.0.0, icss-utils@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
- integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
+iconv-lite@0.6.3, iconv-lite@^0.6.3:
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
+ integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
dependencies:
- postcss "^7.0.14"
+ safer-buffer ">= 2.1.2 < 3.0.0"
+
+icss-utils@^5.0.0, icss-utils@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
+ integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
-ieee754@^1.1.13, ieee754@^1.1.4:
+ieee754@^1.1.13:
version "1.2.1"
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-iferr@^0.1.5:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
- integrity sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==
-
ignore@^5.1.1, ignore@^5.1.4, ignore@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
-image-size@^0.6.0:
- version "0.6.3"
- resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2"
- integrity sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==
+ignore@^5.1.9, ignore@^5.2.4:
+ version "5.2.4"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+ integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
-image-size@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.0.1.tgz#86d6cfc2b1d19eab5d2b368d4b9194d9e48541c5"
- integrity sha512-VAwkvNSNGClRw9mDHhc5Efax8PLlsOGcUTh0T/LIriC8vPA3U5PdqXWqkz406MoYHMKW8Uf9gWr05T/rYB44kQ==
+image-size@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.0.2.tgz#d778b6d0ab75b2737c1556dd631652eb963bc486"
+ integrity sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==
dependencies:
queue "6.0.2"
-immer@8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656"
- integrity sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==
-
import-fresh@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
@@ -8588,14 +9093,6 @@ import-fresh@^3.0.0, import-fresh@^3.2.1:
parent-module "^1.0.0"
resolve-from "^4.0.0"
-import-local@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
- integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
- dependencies:
- pkg-dir "^3.0.0"
- resolve-cwd "^2.0.0"
-
import-local@^3.0.2:
version "3.1.0"
resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4"
@@ -8609,22 +9106,12 @@ imurmurhash@^0.1.4:
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
-indent-string@^3.0.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
- integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
-
indent-string@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-indexes-of@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
- integrity sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==
-
-infer-owner@^1.0.3, infer-owner@^1.0.4:
+infer-owner@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
@@ -8642,22 +9129,17 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
+inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-inherits@2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
- integrity sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==
-
inherits@2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
-ini@^1.3.5, ini@~1.3.0:
+ini@~1.3.0:
version "1.3.8"
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
@@ -8669,7 +9151,7 @@ inline-style-prefixer@^6.0.1:
dependencies:
css-in-js-utils "^2.0.0"
-internal-ip@4.3.0, internal-ip@^4.3.0:
+internal-ip@4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
@@ -8686,6 +9168,15 @@ internal-slot@^1.0.3:
has "^1.0.3"
side-channel "^1.0.4"
+internal-slot@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
+ integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
+ dependencies:
+ get-intrinsic "^1.2.0"
+ has "^1.0.3"
+ side-channel "^1.0.4"
+
intl-messageformat@^9.12.0:
version "9.13.0"
resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-9.13.0.tgz#97360b73bd82212e4f6005c712a4a16053165468"
@@ -8696,7 +9187,7 @@ intl-messageformat@^9.12.0:
"@formatjs/icu-messageformat-parser" "2.1.0"
tslib "^2.1.0"
-invariant@^2.2.4:
+invariant@*, invariant@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
@@ -8708,7 +9199,7 @@ ip-regex@^2.1.0:
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==
-ip@^1.1.0, ip@^1.1.5:
+ip@^1.1.5:
version "1.1.8"
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48"
integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==
@@ -8718,29 +9209,10 @@ ipaddr.js@1.9.1, ipaddr.js@^1.9.0:
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
-is-absolute-url@^2.0.0:
+ipaddr.js@^2.0.1:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
- integrity sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==
-
-is-absolute-url@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
- integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
-
-is-accessor-descriptor@^0.1.6:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
- integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
- dependencies:
- kind-of "^3.0.2"
-
-is-accessor-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
- integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
- dependencies:
- kind-of "^6.0.0"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f"
+ integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==
is-arguments@^1.0.4:
version "1.1.1"
@@ -8750,6 +9222,15 @@ is-arguments@^1.0.4:
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
+is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+ integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ is-typed-array "^1.1.10"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
@@ -8767,13 +9248,6 @@ is-bigint@^1.0.1:
dependencies:
has-bigints "^1.0.1"
-is-binary-path@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
- integrity sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==
- dependencies:
- binary-extensions "^1.0.0"
-
is-binary-path@~2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -8789,56 +9263,35 @@ is-boolean-object@^1.1.0:
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
-is-buffer@^1.1.5, is-buffer@~1.1.1, is-buffer@~1.1.6:
+is-buffer@~1.1.1, is-buffer@~1.1.6:
version "1.1.6"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
+is-callable@^1.1.3, is-callable@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+ integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
+
is-callable@^1.1.4, is-callable@^1.2.4:
version "1.2.4"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
-is-ci@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
- integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
- dependencies:
- ci-info "^2.0.0"
-
-is-color-stop@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
- integrity sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==
+is-core-module@^2.11.0, is-core-module@^2.9.0:
+ version "2.12.1"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd"
+ integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==
dependencies:
- 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"
+ has "^1.0.3"
-is-core-module@^2.2.0, is-core-module@^2.8.1:
+is-core-module@^2.8.1:
version "2.9.0"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69"
integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==
dependencies:
has "^1.0.3"
-is-data-descriptor@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
- integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
- dependencies:
- kind-of "^3.0.2"
-
-is-data-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
- integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
- dependencies:
- kind-of "^6.0.0"
-
is-date-object@^1.0.1:
version "1.0.5"
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
@@ -8846,24 +9299,6 @@ is-date-object@^1.0.1:
dependencies:
has-tostringtag "^1.0.0"
-is-descriptor@^0.1.0:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
- integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
- dependencies:
- is-accessor-descriptor "^0.1.6"
- is-data-descriptor "^0.1.4"
- kind-of "^5.0.0"
-
-is-descriptor@^1.0.0, is-descriptor@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
- integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
- dependencies:
- is-accessor-descriptor "^1.0.0"
- is-data-descriptor "^1.0.0"
- kind-of "^6.0.2"
-
is-directory@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
@@ -8874,24 +9309,12 @@ is-docker@^2.0.0, is-docker@^2.1.1:
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
-is-extendable@^0.1.0, is-extendable@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
- integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
-
-is-extendable@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
- integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
- dependencies:
- is-plain-object "^2.0.4"
-
is-extglob@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
integrity sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==
-is-extglob@^2.1.0, is-extglob@^2.1.1:
+is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
@@ -8916,6 +9339,13 @@ is-generator-fn@^2.0.0:
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
+is-generator-function@^1.0.7:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
+ integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
is-glob@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
@@ -8923,13 +9353,6 @@ is-glob@^2.0.0:
dependencies:
is-extglob "^1.0.0"
-is-glob@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
- integrity sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==
- dependencies:
- is-extglob "^2.1.0"
-
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
version "4.0.3"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
@@ -8949,6 +9372,14 @@ is-invalid-path@^0.1.0:
dependencies:
is-glob "^2.0.0"
+is-nan@^1.2.1:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d"
+ integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+
is-negative-zero@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
@@ -8961,23 +9392,11 @@ is-number-object@^1.0.4:
dependencies:
has-tostringtag "^1.0.0"
-is-number@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
- integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
- dependencies:
- kind-of "^3.0.2"
-
is-number@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
-is-obj@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
- integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
-
is-path-cwd@^2.0.0, is-path-cwd@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
@@ -8997,7 +9416,7 @@ is-path-inside@^2.1.0:
dependencies:
path-is-inside "^1.0.2"
-is-path-inside@^3.0.2:
+is-path-inside@^3.0.2, is-path-inside@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
@@ -9012,7 +9431,12 @@ is-plain-obj@^2.1.0:
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
-is-plain-object@^2.0.3, is-plain-object@^2.0.4:
+is-plain-obj@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7"
+ integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==
+
+is-plain-object@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
@@ -9024,7 +9448,7 @@ is-potential-custom-element-name@^1.0.1:
resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
-is-regex@^1.0.4, is-regex@^1.1.4:
+is-regex@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
@@ -9032,12 +9456,7 @@ is-regex@^1.0.4, is-regex@^1.1.4:
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
-is-resolvable@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
- integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
-
-is-root@2.1.0, is-root@^2.1.0:
+is-root@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
@@ -9059,6 +9478,11 @@ is-stream@^2.0.0:
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
+is-stream@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac"
+ integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==
+
is-string@^1.0.5, is-string@^1.0.7:
version "1.0.7"
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
@@ -9073,10 +9497,27 @@ is-symbol@^1.0.2, is-symbol@^1.0.3:
dependencies:
has-symbols "^1.0.2"
-is-typedarray@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
- integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+is-typed-array@^1.1.10:
+ version "1.1.10"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
+ integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ has-tostringtag "^1.0.0"
+
+is-typed-array@^1.1.3, is-typed-array@^1.1.9:
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67"
+ integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ es-abstract "^1.20.0"
+ for-each "^0.3.3"
+ has-tostringtag "^1.0.0"
is-unicode-supported@^0.1.0:
version "0.1.0"
@@ -9097,11 +9538,6 @@ is-weakref@^1.0.2:
dependencies:
call-bind "^1.0.2"
-is-windows@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
- integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-
is-wsl@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
@@ -9114,7 +9550,7 @@ is-wsl@^2.0.0, is-wsl@^2.1.1, is-wsl@^2.2.0:
dependencies:
is-docker "^2.0.0"
-isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
+isarray@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
@@ -9124,14 +9560,7 @@ isexe@^2.0.0:
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
-isobject@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
- integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
- dependencies:
- isarray "1.0.0"
-
-isobject@^3.0.0, isobject@^3.0.1:
+isobject@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
@@ -9141,16 +9570,6 @@ istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0:
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3"
integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==
-istanbul-lib-instrument@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
- integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
- dependencies:
- "@babel/core" "^7.7.5"
- "@istanbuljs/schema" "^0.1.2"
- istanbul-lib-coverage "^3.0.0"
- semver "^6.3.0"
-
istanbul-lib-instrument@^5.0.4:
version "5.2.0"
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f"
@@ -9162,6 +9581,17 @@ istanbul-lib-instrument@^5.0.4:
istanbul-lib-coverage "^3.2.0"
semver "^6.3.0"
+istanbul-lib-instrument@^5.1.0:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d"
+ integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==
+ dependencies:
+ "@babel/core" "^7.12.3"
+ "@babel/parser" "^7.14.7"
+ "@istanbuljs/schema" "^0.1.2"
+ istanbul-lib-coverage "^3.2.0"
+ semver "^6.3.0"
+
istanbul-lib-report@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
@@ -9180,455 +9610,504 @@ istanbul-lib-source-maps@^4.0.0:
istanbul-lib-coverage "^3.0.0"
source-map "^0.6.1"
-istanbul-reports@^3.0.2:
- version "3.1.4"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c"
- integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==
+istanbul-reports@^3.1.3:
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae"
+ integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==
dependencies:
html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0"
-jest-changed-files@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0"
- integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==
+jest-changed-files@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e"
+ integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==
dependencies:
- "@jest/types" "^26.6.2"
- execa "^4.0.0"
- throat "^5.0.0"
+ execa "^5.0.0"
+ p-limit "^3.1.0"
-jest-cli@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a"
- integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==
+jest-circus@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.6.1.tgz#861dab37e71a89907d1c0fabc54a0019738ed824"
+ integrity sha512-tPbYLEiBU4MYAL2XoZme/bgfUeotpDBd81lgHLCbDZZFaGmECk0b+/xejPFtmiBP87GgP/y4jplcRpbH+fgCzQ==
dependencies:
- "@jest/core" "^26.6.3"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
+ "@jest/environment" "^29.6.1"
+ "@jest/expect" "^29.6.1"
+ "@jest/test-result" "^29.6.1"
+ "@jest/types" "^29.6.1"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ co "^4.6.0"
+ dedent "^0.7.0"
+ is-generator-fn "^2.0.0"
+ jest-each "^29.6.1"
+ jest-matcher-utils "^29.6.1"
+ jest-message-util "^29.6.1"
+ jest-runtime "^29.6.1"
+ jest-snapshot "^29.6.1"
+ jest-util "^29.6.1"
+ p-limit "^3.1.0"
+ pretty-format "^29.6.1"
+ pure-rand "^6.0.0"
+ slash "^3.0.0"
+ stack-utils "^2.0.3"
+
+jest-cli@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.6.1.tgz#99d9afa7449538221c71f358f0fdd3e9c6e89f72"
+ integrity sha512-607dSgTA4ODIN6go9w6xY3EYkyPFGicx51a69H7yfvt7lN53xNswEVLovq+E77VsTRi5fWprLH0yl4DJgE8Ing==
+ dependencies:
+ "@jest/core" "^29.6.1"
+ "@jest/test-result" "^29.6.1"
+ "@jest/types" "^29.6.1"
chalk "^4.0.0"
exit "^0.1.2"
- graceful-fs "^4.2.4"
+ graceful-fs "^4.2.9"
import-local "^3.0.2"
- is-ci "^2.0.0"
- jest-config "^26.6.3"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
+ jest-config "^29.6.1"
+ jest-util "^29.6.1"
+ jest-validate "^29.6.1"
prompts "^2.0.1"
- yargs "^15.4.1"
+ yargs "^17.3.1"
-jest-config@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349"
- integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==
+jest-config@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.6.1.tgz#d785344509065d53a238224c6cdc0ed8e2f2f0dd"
+ integrity sha512-XdjYV2fy2xYixUiV2Wc54t3Z4oxYPAELUzWnV6+mcbq0rh742X2p52pii5A3oeRzYjLnQxCsZmp0qpI6klE2cQ==
dependencies:
- "@babel/core" "^7.1.0"
- "@jest/test-sequencer" "^26.6.3"
- "@jest/types" "^26.6.2"
- babel-jest "^26.6.3"
+ "@babel/core" "^7.11.6"
+ "@jest/test-sequencer" "^29.6.1"
+ "@jest/types" "^29.6.1"
+ babel-jest "^29.6.1"
chalk "^4.0.0"
+ ci-info "^3.2.0"
deepmerge "^4.2.2"
- glob "^7.1.1"
- graceful-fs "^4.2.4"
- jest-environment-jsdom "^26.6.2"
- jest-environment-node "^26.6.2"
- jest-get-type "^26.3.0"
- jest-jasmine2 "^26.6.3"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- micromatch "^4.0.2"
- pretty-format "^26.6.2"
+ glob "^7.1.3"
+ graceful-fs "^4.2.9"
+ jest-circus "^29.6.1"
+ jest-environment-node "^29.6.1"
+ jest-get-type "^29.4.3"
+ jest-regex-util "^29.4.3"
+ jest-resolve "^29.6.1"
+ jest-runner "^29.6.1"
+ jest-util "^29.6.1"
+ jest-validate "^29.6.1"
+ micromatch "^4.0.4"
+ parse-json "^5.2.0"
+ pretty-format "^29.6.1"
+ slash "^3.0.0"
+ strip-json-comments "^3.1.1"
-jest-diff@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394"
- integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==
+jest-diff@^29.0.1, jest-diff@^29.2.1:
+ version "29.2.1"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.2.1.tgz#027e42f5a18b693fb2e88f81b0ccab533c08faee"
+ integrity sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==
dependencies:
chalk "^4.0.0"
- diff-sequences "^26.6.2"
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
+ diff-sequences "^29.2.0"
+ jest-get-type "^29.2.0"
+ pretty-format "^29.2.1"
-jest-diff@^27.4.6, jest-diff@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def"
- integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==
+jest-diff@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.6.1.tgz#13df6db0a89ee6ad93c747c75c85c70ba941e545"
+ integrity sha512-FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg==
dependencies:
chalk "^4.0.0"
- diff-sequences "^27.5.1"
- jest-get-type "^27.5.1"
- pretty-format "^27.5.1"
+ diff-sequences "^29.4.3"
+ jest-get-type "^29.4.3"
+ pretty-format "^29.6.1"
-jest-docblock@^26.0.0:
- version "26.0.0"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5"
- integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==
+jest-docblock@^29.4.3:
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8"
+ integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==
dependencies:
detect-newline "^3.0.0"
-jest-each@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb"
- integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==
+jest-each@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.6.1.tgz#975058e5b8f55c6780beab8b6ab214921815c89c"
+ integrity sha512-n5eoj5eiTHpKQCAVcNTT7DRqeUmJ01hsAL0Q1SMiBHcBcvTKDELixQOGMCpqhbIuTcfC4kMfSnpmDqRgRJcLNQ==
dependencies:
- "@jest/types" "^26.6.2"
+ "@jest/types" "^29.6.1"
chalk "^4.0.0"
- jest-get-type "^26.3.0"
- jest-util "^26.6.2"
- pretty-format "^26.6.2"
-
-jest-environment-jsdom@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e"
- integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==
- dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
+ jest-get-type "^29.4.3"
+ jest-util "^29.6.1"
+ pretty-format "^29.6.1"
+
+jest-environment-jsdom@^29.2.1:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz#cfe86ebaf1453f3297b5ff3470fbe94739c960cb"
+ integrity sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==
+ dependencies:
+ "@jest/environment" "^29.5.0"
+ "@jest/fake-timers" "^29.5.0"
+ "@jest/types" "^29.5.0"
+ "@types/jsdom" "^20.0.0"
"@types/node" "*"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
- jsdom "^16.4.0"
+ jest-mock "^29.5.0"
+ jest-util "^29.5.0"
+ jsdom "^20.0.0"
+
+jest-environment-node@^29.2.1:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967"
+ integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==
+ dependencies:
+ "@jest/environment" "^29.5.0"
+ "@jest/fake-timers" "^29.5.0"
+ "@jest/types" "^29.5.0"
+ "@types/node" "*"
+ jest-mock "^29.5.0"
+ jest-util "^29.5.0"
-jest-environment-node@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c"
- integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==
+jest-environment-node@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.6.1.tgz#08a122dece39e58bc388da815a2166c58b4abec6"
+ integrity sha512-ZNIfAiE+foBog24W+2caIldl4Irh8Lx1PUhg/GZ0odM1d/h2qORAsejiFc7zb+SEmYPn1yDZzEDSU5PmDkmVLQ==
dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
+ "@jest/environment" "^29.6.1"
+ "@jest/fake-timers" "^29.6.1"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
+ jest-mock "^29.6.1"
+ jest-util "^29.6.1"
-jest-expo@^46.0.0:
- version "46.0.1"
- resolved "https://registry.yarnpkg.com/jest-expo/-/jest-expo-46.0.1.tgz#7864556bcf6db237f25bd2efb477ffa4c970cdee"
- integrity sha512-wKC/WfA4xAOWqXQwS3WyIWqNeVdKA5RjUqvYaWCM/M8lNbuYoMuixlbxEG+ielKV3LaLaxA/aCvfgouPBISxYA==
+jest-expo@^49.0.0:
+ version "49.0.0"
+ resolved "https://registry.yarnpkg.com/jest-expo/-/jest-expo-49.0.0.tgz#d1c91ddb1303f8666de47d45ba52174bff6fb241"
+ integrity sha512-nglYg6QPYSqCsrsOFiGosQi+m1rrqmYluPbFXNnXNEOrB2MvxMOgQJeWfMHDExHMX1ymLWX+7y8mYo6XVJpBJQ==
dependencies:
- "@expo/config" "~7.0.0"
- "@jest/create-cache-key-function" "^27.0.1"
- babel-jest "^26.6.3"
+ "@expo/config" "~8.1.0"
+ "@jest/create-cache-key-function" "^29.2.1"
+ babel-jest "^29.2.1"
find-up "^5.0.0"
+ jest-environment-jsdom "^29.2.1"
jest-watch-select-projects "^2.0.0"
- jest-watch-typeahead "0.6.4"
- json5 "^2.1.0"
+ jest-watch-typeahead "2.2.1"
+ json5 "^2.2.3"
lodash "^4.17.19"
- react-test-renderer "~18.0.0"
+ react-test-renderer "18.2.0"
-jest-get-type@^26.3.0:
- version "26.3.0"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
- integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
+jest-get-type@^29.2.0:
+ version "29.2.0"
+ resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.2.0.tgz#726646f927ef61d583a3b3adb1ab13f3a5036408"
+ integrity sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==
-jest-get-type@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1"
- integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==
+jest-get-type@^29.4.3:
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5"
+ integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==
-jest-haste-map@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa"
- integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
+jest-haste-map@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de"
+ integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==
dependencies:
- "@jest/types" "^26.6.2"
- "@types/graceful-fs" "^4.1.2"
+ "@jest/types" "^29.5.0"
+ "@types/graceful-fs" "^4.1.3"
"@types/node" "*"
anymatch "^3.0.3"
fb-watchman "^2.0.0"
- graceful-fs "^4.2.4"
- jest-regex-util "^26.0.0"
- jest-serializer "^26.6.2"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- micromatch "^4.0.2"
- sane "^4.0.3"
- walker "^1.0.7"
+ graceful-fs "^4.2.9"
+ jest-regex-util "^29.4.3"
+ jest-util "^29.5.0"
+ jest-worker "^29.5.0"
+ micromatch "^4.0.4"
+ walker "^1.0.8"
optionalDependencies:
- fsevents "^2.1.2"
+ fsevents "^2.3.2"
-jest-haste-map@^27.3.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz#9fd8bd7e7b4fa502d9c6164c5640512b4e811e7f"
- integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==
+jest-haste-map@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.6.1.tgz#62655c7a1c1b349a3206441330fb2dbdb4b63803"
+ integrity sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==
dependencies:
- "@jest/types" "^27.5.1"
- "@types/graceful-fs" "^4.1.2"
+ "@jest/types" "^29.6.1"
+ "@types/graceful-fs" "^4.1.3"
"@types/node" "*"
anymatch "^3.0.3"
fb-watchman "^2.0.0"
graceful-fs "^4.2.9"
- jest-regex-util "^27.5.1"
- jest-serializer "^27.5.1"
- jest-util "^27.5.1"
- jest-worker "^27.5.1"
+ jest-regex-util "^29.4.3"
+ jest-util "^29.6.1"
+ jest-worker "^29.6.1"
micromatch "^4.0.4"
- walker "^1.0.7"
+ walker "^1.0.8"
optionalDependencies:
fsevents "^2.3.2"
-jest-jasmine2@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd"
- integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==
+jest-leak-detector@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.6.1.tgz#66a902c81318e66e694df7d096a95466cb962f8e"
+ integrity sha512-OrxMNyZirpOEwkF3UHnIkAiZbtkBWiye+hhBweCHkVbCgyEy71Mwbb5zgeTNYWJBi1qgDVfPC1IwO9dVEeTLwQ==
dependencies:
- "@babel/traverse" "^7.1.0"
- "@jest/environment" "^26.6.2"
- "@jest/source-map" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- co "^4.6.0"
- expect "^26.6.2"
- is-generator-fn "^2.0.0"
- jest-each "^26.6.2"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-runtime "^26.6.3"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- pretty-format "^26.6.2"
- throat "^5.0.0"
+ jest-get-type "^29.4.3"
+ pretty-format "^29.6.1"
-jest-leak-detector@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af"
- integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==
+jest-matcher-utils@^29.0.1, jest-matcher-utils@^29.2.2:
+ version "29.2.2"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.2.2.tgz#9202f8e8d3a54733266784ce7763e9a08688269c"
+ integrity sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==
dependencies:
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
+ chalk "^4.0.0"
+ jest-diff "^29.2.1"
+ jest-get-type "^29.2.0"
+ pretty-format "^29.2.1"
-jest-matcher-utils@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz#8e6fd6e863c8b2d31ac6472eeb237bc595e53e7a"
- integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==
+jest-matcher-utils@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.6.1.tgz#6c60075d84655d6300c5d5128f46531848160b53"
+ integrity sha512-SLaztw9d2mfQQKHmJXKM0HCbl2PPVld/t9Xa6P9sgiExijviSp7TnZZpw2Fpt+OI3nwUO/slJbOfzfUMKKC5QA==
dependencies:
chalk "^4.0.0"
- jest-diff "^26.6.2"
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
+ jest-diff "^29.6.1"
+ jest-get-type "^29.4.3"
+ pretty-format "^29.6.1"
-jest-matcher-utils@^27.0.0, jest-matcher-utils@^27.4.6:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab"
- integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==
+jest-message-util@^29.2.1:
+ version "29.2.1"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.2.1.tgz#3a51357fbbe0cc34236f17a90d772746cf8d9193"
+ integrity sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==
dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@jest/types" "^29.2.1"
+ "@types/stack-utils" "^2.0.0"
chalk "^4.0.0"
- jest-diff "^27.5.1"
- jest-get-type "^27.5.1"
- pretty-format "^27.5.1"
+ graceful-fs "^4.2.9"
+ micromatch "^4.0.4"
+ pretty-format "^29.2.1"
+ slash "^3.0.0"
+ stack-utils "^2.0.3"
-jest-message-util@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07"
- integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==
+jest-message-util@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e"
+ integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==
dependencies:
- "@babel/code-frame" "^7.0.0"
- "@jest/types" "^26.6.2"
+ "@babel/code-frame" "^7.12.13"
+ "@jest/types" "^29.5.0"
"@types/stack-utils" "^2.0.0"
chalk "^4.0.0"
- graceful-fs "^4.2.4"
- micromatch "^4.0.2"
- pretty-format "^26.6.2"
+ graceful-fs "^4.2.9"
+ micromatch "^4.0.4"
+ pretty-format "^29.5.0"
slash "^3.0.0"
- stack-utils "^2.0.2"
+ stack-utils "^2.0.3"
-jest-message-util@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.5.1.tgz#bdda72806da10d9ed6425e12afff38cd1458b6cf"
- integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==
+jest-message-util@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.6.1.tgz#d0b21d87f117e1b9e165e24f245befd2ff34ff8d"
+ integrity sha512-KoAW2zAmNSd3Gk88uJ56qXUWbFk787QKmjjJVOjtGFmmGSZgDBrlIL4AfQw1xyMYPNVD7dNInfIbur9B2rd/wQ==
dependencies:
"@babel/code-frame" "^7.12.13"
- "@jest/types" "^27.5.1"
+ "@jest/types" "^29.6.1"
"@types/stack-utils" "^2.0.0"
chalk "^4.0.0"
graceful-fs "^4.2.9"
micromatch "^4.0.4"
- pretty-format "^27.5.1"
+ pretty-format "^29.6.1"
slash "^3.0.0"
stack-utils "^2.0.3"
-jest-mock@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302"
- integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==
+jest-mock@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed"
+ integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==
dependencies:
- "@jest/types" "^26.6.2"
+ "@jest/types" "^29.5.0"
+ "@types/node" "*"
+ jest-util "^29.5.0"
+
+jest-mock@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.6.1.tgz#049ee26aea8cbf54c764af649070910607316517"
+ integrity sha512-brovyV9HBkjXAEdRooaTQK42n8usKoSRR3gihzUpYeV/vwqgSoNfrksO7UfSACnPmxasO/8TmHM3w9Hp3G1dgw==
+ dependencies:
+ "@jest/types" "^29.6.1"
"@types/node" "*"
+ jest-util "^29.6.1"
jest-pnp-resolver@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
-jest-regex-util@^26.0.0:
- version "26.0.0"
- resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
- integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
-
-jest-regex-util@^27.0.0, jest-regex-util@^27.5.1:
+jest-regex-util@^27.0.6:
version "27.5.1"
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95"
integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==
-jest-resolve-dependencies@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6"
- integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==
+jest-regex-util@^29.0.0, jest-regex-util@^29.4.3:
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8"
+ integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==
+
+jest-resolve-dependencies@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.1.tgz#b85b06670f987a62515bbf625d54a499e3d708f5"
+ integrity sha512-BbFvxLXtcldaFOhNMXmHRWx1nXQO5LoXiKSGQcA1LxxirYceZT6ch8KTE1bK3X31TNG/JbkI7OkS/ABexVahiw==
dependencies:
- "@jest/types" "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-snapshot "^26.6.2"
+ jest-regex-util "^29.4.3"
+ jest-snapshot "^29.6.1"
-jest-resolve@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.2.tgz#a3ab1517217f469b504f1b56603c5bb541fbb507"
- integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==
+jest-resolve@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.6.1.tgz#4c3324b993a85e300add2f8609f51b80ddea39ee"
+ integrity sha512-AeRkyS8g37UyJiP9w3mmI/VXU/q8l/IH52vj/cDAyScDcemRbSBhfX/NMYIGilQgSVwsjxrCHf3XJu4f+lxCMg==
dependencies:
- "@jest/types" "^26.6.2"
chalk "^4.0.0"
- graceful-fs "^4.2.4"
+ graceful-fs "^4.2.9"
+ jest-haste-map "^29.6.1"
jest-pnp-resolver "^1.2.2"
- jest-util "^26.6.2"
- read-pkg-up "^7.0.1"
- resolve "^1.18.1"
+ jest-util "^29.6.1"
+ jest-validate "^29.6.1"
+ resolve "^1.20.0"
+ resolve.exports "^2.0.0"
slash "^3.0.0"
-jest-runner@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159"
- integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==
+jest-runner@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.6.1.tgz#54557087e7972d345540d622ab5bfc3d8f34688c"
+ integrity sha512-tw0wb2Q9yhjAQ2w8rHRDxteryyIck7gIzQE4Reu3JuOBpGp96xWgF0nY8MDdejzrLCZKDcp8JlZrBN/EtkQvPQ==
dependencies:
- "@jest/console" "^26.6.2"
- "@jest/environment" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
+ "@jest/console" "^29.6.1"
+ "@jest/environment" "^29.6.1"
+ "@jest/test-result" "^29.6.1"
+ "@jest/transform" "^29.6.1"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
chalk "^4.0.0"
- emittery "^0.7.1"
- exit "^0.1.2"
- graceful-fs "^4.2.4"
- jest-config "^26.6.3"
- jest-docblock "^26.0.0"
- jest-haste-map "^26.6.2"
- jest-leak-detector "^26.6.2"
- jest-message-util "^26.6.2"
- jest-resolve "^26.6.2"
- jest-runtime "^26.6.3"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- source-map-support "^0.5.6"
- throat "^5.0.0"
-
-jest-runtime@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b"
- integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/globals" "^26.6.2"
- "@jest/source-map" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/yargs" "^15.0.0"
+ emittery "^0.13.1"
+ graceful-fs "^4.2.9"
+ jest-docblock "^29.4.3"
+ jest-environment-node "^29.6.1"
+ jest-haste-map "^29.6.1"
+ jest-leak-detector "^29.6.1"
+ jest-message-util "^29.6.1"
+ jest-resolve "^29.6.1"
+ jest-runtime "^29.6.1"
+ jest-util "^29.6.1"
+ jest-watcher "^29.6.1"
+ jest-worker "^29.6.1"
+ p-limit "^3.1.0"
+ source-map-support "0.5.13"
+
+jest-runtime@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.6.1.tgz#8a0fc9274ef277f3d70ba19d238e64334958a0dc"
+ integrity sha512-D6/AYOA+Lhs5e5il8+5pSLemjtJezUr+8zx+Sn8xlmOux3XOqx4d8l/2udBea8CRPqqrzhsKUsN/gBDE/IcaPQ==
+ dependencies:
+ "@jest/environment" "^29.6.1"
+ "@jest/fake-timers" "^29.6.1"
+ "@jest/globals" "^29.6.1"
+ "@jest/source-map" "^29.6.0"
+ "@jest/test-result" "^29.6.1"
+ "@jest/transform" "^29.6.1"
+ "@jest/types" "^29.6.1"
+ "@types/node" "*"
chalk "^4.0.0"
- cjs-module-lexer "^0.6.0"
+ cjs-module-lexer "^1.0.0"
collect-v8-coverage "^1.0.0"
- exit "^0.1.2"
glob "^7.1.3"
- graceful-fs "^4.2.4"
- jest-config "^26.6.3"
- jest-haste-map "^26.6.2"
- jest-message-util "^26.6.2"
- jest-mock "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
+ graceful-fs "^4.2.9"
+ jest-haste-map "^29.6.1"
+ jest-message-util "^29.6.1"
+ jest-mock "^29.6.1"
+ jest-regex-util "^29.4.3"
+ jest-resolve "^29.6.1"
+ jest-snapshot "^29.6.1"
+ jest-util "^29.6.1"
slash "^3.0.0"
strip-bom "^4.0.0"
- yargs "^15.4.1"
-jest-serializer@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1"
- integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
+jest-snapshot@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.6.1.tgz#0d083cb7de716d5d5cdbe80d598ed2fbafac0239"
+ integrity sha512-G4UQE1QQ6OaCgfY+A0uR1W2AY0tGXUPQpoUClhWHq1Xdnx1H6JOrC2nH5lqnOEqaDgbHFgIwZ7bNq24HpB180A==
dependencies:
- "@types/node" "*"
- graceful-fs "^4.2.4"
+ "@babel/core" "^7.11.6"
+ "@babel/generator" "^7.7.2"
+ "@babel/plugin-syntax-jsx" "^7.7.2"
+ "@babel/plugin-syntax-typescript" "^7.7.2"
+ "@babel/types" "^7.3.3"
+ "@jest/expect-utils" "^29.6.1"
+ "@jest/transform" "^29.6.1"
+ "@jest/types" "^29.6.1"
+ "@types/prettier" "^2.1.5"
+ babel-preset-current-node-syntax "^1.0.0"
+ chalk "^4.0.0"
+ expect "^29.6.1"
+ graceful-fs "^4.2.9"
+ jest-diff "^29.6.1"
+ jest-get-type "^29.4.3"
+ jest-matcher-utils "^29.6.1"
+ jest-message-util "^29.6.1"
+ jest-util "^29.6.1"
+ natural-compare "^1.4.0"
+ pretty-format "^29.6.1"
+ semver "^7.5.3"
-jest-serializer@^27.5.1:
+jest-util@^27.2.0:
version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.5.1.tgz#81438410a30ea66fd57ff730835123dea1fb1f64"
- integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9"
+ integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==
dependencies:
+ "@jest/types" "^27.5.1"
"@types/node" "*"
+ chalk "^4.0.0"
+ ci-info "^3.2.0"
graceful-fs "^4.2.9"
+ picomatch "^2.2.3"
-jest-snapshot@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84"
- integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==
+jest-util@^29.2.1:
+ version "29.2.1"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.2.1.tgz#f26872ba0dc8cbefaba32c34f98935f6cf5fc747"
+ integrity sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==
dependencies:
- "@babel/types" "^7.0.0"
- "@jest/types" "^26.6.2"
- "@types/babel__traverse" "^7.0.4"
- "@types/prettier" "^2.0.0"
+ "@jest/types" "^29.2.1"
+ "@types/node" "*"
chalk "^4.0.0"
- expect "^26.6.2"
- graceful-fs "^4.2.4"
- jest-diff "^26.6.2"
- jest-get-type "^26.3.0"
- jest-haste-map "^26.6.2"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-resolve "^26.6.2"
- natural-compare "^1.4.0"
- pretty-format "^26.6.2"
- semver "^7.3.2"
+ ci-info "^3.2.0"
+ graceful-fs "^4.2.9"
+ picomatch "^2.2.3"
-jest-util@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1"
- integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==
+jest-util@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f"
+ integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==
dependencies:
- "@jest/types" "^26.6.2"
+ "@jest/types" "^29.5.0"
"@types/node" "*"
chalk "^4.0.0"
- graceful-fs "^4.2.4"
- is-ci "^2.0.0"
- micromatch "^4.0.2"
+ ci-info "^3.2.0"
+ graceful-fs "^4.2.9"
+ picomatch "^2.2.3"
-jest-util@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9"
- integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==
+jest-util@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.1.tgz#c9e29a87a6edbf1e39e6dee2b4689b8a146679cb"
+ integrity sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==
dependencies:
- "@jest/types" "^27.5.1"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
chalk "^4.0.0"
ci-info "^3.2.0"
graceful-fs "^4.2.9"
picomatch "^2.2.3"
-jest-validate@^26.5.2, jest-validate@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec"
- integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==
+jest-validate@^29.2.1, jest-validate@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.6.1.tgz#765e684af6e2c86dce950aebefbbcd4546d69f7b"
+ integrity sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA==
dependencies:
- "@jest/types" "^26.6.2"
- camelcase "^6.0.0"
+ "@jest/types" "^29.6.1"
+ camelcase "^6.2.0"
chalk "^4.0.0"
- jest-get-type "^26.3.0"
+ jest-get-type "^29.4.3"
leven "^3.1.0"
- pretty-format "^26.6.2"
+ pretty-format "^29.6.1"
jest-watch-select-projects@^2.0.0:
version "2.0.0"
@@ -9639,76 +10118,85 @@ jest-watch-select-projects@^2.0.0:
chalk "^3.0.0"
prompts "^2.2.1"
-jest-watch-typeahead@0.6.4:
- version "0.6.4"
- resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.6.4.tgz#ea70bf1bec34bd4f55b5b72d471b02d997899c3e"
- integrity sha512-tGxriteVJqonyrDj/xZHa0E2glKMiglMLQqISLCjxLUfeueRBh9VoRF2FKQyYO2xOqrWDTg7781zUejx411ZXA==
+jest-watch-typeahead@2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz#36601520a2a30fd561788552dbda9c76bb44814a"
+ integrity sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==
dependencies:
- ansi-escapes "^4.3.1"
+ ansi-escapes "^6.0.0"
chalk "^4.0.0"
- jest-regex-util "^27.0.0"
- jest-watcher "^27.0.0"
- slash "^3.0.0"
- string-length "^4.0.1"
- strip-ansi "^6.0.0"
+ jest-regex-util "^29.0.0"
+ jest-watcher "^29.0.0"
+ slash "^5.0.0"
+ string-length "^5.0.1"
+ strip-ansi "^7.0.1"
-jest-watcher@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975"
- integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==
+jest-watcher@^29.0.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363"
+ integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==
dependencies:
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
+ "@jest/test-result" "^29.5.0"
+ "@jest/types" "^29.5.0"
"@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
- jest-util "^26.6.2"
+ emittery "^0.13.1"
+ jest-util "^29.5.0"
string-length "^4.0.1"
-jest-watcher@^27.0.0:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.5.1.tgz#71bd85fb9bde3a2c2ec4dc353437971c43c642a2"
- integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==
+jest-watcher@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.6.1.tgz#7c0c43ddd52418af134c551c92c9ea31e5ec942e"
+ integrity sha512-d4wpjWTS7HEZPaaj8m36QiaP856JthRZkrgcIY/7ISoUWPIillrXM23WPboZVLbiwZBt4/qn2Jke84Sla6JhFA==
dependencies:
- "@jest/test-result" "^27.5.1"
- "@jest/types" "^27.5.1"
+ "@jest/test-result" "^29.6.1"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
- jest-util "^27.5.1"
+ emittery "^0.13.1"
+ jest-util "^29.6.1"
string-length "^4.0.1"
-jest-worker@^26.2.1, jest-worker@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
- integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
+jest-worker@^27.0.2, jest-worker@^27.2.0, jest-worker@^27.4.5:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
+ integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
dependencies:
"@types/node" "*"
merge-stream "^2.0.0"
- supports-color "^7.0.0"
+ supports-color "^8.0.0"
-jest-worker@^27.2.0, jest-worker@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
- integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
+jest-worker@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d"
+ integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==
dependencies:
"@types/node" "*"
+ jest-util "^29.5.0"
merge-stream "^2.0.0"
supports-color "^8.0.0"
-jest@^26.6.3:
- version "26.6.3"
- resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef"
- integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==
+jest-worker@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.6.1.tgz#64b015f0e985ef3a8ad049b61fe92b3db74a5319"
+ integrity sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==
dependencies:
- "@jest/core" "^26.6.3"
- import-local "^3.0.2"
- jest-cli "^26.6.3"
+ "@types/node" "*"
+ jest-util "^29.6.1"
+ merge-stream "^2.0.0"
+ supports-color "^8.0.0"
-jetifier@^1.6.2:
- version "1.6.8"
- resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.8.tgz#e88068697875cbda98c32472902c4d3756247798"
- integrity sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==
+jest@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest/-/jest-29.6.1.tgz#74be1cb719c3abe439f2d94aeb18e6540a5b02ad"
+ integrity sha512-Nirw5B4nn69rVUZtemCQhwxOBhm0nsp3hmtF4rzCeWD7BkjAXRIji7xWQfnTNbz9g0aVsBX6aZK3n+23LM6uDw==
+ dependencies:
+ "@jest/core" "^29.6.1"
+ "@jest/types" "^29.6.1"
+ import-local "^3.0.2"
+ jest-cli "^29.6.1"
jimp-compact@0.16.1:
version "0.16.1"
@@ -9731,11 +10219,6 @@ join-component@^1.1.0:
resolved "https://registry.yarnpkg.com/join-component/-/join-component-1.1.0.tgz#b8417b750661a392bee2c2537c68b2a9d4977cd5"
integrity sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==
-js-sha3@0.8.0:
- version "0.8.0"
- resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"
- integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==
-
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
@@ -9756,15 +10239,20 @@ js-yaml@^4.1.0:
dependencies:
argparse "^2.0.1"
-jsc-android@^250230.2.1:
- version "250230.2.1"
- resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250230.2.1.tgz#3790313a970586a03ab0ad47defbc84df54f1b83"
- integrity sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==
+jsc-android@^250231.0.0:
+ version "250231.0.0"
+ resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250231.0.0.tgz#91720f8df382a108872fa4b3f558f33ba5e95262"
+ integrity sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==
-jscodeshift@^0.13.1:
- version "0.13.1"
- resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.13.1.tgz#69bfe51e54c831296380585c6d9e733512aecdef"
- integrity sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==
+jsc-safe-url@^0.2.2, jsc-safe-url@^0.2.4:
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz#141c14fbb43791e88d5dc64e85a374575a83477a"
+ integrity sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==
+
+jscodeshift@^0.14.0:
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.14.0.tgz#7542e6715d6d2e8bde0b4e883f0ccea358b46881"
+ integrity sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==
dependencies:
"@babel/core" "^7.13.16"
"@babel/parser" "^7.13.16"
@@ -9779,45 +10267,44 @@ jscodeshift@^0.13.1:
chalk "^4.1.2"
flow-parser "0.*"
graceful-fs "^4.2.4"
- micromatch "^3.1.10"
+ micromatch "^4.0.4"
neo-async "^2.5.0"
node-dir "^0.1.17"
- recast "^0.20.4"
+ recast "^0.21.0"
temp "^0.8.4"
write-file-atomic "^2.3.0"
-jsdom@^16.4.0:
- version "16.7.0"
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710"
- integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==
+jsdom@^20.0.0:
+ version "20.0.3"
+ resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-20.0.3.tgz#886a41ba1d4726f67a8858028c99489fed6ad4db"
+ integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==
dependencies:
- abab "^2.0.5"
- acorn "^8.2.4"
- acorn-globals "^6.0.0"
- cssom "^0.4.4"
+ abab "^2.0.6"
+ acorn "^8.8.1"
+ acorn-globals "^7.0.0"
+ cssom "^0.5.0"
cssstyle "^2.3.0"
- data-urls "^2.0.0"
- decimal.js "^10.2.1"
- domexception "^2.0.1"
+ data-urls "^3.0.2"
+ decimal.js "^10.4.2"
+ domexception "^4.0.0"
escodegen "^2.0.0"
- form-data "^3.0.0"
- html-encoding-sniffer "^2.0.1"
- http-proxy-agent "^4.0.1"
- https-proxy-agent "^5.0.0"
+ form-data "^4.0.0"
+ html-encoding-sniffer "^3.0.0"
+ http-proxy-agent "^5.0.0"
+ https-proxy-agent "^5.0.1"
is-potential-custom-element-name "^1.0.1"
- nwsapi "^2.2.0"
- parse5 "6.0.1"
- saxes "^5.0.1"
+ nwsapi "^2.2.2"
+ parse5 "^7.1.1"
+ saxes "^6.0.0"
symbol-tree "^3.2.4"
- tough-cookie "^4.0.0"
- w3c-hr-time "^1.0.2"
- w3c-xmlserializer "^2.0.0"
- webidl-conversions "^6.1.0"
- whatwg-encoding "^1.0.5"
- whatwg-mimetype "^2.3.0"
- whatwg-url "^8.5.0"
- ws "^7.4.6"
- xml-name-validator "^3.0.0"
+ tough-cookie "^4.1.2"
+ w3c-xmlserializer "^4.0.0"
+ webidl-conversions "^7.0.0"
+ whatwg-encoding "^2.0.0"
+ whatwg-mimetype "^3.0.0"
+ whatwg-url "^11.0.0"
+ ws "^8.11.0"
+ xml-name-validator "^4.0.0"
jsesc@^2.5.1:
version "2.5.2"
@@ -9829,12 +10316,12 @@ jsesc@~0.5.0:
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
-json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
+json-parse-better-errors@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-json-parse-even-better-errors@^2.3.0:
+json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
version "2.3.1"
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
@@ -9858,21 +10345,16 @@ json-schema-traverse@^0.4.1:
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+json-schema-traverse@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+ integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
+
json-stable-stringify-without-jsonify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
-json3@^3.3.2:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
- integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==
-
-json5@^0.5.1:
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
- integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
-
json5@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
@@ -9880,18 +10362,16 @@ json5@^1.0.1:
dependencies:
minimist "^1.2.0"
-json5@^2.1.0, json5@^2.1.2, json5@^2.2.1:
+json5@^2.1.1, json5@^2.2.2, json5@^2.2.3:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
+
+json5@^2.1.2, json5@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
-jsonfile@^2.1.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
- integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
- optionalDependencies:
- graceful-fs "^4.1.6"
-
jsonfile@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
@@ -9916,54 +10396,30 @@ jsonfile@^6.0.1:
array-includes "^3.1.4"
object.assign "^4.1.2"
-killable@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892"
- integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
-
-kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
- integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
- integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
- integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
-
-kind-of@^6.0.0, kind-of@^6.0.2:
+kind-of@^6.0.2:
version "6.0.3"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
-klaw@^1.0.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
- integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
- optionalDependencies:
- graceful-fs "^4.1.9"
+klaw-sync@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c"
+ integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==
+ dependencies:
+ graceful-fs "^4.1.11"
kleur@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-last-call-webpack-plugin@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"
- integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
+launch-editor@^2.6.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7"
+ integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==
dependencies:
- lodash "^4.17.5"
- webpack-sources "^1.1.0"
+ picocolors "^1.0.0"
+ shell-quote "^1.7.3"
leven@^3.1.0:
version "3.1.0"
@@ -9986,72 +10442,109 @@ levn@~0.3.0:
prelude-ls "~1.1.2"
type-check "~0.3.2"
-lilconfig@2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25"
- integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==
+lightningcss-darwin-arm64@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz#56ab071e932f845dbb7667f44f5b78441175a343"
+ integrity sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==
+
+lightningcss-darwin-x64@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.19.0.tgz#c867308b88859ba61a2c46c82b1ca52ff73a1bd0"
+ integrity sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==
+
+lightningcss-linux-arm-gnueabihf@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.19.0.tgz#0f921dc45f2e5c3aea70fab98844ac0e5f2f81be"
+ integrity sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==
+
+lightningcss-linux-arm64-gnu@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.19.0.tgz#027f9df9c7f4ffa127c37a71726245a5794d7ba2"
+ integrity sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==
+
+lightningcss-linux-arm64-musl@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.19.0.tgz#85ea987da868524eac6db94f8e1eaa23d0b688a3"
+ integrity sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==
+
+lightningcss-linux-x64-gnu@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.19.0.tgz#02bec89579ab4153dccc0def755d1fd9e3ee7f3c"
+ integrity sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==
+
+lightningcss-linux-x64-musl@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.19.0.tgz#e36a5df8193ae961d22974635e4c100a1823bb8c"
+ integrity sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==
+
+lightningcss-win32-x64-msvc@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.19.0.tgz#0854dbd153035eca1396e2227c708ad43655a61c"
+ integrity sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==
+
+lightningcss@~1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.19.0.tgz#fbbad0975de66252e38d96b5bdd2a62f2dd0ffbf"
+ integrity sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==
+ dependencies:
+ detect-libc "^1.0.3"
+ optionalDependencies:
+ lightningcss-darwin-arm64 "1.19.0"
+ lightningcss-darwin-x64 "1.19.0"
+ lightningcss-linux-arm-gnueabihf "1.19.0"
+ lightningcss-linux-arm64-gnu "1.19.0"
+ lightningcss-linux-arm64-musl "1.19.0"
+ lightningcss-linux-x64-gnu "1.19.0"
+ lightningcss-linux-x64-musl "1.19.0"
+ lightningcss-win32-x64-msvc "1.19.0"
+
+lilconfig@2.1.0, lilconfig@^2.0.3:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
+ integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
lines-and-columns@^1.1.6:
version "1.2.4"
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
-lint-staged@^12.4.1:
- version "12.5.0"
- resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-12.5.0.tgz#d6925747480ae0e380d13988522f9dd8ef9126e3"
- integrity sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g==
+lint-staged@^13.2.3:
+ version "13.2.3"
+ resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.3.tgz#f899aad6c093473467e9c9e316e3c2d8a28f87a7"
+ integrity sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==
dependencies:
+ chalk "5.2.0"
cli-truncate "^3.1.0"
- colorette "^2.0.16"
- commander "^9.3.0"
+ commander "^10.0.0"
debug "^4.3.4"
- execa "^5.1.1"
- lilconfig "2.0.5"
- listr2 "^4.0.5"
+ execa "^7.0.0"
+ lilconfig "2.1.0"
+ listr2 "^5.0.7"
micromatch "^4.0.5"
normalize-path "^3.0.0"
- object-inspect "^1.12.2"
- pidtree "^0.5.0"
+ object-inspect "^1.12.3"
+ pidtree "^0.6.0"
string-argv "^0.3.1"
- supports-color "^9.2.2"
- yaml "^1.10.2"
+ yaml "^2.2.2"
-listr2@^4.0.5:
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.5.tgz#9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5"
- integrity sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==
+listr2@^5.0.7:
+ version "5.0.8"
+ resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23"
+ integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==
dependencies:
cli-truncate "^2.1.0"
- colorette "^2.0.16"
+ colorette "^2.0.19"
log-update "^4.0.0"
p-map "^4.0.0"
rfdc "^1.3.0"
- rxjs "^7.5.5"
+ rxjs "^7.8.0"
through "^2.3.8"
wrap-ansi "^7.0.0"
-loader-runner@^2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
- integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
-
-loader-utils@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
- integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^3.0.0"
- json5 "^2.1.2"
-
-loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
- integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^3.0.0"
- json5 "^1.0.1"
+loader-runner@^4.2.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1"
+ integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==
loader-utils@^2.0.0:
version "2.0.2"
@@ -10242,12 +10735,17 @@ lodash.uniqby@^4.7.0:
resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
integrity sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==
+lodash.uniqueid@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/lodash.uniqueid/-/lodash.uniqueid-4.0.1.tgz#3268f26a7c88e4f4b1758d679271814e31fa5b26"
+ integrity sha512-GQQWaIeGlL6DIIr06kj1j6sSmBxyNMwI8kaX9aKpHR/XsMTiaXDVPNPAkiboOTK9OJpTJF/dXT3xYoFQnj386Q==
+
lodash.values@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/lodash.values/-/lodash.values-4.3.0.tgz#a3a6c2b0ebecc5c2cba1c17e6e620fe81b53d347"
integrity sha512-r0RwvdCv8id9TUblb/O7rYPwVy6lerCbcawrfdo9iC/1t1wsNMJknO79WNBgwkH0hIeJ08jmvvESbFpNb4jH0Q==
-"lodash@>=3.5 <5", lodash@^4, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.7.0:
+lodash@^4, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -10286,12 +10784,7 @@ logkitty@^0.7.1:
dayjs "^1.8.15"
yargs "^15.1.0"
-loglevel@^1.6.8:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.8.0.tgz#e7ec73a57e1e7b419cb6c6ac06bf050b67356114"
- integrity sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==
-
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
@@ -10327,7 +10820,7 @@ make-dir@^2.0.0, make-dir@^2.1.0:
pify "^4.0.1"
semver "^5.6.0"
-make-dir@^3.0.0, make-dir@^3.0.2:
+make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
@@ -10341,26 +10834,6 @@ makeerror@1.0.12:
dependencies:
tmpl "1.0.5"
-map-cache@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
- integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
-
-map-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
- integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
- dependencies:
- object-visit "^1.0.0"
-
-match-sorter@^6.0.2:
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.3.1.tgz#98cc37fda756093424ddf3cbc62bfe9c75b92bda"
- integrity sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==
- dependencies:
- "@babel/runtime" "^7.12.5"
- remove-accents "0.4.2"
-
md5-file@^3.2.3:
version "3.2.3"
resolved "https://registry.yarnpkg.com/md5-file/-/md5-file-3.2.3.tgz#f9bceb941eca2214a4c0727f5e700314e770f06f"
@@ -10368,15 +10841,6 @@ md5-file@^3.2.3:
dependencies:
buffer-alloc "^1.1.0"
-md5.js@^1.3.4:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
- integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
md5@^2.2.1:
version "2.3.0"
resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f"
@@ -10405,42 +10869,33 @@ mdn-data@2.0.14:
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
-mdn-data@2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
- integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
-
media-typer@0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
+memfs@^3.4.3:
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.3.tgz#d9b40fe4f8d5788c5f895bda804cd0d9eeee9f3b"
+ integrity sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==
+ dependencies:
+ fs-monkey "^1.0.4"
+
memoize-one@^5.0.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e"
integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==
+memoize-one@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045"
+ integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==
+
memory-cache@~0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/memory-cache/-/memory-cache-0.2.0.tgz#7890b01d52c00c8ebc9d533e1f8eb17e3034871a"
integrity sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==
-memory-fs@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
- integrity sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
-memory-fs@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
- integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
merge-descriptors@1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
@@ -10468,98 +10923,120 @@ methods@~1.1.2:
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
-metro-babel-transformer@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.70.3.tgz#dca61852be273824a4b641bd1ecafff07ff3ad1f"
- integrity sha512-bWhZRMn+mIOR/s3BDpFevWScz9sV8FGktVfMlF1eJBLoX24itHDbXvTktKBYi38PWIKcHedh6THSFpJogfuwNA==
+metro-babel-transformer@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.76.5.tgz#1daea5b236c52579c9e9a04b94ae9f9677a81f3d"
+ integrity sha512-KmsMXY6VHjPLRQLwTITjLo//7ih8Ts39HPF2zODkaYav/ZLNq0QP7eGuW54dvk/sZiL9le1kaBwTN4BWQI1VZQ==
dependencies:
- "@babel/core" "^7.14.0"
- hermes-parser "0.6.0"
- metro-source-map "0.70.3"
+ "@babel/core" "^7.20.0"
+ hermes-parser "0.8.0"
+ metro-source-map "0.76.5"
nullthrows "^1.1.1"
-metro-cache-key@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.70.3.tgz#898803db04178a8f440598afba7d82a9cf35abf7"
- integrity sha512-0zpw+IcpM3hmGd5sKMdxNv3sbOIUYnMUvx1/yaM6vNRReSPmOLX0bP8fYf3CGgk8NEreZ1OHbVsuw7bdKt40Mw==
+metro-cache-key@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.76.5.tgz#9b5b7d7e24fa75c95b9e672c0f0a7a19b2a16508"
+ integrity sha512-QERX6ejYMt4BPr0ZMf7adnrOivmFSUbCim9FlU6cAeWUib+pV5P/Ph3KicWnOzJpbQz93+tHHG7vcsP6OrvLMw==
-metro-cache@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.70.3.tgz#42cf3cdf8a7b3691f3bef9a86bed38d4c5f6201f"
- integrity sha512-iCix/+z812fUqa6KlOxaTkY6LQQDoXIe/VljXkGIvpygSCmYyhjQpfQVZEVVPezFmUBYXNdabdQ6cYx6JX3yMg==
+metro-cache@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.76.5.tgz#479c4e036ab89c68f12551a354ccaaf759eb9a40"
+ integrity sha512-8XalhoMNWDK6bi41oqxIpecTYRt4WsmtoHdqshgJIYshJ6qov0NuDw0pOfnS8rgMNHxPpuWyXc7NyKERqVRzaw==
dependencies:
- metro-core "0.70.3"
- rimraf "^2.5.4"
+ metro-core "0.76.5"
+ rimraf "^3.0.2"
-metro-config@0.70.3, metro-config@^0.70.1:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.70.3.tgz#fe6f7330f679d5594e5724af7a69d4dbe1bb5bc3"
- integrity sha512-SSCDjSTygoCgzoj61DdrBeJzZDRwQxUEfcgc6t6coxWSExXNR4mOngz0q4SAam49Bmjq9J2Jft6qUKnUTPrRgA==
+metro-config@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.76.5.tgz#74624b68cff4e72576129d4e59ff8c22a7171e45"
+ integrity sha512-SCMVIDOtm8s3H62E9z2IcY4Q9GVMqDurbiJS3PHrWgTZjwZFaL59lrW4W6DvzvFZHa9bbxKric5TFtwvVuyOCg==
dependencies:
cosmiconfig "^5.0.5"
- jest-validate "^26.5.2"
- metro "0.70.3"
- metro-cache "0.70.3"
- metro-core "0.70.3"
- metro-runtime "0.70.3"
-
-metro-core@0.70.3, metro-core@^0.70.1:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.70.3.tgz#bf4dda15a5185f5a7931de463a1b97ac9ef680a0"
- integrity sha512-NzfHB/w5R7yLaOeU1tzPTbBzCRsYSvpKJkLMP0yudszKZzIAZqNdjoEJ9GZ688Wi0ynZxcU0BxukXh4my80ZBw==
- dependencies:
- jest-haste-map "^27.3.1"
+ jest-validate "^29.2.1"
+ metro "0.76.5"
+ metro-cache "0.76.5"
+ metro-core "0.76.5"
+ metro-runtime "0.76.5"
+
+metro-core@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.76.5.tgz#0196dbb32bfb3c3edd288e908daf360764c89105"
+ integrity sha512-yJvIe8a3sAG92U7+E7Bw6m4lae9RB180fp9iQZFBqY437Ilv4nE6PR8EWB6d8c4yt9fXIL1Hc+KyQv7OPFx/rQ==
+ dependencies:
lodash.throttle "^4.1.1"
- metro-resolver "0.70.3"
+ metro-resolver "0.76.5"
-metro-hermes-compiler@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-hermes-compiler/-/metro-hermes-compiler-0.70.3.tgz#ac7ed656fbcf0a59adcd010d3639e4cfdbc76b4f"
- integrity sha512-W6WttLi4E72JL/NyteQ84uxYOFMibe0PUr9aBKuJxxfCq6QRnJKOVcNY0NLW0He2tneXGk+8ZsNz8c0flEvYqg==
+metro-file-map@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.76.5.tgz#71f40660adfa1a806907f7961ef2a57884501d6c"
+ integrity sha512-9VS7zsec7BpTb+0v1DObOXso6XU/7oVBObQWp0EWBQpFcU1iF1lit2nnLQh2AyGCnSr8JVnuUe8gXhNH6xtPMg==
+ dependencies:
+ anymatch "^3.0.3"
+ debug "^2.2.0"
+ fb-watchman "^2.0.0"
+ graceful-fs "^4.2.4"
+ invariant "^2.2.4"
+ jest-regex-util "^27.0.6"
+ jest-util "^27.2.0"
+ jest-worker "^27.2.0"
+ micromatch "^4.0.4"
+ node-abort-controller "^3.1.1"
+ nullthrows "^1.1.1"
+ walker "^1.0.7"
+ optionalDependencies:
+ fsevents "^2.3.2"
-metro-inspector-proxy@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.70.3.tgz#321c25b2261e76d8c4bcc39e092714adfcb50a14"
- integrity sha512-qQoNdPGrmyoJSWYkxSDpTaAI8xyqVdNDVVj9KRm1PG8niSuYmrCCFGLLFsMvkVYwsCWUGHoGBx0UoAzVp14ejw==
+metro-inspector-proxy@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.76.5.tgz#aac222b0680c7c031e24b6246d995ca3e87868f2"
+ integrity sha512-leqwei1qNMKOEbhqlQ37K+7OIp1JRgvS5qERO+J0ZTg7ZeJTaBHSFU7FnCeRHB9Tu7/FSfypY2PxjydZDwvUEQ==
dependencies:
connect "^3.6.5"
debug "^2.2.0"
+ node-fetch "^2.2.0"
ws "^7.5.1"
- yargs "^15.3.1"
+ yargs "^17.6.2"
-metro-minify-uglify@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.70.3.tgz#2f28129ca5b8ef958f3e3fcf004c3707c7732e1e"
- integrity sha512-oHyjV9WDqOlDE1FPtvs6tIjjeY/oP1PNUPYL1wqyYtqvjN+zzAOrcbsAAL1sv+WARaeiMsWkF2bwtNo+Hghoog==
+metro-minify-terser@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.76.5.tgz#1bde3e0bcad27ec1764f78075637782ace127dba"
+ integrity sha512-zizTXqlHcG7PArB5hfz1Djz/oCaOaTSXTZDNp8Y9K2FmmfLU3dU2eoDbNNiCnm5QdDtFIndLMXdqqe6omTfp4g==
+ dependencies:
+ terser "^5.15.0"
+
+metro-minify-uglify@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.76.5.tgz#afbb5e3bbc9ca05a9a63d1c5fd74dfc9c1b4c4f8"
+ integrity sha512-JZNO5eK8r625/cheWSl+y7n0RlHLt03iSMgXPAxirH8BiFqPzs7h+c57r4AvSs793VXcF7L3sI1sAOj+nRqTeg==
dependencies:
uglify-es "^3.1.9"
-metro-react-native-babel-preset@0.70.3, metro-react-native-babel-preset@~0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.70.3.tgz#1c77ec4544ecd5fb6c803e70b21284d7483e4842"
- integrity sha512-4Nxc1zEiHEu+GTdEMEsHnRgfaBkg8f/Td3+FcQ8NTSvs+xL3LBrQy6N07idWSQZHIdGFf+tTHvRfSIWLD8u8Tg==
+metro-react-native-babel-preset@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.76.5.tgz#5379e163e014dce14066d277628ae018fda79593"
+ integrity sha512-IlVKeTon5fef77rQ6WreSmrabmbc3dEsLwr/sL80fYjobjsD8FRCnOlbaJdgUf2SMJmSIoawgjh5Yeebv+gJzg==
dependencies:
- "@babel/core" "^7.14.0"
+ "@babel/core" "^7.20.0"
"@babel/plugin-proposal-async-generator-functions" "^7.0.0"
- "@babel/plugin-proposal-class-properties" "^7.0.0"
+ "@babel/plugin-proposal-class-properties" "^7.18.0"
"@babel/plugin-proposal-export-default-from" "^7.0.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.0"
+ "@babel/plugin-proposal-numeric-separator" "^7.0.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.20.0"
"@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
- "@babel/plugin-proposal-optional-chaining" "^7.0.0"
- "@babel/plugin-syntax-dynamic-import" "^7.0.0"
+ "@babel/plugin-proposal-optional-chaining" "^7.20.0"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.0"
"@babel/plugin-syntax-export-default-from" "^7.0.0"
- "@babel/plugin-syntax-flow" "^7.2.0"
+ "@babel/plugin-syntax-flow" "^7.18.0"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0"
"@babel/plugin-syntax-optional-chaining" "^7.0.0"
"@babel/plugin-transform-arrow-functions" "^7.0.0"
- "@babel/plugin-transform-async-to-generator" "^7.0.0"
+ "@babel/plugin-transform-async-to-generator" "^7.20.0"
"@babel/plugin-transform-block-scoping" "^7.0.0"
"@babel/plugin-transform-classes" "^7.0.0"
"@babel/plugin-transform-computed-properties" "^7.0.0"
- "@babel/plugin-transform-destructuring" "^7.0.0"
- "@babel/plugin-transform-exponentiation-operator" "^7.0.0"
- "@babel/plugin-transform-flow-strip-types" "^7.0.0"
+ "@babel/plugin-transform-destructuring" "^7.20.0"
+ "@babel/plugin-transform-flow-strip-types" "^7.20.0"
"@babel/plugin-transform-function-name" "^7.0.0"
"@babel/plugin-transform-literals" "^7.0.0"
"@babel/plugin-transform-modules-commonjs" "^7.0.0"
@@ -10573,108 +11050,105 @@ metro-react-native-babel-preset@0.70.3, metro-react-native-babel-preset@~0.70.3:
"@babel/plugin-transform-shorthand-properties" "^7.0.0"
"@babel/plugin-transform-spread" "^7.0.0"
"@babel/plugin-transform-sticky-regex" "^7.0.0"
- "@babel/plugin-transform-template-literals" "^7.0.0"
"@babel/plugin-transform-typescript" "^7.5.0"
"@babel/plugin-transform-unicode-regex" "^7.0.0"
"@babel/template" "^7.0.0"
+ babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.4.0"
-metro-react-native-babel-transformer@0.70.3, metro-react-native-babel-transformer@^0.70.1:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.70.3.tgz#195597c32488f820aa9e441bbca7c04fe7de7a2d"
- integrity sha512-WKBU6S/G50j9cfmFM4k4oRYprd8u3qjleD4so1E2zbTNILg+gYla7ZFGCAvi2G0ZcqS2XuGCR375c2hF6VVvwg==
+metro-react-native-babel-transformer@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.76.5.tgz#08b7d4a0240ebdafc1f2ff0691a70a7f507a0de0"
+ integrity sha512-7m2u7jQ1I2mwGm48Vrki5cNNSv4d2HegHMGmE5G2AAa6Pr2O3ajaX2yNoAKF8TCLO38/8pa9fZd0VWAlO/YMcA==
dependencies:
- "@babel/core" "^7.14.0"
+ "@babel/core" "^7.20.0"
babel-preset-fbjs "^3.4.0"
- hermes-parser "0.6.0"
- metro-babel-transformer "0.70.3"
- metro-react-native-babel-preset "0.70.3"
- metro-source-map "0.70.3"
+ hermes-parser "0.8.0"
+ metro-babel-transformer "0.76.5"
+ metro-react-native-babel-preset "0.76.5"
+ metro-source-map "0.76.5"
nullthrows "^1.1.1"
-metro-resolver@0.70.3, metro-resolver@^0.70.1:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.70.3.tgz#c64fdd6d0a88fa62f3f99f87e539b5f603bd47bf"
- integrity sha512-5Pc5S/Gs4RlLbziuIWtvtFd9GRoILlaRC8RZDVq5JZWcWHywKy/PjNmOBNhpyvtRlzpJfy/ssIfLhu8zINt1Mw==
- dependencies:
- absolute-path "^0.0.0"
+metro-resolver@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.76.5.tgz#9d5521d73d1f5e651e36a3d80aa0e6c3a4a74f6f"
+ integrity sha512-QNsbDdf0xL1HefP6fhh1g3umqiX1qWEuCiBaTFroYRqM7u7RATt8mCu4n/FwSYhATuUUujHTIb2EduuQPbSGRQ==
-metro-runtime@0.70.3, metro-runtime@^0.70.1:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.70.3.tgz#09231b9d05dcbdfb5a13df0a45307273e6fe1168"
- integrity sha512-22xU7UdXZacniTIDZgN2EYtmfau2pPyh97Dcs+cWrLcJYgfMKjWBtesnDcUAQy3PHekDYvBdJZkoQUeskYTM+w==
+metro-runtime@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.76.5.tgz#546d3baf498b2736565c0781810c80bd9d81212e"
+ integrity sha512-1JAf9/v/NDHLhoTfiJ0n25G6dRkX7mjTkaMJ6UUXIyfIuSucoK5yAuOBx8OveNIekoLRjmyvSmyN5ojEeRmpvQ==
dependencies:
"@babel/runtime" "^7.0.0"
+ react-refresh "^0.4.0"
-metro-source-map@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.70.3.tgz#f5976108c18d4661eaa4d188c96713e5d67a903b"
- integrity sha512-zsYtZGrwRbbGEFHtmMqqeCH9K9aTGNVPsurMOWCUeQA3VGyVGXPGtLMC+CdAM9jLpUyg6jw2xh0esxi+tYH7Uw==
+metro-source-map@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.76.5.tgz#786153fcc93609c7d41c22cae16082b69cd60429"
+ integrity sha512-1EhYPcoftONlvnOzgos7daE8hsJKOgSN3nD3Xf/yaY1F0aLeGeuWfpiNLLeFDNyUhfObHSuNxNhDQF/x1GFEbw==
dependencies:
- "@babel/traverse" "^7.14.0"
- "@babel/types" "^7.0.0"
+ "@babel/traverse" "^7.20.0"
+ "@babel/types" "^7.20.0"
invariant "^2.2.4"
- metro-symbolicate "0.70.3"
+ metro-symbolicate "0.76.5"
nullthrows "^1.1.1"
- ob1 "0.70.3"
+ ob1 "0.76.5"
source-map "^0.5.6"
vlq "^1.0.0"
-metro-symbolicate@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.70.3.tgz#b039e5629c4ed0c999ea0496d580e1c98260f5cb"
- integrity sha512-JTYkF1dpeDUssQ84juE1ycnhHki2ylJBBdJE1JHtfu5oC+z1ElDbBdPHq90Uvt8HbRov/ZAnxvv7Zy6asS+WCA==
+metro-symbolicate@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.76.5.tgz#f2fbb75ca9436ea053bde702fa2a20146ff10be1"
+ integrity sha512-7iftzh6G6HO4UDBmjsi2Yu4d6IkApv6Kg+jmBvkTjCXr8HwnKKum89gMg/FRMix+Rhhut0dnMpz6mAbtKTU9JQ==
dependencies:
invariant "^2.2.4"
- metro-source-map "0.70.3"
+ metro-source-map "0.76.5"
nullthrows "^1.1.1"
source-map "^0.5.6"
through2 "^2.0.1"
vlq "^1.0.0"
-metro-transform-plugins@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.70.3.tgz#7fe87cd0d8979b4d5d6e375751d86188fff38fd9"
- integrity sha512-dQRIJoTkWZN2IVS2KzgS1hs7ZdHDX3fS3esfifPkqFAEwHiLctCf0EsPgIknp0AjMLvmGWfSLJigdRB/dc0ASw==
+metro-transform-plugins@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.76.5.tgz#b4a49b5b55fd3bc24c5a65fa8e40ba07d84e4170"
+ integrity sha512-7pJ24aRuvzdQYpX/eOyodr4fnwVJP5ArNLBE1d0DOU9sQxsGplOORDTGAqw2L01+UgaSJiiwEoFMw7Z91HAS+Q==
dependencies:
- "@babel/core" "^7.14.0"
- "@babel/generator" "^7.14.0"
+ "@babel/core" "^7.20.0"
+ "@babel/generator" "^7.20.0"
"@babel/template" "^7.0.0"
- "@babel/traverse" "^7.14.0"
+ "@babel/traverse" "^7.20.0"
nullthrows "^1.1.1"
-metro-transform-worker@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.70.3.tgz#62bfa28ebef98803531c4bcb558de5fc804c94ef"
- integrity sha512-MtVVsnHhhBOp9GRLCdAb2mD1dTCsIzT4+m34KMRdBDCEbDIb90YafT5prpU8qbj5uKd0o2FOQdrJ5iy5zQilHw==
+metro-transform-worker@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.76.5.tgz#d101ad46c1a607c7bc52f0a0888961d237df42bd"
+ integrity sha512-xN6Kb06o9u5A7M1bbl7oPfQFmt4Kmi3CMXp5j9OcK37AFc+u6YXH8x/6e9b3Cq50rlBYuCXDOOYAWI5/tYNt2w==
dependencies:
- "@babel/core" "^7.14.0"
- "@babel/generator" "^7.14.0"
- "@babel/parser" "^7.14.0"
- "@babel/types" "^7.0.0"
+ "@babel/core" "^7.20.0"
+ "@babel/generator" "^7.20.0"
+ "@babel/parser" "^7.20.0"
+ "@babel/types" "^7.20.0"
babel-preset-fbjs "^3.4.0"
- metro "0.70.3"
- metro-babel-transformer "0.70.3"
- metro-cache "0.70.3"
- metro-cache-key "0.70.3"
- metro-hermes-compiler "0.70.3"
- metro-source-map "0.70.3"
- metro-transform-plugins "0.70.3"
+ metro "0.76.5"
+ metro-babel-transformer "0.76.5"
+ metro-cache "0.76.5"
+ metro-cache-key "0.76.5"
+ metro-source-map "0.76.5"
+ metro-transform-plugins "0.76.5"
nullthrows "^1.1.1"
-metro@0.70.3, metro@^0.70.1:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/metro/-/metro-0.70.3.tgz#4290f538ab5446c7050e718b5c5823eea292c5c2"
- integrity sha512-uEWS7xg8oTetQDABYNtsyeUjdLhH3KAvLFpaFFoJqUpOk2A3iygszdqmjobFl6W4zrvKDJS+XxdMR1roYvUhTw==
+metro@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/metro/-/metro-0.76.5.tgz#0defc2a773dcdfe6569d1bd7f7a25a7424ce6f11"
+ integrity sha512-aEQiqNFibfx4ajUXm7Xatsv43r/UQ0xE53T3XqgZBzsxhF235tf1cl8t0giawi0RbLtDS+Fu4kg2bVBKDYFy7A==
dependencies:
"@babel/code-frame" "^7.0.0"
- "@babel/core" "^7.14.0"
- "@babel/generator" "^7.14.0"
- "@babel/parser" "^7.14.0"
+ "@babel/core" "^7.20.0"
+ "@babel/generator" "^7.20.0"
+ "@babel/parser" "^7.20.0"
"@babel/template" "^7.0.0"
- "@babel/traverse" "^7.14.0"
- "@babel/types" "^7.0.0"
- absolute-path "^0.0.0"
+ "@babel/traverse" "^7.20.0"
+ "@babel/types" "^7.20.0"
accepts "^1.3.7"
async "^3.2.2"
chalk "^4.0.0"
@@ -10683,64 +11157,39 @@ metro@0.70.3, metro@^0.70.1:
debug "^2.2.0"
denodeify "^1.2.1"
error-stack-parser "^2.0.6"
- fs-extra "^1.0.0"
graceful-fs "^4.2.4"
- hermes-parser "0.6.0"
- image-size "^0.6.0"
+ hermes-parser "0.8.0"
+ image-size "^1.0.2"
invariant "^2.2.4"
- jest-haste-map "^27.3.1"
jest-worker "^27.2.0"
+ jsc-safe-url "^0.2.2"
lodash.throttle "^4.1.1"
- metro-babel-transformer "0.70.3"
- metro-cache "0.70.3"
- metro-cache-key "0.70.3"
- metro-config "0.70.3"
- metro-core "0.70.3"
- metro-hermes-compiler "0.70.3"
- metro-inspector-proxy "0.70.3"
- metro-minify-uglify "0.70.3"
- metro-react-native-babel-preset "0.70.3"
- metro-resolver "0.70.3"
- metro-runtime "0.70.3"
- metro-source-map "0.70.3"
- metro-symbolicate "0.70.3"
- metro-transform-plugins "0.70.3"
- metro-transform-worker "0.70.3"
+ metro-babel-transformer "0.76.5"
+ metro-cache "0.76.5"
+ metro-cache-key "0.76.5"
+ metro-config "0.76.5"
+ metro-core "0.76.5"
+ metro-file-map "0.76.5"
+ metro-inspector-proxy "0.76.5"
+ metro-minify-terser "0.76.5"
+ metro-minify-uglify "0.76.5"
+ metro-react-native-babel-preset "0.76.5"
+ metro-resolver "0.76.5"
+ metro-runtime "0.76.5"
+ metro-source-map "0.76.5"
+ metro-symbolicate "0.76.5"
+ metro-transform-plugins "0.76.5"
+ metro-transform-worker "0.76.5"
mime-types "^2.1.27"
node-fetch "^2.2.0"
nullthrows "^1.1.1"
- rimraf "^2.5.4"
+ rimraf "^3.0.2"
serialize-error "^2.1.0"
source-map "^0.5.6"
strip-ansi "^6.0.0"
- temp "0.8.3"
throat "^5.0.0"
ws "^7.5.1"
- yargs "^15.3.1"
-
-microevent.ts@~0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
- integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
-
-micromatch@^3.1.10, micromatch@^3.1.4:
- version "3.1.10"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
- integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
- dependencies:
- 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"
+ yargs "^17.6.2"
micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
version "4.0.5"
@@ -10750,25 +11199,12 @@ micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
braces "^3.0.2"
picomatch "^2.3.1"
-microseconds@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/microseconds/-/microseconds-0.2.0.tgz#233b25f50c62a65d861f978a4a4f8ec18797dc39"
- integrity sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==
-
-miller-rabin@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
- integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
- dependencies:
- bn.js "^4.0.0"
- brorand "^1.0.1"
-
mime-db@1.52.0, "mime-db@>= 1.43.0 < 2":
version "1.52.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
-mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34:
+mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34:
version "2.1.35"
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
@@ -10795,40 +11231,43 @@ mimic-fn@^2.1.0:
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-mini-css-extract-plugin@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.5.0.tgz#ac0059b02b9692515a637115b0cc9fed3a35c7b0"
- integrity sha512-IuaLjruM0vMKhUUT51fQdQzBYTX49dLj8w68ALEAe2A4iYNpIC4eMac67mt3NzycvjOlf07/kYxJDc0RTl1Wqw==
+mimic-fn@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc"
+ integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==
+
+min-indent@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
+ integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
+
+mini-css-extract-plugin@^2.5.2:
+ version "2.7.6"
+ resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d"
+ integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==
dependencies:
- loader-utils "^1.1.0"
- schema-utils "^1.0.0"
- webpack-sources "^1.1.0"
+ schema-utils "^4.0.0"
-minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
+minimalistic-assert@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
-minimalistic-crypto-utils@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
- integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==
-
-"minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
+"minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
dependencies:
brace-expansion "^1.1.7"
-minimatch@3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
- integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
+minimatch@^5.0.1:
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
+ integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
dependencies:
- brace-expansion "^1.1.7"
+ brace-expansion "^2.0.1"
-minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.6:
+minimist@^1.2.0, minimist@^1.2.6:
version "1.2.6"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
@@ -10869,10 +11308,10 @@ minizlib@^2.1.1:
minipass "^3.0.0"
yallist "^4.0.0"
-miragejs@^0.1.44:
- version "0.1.45"
- resolved "https://registry.yarnpkg.com/miragejs/-/miragejs-0.1.45.tgz#b43ec9cb46f4229e6db3e45696dac53967abfadc"
- integrity sha512-NFdpFVXmBuQfErQh70yL44h4NhSZYHZVbg0qzrIxB5gRZYNZGH1sriduejbxpmKVdqCbmjPypaXvEgBgohqydQ==
+miragejs@^0.1.47:
+ version "0.1.47"
+ resolved "https://registry.yarnpkg.com/miragejs/-/miragejs-0.1.47.tgz#c4a8dff21adfc0ce3181d78987f11848d74c6869"
+ integrity sha512-99tuCbIAlMhNhyF3s5d3+5/FdJ7O4jSq/5e3e+sDv7L8dZdwJuwutXe0pobJ7hm6yRChTDjK+Nn8dZZd175wbg==
dependencies:
"@miragejs/pretender-node-polyfill" "^0.1.0"
inflected "^2.0.4"
@@ -10901,31 +11340,12 @@ miragejs@^0.1.44:
lodash.values "^4.3.0"
pretender "^3.4.7"
-mississippi@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
- integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
- dependencies:
- concat-stream "^1.5.0"
- duplexify "^3.4.2"
- end-of-stream "^1.1.0"
- flush-write-stream "^1.0.0"
- from2 "^2.1.0"
- parallel-transform "^1.1.0"
- pump "^3.0.0"
- pumpify "^1.3.3"
- stream-each "^1.1.0"
- through2 "^2.0.0"
-
-mixin-deep@^1.2.0:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
- integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
- dependencies:
- for-in "^1.0.2"
- is-extendable "^1.0.1"
+mitt@1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/mitt/-/mitt-1.1.3.tgz#528c506238a05dce11cd914a741ea2cc332da9b8"
+ integrity sha512-mUDCnVNsAi+eD6qA0HkRkwYczbLHJ49z17BGe2PYRhZL4wpZUFZGJHU7/5tmvohoma+Hdn0Vh/oJTiPEmgSruA==
-mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.1:
+mkdirp@^0.5.1, mkdirp@~0.5.1:
version "0.5.6"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
@@ -10937,25 +11357,12 @@ mkdirp@^1.0.3, mkdirp@^1.0.4:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
-moti@^0.18.0:
- version "0.18.0"
- resolved "https://registry.yarnpkg.com/moti/-/moti-0.18.0.tgz#46837ed21c72d04399a5ca3b0cf76f99fe17d54b"
- integrity sha512-/OJYET+TkLA+LTCE6hYeCaHYDv4IIRVDLfFmA7WrcocfS0PSj99VwUb48HZ40GAwrr0atkGDBRizdj5q5sFn3Q==
- dependencies:
- "@motify/components" "^0.18.0"
- "@motify/core" "^0.18.0"
-
-move-concurrently@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
- integrity sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==
+moti@^0.25.3:
+ version "0.25.3"
+ resolved "https://registry.yarnpkg.com/moti/-/moti-0.25.3.tgz#022213cb1fc545d13245daeeaed31940050b80c0"
+ integrity sha512-n6YR56i+tQdIuiOfspeCCvNR8vAJtPdfclt4998rX6S6kQn+/5DmfBWkOneN63JFTWM/oYnZHwwpF4z4LUXohQ==
dependencies:
- aproba "^1.1.1"
- copy-concurrently "^1.0.0"
- fs-write-stream-atomic "^1.0.8"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.3"
+ framer-motion "^6.5.1"
mri@^1.1.5:
version "1.2.0"
@@ -10977,17 +11384,12 @@ ms@2.1.3, ms@^2.1.1:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
-multicast-dns-service-types@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
- integrity sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==
-
-multicast-dns@^6.0.1:
- version "6.2.3"
- resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229"
- integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==
+multicast-dns@^7.2.5:
+ version "7.2.5"
+ resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced"
+ integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==
dependencies:
- dns-packet "^1.3.1"
+ dns-packet "^5.2.2"
thunky "^1.0.2"
multimatch@^4.0.0:
@@ -11019,55 +11421,29 @@ mz@^2.7.0:
object-assign "^4.0.1"
thenify-all "^1.0.0"
-nan@^2.12.1:
- version "2.16.0"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.16.0.tgz#664f43e45460fb98faf00edca0bb0d7b8dce7916"
- integrity sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==
-
-nano-time@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/nano-time/-/nano-time-1.0.0.tgz#b0554f69ad89e22d0907f7a12b0993a5d96137ef"
- integrity sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==
- dependencies:
- big-integer "^1.6.16"
-
-nanoid@^3.1.23, nanoid@^3.3.1, nanoid@^3.3.3:
+nanoid@^3.1.23, nanoid@^3.3.1:
version "3.3.4"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
-nanomatch@^1.2.9:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
- integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
- dependencies:
- 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"
+nanoid@^3.3.6:
+ version "3.3.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
+ integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
-native-base@^3.4.9:
- version "3.4.9"
- resolved "https://registry.yarnpkg.com/native-base/-/native-base-3.4.9.tgz#01e6a1a674d46fd04ef34cce8dc221a9cc20c966"
- integrity sha512-5Fu2SpVHcgSsvyaiPEeSSwYyymajC34TNqwWmimVEv9+QyrkT2qfiY52t/cmhpnPDECodIq8fyjPTJIqIK3tMw==
+native-base@^3.4.28:
+ version "3.4.28"
+ resolved "https://registry.yarnpkg.com/native-base/-/native-base-3.4.28.tgz#81b174c8fab1a38fc4560abc12b63dc836c6a14a"
+ integrity sha512-EDg9UFDNmfYXPInpRbxce+4oWFEIGaM7aG6ey4hVllcvMC3PkgCvkiXEB+7EemgC7Qr8CuFjgMTx7P0vvnwZeQ==
dependencies:
- "@react-aria/focus" "^3.2.3"
- "@react-aria/utils" "^3.6.0"
"@react-aria/visually-hidden" "^3.2.1"
"@react-native-aria/button" "^0.2.4"
- "@react-native-aria/checkbox" "^0.2.2"
+ "@react-native-aria/checkbox" "^0.2.3"
"@react-native-aria/combobox" "^0.2.4-alpha.0"
- "@react-native-aria/focus" "^0.2.4"
+ "@react-native-aria/focus" "^0.2.6"
"@react-native-aria/interactions" "^0.2.2"
"@react-native-aria/listbox" "^0.2.4-alpha.3"
- "@react-native-aria/overlays" "0.3.3-rc.0"
+ "@react-native-aria/overlays" "^0.3.3"
"@react-native-aria/radio" "^0.2.4"
"@react-native-aria/slider" "^0.2.5-alpha.1"
"@react-native-aria/tabs" "^0.2.7"
@@ -11079,7 +11455,7 @@ native-base@^3.4.9:
"@react-stately/slider" "3.0.1"
"@react-stately/tabs" "3.0.0-alpha.1"
"@react-stately/toggle" "3.2.1"
- "@types/lodash.has" "^4.5.6"
+ inline-style-prefixer "^6.0.1"
lodash.clonedeep "^4.5.0"
lodash.get "^4.4.2"
lodash.has "^4.5.2"
@@ -11091,9 +11467,15 @@ native-base@^3.4.9:
lodash.omit "^4.5.0"
lodash.omitby "^4.6.0"
lodash.pick "^4.4.0"
- react-native-keyboard-aware-scroll-view "^0.9.5"
+ lodash.uniqueid "^4.0.1"
stable-hash "^0.0.2"
tinycolor2 "^1.4.2"
+ use-sync-external-store "^1.2.0"
+
+natural-compare-lite@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4"
+ integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==
natural-compare@^1.4.0:
version "1.4.0"
@@ -11110,7 +11492,7 @@ negotiator@0.6.3:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
-neo-async@^2.5.0, neo-async@^2.6.1:
+neo-async@^2.5.0, neo-async@^2.6.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
@@ -11138,6 +11520,11 @@ nocache@^3.0.1:
resolved "https://registry.yarnpkg.com/nocache/-/nocache-3.0.4.tgz#5b37a56ec6e09fc7d401dceaed2eab40c8bfdf79"
integrity sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==
+node-abort-controller@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548"
+ integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==
+
node-dir@^0.1.17:
version "0.1.17"
resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5"
@@ -11152,21 +11539,17 @@ node-fetch@2.6.7, node-fetch@^2.2.0, node-fetch@^2.6.0, node-fetch@^2.6.1, node-
dependencies:
whatwg-url "^5.0.0"
-node-forge@^0.10.0:
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
- integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
-
-node-forge@^1.2.1, node-forge@^1.3.1:
+node-forge@^1, node-forge@^1.2.1, node-forge@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==
-node-html-parser@^1.2.12:
- version "1.4.9"
- resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c"
- integrity sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==
+node-html-parser@^5.2.0:
+ version "5.4.2"
+ resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-5.4.2.tgz#93e004038c17af80226c942336990a0eaed8136a"
+ integrity sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==
dependencies:
+ css-select "^4.2.1"
he "1.2.0"
node-int64@^0.4.0:
@@ -11174,84 +11557,26 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-node-libs-browser@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
- integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
- dependencies:
- assert "^1.1.1"
- browserify-zlib "^0.2.0"
- buffer "^4.3.0"
- console-browserify "^1.1.0"
- constants-browserify "^1.0.0"
- crypto-browserify "^3.11.0"
- domain-browser "^1.1.1"
- events "^3.0.0"
- https-browserify "^1.0.0"
- os-browserify "^0.3.0"
- path-browserify "0.0.1"
- process "^0.11.10"
- punycode "^1.2.4"
- querystring-es3 "^0.2.0"
- readable-stream "^2.3.3"
- stream-browserify "^2.0.1"
- stream-http "^2.7.2"
- string_decoder "^1.0.0"
- timers-browserify "^2.0.4"
- tty-browserify "0.0.0"
- url "^0.11.0"
- util "^0.11.0"
- vm-browserify "^1.0.1"
-
-node-notifier@^8.0.0:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5"
- integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==
- dependencies:
- growly "^1.3.0"
- is-wsl "^2.2.0"
- semver "^7.3.2"
- shellwords "^0.1.1"
- uuid "^8.3.0"
- which "^2.0.2"
-
-node-releases@^1.1.61:
- version "1.1.77"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.77.tgz#50b0cfede855dd374e7585bf228ff34e57c1c32e"
- integrity sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==
+node-releases@^2.0.12:
+ version "2.0.12"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039"
+ integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==
node-releases@^2.0.3, node-releases@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666"
integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==
+node-releases@^2.0.6:
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
+ integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
+
node-stream-zip@^1.9.1:
version "1.15.0"
resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.15.0.tgz#158adb88ed8004c6c49a396b50a6a5de3bca33ea"
integrity sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==
-normalize-css-color@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/normalize-css-color/-/normalize-css-color-1.0.2.tgz#02991e97cccec6623fe573afbbf0de6a1f3e9f8d"
- integrity sha1-Apkel8zOxmI/5XOvu/Deah8+n40=
-
-normalize-package-data@^2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
- integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
- dependencies:
- hosted-git-info "^2.1.4"
- resolve "^1.10.0"
- semver "2 || 3 || 4 || 5"
- validate-npm-package-license "^3.0.1"
-
-normalize-path@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
- integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
- dependencies:
- remove-trailing-separator "^1.0.1"
-
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
@@ -11273,10 +11598,10 @@ normalize-url@^2.0.1:
query-string "^5.0.1"
sort-keys "^2.0.0"
-normalize-url@^3.0.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
- integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
+normalize-url@^6.0.1:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a"
+ integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
npm-package-arg@^7.0.0:
version "7.0.0"
@@ -11302,12 +11627,12 @@ npm-run-path@^4.0.0, npm-run-path@^4.0.1:
dependencies:
path-key "^3.0.0"
-nth-check@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
- integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
+npm-run-path@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00"
+ integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==
dependencies:
- boolbase "~1.0.0"
+ path-key "^4.0.0"
nth-check@^2.0.1:
version "2.1.1"
@@ -11321,35 +11646,31 @@ nullthrows@^1.1.1:
resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1"
integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==
-nwsapi@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
- integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
+nwsapi@^2.2.2:
+ version "2.2.5"
+ resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.5.tgz#a52744c61b3889dd44b0a158687add39b8d935e2"
+ integrity sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==
-ob1@0.70.3:
- version "0.70.3"
- resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.70.3.tgz#f48cd5a5abf54b0c423b1b06b6d4ff4d049816cb"
- integrity sha512-Vy9GGhuXgDRY01QA6kdhToPd8AkLdLpX9GjH5kpqluVqTu70mgOm7tpGoJDZGaNbr9nJlJgnipqHJQRPORixIQ==
+ob1@0.76.5:
+ version "0.76.5"
+ resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.76.5.tgz#85476959743d8f6722faf0ac29bee8861f50120b"
+ integrity sha512-HoxZXMXNuY/eIXGoX7gx1C4O3eB4kJJMola6KoFaMm7PGGg39+AnhbgMASYVmSvP2lwU3545NyiR63g8J9PW3w==
object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
-object-copy@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
- integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
- dependencies:
- copy-descriptor "^0.1.0"
- define-property "^0.2.5"
- kind-of "^3.0.3"
-
object-inspect@^1.12.0, object-inspect@^1.12.2:
version "1.12.2"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
+object-inspect@^1.12.3:
+ version "1.12.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
+ integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
+
object-inspect@^1.9.0:
version "1.12.1"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.1.tgz#28a661153bad7e470e4b01479ef1cb91ce511191"
@@ -11368,13 +11689,6 @@ object-keys@^1.1.1:
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-object-visit@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
- integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
- dependencies:
- isobject "^3.0.0"
-
object.assign@^4.1.0, object.assign@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
@@ -11385,50 +11699,43 @@ object.assign@^4.1.0, object.assign@^4.1.2:
has-symbols "^1.0.1"
object-keys "^1.1.1"
-object.entries@^1.1.0, object.entries@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
- integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.1"
-
-object.fromentries@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
- integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
+object.assign@^4.1.4:
+ version "4.1.4"
+ resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
+ integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.1"
+ define-properties "^1.1.4"
+ has-symbols "^1.0.3"
+ object-keys "^1.1.1"
-object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0:
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz#7965e6437a57278b587383831a9b829455a4bc37"
- integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==
+object.entries@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23"
+ integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==
dependencies:
- array.prototype.reduce "^1.0.4"
call-bind "^1.0.2"
define-properties "^1.1.4"
- es-abstract "^1.20.1"
+ es-abstract "^1.20.4"
-object.hasown@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3"
- integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==
+object.fromentries@^2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73"
+ integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==
dependencies:
+ call-bind "^1.0.2"
define-properties "^1.1.4"
- es-abstract "^1.19.5"
+ es-abstract "^1.20.4"
-object.pick@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
- integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
+object.hasown@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92"
+ integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==
dependencies:
- isobject "^3.0.1"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
-object.values@^1.1.0, object.values@^1.1.5:
+object.values@^1.1.5:
version "1.1.5"
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
@@ -11437,10 +11744,14 @@ object.values@^1.1.0, object.values@^1.1.5:
define-properties "^1.1.3"
es-abstract "^1.19.1"
-oblivious-set@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/oblivious-set/-/oblivious-set-1.0.0.tgz#c8316f2c2fb6ff7b11b6158db3234c49f733c566"
- integrity sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==
+object.values@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d"
+ integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
obuf@^1.0.0, obuf@^1.1.2:
version "1.1.2"
@@ -11487,6 +11798,13 @@ onetime@^5.1.0, onetime@^5.1.2:
dependencies:
mimic-fn "^2.1.0"
+onetime@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4"
+ integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==
+ dependencies:
+ mimic-fn "^4.0.0"
+
open@^6.2.0:
version "6.4.0"
resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9"
@@ -11494,7 +11812,7 @@ open@^6.2.0:
dependencies:
is-wsl "^1.1.0"
-open@^7.0.2:
+open@^7.4.2:
version "7.4.2"
resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
@@ -11511,20 +11829,14 @@ open@^8.0.4, open@^8.3.0:
is-docker "^2.1.1"
is-wsl "^2.2.0"
-opn@^5.5.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
- integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
- dependencies:
- is-wsl "^1.1.0"
-
-optimize-css-assets-webpack-plugin@^5.0.3:
- version "5.0.8"
- resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.8.tgz#cbccdcf5a6ef61d4f8cc78cf083a67446e5f402a"
- integrity sha512-mgFS1JdOtEGzD8l+EuISqL57cKO+We9GcoiQEmdCWRqqck+FGNmYJtx9qfAPzEz+lRrlThWMuGDaRkI/yWNx/Q==
+open@^8.0.9:
+ version "8.4.2"
+ resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
+ integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
dependencies:
- cssnano "^4.1.10"
- last-call-webpack-plugin "^3.0.0"
+ define-lazy-prop "^2.0.0"
+ is-docker "^2.1.1"
+ is-wsl "^2.2.0"
optionator@^0.8.1:
version "0.8.3"
@@ -11538,17 +11850,17 @@ optionator@^0.8.1:
type-check "~0.3.2"
word-wrap "~1.2.3"
-optionator@^0.9.1:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
- integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+optionator@^0.9.3:
+ version "0.9.3"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64"
+ integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
dependencies:
+ "@aashutoshrathi/word-wrap" "^1.2.3"
deep-is "^0.1.3"
fast-levenshtein "^2.0.6"
levn "^0.4.1"
prelude-ls "^1.2.1"
type-check "^0.4.0"
- word-wrap "^1.2.3"
ora@3.4.0:
version "3.4.0"
@@ -11577,11 +11889,6 @@ ora@^5.4.1:
strip-ansi "^6.0.0"
wcwidth "^1.0.1"
-os-browserify@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
- integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==
-
os-homedir@^1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
@@ -11600,11 +11907,6 @@ osenv@^0.1.5:
os-homedir "^1.0.0"
os-tmpdir "^1.0.0"
-p-each-series@^2.1.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a"
- integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==
-
p-finally@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
@@ -11624,7 +11926,7 @@ p-limit@^2.0.0, p-limit@^2.2.0:
dependencies:
p-try "^2.0.0"
-p-limit@^3.0.2:
+p-limit@^3.0.2, p-limit@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
@@ -11671,12 +11973,13 @@ p-map@^4.0.0:
dependencies:
aggregate-error "^3.0.0"
-p-retry@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328"
- integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==
+p-retry@^4.5.0:
+ version "4.6.2"
+ resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16"
+ integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==
dependencies:
- retry "^0.12.0"
+ "@types/retry" "0.12.0"
+ retry "^0.13.1"
p-try@^1.0.0:
version "1.0.0"
@@ -11688,21 +11991,7 @@ p-try@^2.0.0:
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-pako@~1.0.5:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
- integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
-
-parallel-transform@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
- integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
- dependencies:
- cyclist "^1.0.1"
- inherits "^2.0.3"
- readable-stream "^2.1.5"
-
-param-case@^3.0.3:
+param-case@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
@@ -11717,17 +12006,6 @@ parent-module@^1.0.0:
dependencies:
callsites "^3.0.0"
-parse-asn1@^5.0.0, parse-asn1@^5.1.5:
- version "5.1.6"
- resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
- integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
- dependencies:
- asn1.js "^5.2.0"
- browserify-aes "^1.0.0"
- evp_bytestokey "^1.0.0"
- pbkdf2 "^3.0.3"
- safe-buffer "^5.1.1"
-
parse-json@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
@@ -11736,7 +12014,7 @@ parse-json@^4.0.0:
error-ex "^1.3.1"
json-parse-better-errors "^1.0.1"
-parse-json@^5.0.0:
+parse-json@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
@@ -11753,20 +12031,17 @@ parse-png@^2.1.0:
dependencies:
pngjs "^3.3.0"
-parse-srcset@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1"
- integrity sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==
-
parse-svg-path@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/parse-svg-path/-/parse-svg-path-0.1.2.tgz#7a7ec0d1eb06fa5325c7d3e009b859a09b5d49eb"
integrity sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==
-parse5@6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
- integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
+parse5@^7.0.0, parse5@^7.1.1:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32"
+ integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==
+ dependencies:
+ entities "^4.4.0"
parseurl@~1.3.2, parseurl@~1.3.3:
version "1.3.3"
@@ -11781,10 +12056,12 @@ pascal-case@^3.1.2:
no-case "^3.0.4"
tslib "^2.0.3"
-pascalcase@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
- integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
+pass-stream@^0.1.5:
+ version "0.1.5"
+ resolved "https://registry.yarnpkg.com/pass-stream/-/pass-stream-0.1.5.tgz#9e3afa4d5825cdd1376075bdb56de36dfb33649f"
+ integrity sha512-pGa0s6MkFFPNs9tN3tYbZTaelRX8YIvsb/qmaJ3zjoMd5IJwOvy+sMvdieUDV03MF0O+dklnwG3hJBb2RYbxFA==
+ dependencies:
+ readable-stream "https://github.com/jeffbski/readable-stream/archive/v1.0.2-object-transform2-ret-self.tar.gz"
password-prompt@^1.0.4:
version "1.1.2"
@@ -11794,21 +12071,31 @@ password-prompt@^1.0.4:
ansi-escapes "^3.1.0"
cross-spawn "^6.0.5"
-path-browserify@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
- integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
+patch-package@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-7.0.1.tgz#ab6a20489f9d0253726fc692f60d3d4a2d3fc9cf"
+ integrity sha512-f2GYU+6fz67znVfroq0gRuE08IWbGaRGMCFVwaz+qgG6k0K7rEKG8rXL7vDBtAMBjk8z/AhaiDuWs1aGjr15Hg==
+ dependencies:
+ "@yarnpkg/lockfile" "^1.1.0"
+ chalk "^4.1.2"
+ ci-info "^3.7.0"
+ cross-spawn "^7.0.3"
+ find-yarn-workspace-root "^2.0.0"
+ fs-extra "^9.0.0"
+ klaw-sync "^6.0.0"
+ minimist "^1.2.6"
+ open "^7.4.2"
+ rimraf "^2.6.3"
+ semver "^7.0.0"
+ slash "^2.0.0"
+ tmp "^0.0.33"
+ yaml "^2.2.2"
path-browserify@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==
-path-dirname@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
- integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==
-
path-exists@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
@@ -11839,7 +12126,12 @@ path-key@^3.0.0, path-key@^3.1.0:
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
-path-parse@^1.0.5, path-parse@^1.0.6, path-parse@^1.0.7:
+path-key@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18"
+ integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==
+
+path-parse@^1.0.5, path-parse@^1.0.7:
version "1.0.7"
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
@@ -11854,22 +12146,6 @@ path-type@^4.0.0:
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-pbkdf2@^3.0.3:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075"
- integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
- dependencies:
- create-hash "^1.1.2"
- create-hmac "^1.1.4"
- ripemd160 "^2.0.1"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
-picocolors@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f"
- integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==
-
picocolors@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
@@ -11880,10 +12156,10 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1:
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
-pidtree@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.5.0.tgz#ad5fbc1de78b8a5f99d6fbdd4f6e4eee21d1aca1"
- integrity sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==
+pidtree@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c"
+ integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==
pify@^2.0.0:
version "2.3.0"
@@ -11907,7 +12183,7 @@ pinkie@^2.0.0:
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==
-pirates@^4.0.1, pirates@^4.0.5:
+pirates@^4.0.1, pirates@^4.0.4, pirates@^4.0.5:
version "4.0.5"
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
@@ -11926,14 +12202,14 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0:
dependencies:
find-up "^4.0.0"
-pkg-up@3.1.0, pkg-up@^3.1.0:
+pkg-up@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
dependencies:
find-up "^3.0.0"
-plist@^3.0.2, plist@^3.0.5:
+plist@^3.0.5:
version "3.0.5"
resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz#2cbeb52d10e3cdccccf0c11a63a85d830970a987"
integrity sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==
@@ -11951,13 +12227,6 @@ pngjs@^5.0.0:
resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-5.0.0.tgz#e79dd2b215767fd9c04561c01236df960bce7fbb"
integrity sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==
-pnp-webpack-plugin@^1.5.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz#65741384f6d8056f36e2255a8d67ffc20866f5c9"
- integrity sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==
- dependencies:
- ts-pnp "^1.1.6"
-
popmotion@11.0.3:
version "11.0.3"
resolved "https://registry.yarnpkg.com/popmotion/-/popmotion-11.0.3.tgz#565c5f6590bbcddab7a33a074bb2ba97e24b0cc9"
@@ -11978,298 +12247,217 @@ popmotion@9.3.1:
style-value-types "4.1.1"
tslib "^1.10.0"
-portfinder@^1.0.26:
- version "1.0.28"
- resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778"
- integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==
- dependencies:
- async "^2.6.2"
- debug "^3.1.1"
- mkdirp "^0.5.5"
-
-posix-character-classes@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
- integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
-
-postcss-calc@^7.0.1:
- version "7.0.5"
- resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e"
- integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==
+postcss-calc@^8.2.3:
+ version "8.2.4"
+ resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5"
+ integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==
dependencies:
- postcss "^7.0.27"
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.0.2"
+ postcss-selector-parser "^6.0.9"
+ postcss-value-parser "^4.2.0"
-postcss-colormin@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381"
- integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==
+postcss-colormin@^5.3.1:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f"
+ integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==
dependencies:
- browserslist "^4.0.0"
- color "^3.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ browserslist "^4.21.4"
+ caniuse-api "^3.0.0"
+ colord "^2.9.1"
+ postcss-value-parser "^4.2.0"
-postcss-convert-values@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f"
- integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==
+postcss-convert-values@^5.1.3:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393"
+ integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==
dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ browserslist "^4.21.4"
+ postcss-value-parser "^4.2.0"
-postcss-discard-comments@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033"
- integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==
- dependencies:
- postcss "^7.0.0"
+postcss-discard-comments@^5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696"
+ integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==
-postcss-discard-duplicates@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb"
- integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==
- dependencies:
- postcss "^7.0.0"
+postcss-discard-duplicates@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848"
+ integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==
-postcss-discard-empty@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765"
- integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==
- dependencies:
- postcss "^7.0.0"
+postcss-discard-empty@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c"
+ integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==
-postcss-discard-overridden@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57"
- integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==
- dependencies:
- postcss "^7.0.0"
+postcss-discard-overridden@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e"
+ integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==
-postcss-merge-longhand@^4.0.11:
- version "4.0.11"
- resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24"
- integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==
+postcss-merge-longhand@^5.1.7:
+ version "5.1.7"
+ resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16"
+ integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==
dependencies:
- css-color-names "0.0.4"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- stylehacks "^4.0.0"
+ postcss-value-parser "^4.2.0"
+ stylehacks "^5.1.1"
-postcss-merge-rules@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650"
- integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==
+postcss-merge-rules@^5.1.4:
+ version "5.1.4"
+ resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c"
+ integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==
dependencies:
- browserslist "^4.0.0"
+ browserslist "^4.21.4"
caniuse-api "^3.0.0"
- cssnano-util-same-parent "^4.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
- vendors "^1.0.0"
+ cssnano-utils "^3.1.0"
+ postcss-selector-parser "^6.0.5"
-postcss-minify-font-values@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6"
- integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==
+postcss-minify-font-values@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b"
+ integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==
dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ postcss-value-parser "^4.2.0"
-postcss-minify-gradients@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471"
- integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==
+postcss-minify-gradients@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c"
+ integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==
dependencies:
- cssnano-util-get-arguments "^4.0.0"
- is-color-stop "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ colord "^2.9.1"
+ cssnano-utils "^3.1.0"
+ postcss-value-parser "^4.2.0"
-postcss-minify-params@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874"
- integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==
+postcss-minify-params@^5.1.4:
+ version "5.1.4"
+ resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352"
+ integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==
dependencies:
- alphanum-sort "^1.0.0"
- browserslist "^4.0.0"
- cssnano-util-get-arguments "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- uniqs "^2.0.0"
+ browserslist "^4.21.4"
+ cssnano-utils "^3.1.0"
+ postcss-value-parser "^4.2.0"
-postcss-minify-selectors@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8"
- integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==
+postcss-minify-selectors@^5.2.1:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6"
+ integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==
dependencies:
- alphanum-sort "^1.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
+ postcss-selector-parser "^6.0.5"
-postcss-modules-extract-imports@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
- integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
- dependencies:
- postcss "^7.0.5"
+postcss-modules-extract-imports@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
+ integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
-postcss-modules-local-by-default@^3.0.2:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
- integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
+postcss-modules-local-by-default@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524"
+ integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==
dependencies:
- icss-utils "^4.1.1"
- postcss "^7.0.32"
+ icss-utils "^5.0.0"
postcss-selector-parser "^6.0.2"
postcss-value-parser "^4.1.0"
-postcss-modules-scope@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
- integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
- dependencies:
- postcss "^7.0.6"
- postcss-selector-parser "^6.0.0"
-
-postcss-modules-values@^3.0.0:
+postcss-modules-scope@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
- integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
- dependencies:
- icss-utils "^4.0.0"
- postcss "^7.0.6"
-
-postcss-normalize-charset@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4"
- integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==
+ resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
+ integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==
dependencies:
- postcss "^7.0.0"
+ postcss-selector-parser "^6.0.4"
-postcss-normalize-display-values@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a"
- integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==
+postcss-modules-values@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
+ integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==
dependencies:
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ icss-utils "^5.0.0"
-postcss-normalize-positions@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f"
- integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+postcss-normalize-charset@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed"
+ integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==
-postcss-normalize-repeat-style@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c"
- integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==
+postcss-normalize-display-values@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8"
+ integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==
dependencies:
- cssnano-util-get-arguments "^4.0.0"
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ postcss-value-parser "^4.2.0"
-postcss-normalize-string@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c"
- integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==
+postcss-normalize-positions@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92"
+ integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==
dependencies:
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ postcss-value-parser "^4.2.0"
-postcss-normalize-timing-functions@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9"
- integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==
+postcss-normalize-repeat-style@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2"
+ integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==
dependencies:
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ postcss-value-parser "^4.2.0"
-postcss-normalize-unicode@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"
- integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==
+postcss-normalize-string@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228"
+ integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==
dependencies:
- browserslist "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ postcss-value-parser "^4.2.0"
-postcss-normalize-url@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1"
- integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==
+postcss-normalize-timing-functions@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb"
+ integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==
dependencies:
- is-absolute-url "^2.0.0"
- normalize-url "^3.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ postcss-value-parser "^4.2.0"
-postcss-normalize-whitespace@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82"
- integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==
+postcss-normalize-unicode@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030"
+ integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==
dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ browserslist "^4.21.4"
+ postcss-value-parser "^4.2.0"
-postcss-ordered-values@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee"
- integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==
+postcss-normalize-url@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc"
+ integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==
dependencies:
- cssnano-util-get-arguments "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ normalize-url "^6.0.1"
+ postcss-value-parser "^4.2.0"
-postcss-reduce-initial@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df"
- integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==
+postcss-normalize-whitespace@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa"
+ integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==
dependencies:
- browserslist "^4.0.0"
- caniuse-api "^3.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
+ postcss-value-parser "^4.2.0"
-postcss-reduce-transforms@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29"
- integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==
+postcss-ordered-values@^5.1.3:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38"
+ integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==
dependencies:
- cssnano-util-get-match "^4.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
+ cssnano-utils "^3.1.0"
+ postcss-value-parser "^4.2.0"
-postcss-safe-parser@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96"
- integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g==
+postcss-reduce-initial@^5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6"
+ integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==
dependencies:
- postcss "^7.0.26"
+ browserslist "^4.21.4"
+ caniuse-api "^3.0.0"
-postcss-selector-parser@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
- integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
+postcss-reduce-transforms@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9"
+ integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==
dependencies:
- dot-prop "^5.2.0"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
+ postcss-value-parser "^4.2.0"
-postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
+postcss-selector-parser@^6.0.2:
version "6.0.10"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
@@ -12277,41 +12465,51 @@ postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
-postcss-svgo@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.3.tgz#343a2cdbac9505d416243d496f724f38894c941e"
- integrity sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==
+postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
+ version "6.0.13"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b"
+ integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==
dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- svgo "^1.0.0"
+ cssesc "^3.0.0"
+ util-deprecate "^1.0.2"
-postcss-unique-selectors@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac"
- integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==
+postcss-svgo@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d"
+ integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==
dependencies:
- alphanum-sort "^1.0.0"
- postcss "^7.0.0"
- uniqs "^2.0.0"
+ postcss-value-parser "^4.2.0"
+ svgo "^2.7.0"
-postcss-value-parser@^3.0.0:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
- integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
+postcss-unique-selectors@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6"
+ integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==
+ dependencies:
+ postcss-selector-parser "^6.0.5"
-postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
+postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
- version "7.0.39"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309"
- integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==
+postcss@^8.3.5, postcss@^8.4.21:
+ version "8.4.24"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df"
+ integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==
dependencies:
- picocolors "^0.2.1"
- source-map "^0.6.1"
+ nanoid "^3.3.6"
+ picocolors "^1.0.0"
+ source-map-js "^1.0.2"
+
+postcss@~8.4.21:
+ version "8.4.25"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.25.tgz#4a133f5e379eda7f61e906c3b1aaa9b81292726f"
+ integrity sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==
+ dependencies:
+ nanoid "^3.3.6"
+ picocolors "^1.0.0"
+ source-map-js "^1.0.2"
prelude-ls@^1.2.1:
version "1.2.1"
@@ -12343,23 +12541,23 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"
-prettier@^2.6.2:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032"
- integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==
+prettier@^2.8.8:
+ version "2.8.8"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
+ integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
pretty-bytes@5.6.0:
version "5.6.0"
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
-pretty-error@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6"
- integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==
+pretty-error@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6"
+ integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==
dependencies:
lodash "^4.17.20"
- renderkid "^2.0.4"
+ renderkid "^3.0.0"
pretty-format@^26.5.2, pretty-format@^26.6.2:
version "26.6.2"
@@ -12371,22 +12569,30 @@ pretty-format@^26.5.2, pretty-format@^26.6.2:
ansi-styles "^4.0.0"
react-is "^17.0.1"
-pretty-format@^27.0.0, pretty-format@^27.3.1, pretty-format@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e"
- integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==
+pretty-format@^29.0.0, pretty-format@^29.0.3, pretty-format@^29.2.1:
+ version "29.2.1"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.2.1.tgz#86e7748fe8bbc96a6a4e04fa99172630907a9611"
+ integrity sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==
dependencies:
- ansi-regex "^5.0.1"
+ "@jest/schemas" "^29.0.0"
ansi-styles "^5.0.0"
- react-is "^17.0.1"
+ react-is "^18.0.0"
-pretty-format@^28.1.3:
- version "28.1.3"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.3.tgz#c9fba8cedf99ce50963a11b27d982a9ae90970d5"
- integrity sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==
+pretty-format@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a"
+ integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==
dependencies:
- "@jest/schemas" "^28.1.3"
- ansi-regex "^5.0.1"
+ "@jest/schemas" "^29.4.3"
+ ansi-styles "^5.0.0"
+ react-is "^18.0.0"
+
+pretty-format@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.6.1.tgz#ec838c288850b7c4f9090b867c2d4f4edbfb0f3e"
+ integrity sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==
+ dependencies:
+ "@jest/schemas" "^29.6.0"
ansi-styles "^5.0.0"
react-is "^18.0.0"
@@ -12407,11 +12613,6 @@ process-nextick-args@~2.0.0:
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-process@^0.11.10:
- version "0.11.10"
- resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
- integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
-
progress@2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
@@ -12429,20 +12630,27 @@ promise@^7.1.1:
dependencies:
asap "~2.0.3"
-promise@^8.0.3:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e"
- integrity sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==
+promise@^8.3.0:
+ version "8.3.0"
+ resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a"
+ integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==
dependencies:
asap "~2.0.6"
-prompts@2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7"
- integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==
+prompt-skeleton@^0.1.1:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/prompt-skeleton/-/prompt-skeleton-0.1.3.tgz#18a0793280add6b15da805a8a9d4b2a0eab0586c"
+ integrity sha512-sv95G/H7jWjfs5SnNaXeMtiwcUXL3RId8JIvcyej6i3v1UPLVitA2DtLi+LlEzsLlOYudBoSQZL3A8rCqT1kpw==
dependencies:
- kleur "^3.0.3"
- sisteransi "^1.0.5"
+ ansi-escapes "^1.3"
+ pass-stream "^0.1.5"
+
+prompt-sync@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/prompt-sync/-/prompt-sync-4.2.0.tgz#0198f73c5b70e3b03e4b9033a50540a7c9a1d7f4"
+ integrity sha512-BuEzzc5zptP5LsgV5MZETjDaKSWfchl5U9Luiu8SKp7iZWD5tZalOxvNcZRwv+d2phNFr8xlbxmFNcRKfJOzJw==
+ dependencies:
+ strip-ansi "^5.0.0"
prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.0:
version "2.4.2"
@@ -12452,7 +12660,7 @@ prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.0:
kleur "^3.0.3"
sisteransi "^1.0.5"
-prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
+prop-types@*, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
version "15.8.1"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
@@ -12469,36 +12677,11 @@ proxy-addr@~2.0.7:
forwarded "0.2.0"
ipaddr.js "1.9.1"
-prr@~1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
- integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==
-
psl@^1.1.33:
version "1.8.0"
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
-public-encrypt@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
- integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
- dependencies:
- bn.js "^4.1.0"
- browserify-rsa "^4.0.0"
- create-hash "^1.1.0"
- parse-asn1 "^5.0.0"
- randombytes "^2.0.1"
- safe-buffer "^5.1.2"
-
-pump@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
- integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
pump@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
@@ -12507,21 +12690,7 @@ pump@^3.0.0:
end-of-stream "^1.1.0"
once "^1.3.1"
-pumpify@^1.3.3:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
- integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
- dependencies:
- duplexify "^3.6.0"
- inherits "^2.0.3"
- pump "^2.0.0"
-
-punycode@1.3.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
- integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==
-
-punycode@^1.2.4:
+punycode@^1.4.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
@@ -12531,27 +12700,38 @@ punycode@^2.1.0, punycode@^2.1.1:
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-q@^1.1.2:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
- integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
+pure-rand@^6.0.0:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306"
+ integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==
qrcode-terminal@0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz#ffc6c28a2fc0bfb47052b47e23f4f446a5fbdb9e"
integrity sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==
-qs@6.10.3, qs@^6.9.1:
- version "6.10.3"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e"
- integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==
+qs@6.11.0:
+ version "6.11.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
+ integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
+ dependencies:
+ side-channel "^1.0.4"
+
+qs@^6.11.0:
+ version "6.11.2"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9"
+ integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==
dependencies:
side-channel "^1.0.4"
-qs@6.7.0:
- version "6.7.0"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
- integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
+query-string@6.10.1:
+ version "6.10.1"
+ resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.10.1.tgz#30b3505f6fca741d5ae541964d1b3ae9dc2a0de8"
+ integrity sha512-SHTUV6gDlgMXg/AQUuLpTiBtW/etZ9JT6k6RCtCyqADquApLX0Aq5oK/s5UeTUAWBG50IExjIr587GqfXRfM4A==
+ dependencies:
+ decode-uri-component "^0.2.0"
+ split-on-first "^1.0.0"
+ strict-uri-encode "^2.0.0"
query-string@^5.0.1:
version "5.1.1"
@@ -12562,26 +12742,16 @@ query-string@^5.0.1:
object-assign "^4.1.0"
strict-uri-encode "^1.0.0"
-query-string@^7.0.0:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.1.tgz#754620669db978625a90f635f12617c271a088e1"
- integrity sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==
+query-string@^7.1.3:
+ version "7.1.3"
+ resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328"
+ integrity sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==
dependencies:
- decode-uri-component "^0.2.0"
+ decode-uri-component "^0.2.2"
filter-obj "^1.1.0"
split-on-first "^1.0.0"
strict-uri-encode "^2.0.0"
-querystring-es3@^0.2.0:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
- integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==
-
-querystring@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
- integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==
-
querystringify@^2.1.1:
version "2.2.0"
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
@@ -12599,41 +12769,18 @@ queue@6.0.2:
dependencies:
inherits "~2.0.3"
-ramda@^0.26.1:
- version "0.26.1"
- resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06"
- integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==
-
-randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
+randombytes@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
dependencies:
safe-buffer "^5.1.0"
-randomfill@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
- integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
- dependencies:
- randombytes "^2.0.5"
- safe-buffer "^5.1.0"
-
range-parser@^1.2.1, range-parser@~1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
-raw-body@2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
- integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
- dependencies:
- bytes "3.1.0"
- http-errors "1.7.2"
- iconv-lite "0.4.24"
- unpipe "1.0.0"
-
raw-body@2.5.1:
version "2.5.1"
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857"
@@ -12644,6 +12791,16 @@ raw-body@2.5.1:
iconv-lite "0.4.24"
unpipe "1.0.0"
+raw-body@2.5.2:
+ version "2.5.2"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a"
+ integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==
+ dependencies:
+ bytes "3.1.2"
+ http-errors "2.0.0"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
rc@^1.0.1, rc@^1.1.6, rc@~1.2.7:
version "1.2.8"
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
@@ -12654,83 +12811,43 @@ rc@^1.0.1, rc@^1.1.6, rc@~1.2.7:
minimist "^1.2.0"
strip-json-comments "~2.0.1"
-react-dev-utils@~11.0.1:
- version "11.0.4"
- resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-11.0.4.tgz#a7ccb60257a1ca2e0efe7a83e38e6700d17aa37a"
- integrity sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==
- dependencies:
- "@babel/code-frame" "7.10.4"
- address "1.1.2"
- browserslist "4.14.2"
- chalk "2.4.2"
- cross-spawn "7.0.3"
- detect-port-alt "1.1.6"
- escape-string-regexp "2.0.0"
- filesize "6.1.0"
- find-up "4.1.0"
- fork-ts-checker-webpack-plugin "4.1.6"
- global-modules "2.0.0"
- globby "11.0.1"
- gzip-size "5.1.1"
- immer "8.0.1"
- is-root "2.1.0"
- loader-utils "2.0.0"
- open "^7.0.2"
- pkg-up "3.1.0"
- prompts "2.4.0"
- react-error-overlay "^6.0.9"
- recursive-readdir "2.2.2"
- shell-quote "1.7.2"
- strip-ansi "6.0.0"
- text-table "0.2.0"
-
-react-devtools-core@4.24.0:
- version "4.24.0"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.24.0.tgz#7daa196bdc64f3626b3f54f2ff2b96f7c4fdf017"
- integrity sha512-Rw7FzYOOzcfyUPaAm9P3g0tFdGqGq2LLiAI+wjYcp6CsF3DeeMrRS3HZAho4s273C29G/DJhx0e8BpRE/QZNGg==
+react-devtools-core@^4.27.2:
+ version "4.28.0"
+ resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.0.tgz#3fa18709b24414adddadac33b6b9cea96db60f2f"
+ integrity sha512-E3C3X1skWBdBzwpOUbmXG8SgH6BtsluSMe+s6rRcujNKG1DGi8uIfhdhszkgDpAsMoE55hwqRUzeXCmETDBpTg==
dependencies:
shell-quote "^1.6.1"
ws "^7"
-react-dom@18.0.0:
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.0.0.tgz#26b88534f8f1dbb80853e1eabe752f24100d8023"
- integrity sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw==
+react-dom@18.2.0:
+ version "18.2.0"
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
+ integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
dependencies:
loose-envify "^1.1.0"
- scheduler "^0.21.0"
+ scheduler "^0.23.0"
-react-error-overlay@^6.0.9:
- version "6.0.11"
- resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb"
- integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==
+react-error-overlay@6.0.9:
+ version "6.0.9"
+ resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a"
+ integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==
react-freeze@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/react-freeze/-/react-freeze-1.0.0.tgz#b21c65fe1783743007c8c9a2952b1c8879a77354"
integrity sha512-yQaiOqDmoKqks56LN9MTgY06O0qQHgV4FUrikH357DydArSZHQhl0BJFqGKIZoTqi8JizF9Dxhuk1FIZD6qCaw==
-react-hook-form@^7.31.2:
- version "7.32.0"
- resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.32.0.tgz#bfe36000e3a9fa605a4e3e9a029282feb094ef6a"
- integrity sha512-AFUwl9MwVVnZZsFZW7Egc8PVyWem6c6/9FBq29Acsikm+8ecJCkqOn2Tl48GApFnXBgoBBEHC3zosjYvPfsGNg==
+react-hook-form@^7.45.1:
+ version "7.45.1"
+ resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.45.1.tgz#e352c7f4dbc7540f0756abbb4dcfd1122fecc9bb"
+ integrity sha512-6dWoFJwycbuFfw/iKMcl+RdAOAOHDiF11KWYhNDRN/OkUt+Di5qsZHwA0OwsVnu9y135gkHpTw9DJA+WzCeR9w==
-react-i18next@*:
- version "11.16.9"
- resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-11.16.9.tgz#890cdac0c49120e075d6c520b43dbad3f91bd2df"
- integrity sha512-euXxWvcEAvsY7ZVkwx9ztCq4butqtsGHEkpkuo0RMj8Ru09IF9o2KxCyN+zyv51Nr0aBh/elaTIiR6fMb8YfVg==
+react-i18next@^13.0.2:
+ version "13.0.2"
+ resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-13.0.2.tgz#1708a9bdabc1fe1dd4a8534f4c3a80ab784b01e9"
+ integrity sha512-NEVxC32v0oR4egwYM0QM0WE93AiJG5r0NTXTL8mhQfAhsMfDS2fSO6jpluyfsfypP988KzUQrAXncspcJ7+GHA==
dependencies:
- "@babel/runtime" "^7.14.5"
- html-escaper "^2.0.2"
- html-parse-stringify "^3.0.1"
-
-react-i18next@^11.16.9:
- version "11.17.1"
- resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-11.17.1.tgz#3a5309ac6c093b4c556c7f8a0a808c034929040c"
- integrity sha512-4H4fK9vWsQtPP0iAdqzGfdPKLaSXpCjuh1xaGsejX/CO8tx8zCnrOnlQhMgrJf+OlUfzth5YaDPXYGp3RHxV1g==
- dependencies:
- "@babel/runtime" "^7.14.5"
- html-escaper "^2.0.2"
+ "@babel/runtime" "^7.22.5"
html-parse-stringify "^3.0.1"
"react-is@^16.12.0 || ^17.0.0 || ^18.0.0":
@@ -12753,20 +12870,15 @@ react-is@^18.0.0, react-is@^18.2.0:
resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b"
integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==
-react-native-codegen@^0.69.1:
- version "0.69.1"
- resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.69.1.tgz#3632be2f24464e6fad8dd11a25d1b6f3bc2c7d0b"
- integrity sha512-TOZEqBarczcyYN3iZE3VpKkooOevaAzBq9n7lU0h9mQUvtRhLVyolc+a5K6cWI0e4v4K69I0MqzjPcPeFKo32Q==
- dependencies:
- "@babel/parser" "^7.14.0"
- flow-parser "^0.121.0"
- jscodeshift "^0.13.1"
- nullthrows "^1.1.1"
+react-native-flipper@^0.164.0:
+ version "0.164.0"
+ resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.164.0.tgz#64f6269a86a13a72e30f53ba9f5281d2073a7697"
+ integrity sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==
-react-native-gesture-handler@~2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.5.0.tgz#61385583570ed0a45a9ed142425e35f8fe8274fb"
- integrity sha512-djZdcprFf08PZC332D+AeG5wcGeAPhzfCJtB3otUgOgTlvjVXmg/SLFdPJSpzLBqkRAmrC77tM79QgKbuLxkfw==
+react-native-gesture-handler@~2.9.0:
+ version "2.9.0"
+ resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.9.0.tgz#2f63812e523c646f25b9ad660fc6f75948e51241"
+ integrity sha512-a0BcH3Qb1tgVqUutc6d3VuWQkI1AM3+fJx8dkxzZs9t06qA27QgURYFoklpabuWpsUTzuKRpxleykp25E8m7tg==
dependencies:
"@egjs/hammerjs" "^2.0.17"
hoist-non-react-statics "^3.3.0"
@@ -12774,11 +12886,6 @@ react-native-gesture-handler@~2.5.0:
lodash "^4.17.21"
prop-types "^15.7.2"
-react-native-gradle-plugin@^0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/react-native-gradle-plugin/-/react-native-gradle-plugin-0.0.7.tgz#96602f909745239deab7b589443f14fce5da2056"
- integrity sha512-+4JpbIx42zGTONhBTIXSyfyHICHC29VTvhkkoUOJAh/XHPEixpuBduYgf6Y4y9wsN1ARlQhBBoptTvXvAFQf5g==
-
react-native-iphone-x-helper@^1.0.3:
version "1.3.1"
resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz#20c603e9a0e765fd6f97396638bdeb0e5a60b010"
@@ -12792,136 +12899,118 @@ react-native-keyboard-aware-scroll-view@^0.9.5:
prop-types "^15.6.2"
react-native-iphone-x-helper "^1.0.3"
-react-native-notificated@^0.0.1-beta.0:
- version "0.0.1-beta.0"
- resolved "https://registry.yarnpkg.com/react-native-notificated/-/react-native-notificated-0.0.1-beta.0.tgz#371de87b3cba7fccc15cb154ba99d01730f2ae89"
- integrity sha512-6cwVMUWOiW9d7TY+rd9/GfEZrkvUQ3o3zEc1rwlmAPV5tajp7CKEwT8OLRP74w1QY4cUwNP+mxQID9yQXtA8Sw==
+react-native-notificated@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/react-native-notificated/-/react-native-notificated-0.1.0.tgz#333d3eb3a2cada3e5a8ea36a0258202258532662"
+ integrity sha512-U39KxPhZqZHXodtOqpJSYeWFiyrrxWDaahrQ6+ItKhviW2BUb8x53H0KnEz0AsUT1Wlm5Q1RRhmmyfjr1rkQQA==
-react-native-pager-view@5.4.24:
- version "5.4.24"
- resolved "https://registry.yarnpkg.com/react-native-pager-view/-/react-native-pager-view-5.4.24.tgz#8626e757ddc55e41eca66d2f8a8a75aec54591ee"
- integrity sha512-dRMB7i3B+mu4NCeIN6gqbR/kC/rr2wzqO0gisXDdJwJr78G24sWoTNpLEDFo3G8TFHY9nTMutVl5CUvkN2dp6g==
+react-native-pager-view@6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/react-native-pager-view/-/react-native-pager-view-6.2.0.tgz#51380d93fbe47f6380dc71d613a787bf27a4ca37"
+ integrity sha512-pf9OnL/Tkr+5s4Gjmsn7xh91PtJLDa6qxYa/bmtUhd/+s4cQdWQ8DIFoOFghwZIHHHwVdWtoXkp6HtpjN+r20g==
-react-native-reanimated@~2.9.1:
- version "2.9.1"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-2.9.1.tgz#d9a932e312c13c05b4f919e43ebbf76d996e0bc1"
- integrity sha512-309SIhDBwY4F1n6e5Mr5D1uPZm2ESIcmZsGXHUu8hpKX4oIOlZj2MilTk+kHhi05LjChoJkcpfkstotCJmPRPg==
+react-native-reanimated@~3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.3.0.tgz#80f9d58e28fddf62fe4c1bc792337b8ab57936ab"
+ integrity sha512-LzfpPZ1qXBGy5BcUHqw3pBC0qSd22qXS3t8hWSbozXNrBkzMhhOrcILE/nEg/PHpNNp1xvGOW8NwpAMF006roQ==
dependencies:
- "@babel/plugin-proposal-export-namespace-from" "^7.17.12"
"@babel/plugin-transform-object-assign" "^7.16.7"
"@babel/preset-typescript" "^7.16.7"
- "@types/invariant" "^2.2.35"
+ convert-source-map "^2.0.0"
invariant "^2.2.4"
- lodash.isequal "^4.5.0"
- setimmediate "^1.0.5"
- string-hash-64 "^1.0.3"
-react-native-redash@^16.1.1, react-native-redash@^16.2.4:
- version "16.3.0"
- resolved "https://registry.yarnpkg.com/react-native-redash/-/react-native-redash-16.3.0.tgz#a9112ff1b0e0b506a2e2ae50967597e73b69d343"
- integrity sha512-dhmeYbQ/usGzxZSGZmzmRuIFF2LrtJUKqgseKgf9Jdj0JQ7VM20m/LqTg60+wjxeiyAh2D/vKsQ2U7rMkuoplQ==
+react-native-redash@^18.1.0:
+ version "18.1.0"
+ resolved "https://registry.yarnpkg.com/react-native-redash/-/react-native-redash-18.1.0.tgz#ebebace19d0d2ed877cb6836b8c824b49354eb93"
+ integrity sha512-bdCFl/ZB7Rf2raIlU6SLV+Dc/rL6UXsQNjEVwTGBukHMeSKp1zs4zVtWaGimbN8P22N4qYvb9Jmw/K94ZWYG0Q==
dependencies:
abs-svg-path "^0.1.1"
normalize-svg-path "^1.0.1"
parse-svg-path "^0.1.2"
-react-native-safe-area-context@4.3.1:
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.3.1.tgz#5cf97b25b395e0d09bc1f828920cd7da0d792ade"
- integrity sha512-cEr7fknJCToTrSyDCVNg0GRdRMhyLeQa2NZwVCuzEQcWedOw/59ExomjmzCE4rxrKXs6OJbyfNtFRNyewDaHuA==
+react-native-safe-area-context@4.6.3:
+ version "4.6.3"
+ resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.6.3.tgz#f06cfea05b1c4b018aa9758667a109f619c62b55"
+ integrity sha512-3CeZM9HFXkuqiU9HqhOQp1yxhXw6q99axPWrT+VJkITd67gnPSU03+U27Xk2/cr9XrLUnakM07kj7H0hdPnFiQ==
-react-native-screens@~3.15.0:
- version "3.15.0"
- resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.15.0.tgz#78e42c8df72851b1ff235ddf5434b961ae123ca5"
- integrity sha512-ezC5TibsUYyqPuuHpZoM3iEl6bRzCVBMJeGaFkn7xznuOt1VwkZVub0BvafIEYR/+AQC/RjxzMSQPs1qal0+wA==
+react-native-screens@~3.22.0:
+ version "3.22.1"
+ resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.22.1.tgz#b0eb0696dbf1f9a852061cc71c0f8cdb95ed8e53"
+ integrity sha512-ffzwUdVKf+iLqhWSzN5DXBm0s2w5sN0P+TaHHPAx42LT7+DT0g8PkHT1QDvxpR5vCEPSS1i3EswyVK4HCuhTYg==
dependencies:
react-freeze "^1.0.0"
warn-once "^0.1.0"
-react-native-svg@12.3.0:
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-12.3.0.tgz#40f657c5d1ee366df23f3ec8dae76fd276b86248"
- integrity sha512-ESG1g1j7/WLD7X3XRFTQHVv0r6DpbHNNcdusngAODIxG88wpTWUZkhcM3A2HJTb+BbXTFDamHv7FwtRKWQ/ALg==
+react-native-svg@13.9.0:
+ version "13.9.0"
+ resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-13.9.0.tgz#8df8a690dd00362601f074dec5d3a86dd0f99c7f"
+ integrity sha512-Ey18POH0dA0ob/QiwCBVrxIiwflhYuw0P0hBlOHeY4J5cdbs8ngdKHeWC/Kt9+ryP6fNoEQ1PUgPYw2Bs/rp5Q==
dependencies:
- css-select "^4.2.1"
- css-tree "^1.0.0-alpha.39"
+ css-select "^5.1.0"
+ css-tree "^1.1.3"
-react-native-web@~0.18.7:
- version "0.18.7"
- resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.18.7.tgz#2b688502b3d389c49346fa3d8c9a20cfd52f507f"
- integrity sha512-5DwcsrAqLjOvzJJk/XPozEtqCOF3hrCJ55buLOEPMxvS8lKxRdeMF9SZUI2zyqE8JcMFGtQzLhWAZGeaTrXaRg==
+react-native-web@~0.19.6:
+ version "0.19.6"
+ resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.6.tgz#d9bb880b28b30725c09e7efdb70f2c07df0a6ab2"
+ integrity sha512-lk0X4y4DhZxc2e7Wdc1NkvJVObZZOLAz9l7S5a5awLI5SsZoF5L0WZhiU/+qWu5cpV0wMkME9qx7CvegmO4snw==
dependencies:
"@babel/runtime" "^7.18.6"
- create-react-class "^15.7.0"
+ "@react-native/normalize-color" "^2.1.0"
fbjs "^3.0.4"
inline-style-prefixer "^6.0.1"
- normalize-css-color "^1.0.2"
+ memoize-one "^6.0.0"
+ nullthrows "^1.1.1"
postcss-value-parser "^4.2.0"
- styleq "^0.1.2"
-
-react-native@0.69.4:
- version "0.69.4"
- resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.69.4.tgz#d66f2a117442a9398b065876afdc568b209dc4da"
- integrity sha512-rqNMialM/T4pHRKWqTIpOxA65B/9kUjtnepxwJqvsdCeMP9Q2YdSx4VASFR9RoEFYcPRU41yGf6EKrChNfns3g==
- dependencies:
- "@jest/create-cache-key-function" "^27.0.1"
- "@react-native-community/cli" "^8.0.4"
- "@react-native-community/cli-platform-android" "^8.0.4"
- "@react-native-community/cli-platform-ios" "^8.0.4"
- "@react-native/assets" "1.0.0"
- "@react-native/normalize-color" "2.0.0"
- "@react-native/polyfills" "2.0.0"
+ styleq "^0.1.3"
+
+react-native@0.72.1:
+ version "0.72.1"
+ resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.72.1.tgz#a60f8494ec74cc201ed095aaf2ff2c912c708ec6"
+ integrity sha512-O9cIVD++kt2XQl0XLCUGUgwSKr8xp+yo0ho5QK6KYWJrCFnnvQLTKL0+HD0rZUcuqFfGknHQJh3h0moQO2EMDg==
+ dependencies:
+ "@jest/create-cache-key-function" "^29.2.1"
+ "@react-native-community/cli" "11.3.3"
+ "@react-native-community/cli-platform-android" "11.3.3"
+ "@react-native-community/cli-platform-ios" "11.3.3"
+ "@react-native/assets-registry" "^0.72.0"
+ "@react-native/codegen" "^0.72.6"
+ "@react-native/gradle-plugin" "^0.72.11"
+ "@react-native/js-polyfills" "^0.72.1"
+ "@react-native/normalize-colors" "^0.72.0"
+ "@react-native/virtualized-lists" "^0.72.6"
abort-controller "^3.0.0"
anser "^1.4.9"
base64-js "^1.1.2"
+ deprecated-react-native-prop-types "4.1.0"
event-target-shim "^5.0.1"
- hermes-engine "~0.11.0"
+ flow-enums-runtime "^0.0.5"
invariant "^2.2.4"
- jsc-android "^250230.2.1"
+ jest-environment-node "^29.2.1"
+ jsc-android "^250231.0.0"
memoize-one "^5.0.0"
- metro-react-native-babel-transformer "0.70.3"
- metro-runtime "0.70.3"
- metro-source-map "0.70.3"
+ metro-runtime "0.76.5"
+ metro-source-map "0.76.5"
mkdirp "^0.5.1"
nullthrows "^1.1.1"
pretty-format "^26.5.2"
- promise "^8.0.3"
- react-devtools-core "4.24.0"
- react-native-codegen "^0.69.1"
- react-native-gradle-plugin "^0.0.7"
+ promise "^8.3.0"
+ react-devtools-core "^4.27.2"
react-refresh "^0.4.0"
- react-shallow-renderer "16.15.0"
+ react-shallow-renderer "^16.15.0"
regenerator-runtime "^0.13.2"
- scheduler "^0.21.0"
- stacktrace-parser "^0.1.3"
+ scheduler "0.24.0-canary-efb381bbf-20230505"
+ stacktrace-parser "^0.1.10"
use-sync-external-store "^1.0.0"
whatwg-fetch "^3.0.0"
- ws "^6.1.4"
-
-react-query@*:
- version "3.39.0"
- resolved "https://registry.yarnpkg.com/react-query/-/react-query-3.39.0.tgz#0caca7b0da98e65008bbcd4df0d25618c2100050"
- integrity sha512-Od0IkSuS79WJOhzWBx/ys0x13+7wFqgnn64vBqqAAnZ9whocVhl/y1padD5uuZ6EIkXbFbInax0qvY7zGM0thA==
- dependencies:
- "@babel/runtime" "^7.5.5"
- broadcast-channel "^3.4.1"
- match-sorter "^6.0.2"
-
-react-query@^3.39.0:
- version "3.39.1"
- resolved "https://registry.yarnpkg.com/react-query/-/react-query-3.39.1.tgz#3876c0fdac7a3b5a84e195534e5fa8fbdd628847"
- integrity sha512-qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A==
- dependencies:
- "@babel/runtime" "^7.5.5"
- broadcast-channel "^3.4.1"
- match-sorter "^6.0.2"
+ ws "^6.2.2"
+ yargs "^17.6.2"
react-refresh@^0.4.0:
version "0.4.3"
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53"
integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==
-react-shallow-renderer@16.15.0, react-shallow-renderer@^16.13.1, react-shallow-renderer@^16.15.0:
+react-shallow-renderer@^16.15.0:
version "16.15.0"
resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz#48fb2cf9b23d23cde96708fe5273a7d3446f4457"
integrity sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==
@@ -12929,7 +13018,7 @@ react-shallow-renderer@16.15.0, react-shallow-renderer@^16.13.1, react-shallow-r
object-assign "^4.1.1"
react-is "^16.12.0 || ^17.0.0 || ^18.0.0"
-react-test-renderer@^18.2.0:
+react-test-renderer@18.2.0, react-test-renderer@^18.2.0:
version "18.2.0"
resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-18.2.0.tgz#1dd912bd908ff26da5b9fca4fd1c489b9523d37e"
integrity sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==
@@ -12938,15 +13027,6 @@ react-test-renderer@^18.2.0:
react-shallow-renderer "^16.15.0"
scheduler "^0.23.0"
-react-test-renderer@~18.0.0:
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-18.0.0.tgz#fa403d625ea9478a70ace43db88833f6c3a5bb4c"
- integrity sha512-SyZTP/FSkwfiKOZuTZiISzsrC8A80KNlQ8PyyoGoOq+VzMAab6Em1POK/CiX3+XyXG6oiJa1C53zYDbdrJu9fw==
- dependencies:
- react-is "^18.0.0"
- react-shallow-renderer "^16.13.1"
- scheduler "^0.21.0"
-
react-transition-group@^4.4.2:
version "4.4.2"
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470"
@@ -12957,33 +13037,31 @@ react-transition-group@^4.4.2:
loose-envify "^1.4.0"
prop-types "^15.6.2"
-react@18.0.0:
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/react/-/react-18.0.0.tgz#b468736d1f4a5891f38585ba8e8fb29f91c3cb96"
- integrity sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==
+react@18.2.0:
+ version "18.2.0"
+ resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
+ integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==
dependencies:
loose-envify "^1.1.0"
-read-pkg-up@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
- integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
- dependencies:
- find-up "^4.1.0"
- read-pkg "^5.2.0"
- type-fest "^0.8.1"
+reactotron-core-client@2.8.10:
+ version "2.8.10"
+ resolved "https://registry.yarnpkg.com/reactotron-core-client/-/reactotron-core-client-2.8.10.tgz#798f2a7aa9fd7e18e7a510531a613e8ae3008eb0"
+ integrity sha512-SYRO4OCutJzfWMnaULUGVyETZnMDCU5ECNflXyM3Z5Gnfxp/wV6d7jYonhfxHdpU/aGb4Eg15C22myOCXSu6HQ==
-read-pkg@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
- integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
+reactotron-react-native@^5.0.3:
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/reactotron-react-native/-/reactotron-react-native-5.0.3.tgz#5ab884f33e6ffa0437b8b0f4d93cabb5acb7da24"
+ integrity sha512-uUQ074uw3I9X/pc7FBgrrwrFzfwXDKlxzuekNjzspZz9Y0qVLX1cAm9GTC0ZPsZRvY5wDPY/Il7XfV1YeVSDxA==
dependencies:
- "@types/normalize-package-data" "^2.4.0"
- normalize-package-data "^2.5.0"
- parse-json "^5.0.0"
- type-fest "^0.6.0"
+ mitt "1.1.3"
+ query-string "6.10.1"
+ reactotron-core-client "2.8.10"
+ rn-host-detect "1.2.0"
+ optionalDependencies:
+ react-native-flipper "^0.164.0"
-"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
+readable-stream@^2.0.1, readable-stream@~2.3.6:
version "2.3.7"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
@@ -12996,7 +13074,7 @@ read-pkg@^5.2.0:
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
-readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.6.0:
+readable-stream@^3.0.6, readable-stream@^3.4.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
@@ -13005,14 +13083,9 @@ readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.6.0:
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
-readdirp@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
- integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
- dependencies:
- graceful-fs "^4.1.11"
- micromatch "^3.1.10"
- readable-stream "^2.0.2"
+"readable-stream@https://github.com/jeffbski/readable-stream/archive/v1.0.2-object-transform2-ret-self.tar.gz":
+ version "1.0.2"
+ resolved "https://github.com/jeffbski/readable-stream/archive/v1.0.2-object-transform2-ret-self.tar.gz#129e553a773186632e8b58939c58e6f607542b63"
readdirp@~3.6.0:
version "3.6.0"
@@ -13024,32 +13097,25 @@ readdirp@~3.6.0:
readline@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/readline/-/readline-1.3.0.tgz#c580d77ef2cfc8752b132498060dc9793a7ac01c"
- integrity sha1-xYDXfvLPyHUrEySYBg3JeTp6wBw=
+ integrity sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==
-recast@^0.20.4:
- version "0.20.5"
- resolved "https://registry.yarnpkg.com/recast/-/recast-0.20.5.tgz#8e2c6c96827a1b339c634dd232957d230553ceae"
- integrity sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==
+recast@^0.21.0:
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495"
+ integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==
dependencies:
- ast-types "0.14.2"
+ ast-types "0.15.2"
esprima "~4.0.0"
source-map "~0.6.1"
tslib "^2.0.1"
-recursive-readdir@2.2.2:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
- integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==
- dependencies:
- minimatch "3.0.4"
-
-redent@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
- integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=
+redent@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
+ integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
dependencies:
- indent-string "^3.0.0"
- strip-indent "^2.0.0"
+ indent-string "^4.0.0"
+ strip-indent "^3.0.0"
regenerate-unicode-properties@^10.0.1:
version "10.0.1"
@@ -13058,32 +13124,36 @@ regenerate-unicode-properties@^10.0.1:
dependencies:
regenerate "^1.4.2"
+regenerate-unicode-properties@^10.1.0:
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
+ integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
+ dependencies:
+ regenerate "^1.4.2"
+
regenerate@^1.4.2:
version "1.4.2"
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
+regenerator-runtime@^0.13.11:
+ version "0.13.11"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
+
regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.4:
version "0.13.9"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
-regenerator-transform@^0.15.0:
- version "0.15.0"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537"
- integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==
+regenerator-transform@^0.15.1:
+ version "0.15.1"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
+ integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
dependencies:
"@babel/runtime" "^7.8.4"
-regex-not@^1.0.0, regex-not@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
- integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
- dependencies:
- extend-shallow "^3.0.2"
- safe-regex "^1.1.0"
-
-regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3:
+regexp.prototype.flags@^1.4.3:
version "1.4.3"
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
@@ -13092,7 +13162,7 @@ regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.4.1, regexp.prototype.f
define-properties "^1.1.3"
functions-have-names "^1.2.2"
-regexpp@^3.0.0, regexpp@^3.2.0:
+regexpp@^3.0.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
@@ -13121,6 +13191,18 @@ regexpu-core@^5.1.0:
unicode-match-property-ecmascript "^2.0.0"
unicode-match-property-value-ecmascript "^2.0.0"
+regexpu-core@^5.3.1:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+ integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
+ dependencies:
+ "@babel/regjsgen" "^0.8.0"
+ regenerate "^1.4.2"
+ regenerate-unicode-properties "^10.1.0"
+ regjsparser "^0.9.1"
+ unicode-match-property-ecmascript "^2.0.0"
+ unicode-match-property-value-ecmascript "^2.1.0"
+
registry-auth-token@3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20"
@@ -13148,46 +13230,33 @@ regjsparser@^0.8.2:
dependencies:
jsesc "~0.5.0"
+regjsparser@^0.9.1:
+ version "0.9.1"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
+ integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
+ dependencies:
+ jsesc "~0.5.0"
+
relateurl@^0.2.7:
version "0.2.7"
resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==
-remove-accents@0.4.2:
- version "0.4.2"
- resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5"
- integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==
-
-remove-trailing-separator@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
- integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-
remove-trailing-slash@^0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz#be2285a59f39c74d1bce4f825950061915e3780d"
integrity sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==
-renderkid@^2.0.4:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609"
- integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==
+renderkid@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a"
+ integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==
dependencies:
css-select "^4.1.3"
dom-converter "^0.2.0"
htmlparser2 "^6.1.0"
lodash "^4.17.21"
- strip-ansi "^3.0.1"
-
-repeat-element@^1.1.2:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
- integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
-
-repeat-string@^1.6.1:
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
- integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
+ strip-ansi "^6.0.1"
require-directory@^2.1.1:
version "2.1.1"
@@ -13218,17 +13287,10 @@ requires-port@^1.0.0:
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
-reselect@^4.0.0:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.5.tgz#852c361247198da6756d07d9296c2b51eddb79f6"
- integrity sha512-uVdlz8J7OO+ASpBYoz1Zypgx0KasCY20H+N8JD13oUMtPvSHQuscrHop4KbXrbsBcdB9Ds7lVK7eRkBIfO43vQ==
-
-resolve-cwd@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
- integrity sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==
- dependencies:
- resolve-from "^3.0.0"
+reselect@^4.1.7:
+ version "4.1.8"
+ resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.8.tgz#3f5dc671ea168dccdeb3e141236f69f02eaec524"
+ integrity sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==
resolve-cwd@^3.0.0:
version "3.0.0"
@@ -13252,12 +13314,12 @@ resolve-from@^5.0.0:
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
-resolve-url@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
- integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
+resolve.exports@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800"
+ integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==
-resolve@^1.10.0, resolve@^1.10.1, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.18.1, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.3.2:
+resolve@^1.10.1, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.0:
version "1.22.0"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
@@ -13266,13 +13328,23 @@ resolve@^1.10.0, resolve@^1.10.1, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.1
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-resolve@^2.0.0-next.3:
- version "2.0.0-next.3"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
- integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
+resolve@^1.22.1:
+ version "1.22.2"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
+ integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
+ dependencies:
+ is-core-module "^2.11.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
+resolve@^2.0.0-next.4:
+ version "2.0.0-next.4"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660"
+ integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==
dependencies:
- is-core-module "^2.2.0"
- path-parse "^1.0.6"
+ is-core-module "^2.9.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
resolve@~1.7.1:
version "1.7.1"
@@ -13297,15 +13369,10 @@ restore-cursor@^3.1.0:
onetime "^5.1.0"
signal-exit "^3.0.2"
-ret@~0.1.10:
- version "0.1.15"
- resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
- integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
-
-retry@^0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
- integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
+retry@^0.13.1:
+ version "0.13.1"
+ resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
+ integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
reusify@^1.0.4:
version "1.0.4"
@@ -13317,34 +13384,19 @@ rfdc@^1.3.0:
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
-rgb-regex@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
- integrity sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==
-
-rgba-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
- integrity sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==
-
-rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
- integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
- dependencies:
- glob "^7.1.3"
-
-rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3:
+rimraf@^2.6.2, rimraf@^2.6.3:
version "2.7.1"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
dependencies:
glob "^7.1.3"
-rimraf@~2.2.6:
- version "2.2.8"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582"
- integrity sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=
+rimraf@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+ dependencies:
+ glob "^7.1.3"
rimraf@~2.4.0:
version "2.4.5"
@@ -13360,24 +13412,16 @@ rimraf@~2.6.2:
dependencies:
glob "^7.1.3"
-ripemd160@^2.0.0, ripemd160@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
- integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
+rn-host-detect@1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/rn-host-detect/-/rn-host-detect-1.2.0.tgz#8b0396fc05631ec60c1cb8789e5070cdb04d0da0"
+ integrity sha512-btNg5kzHcjZZ7t7mvvV/4wNJ9e3MPgrWivkRgWURzXL0JJ0pwWlU4zrbmdlz3HHzHOxhBhHB4D+/dbMFfu4/4A==
route-recognizer@^0.3.3:
version "0.3.4"
resolved "https://registry.yarnpkg.com/route-recognizer/-/route-recognizer-0.3.4.tgz#39ab1ffbce1c59e6d2bdca416f0932611e4f3ca3"
integrity sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==
-rsvp@^4.8.4:
- version "4.8.5"
- resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
- integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
-
rtl-detect@^1.0.2:
version "1.0.4"
resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.0.4.tgz#40ae0ea7302a150b96bc75af7d749607392ecac6"
@@ -13390,17 +13434,10 @@ run-parallel@^1.1.9:
dependencies:
queue-microtask "^1.2.2"
-run-queue@^1.0.0, run-queue@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
- integrity sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==
- dependencies:
- aproba "^1.1.1"
-
-rxjs@^7.5.5:
- version "7.5.5"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.5.tgz#2ebad89af0f560f460ad5cc4213219e1f7dd4e9f"
- integrity sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==
+rxjs@^7.8.0:
+ version "7.8.1"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
+ integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
dependencies:
tslib "^2.1.0"
@@ -13409,7 +13446,7 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
+safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
@@ -13419,49 +13456,36 @@ safe-json-stringify@~1:
resolved "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz#356e44bc98f1f93ce45df14bcd7c01cda86e0afd"
integrity sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==
-safe-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
- integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
+safe-regex-test@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
+ integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
dependencies:
- ret "~0.1.10"
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.3"
+ is-regex "^1.1.4"
-"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.1.0:
+"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-sane@^4.0.3:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
- integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
- dependencies:
- "@cnakazawa/watch" "^1.0.3"
- anymatch "^2.0.0"
- capture-exit "^2.0.0"
- exec-sh "^0.3.2"
- execa "^1.0.0"
- fb-watchman "^2.0.0"
- micromatch "^3.1.4"
- minimist "^1.1.1"
- walker "~1.0.5"
-
-sax@>=0.6.0, sax@^1.2.4, sax@~1.2.4:
+sax@>=0.6.0, sax@^1.2.4:
version "1.2.4"
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
-saxes@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
- integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
+saxes@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5"
+ integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==
dependencies:
xmlchars "^2.2.0"
-scheduler@^0.21.0:
- version "0.21.0"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820"
- integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==
+scheduler@0.24.0-canary-efb381bbf-20230505:
+ version "0.24.0-canary-efb381bbf-20230505"
+ resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz#5dddc60e29f91cd7f8b983d7ce4a99c2202d178f"
+ integrity sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==
dependencies:
loose-envify "^1.1.0"
@@ -13472,16 +13496,7 @@ scheduler@^0.23.0:
dependencies:
loose-envify "^1.1.0"
-schema-utils@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
- integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
- dependencies:
- ajv "^6.1.0"
- ajv-errors "^1.0.0"
- ajv-keywords "^3.1.0"
-
-schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0:
+schema-utils@^2.6.5:
version "2.7.1"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
@@ -13490,7 +13505,7 @@ schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0:
ajv "^6.12.4"
ajv-keywords "^3.5.2"
-schema-utils@^3.0.0, schema-utils@^3.1.1:
+schema-utils@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
@@ -13499,22 +13514,47 @@ schema-utils@^3.0.0, schema-utils@^3.1.1:
ajv "^6.12.5"
ajv-keywords "^3.5.2"
+schema-utils@^3.2.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
+ integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
+ dependencies:
+ "@types/json-schema" "^7.0.8"
+ ajv "^6.12.5"
+ ajv-keywords "^3.5.2"
+
+schema-utils@^4.0.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b"
+ integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==
+ dependencies:
+ "@types/json-schema" "^7.0.9"
+ ajv "^8.9.0"
+ ajv-formats "^2.1.1"
+ ajv-keywords "^5.1.0"
+
select-hose@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==
-selfsigned@^1.10.7:
- version "1.10.14"
- resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.14.tgz#ee51d84d9dcecc61e07e4aba34f229ab525c1574"
- integrity sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==
+select-prompt@^0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/select-prompt/-/select-prompt-0.3.2.tgz#3bebc7d5ede6ae25fbd24506cf7b1e0fdca08267"
+ integrity sha512-UcsoayiSDNyp8z3iaLfu/OxosdcCxrJ/FoV4iYkrYZkRrxN2Iepmdj1Fx6neHEMUWNzsbQjKhykaCaLIUUuRFg==
dependencies:
- node-forge "^0.10.0"
+ ansi-escapes "^1.4"
+ chalk "^1.1.3"
+ cli-styles "^0.4"
+ figures "^2"
+ prompt-skeleton "^0.1.1"
-"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
- version "5.7.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
- integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+selfsigned@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61"
+ integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==
+ dependencies:
+ node-forge "^1"
semver@7.0.0:
version "7.0.0"
@@ -13526,18 +13566,44 @@ semver@7.3.2:
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
+semver@7.5.3:
+ version "7.5.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e"
+ integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==
+ dependencies:
+ lru-cache "^6.0.0"
+
+semver@^5.5.0, semver@^5.6.0:
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
+ integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+
semver@^6.0.0, semver@^6.1.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@~7.3.2:
+semver@^7.0.0, semver@^7.5.0, semver@^7.5.3:
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
+ integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
+ dependencies:
+ lru-cache "^6.0.0"
+
+semver@^7.3.5, semver@^7.3.7, semver@~7.3.2:
version "7.3.7"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
dependencies:
lru-cache "^6.0.0"
+semver@^7.3.8:
+ version "7.5.2"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb"
+ integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==
+ dependencies:
+ lru-cache "^6.0.0"
+
send@0.18.0, send@^0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
@@ -13569,10 +13635,10 @@ serialize-error@^2.1.0:
resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a"
integrity sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=
-serialize-javascript@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
- integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
+serialize-javascript@^6.0.0, serialize-javascript@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c"
+ integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==
dependencies:
randombytes "^2.1.0"
@@ -13604,17 +13670,7 @@ set-blocking@^2.0.0:
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
-set-value@^2.0.0, set-value@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
- integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
- dependencies:
- extend-shallow "^2.0.1"
- is-extendable "^0.1.1"
- is-plain-object "^2.0.3"
- split-string "^3.0.1"
-
-setimmediate@^1.0.4, setimmediate@^1.0.5:
+setimmediate@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==
@@ -13624,24 +13680,11 @@ setprototypeof@1.1.0:
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
-setprototypeof@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
- integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
-
setprototypeof@1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
-sha.js@^2.4.0, sha.js@^2.4.8:
- version "2.4.11"
- resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
- integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
shallow-clone@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
@@ -13673,21 +13716,11 @@ shebang-regex@^3.0.0:
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
-shell-quote@1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
- integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
-
shell-quote@^1.6.1, shell-quote@^1.7.3:
version "1.7.3"
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123"
integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==
-shellwords@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
- integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
-
side-channel@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
@@ -13697,7 +13730,7 @@ side-channel@^1.0.4:
get-intrinsic "^1.0.2"
object-inspect "^1.9.0"
-signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
+signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
version "3.0.7"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
@@ -13723,11 +13756,26 @@ sisteransi@^1.0.5:
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
+slash@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
+ integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
+
slash@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+slash@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7"
+ integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==
+
+slash@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce"
+ integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==
+
slice-ansi@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
@@ -13768,56 +13816,14 @@ slugify@^1.3.4:
resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.5.tgz#c8f5c072bf2135b80703589b39a3d41451fbe8c8"
integrity sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==
-snapdragon-node@^2.0.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
- integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
- dependencies:
- define-property "^1.0.0"
- isobject "^3.0.0"
- snapdragon-util "^3.0.1"
-
-snapdragon-util@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
- integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
- dependencies:
- kind-of "^3.2.0"
-
-snapdragon@^0.8.1:
- version "0.8.2"
- resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
- integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
- dependencies:
- 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"
-
-sockjs-client@1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5"
- integrity sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==
- dependencies:
- debug "^3.2.5"
- eventsource "^1.0.7"
- faye-websocket "~0.11.1"
- inherits "^2.0.3"
- json3 "^3.3.2"
- url-parse "^1.4.3"
-
-sockjs@0.3.20:
- version "0.3.20"
- resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.20.tgz#b26a283ec562ef8b2687b44033a4eeceac75d855"
- integrity sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==
+sockjs@^0.3.24:
+ version "0.3.24"
+ resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce"
+ integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==
dependencies:
- faye-websocket "^0.10.0"
- uuid "^3.4.0"
- websocket-driver "0.6.5"
+ faye-websocket "^0.11.3"
+ uuid "^8.3.2"
+ websocket-driver "^0.7.4"
sort-keys@^2.0.0:
version "2.0.0"
@@ -13826,23 +13832,34 @@ sort-keys@^2.0.0:
dependencies:
is-plain-obj "^1.0.0"
-source-list-map@^2.0.0:
+source-list-map@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
-source-map-resolve@^0.5.0:
- version "0.5.3"
- resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
- integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
+source-map-js@^1.0.1, source-map-js@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
+ integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
+
+source-map-loader@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-3.0.2.tgz#af23192f9b344daa729f6772933194cc5fa54fee"
+ integrity sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==
dependencies:
- 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"
+ abab "^2.0.5"
+ iconv-lite "^0.6.3"
+ source-map-js "^1.0.1"
+
+source-map-support@0.5.13:
+ version "0.5.13"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932"
+ integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
-source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.12:
+source-map-support@^0.5.16, source-map-support@~0.5.20:
version "0.5.21"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
@@ -13850,12 +13867,7 @@ source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.1
buffer-from "^1.0.0"
source-map "^0.6.0"
-source-map-url@^0.4.0:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
- integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
-
-source-map@^0.5.0, source-map@^0.5.6:
+source-map@^0.5.6:
version "0.5.7"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
@@ -13870,32 +13882,6 @@ source-map@^0.7.3:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
-spdx-correct@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
- integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
-spdx-exceptions@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
- integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
-
-spdx-expression-parse@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
- integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
- dependencies:
- spdx-exceptions "^2.1.0"
- spdx-license-ids "^3.0.0"
-
-spdx-license-ids@^3.0.0:
- version "3.0.11"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz#50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95"
- integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==
-
spdy-transport@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31"
@@ -13924,13 +13910,6 @@ split-on-first@^1.0.0:
resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f"
integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==
-split-string@^3.0.1, split-string@^3.0.2:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
- integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
- dependencies:
- extend-shallow "^3.0.0"
-
split@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
@@ -13943,13 +13922,6 @@ sprintf-js@~1.0.2:
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
-ssri@^6.0.1:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5"
- integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==
- dependencies:
- figgy-pudding "^3.5.1"
-
ssri@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
@@ -13967,7 +13939,7 @@ stable@^0.1.8:
resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
-stack-utils@^2.0.2, stack-utils@^2.0.3:
+stack-utils@^2.0.3:
version "2.0.5"
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5"
integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==
@@ -13979,68 +13951,28 @@ stackframe@^1.1.1:
resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.1.tgz#1033a3473ee67f08e2f2fc8eba6aef4f845124e1"
integrity sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==
-stacktrace-parser@^0.1.3:
+stacktrace-parser@^0.1.10:
version "0.1.10"
resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a"
integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==
dependencies:
type-fest "^0.7.1"
-static-extend@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
- integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
- dependencies:
- define-property "^0.2.5"
- object-copy "^0.1.0"
-
statuses@2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
-"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0:
+"statuses@>= 1.4.0 < 2", statuses@~1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
-stream-browserify@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
- integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
- dependencies:
- inherits "~2.0.1"
- readable-stream "^2.0.2"
-
stream-buffers@2.2.x:
version "2.2.0"
resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4"
integrity sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==
-stream-each@^1.1.0:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
- integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
- dependencies:
- end-of-stream "^1.1.0"
- stream-shift "^1.0.0"
-
-stream-http@^2.7.2:
- version "2.8.3"
- resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
- integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
- dependencies:
- builtin-status-codes "^3.0.0"
- inherits "^2.0.1"
- readable-stream "^2.3.6"
- to-arraybuffer "^1.0.0"
- xtend "^4.0.0"
-
-stream-shift@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
- integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
-
strict-uri-encode@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
@@ -14056,11 +13988,6 @@ string-argv@^0.3.1:
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
-string-hash-64@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/string-hash-64/-/string-hash-64-1.0.3.tgz#0deb56df58678640db5c479ccbbb597aaa0de322"
- integrity sha512-D5OKWKvDhyVWWn2x5Y9b+37NUllks34q1dCDhk/vYcso9fmhs+Tl3KR/gE4v5UNj2UA35cnX4KdVVGkG1deKqw==
-
string-length@^4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"
@@ -14069,16 +13996,15 @@ string-length@^4.0.1:
char-regex "^1.0.2"
strip-ansi "^6.0.0"
-string-width@^3.0.0, string-width@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
- integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+string-length@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/string-length/-/string-length-5.0.1.tgz#3d647f497b6e8e8d41e422f7e0b23bc536c8381e"
+ integrity sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==
dependencies:
- emoji-regex "^7.0.1"
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^5.1.0"
+ char-regex "^2.0.0"
+ strip-ansi "^7.0.1"
-string-width@^4.1.0, string-width@^4.2.0:
+string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -14096,20 +14022,29 @@ string-width@^5.0.0:
emoji-regex "^9.2.2"
strip-ansi "^7.0.1"
-string.prototype.matchall@^4.0.7:
- version "4.0.7"
- resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d"
- integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==
+string.prototype.matchall@^4.0.8:
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3"
+ integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.1"
- get-intrinsic "^1.1.1"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+ get-intrinsic "^1.1.3"
has-symbols "^1.0.3"
internal-slot "^1.0.3"
- regexp.prototype.flags "^1.4.1"
+ regexp.prototype.flags "^1.4.3"
side-channel "^1.0.4"
+string.prototype.trim@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533"
+ integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+
string.prototype.trimend@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
@@ -14119,6 +14054,15 @@ string.prototype.trimend@^1.0.5:
define-properties "^1.1.4"
es-abstract "^1.19.5"
+string.prototype.trimend@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
+ integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+
string.prototype.trimstart@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
@@ -14128,7 +14072,16 @@ string.prototype.trimstart@^1.0.5:
define-properties "^1.1.4"
es-abstract "^1.19.5"
-string_decoder@^1.0.0, string_decoder@^1.1.1:
+string.prototype.trimstart@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
+ integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+
+string_decoder@^1.1.1:
version "1.3.0"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
@@ -14142,21 +14095,14 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"
-strip-ansi@6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
- integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
- dependencies:
- ansi-regex "^5.0.0"
-
-strip-ansi@^3.0.1:
+strip-ansi@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
dependencies:
ansi-regex "^2.0.0"
-strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
+strip-ansi@^5.0.0, strip-ansi@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
@@ -14197,10 +14143,17 @@ strip-final-newline@^2.0.0:
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
-strip-indent@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
- integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
+strip-final-newline@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd"
+ integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==
+
+strip-indent@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
+ integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
+ dependencies:
+ min-indent "^1.0.0"
strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
version "3.1.1"
@@ -14212,18 +14165,20 @@ strip-json-comments@~2.0.1:
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==
+strnum@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db"
+ integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==
+
structured-headers@^0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/structured-headers/-/structured-headers-0.4.1.tgz#77abd9410622c6926261c09b9d16cf10592694d1"
integrity sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==
-style-loader@~1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a"
- integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg==
- dependencies:
- loader-utils "^2.0.0"
- schema-utils "^2.6.6"
+style-loader@^3.3.1:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff"
+ integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==
style-value-types@4.1.1:
version "4.1.1"
@@ -14241,19 +14196,18 @@ style-value-types@5.0.0:
hey-listen "^1.0.8"
tslib "^2.1.0"
-stylehacks@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
- integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==
+stylehacks@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9"
+ integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==
dependencies:
- browserslist "^4.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
+ browserslist "^4.21.4"
+ postcss-selector-parser "^6.0.4"
-styleq@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/styleq/-/styleq-0.1.2.tgz#052b46af5ca4f920b1bdae2735ffb1e3970f53cd"
- integrity sha512-EBNuMVSxpssuFcJq/c4zmZ4tpCyX9E27hz5xPJhw4URjRHcYXPHh8rDHY/tJsw5gtP0+tIL3IBYeQVIYjdZFhg==
+styleq@^0.1.3:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/styleq/-/styleq-0.1.3.tgz#8efb2892debd51ce7b31dc09c227ad920decab71"
+ integrity sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==
sucrase@^3.20.0:
version "3.21.0"
@@ -14282,6 +14236,11 @@ sudo-prompt@^9.0.0:
resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd"
integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==
+supports-color@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+ integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==
+
supports-color@^5.3.0:
version "5.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
@@ -14289,13 +14248,6 @@ supports-color@^5.3.0:
dependencies:
has-flag "^3.0.0"
-supports-color@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
- integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
- dependencies:
- has-flag "^3.0.0"
-
supports-color@^7.0.0, supports-color@^7.1.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
@@ -14310,11 +14262,6 @@ supports-color@^8.0.0:
dependencies:
has-flag "^4.0.0"
-supports-color@^9.2.2:
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.2.2.tgz#502acaf82f2b7ee78eb7c83dcac0f89694e5a7bb"
- integrity sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==
-
supports-hyperlinks@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb"
@@ -14333,34 +14280,28 @@ svg-arc-to-cubic-bezier@^3.0.0:
resolved "https://registry.yarnpkg.com/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz#390c450035ae1c4a0104d90650304c3bc814abe6"
integrity sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==
-svgo@^1.0.0:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
- integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
- dependencies:
- chalk "^2.4.1"
- coa "^2.0.2"
- css-select "^2.0.0"
- css-select-base-adapter "^0.1.1"
- css-tree "1.0.0-alpha.37"
- csso "^4.0.2"
- js-yaml "^3.13.1"
- mkdirp "~0.5.1"
- object.values "^1.1.0"
- sax "~1.2.4"
+svgo@^2.7.0:
+ version "2.8.0"
+ resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
+ integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
+ dependencies:
+ "@trysound/sax" "0.2.0"
+ commander "^7.2.0"
+ css-select "^4.1.3"
+ css-tree "^1.1.3"
+ csso "^4.2.0"
+ picocolors "^1.0.0"
stable "^0.1.8"
- unquote "~1.1.1"
- util.promisify "~1.0.0"
symbol-tree@^3.2.4:
version "3.2.4"
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
-tapable@^1.0.0, tapable@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
- integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
+tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
+ integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
tar@^6.0.2, tar@^6.0.5:
version "6.1.11"
@@ -14384,14 +14325,6 @@ temp-dir@^2.0.0:
resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e"
integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
-temp@0.8.3:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59"
- integrity sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=
- dependencies:
- os-tmpdir "^1.0.0"
- rimraf "~2.2.6"
-
temp@^0.8.4:
version "0.8.4"
resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2"
@@ -14419,7 +14352,7 @@ tempy@^0.7.1:
type-fest "^0.16.0"
unique-string "^2.0.0"
-terminal-link@^2.0.0, terminal-link@^2.1.1:
+terminal-link@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
@@ -14427,44 +14360,26 @@ terminal-link@^2.0.0, terminal-link@^2.1.1:
ansi-escapes "^4.2.1"
supports-hyperlinks "^2.0.0"
-terser-webpack-plugin@^1.4.3:
- version "1.4.5"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
- integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
- dependencies:
- cacache "^12.0.2"
- find-cache-dir "^2.1.0"
- is-wsl "^1.1.0"
- schema-utils "^1.0.0"
- serialize-javascript "^4.0.0"
- source-map "^0.6.1"
- terser "^4.1.2"
- webpack-sources "^1.4.0"
- worker-farm "^1.7.0"
-
-terser-webpack-plugin@^3.0.6:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz#91e6d39571460ed240c0cf69d295bcf30ebf98cb"
- integrity sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==
+terser-webpack-plugin@^5.3.0, terser-webpack-plugin@^5.3.7:
+ version "5.3.9"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1"
+ integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==
dependencies:
- cacache "^15.0.5"
- find-cache-dir "^3.3.1"
- jest-worker "^26.2.1"
- p-limit "^3.0.2"
- schema-utils "^2.6.6"
- serialize-javascript "^4.0.0"
- source-map "^0.6.1"
- terser "^4.8.0"
- webpack-sources "^1.4.3"
+ "@jridgewell/trace-mapping" "^0.3.17"
+ jest-worker "^27.4.5"
+ schema-utils "^3.1.1"
+ serialize-javascript "^6.0.1"
+ terser "^5.16.8"
-terser@^4.1.2, terser@^4.6.3, terser@^4.8.0:
- version "4.8.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
- integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
+terser@^5.10.0, terser@^5.15.0, terser@^5.16.8:
+ version "5.18.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.18.0.tgz#dc811fb8e3481a875d545bda247c8730ee4dc76b"
+ integrity sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA==
dependencies:
+ "@jridgewell/source-map" "^0.3.3"
+ acorn "^8.8.2"
commander "^2.20.0"
- source-map "~0.6.1"
- source-map-support "~0.5.12"
+ source-map-support "~0.5.20"
test-exclude@^6.0.0:
version "6.0.0"
@@ -14475,7 +14390,7 @@ test-exclude@^6.0.0:
glob "^7.1.4"
minimatch "^3.0.4"
-text-table@0.2.0, text-table@^0.2.0:
+text-table@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
@@ -14499,7 +14414,7 @@ throat@^5.0.0:
resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
-through2@^2.0.0, through2@^2.0.1:
+through2@^2.0.1:
version "2.0.5"
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
@@ -14517,18 +14432,6 @@ thunky@^1.0.2:
resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
-timers-browserify@^2.0.4:
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
- integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
- dependencies:
- setimmediate "^1.0.4"
-
-timsort@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
- integrity sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==
-
tinycolor2@^1.4.2:
version "1.4.2"
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803"
@@ -14546,31 +14449,11 @@ tmpl@1.0.5:
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
-to-arraybuffer@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
- integrity sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==
-
to-fast-properties@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
-to-object-path@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
- integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
- dependencies:
- kind-of "^3.0.2"
-
-to-regex-range@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
- integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
- dependencies:
- is-number "^3.0.0"
- repeat-string "^1.6.1"
-
to-regex-range@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
@@ -14578,39 +14461,25 @@ to-regex-range@^5.0.1:
dependencies:
is-number "^7.0.0"
-to-regex@^3.0.1, to-regex@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
- integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
- dependencies:
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- regex-not "^1.0.2"
- safe-regex "^1.1.0"
-
-toidentifier@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
- integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
-
toidentifier@1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
-tough-cookie@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
- integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
+tough-cookie@^4.1.2:
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf"
+ integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==
dependencies:
psl "^1.1.33"
punycode "^2.1.1"
- universalify "^0.1.2"
+ universalify "^0.2.0"
+ url-parse "^1.5.3"
-tr46@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
- integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
+tr46@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9"
+ integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==
dependencies:
punycode "^2.1.1"
@@ -14624,16 +14493,16 @@ traverse@~0.6.6:
resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
integrity sha512-kdf4JKs8lbARxWdp7RKdNzoJBhGUcIalSYibuGyHJbmk40pOysQ0+QPvlkCOICOivDWU2IJo2rkrxyTK2AH4fw==
+ts-api-utils@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.1.tgz#8144e811d44c749cd65b2da305a032510774452d"
+ integrity sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==
+
ts-interface-checker@^0.1.9:
version "0.1.13"
resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
-ts-pnp@^1.1.6:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
- integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
-
tsconfig-paths@^3.14.1:
version "3.14.1"
resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a"
@@ -14654,6 +14523,11 @@ tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
+tslib@^2.3.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
+ integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
+
tsutils@^3.21.0:
version "3.21.0"
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
@@ -14661,11 +14535,6 @@ tsutils@^3.21.0:
dependencies:
tslib "^1.8.1"
-tty-browserify@0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
- integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
-
type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
@@ -14710,22 +14579,17 @@ type-fest@^0.3.1:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==
-type-fest@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
- integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
-
type-fest@^0.7.1:
version "0.7.1"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48"
integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==
-type-fest@^0.8.1:
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
- integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+type-fest@^3.0.0:
+ version "3.12.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.12.0.tgz#4ce26edc1ccc59fc171e495887ef391fe1f5280e"
+ integrity sha512-qj9wWsnFvVEMUDbESiilKeXeHL7FwwiFcogfhfyjmvT968RXSvnl23f1JOClTHYItsi7o501C/7qVllscUP3oA==
-type-is@~1.6.17, type-is@~1.6.18:
+type-is@~1.6.18:
version "1.6.18"
resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
@@ -14733,28 +14597,30 @@ type-is@~1.6.17, type-is@~1.6.18:
media-typer "0.3.0"
mime-types "~2.1.24"
-typedarray-to-buffer@^3.1.5:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
- integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+typed-array-length@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
dependencies:
- is-typedarray "^1.0.0"
-
-typedarray@^0.0.6:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
- integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ is-typed-array "^1.1.9"
-typescript@^4.6.3:
- version "4.7.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
- integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
+typescript@^5.1.3:
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274"
+ integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==
-ua-parser-js@^0.7.19, ua-parser-js@^0.7.30:
+ua-parser-js@^0.7.30:
version "0.7.31"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.31.tgz#649a656b191dffab4f21d5e053e27ca17cbff5c6"
integrity sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==
+ua-parser-js@^0.7.33:
+ version "0.7.35"
+ resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.35.tgz#8bda4827be4f0b1dda91699a29499575a1f1d307"
+ integrity sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==
+
uglify-es@^3.1.9:
version "3.3.9"
resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677"
@@ -14791,31 +14657,16 @@ unicode-match-property-value-ecmascript@^2.0.0:
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
+unicode-match-property-value-ecmascript@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
+ integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
+
unicode-property-aliases-ecmascript@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8"
integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==
-union-value@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
- integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
- dependencies:
- arr-union "^3.1.0"
- get-value "^2.0.6"
- is-extendable "^0.1.1"
- set-value "^2.0.1"
-
-uniq@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
- integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
-
-uniqs@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
- integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
-
unique-filename@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
@@ -14844,11 +14695,16 @@ unique-string@^2.0.0:
dependencies:
crypto-random-string "^2.0.0"
-universalify@^0.1.0, universalify@^0.1.2:
+universalify@^0.1.0:
version "0.1.2"
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
+universalify@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
+ integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
+
universalify@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d"
@@ -14859,36 +14715,18 @@ universalify@^2.0.0:
resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
-unload@2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/unload/-/unload-2.2.0.tgz#ccc88fdcad345faa06a92039ec0f80b488880ef7"
- integrity sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==
- dependencies:
- "@babel/runtime" "^7.6.2"
- detect-node "^2.0.4"
-
unpipe@1.0.0, unpipe@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
-unquote@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
- integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
-
-unset-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
- integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
+update-browserslist-db@^1.0.11:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
+ integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
dependencies:
- has-value "^0.3.1"
- isobject "^3.0.0"
-
-upath@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
- integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
+ escalade "^3.1.1"
+ picocolors "^1.0.0"
update-browserslist-db@^1.0.4:
version "1.0.4"
@@ -14898,6 +14736,14 @@ update-browserslist-db@^1.0.4:
escalade "^3.1.1"
picocolors "^1.0.0"
+update-browserslist-db@^1.0.9:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
+ integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
+ dependencies:
+ escalade "^3.1.1"
+ picocolors "^1.0.0"
+
update-check@1.5.3:
version "1.5.3"
resolved "https://registry.yarnpkg.com/update-check/-/update-check-1.5.3.tgz#45240fcfb8755a7c7fa68bbdd9eda026a41639ed"
@@ -14913,26 +14759,12 @@ uri-js@^4.2.2:
dependencies:
punycode "^2.1.0"
-urix@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
- integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
-
url-join@4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.0.tgz#4d3340e807d3773bda9991f8305acdcc2a665d2a"
integrity sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==
-url-loader@~4.1.0:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2"
- integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==
- dependencies:
- loader-utils "^2.0.0"
- mime-types "^2.1.27"
- schema-utils "^3.0.0"
-
-url-parse@^1.4.3, url-parse@^1.5.9:
+url-parse@^1.5.3, url-parse@^1.5.9:
version "1.5.10"
resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
@@ -14941,64 +14773,43 @@ url-parse@^1.4.3, url-parse@^1.5.9:
requires-port "^1.0.0"
url@^0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
- integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
+ version "0.11.1"
+ resolved "https://registry.yarnpkg.com/url/-/url-0.11.1.tgz#26f90f615427eca1b9f4d6a28288c147e2302a32"
+ integrity sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==
dependencies:
- punycode "1.3.2"
- querystring "0.2.0"
+ punycode "^1.4.1"
+ qs "^6.11.0"
-use-debounce@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-8.0.1.tgz#5f3e11b067bdf9f2c554a20b4764e38b48022664"
- integrity sha512-6tGAFJKJ0qCalecaV7/gm/M6n238nmitNppvR89ff1yfwSFjwFKR7IQZzIZf1KZRQhqNireBzytzU6jgb29oVg==
+use-debounce@^9.0.4:
+ version "9.0.4"
+ resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-9.0.4.tgz#51d25d856fbdfeb537553972ce3943b897f1ac85"
+ integrity sha512-6X8H/mikbrt0XE8e+JXRtZ8yYVvKkdYRfmIhWZYsP8rcNs9hk3APV8Ua2mFkKRLcJKVdnX2/Vwrmg2GWKUQEaQ==
+
+use-latest-callback@^0.1.5:
+ version "0.1.5"
+ resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.5.tgz#a4a836c08fa72f6608730b5b8f4bbd9c57c04f51"
+ integrity sha512-HtHatS2U4/h32NlkhupDsPlrbiD27gSH5swBdtXbCAlc6pfOFzaj0FehW/FO12rx8j2Vy4/lJScCiJyM01E+bQ==
-use-sync-external-store@^1.0.0:
+use-sync-external-store@^1.0.0, use-sync-external-store@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a"
integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==
-use@^3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
- integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
-util.promisify@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
- integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
- dependencies:
- define-properties "^1.1.2"
- object.getownpropertydescriptors "^2.0.3"
-
-util.promisify@~1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
- integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.2"
- has-symbols "^1.0.1"
- object.getownpropertydescriptors "^2.1.0"
-
-util@0.10.3:
- version "0.10.3"
- resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
- integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
- dependencies:
- inherits "2.0.1"
-
-util@^0.11.0:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
- integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
+util@^0.12.0:
+ version "0.12.5"
+ resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc"
+ integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==
dependencies:
- inherits "2.0.3"
+ inherits "^2.0.3"
+ is-arguments "^1.0.4"
+ is-generator-function "^1.0.7"
+ is-typed-array "^1.1.3"
+ which-typed-array "^1.1.2"
utila@~0.4:
version "0.4.0"
@@ -15020,38 +14831,25 @@ uuid@^7.0.3:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"
integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==
-uuid@^8.0.0, uuid@^8.3.0, uuid@^8.3.2:
+uuid@^8.0.0, uuid@^8.3.2:
version "8.3.2"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
-v8-compile-cache@^2.0.3:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
- integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
-
-v8-to-istanbul@^7.0.0:
- version "7.1.2"
- resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1"
- integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==
+v8-to-istanbul@^9.0.1:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265"
+ integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==
dependencies:
+ "@jridgewell/trace-mapping" "^0.3.12"
"@types/istanbul-lib-coverage" "^2.0.1"
convert-source-map "^1.6.0"
- source-map "^0.7.3"
valid-url@~1.0.9:
version "1.0.9"
resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200"
integrity sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==
-validate-npm-package-license@^3.0.1:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
- integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
validate-npm-package-name@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e"
@@ -15064,41 +14862,24 @@ vary@~1.1.2:
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
-vendors@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
- integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
-
vlq@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468"
integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==
-vm-browserify@^1.0.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
- integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
-
void-elements@3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"
integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==
-w3c-hr-time@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
- integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
- dependencies:
- browser-process-hrtime "^1.0.0"
-
-w3c-xmlserializer@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
- integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
+w3c-xmlserializer@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073"
+ integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==
dependencies:
- xml-name-validator "^3.0.0"
+ xml-name-validator "^4.0.0"
-walker@^1.0.7, walker@~1.0.5:
+walker@^1.0.7, walker@^1.0.8:
version "1.0.8"
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f"
integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==
@@ -15110,23 +14891,13 @@ warn-once@^0.1.0:
resolved "https://registry.yarnpkg.com/warn-once/-/warn-once-0.1.0.tgz#4f58d89b84f968d0389176aa99e0cf0f14ffd4c8"
integrity sha512-recZTSvuaH/On5ZU5ywq66y99lImWqzP93+AiUo9LUwG8gXHW+LJjhOd6REJHm7qb0niYqrEQJvbHSQfuJtTqA==
-watchpack-chokidar2@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
- integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
- dependencies:
- chokidar "^2.1.8"
-
-watchpack@^1.6.1:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
- integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
+watchpack@^2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
+ integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
dependencies:
+ glob-to-regexp "^0.4.1"
graceful-fs "^4.1.2"
- neo-async "^2.5.0"
- optionalDependencies:
- chokidar "^3.4.1"
- watchpack-chokidar2 "^2.0.1"
wbuf@^1.1.0, wbuf@^1.7.3:
version "1.7.3"
@@ -15147,129 +14918,110 @@ webidl-conversions@^3.0.0:
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
-webidl-conversions@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
- integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
-
-webidl-conversions@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
- integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
+webidl-conversions@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a"
+ integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==
-webpack-dev-middleware@^3.7.2:
- version "3.7.3"
- resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5"
- integrity sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==
+webpack-dev-middleware@^5.3.1:
+ version "5.3.3"
+ resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f"
+ integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==
dependencies:
- memory-fs "^0.4.1"
- mime "^2.4.4"
- mkdirp "^0.5.1"
+ colorette "^2.0.10"
+ memfs "^3.4.3"
+ mime-types "^2.1.31"
range-parser "^1.2.1"
- webpack-log "^2.0.0"
-
-webpack-dev-server@3.11.0:
- version "3.11.0"
- resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz#8f154a3bce1bcfd1cc618ef4e703278855e7ff8c"
- integrity sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==
- dependencies:
- ansi-html "0.0.7"
- bonjour "^3.5.0"
- chokidar "^2.1.8"
+ schema-utils "^4.0.0"
+
+webpack-dev-server@^4.11.1:
+ version "4.15.1"
+ resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7"
+ integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==
+ dependencies:
+ "@types/bonjour" "^3.5.9"
+ "@types/connect-history-api-fallback" "^1.3.5"
+ "@types/express" "^4.17.13"
+ "@types/serve-index" "^1.9.1"
+ "@types/serve-static" "^1.13.10"
+ "@types/sockjs" "^0.3.33"
+ "@types/ws" "^8.5.5"
+ ansi-html-community "^0.0.8"
+ bonjour-service "^1.0.11"
+ chokidar "^3.5.3"
+ colorette "^2.0.10"
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.7"
- semver "^6.3.0"
+ connect-history-api-fallback "^2.0.0"
+ default-gateway "^6.0.3"
+ express "^4.17.3"
+ graceful-fs "^4.2.6"
+ html-entities "^2.3.2"
+ http-proxy-middleware "^2.0.3"
+ ipaddr.js "^2.0.1"
+ launch-editor "^2.6.0"
+ open "^8.0.9"
+ p-retry "^4.5.0"
+ rimraf "^3.0.2"
+ schema-utils "^4.0.0"
+ selfsigned "^2.1.1"
serve-index "^1.9.1"
- sockjs "0.3.20"
- sockjs-client "1.4.0"
+ sockjs "^0.3.24"
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"
-
-webpack-log@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
- integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
- dependencies:
- ansi-colors "^3.0.0"
- uuid "^3.3.2"
+ webpack-dev-middleware "^5.3.1"
+ ws "^8.13.0"
-webpack-manifest-plugin@~2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz#19ca69b435b0baec7e29fbe90fb4015de2de4f16"
- integrity sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==
+webpack-manifest-plugin@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz#10f8dbf4714ff93a215d5a45bcc416d80506f94f"
+ integrity sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==
dependencies:
- fs-extra "^7.0.0"
- lodash ">=3.5 <5"
- object.entries "^1.1.0"
- tapable "^1.0.0"
+ tapable "^2.0.0"
+ webpack-sources "^2.2.0"
-webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
- integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+webpack-sources@^2.2.0:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd"
+ integrity sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==
dependencies:
- source-list-map "^2.0.0"
- source-map "~0.6.1"
+ source-list-map "^2.0.1"
+ source-map "^0.6.1"
-webpack@4.43.0:
- version "4.43.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6"
- integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-module-context" "1.9.0"
- "@webassemblyjs/wasm-edit" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
- acorn "^6.4.1"
- ajv "^6.10.2"
- ajv-keywords "^3.4.1"
+webpack-sources@^3.2.3:
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
+ integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
+
+webpack@^5.64.4:
+ version "5.87.0"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.87.0.tgz#df8a9c094c6037f45e0d77598f9e59d33ca3a98c"
+ integrity sha512-GOu1tNbQ7p1bDEoFRs2YPcfyGs8xq52yyPBZ3m2VGnXGtV9MxjrkABHm4V9Ia280OefsSLzvbVoXcfLxjKY/Iw==
+ dependencies:
+ "@types/eslint-scope" "^3.7.3"
+ "@types/estree" "^1.0.0"
+ "@webassemblyjs/ast" "^1.11.5"
+ "@webassemblyjs/wasm-edit" "^1.11.5"
+ "@webassemblyjs/wasm-parser" "^1.11.5"
+ acorn "^8.7.1"
+ acorn-import-assertions "^1.9.0"
+ browserslist "^4.14.5"
chrome-trace-event "^1.0.2"
- enhanced-resolve "^4.1.0"
- eslint-scope "^4.0.3"
- json-parse-better-errors "^1.0.2"
- loader-runner "^2.4.0"
- loader-utils "^1.2.3"
- memory-fs "^0.4.1"
- micromatch "^3.1.10"
- mkdirp "^0.5.3"
- neo-async "^2.6.1"
- node-libs-browser "^2.2.1"
- schema-utils "^1.0.0"
- tapable "^1.1.3"
- terser-webpack-plugin "^1.4.3"
- watchpack "^1.6.1"
- webpack-sources "^1.4.1"
-
-websocket-driver@0.6.5:
- version "0.6.5"
- resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36"
- integrity sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=
- dependencies:
- websocket-extensions ">=0.1.1"
-
-websocket-driver@>=0.5.1:
+ enhanced-resolve "^5.15.0"
+ es-module-lexer "^1.2.1"
+ eslint-scope "5.1.1"
+ events "^3.2.0"
+ glob-to-regexp "^0.4.1"
+ graceful-fs "^4.2.9"
+ json-parse-even-better-errors "^2.3.1"
+ loader-runner "^4.2.0"
+ mime-types "^2.1.27"
+ neo-async "^2.6.2"
+ schema-utils "^3.2.0"
+ tapable "^2.1.1"
+ terser-webpack-plugin "^5.3.7"
+ watchpack "^2.4.0"
+ webpack-sources "^3.2.3"
+
+websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
version "0.7.4"
resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760"
integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==
@@ -15283,22 +15035,30 @@ websocket-extensions@>=0.1.1:
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
-whatwg-encoding@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
- integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
+whatwg-encoding@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53"
+ integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==
dependencies:
- iconv-lite "0.4.24"
+ iconv-lite "0.6.3"
whatwg-fetch@^3.0.0:
version "3.6.2"
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
-whatwg-mimetype@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
- integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
+whatwg-mimetype@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7"
+ integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==
+
+whatwg-url@^11.0.0:
+ version "11.0.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018"
+ integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==
+ dependencies:
+ tr46 "^3.0.0"
+ webidl-conversions "^7.0.0"
whatwg-url@^5.0.0:
version "5.0.0"
@@ -15308,15 +15068,6 @@ whatwg-url@^5.0.0:
tr46 "~0.0.3"
webidl-conversions "^3.0.0"
-whatwg-url@^8.0.0, whatwg-url@^8.5.0:
- version "8.7.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"
- integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
- dependencies:
- lodash "^4.7.0"
- tr46 "^2.1.0"
- webidl-conversions "^6.1.0"
-
which-boxed-primitive@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
@@ -15333,14 +15084,38 @@ which-module@^2.0.0:
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
-which@^1.2.9, which@^1.3.1:
+which-typed-array@^1.1.2:
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f"
+ integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ es-abstract "^1.20.0"
+ for-each "^0.3.3"
+ has-tostringtag "^1.0.0"
+ is-typed-array "^1.1.9"
+
+which-typed-array@^1.1.9:
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
+ integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ has-tostringtag "^1.0.0"
+ is-typed-array "^1.1.10"
+
+which@^1.2.9:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
dependencies:
isexe "^2.0.0"
-which@^2.0.1, which@^2.0.2:
+which@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
@@ -15352,34 +15127,11 @@ wonka@^4.0.14:
resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89"
integrity sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==
-word-wrap@^1.2.3, word-wrap@~1.2.3:
+word-wrap@~1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-worker-farm@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
- integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
- dependencies:
- errno "~0.1.7"
-
-worker-rpc@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
- integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
- dependencies:
- microevent.ts "~0.1.1"
-
-wrap-ansi@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
- integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
- dependencies:
- ansi-styles "^3.2.0"
- string-width "^3.0.0"
- strip-ansi "^5.0.0"
-
wrap-ansi@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
@@ -15412,28 +15164,31 @@ write-file-atomic@^2.3.0:
imurmurhash "^0.1.4"
signal-exit "^3.0.2"
-write-file-atomic@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
- integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
+write-file-atomic@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd"
+ integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==
dependencies:
imurmurhash "^0.1.4"
- is-typedarray "^1.0.0"
- signal-exit "^3.0.2"
- typedarray-to-buffer "^3.1.5"
+ signal-exit "^3.0.7"
-ws@^6.1.4, ws@^6.2.1:
+ws@^6.2.2:
version "6.2.2"
resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e"
integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==
dependencies:
async-limiter "~1.0.0"
-ws@^7, ws@^7.4.6, ws@^7.5.1:
+ws@^7, ws@^7.5.1:
version "7.5.7"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.7.tgz#9e0ac77ee50af70d58326ecff7e85eb3fa375e67"
integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==
+ws@^8.11.0, ws@^8.12.1, ws@^8.13.0:
+ version "8.13.0"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
+ integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
+
xcode@^3.0.0, xcode@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/xcode/-/xcode-3.0.1.tgz#3efb62aac641ab2c702458f9a0302696146aa53c"
@@ -15449,10 +15204,10 @@ xml-js@^1.6.11:
dependencies:
sax "^1.2.4"
-xml-name-validator@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
- integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
+xml-name-validator@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835"
+ integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==
xml2js@0.4.23:
version "0.4.23"
@@ -15462,6 +15217,14 @@ xml2js@0.4.23:
sax ">=0.6.0"
xmlbuilder "~11.0.0"
+xml2js@0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.6.0.tgz#07afc447a97d2bd6507a1f76eeadddb09f7a8282"
+ integrity sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==
+ dependencies:
+ sax ">=0.6.0"
+ xmlbuilder "~11.0.0"
+
xmlbuilder@^14.0.0:
version "14.0.0"
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-14.0.0.tgz#876b5aec4f05ffd5feb97b0a871c855d16fbeb8c"
@@ -15485,9 +15248,9 @@ xmlchars@^2.2.0:
xmlhttprequest@^1.8.0:
version "1.8.0"
resolved "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc"
- integrity sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw=
+ integrity sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==
-xtend@^4.0.0, xtend@~4.0.1:
+xtend@~4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
@@ -15497,6 +15260,11 @@ y18n@^4.0.0:
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
+y18n@^5.0.5:
+ version "5.0.8"
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
+ integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
+
yallist@^3.0.2:
version "3.1.1"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
@@ -15512,13 +15280,10 @@ yaml@^1.10.2:
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
-yargs-parser@^13.1.2:
- version "13.1.2"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
- integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
- dependencies:
- camelcase "^5.0.0"
- decamelize "^1.2.0"
+yaml@^2.2.1, yaml@^2.2.2:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b"
+ integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==
yargs-parser@^18.1.2:
version "18.1.3"
@@ -15528,23 +15293,12 @@ yargs-parser@^18.1.2:
camelcase "^5.0.0"
decamelize "^1.2.0"
-yargs@^13.3.2:
- version "13.3.2"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
- integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
- dependencies:
- 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"
+yargs-parser@^21.1.1:
+ version "21.1.1"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
+ integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
-yargs@^15.1.0, yargs@^15.3.1, yargs@^15.4.1:
+yargs@^15.1.0:
version "15.4.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
@@ -15561,6 +15315,19 @@ yargs@^15.1.0, yargs@^15.3.1, yargs@^15.4.1:
y18n "^4.0.0"
yargs-parser "^18.1.2"
+yargs@^17.3.1, yargs@^17.6.2:
+ version "17.7.2"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
+ integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
+ dependencies:
+ cliui "^8.0.1"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.3"
+ y18n "^5.0.5"
+ yargs-parser "^21.1.1"
+
yocto-queue@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"