Repository: galio-org/galio-starter-kit Branch: master Commit: f8b0faab75f0 Files: 34 Total size: 320.4 KB Directory structure: gitextract_wkljwq93/ ├── .babelrc ├── .eslintrc ├── .expo-shared/ │ └── assets.json ├── .gitignore ├── .npmignore ├── .prettierrc ├── .watchmanconfig ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app/ │ ├── _layout.tsx │ ├── components/ │ │ ├── CustomTabBar.js │ │ └── NavigationMenu.js │ ├── fonts/ │ │ └── galio.json │ ├── helpers/ │ │ └── normalize.js │ ├── index.tsx │ ├── screens/ │ │ ├── auth/ │ │ │ ├── Login.js │ │ │ ├── Register.js │ │ │ └── Registerv2.js │ │ ├── content/ │ │ │ ├── Article.js │ │ │ ├── ArticleCover.js │ │ │ ├── ArticleFeedv1.js │ │ │ ├── ArticleFeedv2.js │ │ │ ├── News.js │ │ │ └── Presentation.js │ │ └── ui/ │ │ ├── Cards.js │ │ ├── Components.js │ │ ├── Grid.js │ │ └── OrderConfirmed.js │ └── theme.js ├── app.json ├── assets/ │ └── fonts/ │ └── galio.json ├── package.json └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .babelrc ================================================ { "presets": ["babel-preset-expo"] } ================================================ FILE: .eslintrc ================================================ { "parser": "babel-eslint", "extends": "airbnb", "env": { "node": true, "browser": true, "es6": true }, "plugins": [ "react", "flowtype", "jsx-a11y", "import" ], "rules": { "react/jsx-filename-extension": [ 1, { "extensions": [ ".js", ".jsx" ] } ], "react/prefer-stateless-function": 0, "no-use-before-define": [ "error", { "variables": false } ], "react/forbid-prop-types": [ 0, { "forbid": [] } ], "import/extensions": [ 1, "never", { "svg": "always" } ], "import/no-extraneous-dependencies": [ "error", { "devDependencies": true, "optionalDependencies": false, "peerDependencies": false } ] } } ================================================ FILE: .expo-shared/assets.json ================================================ { "ef6c7f40dda587ac3d85c87c1f6367254af81b0f9c5c4cb1c7201c843cb4eb54": true, "1c98ebe30736efda6ca0e32c52acac73ac764abcc1e576e6fbe50e2426553f0a": true, "294694feb2ba332c238a7cffca95d0630ea11b03849c2f9479813153a1537de4": true, "dfb2b5374025c900370b8df9aba3738533f3781fb3e84deea75612ed7adaecab": true } ================================================ FILE: .gitignore ================================================ node_modules/**/* .expo/* npm-debug.* package-lock.json yarn.lock .DS_Store # @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb # The following patterns were generated by expo-cli expo-env.d.ts # @end expo-cli .yalc/ ================================================ FILE: .npmignore ================================================ .expo routes.js assets/ src/screens/ .babelrc .eslintrc .prettierrc .watchmanconfig ================================================ FILE: .prettierrc ================================================ { "singleQuote": true, "trailingComma": "es5", "proseWrap": "always" } ================================================ FILE: .watchmanconfig ================================================ {} ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing Thank you for your interest in contributing! Please feel free to put up a PR for any issue or feature request which hasn't been taken. Even if you have little to no experience with React Native or Galio, we'd be more than happy to help you with any information or guidance in order to fulfill your PR. ## Gitter [![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/galio-community) Please don't hesitate to join us on [gitter](https://gitter.im/galio-community)! Technical points of discussion, general questions and suggestions or anything at all - we would love to chat about it. ## Reporting issues & features requests If you notice any bugs in the app, see some code that can be improved, or have features you would like to be added, please create a [bug report](https://github.com/galio-org/galio-starter-kit/issues/new?template=bug-report---.md) or a [feature request](https://github.com/galio-org/galio/issues/new?template=feature-request---.md)! If you want to open a PR that fixes a bug or adds a feature, then we can't thank you enough! ## Working on issues Please feel free to take on any issue that's currently open. Just send a comment in order to let us know you're working on it so we can assign that specific issue to you. In order to get started with Galio development, check out our [Wiki](https://github.com/galio-org/galio-starter-kit/wiki)! ## Submitting a pull request galio-starter-kit is an open-source project, so pull requests are always welcome (_always_ ❤️), but before working on a large change, it is best to open an issue first to discuss it with the maintainers or if an issue was already opened, comment your intention of opening up a PR. When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, don't bundle more than one feature or bug fix per pull request. It's always best to create two smaller PRs than one big one. As with issues, use the following formula for the title of your **PR**s: - **Bugfix/[_Component name_]** - **Screen/[_Screen name_]** - **Feature/[_Feature name_]** ## Branches explained As you can see we have multiple branches: - **master**: This branch stores the latest stable version of Galio. - **dev**: This is the `dev` branch of Galio, this is where everything is happening before releasing on master ## Financial contributions We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/galio). Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed. ## galio-starter-kit contribution You want to take part in this cool community and help the world by creating some cool screens using Galio? Then go ahead and hope on our [galio-starter-kit repo](https://github.com/galio-org/galio-starter-kit). ## Hacktoberfest 2018 Galio participated in last year's Hacktoberfest challenge. You can find out more about this [here](https://github.com/galio-org/galio/issues/31). ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2019 Galio Org (galio.io) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # [galio-starter-kit](https://www.galio.io) ![GitHub package.json version](https://img.shields.io/github/package-json/v/galio-org/galio-starter-kit.svg) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&logo=twitter)](https://twitter.com/home?status=Galio,%20a%20free%20and%20beautiful%20UI%20framework%20https%3A//galio.io/%20%23reactnative%20%23react%20%23design%20%23developers%20%23freebie%20via%20%40galioframework) [![GitHub issues](https://img.shields.io/github/issues/galio-org/galio-starter-kit.svg?style=popout)](https://github.com/galio-org/galio-starter-kit/issues) [![GitHub closed issues](https://img.shields.io/github/issues-closed/galio-org/galio-starter-kit.svg)](https://github.com/galio-org/galio-starter-kit/issues?q=is%3Aissue+is%3Aclosed) [![GitHub pull requests](https://img.shields.io/github/issues-pr/galio-org/galio-starter-kit.svg)](https://github.com/galio-org/galio-starter-kit/pulls) [![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/galio-org/galio-starter-kit.svg)](https://github.com/galio-org/galio-starter-kit/pulls?q=is%3Apr+is%3Aclosed) [![Gitter](https://badges.gitter.im/NIT-dgp/General.svg)](https://gitter.im/galio-community) [![npm](https://img.shields.io/npm/dm/galio-framework.svg)](https://www.npmjs.com/package/galio-framework) [![Backers on Open Collective](https://opencollective.com/galio/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/galio/sponsors/badge.svg)](#sponsors)

Galio is one of the coolest UI libraries you could ever use, licensed under MIT. Carefully crafted by developers for developers. Ready-made components, typography, and a gorgeous base theme that is easily adaptable to each project.

This project was built with the main purpose of showcasing what Galio can be used for. The whole community started creating different screens for Galio, enabling other users to see how versatile and easy to use our library is. Join this big community of people building with Galio!

## Table of Contents * [Quick start](#quick-start) * [Documentation](#documentation) * [Resources](#resources) * [Reporting Issues](#reporting-issues) * [Licensing](#licensing)

## Quick Start #### 1. Project Setup ```bash git clone https://github.com/galio-org/galio-starter-kit.git cd galio-starter-kit npm install or yarn install ``` #### 2. Starting the local server for your app Terminal cli: `expo r -c` or `npm start` ### 3. Now a new browser window should appear: Click on 'run iOS' or 'run Android' ## Documentation The documentation for Galio is hosted at our [our website](https://galio.io) ## Resources * Website: * Expo: * Issues: [GitHub Issues Page](https://github.com/galio-org/galio-starter-kit/issues) ## Reporting Issues We use GitHub Issues as the official bug tracker for galio-starter-kit. Here are some advices for our users that want to report an issue: 1. Make sure that you are using the latest version of galio-starter-kit. Check for your fork's master branch status and see if it's up to date with the upstream/master (our repository) 2. Provide us with reproductible steps for the issue. 3. Some issues may be platform specific, so specifying what platform and if it's a simulator or a hardware device will help a lot. ## Licensing * Licensed under MIT () © 2019 [Galio](https://galio.io) made with ❤️ for apps. ================================================ FILE: app/_layout.tsx ================================================ import React from 'react'; import { View, StyleSheet } from 'react-native'; import { Stack } from 'expo-router'; import CustomTabBar from './components/CustomTabBar'; import { GalioProvider } from 'galio-framework'; import theme from './theme'; export default function StackLayout() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, }, }); ================================================ FILE: app/components/CustomTabBar.js ================================================ import React from 'react'; import { View, Text, TouchableOpacity, StyleSheet } from 'react-native'; import { useRouter, usePathname } from 'expo-router'; import { Icon } from 'galio-framework'; import theme from '../theme'; const CustomTabBar = () => { const router = useRouter(); const pathname = usePathname(); // current path to determine focused tab // Define your tabs here same as before const tabs = [ { name: 'index', label: 'Home', icon: 'home', }, { name: 'screens/auth/Login', label: 'Auth', icon: 'user-secret', }, { name: 'screens/content/Article', label: 'Content', icon: 'archive', }, { name: 'screens/ui/Components', label: 'UI', icon: 'sliders', }, ]; return ( {tabs.map(({ name, label, icon }) => { const isFocused = pathname === `/${name === 'index' ? '' : name}`; const color = isFocused ? theme.COLORS.PRIMARY : theme.COLORS.ICON; return ( router.push(name === 'index' ? '/' : `/${name}`)} style={styles.tabItem} > {label} ); })} ); }; const styles = StyleSheet.create({ tabBar: { position: 'absolute', bottom: 3, left: 16, right: 16, borderRadius: 25, height: 80, paddingTop: 10, paddingBottom: 10, backgroundColor: 'white', elevation: 5, flexDirection: 'row', justifyContent: 'space-around', alignItems: 'center', }, tabItem: { alignItems: 'center', }, label: { fontSize: 12, marginTop: 4, textAlign: 'center', }, }); export default CustomTabBar; ================================================ FILE: app/components/NavigationMenu.js ================================================ import React, { useEffect, useState } from 'react'; import { Modal, View, TouchableOpacity, StyleSheet, Dimensions, SafeAreaView, ScrollView, Animated } from 'react-native'; import { router } from 'expo-router'; import { Icon, Text } from 'galio-framework'; import theme from '../theme'; const { width } = Dimensions.get('screen'); const NavigationMenu = ({ isVisible, onClose, currentScreen }) => { const [expandedSections, setExpandedSections] = useState({}); const [slideAnim] = useState(new Animated.Value(-width)); // start offscreen LEFT // run animation whenever visibility changes useEffect(() => { if (isVisible) { Animated.timing(slideAnim, { toValue: 0, duration: 300, useNativeDriver: true, }).start(); } else { Animated.timing(slideAnim, { toValue: -width, duration: 300, useNativeDriver: true, }).start(); } }, [isVisible]); const navigateToScreen = (screenName) => { onClose(); if (screenName !== currentScreen) { router.push(screenName); } }; const toggleSection = (sectionTitle) => { setExpandedSections(prev => ({ ...prev, [sectionTitle]: !prev[sectionTitle] })); }; const menuStructure = [ { name: '/', title: 'Home', icon: 'home', family: 'material', type: 'single' }, { title: 'Auth', icon: 'person', family: 'material', type: 'section', children: [ { name: '/screens/auth/Login', title: 'Login', icon: 'login', family: 'materialcommunity' }, { name: '/screens/auth/Register', title: 'Register', icon: 'person-add', family: 'material' }, { name: '/screens/auth/Registerv2', title: 'Register v2', icon: 'person', family: 'material' }, ], }, { title: 'UI', icon: 'apps', family: 'material', type: 'section', children: [ { name: '/screens/ui/Components', title: 'Components', icon: 'cube', family: 'fontawesome' }, { name: '/screens/ui/Cards', title: 'Cards', icon: 'album', family: 'materialcommunity' }, { name: '/screens/ui/Grid', title: 'Grid', icon: 'layers', family: 'materialcommunity' }, { name: '/screens/ui/OrderConfirmed', title: 'Order Confirmed', icon: 'check-circle', family: 'material' }, ], }, { title: 'Content', icon: 'slideshow', family: 'material', type: 'section', children: [ { name: '/screens/content/News', title: 'News', icon: 'newspaper', family: 'material' }, { name: '/screens/content/Article', title: 'Article', icon: 'receipt', family: 'material' }, { name: '/screens/content/Presentation', title: 'Presentation', icon: 'videocam', family: 'material' }, { name: '/screens/content/ArticleCover', title: 'Article Cover', icon: 'image', family: 'material' }, { name: '/screens/content/ArticleFeedv1', title: 'Article Feed v1', icon: 'list', family: 'ionicon' }, { name: '/screens/content/ArticleFeedv2', title: 'Article Feed v2', icon: 'book', family: 'fontawesome' }, ], }, ]; const renderMenuItem = (item, index) => { if (item.type === 'single') { return ( navigateToScreen(item.name)} > {item.title} ); } if (item.type === 'section') { const isExpanded = expandedSections[item.title]; return ( toggleSection(item.title)} > {item.title} {isExpanded && ( {item.children.map((child, childIndex) => ( navigateToScreen(child.name)} > {child.title} ))} )} ); } }; return ( {/* Dark background that closes the menu when tapped */} {/* Animate the menu sliding in from LEFT */} Navigation {menuStructure.map((item, index) => renderMenuItem(item, index))} ); }; const styles = StyleSheet.create({ modalOverlay: { flex: 1, flexDirection: 'row', // menu sits LEFT, background fills the rest }, modalBackground: { flex: 1, backgroundColor: 'rgba(0,0,0,0.5)', }, menuContainer: { width: width * 0.8, maxWidth: 320, backgroundColor: theme.COLORS.WHITE, shadowColor: '#000', shadowOffset: { width: -2, height: 0 }, shadowOpacity: 0.25, shadowRadius: 3.84, elevation: 5, position: 'absolute', left: 0, top: 0, bottom: 0, }, menuContent: { flex: 1 }, menuHeader: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', padding: theme.SIZES.BASE, borderBottomWidth: 1, borderBottomColor: theme.COLORS.MUTED, backgroundColor: theme.COLORS.WHITE, }, menuTitle: { fontSize: theme.SIZES.FONT * 1.25, fontWeight: 'bold', color: theme.COLORS.BLACK, }, closeButton: { padding: 5 }, menuScrollView: { flex: 1 }, menuItem: { flexDirection: 'row', alignItems: 'center', paddingVertical: theme.SIZES.BASE * 0.75, paddingHorizontal: theme.SIZES.BASE, borderBottomWidth: 1, borderBottomColor: '#f8f8f8', }, activeMenuItem: { backgroundColor: theme.COLORS.PRIMARY }, menuText: { marginLeft: theme.SIZES.BASE, fontSize: theme.SIZES.FONT, color: theme.COLORS.BLACK, fontWeight: '500', }, activeMenuText: { color: theme.COLORS.WHITE, fontWeight: 'bold' }, sectionHeader: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', paddingVertical: theme.SIZES.BASE, paddingHorizontal: theme.SIZES.BASE, backgroundColor: '#f8f9fa', borderBottomWidth: 1, borderBottomColor: '#e9ecef', }, sectionHeaderContent: { flexDirection: 'row', alignItems: 'center' }, sectionTitle: { marginLeft: theme.SIZES.BASE, fontSize: theme.SIZES.FONT * 1.1, color: theme.COLORS.BLACK, fontWeight: '600', }, sectionChildren: { backgroundColor: '#fdfdfd' }, childMenuItem: { flexDirection: 'row', alignItems: 'center', paddingVertical: theme.SIZES.BASE * 0.6, paddingHorizontal: theme.SIZES.BASE, paddingLeft: theme.SIZES.BASE * 2.5, borderBottomWidth: 1, borderBottomColor: '#f0f0f0', }, activeChildMenuItem: { backgroundColor: theme.COLORS.PRIMARY }, childIconContainer: { width: 20, alignItems: 'center' }, childMenuText: { marginLeft: theme.SIZES.BASE * 0.75, fontSize: theme.SIZES.FONT * 0.9, color: theme.COLORS.BLACK, fontWeight: '400', }, activeChildMenuText: { color: theme.COLORS.WHITE, fontWeight: 'bold' }, }); export default NavigationMenu; ================================================ FILE: app/fonts/galio.json ================================================ {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M1014.627 969.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192z","M416 832c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM416 768c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352z","M608 384c17.673 0 32 14.327 32 32s-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32s14.327-32 32-32h384z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zoom-split-out"]},"attrs":[{},{},{}],"properties":{"order":546,"id":114,"name":"zoom-split-out","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M1014.627 969.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192z","M416 832c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM416 768c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352z","M384 224c0-17.673 14.327-32 32-32s32 14.327 32 32v384c0 17.673-14.327 32-32 32s-32-14.327-32-32v-384z","M608 384c17.673 0 32 14.327 32 32s-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32s14.327-32 32-32h384z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zoom-split-in"]},"attrs":[{},{},{},{}],"properties":{"order":547,"id":113,"name":"zoom-split-in","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M342.311 288l375.938-250.626c21.266-14.177 49.75 1.067 49.75 26.626v896c0 25.558-28.485 40.803-49.75 26.626l-375.938-250.626h-310.311c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32h310.311zM704 123.793l-334.25 222.833c-5.257 3.504-11.433 5.374-17.75 5.374h-288v320h288c6.318 0 12.494 1.87 17.75 5.374l334.25 222.833v-776.415z","M873.608 306.381c-12.626-12.367-12.836-32.627-0.469-45.252s32.627-12.836 45.252-0.469c67.081 65.705 105.608 155.521 105.608 251.341 0 93.406-36.563 181.064-100.678 246.411-12.377 12.615-32.638 12.808-45.253 0.43s-12.808-32.638-0.43-45.253c52.49-53.498 82.362-125.115 82.362-201.589 0-78.444-31.482-151.836-86.392-205.619z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-97"]},"attrs":[{},{}],"properties":{"order":548,"id":112,"name":"volume-97","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M535.799 273.067l401.001-267.334c22.683-15.122 53.067 1.139 53.067 28.401v955.733c0 27.262-30.384 43.523-53.067 28.401l-401.001-267.334h-467.532c-18.851 0-34.133-15.282-34.133-34.133v-409.6c0-18.851 15.282-34.133 34.133-34.133h467.532zM921.6 97.912l-356.533 237.689c-5.607 3.738-12.195 5.733-18.934 5.733h-443.733v341.333h443.733c6.739 0 13.327 1.995 18.934 5.733l356.533 237.689v-828.176z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-93"]},"attrs":[{}],"properties":{"order":549,"id":111,"name":"volume-93","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M954.368 620.096l-138.048-39.424c-10.216-2.913-18.321-10.706-21.632-20.8l-10.88-33.408c50.406 3.327 100.877-5.45 147.2-25.6 7.968-4.129 13.836-11.415 16.172-20.080s0.927-17.913-3.884-25.488c-34.517-57.47-50.993-123.975-47.296-190.912 1.539-105.174-79.445-193.186-184.384-200.384-78.403-3.058-150.778 41.897-182.784 113.536 30.487 44.346 46.922 96.841 47.168 150.656-3.807 54.996 9.23 109.847 37.376 157.248 13.866 22.21 18.058 49.121 11.605 74.496s-22.99 47.015-45.781 59.904l8.768 2.56c68.605 19.831 115.882 82.571 116.032 153.984v151.616c-0.106 10.926-2.098 21.752-5.888 32h293.888c17.673 0 32-14.327 32-32v-215.616c-0.009-42.857-28.424-80.517-69.632-92.288z","M570.368 684.096l-138.048-39.424c-10.216-2.913-18.321-10.706-21.632-20.8l-10.88-33.408c50.406 3.327 100.877-5.45 147.2-25.6 7.968-4.129 13.836-11.415 16.172-20.080s0.927-17.913-3.884-25.488c-34.517-57.47-50.993-123.975-47.296-190.912 1.539-105.174-79.445-193.186-184.384-200.384-52.228-2.073-103.044 17.236-140.715 53.47s-58.942 86.261-58.901 138.53c4.912 69.695-11.518 139.234-47.104 199.36-4.785 7.579-6.172 16.817-3.824 25.467s8.216 15.918 16.176 20.037c46.323 20.15 96.794 28.927 147.2 25.6l-10.88 33.408c-3.311 10.094-11.416 17.887-21.632 20.8l-138.048 39.424c-41.31 11.677-69.847 49.36-69.888 92.288v151.616c0 17.673 14.327 32 32 32h576c17.673 0 32-14.327 32-32v-151.616c-0.009-42.857-28.423-80.517-69.632-92.288z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-ww"]},"attrs":[{},{}],"properties":{"order":550,"id":110,"name":"users-ww","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M634.393 723.984c41.192 11.782 69.588 49.422 69.607 92.272v143.744c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32l0-143.758c0.019-42.836 28.416-80.476 69.607-92.258l157.643-45.049 7.657-53.692c-57.344-0.427-113.372-19.977-158.85-56.216-13.443-10.712-16.022-30.13-5.842-43.979 42.937-58.412 63.476-130.298 57.784-205.047 0-123.712 100.288-224 224-224s224 100.288 223.905 226.47c-5.597 72.279 14.942 144.165 57.879 202.577 10.18 13.849 7.601 33.267-5.842 43.979-45.478 36.239-101.506 55.789-158.85 56.216l7.657 53.692 157.643 45.049zM640 928v-111.73c-0.006-14.279-9.472-26.825-23.2-30.752l-177.593-50.75c-12.139-3.469-21.104-13.751-22.887-26.25l-16.192-113.536c-3.040-21.318 15.418-39.493 36.687-36.124 44.058 6.98 88.858-1.473 127.028-23.415-39.418-65.187-57.686-141.077-51.844-215.444 0-88.366-71.634-160-160-160s-160 71.634-160.095 157.53c5.926 76.527-12.332 152.691-51.75 217.913 38.171 21.943 82.972 30.396 127.031 23.416 21.268-3.37 39.727 14.806 36.687 36.124l-16.192 113.536c-1.783 12.499-10.748 22.781-22.887 26.25l-177.593 50.75c-13.728 3.927-23.194 16.473-23.2 30.738v111.744h576z","M954.4 659.986c41.184 11.78 69.581 49.42 69.6 92.27v207.744c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h160v-175.73c-0.006-14.279-9.472-26.825-23.193-30.75l-177.6-50.752c-12.139-3.469-21.104-13.751-22.887-26.25l-16.192-113.536c-3.040-21.318 15.418-39.493 36.687-36.124 44.058 6.98 88.858-1.473 127.028-23.415-39.418-65.186-57.685-141.066-51.843-215.358-0.154-57.086-30.71-109.765-80.186-138.241s-110.376-28.435-159.814 0.108c-15.305 8.837-34.876 3.593-43.713-11.713s-3.593-34.876 11.713-43.713c69.213-39.96 154.473-40.018 223.739-0.151s112.046 113.618 112.165 196.094c-5.597 72.279 14.942 144.165 57.879 202.577 10.18 13.849 7.601 33.267-5.842 43.979-45.478 36.239-101.506 55.789-158.85 56.216l7.657 53.692 157.651 45.051z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-ww-2"]},"attrs":[{},{}],"properties":{"order":551,"id":109,"name":"users-ww-2","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M951.328 660.863c42.713 10.7 72.671 49.087 72.672 93.121v206.016c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h160v-174.015c-0-14.678-9.986-27.473-24.211-31.037l-207.552-51.904c-12.624-3.157-22.079-13.644-23.916-26.526l-16.192-113.536c-2.003-14.042 5.477-27.727 18.378-33.623 56.913-26.010 93.44-82.812 93.493-145.359l0.006-56.551c1.517-78.922-52.933-147.923-129.184-164.62-28.141-5.351-57.197-3.174-84.227 6.31-16.676 5.852-34.939-2.923-40.79-19.599s2.923-34.939 19.599-40.79c37.667-13.218 78.157-16.251 118.236-8.617 106.943 23.4 182.458 119.094 180.36 227.932l-0 55.963c-0.068 79.422-42.105 152.201-109.329 192.238l9.971 69.912 186.687 46.686z","M634.393 755.984c41.192 11.782 69.588 49.422 69.607 92.272v111.744c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32l0-111.758c0.019-42.836 28.416-80.476 69.607-92.258l157.643-45.049 7.657-53.692c-57.344-0.427-113.372-19.977-158.85-56.216-13.443-10.712-16.022-30.13-5.842-43.979 42.937-58.412 63.476-130.298 57.784-205.047 0-123.712 100.288-224 224-224s224 100.288 223.905 226.47c-5.597 72.279 14.942 144.165 57.879 202.577 10.18 13.849 7.601 33.267-5.842 43.979-45.478 36.239-101.506 55.789-158.85 56.216l7.657 53.692 157.643 45.049zM640 848.27c-0.006-14.279-9.472-26.825-23.2-30.752l-177.593-50.75c-12.139-3.469-21.104-13.751-22.887-26.25l-16.192-113.536c-3.040-21.318 15.418-39.493 36.687-36.124 44.058 6.98 88.858-1.473 127.028-23.415-39.418-65.187-57.686-141.077-51.844-215.444 0-88.366-71.634-160-160-160s-160 71.634-160.095 157.53c5.926 76.527-12.332 152.691-51.75 217.913 38.171 21.943 82.972 30.396 127.031 23.416 21.268-3.37 39.727 14.806 36.687 36.124l-16.192 113.536c-1.783 12.499-10.748 22.781-22.887 26.25l-177.593 50.75c-13.728 3.927-23.194 16.473-23.2 30.738v79.744h576v-79.73z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-wm"]},"attrs":[{},{}],"properties":{"order":552,"id":108,"name":"users-wm","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M951.296 653.824l-163.648-40.896c-12.014-3.010-21.213-12.682-23.616-24.832l-12.224-61.632c68.296-31.212 112.128-99.374 112.192-174.464v-87.936c1.613-105.792-80.48-194.038-186.112-200.064-67.751-1.986-131.529 31.898-167.808 89.152 42.185 48.595 65.57 110.691 65.92 175.040-3.807 54.996 9.23 109.847 37.376 157.248 13.866 22.21 18.058 49.121 11.605 74.496s-22.99 47.015-45.781 59.904l8.768 2.56c68.605 19.831 115.882 82.571 116.032 153.984v151.616c-0.106 10.926-2.098 21.752-5.888 32h293.888c17.673 0 32-14.327 32-32v-181.056c-0.005-44.043-29.978-82.432-72.704-93.12z","M570.368 684.096l-138.048-39.424c-10.216-2.913-18.321-10.706-21.632-20.8l-10.88-33.408c50.406 3.327 100.877-5.45 147.2-25.6 7.968-4.129 13.836-11.415 16.172-20.080s0.927-17.913-3.884-25.488c-34.517-57.47-50.993-123.975-47.296-190.912 1.539-105.174-79.445-193.186-184.384-200.384-52.228-2.073-103.044 17.236-140.715 53.47s-58.942 86.261-58.901 138.53c4.912 69.695-11.518 139.234-47.104 199.36-4.785 7.579-6.172 16.817-3.824 25.467s8.216 15.918 16.176 20.037c46.323 20.15 96.794 28.927 147.2 25.6l-10.88 33.408c-3.311 10.094-11.416 17.887-21.632 20.8l-138.048 39.424c-41.31 11.677-69.847 49.36-69.888 92.288v151.616c0 17.673 14.327 32 32 32h576c17.673 0 32-14.327 32-32v-151.616c-0.009-42.857-28.423-80.517-69.632-92.288z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-wm-2"]},"attrs":[{},{}],"properties":{"order":553,"id":107,"name":"users-wm-2","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M466.659 608.272l10.073 70.904 157.615 44.795c41.236 11.795 69.633 49.435 69.652 92.285v143.744c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32l0-144.014c0.019-42.836 28.416-80.476 69.652-92.271l157.615-44.795 10.065-70.653c-67.226-40.037-109.265-112.819-109.333-192.267l0-95.985c-0.029-60.618 24.512-118.66 68.018-160.871s102.262-64.988 163.693-63.092c122.758 7.003 218.16 109.556 216.29 232.012l-0 87.963c-0.068 79.427-42.11 152.209-109.341 192.245zM459.203 740.728c-24.292-6.918-42.243-27.477-45.829-52.515l-13.248-93.248c-1.994-14.037 5.486-27.712 18.381-33.606 56.913-26.010 93.44-82.812 93.493-145.359l0.004-88.424c1.351-88.64-67.432-162.579-155.097-167.591-43.278-1.328-85.247 14.941-116.322 45.092s-48.605 71.609-48.584 114.923l-0 95.973c0.053 62.575 36.58 119.376 93.493 145.387 12.899 5.895 20.379 19.577 18.379 33.618l-13.251 93.015c-3.581 25.003-21.532 45.562-45.841 52.485l-157.58 44.785c-13.728 3.927-23.194 16.473-23.2 30.738v112h576v-111.73c-0.006-14.271-9.462-26.812-23.178-30.746l-157.618-44.796z","M764.612 614.2l186.716 46.663c42.713 10.7 72.671 49.087 72.672 93.121v206.016c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h160v-174.015c-0-14.678-9.986-27.473-24.207-31.036l-186.677-46.653c-25.284-6.309-44.217-27.319-47.869-53.101l-13.12-92.224c-1.997-14.039 5.483-27.717 18.38-33.612 56.913-26.010 93.44-82.812 93.493-145.359l0.004-88.424c1.351-88.64-67.432-162.579-155.106-167.592-29.735-0.921-59.138 6.467-84.907 21.333-15.308 8.832-34.877 3.581-43.709-11.727s-3.581-34.877 11.727-43.709c36.076-20.813 77.24-31.156 119.701-29.83 122.758 7.003 218.16 109.556 216.29 232.012l-0 87.963c-0.068 79.425-42.108 152.206-109.337 192.242l9.948 69.931z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-mm"]},"attrs":[{},{}],"properties":{"order":554,"id":106,"name":"users-mm","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M977.6 658.752l-140.032-40c-23.073-6.597-40.517-25.548-45.184-49.088l-8.576-43.2c68.296-31.212 112.128-99.374 112.192-174.464v-87.936c1.613-105.792-80.48-194.038-186.112-200.064-77.608-2.342-148.988 42.289-180.864 113.088 30.531 44.434 46.907 97.064 46.976 150.976v87.936c-0.115 23.281-3.453 46.435-9.92 68.8 16.591 17.404 36.303 31.537 58.112 41.664l-8.576 43.136c-4.667 23.54-22.111 42.491-45.184 49.088l-53.952 15.424 94.72 27.072c54.846 15.843 92.653 65.984 92.8 123.072v143.744c-0.106 10.926-2.098 21.752-5.888 32h293.888c17.673 0 32-14.327 32-32v-207.744c-0.013-28.557-18.944-53.651-46.4-61.504z","M593.6 722.752l-140.032-40c-23.091-6.608-40.539-25.588-45.184-49.152l-8.576-43.2c68.275-31.203 112.103-99.333 112.192-174.4v-87.936c1.613-105.792-80.48-194.038-186.112-200.064-51.934-1.593-102.296 17.929-139.587 54.111s-58.325 85.931-58.301 137.889v96c0.064 75.090 43.896 143.252 112.192 174.464l-8.576 43.136c-4.667 23.54-22.111 42.491-45.184 49.088l-140.032 40c-27.479 7.86-46.416 32.987-46.4 61.568v143.744c0 17.673 14.327 32 32 32h576c17.673 0 32-14.327 32-32v-143.744c-0.013-28.557-18.944-53.651-46.4-61.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-mm-2"]},"attrs":[{},{}],"properties":{"order":555,"id":105,"name":"users-mm-2","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M224 64c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c123.721 0 224 100.279 224 224s-100.279 224-224 224h-576c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c88.375 0 160-71.625 160-160s-71.625-160-160-160h-576z","M800 960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576c-123.721 0-224-100.279-224-224s100.279-224 224-224h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576c-88.375 0-160 71.625-160 160s71.625 160 160 160h576z","M224 448c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM224 384c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z","M800 1024c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM800 960c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ui-04"]},"attrs":[{},{},{},{}],"properties":{"order":556,"id":104,"name":"ui-04","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M320 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h384c176.713 0 320 143.287 320 320s-143.287 320-320 320h-384c-17.673 0-32-14.327-32-32s14.327-32 32-32h384c141.367 0 256-114.633 256-256s-114.633-256-256-256h-384z","M320 832c-176.731 0-320-143.269-320-320s143.269-320 320-320c176.731 0 320 143.269 320 320s-143.269 320-320 320zM320 768c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ui-03"]},"attrs":[{},{}],"properties":{"order":557,"id":103,"name":"ui-03","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M64 416c0-17.673 14.327-32 32-32s32 14.327 32 32v448c0 53.047 42.953 96 96 96h512c53.047 0 96-42.953 96-96v-448c0-17.673 14.327-32 32-32s32 14.327 32 32v448c0 88.393-71.607 160-160 160h-512c-88.393 0-160-71.607-160-160v-448z","M32 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h896c17.673 0 32 14.327 32 32s-14.327 32-32 32h-896z","M384 64v160c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32s-32-14.327-32-32v-160h-192z","M448 480c0-17.673 14.327-32 32-32s32 14.327 32 32v320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320z","M640 480c0-17.673 14.327-32 32-32s32 14.327 32 32v320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320z","M256 480c0-17.673 14.327-32 32-32s32 14.327 32 32v320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320z"],"attrs":[{},{},{},{},{},{}],"width":960,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash-simple"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":558,"id":102,"name":"trash-simple","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M955.733 955.733v-819.2c0-37.703-30.564-68.267-68.267-68.267h-68.267c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h68.267c75.405 0 136.533 61.128 136.533 136.533v853.333c0 18.851-15.282 34.133-34.133 34.133h-819.2c-18.851 0-34.133-15.282-34.133-34.133v-136.533c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v102.4h750.933z","M819.2 136.533v580.267c0 18.851-15.282 34.133-34.133 34.133h-750.933c-18.851 0-34.133-15.282-34.133-34.133v-580.267c0-75.405 61.128-136.533 136.533-136.533h750.933v68.267c-37.703 0-68.267 30.564-68.267 68.267zM750.933 682.667v-546.133c0-24.869 6.649-48.184 18.266-68.267h-632.666c-37.703 0-68.267 30.564-68.267 68.267v546.133h682.667zM887.467 0c45.511 0 45.511 68.267 0 68.267h-118.268c23.607-40.81 67.731-68.267 118.268-68.267z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["towel"]},"attrs":[{},{}],"properties":{"order":559,"id":101,"name":"towel","prevSize":32,"code":59661},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M64 512v448h128v-448h-128zM32 448h192c17.673 0 32 14.327 32 32v512c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-512c0-17.673 14.327-32 32-32z","M640 384l224.389 0c48.584-0.089 94.577 21.903 125.011 59.774s42.012 87.519 31.469 134.943l-71.105 320.003c-16.27 73.191-81.183 125.267-156.165 125.28h-441.6c-17.673 0-32-14.327-32-32s14.327-32 32-32h441.595c44.986-0.008 83.934-31.254 93.695-75.165l71.105-320.003c6.326-28.456-0.621-58.245-18.881-80.968s-45.856-35.918-75.065-35.864h-256.448c-17.673 0-32-14.327-32-32v-256c0-45.376-31.482-83.4-73.796-93.419l-119.846 359.539c-5.589 16.766-23.711 25.827-40.477 20.239s-25.827-23.711-20.239-40.477l128-384c4.356-13.067 16.584-21.881 30.358-21.881 88.366 0 160 71.634 160 160v224z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["thumb-up"]},"attrs":[{},{}],"properties":{"order":560,"id":100,"name":"thumb-up","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M64 64v448h128v-448h-128zM32 0h192c17.673 0 32 14.327 32 32v512c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-512c0-17.673 14.327-32 32-32z","M576 864v-256c0-17.673 14.327-32 32-32l256.507 0c29.151 0.053 56.746-13.142 75.007-35.864s25.207-52.512 18.881-80.971l-71.103-319.997c-9.762-43.914-48.71-75.16-93.691-75.168h-441.6c-17.673 0-32-14.327-32-32s14.327-32 32-32l441.605 0c74.977 0.013 139.89 52.089 156.161 125.283l71.103 319.997c10.543 47.427-1.035 97.075-31.469 134.946s-76.427 59.863-124.953 59.774h-224.448v224c0 88.366-71.634 160-160 160-13.774 0-26.002-8.814-30.358-21.881l-128-384c-5.589-16.766 3.472-34.888 20.239-40.477s34.888 3.472 40.477 20.239l119.846 359.539c42.314-10.019 73.796-48.043 73.796-93.419z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["thumb-down"]},"attrs":[{},{}],"properties":{"order":561,"id":99,"name":"thumb-down","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M1021.952 107.776c-1.636-7.696-7.322-13.897-14.848-16.192-13.454-2.683-27.383-1.688-40.32 2.88 0 0-897.216 322.432-948.48 358.144-11.008 7.744-14.72 12.16-16.576 17.408-8.832 25.6 18.752 36.672 18.752 36.672l231.232 75.328c3.904 0.704 7.92 0.463 11.712-0.704 52.608-33.216 529.28-334.208 556.8-344.32 4.352-1.28 7.552 0 6.4 3.136-11.008 38.4-422.784 404.416-425.024 406.656-2.218 1.853-3.389 4.673-3.136 7.552l-21.568 225.792c0 0-9.088 70.4 61.184 0 49.856-49.856 97.728-91.2 121.6-111.232 79.488 54.912 165.056 115.584 201.984 147.2 12.496 12.169 29.416 18.711 46.848 18.112 21.747-2.688 39.574-18.528 44.8-39.808 0 0 163.904-657.6 169.344-746.112 0.512-8.64 1.344-13.888 1.344-20.288 0.234-6.803-0.455-13.606-2.048-20.224z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["telegram"]},"attrs":[{}],"properties":{"order":562,"id":98,"name":"telegram","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M384 992c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960c0-17.673 14.327-32 32-32s32 14.327 32 32v960z","M352 77.255l-297.373 297.373c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l320-320c12.497-12.497 32.758-12.497 45.255 0l320 320c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-297.373-297.373z"],"attrs":[{},{}],"width":704,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-up"]},"attrs":[{},{}],"properties":{"order":563,"id":97,"name":"tail-up","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M32 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M649.373 214.627c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l320 320c12.497 12.497 12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l297.373-297.373-297.373-297.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-right"]},"attrs":[{},{}],"properties":{"order":564,"id":96,"name":"tail-right","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M992 480c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32s14.327-32 32-32h960z","M77.255 512l297.373 297.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-320-320c-12.497-12.497-12.497-32.758 0-45.255l320-320c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-297.373 297.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-left"]},"attrs":[{},{}],"properties":{"order":565,"id":95,"name":"tail-left","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M320 32c0-17.673 14.327-32 32-32s32 14.327 32 32v960c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960z","M649.373 649.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0l-320-320c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l297.373 297.373 297.373-297.373z"],"attrs":[{},{}],"width":704,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-down"]},"attrs":[{},{}],"properties":{"order":566,"id":94,"name":"tail-down","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M512 768c-141.385 0-256-114.615-256-256s114.615-256 256-256c141.385 0 256 114.615 256 256s-114.615 256-256 256zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192z","M692.963 376.291c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l181.056-181.056c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-181.056 181.056z","M647.709 692.963c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l181.056 181.056c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-181.056-181.056z","M331.037 647.709c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-181.056 181.056c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l181.056-181.056z","M376.291 331.037c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-181.056-181.056c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l181.056 181.056z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["support-17"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":567,"id":93,"name":"support-17","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M512 390.459l-462.25 308.166c-14.705 9.803-34.573 5.83-44.376-8.875s-5.83-34.573 8.875-44.376l480-320c10.749-7.166 24.752-7.166 35.501 0l480 320c14.705 9.803 18.678 29.671 8.875 44.376s-29.671 18.678-44.376 8.875l-462.25-308.166z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-up"]},"attrs":[{}],"properties":{"order":568,"id":92,"name":"stre-up","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M5.374 49.75c-9.803-14.705-5.83-34.573 8.875-44.376s34.573-5.83 44.376 8.875l320 480c7.166 10.749 7.166 24.752 0 35.501l-320 480c-9.803 14.705-29.671 18.678-44.376 8.875s-18.678-29.671-8.875-44.376l308.166-462.25-308.166-462.25z"],"attrs":[{}],"width":384,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-right"]},"attrs":[{}],"properties":{"order":569,"id":91,"name":"stre-right","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M70.459 512l308.166 462.25c9.803 14.705 5.83 34.573-8.875 44.376s-34.573 5.83-44.376-8.875l-320-480c-7.166-10.749-7.166-24.752 0-35.501l320-480c9.803-14.705 29.671-18.678 44.376-8.875s18.678 29.671 8.875 44.376l-308.166 462.25z"],"attrs":[{}],"width":384,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-left"]},"attrs":[{}],"properties":{"order":570,"id":90,"name":"stre-left","prevSize":32,"code":59672},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M974.25 325.374c14.705-9.803 34.573-5.83 44.376 8.875s5.83 34.573-8.875 44.376l-480 320c-10.749 7.166-24.752 7.166-35.501 0l-480-320c-14.705-9.803-18.678-29.671-8.875-44.376s29.671-18.678 44.376-8.875l462.25 308.166 462.25-308.166z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-down"]},"attrs":[{}],"properties":{"order":571,"id":89,"name":"stre-down","prevSize":32,"code":59673},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M384 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M676.571 610.717c9.103-15.148 28.763-20.049 43.911-10.946s20.049 28.763 10.946 43.911c-46.286 77.024-129.567 124.14-219.429 124.14s-173.143-47.116-219.429-124.14c-9.103-15.148-4.202-34.808 10.946-43.911s34.808-4.202 43.911 10.946c34.714 57.768 97.176 93.105 164.571 93.105s129.857-35.337 164.571-93.105z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["smile"]},"attrs":[{},{},{},{}],"properties":{"order":572,"id":88,"name":"smile","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M512 379.608l-424.596 424.596c-19.995 19.995-52.413 19.995-72.408 0s-19.995-52.413 0-72.408l460.8-460.8c19.995-19.995 52.413-19.995 72.408 0l460.8 460.8c19.995 19.995 19.995 52.413 0 72.408s-52.413 19.995-72.408 0l-424.596-424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-up"]},"attrs":[{}],"properties":{"order":573,"id":87,"name":"small-up","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M644.392 512l-424.596-424.596c-19.995-19.995-19.995-52.413 0-72.408s52.413-19.995 72.408 0l460.8 460.8c19.995 19.995 19.995 52.413 0 72.408l-460.8 460.8c-19.995 19.995-52.413 19.995-72.408 0s-19.995-52.413 0-72.408l424.596-424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-right"]},"attrs":[{}],"properties":{"order":574,"id":86,"name":"small-right","prevSize":32,"code":59676},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M379.608 512l424.596 424.596c19.995 19.995 19.995 52.413 0 72.408s-52.413 19.995-72.408 0l-460.8-460.8c-19.995-19.995-19.995-52.413 0-72.408l460.8-460.8c19.995-19.995 52.413-19.995 72.408 0s19.995 52.413 0 72.408l-424.596 424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-left"]},"attrs":[{}],"properties":{"order":575,"id":85,"name":"small-left","prevSize":32,"code":59677},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M512 644.392l424.596-424.596c19.995-19.995 52.413-19.995 72.408 0s19.995 52.413 0 72.408l-460.8 460.8c-19.995 19.995-52.413 19.995-72.408 0l-460.8-460.8c-19.995-19.995-19.995-52.413 0-72.408s52.413-19.995 72.408 0l424.596 424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-down"]},"attrs":[{}],"properties":{"order":576,"id":84,"name":"small-down","prevSize":32,"code":59678},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M576 320h288c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-320c0-17.673 14.327-32 32-32s32 14.327 32 32v288z","M544 0c8.487 0 16.626 3.371 22.627 9.373l320 320c6.001 6.001 9.373 14.14 9.373 22.627v640c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32h512zM530.745 64h-466.745v896h768v-594.745l-301.255-301.255z"],"attrs":[{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-folded"]},"attrs":[{},{}],"properties":{"order":577,"id":83,"name":"single-folded","prevSize":32,"code":59679},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M224 768c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 384c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M544 0c8.487 0 16.626 3.371 22.627 9.373l320 320c6.001 6.001 9.373 14.14 9.373 22.627v640c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32h512zM530.745 64h-466.745v896h768v-594.745l-301.255-301.255z","M576 320h288c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-320c0-17.673 14.327-32 32-32s32 14.327 32 32v288z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-folded-content"]},"attrs":[{},{},{},{},{}],"properties":{"order":578,"id":82,"name":"single-folded-content","prevSize":32,"code":59680},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M64 256v704h576v-704h-576zM32 192h640c17.673 0 32 14.327 32 32v768c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32v-768c0-17.673 14.327-32 32-32z","M832 64h-672c-17.673 0-32-14.327-32-32s14.327-32 32-32h704c17.673 0 32 14.327 32 32v832c0 17.673-14.327 32-32 32s-32-14.327-32-32v-800z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z","M224 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-copy-04"]},"attrs":[{},{},{},{},{}],"properties":{"order":579,"id":81,"name":"single-copy-04","prevSize":32,"code":59681},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M64 320v640h512v-640h-512zM32 256h576c17.673 0 32 14.327 32 32v704c0 17.673-14.327 32-32 32h-576c-17.673 0-32-14.327-32-32v-704c0-17.673 14.327-32 32-32z","M704 192h-544c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32v704c0 17.673-14.327 32-32 32s-32-14.327-32-32v-672z","M832 64h-480c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-608z"],"attrs":[{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-copies"]},"attrs":[{},{},{}],"properties":{"order":580,"id":80,"name":"single-copies","prevSize":32,"code":59682},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M64 64v896h768v-896h-768zM32 0h832c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M224 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-content-03"]},"attrs":[{},{},{},{},{}],"properties":{"order":581,"id":79,"name":"single-content-03","prevSize":32,"code":59683},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M832 658.745v-594.745h-768v896h466.745l301.255-301.255zM544 1024h-512c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32h832c17.673 0 32 14.327 32 32v640c0 8.487-3.371 16.626-9.373 22.627l-320 320c-6.001 6.001-14.14 9.373-22.627 9.373z","M576 704v288c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-288z","M224 320c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 512c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-content-02"]},"attrs":[{},{},{},{},{}],"properties":{"order":582,"id":78,"name":"single-content-02","prevSize":32,"code":59684},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M669.626 604.795c-15.903-7.709-22.546-26.85-14.837-42.754s26.85-22.546 42.754-14.837c121.394 58.846 198.478 181.895 198.458 316.8-0.001 8.485-3.373 16.623-9.373 22.623-18.502 18.502-54.487 44.673-109.002 70.327-89.216 41.984-198.861 67.046-329.626 67.046s-240.41-25.062-329.626-67.046c-54.515-25.654-90.5-51.825-109.002-70.327-5.999-5.999-9.37-14.135-9.373-22.62-0.033-134.889 77.020-257.934 198.387-316.8 15.901-7.713 35.044-1.074 42.757 14.827s1.074 35.044-14.827 42.757c-95.021 46.087-156.843 140.257-161.971 244.989 3.036 2.425 6.692 5.224 10.976 8.339 19.026 13.837 42.418 27.803 70.304 40.925 80.784 38.016 181.139 60.954 302.374 60.954s221.59-22.938 302.374-60.954c27.886-13.123 51.278-27.088 70.304-40.925 4.283-3.115 7.939-5.914 10.974-8.338-5.14-104.744-66.985-198.916-162.027-244.987z","M640 256c0-106.039-85.961-192-192-192s-192 85.961-192 192c0 120.099 97.44 256 192 256s192-135.901 192-256zM704 256c0 151.74-120.641 320-256 320s-256-168.26-256-320c0-141.385 114.615-256 256-256s256 114.615 256 256z"],"attrs":[{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-03"]},"attrs":[{},{}],"properties":{"order":583,"id":77,"name":"single-03","prevSize":32,"code":59685},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M951.163 12.497c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-938.667 938.667c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l938.667-938.667z","M12.497 72.837c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l938.667 938.667c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-938.667-938.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simple-remove"]},"attrs":[{},{}],"properties":{"order":584,"id":76,"name":"simple-remove","prevSize":32,"code":59686},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M344.637 454.338c-14.988 9.365-34.73 4.807-44.095-10.181s-4.807-34.73 10.181-44.095l240.704-150.4c14.988-9.365 34.73-4.807 44.095 10.181s4.807 34.73-10.181 44.095l-240.704 150.4z","M310.723 623.938c-14.988-9.365-19.546-29.107-10.181-44.095s29.107-19.546 44.095-10.181l240.704 150.4c14.988 9.365 19.546 29.107 10.181 44.095s-29.107 19.546-44.095 10.181l-240.704-150.4z","M704 384c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM704 320c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M704 1024c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM704 960c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M192 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM192 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["share-bold"]},"attrs":[{},{},{},{},{}],"properties":{"order":585,"id":75,"name":"share-bold","prevSize":32,"code":59687},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M997.263 416.436c15.429 2.573 26.737 15.922 26.737 31.564v128c0 15.642-11.308 28.992-26.737 31.564l-119.38 19.906c-6.716 21.323-15.244 41.914-25.499 61.605l70.306 98.548c9.081 12.729 7.633 30.156-3.423 41.212l-90.496 90.496c-11.062 11.062-28.499 12.504-41.228 3.411l-98.481-70.351c-19.687 10.252-40.274 18.777-61.592 25.492l-19.906 119.38c-2.573 15.429-15.922 26.737-31.564 26.737h-128c-15.642 0-28.992-11.308-31.564-26.737l-19.906-119.38c-21.321-6.715-41.91-15.243-61.6-25.496l-98.483 70.298c-12.729 9.086-30.16 7.641-41.219-3.418l-90.496-90.496c-11.058-11.058-12.504-28.49-3.418-41.219l70.298-98.483c-10.253-19.689-18.781-40.279-25.496-61.6l-119.38-19.906c-15.429-2.573-26.737-15.922-26.737-31.564v-128c0-15.642 11.308-28.992 26.737-31.564l119.38-19.906c6.715-21.321 15.243-41.91 25.496-61.6l-70.298-98.483c-9.086-12.729-7.641-30.16 3.418-41.219l90.496-90.496c11.058-11.058 28.49-12.504 41.219-3.418l98.483 70.298c19.689-10.253 40.279-18.781 61.6-25.496l19.906-119.38c2.573-15.429 15.922-26.737 31.564-26.737h128c15.642 0 28.992 11.308 31.564 26.737l19.906 119.38c21.321 6.715 41.91 15.243 61.6 25.496l98.483-70.298c12.725-9.083 30.151-7.642 41.211 3.41l90.56 90.496c11.069 11.061 12.515 28.504 3.419 41.236l-70.351 98.481c10.252 19.687 18.777 40.274 25.492 61.592l119.38 19.906zM960 548.894v-73.788l-112.591-18.774c-12.503-2.085-22.596-11.353-25.738-23.632-7.573-29.599-19.205-57.642-34.595-83.564-6.476-10.909-5.897-24.614 1.478-34.937l66.348-92.877-52.215-52.178-92.895 66.309c-10.322 7.368-24.022 7.945-34.927 1.471-25.923-15.39-53.965-27.022-83.564-34.595-12.28-3.142-21.548-13.236-23.632-25.738l-18.774-112.591h-73.788l-18.774 112.591c-2.085 12.503-11.353 22.596-23.632 25.738-29.599 7.573-57.642 19.205-83.564 34.595-10.905 6.474-24.605 5.897-34.927-1.471l-92.887-66.304-52.172 52.172 66.304 92.887c7.368 10.322 7.945 24.022 1.471 34.927-15.39 25.923-27.022 53.965-34.595 83.564-3.142 12.28-13.236 21.548-25.738 23.632l-112.591 18.774v73.788l112.591 18.774c12.503 2.085 22.596 11.353 25.738 23.632 7.573 29.599 19.205 57.642 34.595 83.564 6.474 10.905 5.897 24.605-1.471 34.927l-66.304 92.887 52.172 52.172 92.887-66.304c10.322-7.368 24.022-7.945 34.927-1.471 25.923 15.39 53.965 27.022 83.564 34.595 12.28 3.142 21.548 13.236 23.632 25.738l18.774 112.591h73.788l18.774-112.591c2.085-12.503 11.353-22.596 23.632-25.738 29.599-7.573 57.642-19.205 83.564-34.595 10.909-6.476 24.614-5.897 34.937 1.478l92.885 66.354 52.17-52.17-66.314-92.953c-7.364-10.322-7.939-24.018-1.466-34.92 15.39-25.923 27.022-53.965 34.595-83.564 3.142-12.28 13.236-21.548 25.738-23.632l112.591-18.774z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["settings-gear-63"]},"attrs":[{},{}],"properties":{"order":586,"id":74,"name":"settings-gear-63","prevSize":32,"code":59688},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M64 64v320h896v-320h-896zM32 0h960c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32z","M416 192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h192z","M864 224c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M64 640v320h896v-320h-896zM32 576h960c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32z","M416 768c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h192z","M864 800c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["server-rack"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":587,"id":73,"name":"server-rack","prevSize":32,"code":59689},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M64 576v320h320v-320h-320zM64 512h352c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32v-431.744c0-212.205 80.027-353.86 235.649-418.181 16.333-6.751 35.046 1.017 41.797 17.35s-1.017 35.046-17.35 41.797c-129.741 53.625-196.095 171.078-196.095 359.035v15.744z","M640 576v320h320v-320h-320zM640 512h352c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32v-431.744c0-212.205 80.027-353.86 235.649-418.181 16.333-6.751 35.046 1.017 41.797 17.35s-1.017 35.046-17.35 41.797c-129.741 53.625-196.095 171.078-196.095 359.035v15.744z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote"]},"attrs":[{},{}],"properties":{"order":588,"id":72,"name":"quote","prevSize":32,"code":59690},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M384 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M363.885 765.711c-16.409 6.564-35.032-1.418-41.596-17.827s1.418-35.032 17.827-41.596l320-128c16.409-6.564 35.032 1.418 41.596 17.827s-1.418 35.032-17.827 41.596l-320 128z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["puzzled"]},"attrs":[{},{},{},{}],"properties":{"order":589,"id":71,"name":"puzzled","prevSize":32,"code":59691},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M736 128c-17.673 0-32-14.327-32-32s14.327-32 32-32h64c53.001 0 96 42.999 96 96v768c0 53.001-42.999 96-96 96h-704c-53.001 0-96-42.999-96-96v-768c0-53.001 42.999-96 96-96h64c17.673 0 32 14.327 32 32s-14.327 32-32 32h-64c-17.655 0-32 14.345-32 32v768c0 17.655 14.345 32 32 32h704c17.655 0 32-14.345 32-32v-768c0-17.655-14.345-32-32-32h-64z","M320 64v64h256v-64h-256zM288 0h320c17.673 0 32 14.327 32 32v128c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-128c0-17.673 14.327-32 32-32z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z"],"attrs":[{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad"]},"attrs":[{},{},{},{}],"properties":{"order":590,"id":70,"name":"notepad","prevSize":32,"code":59692},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M54.627 790.627c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l480-480c12.497-12.497 32.758-12.497 45.255 0l480 480c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-457.373-457.373-457.373 457.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-up"]},"attrs":[{}],"properties":{"order":591,"id":69,"name":"minimal-up","prevSize":32,"code":59693},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M512 690.745l457.373-457.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-480 480c-12.497 12.497-32.758 12.497-45.255 0l-480-480c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l457.373 457.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-down"]},"attrs":[{}],"properties":{"order":592,"id":68,"name":"minimal-down","prevSize":32,"code":59694},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M416 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M384 576c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 576c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 256h96c88.366 0 160 71.634 160 160v448c0 88.366-71.634 160-160 160h-704c-88.366 0-160-71.634-160-160v-448c0-88.366 71.634-160 160-160h306.745l246.627-246.627c20.159-20.159 54.627-5.882 54.627 22.627v224zM704 109.255l-201.373 201.373c-6.001 6.001-14.14 9.373-22.627 9.373h-320c-53.019 0-96 42.981-96 96v448c0 53.019 42.981 96 96 96h704c53.019 0 96-42.981 96-96v-448c0-53.019-42.981-96-96-96h-128c-17.673 0-32-14.327-32-32v-178.745z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["manga-63"]},"attrs":[{},{},{},{}],"properties":{"order":593,"id":67,"name":"manga-63","prevSize":32,"code":59695},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M416 192c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 960c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M195.2 248.64h-62.656v-120.64c0-14.677 0.299-28.117 0.896-40.32-4.407 5.256-9.198 10.176-14.336 14.72l-25.6 21.376-32-39.36 78.464-64h55.232v228.224z","M223.296 634.304h-165.696v-40.64l55.808-56.448c15.936-16.64 26.304-28.032 31.232-34.112 4.046-4.785 7.486-10.051 10.24-15.68 1.888-4.363 2.847-9.070 2.816-13.824 0.257-5.314-1.852-10.47-5.76-14.080-4.592-3.671-10.389-5.496-16.256-5.12-7.71 0.182-15.237 2.39-21.824 6.4-8.879 5.22-17.219 11.309-24.896 18.176l-33.92-39.68c9.106-8.519 19.056-16.089 29.696-22.592 8.208-4.595 16.988-8.081 26.112-10.368 10.471-2.558 21.222-3.784 32-3.648 13.636-0.224 27.163 2.459 39.68 7.872 10.951 4.683 20.326 12.413 27.008 22.272 6.364 9.593 9.708 20.873 9.6 32.384 0.070 8.418-1.072 16.803-3.392 24.896-2.401 7.911-5.89 15.45-10.368 22.4-5.447 8.342-11.706 16.124-18.688 23.232-7.765 8.107-24.299 23.509-49.6 46.208v1.6h86.4l-0.192 50.752z","M215.68 841.984c0.33 13.334-4.222 26.33-12.8 36.544-10.020 10.935-23.081 18.624-37.504 22.080v0.896c38.144 4.779 57.216 22.827 57.216 54.144 0.649 19.917-8.876 38.797-25.28 50.112-20.917 13.333-45.511 19.717-70.272 18.24-11.423 0.058-22.832-0.82-34.112-2.624-11.625-2.067-23.011-5.305-33.984-9.664v-51.2c9.688 4.979 19.937 8.782 30.528 11.328 9.38 2.343 19.004 3.567 28.672 3.648 10.204 0.702 20.415-1.261 29.632-5.696 6.215-3.724 9.803-10.63 9.28-17.856 0.354-5.294-1.394-10.514-4.864-14.528-4.403-3.93-9.808-6.566-15.616-7.616-9.235-1.943-18.661-2.823-28.096-2.624h-14.080v-46.336h14.4c31.296 0 47.040-8 47.040-24.064 0.32-5.421-2.359-10.581-6.976-13.44-5.701-3.172-12.17-4.701-18.688-4.416-16.194 0.511-31.909 5.616-45.312 14.72l-25.6-41.28c11.297-7.955 23.843-13.968 37.12-17.792 14.2-3.73 28.84-5.517 43.52-5.312 19.54-1.085 38.946 3.827 55.616 14.080 12.959 8.526 20.586 23.149 20.16 38.656z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["list-numbers"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":594,"id":66,"name":"list-numbers","prevSize":32,"code":59696},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M102.4 273.067v682.667h819.2v-682.667h-819.2zM68.267 204.8h887.467c18.851 0 34.133 15.282 34.133 34.133v750.933c0 18.851-15.282 34.133-34.133 34.133h-887.467c-18.851 0-34.133-15.282-34.133-34.133v-750.933c0-18.851 15.282-34.133 34.133-34.133z","M273.067 68.267c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h477.867c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-477.867z","M299.078 819.2h459.836l-153.279-255.464-306.557 255.464zM182.948 827.111l409.6-341.333c16.089-13.407 40.346-9.298 51.121 8.66l204.8 341.333c13.65 22.751-2.737 51.695-29.269 51.695h-614.4c-31.925 0-46.377-39.918-21.852-60.355z","M375.467 477.867c0 37.703-30.564 68.267-68.267 68.267s-68.267-30.564-68.267-68.267c0-37.703 30.564-68.267 68.267-68.267s68.267 30.564 68.267 68.267z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["img-stack"]},"attrs":[{},{},{},{}],"properties":{"order":595,"id":65,"name":"img-stack","prevSize":32,"code":59697},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M1002.944 418.88h-488.704v209.472h276.992c-44.288 139.648-153.664 186.176-279.232 186.176-133.735 0.168-251.712-87.492-290.146-215.585s11.797-266.223 123.534-339.707c111.737-73.484 258.465-64.885 360.852 21.149l152.192-144.96c-168.571-155.283-419.804-179.623-615.048-59.585s-286.93 355.206-224.458 575.719c62.472 220.514 263.881 372.648 493.073 372.442 282.304 0 537.6-186.176 490.944-605.12z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google"]},"attrs":[{}],"properties":{"order":596,"id":64,"name":"google","prevSize":32,"code":59698},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M32 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M497.126 192h494.874c17.673 0 32 14.327 32 32v640c0 88.393-71.607 160-160 160h-704c-88.393 0-160-71.607-160-160v-832c0-17.673 14.327-32 32-32h320c10.699 0 20.691 5.347 26.626 14.25l118.5 177.75zM960 256h-480c-10.699 0-20.691-5.347-26.626-14.25l-118.5-177.75h-270.874v800c0 53.047 42.953 96 96 96h704c53.047 0 96-42.953 96-96v-608z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-14"]},"attrs":[{},{}],"properties":{"order":597,"id":63,"name":"folder-14","prevSize":32,"code":59699},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M857.606 368.832c95.551 27.856 166.394 79.629 166.394 143.168 0 63.537-70.839 115.31-166.387 143.166 47.861 87.21 61.355 174.122 16.352 218.908-44.939 44.722-131.752 31.27-218.797-16.468-27.856 95.551-79.629 166.394-143.168 166.394-63.537 0-115.31-70.839-143.166-166.387-87.21 47.861-174.122 61.355-218.908 16.352-44.722-44.939-31.27-131.752 16.468-218.797-95.551-27.856-166.394-79.629-166.394-143.168 0-63.582 70.96-115.373 166.536-143.056-47.699-86.971-61.099-173.529-16.49-218.644 44.77-45.278 131.502-31.861 218.791 16.079 27.857-95.544 79.628-166.379 143.164-166.379 63.537 0 115.31 70.839 143.166 166.387 87.21-47.861 174.122-61.355 218.908-16.352 44.722 44.939 31.27 131.752-16.468 218.797zM960 512c0-30.401-69.307-73.086-158.654-91.129-22.286-4.501-32.902-30.155-20.311-49.087 50.332-75.683 69.134-155.041 47.675-176.603-21.338-21.442-100.741-2.593-176.494 47.785-18.932 12.59-44.587 1.975-49.087-20.311-18.043-89.348-60.728-158.654-91.129-158.654s-73.086 69.307-91.129 158.654c-4.501 22.286-30.155 32.902-49.087 20.311-75.858-50.448-154.928-69.209-176.229-47.666-21.546 21.79-2.786 100.908 47.603 176.676 12.608 18.959 1.942 44.649-20.387 49.102-89.363 17.823-158.771 60.492-158.771 90.922 0 30.401 69.307 73.086 158.654 91.129 22.286 4.501 32.902 30.155 20.311 49.087-50.332 75.683-69.134 155.041-47.675 176.603 21.338 21.442 100.741 2.593 176.494-47.785 18.932-12.59 44.587-1.975 49.087 20.311 18.043 89.348 60.728 158.654 91.129 158.654s73.086-69.307 91.129-158.654c4.501-22.286 30.155-32.902 49.087-20.311 75.683 50.332 155.041 69.134 176.603 47.675 21.442-21.338 2.593-100.741-47.785-176.494-12.59-18.932-1.975-44.587 20.311-49.087 89.348-18.043 158.654-60.728 158.654-91.129z","M512 640c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM512 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flower-06"]},"attrs":[{},{}],"properties":{"order":598,"id":62,"name":"flower-06","prevSize":32,"code":59700},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M546.133 989.867c0 18.851-15.282 34.133-34.133 34.133s-34.133-15.282-34.133-34.133v-955.733c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v955.733z","M34.133 546.133c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h955.733c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-955.733z","M399.603 194.803c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l136.533-136.533c13.33-13.33 34.942-13.33 48.272 0l136.533 136.533c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-112.397-112.397-112.397 112.397z","M512 941.595l112.397-112.397c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-136.533 136.533c-13.33 13.33-34.942 13.33-48.272 0l-136.533-136.533c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l112.397 112.397z","M941.595 512l-112.397-112.397c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l136.533 136.533c13.33 13.33 13.33 34.942 0 48.272l-136.533 136.533c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l112.397-112.397z","M194.803 624.397c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-136.533-136.533c-13.33-13.33-13.33-34.942 0-48.272l136.533-136.533c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-112.397 112.397 112.397 112.397z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["drag-31"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":599,"id":61,"name":"drag-31","prevSize":32,"code":59701},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M647.417 11.514c11.314-13.577 31.492-15.411 45.069-4.097s15.411 31.492 4.097 45.069l-320 384c-12.793 15.352-36.373 15.352-49.166 0l-320-384c-11.314-13.577-9.48-33.755 4.097-45.069s33.755-9.48 45.069 4.097l295.417 354.5 295.417-354.5z","M320 416c0-17.673 14.327-32 32-32s32 14.327 32 32v576c0 17.673-14.327 32-32 32s-32-14.327-32-32v-576z","M96 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32s-14.327 32-32 32h-512z","M96 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32s-14.327 32-32 32h-512z"],"attrs":[{},{},{},{}],"width":704,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-yen"]},"attrs":[{},{},{},{}],"properties":{"order":600,"id":60,"name":"currency-yen","prevSize":32,"code":59702},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M874.069 166.941c8.79 18.185 1.175 40.052-17.010 48.843s-40.052 1.175-48.843-17.010c-39.444-81.599-124.296-131.264-213.687-125.781-131.463 11.967-231.341 123.47-228.815 256.151v658.286c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.374-36.571-36.571l0.007-657.588c-3.252-170.338 125.653-314.245 296.39-329.772 120.092-7.387 232.737 58.545 285.101 166.872z","M182.857 1024c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h658.286c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-658.286z","M182.857 585.143c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h438.857c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-438.857z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-pound"]},"attrs":[{},{},{}],"properties":{"order":601,"id":59,"name":"currency-pound","prevSize":32,"code":59703},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M875.149 907.608c17.826-9.496 39.975-2.743 49.472 15.083s2.743 39.975-15.083 49.472c-63.827 34-135.029 51.801-207.365 51.837-275.019 0-464.457-219.804-464.457-512s189.438-512 463.406-511.985c73.266-2.107 145.698 16.001 209.354 52.338 17.541 10.013 23.643 32.35 13.63 49.891s-32.35 23.643-49.891 13.63c-51.99-29.679-111.149-44.468-172.041-42.732-232.009 0-391.314 184.842-391.314 438.857s159.306 438.857 391.296 438.857c60.337-0.030 119.743-14.881 172.996-43.249z","M109.714 438.857c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h512c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-512z","M109.714 658.286c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h512c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-512z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-euro"]},"attrs":[{},{},{}],"properties":{"order":602,"id":58,"name":"currency-euro","prevSize":32,"code":59704},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M582.017 181.883c15.484 8.519 21.131 27.978 12.612 43.462s-27.978 21.131-43.462 12.612c-53.946-29.68-161.909-51.030-247.869-44.863-99.965 7.172-154.562 45.672-154.562 118.010 0 83.711 49.142 119.742 194.92 168.338 7.351 2.447 7.351 2.447 14.733 4.9 163.485 54.364 223.947 95.864 223.947 202.506 0 117.547-72.828 186.434-192.469 204.382-94.23 14.136-215.893-4.036-327.318-44.233-16.624-5.997-25.24-24.336-19.242-40.96s24.336-25.24 40.96-19.242c102.215 36.874 213.633 53.516 296.106 41.143 90.676-13.603 137.963-58.331 137.963-141.090 0-66.823-42.532-96.016-180.142-141.776-7.364-2.447-7.364-2.447-14.778-4.915-170.398-56.804-238.68-106.868-238.68-229.054 0-112.924 84.572-172.562 213.982-181.846 97.852-7.020 218.115 16.762 283.299 52.625z","M320 32c0-17.673 14.327-32 32-32s32 14.327 32 32v960c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960z"],"attrs":[{},{}],"width":640,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-dollar"]},"attrs":[{},{}],"properties":{"order":603,"id":57,"name":"currency-dollar","prevSize":32,"code":59705},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M512 384v576h448v-576h-448zM480 320h512c17.673 0 32 14.327 32 32v640c0 17.673-14.327 32-32 32h-512c-17.673 0-32-14.327-32-32v-640c0-17.673 14.327-32 32-32z","M64 832h224c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32v-832c0-17.673 14.327-32 32-32h704c17.673 0 32 14.327 32 32v128c0 17.673-14.327 32-32 32s-32-14.327-32-32v-96h-640v768z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy-2"]},"attrs":[{},{}],"properties":{"order":604,"id":56,"name":"copy-2","prevSize":32,"code":59706},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M512 576c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 512c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M857.857 857.93c7.629 15.942 0.891 35.049-15.051 42.679s-35.049 0.891-42.679-15.051c-53.089-110.93-165.148-181.531-288.127-181.531s-235.038 70.601-288.127 181.531c-7.629 15.942-26.737 22.68-42.679 15.051s-22.68-26.737-15.051-42.679c63.726-133.157 198.237-217.903 345.857-217.903s282.13 84.747 345.857 217.903z","M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["circle-08"]},"attrs":[{},{},{}],"properties":{"order":605,"id":55,"name":"circle-08","prevSize":32,"code":59707},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M480 562.745l489.373-489.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-512 512c-12.497 12.497-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l169.373 169.373z","M832 480c0-17.673 14.327-32 32-32s32 14.327 32 32v384c0 53.001-42.999 96-96 96h-704c-53.001 0-96-42.999-96-96v-704c0-53.001 42.999-96 96-96h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576c-17.655 0-32 14.345-32 32v704c0 17.655 14.345 32 32 32h704c17.655 0 32-14.345 32-32v-384z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-square-11"]},"attrs":[{},{}],"properties":{"order":606,"id":54,"name":"check-square-11","prevSize":32,"code":59708},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M745.373 297.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0l-160-160c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l137.373 137.373 297.373-297.373z","M928 960c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832zM928 1024h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-square-09"]},"attrs":[{},{}],"properties":{"order":607,"id":53,"name":"check-square-09","prevSize":32,"code":59709},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M348.705 879.45l605.18-796.29 50.954 38.725-649.545 854.664-336.55-336.55 45.255-45.255z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-single"]},"attrs":[{}],"properties":{"order":608,"id":52,"name":"check-single","prevSize":32,"code":59710},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M745.373 297.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0l-160-160c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l137.373 137.373 297.373-297.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-circle-08"]},"attrs":[{},{}],"properties":{"order":609,"id":51,"name":"check-circle-08","prevSize":32,"code":59711},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M827.457 452.882c-2.732-17.461 9.209-33.83 26.669-36.561s33.83 9.209 36.561 26.669c3.532 22.577 5.313 45.672 5.313 69.010 0 247.433-200.567 448-448 448s-448-200.567-448-448c0-247.433 200.567-448 448-448 72.969 0 143.456 17.464 206.789 50.471 15.672 8.168 21.756 27.494 13.588 43.167s-27.494 21.756-43.167 13.588c-54.252-28.274-114.599-43.225-177.211-43.225-212.087 0-384 171.913-384 384s171.913 384 384 384c212.087 0 384-171.913 384-384 0-20.039-1.526-39.827-4.543-59.118z","M448 562.745l489.373-489.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-512 512c-12.497 12.497-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l169.373 169.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-circle-07"]},"attrs":[{},{}],"properties":{"order":610,"id":50,"name":"check-circle-07","prevSize":32,"code":59712},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M937.373 169.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-640 640c-12.497 12.497-32.758 12.497-45.255 0l-256-256c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l233.373 233.373 617.373-617.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-2"]},"attrs":[{}],"properties":{"order":611,"id":49,"name":"check-2","prevSize":32,"code":59713},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M512 896c-281.831 0-512-199.474-512-448s230.169-448 512-448c281.831 0 512 199.474 512 448 0 110.624-46.26 214.679-128 295.774v248.226c0 24.215-25.854 39.656-47.173 28.174l-244.267-131.552c-30.518 4.886-61.431 7.378-92.56 7.378zM832 730.176c0-8.853 3.667-17.31 10.13-23.36 75.511-70.692 117.87-162.020 117.87-258.816 0-210.982-199.642-384-448-384s-448 173.018-448 384c0 210.982 199.642 384 448 384 31.1 0 61.966-2.794 92.385-8.263 7.121-1.28 14.466-0.11 20.836 3.321l206.779 111.362v-208.244z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-round"]},"attrs":[{}],"properties":{"order":612,"id":48,"name":"chat-round","prevSize":32,"code":59714},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M192 576h-96c-53.001 0-96-42.999-96-96v-384c0-53.001 42.999-96 96-96h576c53.001 0 96 42.999 96 96v384c0 53.001-42.999 96-96 96h-242.745l-182.627 182.627c-20.159 20.159-54.627 5.882-54.627-22.627v-160zM393.373 521.373c6.001-6.001 14.14-9.373 22.627-9.373h256c17.655 0 32-14.345 32-32v-384c0-17.655-14.345-32-32-32h-576c-17.655 0-32 14.345-32 32v384c0 17.655 14.345 32 32 32h128c17.673 0 32 14.327 32 32v114.745l137.373-137.373z","M416 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c8.487 0 16.626 3.371 22.627 9.373l137.373 137.373v-114.745c0-17.673 14.327-32 32-32h128c17.655 0 32-14.345 32-32v-384c0-17.655-14.345-32-32-32h-64c-17.673 0-32-14.327-32-32s14.327-32 32-32h64c53.001 0 96 42.999 96 96v384c0 53.001-42.999 96-96 96h-96v160c0 28.509-34.469 42.786-54.627 22.627l-182.627-182.627h-178.745z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-46"]},"attrs":[{},{}],"properties":{"order":613,"id":47,"name":"chat-46","prevSize":32,"code":59715},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M256 736h-160c-53.001 0-96-42.999-96-96v-512c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v512c0 53.001-42.999 96-96 96h-329.475l-289.7 248.297c-20.758 17.791-52.824 3.042-52.824-24.297v-224zM320 890.428l245.864-210.725c5.8-4.971 13.186-7.703 20.824-7.703h341.312c17.655 0 32-14.345 32-32v-512c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v512c0 17.655 14.345 32 32 32h192c17.673 0 32 14.327 32 32v186.428z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-45"]},"attrs":[{}],"properties":{"order":614,"id":46,"name":"chat-45","prevSize":32,"code":59716},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M608 448c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32 229.75 0 416 186.25 416 416 0 17.673-14.327 32-32 32h-384zM640 384h318.565c-15.218-168.868-149.697-303.347-318.565-318.565v318.565z","M448 576h352c17.673 0 32 14.327 32 32 0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416 17.673 0 32 14.327 32 32v352zM64 608c0 194.404 157.596 352 352 352 183.617 0 334.398-140.592 350.565-320h-350.565c-17.673 0-32-14.327-32-32v-350.565c-179.408 16.167-320 166.948-320 350.565z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-36"]},"attrs":[{},{}],"properties":{"order":615,"id":45,"name":"chart-pie-36","prevSize":32,"code":59717},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M546.133 477.867h443.733c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-477.867c-18.851 0-34.133-15.282-34.133-34.133v-477.867c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v443.733z","M487.864 487.864c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-337.852 337.852c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l337.852-337.852z","M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 955.733c245.067 0 443.733-198.666 443.733-443.733s-198.666-443.733-443.733-443.733c-245.067 0-443.733 198.666-443.733 443.733s198.666 443.733 443.733 443.733z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-35"]},"attrs":[{},{},{}],"properties":{"order":616,"id":44,"name":"chart-pie-35","prevSize":32,"code":59718},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M64 768v192h128v-192h-128zM32 704h192c17.673 0 32 14.327 32 32v256c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-256c0-17.673 14.327-32 32-32z","M832 576v384h128v-384h-128zM800 512h192c17.673 0 32 14.327 32 32v448c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-448c0-17.673 14.327-32 32-32z","M384 384h-160c-27.705 0-42.319-32.814-23.785-53.407l288-320c12.712-14.124 34.859-14.124 47.571 0l288 320c18.533 20.593 3.919 53.407-23.785 53.407h-160v608c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-608zM512 79.835l-216.148 240.165h120.148c17.673 0 32 14.327 32 32v608h128v-608c0-17.673 14.327-32 32-32h120.148l-216.148-240.165z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-growth"]},"attrs":[{},{},{}],"properties":{"order":617,"id":43,"name":"chart-growth","prevSize":32,"code":59719},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M448 64v896h128v-896h-128zM416 0h192c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M64 704v256h128v-256h-128zM32 640h192c17.673 0 32 14.327 32 32v320c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-320c0-17.673 14.327-32 32-32z","M832 384v576h128v-576h-128zM800 320h192c17.673 0 32 14.327 32 32v640c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-640c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-bar"]},"attrs":[{},{},{}],"properties":{"order":618,"id":42,"name":"chart-bar","prevSize":32,"code":59720},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M64 320v640h896v-640h-896zM32 256h960c17.673 0 32 14.327 32 32v704c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-704c0-17.673 14.327-32 32-32z","M512 74.815l-266.74 237.103c-13.209 11.741-33.435 10.552-45.177-2.657s-10.552-33.435 2.657-45.177l288-256c12.124-10.777 30.395-10.777 42.519 0l288 256c13.209 11.741 14.399 31.968 2.657 45.177s-31.968 14.399-45.177 2.657l-266.74-237.103z","M288 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M288 768c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["certificate"]},"attrs":[{},{},{},{}],"properties":{"order":619,"id":41,"name":"certificate","prevSize":32,"code":59721},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M928 960c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832zM928 1024h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-stop"]},"attrs":[{}],"properties":{"order":620,"id":40,"name":"button-stop","prevSize":32,"code":59722},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M384 310.731v-214.731c0-26.105 29.573-41.226 50.736-25.942l576 416c17.686 12.773 17.686 39.11 0 51.883l-576 416c-21.162 15.284-50.736 0.163-50.736-25.942v-214.731l-333.265 240.673c-21.163 15.283-50.735 0.162-50.735-25.942v-832c0-26.104 29.572-41.225 50.735-25.942l333.265 240.673zM937.345 512l-489.345-353.416v214.728c0 26.104-29.572 41.225-50.735 25.942l-333.265-240.673v706.837l333.265-240.673c21.163-15.283 50.735-0.162 50.735 25.942v214.728l489.345-353.416z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-skip"]},"attrs":[{}],"properties":{"order":621,"id":39,"name":"button-skip","prevSize":32,"code":59723},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M86.655 512l489.345 353.416v-214.728c0-26.104 29.572-41.225 50.735-25.942l333.265 240.673v-706.837l-333.265 240.673c-21.163 15.283-50.735 0.162-50.735-25.942v-214.728l-489.345 353.416zM640 713.269v214.731c0 26.105-29.573 41.226-50.736 25.942l-576-416c-17.686-12.773-17.686-39.11 0-51.883l576-416c21.162-15.284 50.736-0.163 50.736 25.942v214.731l333.265-240.673c21.163-15.283 50.735-0.162 50.735 25.942v832c0 26.104-29.572 41.225-50.735 25.942l-333.265-240.673z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-rewind"]},"attrs":[{}],"properties":{"order":622,"id":38,"name":"button-rewind","prevSize":32,"code":59724},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-record"]},"attrs":[{}],"properties":{"order":623,"id":37,"name":"button-record","prevSize":32,"code":59725},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M64 89.736v844.528l675.623-422.264-675.623-422.264zM48.96 4.864l768 480c20.053 12.533 20.053 41.739 0 54.272l-768 480c-21.314 13.321-48.96-2.002-48.96-27.136v-960c0-25.134 27.646-40.457 48.96-27.136z"],"attrs":[{}],"width":832,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-play"]},"attrs":[{}],"properties":{"order":624,"id":36,"name":"button-play","prevSize":32,"code":59726},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M64 64v896h192v-896h-192zM32 0h256c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M640 64v896h192v-896h-192zM608 0h256c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z"],"attrs":[{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-pause"]},"attrs":[{},{}],"properties":{"order":625,"id":35,"name":"button-pause","prevSize":32,"code":59727},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M960 32c0-17.673 14.327-32 32-32s32 14.327 32 32v960c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960z","M64 92.548v838.903l615.196-419.452-615.196-419.452zM50.027 5.561l704 480c18.631 12.703 18.631 40.176 0 52.879l-704 480c-21.242 14.483-50.027-0.73-50.027-26.439v-960c0-25.709 28.785-40.922 50.027-26.439z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-next"]},"attrs":[{},{}],"properties":{"order":626,"id":34,"name":"button-next","prevSize":32,"code":59728},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M477.867 34.133c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v68.267c0 18.851-15.282 34.133-34.133 34.133s-34.133-15.282-34.133-34.133v-68.267z","M825.784 149.944c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-48.265 48.265c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l48.265-48.265z","M989.867 477.867c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-68.267c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h68.267z","M874.056 825.784c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-48.265-48.265c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l48.265 48.265z","M546.133 989.867c0 18.851-15.282 34.133-34.133 34.133s-34.133-15.282-34.133-34.133v-68.267c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v68.267z","M198.216 874.056c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l48.265-48.265c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-48.265 48.265z","M34.133 546.133c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h68.267c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-68.267z","M149.944 198.216c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l48.265 48.265c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-48.265-48.265z","M512 750.933c-131.959 0-238.933-106.974-238.933-238.933s106.974-238.933 238.933-238.933c131.959 0 238.933 106.974 238.933 238.933s-106.974 238.933-238.933 238.933zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brightness"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":627,"id":33,"name":"brightness","prevSize":32,"code":59729},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M64 128v128h896v-128h-896zM32 64h960c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 896v-480c0-17.673 14.327-32 32-32s32 14.327 32 32v512c0 17.673-14.327 32-32 32h-704c-17.673 0-32-14.327-32-32v-512c0-17.673 14.327-32 32-32s32 14.327 32 32v480h640z","M384 512v128h256v-128h-256zM352 448h320c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box"]},"attrs":[{},{},{}],"properties":{"order":628,"id":32,"name":"box","prevSize":32,"code":59730},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M192 288c0-17.673 14.327-32 32-32s32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-640z","M768 288c0-17.673 14.327-32 32-32s32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-640z","M384 128v160c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32s-32-14.327-32-32v-160h-256z","M96 320c-17.673 0-32 14.327-32 32v512c0 17.673 14.327 32 32 32h832c17.673 0 32-14.327 32-32v-512c0-17.673-14.327-32-32-32h-832zM96 256h832c53.019 0 96 42.981 96 96v512c0 53.019-42.981 96-96 96h-832c-53.019 0-96-42.981-96-96v-512c-0-53.019 42.981-96 96-96z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag"]},"attrs":[{},{},{},{}],"properties":{"order":629,"id":31,"name":"bag","prevSize":32,"code":59731},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M384 544c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M320 672c70.692 0 128 57.308 128 128h-256c0-70.692 57.308-128 128-128z","M608 608c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M608 800c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M288 224c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192c-17.673 0-32 14.327-32 32v576c0 17.673 14.327 32 32 32h832c17.673 0 32-14.327 32-32v-576c0-17.673-14.327-32-32-32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c53.019 0 96 42.981 96 96v576c0 53.019-42.981 96-96 96h-832c-53.019 0-96-42.981-96-96v-576c0-53.019 42.981-96 96-96h192z","M576 352v-192c0-35.346-28.654-64-64-64s-64 28.654-64 64v192h128zM512 32c70.692 0 128 57.308 128 128v224c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-224c0-70.692 57.308-128 128-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["badge"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":630,"id":30,"name":"badge","prevSize":32,"code":59732},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M960 224c0-17.673 14.327-32 32-32s32 14.327 32 32v704c0 53.001-42.999 96-96 96h-832c-53.001 0-96-42.999-96-96v-704c0-17.673 14.327-32 32-32s32 14.327 32 32v704c0 17.655 14.345 32 32 32h832c17.655 0 32-14.345 32-32v-704z","M640 768v-160c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-288v160c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-160h-288c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32v160h256z","M192 64v416c0 17.673-14.327 32-32 32s-32-14.327-32-32v-448c0-17.673 14.327-32 32-32h704c17.673 0 32 14.327 32 32v448c0 17.673-14.327 32-32 32s-32-14.327-32-32v-416h-640z","M352 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M352 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-paper"]},"attrs":[{},{},{},{},{}],"properties":{"order":631,"id":29,"name":"archive-paper","prevSize":32,"code":59733},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M928 960c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832zM928 1024h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96z","M640 768v-160c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-288v160c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-160h-288c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32v160h256z","M288 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M288 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-content"]},"attrs":[{},{},{},{}],"properties":{"order":632,"id":28,"name":"archive-content","prevSize":32,"code":59734},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M416 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M416 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-right"]},"attrs":[{},{},{},{}],"properties":{"order":633,"id":27,"name":"align-right","prevSize":32,"code":59735},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-left"]},"attrs":[{},{},{},{}],"properties":{"order":634,"id":26,"name":"align-left","prevSize":32,"code":59736},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-justify"]},"attrs":[{},{},{},{}],"properties":{"order":635,"id":25,"name":"align-justify","prevSize":32,"code":59737},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M224 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M224 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-center"]},"attrs":[{},{},{},{}],"properties":{"order":636,"id":24,"name":"align-center","prevSize":32,"code":59738},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M139.502 544.865c24.175 35.457 52.228 70.926 83.741 103.939 88.476 92.689 185.889 147.64 288.758 147.64s200.282-54.951 288.758-147.64c31.513-33.013 59.565-68.482 83.741-103.939 8.84-12.965 15.961-24.108 21.28-32.865-5.319-8.757-12.441-19.9-21.28-32.865-24.175-35.457-52.228-70.926-83.741-103.939-88.476-92.689-185.889-147.64-288.758-147.64s-200.282 54.951-288.758 147.64c-31.513 33.013-59.565 68.482-83.741 103.939-8.84 12.965-15.961 24.108-21.28 32.865 5.319 8.757 12.441 19.9 21.28 32.865zM60.362 498.379c1.528-2.801 4.359-7.745 8.456-14.528 6.721-11.13 14.627-23.485 23.681-36.764 25.825-37.876 55.772-75.741 89.593-111.172 98.191-102.866 208.777-165.249 329.909-165.249s231.718 62.382 329.909 165.249c33.821 35.431 63.768 73.296 89.593 111.172 9.054 13.279 16.96 25.634 23.681 36.764 4.096 6.783 6.928 11.727 8.456 14.528l7.429 13.621-7.429 13.621c-1.528 2.801-4.359 7.745-8.456 14.528-6.721 11.13-14.627 23.485-23.681 36.764-25.825 37.876-55.772 75.741-89.593 111.172-98.191 102.866-208.777 165.249-329.909 165.249s-231.718-62.382-329.909-165.249c-33.821-35.431-63.768-73.296-89.593-111.172-9.054-13.279-16.96-25.634-23.681-36.764-4.096-6.783-6.928-11.727-8.456-14.528l-7.429-13.621 7.429-13.621z","M512 682.667c-94.257 0-170.667-76.41-170.667-170.667s76.41-170.667 170.667-170.667c94.257 0 170.667 76.41 170.667 170.667s-76.41 170.667-170.667 170.667zM512 625.778c62.838 0 113.778-50.94 113.778-113.778s-50.94-113.778-113.778-113.778c-62.838 0-113.778 50.94-113.778 113.778s50.94 113.778 113.778 113.778z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye"]},"attrs":[{},{}],"properties":{"order":637,"id":23,"name":"eye","prevSize":32,"code":59739},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M672 512c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM672 448c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z","M1024 928c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32 0-194.404 157.596-352 352-352s352 157.596 352 352zM672 640c-148.242 0-270.324 112.002-286.242 256h572.485c-15.918-143.998-138.001-256-286.242-256z","M32 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z","M128 416c0-17.673 14.327-32 32-32s32 14.327 32 32v256c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-27"]},"attrs":[{},{},{},{}],"properties":{"order":638,"id":22,"name":"add-27","prevSize":32,"code":59740},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M315.077 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-708.923c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v708.923z","M551.385 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-472.615c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v472.615z","M1024 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-472.615c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v472.615z","M787.692 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-708.923c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v708.923z","M78.769 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-945.231c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v945.231z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["analytics"]},"attrs":[{},{},{},{},{}],"properties":{"order":639,"id":21,"name":"analytics","prevSize":32,"code":59741},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M960 128c0-17.673 14.327-32 32-32s32 14.327 32 32v800c0 53.001-42.999 96-96 96h-832c-53.001 0-96-42.999-96-96v-800c0-17.673 14.327-32 32-32s32 14.327 32 32v800c0 17.655 14.345 32 32 32h832c17.655 0 32-14.345 32-32v-800z","M704 416c0-17.673 14.327-32 32-32s32 14.327 32 32c0 141.385-114.615 256-256 256s-256-114.615-256-256c0-17.673 14.327-32 32-32s32 14.327 32 32c0 106.039 85.961 192 192 192s192-85.961 192-192z","M896 192c35.319 0 64-28.681 64-64s-28.681-64-64-64h-768c-35.319 0-64 28.681-64 64s28.681 64 64 64h768zM896 256h-768c-70.665 0-128-57.335-128-128s57.335-128 128-128h768c70.665 0 128 57.335 128 128s-57.335 128-128 128z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-17"]},"attrs":[{},{},{}],"properties":{"order":640,"id":20,"name":"bag-17","prevSize":32,"code":59742},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M224 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M736 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h64c17.673 0 32 14.327 32 32s-14.327 32-32 32h-64z","M992 384c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32s14.327-32 32-32h960z","M928 832c17.655 0 32-14.345 32-32v-576c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v576c0 17.655 14.345 32 32 32h832zM928 896h-832c-53.001 0-96-42.999-96-96v-576c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v576c0 53.001-42.999 96-96 96z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["credit-card"]},"attrs":[{},{},{},{}],"properties":{"order":641,"id":19,"name":"credit-card","prevSize":32,"code":59743},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M92.939 548.973c27.197 39.889 58.757 79.792 94.208 116.932 99.535 104.275 209.125 166.095 324.853 166.095s225.317-61.82 324.853-166.095c35.452-37.14 67.011-77.042 94.208-116.932 9.945-14.586 17.956-27.122 23.94-36.973-5.984-9.851-13.996-22.388-23.94-36.973-27.197-39.889-58.757-79.792-94.208-116.932-99.535-104.275-209.125-166.095-324.853-166.095s-225.317 61.82-324.853 166.095c-35.452 37.14-67.011 77.042-94.208 116.932-9.945 14.586-17.956 27.122-23.94 36.973 5.984 9.851 13.996 22.388 23.94 36.973zM3.907 496.677c1.719-3.151 4.904-8.713 9.513-16.344 7.561-12.521 16.455-26.421 26.641-41.36 29.053-42.611 62.743-85.208 100.792-125.068 110.465-115.725 234.875-185.905 371.147-185.905s260.683 70.18 371.147 185.905c38.048 39.86 71.739 82.458 100.792 125.068 10.185 14.939 19.080 28.839 26.641 41.36 4.609 7.631 7.794 13.193 9.513 16.344 5.21 9.551 5.21 21.095 0 30.647-1.719 3.151-4.904 8.713-9.513 16.344-7.561 12.521-16.455 26.421-26.641 41.36-29.053 42.611-62.743 85.208-100.792 125.068-110.465 115.725-234.875 185.905-371.147 185.905s-260.683-70.18-371.147-185.905c-38.048-39.86-71.739-82.458-100.792-125.068-10.185-14.939-19.080-28.839-26.641-41.36-4.609-7.631-7.794-13.193-9.513-16.344-5.21-9.551-5.21-21.095 0-30.647z","M512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye-17"]},"attrs":[{},{}],"properties":{"order":642,"id":18,"name":"eye-17","prevSize":32,"code":59744},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M64 64v128h128v-128h-128zM32 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 64v128h128v-128h-128zM416 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 64v128h128v-128h-128zM800 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 448v128h128v-128h-128zM32 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 448v128h128v-128h-128zM416 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 448v128h128v-128h-128zM800 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 832v128h128v-128h-128zM32 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 832v128h128v-128h-128zM416 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 832v128h128v-128h-128zM800 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-48"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":643,"id":17,"name":"grid-48","prevSize":32,"code":59745},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M256 256v128h128v-128h-128zM224 192h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M640 256v128h128v-128h-128zM608 192h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M256 640v128h128v-128h-128zM224 576h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M640 640v128h128v-128h-128zM608 576h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M96 64c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832zM96 0h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-square"]},"attrs":[{},{},{},{},{}],"properties":{"order":644,"id":16,"name":"grid-square","prevSize":32,"code":59746},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M939.335 555.9l-404.992 395.008c-12.428 12.122-32.255 12.123-44.685 0.002l-405.342-395.29c-112.465-112.465-112.465-294.838 0-407.303s294.838-112.465 407.262-0.040c7.294 7.268 14.051 14.957 20.431 23.191 6.345-8.187 13.064-15.844 20.307-23.087 112.464-112.464 294.834-112.465 407.299-0.004 112.535 112.467 112.534 294.784-0.281 407.523zM511.998 883.301l382.373-372.944c87.526-87.47 87.526-229.245 0-316.715-87.478-87.478-229.329-87.478-316.8-0.007-13.998 13.998-25.819 30.712-37.459 52.116-12.118 22.283-44.106 22.283-56.224 0-11.701-21.517-23.5-38.207-37.523-52.18-87.471-87.471-229.322-87.471-316.793 0s-87.471 229.322-0.286 316.511l382.713 373.219z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-2"]},"attrs":[{}],"properties":{"order":645,"id":15,"name":"heart-2","prevSize":32,"code":59747},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M416 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 896c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M128 320c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM128 256c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M128 640c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM128 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M128 960c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM128 896c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["list-bullet"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":646,"id":14,"name":"list-bullet","prevSize":32,"code":59748},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M384 320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-53.001 42.999-96 96-96h512c53.001 0 96 42.999 96 96v768c0 53.001-42.999 96-96 96h-512c-53.001 0-96-42.999-96-96v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v192c0 17.655 14.345 32 32 32h512c17.655 0 32-14.345 32-32v-768c0-17.655-14.345-32-32-32h-512c-17.655 0-32 14.345-32 32v192z","M32 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h704c17.673 0 32 14.327 32 32s-14.327 32-32 32h-704z","M690.745 512l-169.373-169.373c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192c12.497 12.497 12.497 32.758 0 45.255l-192 192c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l169.373-169.373z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["log-in"]},"attrs":[{},{},{}],"properties":{"order":647,"id":13,"name":"log-in","prevSize":32,"code":59749},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M448 320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-53.001 42.999-96 96-96h448c53.001 0 96 42.999 96 96v768c0 53.001-42.999 96-96 96h-448c-53.001 0-96-42.999-96-96v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v192c0 17.655 14.345 32 32 32h448c17.655 0 32-14.345 32-32v-768c0-17.655-14.345-32-32-32h-448c-17.655 0-32 14.345-32 32v192z","M736 480c17.673 0 32 14.327 32 32s-14.327 32-32 32h-704c-17.673 0-32-14.327-32-32s14.327-32 32-32h704z","M246.627 681.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255l192-192c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-169.373 169.373 169.373 169.373z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["log-out"]},"attrs":[{},{},{}],"properties":{"order":648,"id":12,"name":"log-out","prevSize":32,"code":59750},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M109.255 512l457.373 457.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-480-480c-12.497-12.497-12.497-32.758 0-45.255l480-480c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-457.373 457.373z"],"attrs":[{}],"width":576,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-left"]},"attrs":[{}],"properties":{"order":649,"id":11,"name":"minimal-left","prevSize":32,"code":59751},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M9.373 54.627c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l480 480c12.497 12.497 12.497 32.758 0 45.255l-480 480c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l457.373-457.373-457.373-457.373z"],"attrs":[{}],"width":576,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-right"]},"attrs":[{}],"properties":{"order":650,"id":10,"name":"minimal-right","prevSize":32,"code":59752},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M64 576v288c0 53.047 42.953 96 96 96s96-42.953 96-96v-288h-192zM160 1024c-88.393 0-160-71.607-160-160v-320c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32v320c0 88.393-71.607 160-160 160z","M320 64v480c0 17.673-14.327 32-32 32s-32-14.327-32-32v-512c0-17.673 14.327-32 32-32h704c17.673 0 32 14.327 32 32v832c0 88.393-71.607 160-160 160h-704c-17.673 0-32-14.327-32-32s14.327-32 32-32h704c53.047 0 96-42.953 96-96v-800h-640z","M480 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M480 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M480 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M480 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paper-2"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":651,"id":9,"name":"paper-2","prevSize":32,"code":59753},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M415.875 915.381c40.456-42.295 80.922-89.015 118.63-138.721 84.064-110.811 141.911-219.832 161.917-319.861 5.020-25.102 7.577-49.389 7.577-72.799 0-176.731-143.269-320-320-320s-320 143.269-320 320c0 23.409 2.557 47.697 7.577 72.799 20.006 100.029 77.853 209.050 161.917 319.861 37.708 49.706 78.175 96.426 118.63 138.721 11.346 11.862 22.031 22.678 31.875 32.358 9.845-9.68 20.529-20.496 31.875-32.358zM768 384c0 27.764-2.997 56.237-8.82 85.35-22.242 111.21-84.295 228.157-173.686 345.99-39.292 51.794-81.325 100.324-123.37 144.279-14.732 15.401-28.428 29.146-40.749 41.066-7.464 7.221-12.861 12.275-15.85 14.993-12.205 11.096-30.846 11.096-43.051 0-2.989-2.718-8.387-7.772-15.85-14.993-12.32-11.92-26.017-25.665-40.749-41.066-42.044-43.955-84.078-92.485-123.37-144.279-89.391-117.833-151.444-234.78-173.686-345.99-5.823-29.113-8.82-57.586-8.82-85.35 0-212.077 171.923-384 384-384s384 171.923 384 384z","M384 576c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM384 512c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z"],"attrs":[{},{}],"width":768,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin-3"]},"attrs":[{},{}],"properties":{"order":652,"id":8,"name":"pin-3","prevSize":32,"code":59754},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M256 288c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256c0-17.673 14.327-32 32-32s32 14.327 32 32v256z","M256 992c0 17.673-14.327 32-32 32s-32-14.327-32-32v-128c0-17.673 14.327-32 32-32s32 14.327 32 32v128z","M768 736c0-17.673 14.327-32 32-32s32 14.327 32 32v256c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256z","M768 32c0-17.673 14.327-32 32-32s32 14.327 32 32v128c0 17.673-14.327 32-32 32s-32-14.327-32-32v-128z","M224 896c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM224 832c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z","M800 576c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM800 512c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["preferences-circle-rotate"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":653,"id":7,"name":"preferences-circle-rotate","prevSize":32,"code":59755},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M256 352c0-17.673 14.327-32 32-32s32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-640z","M192 256c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM192 192c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M608 320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-512c-17.673 0-32 14.327-32 32v576c0 17.673-14.327 32-32 32s-32-14.327-32-32v-576c0-53.019 42.981-96 96-96h512z","M960 192h-480c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32v576c0 17.673-14.327 32-32 32h-512c-17.673 0-32-14.327-32-32s14.327-32 32-32h480v-512z","M643.378 750.311c-7.904-15.807-1.496-35.029 14.311-42.933s35.029-1.496 42.933 14.311l128 256c7.904 15.807 1.496 35.029-14.311 42.933s-35.029 1.496-42.933-14.311l-128-256z","M576 32c0-17.673 14.327-32 32-32s32 14.327 32 32v128c0 17.673-14.327 32-32 32s-32-14.327-32-32v-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["presentation"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":654,"id":6,"name":"presentation","prevSize":32,"code":59756},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M32 224c-17.673 0-32-14.327-32-32s14.327-32 32-32h608c17.673 0 32 14.327 32 32s-14.327 32-32 32h-608z","M992 160c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32h128z","M32 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M352 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h640c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640z","M32 864c-17.673 0-32-14.327-32-32s14.327-32 32-32h640c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640z","M864 864c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["segmentation"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":655,"id":5,"name":"segmentation","prevSize":32,"code":59757},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M64 64v128h128v-128h-128zM32 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 64v128h128v-128h-128zM416 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 448v128h128v-128h-128zM32 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 832v128h128v-128h-128zM32 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 448v128h128v-128h-128zM416 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 832v128h128v-128h-128zM416 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 64v128h128v-128h-128zM800 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 448v128h128v-128h-128zM800 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 832v128h128v-128h-128zM800 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["selection"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":656,"id":4,"name":"selection","prevSize":32,"code":59758},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M896 512c0 23.255-2.277 46.542-6.676 70.034l102.486 59.182c15.304 8.837 20.547 28.407 11.71 43.712l-96 166.272c-8.836 15.304-28.405 20.548-43.71 11.714l-102.398-59.108c-35.759 30.519-76.835 54.275-121.349 70.010v118.184c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-118.226c-44.551-15.709-85.659-39.476-121.375-70.017l-102.371 59.093c-15.305 8.835-34.874 3.591-43.71-11.714l-96-166.272c-8.836-15.304-3.594-34.874 11.71-43.712l102.411-59.139c-4.436-23.379-6.728-46.693-6.728-70.014 0-23.354 2.289-46.64 6.727-70.015l-102.409-59.138c-15.304-8.837-20.547-28.407-11.71-43.712l96-166.272c8.838-15.307 28.411-20.55 43.717-11.71l102.318 59.093c35.736-30.529 76.835-54.305 121.358-70.056v-118.191c0-17.673 14.327-32 32-32h192c17.673 0 32 14.327 32 32v118.226c44.55 15.709 85.656 39.474 121.371 70.013l102.305-59.086c15.306-8.84 34.879-3.597 43.717 11.71l96 166.272c8.836 15.304 3.594 34.874-11.71 43.712l-102.409 59.138c4.438 23.375 6.727 46.661 6.727 70.015zM837.118 625.791c-12.324-7.116-18.467-21.516-15.076-35.337 6.565-26.755 9.958-52.77 9.958-78.454 0-25.829-3.417-51.772-10.048-78.238-3.473-13.86 2.664-28.344 15.038-35.49l94.979-54.847-63.998-110.845-94.846 54.778c-12.398 7.16-28.043 5.214-38.309-4.765-37.857-36.799-84.336-63.717-135.51-78.166-13.785-3.892-23.305-16.472-23.305-30.796v-109.632h-128v109.568c0 14.309-9.499 26.878-23.264 30.784-51.161 14.519-97.654 41.46-135.569 78.259-10.267 9.965-25.901 11.903-38.291 4.747l-94.846-54.778-63.998 110.845 94.979 54.847c12.374 7.146 18.511 21.629 15.038 35.49-6.632 26.466-10.048 52.408-10.048 78.238 0 25.79 3.424 51.8 10.048 78.238 3.473 13.86-2.664 28.344-15.038 35.49l-94.979 54.847 64.002 110.851 94.912-54.788c12.397-7.156 28.038-5.209 38.302 4.768 37.857 36.799 84.336 63.717 135.51 78.166 13.785 3.892 23.305 16.472 23.305 30.796v109.632h128v-109.568c0-14.312 9.503-26.884 23.273-30.787 51.151-14.499 97.601-41.409 135.579-78.21 10.266-9.948 25.885-11.88 38.266-4.733l94.912 54.788 64.002-110.851-94.979-54.847z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["settings-gear-65"]},"attrs":[{},{}],"properties":{"order":657,"id":3,"name":"settings-gear-65","prevSize":32,"code":59759},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M64 64v896h768v-896h-768zM32 0h832c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M544 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M544 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M256 256v128h128v-128h-128zM224 192h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-paragraph"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":658,"id":2,"name":"single-paragraph","prevSize":32,"code":59760},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M224 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M96 64c-17.673 0-32 14.327-32 32v832c0 17.673 14.327 32 32 32h704c17.673 0 32-14.327 32-32v-832c0-17.673-14.327-32-32-32h-704zM96 0h704c53.019-0 96 42.981 96 96v832c0 53.019-42.981 96-96 96h-704c-53.019 0-96-42.981-96-96v-832c-0-53.019 42.981-96 96-96z","M32 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h832c17.673 0 32 14.327 32 32s-14.327 32-32 32h-832z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-reader-31"]},"attrs":[{},{},{},{},{}],"properties":{"order":659,"id":1,"name":"tablet-reader-31","prevSize":32,"code":59761},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M1014.627 969.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192z","M416 832c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM416 768c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zoom-split"]},"attrs":[{},{}],"properties":{"order":660,"id":0,"name":"zoom-split","prevSize":32,"code":59762},"setIdx":0,"setId":0,"iconIdx":114}],"height":1024,"metadata":{"name":"galio"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"galio","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"showSelector":false,"showMetrics":false,"showMetadata":false,"includeMetadata":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16,"showGrid":false,"showLiga":false}} ================================================ FILE: app/helpers/normalize.js ================================================ // // Method to normalize size of fonts across devices // // Some code taken from https://jsfiddle.net/97ty7yjk/ & // https://stackoverflow.com/questions/34837342/font-size-on-iphone-6s-plus // // author: @xiaoneng // date: 14/10/2016 // version: 03 // const React = require('react-native'); // eslint-disable-line no-undef const { PixelRatio, Dimensions } = React; const pixelRatio = PixelRatio.get(); const deviceHeight = Dimensions.get('window').height; const deviceWidth = Dimensions.get('window').width; const normalize = (size) => { if (pixelRatio >= 2 && pixelRatio < 3) { // iphone 5s and older Androids if (deviceWidth < 360) { return size * 0.95; } // iphone 5 if (deviceHeight < 667) { return size; // iphone 6-6s } if (deviceHeight >= 667 && deviceHeight <= 735) { return size * 1.15; } // older phablets return size * 1.25; } if (pixelRatio >= 3 && pixelRatio < 3.5) { // catch Android font scaling on small machines // where pixel ratio / font scale ratio => 3:3 if (deviceWidth <= 360) { return size; } // Catch other weird android width sizings if (deviceHeight < 667) { return size * 1.15; // catch in-between size Androids and scale font up // a tad but not too much } if (deviceHeight >= 667 && deviceHeight <= 735) { return size * 1.2; } // catch larger devices // ie iphone 6s plus / 7 plus / mi note 等等 return size * 1.27; } if (pixelRatio >= 3.5) { // catch Android font scaling on small machines // where pixel ratio / font scale ratio => 3:3 if (deviceWidth <= 360) { return size; // Catch other smaller android height sizings } if (deviceHeight < 667) { return size * 1.2; // catch in-between size Androids and scale font up // a tad but not too much } if (deviceHeight >= 667 && deviceHeight <= 735) { return size * 1.25; } // catch larger phablet devices return size * 1.4; } return size; }; export default normalize; ================================================ FILE: app/index.tsx ================================================ import React from 'react'; import { StyleSheet, ScrollView, Platform, Dimensions, } from 'react-native'; import { LinearGradient as ExpoGradient } from 'expo-linear-gradient'; // galio components import { Button, Block, Icon, Text, NavBar, } from 'galio-framework'; import theme from './theme'; import NavigationMenu from './components/NavigationMenu.js'; import Svg, { Defs, LinearGradient, Stop, Path } from 'react-native-svg'; import * as shape from 'd3-shape'; const BASE_SIZE = theme.SIZES.BASE; const GRADIENT_BLUE = ['#6B84CA', '#8F44CE']; const GRADIENT_PINK = ['#D442F8', '#B645F5', '#9B40F8']; const COLOR_WHITE = theme.COLORS.WHITE; const COLOR_GREY = theme.COLORS.MUTED; const statsTitles = ['Jul', 'Aug', 'Sep', 'Oct', 'Nov']; const cards = [ { title: 'Tasks', subtitle: '15 completed tasks', icon: 'list-bullet', iconFamily: 'Galio', }, { title: 'Aquisitions', subtitle: '15 completed tasks', icon: 'bag-17', iconFamily: 'Galio', }, { title: 'Cards', subtitle: '15 completed tasks', icon: 'credit-card', iconFamily: 'Galio', }, { title: 'Settings', subtitle: '15 completed tasks', icon: 'settings-gear-65', iconFamily: 'Galio', }, ]; class Dashboard extends React.Component { state = { isMenuOpen: false, }; toggleMenu = () => { this.setState((prevState: any) => ({ isMenuOpen: !prevState.isMenuOpen })); }; renderHeader = () => ( console.log('Heart pressed')} /> )} left={( ); }; renderCards = () => cards.map((card, index) => this.renderCard(card, index)); render() { return ( {this.renderHeader()} {this.renderStats()} {this.renderCards()} ); } } const styles = StyleSheet.create({ card: { borderColor: 'transparent', marginVertical: BASE_SIZE / 2, padding: BASE_SIZE, backgroundColor: COLOR_WHITE, shadowOpacity: 0.4, }, left: { marginRight: BASE_SIZE, }, right: { width: BASE_SIZE * 2, backgroundColor: 'transparent', elevation: 0, }, gradient: { width: BASE_SIZE * 3.25, height: BASE_SIZE * 3.25, borderRadius: BASE_SIZE * 3.25, alignItems: 'center', justifyContent: 'center', }, }); export default Dashboard; ================================================ FILE: app/screens/auth/Login.js ================================================ import React, { useState } from 'react'; import { Alert, Dimensions, KeyboardAvoidingView, StyleSheet, Platform, } from 'react-native'; // galio component import { Block, Button, Input, NavBar, Text, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { height, width } = Dimensions.get('window'); const Login = () => { const [email, setEmail] = useState('-'); const [password, setPassword] = useState('-'); const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => setIsMenuOpen(prev => !prev); return ( navigation.openDrawer()} style={Platform.OS === 'android' ? { marginTop: theme.SIZES.BASE } : null} left={( ); }; const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'space-around', paddingTop: theme.SIZES.BASE * 0.3, paddingHorizontal: theme.SIZES.BASE, backgroundColor: theme.COLORS.WHITE, }, social: { width: theme.SIZES.BASE * 3.5, height: theme.SIZES.BASE * 3.5, borderRadius: theme.SIZES.BASE * 1.75, justifyContent: 'center', }, }); export default Login; ================================================ FILE: app/screens/auth/Register.js ================================================ import React, { useState } from 'react'; import { Alert, Dimensions, StyleSheet, KeyboardAvoidingView, Platform, } from 'react-native'; // galio component import { Block, Button, Input, Text, NavBar, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { height, width } = Dimensions.get('window'); const Register = () => { const [user, setUser] = useState('-'); const [email, setEmail] = useState('-'); const [password, setPassword] = useState('-'); const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => setIsMenuOpen(prev => !prev); return ( navigation.openDrawer()} style={Platform.OS === 'android' ? { marginTop: theme.SIZES.BASE } : null} left={( ); }; const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'space-around', paddingTop: theme.SIZES.BASE * 0.3, paddingHorizontal: theme.SIZES.BASE, backgroundColor: theme.COLORS.WHITE, }, social: { width: theme.SIZES.BASE * 3.5, height: theme.SIZES.BASE * 3.5, borderRadius: theme.SIZES.BASE * 1.75, justifyContent: 'center', }, }); export default Register; ================================================ FILE: app/screens/auth/Registerv2.js ================================================ import React, { useState } from 'react'; import { Alert, Dimensions, StyleSheet, KeyboardAvoidingView, ScrollView, } from 'react-native'; // galio component import { Block, Button, Input, Text, NavBar, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { width } = Dimensions.get('window'); const MARGIN_LEFT = '5%'; const SOCIAL_ICON_SIZE = theme.SIZES.BASE * 1.5; const SOCIAL_BTN_SIZE = theme.SIZES.BASE * 3; const Registerv2 = () => { const [state, setState] = useState({ name: '', lastName: '', email: '', password: '', isMenuOpen: false, }); const handleChange = (name, value) => { setState(prev => ({ ...prev, [name]: value })); }; const handleOnPressSocial = () => Alert.alert('Oops', 'Not Implemented'); const handleSignUp = () => { const { name, lastName, email, password, } = state; Alert.alert('Sign up action', `Name: ${name} Last Name: ${lastName} Email: ${email} Password: ${password}`); }; const toggleMenu = () => { setState(prev => ({ ...prev, isMenuOpen: !prev.isMenuOpen })); }; return ( )} />
or Sign Up with email
); }; const Header = ({ title }) => ( {title} ); const SocialButtons = ({ onPressFacebook, onPressTwitter, onPressInstagram, }) => ( ); const styles = StyleSheet.create({ container: { backgroundColor: theme.COLORS.WHITE, paddingTop: 15, }, flex: { flex: 1, }, social: { width: SOCIAL_BTN_SIZE, height: SOCIAL_BTN_SIZE, borderRadius: theme.SIZES.BASE * 1.75, justifyContent: 'center', }, socialContainer: { marginVertical: theme.SIZES.BASE * 1.875, }, input: { alignSelf: 'center', width: width * 0.89, borderBottomColor: theme.COLORS.BLACK, borderWidth: theme.SIZES.BASE * 0.04, borderRadius: 0, paddingHorizontal: 0, }, button: { marginVertical: 10, width: width * 0.89, }, borderColor: { borderColor: theme.COLORS.GREY, }, header: { width: '50%', marginLeft: MARGIN_LEFT, }, }); export default Registerv2; ================================================ FILE: app/screens/content/Article.js ================================================ import React, { useState } from 'react'; import { Image, StatusBar, StyleSheet, ScrollView, Dimensions, TouchableOpacity, SafeAreaView, View } from 'react-native'; import Constants from 'expo-constants'; // galio components import { Block, Card, Text, Icon, NavBar, Button, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { width, height } = Dimensions.get('screen'); const statusBarHeight = Constants.statusBarHeight; const bgImage = 'https://images.unsplash.com/photo-1516651029879-bcd191e7d33b?fit=crop&w=900&q=80'; const Article = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => { setIsMenuOpen(prev => !prev); }; return ( )} /> {/* Container to reserve space for the absolutely positioned image */} I would happily watch a TV show about crabs InterBlocking this super star 25.6k 936 )} /> You should totally like check this out, ok? Why would you use another UI library when you have so many components written by Creative Tim and the whole React Native community. Galio was created by developers for developers. {"A lot of Bacon. I'd really like to eat like a LOT of Bacon :(."} ); }; const styles = StyleSheet.create({ header: { backgroundColor: theme.COLORS.WHITE, borderTopLeftRadius: theme.SIZES.BASE * 2, borderTopRightRadius: theme.SIZES.BASE * 2, paddingVertical: theme.SIZES.BASE * 2, paddingHorizontal: theme.SIZES.BASE * 1.5, width, }, text: { fontSize: theme.SIZES.FONT * 0.875, lineHeight: theme.SIZES.FONT * 1.25, marginTop: theme.SIZES.BASE, }, author: { marginTop: theme.SIZES.BASE * 2, }, }); export default Article; ================================================ FILE: app/screens/content/ArticleCover.js ================================================ import React, { useState } from 'react'; import { Image, StyleSheet, StatusBar, } from 'react-native'; import { LinearGradient } from 'expo-linear-gradient'; import Constants from 'expo-constants'; // galio components import { Block, Icon, Text, NavBar, Button, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const ArticleCover = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => { setIsMenuOpen(prev => !prev); }; return ( )} /> 27.6k 936 {"Why is 'The Thing' always looking at you?"} Just small talk from the Fantastic Four. So... Did you ever think about this bus? Like... How could this bus have all these weird colors. This purple is really cute though. ); }; const styles = StyleSheet.create({ backgroundImage: { flex: 1, width: '100%', }, absolute: { position: 'absolute', bottom: 0, top: Constants.statusBarHeight, left: 0, right: 0, paddingHorizontal: theme.SIZES.BASE, }, gradient: { position: 'absolute', bottom: 0, left: 0, right: 0, height: 90, }, articleSummary: { paddingBottom: 20, }, }); export default ArticleCover; ================================================ FILE: app/screens/content/ArticleFeedv1.js ================================================ import React, { useState } from 'react'; import { View, ScrollView, StyleSheet, } from 'react-native'; // Galio components import { Card, NavBar, Button } from 'galio-framework'; import NavigationMenu from '../../components/NavigationMenu'; const ArticleFull = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => setIsMenuOpen(prev => !prev); return ( )} onLeftPress={toggleMenu} /> ); }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', }, cardsWrapper: { padding: 18, justifyContent: 'flex-start', }, }); export default ArticleFull; ================================================ FILE: app/screens/content/ArticleFeedv2.js ================================================ import React, { useState } from 'react'; import { ScrollView, StyleSheet, Image, } from 'react-native'; // Galio components import { Block, Card, Text, NavBar, Button, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const ArticleHalf = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => setIsMenuOpen(prev => !prev); return ( )} onLeftPress={toggleMenu} /> Los Angeles, CA )} /> Los Angeles, CA )} /> ); }; const styles = StyleSheet.create({ container: { padding: 18, backgroundColor: theme.COLORS.WHITE, justifyContent: 'flex-start', }, }); export default ArticleHalf; ================================================ FILE: app/screens/content/News.js ================================================ import React, { useState } from 'react'; import PropTypes from 'prop-types'; import { Image, StyleSheet, ScrollView, Platform, } from 'react-native'; import Constants from 'expo-constants'; // Galio components import { Button, Block, Card, Text, Icon, NavBar, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const Author = ({ avatar, title, caption }) => ( {title} {caption} 25.6k 936 ); Author.propTypes = { avatar: PropTypes.string.isRequired, title: PropTypes.string.isRequired, caption: PropTypes.string.isRequired, }; const News = () => { const [isMenuOpen, setMenuOpen] = useState(false); const toggleMenu = () => setMenuOpen(prev => !prev); return ( )} style={Platform.OS === 'android' ? { marginTop: theme.SIZES.BASE } : null} right={[ , , ]} /> I would happily watch a TV show about crabs InterBlocking is super star You should totally read this sutuff, like seriously all yo homies love sneak dissing but at least u’re true, right? Spicy jalapeno bacon ipsum dolor amet short loin cupidatat est, pork pancetta velit kevin occaecat ipsum aliqua ham tri-tip incididunt. Irure sirloin nostrud filet mignon capicola strip steak, sink pork dolore pig shirt ribs. Et pariatur sunt, ribeye esse frankfurter biltong nostrud. Elit do filet mignon turkey, temport pastrami ea bacon. In tritip id cupim tail ham irure. Drumstick esse ut andouille strip steak. Et pariatur sunt, ribeye esse frankfurter biltong nostrud. Elit do filet mignon turkey, temport pastrami ea bacon. In tritip id cupim tail ham irure. Drumstick esse ut andouille strip steak. 25.6k 936 )} /> ); }; const styles = StyleSheet.create({ article: { marginTop: theme.SIZES.BASE * 1.75, }, articleImage: { borderRadius: theme.SIZES.BASE / 2, height: theme.SIZES.BASE * 13.75, }, news: { marginTop: theme.SIZES.BASE / 2, paddingBottom: theme.SIZES.BASE / 2, justifyContent: 'flex-start', paddingHorizontal: theme.SIZES.BASE, }, button: { width: theme.SIZES.BASE * 2, borderColor: 'transparent', }, author: { position: 'absolute', right: theme.SIZES.BASE, left: theme.SIZES.BASE, bottom: Constants.statusBarHeight, backgroundColor: theme.COLORS.WHITE, shadowOffset: { width: 0, height: 4 }, shadowOpacity: 0.3, elevation: theme.SIZES.BASE / 2, }, text: { fontWeight: '400', fontSize: theme.SIZES.FONT * 0.875, lineHeight: theme.SIZES.BASE * 1.25, letterSpacing: 0.3, marginBottom: theme.SIZES.BASE, }, avatar: { width: theme.SIZES.BASE * 3, height: theme.SIZES.BASE * 3, borderRadius: (theme.SIZES.BASE * 3) / 2, }, middle: { paddingLeft: theme.SIZES.BASE, }, }); export default News; ================================================ FILE: app/screens/content/Presentation.js ================================================ import React, { useState } from 'react'; import { Dimensions, StyleSheet, StatusBar, Image, } from 'react-native'; import { LinearGradient } from 'expo-linear-gradient'; import Constants from 'expo-constants'; // galio components import { Text, Button, Block, NavBar, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { width } = Dimensions.get('screen'); const iphoneImage = require('../../../assets/images/iphone.png'); const Presentation = () => { const [isMenuOpen, setMenuOpen] = useState(false); const toggleMenu = () => setMenuOpen(prev => !prev); return ( )} /> Check this out You should totally read this stuf, like seriously all yo homies love sneak dissing but at least u’re true, right? ); }; const styles = StyleSheet.create({ backgroundGradient: { position: 'absolute', top: 0, bottom: 0, right: 0, left: 0, zIndex: 0, }, container: { paddingHorizontal: theme.SIZES.BASE, }, navbar: { top: Constants.statusBarHeight, left: 0, right: 0, zIndex: 9999, position: 'absolute', }, }); export default Presentation; ================================================ FILE: app/screens/ui/Cards.js ================================================ import React, { useState } from 'react'; import { ScrollView, StyleSheet, Dimensions, Platform, } from 'react-native'; import { LinearGradient } from 'expo-linear-gradient'; // Galio components import { Card, Block, NavBar, Button, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { width } = Dimensions.get('screen'); const cards = [ { id: 1, image: 'https://images.unsplash.com/photo-1494252713559-f26b4bf0b174?w=840&q=300', avatar: 'http://i.pravatar.cc/100', title: 'Christopher Moon', caption: '138 minutes ago', location: 'Los Angeles, CA', }, { id: 2, image: 'https://images.unsplash.com/photo-1503631285924-e1544dce8b28?&w=1200&h=1600&fit=crop&crop=entropy&q=300', avatar: 'http://i.pravatar.cc/100', title: 'Christopher Moon', caption: '138 minutes ago', location: 'Los Angeles, CA', }, { id: 3, image: 'https://images.unsplash.com/photo-1497802176320-541c8e8de98d?&w=1600&h=900&fit=crop&crop=entropy&q=300', avatar: 'http://i.pravatar.cc/100', title: 'Christopher Moon', caption: '138 minutes ago', location: 'Los Angeles, CA', padded: true, }, { id: 4, image: 'https://images.unsplash.com/photo-1490049350474-498de43bc885?&w=1600&h=900&fit=crop&crop=entropy&q=300', avatar: 'http://i.pravatar.cc/100', title: 'Christopher Moon', caption: '138 minutes ago', location: 'Los Angeles, CA', padded: true, }, { id: 5, image: 'https://images.unsplash.com/photo-1493612216891-65cbf3b5c420?&w=1500&h=900&fit=crop&crop=entropy&q=300', avatar: 'http://i.pravatar.cc/100', title: 'Christopher Moon', caption: '138 minutes ago', location: 'Los Angeles, CA', full: true, }, { id: 6, image: 'https://images.unsplash.com/photo-1506321806993-0e39f809ae59?&w=1500&h=1900&fit=crop&crop=entropy&q=300', avatar: 'http://i.pravatar.cc/100', title: 'Christopher Moon', caption: '138 minutes ago', location: 'Los Angeles, CA', full: true, }, ]; const Cards = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => setIsMenuOpen(prev => !prev); return ( )} style={Platform.OS === 'android' ? { marginTop: theme.SIZES.BASE } : undefined} /> {cards.map((card, id) => ( {card.full && ( )} ))} ); }; const styles = StyleSheet.create({ cards: { width, backgroundColor: theme.COLORS.WHITE, alignItems: 'center', justifyContent: 'flex-start', }, card: { backgroundColor: theme.COLORS.WHITE, width: width - theme.SIZES.BASE * 2, marginVertical: theme.SIZES.BASE * 0.875, elevation: theme.SIZES.BASE / 2, }, full: { position: 'absolute', bottom: 0, right: 0, left: 0, }, noRadius: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, }, rounded: { borderRadius: theme.SIZES.BASE * 0.1875, }, gradient: { bottom: 0, left: 0, right: 0, height: 90, position: 'absolute', overflow: 'hidden', borderBottomRightRadius: theme.SIZES.BASE * 0.5, borderBottomLeftRadius: theme.SIZES.BASE * 0.5, }, }); export default Cards; ================================================ FILE: app/screens/ui/Components.js ================================================ import React, { useState } from 'react'; import { Dimensions, StyleSheet, ScrollView, Alert, Platform, Linking, } from 'react-native'; import { LinearGradient } from 'expo-linear-gradient'; // galio components import { Text, Block, Button, Card, NavBar, Input, Icon, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { width } = Dimensions.get('screen'); const Components = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => setIsMenuOpen(prev => !prev); const title = "Components"; const transparent = false; const bgColor = theme.COLORS.WHITE; const back = false; const white = false; const iconColor = theme.COLORS.ICON; const titleColor = theme.COLORS.BLACK; const shadow = theme.COLORS.GREY; // Calculate styles const noShadow = ["Pro"].includes(title); const headerStyles = [ !noShadow ? styles.shadow : null, transparent ? { backgroundColor: "rgba(0,0,0,0)" } : null, ]; const navbarStyles = [ styles.navbar, bgColor && { backgroundColor: bgColor }, ]; return ( Linking.openURL('https://galio.io')} /> )} left={( {/* Typography Section */} Typography Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Paragraph This is a muted paragraph. {/* Inputs Section */} Inputs {/* Navigation Bars Section */} Navigation {/* 1. Chart NavBar */} Alert.alert('Back')} style={{ width, marginHorizontal: -(theme.SIZES.BASE - 2) }} right={( ))} ))} ); }; const styles = StyleSheet.create({ grid: { flex: 1, justifyContent: 'space-evenly', }, block: { backgroundColor: COLOR_WHITE, borderRadius: BASE_SIZE / 2, height: width * 0.28, width: width * 0.28, shadowOpacity: 0.4, elevation: BASE_SIZE / 2, }, button: { width: 'auto', height: 'auto', }, }); export default Grid; ================================================ FILE: app/screens/ui/OrderConfirmed.js ================================================ import React, { useState } from 'react'; import { Dimensions, StyleSheet, Platform, Image, } from 'react-native'; // galio components import { Text, Button, Block, NavBar, } from 'galio-framework'; import theme from '../../theme'; import NavigationMenu from '../../components/NavigationMenu'; const { height } = Dimensions.get('window'); const orderConfirmedImage = require('../../../assets/order_confirmed.png'); const OrderConfirmed = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const toggleMenu = () => setIsMenuOpen(prev => !prev); return ( )} style={Platform.OS === 'android' ? { marginTop: theme.SIZES.BASE } : undefined} /> Well done! #45C23B  is your order number Track your order ); }; const styles = StyleSheet.create({ container: { paddingTop: theme.SIZES.BASE * 0.3, paddingHorizontal: theme.SIZES.BASE, backgroundColor: theme.COLORS.WHITE, marginTop: theme.SIZES.BASE * 1.875, marginBottom: height * 0.1, }, }); export default OrderConfirmed; ================================================ FILE: app/theme.js ================================================ const COLORS = { WHITE: '#FFFFFF', BLACK: '#000000', GREY: '#898989', THEME: '#B23AFC', PRIMARY: '#B23AFC', INFO: '#1232FF', ERROR: '#FE2472', WARNING: '#FF9C09', SUCCESS: '#45DF31', TRANSPARENT: 'transparent', INPUT: '#808080', PLACEHOLDER: '#9FA5AA', NAVBAR: '#F9F9F9', BLOCK: '#808080', MUTED: '#9FA5AA', NEUTRAL: 'rgba(255,255,255, 0.65)', FACEBOOK: '#3B5998', TWITTER: '#5BC0DE', DRIBBBLE: '#EA4C89', ICON: '#000000', }; const SIZES = { BASE: 16, FONT: 16, OPACITY: 0.8, }; export default { COLORS, SIZES, }; ================================================ FILE: app.json ================================================ { "expo": { "name": "galio-native-kit", "description": "Build amazing apps in one codebase. //wip from sdk30 to sdk33", "slug": "galio-native-kit", "version": "1.0.0", "orientation": "portrait", "scheme": "galiostarter", "userInterfaceStyle": "automatic", "icon": "./assets/icon.png", "newArchEnabled": true, "ios": { "supportsTablet": true }, "android": { "adaptiveIcon": { "backgroundColor": "#ffffff" }, "edgeToEdgeEnabled": true }, "web": { "bundler": "metro", "output": "static", "favicon": "./assets/images/favicon.png" }, "plugins": [ "expo-router", [ "expo-splash-screen", { "image": "./assets/images/splash-icon.png", "imageWidth": 200, "resizeMode": "contain", "backgroundColor": "#ffffff" } ] ], "experiments": { "typedRoutes": true } } } ================================================ FILE: assets/fonts/galio.json ================================================ {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M1014.627 969.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192z","M416 832c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM416 768c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352z","M608 384c17.673 0 32 14.327 32 32s-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32s14.327-32 32-32h384z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zoom-split-out"]},"attrs":[{},{},{}],"properties":{"order":546,"id":114,"name":"zoom-split-out","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M1014.627 969.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192z","M416 832c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM416 768c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352z","M384 224c0-17.673 14.327-32 32-32s32 14.327 32 32v384c0 17.673-14.327 32-32 32s-32-14.327-32-32v-384z","M608 384c17.673 0 32 14.327 32 32s-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32s14.327-32 32-32h384z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zoom-split-in"]},"attrs":[{},{},{},{}],"properties":{"order":547,"id":113,"name":"zoom-split-in","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M342.311 288l375.938-250.626c21.266-14.177 49.75 1.067 49.75 26.626v896c0 25.558-28.485 40.803-49.75 26.626l-375.938-250.626h-310.311c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32h310.311zM704 123.793l-334.25 222.833c-5.257 3.504-11.433 5.374-17.75 5.374h-288v320h288c6.318 0 12.494 1.87 17.75 5.374l334.25 222.833v-776.415z","M873.608 306.381c-12.626-12.367-12.836-32.627-0.469-45.252s32.627-12.836 45.252-0.469c67.081 65.705 105.608 155.521 105.608 251.341 0 93.406-36.563 181.064-100.678 246.411-12.377 12.615-32.638 12.808-45.253 0.43s-12.808-32.638-0.43-45.253c52.49-53.498 82.362-125.115 82.362-201.589 0-78.444-31.482-151.836-86.392-205.619z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-97"]},"attrs":[{},{}],"properties":{"order":548,"id":112,"name":"volume-97","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M535.799 273.067l401.001-267.334c22.683-15.122 53.067 1.139 53.067 28.401v955.733c0 27.262-30.384 43.523-53.067 28.401l-401.001-267.334h-467.532c-18.851 0-34.133-15.282-34.133-34.133v-409.6c0-18.851 15.282-34.133 34.133-34.133h467.532zM921.6 97.912l-356.533 237.689c-5.607 3.738-12.195 5.733-18.934 5.733h-443.733v341.333h443.733c6.739 0 13.327 1.995 18.934 5.733l356.533 237.689v-828.176z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["volume-93"]},"attrs":[{}],"properties":{"order":549,"id":111,"name":"volume-93","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M954.368 620.096l-138.048-39.424c-10.216-2.913-18.321-10.706-21.632-20.8l-10.88-33.408c50.406 3.327 100.877-5.45 147.2-25.6 7.968-4.129 13.836-11.415 16.172-20.080s0.927-17.913-3.884-25.488c-34.517-57.47-50.993-123.975-47.296-190.912 1.539-105.174-79.445-193.186-184.384-200.384-78.403-3.058-150.778 41.897-182.784 113.536 30.487 44.346 46.922 96.841 47.168 150.656-3.807 54.996 9.23 109.847 37.376 157.248 13.866 22.21 18.058 49.121 11.605 74.496s-22.99 47.015-45.781 59.904l8.768 2.56c68.605 19.831 115.882 82.571 116.032 153.984v151.616c-0.106 10.926-2.098 21.752-5.888 32h293.888c17.673 0 32-14.327 32-32v-215.616c-0.009-42.857-28.424-80.517-69.632-92.288z","M570.368 684.096l-138.048-39.424c-10.216-2.913-18.321-10.706-21.632-20.8l-10.88-33.408c50.406 3.327 100.877-5.45 147.2-25.6 7.968-4.129 13.836-11.415 16.172-20.080s0.927-17.913-3.884-25.488c-34.517-57.47-50.993-123.975-47.296-190.912 1.539-105.174-79.445-193.186-184.384-200.384-52.228-2.073-103.044 17.236-140.715 53.47s-58.942 86.261-58.901 138.53c4.912 69.695-11.518 139.234-47.104 199.36-4.785 7.579-6.172 16.817-3.824 25.467s8.216 15.918 16.176 20.037c46.323 20.15 96.794 28.927 147.2 25.6l-10.88 33.408c-3.311 10.094-11.416 17.887-21.632 20.8l-138.048 39.424c-41.31 11.677-69.847 49.36-69.888 92.288v151.616c0 17.673 14.327 32 32 32h576c17.673 0 32-14.327 32-32v-151.616c-0.009-42.857-28.423-80.517-69.632-92.288z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-ww"]},"attrs":[{},{}],"properties":{"order":550,"id":110,"name":"users-ww","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M634.393 723.984c41.192 11.782 69.588 49.422 69.607 92.272v143.744c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32l0-143.758c0.019-42.836 28.416-80.476 69.607-92.258l157.643-45.049 7.657-53.692c-57.344-0.427-113.372-19.977-158.85-56.216-13.443-10.712-16.022-30.13-5.842-43.979 42.937-58.412 63.476-130.298 57.784-205.047 0-123.712 100.288-224 224-224s224 100.288 223.905 226.47c-5.597 72.279 14.942 144.165 57.879 202.577 10.18 13.849 7.601 33.267-5.842 43.979-45.478 36.239-101.506 55.789-158.85 56.216l7.657 53.692 157.643 45.049zM640 928v-111.73c-0.006-14.279-9.472-26.825-23.2-30.752l-177.593-50.75c-12.139-3.469-21.104-13.751-22.887-26.25l-16.192-113.536c-3.040-21.318 15.418-39.493 36.687-36.124 44.058 6.98 88.858-1.473 127.028-23.415-39.418-65.187-57.686-141.077-51.844-215.444 0-88.366-71.634-160-160-160s-160 71.634-160.095 157.53c5.926 76.527-12.332 152.691-51.75 217.913 38.171 21.943 82.972 30.396 127.031 23.416 21.268-3.37 39.727 14.806 36.687 36.124l-16.192 113.536c-1.783 12.499-10.748 22.781-22.887 26.25l-177.593 50.75c-13.728 3.927-23.194 16.473-23.2 30.738v111.744h576z","M954.4 659.986c41.184 11.78 69.581 49.42 69.6 92.27v207.744c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h160v-175.73c-0.006-14.279-9.472-26.825-23.193-30.75l-177.6-50.752c-12.139-3.469-21.104-13.751-22.887-26.25l-16.192-113.536c-3.040-21.318 15.418-39.493 36.687-36.124 44.058 6.98 88.858-1.473 127.028-23.415-39.418-65.186-57.685-141.066-51.843-215.358-0.154-57.086-30.71-109.765-80.186-138.241s-110.376-28.435-159.814 0.108c-15.305 8.837-34.876 3.593-43.713-11.713s-3.593-34.876 11.713-43.713c69.213-39.96 154.473-40.018 223.739-0.151s112.046 113.618 112.165 196.094c-5.597 72.279 14.942 144.165 57.879 202.577 10.18 13.849 7.601 33.267-5.842 43.979-45.478 36.239-101.506 55.789-158.85 56.216l7.657 53.692 157.651 45.051z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-ww-2"]},"attrs":[{},{}],"properties":{"order":551,"id":109,"name":"users-ww-2","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M951.328 660.863c42.713 10.7 72.671 49.087 72.672 93.121v206.016c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h160v-174.015c-0-14.678-9.986-27.473-24.211-31.037l-207.552-51.904c-12.624-3.157-22.079-13.644-23.916-26.526l-16.192-113.536c-2.003-14.042 5.477-27.727 18.378-33.623 56.913-26.010 93.44-82.812 93.493-145.359l0.006-56.551c1.517-78.922-52.933-147.923-129.184-164.62-28.141-5.351-57.197-3.174-84.227 6.31-16.676 5.852-34.939-2.923-40.79-19.599s2.923-34.939 19.599-40.79c37.667-13.218 78.157-16.251 118.236-8.617 106.943 23.4 182.458 119.094 180.36 227.932l-0 55.963c-0.068 79.422-42.105 152.201-109.329 192.238l9.971 69.912 186.687 46.686z","M634.393 755.984c41.192 11.782 69.588 49.422 69.607 92.272v111.744c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32l0-111.758c0.019-42.836 28.416-80.476 69.607-92.258l157.643-45.049 7.657-53.692c-57.344-0.427-113.372-19.977-158.85-56.216-13.443-10.712-16.022-30.13-5.842-43.979 42.937-58.412 63.476-130.298 57.784-205.047 0-123.712 100.288-224 224-224s224 100.288 223.905 226.47c-5.597 72.279 14.942 144.165 57.879 202.577 10.18 13.849 7.601 33.267-5.842 43.979-45.478 36.239-101.506 55.789-158.85 56.216l7.657 53.692 157.643 45.049zM640 848.27c-0.006-14.279-9.472-26.825-23.2-30.752l-177.593-50.75c-12.139-3.469-21.104-13.751-22.887-26.25l-16.192-113.536c-3.040-21.318 15.418-39.493 36.687-36.124 44.058 6.98 88.858-1.473 127.028-23.415-39.418-65.187-57.686-141.077-51.844-215.444 0-88.366-71.634-160-160-160s-160 71.634-160.095 157.53c5.926 76.527-12.332 152.691-51.75 217.913 38.171 21.943 82.972 30.396 127.031 23.416 21.268-3.37 39.727 14.806 36.687 36.124l-16.192 113.536c-1.783 12.499-10.748 22.781-22.887 26.25l-177.593 50.75c-13.728 3.927-23.194 16.473-23.2 30.738v79.744h576v-79.73z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-wm"]},"attrs":[{},{}],"properties":{"order":552,"id":108,"name":"users-wm","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M951.296 653.824l-163.648-40.896c-12.014-3.010-21.213-12.682-23.616-24.832l-12.224-61.632c68.296-31.212 112.128-99.374 112.192-174.464v-87.936c1.613-105.792-80.48-194.038-186.112-200.064-67.751-1.986-131.529 31.898-167.808 89.152 42.185 48.595 65.57 110.691 65.92 175.040-3.807 54.996 9.23 109.847 37.376 157.248 13.866 22.21 18.058 49.121 11.605 74.496s-22.99 47.015-45.781 59.904l8.768 2.56c68.605 19.831 115.882 82.571 116.032 153.984v151.616c-0.106 10.926-2.098 21.752-5.888 32h293.888c17.673 0 32-14.327 32-32v-181.056c-0.005-44.043-29.978-82.432-72.704-93.12z","M570.368 684.096l-138.048-39.424c-10.216-2.913-18.321-10.706-21.632-20.8l-10.88-33.408c50.406 3.327 100.877-5.45 147.2-25.6 7.968-4.129 13.836-11.415 16.172-20.080s0.927-17.913-3.884-25.488c-34.517-57.47-50.993-123.975-47.296-190.912 1.539-105.174-79.445-193.186-184.384-200.384-52.228-2.073-103.044 17.236-140.715 53.47s-58.942 86.261-58.901 138.53c4.912 69.695-11.518 139.234-47.104 199.36-4.785 7.579-6.172 16.817-3.824 25.467s8.216 15.918 16.176 20.037c46.323 20.15 96.794 28.927 147.2 25.6l-10.88 33.408c-3.311 10.094-11.416 17.887-21.632 20.8l-138.048 39.424c-41.31 11.677-69.847 49.36-69.888 92.288v151.616c0 17.673 14.327 32 32 32h576c17.673 0 32-14.327 32-32v-151.616c-0.009-42.857-28.423-80.517-69.632-92.288z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-wm-2"]},"attrs":[{},{}],"properties":{"order":553,"id":107,"name":"users-wm-2","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M466.659 608.272l10.073 70.904 157.615 44.795c41.236 11.795 69.633 49.435 69.652 92.285v143.744c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32l0-144.014c0.019-42.836 28.416-80.476 69.652-92.271l157.615-44.795 10.065-70.653c-67.226-40.037-109.265-112.819-109.333-192.267l0-95.985c-0.029-60.618 24.512-118.66 68.018-160.871s102.262-64.988 163.693-63.092c122.758 7.003 218.16 109.556 216.29 232.012l-0 87.963c-0.068 79.427-42.11 152.209-109.341 192.245zM459.203 740.728c-24.292-6.918-42.243-27.477-45.829-52.515l-13.248-93.248c-1.994-14.037 5.486-27.712 18.381-33.606 56.913-26.010 93.44-82.812 93.493-145.359l0.004-88.424c1.351-88.64-67.432-162.579-155.097-167.591-43.278-1.328-85.247 14.941-116.322 45.092s-48.605 71.609-48.584 114.923l-0 95.973c0.053 62.575 36.58 119.376 93.493 145.387 12.899 5.895 20.379 19.577 18.379 33.618l-13.251 93.015c-3.581 25.003-21.532 45.562-45.841 52.485l-157.58 44.785c-13.728 3.927-23.194 16.473-23.2 30.738v112h576v-111.73c-0.006-14.271-9.462-26.812-23.178-30.746l-157.618-44.796z","M764.612 614.2l186.716 46.663c42.713 10.7 72.671 49.087 72.672 93.121v206.016c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h160v-174.015c-0-14.678-9.986-27.473-24.207-31.036l-186.677-46.653c-25.284-6.309-44.217-27.319-47.869-53.101l-13.12-92.224c-1.997-14.039 5.483-27.717 18.38-33.612 56.913-26.010 93.44-82.812 93.493-145.359l0.004-88.424c1.351-88.64-67.432-162.579-155.106-167.592-29.735-0.921-59.138 6.467-84.907 21.333-15.308 8.832-34.877 3.581-43.709-11.727s-3.581-34.877 11.727-43.709c36.076-20.813 77.24-31.156 119.701-29.83 122.758 7.003 218.16 109.556 216.29 232.012l-0 87.963c-0.068 79.425-42.108 152.206-109.337 192.242l9.948 69.931z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-mm"]},"attrs":[{},{}],"properties":{"order":554,"id":106,"name":"users-mm","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M977.6 658.752l-140.032-40c-23.073-6.597-40.517-25.548-45.184-49.088l-8.576-43.2c68.296-31.212 112.128-99.374 112.192-174.464v-87.936c1.613-105.792-80.48-194.038-186.112-200.064-77.608-2.342-148.988 42.289-180.864 113.088 30.531 44.434 46.907 97.064 46.976 150.976v87.936c-0.115 23.281-3.453 46.435-9.92 68.8 16.591 17.404 36.303 31.537 58.112 41.664l-8.576 43.136c-4.667 23.54-22.111 42.491-45.184 49.088l-53.952 15.424 94.72 27.072c54.846 15.843 92.653 65.984 92.8 123.072v143.744c-0.106 10.926-2.098 21.752-5.888 32h293.888c17.673 0 32-14.327 32-32v-207.744c-0.013-28.557-18.944-53.651-46.4-61.504z","M593.6 722.752l-140.032-40c-23.091-6.608-40.539-25.588-45.184-49.152l-8.576-43.2c68.275-31.203 112.103-99.333 112.192-174.4v-87.936c1.613-105.792-80.48-194.038-186.112-200.064-51.934-1.593-102.296 17.929-139.587 54.111s-58.325 85.931-58.301 137.889v96c0.064 75.090 43.896 143.252 112.192 174.464l-8.576 43.136c-4.667 23.54-22.111 42.491-45.184 49.088l-140.032 40c-27.479 7.86-46.416 32.987-46.4 61.568v143.744c0 17.673 14.327 32 32 32h576c17.673 0 32-14.327 32-32v-143.744c-0.013-28.557-18.944-53.651-46.4-61.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["users-mm-2"]},"attrs":[{},{}],"properties":{"order":555,"id":105,"name":"users-mm-2","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M224 64c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c123.721 0 224 100.279 224 224s-100.279 224-224 224h-576c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c88.375 0 160-71.625 160-160s-71.625-160-160-160h-576z","M800 960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576c-123.721 0-224-100.279-224-224s100.279-224 224-224h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576c-88.375 0-160 71.625-160 160s71.625 160 160 160h576z","M224 448c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM224 384c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z","M800 1024c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM800 960c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ui-04"]},"attrs":[{},{},{},{}],"properties":{"order":556,"id":104,"name":"ui-04","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M320 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h384c176.713 0 320 143.287 320 320s-143.287 320-320 320h-384c-17.673 0-32-14.327-32-32s14.327-32 32-32h384c141.367 0 256-114.633 256-256s-114.633-256-256-256h-384z","M320 832c-176.731 0-320-143.269-320-320s143.269-320 320-320c176.731 0 320 143.269 320 320s-143.269 320-320 320zM320 768c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ui-03"]},"attrs":[{},{}],"properties":{"order":557,"id":103,"name":"ui-03","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M64 416c0-17.673 14.327-32 32-32s32 14.327 32 32v448c0 53.047 42.953 96 96 96h512c53.047 0 96-42.953 96-96v-448c0-17.673 14.327-32 32-32s32 14.327 32 32v448c0 88.393-71.607 160-160 160h-512c-88.393 0-160-71.607-160-160v-448z","M32 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h896c17.673 0 32 14.327 32 32s-14.327 32-32 32h-896z","M384 64v160c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32s-32-14.327-32-32v-160h-192z","M448 480c0-17.673 14.327-32 32-32s32 14.327 32 32v320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320z","M640 480c0-17.673 14.327-32 32-32s32 14.327 32 32v320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320z","M256 480c0-17.673 14.327-32 32-32s32 14.327 32 32v320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320z"],"attrs":[{},{},{},{},{},{}],"width":960,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash-simple"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":558,"id":102,"name":"trash-simple","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M955.733 955.733v-819.2c0-37.703-30.564-68.267-68.267-68.267h-68.267c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h68.267c75.405 0 136.533 61.128 136.533 136.533v853.333c0 18.851-15.282 34.133-34.133 34.133h-819.2c-18.851 0-34.133-15.282-34.133-34.133v-136.533c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v102.4h750.933z","M819.2 136.533v580.267c0 18.851-15.282 34.133-34.133 34.133h-750.933c-18.851 0-34.133-15.282-34.133-34.133v-580.267c0-75.405 61.128-136.533 136.533-136.533h750.933v68.267c-37.703 0-68.267 30.564-68.267 68.267zM750.933 682.667v-546.133c0-24.869 6.649-48.184 18.266-68.267h-632.666c-37.703 0-68.267 30.564-68.267 68.267v546.133h682.667zM887.467 0c45.511 0 45.511 68.267 0 68.267h-118.268c23.607-40.81 67.731-68.267 118.268-68.267z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["towel"]},"attrs":[{},{}],"properties":{"order":559,"id":101,"name":"towel","prevSize":32,"code":59661},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M64 512v448h128v-448h-128zM32 448h192c17.673 0 32 14.327 32 32v512c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-512c0-17.673 14.327-32 32-32z","M640 384l224.389 0c48.584-0.089 94.577 21.903 125.011 59.774s42.012 87.519 31.469 134.943l-71.105 320.003c-16.27 73.191-81.183 125.267-156.165 125.28h-441.6c-17.673 0-32-14.327-32-32s14.327-32 32-32h441.595c44.986-0.008 83.934-31.254 93.695-75.165l71.105-320.003c6.326-28.456-0.621-58.245-18.881-80.968s-45.856-35.918-75.065-35.864h-256.448c-17.673 0-32-14.327-32-32v-256c0-45.376-31.482-83.4-73.796-93.419l-119.846 359.539c-5.589 16.766-23.711 25.827-40.477 20.239s-25.827-23.711-20.239-40.477l128-384c4.356-13.067 16.584-21.881 30.358-21.881 88.366 0 160 71.634 160 160v224z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["thumb-up"]},"attrs":[{},{}],"properties":{"order":560,"id":100,"name":"thumb-up","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M64 64v448h128v-448h-128zM32 0h192c17.673 0 32 14.327 32 32v512c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-512c0-17.673 14.327-32 32-32z","M576 864v-256c0-17.673 14.327-32 32-32l256.507 0c29.151 0.053 56.746-13.142 75.007-35.864s25.207-52.512 18.881-80.971l-71.103-319.997c-9.762-43.914-48.71-75.16-93.691-75.168h-441.6c-17.673 0-32-14.327-32-32s14.327-32 32-32l441.605 0c74.977 0.013 139.89 52.089 156.161 125.283l71.103 319.997c10.543 47.427-1.035 97.075-31.469 134.946s-76.427 59.863-124.953 59.774h-224.448v224c0 88.366-71.634 160-160 160-13.774 0-26.002-8.814-30.358-21.881l-128-384c-5.589-16.766 3.472-34.888 20.239-40.477s34.888 3.472 40.477 20.239l119.846 359.539c42.314-10.019 73.796-48.043 73.796-93.419z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["thumb-down"]},"attrs":[{},{}],"properties":{"order":561,"id":99,"name":"thumb-down","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M1021.952 107.776c-1.636-7.696-7.322-13.897-14.848-16.192-13.454-2.683-27.383-1.688-40.32 2.88 0 0-897.216 322.432-948.48 358.144-11.008 7.744-14.72 12.16-16.576 17.408-8.832 25.6 18.752 36.672 18.752 36.672l231.232 75.328c3.904 0.704 7.92 0.463 11.712-0.704 52.608-33.216 529.28-334.208 556.8-344.32 4.352-1.28 7.552 0 6.4 3.136-11.008 38.4-422.784 404.416-425.024 406.656-2.218 1.853-3.389 4.673-3.136 7.552l-21.568 225.792c0 0-9.088 70.4 61.184 0 49.856-49.856 97.728-91.2 121.6-111.232 79.488 54.912 165.056 115.584 201.984 147.2 12.496 12.169 29.416 18.711 46.848 18.112 21.747-2.688 39.574-18.528 44.8-39.808 0 0 163.904-657.6 169.344-746.112 0.512-8.64 1.344-13.888 1.344-20.288 0.234-6.803-0.455-13.606-2.048-20.224z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["telegram"]},"attrs":[{}],"properties":{"order":562,"id":98,"name":"telegram","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M384 992c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960c0-17.673 14.327-32 32-32s32 14.327 32 32v960z","M352 77.255l-297.373 297.373c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l320-320c12.497-12.497 32.758-12.497 45.255 0l320 320c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-297.373-297.373z"],"attrs":[{},{}],"width":704,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-up"]},"attrs":[{},{}],"properties":{"order":563,"id":97,"name":"tail-up","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M32 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M649.373 214.627c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l320 320c12.497 12.497 12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l297.373-297.373-297.373-297.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-right"]},"attrs":[{},{}],"properties":{"order":564,"id":96,"name":"tail-right","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M992 480c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32s14.327-32 32-32h960z","M77.255 512l297.373 297.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-320-320c-12.497-12.497-12.497-32.758 0-45.255l320-320c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-297.373 297.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-left"]},"attrs":[{},{}],"properties":{"order":565,"id":95,"name":"tail-left","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M320 32c0-17.673 14.327-32 32-32s32 14.327 32 32v960c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960z","M649.373 649.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0l-320-320c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l297.373 297.373 297.373-297.373z"],"attrs":[{},{}],"width":704,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tail-down"]},"attrs":[{},{}],"properties":{"order":566,"id":94,"name":"tail-down","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M512 768c-141.385 0-256-114.615-256-256s114.615-256 256-256c141.385 0 256 114.615 256 256s-114.615 256-256 256zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192z","M692.963 376.291c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l181.056-181.056c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-181.056 181.056z","M647.709 692.963c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l181.056 181.056c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-181.056-181.056z","M331.037 647.709c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-181.056 181.056c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l181.056-181.056z","M376.291 331.037c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-181.056-181.056c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l181.056 181.056z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["support-17"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":567,"id":93,"name":"support-17","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M512 390.459l-462.25 308.166c-14.705 9.803-34.573 5.83-44.376-8.875s-5.83-34.573 8.875-44.376l480-320c10.749-7.166 24.752-7.166 35.501 0l480 320c14.705 9.803 18.678 29.671 8.875 44.376s-29.671 18.678-44.376 8.875l-462.25-308.166z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-up"]},"attrs":[{}],"properties":{"order":568,"id":92,"name":"stre-up","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M5.374 49.75c-9.803-14.705-5.83-34.573 8.875-44.376s34.573-5.83 44.376 8.875l320 480c7.166 10.749 7.166 24.752 0 35.501l-320 480c-9.803 14.705-29.671 18.678-44.376 8.875s-18.678-29.671-8.875-44.376l308.166-462.25-308.166-462.25z"],"attrs":[{}],"width":384,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-right"]},"attrs":[{}],"properties":{"order":569,"id":91,"name":"stre-right","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M70.459 512l308.166 462.25c9.803 14.705 5.83 34.573-8.875 44.376s-34.573 5.83-44.376-8.875l-320-480c-7.166-10.749-7.166-24.752 0-35.501l320-480c9.803-14.705 29.671-18.678 44.376-8.875s18.678 29.671 8.875 44.376l-308.166 462.25z"],"attrs":[{}],"width":384,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-left"]},"attrs":[{}],"properties":{"order":570,"id":90,"name":"stre-left","prevSize":32,"code":59672},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M974.25 325.374c14.705-9.803 34.573-5.83 44.376 8.875s5.83 34.573-8.875 44.376l-480 320c-10.749 7.166-24.752 7.166-35.501 0l-480-320c-14.705-9.803-18.678-29.671-8.875-44.376s29.671-18.678 44.376-8.875l462.25 308.166 462.25-308.166z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["stre-down"]},"attrs":[{}],"properties":{"order":571,"id":89,"name":"stre-down","prevSize":32,"code":59673},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M384 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M676.571 610.717c9.103-15.148 28.763-20.049 43.911-10.946s20.049 28.763 10.946 43.911c-46.286 77.024-129.567 124.14-219.429 124.14s-173.143-47.116-219.429-124.14c-9.103-15.148-4.202-34.808 10.946-43.911s34.808-4.202 43.911 10.946c34.714 57.768 97.176 93.105 164.571 93.105s129.857-35.337 164.571-93.105z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["smile"]},"attrs":[{},{},{},{}],"properties":{"order":572,"id":88,"name":"smile","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M512 379.608l-424.596 424.596c-19.995 19.995-52.413 19.995-72.408 0s-19.995-52.413 0-72.408l460.8-460.8c19.995-19.995 52.413-19.995 72.408 0l460.8 460.8c19.995 19.995 19.995 52.413 0 72.408s-52.413 19.995-72.408 0l-424.596-424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-up"]},"attrs":[{}],"properties":{"order":573,"id":87,"name":"small-up","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M644.392 512l-424.596-424.596c-19.995-19.995-19.995-52.413 0-72.408s52.413-19.995 72.408 0l460.8 460.8c19.995 19.995 19.995 52.413 0 72.408l-460.8 460.8c-19.995 19.995-52.413 19.995-72.408 0s-19.995-52.413 0-72.408l424.596-424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-right"]},"attrs":[{}],"properties":{"order":574,"id":86,"name":"small-right","prevSize":32,"code":59676},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M379.608 512l424.596 424.596c19.995 19.995 19.995 52.413 0 72.408s-52.413 19.995-72.408 0l-460.8-460.8c-19.995-19.995-19.995-52.413 0-72.408l460.8-460.8c19.995-19.995 52.413-19.995 72.408 0s19.995 52.413 0 72.408l-424.596 424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-left"]},"attrs":[{}],"properties":{"order":575,"id":85,"name":"small-left","prevSize":32,"code":59677},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M512 644.392l424.596-424.596c19.995-19.995 52.413-19.995 72.408 0s19.995 52.413 0 72.408l-460.8 460.8c-19.995 19.995-52.413 19.995-72.408 0l-460.8-460.8c-19.995-19.995-19.995-52.413 0-72.408s52.413-19.995 72.408 0l424.596 424.596z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["small-down"]},"attrs":[{}],"properties":{"order":576,"id":84,"name":"small-down","prevSize":32,"code":59678},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M576 320h288c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-320c0-17.673 14.327-32 32-32s32 14.327 32 32v288z","M544 0c8.487 0 16.626 3.371 22.627 9.373l320 320c6.001 6.001 9.373 14.14 9.373 22.627v640c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32h512zM530.745 64h-466.745v896h768v-594.745l-301.255-301.255z"],"attrs":[{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-folded"]},"attrs":[{},{}],"properties":{"order":577,"id":83,"name":"single-folded","prevSize":32,"code":59679},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M224 768c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 384c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M544 0c8.487 0 16.626 3.371 22.627 9.373l320 320c6.001 6.001 9.373 14.14 9.373 22.627v640c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32h512zM530.745 64h-466.745v896h768v-594.745l-301.255-301.255z","M576 320h288c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-320c0-17.673 14.327-32 32-32s32 14.327 32 32v288z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-folded-content"]},"attrs":[{},{},{},{},{}],"properties":{"order":578,"id":82,"name":"single-folded-content","prevSize":32,"code":59680},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M64 256v704h576v-704h-576zM32 192h640c17.673 0 32 14.327 32 32v768c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32v-768c0-17.673 14.327-32 32-32z","M832 64h-672c-17.673 0-32-14.327-32-32s14.327-32 32-32h704c17.673 0 32 14.327 32 32v832c0 17.673-14.327 32-32 32s-32-14.327-32-32v-800z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z","M224 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-copy-04"]},"attrs":[{},{},{},{},{}],"properties":{"order":579,"id":81,"name":"single-copy-04","prevSize":32,"code":59681},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M64 320v640h512v-640h-512zM32 256h576c17.673 0 32 14.327 32 32v704c0 17.673-14.327 32-32 32h-576c-17.673 0-32-14.327-32-32v-704c0-17.673 14.327-32 32-32z","M704 192h-544c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32v704c0 17.673-14.327 32-32 32s-32-14.327-32-32v-672z","M832 64h-480c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-608z"],"attrs":[{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-copies"]},"attrs":[{},{},{}],"properties":{"order":580,"id":80,"name":"single-copies","prevSize":32,"code":59682},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M64 64v896h768v-896h-768zM32 0h832c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M224 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-content-03"]},"attrs":[{},{},{},{},{}],"properties":{"order":581,"id":79,"name":"single-content-03","prevSize":32,"code":59683},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M832 658.745v-594.745h-768v896h466.745l301.255-301.255zM544 1024h-512c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32h832c17.673 0 32 14.327 32 32v640c0 8.487-3.371 16.626-9.373 22.627l-320 320c-6.001 6.001-14.14 9.373-22.627 9.373z","M576 704v288c0 17.673-14.327 32-32 32s-32-14.327-32-32v-320c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-288z","M224 320c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 512c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-content-02"]},"attrs":[{},{},{},{},{}],"properties":{"order":582,"id":78,"name":"single-content-02","prevSize":32,"code":59684},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M669.626 604.795c-15.903-7.709-22.546-26.85-14.837-42.754s26.85-22.546 42.754-14.837c121.394 58.846 198.478 181.895 198.458 316.8-0.001 8.485-3.373 16.623-9.373 22.623-18.502 18.502-54.487 44.673-109.002 70.327-89.216 41.984-198.861 67.046-329.626 67.046s-240.41-25.062-329.626-67.046c-54.515-25.654-90.5-51.825-109.002-70.327-5.999-5.999-9.37-14.135-9.373-22.62-0.033-134.889 77.020-257.934 198.387-316.8 15.901-7.713 35.044-1.074 42.757 14.827s1.074 35.044-14.827 42.757c-95.021 46.087-156.843 140.257-161.971 244.989 3.036 2.425 6.692 5.224 10.976 8.339 19.026 13.837 42.418 27.803 70.304 40.925 80.784 38.016 181.139 60.954 302.374 60.954s221.59-22.938 302.374-60.954c27.886-13.123 51.278-27.088 70.304-40.925 4.283-3.115 7.939-5.914 10.974-8.338-5.14-104.744-66.985-198.916-162.027-244.987z","M640 256c0-106.039-85.961-192-192-192s-192 85.961-192 192c0 120.099 97.44 256 192 256s192-135.901 192-256zM704 256c0 151.74-120.641 320-256 320s-256-168.26-256-320c0-141.385 114.615-256 256-256s256 114.615 256 256z"],"attrs":[{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-03"]},"attrs":[{},{}],"properties":{"order":583,"id":77,"name":"single-03","prevSize":32,"code":59685},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M951.163 12.497c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-938.667 938.667c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l938.667-938.667z","M12.497 72.837c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l938.667 938.667c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-938.667-938.667z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simple-remove"]},"attrs":[{},{}],"properties":{"order":584,"id":76,"name":"simple-remove","prevSize":32,"code":59686},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M344.637 454.338c-14.988 9.365-34.73 4.807-44.095-10.181s-4.807-34.73 10.181-44.095l240.704-150.4c14.988-9.365 34.73-4.807 44.095 10.181s4.807 34.73-10.181 44.095l-240.704 150.4z","M310.723 623.938c-14.988-9.365-19.546-29.107-10.181-44.095s29.107-19.546 44.095-10.181l240.704 150.4c14.988 9.365 19.546 29.107 10.181 44.095s-29.107 19.546-44.095 10.181l-240.704-150.4z","M704 384c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM704 320c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M704 1024c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM704 960c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M192 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM192 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["share-bold"]},"attrs":[{},{},{},{},{}],"properties":{"order":585,"id":75,"name":"share-bold","prevSize":32,"code":59687},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M997.263 416.436c15.429 2.573 26.737 15.922 26.737 31.564v128c0 15.642-11.308 28.992-26.737 31.564l-119.38 19.906c-6.716 21.323-15.244 41.914-25.499 61.605l70.306 98.548c9.081 12.729 7.633 30.156-3.423 41.212l-90.496 90.496c-11.062 11.062-28.499 12.504-41.228 3.411l-98.481-70.351c-19.687 10.252-40.274 18.777-61.592 25.492l-19.906 119.38c-2.573 15.429-15.922 26.737-31.564 26.737h-128c-15.642 0-28.992-11.308-31.564-26.737l-19.906-119.38c-21.321-6.715-41.91-15.243-61.6-25.496l-98.483 70.298c-12.729 9.086-30.16 7.641-41.219-3.418l-90.496-90.496c-11.058-11.058-12.504-28.49-3.418-41.219l70.298-98.483c-10.253-19.689-18.781-40.279-25.496-61.6l-119.38-19.906c-15.429-2.573-26.737-15.922-26.737-31.564v-128c0-15.642 11.308-28.992 26.737-31.564l119.38-19.906c6.715-21.321 15.243-41.91 25.496-61.6l-70.298-98.483c-9.086-12.729-7.641-30.16 3.418-41.219l90.496-90.496c11.058-11.058 28.49-12.504 41.219-3.418l98.483 70.298c19.689-10.253 40.279-18.781 61.6-25.496l19.906-119.38c2.573-15.429 15.922-26.737 31.564-26.737h128c15.642 0 28.992 11.308 31.564 26.737l19.906 119.38c21.321 6.715 41.91 15.243 61.6 25.496l98.483-70.298c12.725-9.083 30.151-7.642 41.211 3.41l90.56 90.496c11.069 11.061 12.515 28.504 3.419 41.236l-70.351 98.481c10.252 19.687 18.777 40.274 25.492 61.592l119.38 19.906zM960 548.894v-73.788l-112.591-18.774c-12.503-2.085-22.596-11.353-25.738-23.632-7.573-29.599-19.205-57.642-34.595-83.564-6.476-10.909-5.897-24.614 1.478-34.937l66.348-92.877-52.215-52.178-92.895 66.309c-10.322 7.368-24.022 7.945-34.927 1.471-25.923-15.39-53.965-27.022-83.564-34.595-12.28-3.142-21.548-13.236-23.632-25.738l-18.774-112.591h-73.788l-18.774 112.591c-2.085 12.503-11.353 22.596-23.632 25.738-29.599 7.573-57.642 19.205-83.564 34.595-10.905 6.474-24.605 5.897-34.927-1.471l-92.887-66.304-52.172 52.172 66.304 92.887c7.368 10.322 7.945 24.022 1.471 34.927-15.39 25.923-27.022 53.965-34.595 83.564-3.142 12.28-13.236 21.548-25.738 23.632l-112.591 18.774v73.788l112.591 18.774c12.503 2.085 22.596 11.353 25.738 23.632 7.573 29.599 19.205 57.642 34.595 83.564 6.474 10.905 5.897 24.605-1.471 34.927l-66.304 92.887 52.172 52.172 92.887-66.304c10.322-7.368 24.022-7.945 34.927-1.471 25.923 15.39 53.965 27.022 83.564 34.595 12.28 3.142 21.548 13.236 23.632 25.738l18.774 112.591h73.788l18.774-112.591c2.085-12.503 11.353-22.596 23.632-25.738 29.599-7.573 57.642-19.205 83.564-34.595 10.909-6.476 24.614-5.897 34.937 1.478l92.885 66.354 52.17-52.17-66.314-92.953c-7.364-10.322-7.939-24.018-1.466-34.92 15.39-25.923 27.022-53.965 34.595-83.564 3.142-12.28 13.236-21.548 25.738-23.632l112.591-18.774z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["settings-gear-63"]},"attrs":[{},{}],"properties":{"order":586,"id":74,"name":"settings-gear-63","prevSize":32,"code":59688},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M64 64v320h896v-320h-896zM32 0h960c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32z","M416 192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h192z","M864 224c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M64 640v320h896v-320h-896zM32 576h960c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32z","M416 768c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h192z","M864 800c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["server-rack"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":587,"id":73,"name":"server-rack","prevSize":32,"code":59689},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M64 576v320h320v-320h-320zM64 512h352c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32v-431.744c0-212.205 80.027-353.86 235.649-418.181 16.333-6.751 35.046 1.017 41.797 17.35s-1.017 35.046-17.35 41.797c-129.741 53.625-196.095 171.078-196.095 359.035v15.744z","M640 576v320h320v-320h-320zM640 512h352c17.673 0 32 14.327 32 32v384c0 17.673-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32v-431.744c0-212.205 80.027-353.86 235.649-418.181 16.333-6.751 35.046 1.017 41.797 17.35s-1.017 35.046-17.35 41.797c-129.741 53.625-196.095 171.078-196.095 359.035v15.744z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote"]},"attrs":[{},{}],"properties":{"order":588,"id":72,"name":"quote","prevSize":32,"code":59690},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M384 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M363.885 765.711c-16.409 6.564-35.032-1.418-41.596-17.827s1.418-35.032 17.827-41.596l320-128c16.409-6.564 35.032 1.418 41.596 17.827s-1.418 35.032-17.827 41.596l-320 128z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["puzzled"]},"attrs":[{},{},{},{}],"properties":{"order":589,"id":71,"name":"puzzled","prevSize":32,"code":59691},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M736 128c-17.673 0-32-14.327-32-32s14.327-32 32-32h64c53.001 0 96 42.999 96 96v768c0 53.001-42.999 96-96 96h-704c-53.001 0-96-42.999-96-96v-768c0-53.001 42.999-96 96-96h64c17.673 0 32 14.327 32 32s-14.327 32-32 32h-64c-17.655 0-32 14.345-32 32v768c0 17.655 14.345 32 32 32h704c17.655 0 32-14.345 32-32v-768c0-17.655-14.345-32-32-32h-64z","M320 64v64h256v-64h-256zM288 0h320c17.673 0 32 14.327 32 32v128c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-128c0-17.673 14.327-32 32-32z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z"],"attrs":[{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad"]},"attrs":[{},{},{},{}],"properties":{"order":590,"id":70,"name":"notepad","prevSize":32,"code":59692},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M54.627 790.627c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l480-480c12.497-12.497 32.758-12.497 45.255 0l480 480c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-457.373-457.373-457.373 457.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-up"]},"attrs":[{}],"properties":{"order":591,"id":69,"name":"minimal-up","prevSize":32,"code":59693},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M512 690.745l457.373-457.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-480 480c-12.497 12.497-32.758 12.497-45.255 0l-480-480c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l457.373 457.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-down"]},"attrs":[{}],"properties":{"order":592,"id":68,"name":"minimal-down","prevSize":32,"code":59694},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M416 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M384 576c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 576c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M768 256h96c88.366 0 160 71.634 160 160v448c0 88.366-71.634 160-160 160h-704c-88.366 0-160-71.634-160-160v-448c0-88.366 71.634-160 160-160h306.745l246.627-246.627c20.159-20.159 54.627-5.882 54.627 22.627v224zM704 109.255l-201.373 201.373c-6.001 6.001-14.14 9.373-22.627 9.373h-320c-53.019 0-96 42.981-96 96v448c0 53.019 42.981 96 96 96h704c53.019 0 96-42.981 96-96v-448c0-53.019-42.981-96-96-96h-128c-17.673 0-32-14.327-32-32v-178.745z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["manga-63"]},"attrs":[{},{},{},{}],"properties":{"order":593,"id":67,"name":"manga-63","prevSize":32,"code":59695},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M416 192c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 960c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M195.2 248.64h-62.656v-120.64c0-14.677 0.299-28.117 0.896-40.32-4.407 5.256-9.198 10.176-14.336 14.72l-25.6 21.376-32-39.36 78.464-64h55.232v228.224z","M223.296 634.304h-165.696v-40.64l55.808-56.448c15.936-16.64 26.304-28.032 31.232-34.112 4.046-4.785 7.486-10.051 10.24-15.68 1.888-4.363 2.847-9.070 2.816-13.824 0.257-5.314-1.852-10.47-5.76-14.080-4.592-3.671-10.389-5.496-16.256-5.12-7.71 0.182-15.237 2.39-21.824 6.4-8.879 5.22-17.219 11.309-24.896 18.176l-33.92-39.68c9.106-8.519 19.056-16.089 29.696-22.592 8.208-4.595 16.988-8.081 26.112-10.368 10.471-2.558 21.222-3.784 32-3.648 13.636-0.224 27.163 2.459 39.68 7.872 10.951 4.683 20.326 12.413 27.008 22.272 6.364 9.593 9.708 20.873 9.6 32.384 0.070 8.418-1.072 16.803-3.392 24.896-2.401 7.911-5.89 15.45-10.368 22.4-5.447 8.342-11.706 16.124-18.688 23.232-7.765 8.107-24.299 23.509-49.6 46.208v1.6h86.4l-0.192 50.752z","M215.68 841.984c0.33 13.334-4.222 26.33-12.8 36.544-10.020 10.935-23.081 18.624-37.504 22.080v0.896c38.144 4.779 57.216 22.827 57.216 54.144 0.649 19.917-8.876 38.797-25.28 50.112-20.917 13.333-45.511 19.717-70.272 18.24-11.423 0.058-22.832-0.82-34.112-2.624-11.625-2.067-23.011-5.305-33.984-9.664v-51.2c9.688 4.979 19.937 8.782 30.528 11.328 9.38 2.343 19.004 3.567 28.672 3.648 10.204 0.702 20.415-1.261 29.632-5.696 6.215-3.724 9.803-10.63 9.28-17.856 0.354-5.294-1.394-10.514-4.864-14.528-4.403-3.93-9.808-6.566-15.616-7.616-9.235-1.943-18.661-2.823-28.096-2.624h-14.080v-46.336h14.4c31.296 0 47.040-8 47.040-24.064 0.32-5.421-2.359-10.581-6.976-13.44-5.701-3.172-12.17-4.701-18.688-4.416-16.194 0.511-31.909 5.616-45.312 14.72l-25.6-41.28c11.297-7.955 23.843-13.968 37.12-17.792 14.2-3.73 28.84-5.517 43.52-5.312 19.54-1.085 38.946 3.827 55.616 14.080 12.959 8.526 20.586 23.149 20.16 38.656z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["list-numbers"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":594,"id":66,"name":"list-numbers","prevSize":32,"code":59696},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M102.4 273.067v682.667h819.2v-682.667h-819.2zM68.267 204.8h887.467c18.851 0 34.133 15.282 34.133 34.133v750.933c0 18.851-15.282 34.133-34.133 34.133h-887.467c-18.851 0-34.133-15.282-34.133-34.133v-750.933c0-18.851 15.282-34.133 34.133-34.133z","M273.067 68.267c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h477.867c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-477.867z","M299.078 819.2h459.836l-153.279-255.464-306.557 255.464zM182.948 827.111l409.6-341.333c16.089-13.407 40.346-9.298 51.121 8.66l204.8 341.333c13.65 22.751-2.737 51.695-29.269 51.695h-614.4c-31.925 0-46.377-39.918-21.852-60.355z","M375.467 477.867c0 37.703-30.564 68.267-68.267 68.267s-68.267-30.564-68.267-68.267c0-37.703 30.564-68.267 68.267-68.267s68.267 30.564 68.267 68.267z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["img-stack"]},"attrs":[{},{},{},{}],"properties":{"order":595,"id":65,"name":"img-stack","prevSize":32,"code":59697},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M1002.944 418.88h-488.704v209.472h276.992c-44.288 139.648-153.664 186.176-279.232 186.176-133.735 0.168-251.712-87.492-290.146-215.585s11.797-266.223 123.534-339.707c111.737-73.484 258.465-64.885 360.852 21.149l152.192-144.96c-168.571-155.283-419.804-179.623-615.048-59.585s-286.93 355.206-224.458 575.719c62.472 220.514 263.881 372.648 493.073 372.442 282.304 0 537.6-186.176 490.944-605.12z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google"]},"attrs":[{}],"properties":{"order":596,"id":64,"name":"google","prevSize":32,"code":59698},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M32 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M497.126 192h494.874c17.673 0 32 14.327 32 32v640c0 88.393-71.607 160-160 160h-704c-88.393 0-160-71.607-160-160v-832c0-17.673 14.327-32 32-32h320c10.699 0 20.691 5.347 26.626 14.25l118.5 177.75zM960 256h-480c-10.699 0-20.691-5.347-26.626-14.25l-118.5-177.75h-270.874v800c0 53.047 42.953 96 96 96h704c53.047 0 96-42.953 96-96v-608z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-14"]},"attrs":[{},{}],"properties":{"order":597,"id":63,"name":"folder-14","prevSize":32,"code":59699},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M857.606 368.832c95.551 27.856 166.394 79.629 166.394 143.168 0 63.537-70.839 115.31-166.387 143.166 47.861 87.21 61.355 174.122 16.352 218.908-44.939 44.722-131.752 31.27-218.797-16.468-27.856 95.551-79.629 166.394-143.168 166.394-63.537 0-115.31-70.839-143.166-166.387-87.21 47.861-174.122 61.355-218.908 16.352-44.722-44.939-31.27-131.752 16.468-218.797-95.551-27.856-166.394-79.629-166.394-143.168 0-63.582 70.96-115.373 166.536-143.056-47.699-86.971-61.099-173.529-16.49-218.644 44.77-45.278 131.502-31.861 218.791 16.079 27.857-95.544 79.628-166.379 143.164-166.379 63.537 0 115.31 70.839 143.166 166.387 87.21-47.861 174.122-61.355 218.908-16.352 44.722 44.939 31.27 131.752-16.468 218.797zM960 512c0-30.401-69.307-73.086-158.654-91.129-22.286-4.501-32.902-30.155-20.311-49.087 50.332-75.683 69.134-155.041 47.675-176.603-21.338-21.442-100.741-2.593-176.494 47.785-18.932 12.59-44.587 1.975-49.087-20.311-18.043-89.348-60.728-158.654-91.129-158.654s-73.086 69.307-91.129 158.654c-4.501 22.286-30.155 32.902-49.087 20.311-75.858-50.448-154.928-69.209-176.229-47.666-21.546 21.79-2.786 100.908 47.603 176.676 12.608 18.959 1.942 44.649-20.387 49.102-89.363 17.823-158.771 60.492-158.771 90.922 0 30.401 69.307 73.086 158.654 91.129 22.286 4.501 32.902 30.155 20.311 49.087-50.332 75.683-69.134 155.041-47.675 176.603 21.338 21.442 100.741 2.593 176.494-47.785 18.932-12.59 44.587-1.975 49.087 20.311 18.043 89.348 60.728 158.654 91.129 158.654s73.086-69.307 91.129-158.654c4.501-22.286 30.155-32.902 49.087-20.311 75.683 50.332 155.041 69.134 176.603 47.675 21.442-21.338 2.593-100.741-47.785-176.494-12.59-18.932-1.975-44.587 20.311-49.087 89.348-18.043 158.654-60.728 158.654-91.129z","M512 640c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM512 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flower-06"]},"attrs":[{},{}],"properties":{"order":598,"id":62,"name":"flower-06","prevSize":32,"code":59700},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M546.133 989.867c0 18.851-15.282 34.133-34.133 34.133s-34.133-15.282-34.133-34.133v-955.733c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v955.733z","M34.133 546.133c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h955.733c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-955.733z","M399.603 194.803c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l136.533-136.533c13.33-13.33 34.942-13.33 48.272 0l136.533 136.533c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-112.397-112.397-112.397 112.397z","M512 941.595l112.397-112.397c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-136.533 136.533c-13.33 13.33-34.942 13.33-48.272 0l-136.533-136.533c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l112.397 112.397z","M941.595 512l-112.397-112.397c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l136.533 136.533c13.33 13.33 13.33 34.942 0 48.272l-136.533 136.533c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l112.397-112.397z","M194.803 624.397c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-136.533-136.533c-13.33-13.33-13.33-34.942 0-48.272l136.533-136.533c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-112.397 112.397 112.397 112.397z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["drag-31"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":599,"id":61,"name":"drag-31","prevSize":32,"code":59701},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M647.417 11.514c11.314-13.577 31.492-15.411 45.069-4.097s15.411 31.492 4.097 45.069l-320 384c-12.793 15.352-36.373 15.352-49.166 0l-320-384c-11.314-13.577-9.48-33.755 4.097-45.069s33.755-9.48 45.069 4.097l295.417 354.5 295.417-354.5z","M320 416c0-17.673 14.327-32 32-32s32 14.327 32 32v576c0 17.673-14.327 32-32 32s-32-14.327-32-32v-576z","M96 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32s-14.327 32-32 32h-512z","M96 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32s-14.327 32-32 32h-512z"],"attrs":[{},{},{},{}],"width":704,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-yen"]},"attrs":[{},{},{},{}],"properties":{"order":600,"id":60,"name":"currency-yen","prevSize":32,"code":59702},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M874.069 166.941c8.79 18.185 1.175 40.052-17.010 48.843s-40.052 1.175-48.843-17.010c-39.444-81.599-124.296-131.264-213.687-125.781-131.463 11.967-231.341 123.47-228.815 256.151v658.286c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.374-36.571-36.571l0.007-657.588c-3.252-170.338 125.653-314.245 296.39-329.772 120.092-7.387 232.737 58.545 285.101 166.872z","M182.857 1024c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h658.286c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-658.286z","M182.857 585.143c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h438.857c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-438.857z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-pound"]},"attrs":[{},{},{}],"properties":{"order":601,"id":59,"name":"currency-pound","prevSize":32,"code":59703},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M875.149 907.608c17.826-9.496 39.975-2.743 49.472 15.083s2.743 39.975-15.083 49.472c-63.827 34-135.029 51.801-207.365 51.837-275.019 0-464.457-219.804-464.457-512s189.438-512 463.406-511.985c73.266-2.107 145.698 16.001 209.354 52.338 17.541 10.013 23.643 32.35 13.63 49.891s-32.35 23.643-49.891 13.63c-51.99-29.679-111.149-44.468-172.041-42.732-232.009 0-391.314 184.842-391.314 438.857s159.306 438.857 391.296 438.857c60.337-0.030 119.743-14.881 172.996-43.249z","M109.714 438.857c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h512c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-512z","M109.714 658.286c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h512c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-512z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-euro"]},"attrs":[{},{},{}],"properties":{"order":602,"id":58,"name":"currency-euro","prevSize":32,"code":59704},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M582.017 181.883c15.484 8.519 21.131 27.978 12.612 43.462s-27.978 21.131-43.462 12.612c-53.946-29.68-161.909-51.030-247.869-44.863-99.965 7.172-154.562 45.672-154.562 118.010 0 83.711 49.142 119.742 194.92 168.338 7.351 2.447 7.351 2.447 14.733 4.9 163.485 54.364 223.947 95.864 223.947 202.506 0 117.547-72.828 186.434-192.469 204.382-94.23 14.136-215.893-4.036-327.318-44.233-16.624-5.997-25.24-24.336-19.242-40.96s24.336-25.24 40.96-19.242c102.215 36.874 213.633 53.516 296.106 41.143 90.676-13.603 137.963-58.331 137.963-141.090 0-66.823-42.532-96.016-180.142-141.776-7.364-2.447-7.364-2.447-14.778-4.915-170.398-56.804-238.68-106.868-238.68-229.054 0-112.924 84.572-172.562 213.982-181.846 97.852-7.020 218.115 16.762 283.299 52.625z","M320 32c0-17.673 14.327-32 32-32s32 14.327 32 32v960c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960z"],"attrs":[{},{}],"width":640,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["currency-dollar"]},"attrs":[{},{}],"properties":{"order":603,"id":57,"name":"currency-dollar","prevSize":32,"code":59705},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M512 384v576h448v-576h-448zM480 320h512c17.673 0 32 14.327 32 32v640c0 17.673-14.327 32-32 32h-512c-17.673 0-32-14.327-32-32v-640c0-17.673 14.327-32 32-32z","M64 832h224c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32v-832c0-17.673 14.327-32 32-32h704c17.673 0 32 14.327 32 32v128c0 17.673-14.327 32-32 32s-32-14.327-32-32v-96h-640v768z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy-2"]},"attrs":[{},{}],"properties":{"order":604,"id":56,"name":"copy-2","prevSize":32,"code":59706},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M512 576c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 512c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M857.857 857.93c7.629 15.942 0.891 35.049-15.051 42.679s-35.049 0.891-42.679-15.051c-53.089-110.93-165.148-181.531-288.127-181.531s-235.038 70.601-288.127 181.531c-7.629 15.942-26.737 22.68-42.679 15.051s-22.68-26.737-15.051-42.679c63.726-133.157 198.237-217.903 345.857-217.903s282.13 84.747 345.857 217.903z","M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["circle-08"]},"attrs":[{},{},{}],"properties":{"order":605,"id":55,"name":"circle-08","prevSize":32,"code":59707},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M480 562.745l489.373-489.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-512 512c-12.497 12.497-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l169.373 169.373z","M832 480c0-17.673 14.327-32 32-32s32 14.327 32 32v384c0 53.001-42.999 96-96 96h-704c-53.001 0-96-42.999-96-96v-704c0-53.001 42.999-96 96-96h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576c-17.655 0-32 14.345-32 32v704c0 17.655 14.345 32 32 32h704c17.655 0 32-14.345 32-32v-384z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-square-11"]},"attrs":[{},{}],"properties":{"order":606,"id":54,"name":"check-square-11","prevSize":32,"code":59708},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M745.373 297.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0l-160-160c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l137.373 137.373 297.373-297.373z","M928 960c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832zM928 1024h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-square-09"]},"attrs":[{},{}],"properties":{"order":607,"id":53,"name":"check-square-09","prevSize":32,"code":59709},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M348.705 879.45l605.18-796.29 50.954 38.725-649.545 854.664-336.55-336.55 45.255-45.255z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-single"]},"attrs":[{}],"properties":{"order":608,"id":52,"name":"check-single","prevSize":32,"code":59710},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z","M745.373 297.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-320 320c-12.497 12.497-32.758 12.497-45.255 0l-160-160c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l137.373 137.373 297.373-297.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-circle-08"]},"attrs":[{},{}],"properties":{"order":609,"id":51,"name":"check-circle-08","prevSize":32,"code":59711},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M827.457 452.882c-2.732-17.461 9.209-33.83 26.669-36.561s33.83 9.209 36.561 26.669c3.532 22.577 5.313 45.672 5.313 69.010 0 247.433-200.567 448-448 448s-448-200.567-448-448c0-247.433 200.567-448 448-448 72.969 0 143.456 17.464 206.789 50.471 15.672 8.168 21.756 27.494 13.588 43.167s-27.494 21.756-43.167 13.588c-54.252-28.274-114.599-43.225-177.211-43.225-212.087 0-384 171.913-384 384s171.913 384 384 384c212.087 0 384-171.913 384-384 0-20.039-1.526-39.827-4.543-59.118z","M448 562.745l489.373-489.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-512 512c-12.497 12.497-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l169.373 169.373z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-circle-07"]},"attrs":[{},{}],"properties":{"order":610,"id":50,"name":"check-circle-07","prevSize":32,"code":59712},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M937.373 169.373c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-640 640c-12.497 12.497-32.758 12.497-45.255 0l-256-256c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l233.373 233.373 617.373-617.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-2"]},"attrs":[{}],"properties":{"order":611,"id":49,"name":"check-2","prevSize":32,"code":59713},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M512 896c-281.831 0-512-199.474-512-448s230.169-448 512-448c281.831 0 512 199.474 512 448 0 110.624-46.26 214.679-128 295.774v248.226c0 24.215-25.854 39.656-47.173 28.174l-244.267-131.552c-30.518 4.886-61.431 7.378-92.56 7.378zM832 730.176c0-8.853 3.667-17.31 10.13-23.36 75.511-70.692 117.87-162.020 117.87-258.816 0-210.982-199.642-384-448-384s-448 173.018-448 384c0 210.982 199.642 384 448 384 31.1 0 61.966-2.794 92.385-8.263 7.121-1.28 14.466-0.11 20.836 3.321l206.779 111.362v-208.244z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-round"]},"attrs":[{}],"properties":{"order":612,"id":48,"name":"chat-round","prevSize":32,"code":59714},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M192 576h-96c-53.001 0-96-42.999-96-96v-384c0-53.001 42.999-96 96-96h576c53.001 0 96 42.999 96 96v384c0 53.001-42.999 96-96 96h-242.745l-182.627 182.627c-20.159 20.159-54.627 5.882-54.627-22.627v-160zM393.373 521.373c6.001-6.001 14.14-9.373 22.627-9.373h256c17.655 0 32-14.345 32-32v-384c0-17.655-14.345-32-32-32h-576c-17.655 0-32 14.345-32 32v384c0 17.655 14.345 32 32 32h128c17.673 0 32 14.327 32 32v114.745l137.373-137.373z","M416 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c8.487 0 16.626 3.371 22.627 9.373l137.373 137.373v-114.745c0-17.673 14.327-32 32-32h128c17.655 0 32-14.345 32-32v-384c0-17.655-14.345-32-32-32h-64c-17.673 0-32-14.327-32-32s14.327-32 32-32h64c53.001 0 96 42.999 96 96v384c0 53.001-42.999 96-96 96h-96v160c0 28.509-34.469 42.786-54.627 22.627l-182.627-182.627h-178.745z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-46"]},"attrs":[{},{}],"properties":{"order":613,"id":47,"name":"chat-46","prevSize":32,"code":59715},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M256 736h-160c-53.001 0-96-42.999-96-96v-512c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v512c0 53.001-42.999 96-96 96h-329.475l-289.7 248.297c-20.758 17.791-52.824 3.042-52.824-24.297v-224zM320 890.428l245.864-210.725c5.8-4.971 13.186-7.703 20.824-7.703h341.312c17.655 0 32-14.345 32-32v-512c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v512c0 17.655 14.345 32 32 32h192c17.673 0 32 14.327 32 32v186.428z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-45"]},"attrs":[{}],"properties":{"order":614,"id":46,"name":"chat-45","prevSize":32,"code":59716},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M608 448c-17.673 0-32-14.327-32-32v-384c0-17.673 14.327-32 32-32 229.75 0 416 186.25 416 416 0 17.673-14.327 32-32 32h-384zM640 384h318.565c-15.218-168.868-149.697-303.347-318.565-318.565v318.565z","M448 576h352c17.673 0 32 14.327 32 32 0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416 17.673 0 32 14.327 32 32v352zM64 608c0 194.404 157.596 352 352 352 183.617 0 334.398-140.592 350.565-320h-350.565c-17.673 0-32-14.327-32-32v-350.565c-179.408 16.167-320 166.948-320 350.565z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-36"]},"attrs":[{},{}],"properties":{"order":615,"id":45,"name":"chart-pie-36","prevSize":32,"code":59717},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M546.133 477.867h443.733c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-477.867c-18.851 0-34.133-15.282-34.133-34.133v-477.867c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v443.733z","M487.864 487.864c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-337.852 337.852c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l337.852-337.852z","M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 955.733c245.067 0 443.733-198.666 443.733-443.733s-198.666-443.733-443.733-443.733c-245.067 0-443.733 198.666-443.733 443.733s198.666 443.733 443.733 443.733z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-35"]},"attrs":[{},{},{}],"properties":{"order":616,"id":44,"name":"chart-pie-35","prevSize":32,"code":59718},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M64 768v192h128v-192h-128zM32 704h192c17.673 0 32 14.327 32 32v256c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-256c0-17.673 14.327-32 32-32z","M832 576v384h128v-384h-128zM800 512h192c17.673 0 32 14.327 32 32v448c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-448c0-17.673 14.327-32 32-32z","M384 384h-160c-27.705 0-42.319-32.814-23.785-53.407l288-320c12.712-14.124 34.859-14.124 47.571 0l288 320c18.533 20.593 3.919 53.407-23.785 53.407h-160v608c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-608zM512 79.835l-216.148 240.165h120.148c17.673 0 32 14.327 32 32v608h128v-608c0-17.673 14.327-32 32-32h120.148l-216.148-240.165z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-growth"]},"attrs":[{},{},{}],"properties":{"order":617,"id":43,"name":"chart-growth","prevSize":32,"code":59719},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M448 64v896h128v-896h-128zM416 0h192c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M64 704v256h128v-256h-128zM32 640h192c17.673 0 32 14.327 32 32v320c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-320c0-17.673 14.327-32 32-32z","M832 384v576h128v-576h-128zM800 320h192c17.673 0 32 14.327 32 32v640c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-640c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-bar"]},"attrs":[{},{},{}],"properties":{"order":618,"id":42,"name":"chart-bar","prevSize":32,"code":59720},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M64 320v640h896v-640h-896zM32 256h960c17.673 0 32 14.327 32 32v704c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-704c0-17.673 14.327-32 32-32z","M512 74.815l-266.74 237.103c-13.209 11.741-33.435 10.552-45.177-2.657s-10.552-33.435 2.657-45.177l288-256c12.124-10.777 30.395-10.777 42.519 0l288 256c13.209 11.741 14.399 31.968 2.657 45.177s-31.968 14.399-45.177 2.657l-266.74-237.103z","M288 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M288 768c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["certificate"]},"attrs":[{},{},{},{}],"properties":{"order":619,"id":41,"name":"certificate","prevSize":32,"code":59721},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M928 960c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832zM928 1024h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-stop"]},"attrs":[{}],"properties":{"order":620,"id":40,"name":"button-stop","prevSize":32,"code":59722},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M384 310.731v-214.731c0-26.105 29.573-41.226 50.736-25.942l576 416c17.686 12.773 17.686 39.11 0 51.883l-576 416c-21.162 15.284-50.736 0.163-50.736-25.942v-214.731l-333.265 240.673c-21.163 15.283-50.735 0.162-50.735-25.942v-832c0-26.104 29.572-41.225 50.735-25.942l333.265 240.673zM937.345 512l-489.345-353.416v214.728c0 26.104-29.572 41.225-50.735 25.942l-333.265-240.673v706.837l333.265-240.673c21.163-15.283 50.735-0.162 50.735 25.942v214.728l489.345-353.416z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-skip"]},"attrs":[{}],"properties":{"order":621,"id":39,"name":"button-skip","prevSize":32,"code":59723},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M86.655 512l489.345 353.416v-214.728c0-26.104 29.572-41.225 50.735-25.942l333.265 240.673v-706.837l-333.265 240.673c-21.163 15.283-50.735 0.162-50.735-25.942v-214.728l-489.345 353.416zM640 713.269v214.731c0 26.105-29.573 41.226-50.736 25.942l-576-416c-17.686-12.773-17.686-39.11 0-51.883l576-416c21.162-15.284 50.736-0.163 50.736 25.942v214.731l333.265-240.673c21.163-15.283 50.735-0.162 50.735 25.942v832c0 26.104-29.572 41.225-50.735 25.942l-333.265-240.673z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-rewind"]},"attrs":[{}],"properties":{"order":622,"id":38,"name":"button-rewind","prevSize":32,"code":59724},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448c-247.424 0-448 200.576-448 448s200.576 448 448 448z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-record"]},"attrs":[{}],"properties":{"order":623,"id":37,"name":"button-record","prevSize":32,"code":59725},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M64 89.736v844.528l675.623-422.264-675.623-422.264zM48.96 4.864l768 480c20.053 12.533 20.053 41.739 0 54.272l-768 480c-21.314 13.321-48.96-2.002-48.96-27.136v-960c0-25.134 27.646-40.457 48.96-27.136z"],"attrs":[{}],"width":832,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-play"]},"attrs":[{}],"properties":{"order":624,"id":36,"name":"button-play","prevSize":32,"code":59726},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M64 64v896h192v-896h-192zM32 0h256c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M640 64v896h192v-896h-192zM608 0h256c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z"],"attrs":[{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-pause"]},"attrs":[{},{}],"properties":{"order":625,"id":35,"name":"button-pause","prevSize":32,"code":59727},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M960 32c0-17.673 14.327-32 32-32s32 14.327 32 32v960c0 17.673-14.327 32-32 32s-32-14.327-32-32v-960z","M64 92.548v838.903l615.196-419.452-615.196-419.452zM50.027 5.561l704 480c18.631 12.703 18.631 40.176 0 52.879l-704 480c-21.242 14.483-50.027-0.73-50.027-26.439v-960c0-25.709 28.785-40.922 50.027-26.439z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["button-next"]},"attrs":[{},{}],"properties":{"order":626,"id":34,"name":"button-next","prevSize":32,"code":59728},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M477.867 34.133c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v68.267c0 18.851-15.282 34.133-34.133 34.133s-34.133-15.282-34.133-34.133v-68.267z","M825.784 149.944c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-48.265 48.265c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l48.265-48.265z","M989.867 477.867c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-68.267c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h68.267z","M874.056 825.784c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-48.265-48.265c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l48.265 48.265z","M546.133 989.867c0 18.851-15.282 34.133-34.133 34.133s-34.133-15.282-34.133-34.133v-68.267c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133v68.267z","M198.216 874.056c-13.33 13.33-34.942 13.33-48.272 0s-13.33-34.942 0-48.272l48.265-48.265c13.33-13.33 34.942-13.33 48.272 0s13.33 34.942 0 48.272l-48.265 48.265z","M34.133 546.133c-18.851 0-34.133-15.282-34.133-34.133s15.282-34.133 34.133-34.133h68.267c18.851 0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133h-68.267z","M149.944 198.216c-13.33-13.33-13.33-34.942 0-48.272s34.942-13.33 48.272 0l48.265 48.265c13.33 13.33 13.33 34.942 0 48.272s-34.942 13.33-48.272 0l-48.265-48.265z","M512 750.933c-131.959 0-238.933-106.974-238.933-238.933s106.974-238.933 238.933-238.933c131.959 0 238.933 106.974 238.933 238.933s-106.974 238.933-238.933 238.933zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brightness"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":627,"id":33,"name":"brightness","prevSize":32,"code":59729},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M64 128v128h896v-128h-896zM32 64h960c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 896v-480c0-17.673 14.327-32 32-32s32 14.327 32 32v512c0 17.673-14.327 32-32 32h-704c-17.673 0-32-14.327-32-32v-512c0-17.673 14.327-32 32-32s32 14.327 32 32v480h640z","M384 512v128h256v-128h-256zM352 448h320c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["box"]},"attrs":[{},{},{}],"properties":{"order":628,"id":32,"name":"box","prevSize":32,"code":59730},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M192 288c0-17.673 14.327-32 32-32s32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-640z","M768 288c0-17.673 14.327-32 32-32s32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-640z","M384 128v160c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32s-32-14.327-32-32v-160h-256z","M96 320c-17.673 0-32 14.327-32 32v512c0 17.673 14.327 32 32 32h832c17.673 0 32-14.327 32-32v-512c0-17.673-14.327-32-32-32h-832zM96 256h832c53.019 0 96 42.981 96 96v512c0 53.019-42.981 96-96 96h-832c-53.019 0-96-42.981-96-96v-512c-0-53.019 42.981-96 96-96z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag"]},"attrs":[{},{},{},{}],"properties":{"order":629,"id":31,"name":"bag","prevSize":32,"code":59731},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M384 544c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M320 672c70.692 0 128 57.308 128 128h-256c0-70.692 57.308-128 128-128z","M608 608c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M608 800c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M288 224c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192c-17.673 0-32 14.327-32 32v576c0 17.673 14.327 32 32 32h832c17.673 0 32-14.327 32-32v-576c0-17.673-14.327-32-32-32h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c53.019 0 96 42.981 96 96v576c0 53.019-42.981 96-96 96h-832c-53.019 0-96-42.981-96-96v-576c0-53.019 42.981-96 96-96h192z","M576 352v-192c0-35.346-28.654-64-64-64s-64 28.654-64 64v192h128zM512 32c70.692 0 128 57.308 128 128v224c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-224c0-70.692 57.308-128 128-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["badge"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":630,"id":30,"name":"badge","prevSize":32,"code":59732},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M960 224c0-17.673 14.327-32 32-32s32 14.327 32 32v704c0 53.001-42.999 96-96 96h-832c-53.001 0-96-42.999-96-96v-704c0-17.673 14.327-32 32-32s32 14.327 32 32v704c0 17.655 14.345 32 32 32h832c17.655 0 32-14.345 32-32v-704z","M640 768v-160c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-288v160c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-160h-288c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32v160h256z","M192 64v416c0 17.673-14.327 32-32 32s-32-14.327-32-32v-448c0-17.673 14.327-32 32-32h704c17.673 0 32 14.327 32 32v448c0 17.673-14.327 32-32 32s-32-14.327-32-32v-416h-640z","M352 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M352 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-paper"]},"attrs":[{},{},{},{},{}],"properties":{"order":631,"id":29,"name":"archive-paper","prevSize":32,"code":59733},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M928 960c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832zM928 1024h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96z","M640 768v-160c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-288v160c0 17.673-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32v-160h-288c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32v160h256z","M288 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M288 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-content"]},"attrs":[{},{},{},{}],"properties":{"order":632,"id":28,"name":"archive-content","prevSize":32,"code":59734},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M416 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M416 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-right"]},"attrs":[{},{},{},{}],"properties":{"order":633,"id":27,"name":"align-right","prevSize":32,"code":59735},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-left"]},"attrs":[{},{},{},{}],"properties":{"order":634,"id":26,"name":"align-left","prevSize":32,"code":59736},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M32 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-justify"]},"attrs":[{},{},{},{}],"properties":{"order":635,"id":25,"name":"align-justify","prevSize":32,"code":59737},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M32 160c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M224 416c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M32 672c-17.673 0-32-14.327-32-32s14.327-32 32-32h960c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960z","M224 928c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["align-center"]},"attrs":[{},{},{},{}],"properties":{"order":636,"id":24,"name":"align-center","prevSize":32,"code":59738},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M139.502 544.865c24.175 35.457 52.228 70.926 83.741 103.939 88.476 92.689 185.889 147.64 288.758 147.64s200.282-54.951 288.758-147.64c31.513-33.013 59.565-68.482 83.741-103.939 8.84-12.965 15.961-24.108 21.28-32.865-5.319-8.757-12.441-19.9-21.28-32.865-24.175-35.457-52.228-70.926-83.741-103.939-88.476-92.689-185.889-147.64-288.758-147.64s-200.282 54.951-288.758 147.64c-31.513 33.013-59.565 68.482-83.741 103.939-8.84 12.965-15.961 24.108-21.28 32.865 5.319 8.757 12.441 19.9 21.28 32.865zM60.362 498.379c1.528-2.801 4.359-7.745 8.456-14.528 6.721-11.13 14.627-23.485 23.681-36.764 25.825-37.876 55.772-75.741 89.593-111.172 98.191-102.866 208.777-165.249 329.909-165.249s231.718 62.382 329.909 165.249c33.821 35.431 63.768 73.296 89.593 111.172 9.054 13.279 16.96 25.634 23.681 36.764 4.096 6.783 6.928 11.727 8.456 14.528l7.429 13.621-7.429 13.621c-1.528 2.801-4.359 7.745-8.456 14.528-6.721 11.13-14.627 23.485-23.681 36.764-25.825 37.876-55.772 75.741-89.593 111.172-98.191 102.866-208.777 165.249-329.909 165.249s-231.718-62.382-329.909-165.249c-33.821-35.431-63.768-73.296-89.593-111.172-9.054-13.279-16.96-25.634-23.681-36.764-4.096-6.783-6.928-11.727-8.456-14.528l-7.429-13.621 7.429-13.621z","M512 682.667c-94.257 0-170.667-76.41-170.667-170.667s76.41-170.667 170.667-170.667c94.257 0 170.667 76.41 170.667 170.667s-76.41 170.667-170.667 170.667zM512 625.778c62.838 0 113.778-50.94 113.778-113.778s-50.94-113.778-113.778-113.778c-62.838 0-113.778 50.94-113.778 113.778s50.94 113.778 113.778 113.778z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye"]},"attrs":[{},{}],"properties":{"order":637,"id":23,"name":"eye","prevSize":32,"code":59739},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M672 512c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM672 448c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z","M1024 928c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32 0-194.404 157.596-352 352-352s352 157.596 352 352zM672 640c-148.242 0-270.324 112.002-286.242 256h572.485c-15.918-143.998-138.001-256-286.242-256z","M32 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256z","M128 416c0-17.673 14.327-32 32-32s32 14.327 32 32v256c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-27"]},"attrs":[{},{},{},{}],"properties":{"order":638,"id":22,"name":"add-27","prevSize":32,"code":59740},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M315.077 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-708.923c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v708.923z","M551.385 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-472.615c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v472.615z","M1024 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-472.615c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v472.615z","M787.692 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-708.923c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v708.923z","M78.769 984.615c0 21.752-17.633 39.385-39.385 39.385s-39.385-17.633-39.385-39.385v-945.231c0-21.752 17.633-39.385 39.385-39.385s39.385 17.633 39.385 39.385v945.231z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["analytics"]},"attrs":[{},{},{},{},{}],"properties":{"order":639,"id":21,"name":"analytics","prevSize":32,"code":59741},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M960 128c0-17.673 14.327-32 32-32s32 14.327 32 32v800c0 53.001-42.999 96-96 96h-832c-53.001 0-96-42.999-96-96v-800c0-17.673 14.327-32 32-32s32 14.327 32 32v800c0 17.655 14.345 32 32 32h832c17.655 0 32-14.345 32-32v-800z","M704 416c0-17.673 14.327-32 32-32s32 14.327 32 32c0 141.385-114.615 256-256 256s-256-114.615-256-256c0-17.673 14.327-32 32-32s32 14.327 32 32c0 106.039 85.961 192 192 192s192-85.961 192-192z","M896 192c35.319 0 64-28.681 64-64s-28.681-64-64-64h-768c-35.319 0-64 28.681-64 64s28.681 64 64 64h768zM896 256h-768c-70.665 0-128-57.335-128-128s57.335-128 128-128h768c70.665 0 128 57.335 128 128s-57.335 128-128 128z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bag-17"]},"attrs":[{},{},{}],"properties":{"order":640,"id":20,"name":"bag-17","prevSize":32,"code":59742},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M224 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M736 704c-17.673 0-32-14.327-32-32s14.327-32 32-32h64c17.673 0 32 14.327 32 32s-14.327 32-32 32h-64z","M992 384c17.673 0 32 14.327 32 32s-14.327 32-32 32h-960c-17.673 0-32-14.327-32-32s14.327-32 32-32h960z","M928 832c17.655 0 32-14.345 32-32v-576c0-17.655-14.345-32-32-32h-832c-17.655 0-32 14.345-32 32v576c0 17.655 14.345 32 32 32h832zM928 896h-832c-53.001 0-96-42.999-96-96v-576c0-53.001 42.999-96 96-96h832c53.001 0 96 42.999 96 96v576c0 53.001-42.999 96-96 96z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["credit-card"]},"attrs":[{},{},{},{}],"properties":{"order":641,"id":19,"name":"credit-card","prevSize":32,"code":59743},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M92.939 548.973c27.197 39.889 58.757 79.792 94.208 116.932 99.535 104.275 209.125 166.095 324.853 166.095s225.317-61.82 324.853-166.095c35.452-37.14 67.011-77.042 94.208-116.932 9.945-14.586 17.956-27.122 23.94-36.973-5.984-9.851-13.996-22.388-23.94-36.973-27.197-39.889-58.757-79.792-94.208-116.932-99.535-104.275-209.125-166.095-324.853-166.095s-225.317 61.82-324.853 166.095c-35.452 37.14-67.011 77.042-94.208 116.932-9.945 14.586-17.956 27.122-23.94 36.973 5.984 9.851 13.996 22.388 23.94 36.973zM3.907 496.677c1.719-3.151 4.904-8.713 9.513-16.344 7.561-12.521 16.455-26.421 26.641-41.36 29.053-42.611 62.743-85.208 100.792-125.068 110.465-115.725 234.875-185.905 371.147-185.905s260.683 70.18 371.147 185.905c38.048 39.86 71.739 82.458 100.792 125.068 10.185 14.939 19.080 28.839 26.641 41.36 4.609 7.631 7.794 13.193 9.513 16.344 5.21 9.551 5.21 21.095 0 30.647-1.719 3.151-4.904 8.713-9.513 16.344-7.561 12.521-16.455 26.421-26.641 41.36-29.053 42.611-62.743 85.208-100.792 125.068-110.465 115.725-234.875 185.905-371.147 185.905s-260.683-70.18-371.147-185.905c-38.048-39.86-71.739-82.458-100.792-125.068-10.185-14.939-19.080-28.839-26.641-41.36-4.609-7.631-7.794-13.193-9.513-16.344-5.21-9.551-5.21-21.095 0-30.647z","M512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye-17"]},"attrs":[{},{}],"properties":{"order":642,"id":18,"name":"eye-17","prevSize":32,"code":59744},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M64 64v128h128v-128h-128zM32 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 64v128h128v-128h-128zM416 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 64v128h128v-128h-128zM800 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 448v128h128v-128h-128zM32 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 448v128h128v-128h-128zM416 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 448v128h128v-128h-128zM800 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 832v128h128v-128h-128zM32 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 832v128h128v-128h-128zM416 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 832v128h128v-128h-128zM800 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-48"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":643,"id":17,"name":"grid-48","prevSize":32,"code":59745},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M256 256v128h128v-128h-128zM224 192h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M640 256v128h128v-128h-128zM608 192h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M256 640v128h128v-128h-128zM224 576h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M640 640v128h128v-128h-128zM608 576h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M96 64c-17.655 0-32 14.345-32 32v832c0 17.655 14.345 32 32 32h832c17.655 0 32-14.345 32-32v-832c0-17.655-14.345-32-32-32h-832zM96 0h832c53.001 0 96 42.999 96 96v832c0 53.001-42.999 96-96 96h-832c-53.001 0-96-42.999-96-96v-832c0-53.001 42.999-96 96-96z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-square"]},"attrs":[{},{},{},{},{}],"properties":{"order":644,"id":16,"name":"grid-square","prevSize":32,"code":59746},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M939.335 555.9l-404.992 395.008c-12.428 12.122-32.255 12.123-44.685 0.002l-405.342-395.29c-112.465-112.465-112.465-294.838 0-407.303s294.838-112.465 407.262-0.040c7.294 7.268 14.051 14.957 20.431 23.191 6.345-8.187 13.064-15.844 20.307-23.087 112.464-112.464 294.834-112.465 407.299-0.004 112.535 112.467 112.534 294.784-0.281 407.523zM511.998 883.301l382.373-372.944c87.526-87.47 87.526-229.245 0-316.715-87.478-87.478-229.329-87.478-316.8-0.007-13.998 13.998-25.819 30.712-37.459 52.116-12.118 22.283-44.106 22.283-56.224 0-11.701-21.517-23.5-38.207-37.523-52.18-87.471-87.471-229.322-87.471-316.793 0s-87.471 229.322-0.286 316.511l382.713 373.219z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-2"]},"attrs":[{}],"properties":{"order":645,"id":15,"name":"heart-2","prevSize":32,"code":59747},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M416 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 576c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M416 896c-17.673 0-32-14.327-32-32s14.327-32 32-32h576c17.673 0 32 14.327 32 32s-14.327 32-32 32h-576z","M128 320c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM128 256c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M128 640c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM128 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M128 960c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM128 896c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["list-bullet"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":646,"id":14,"name":"list-bullet","prevSize":32,"code":59748},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M384 320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-53.001 42.999-96 96-96h512c53.001 0 96 42.999 96 96v768c0 53.001-42.999 96-96 96h-512c-53.001 0-96-42.999-96-96v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v192c0 17.655 14.345 32 32 32h512c17.655 0 32-14.345 32-32v-768c0-17.655-14.345-32-32-32h-512c-17.655 0-32 14.345-32 32v192z","M32 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h704c17.673 0 32 14.327 32 32s-14.327 32-32 32h-704z","M690.745 512l-169.373-169.373c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192c12.497 12.497 12.497 32.758 0 45.255l-192 192c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l169.373-169.373z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["log-in"]},"attrs":[{},{},{}],"properties":{"order":647,"id":13,"name":"log-in","prevSize":32,"code":59749},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M448 320c0 17.673-14.327 32-32 32s-32-14.327-32-32v-192c0-53.001 42.999-96 96-96h448c53.001 0 96 42.999 96 96v768c0 53.001-42.999 96-96 96h-448c-53.001 0-96-42.999-96-96v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v192c0 17.655 14.345 32 32 32h448c17.655 0 32-14.345 32-32v-768c0-17.655-14.345-32-32-32h-448c-17.655 0-32 14.345-32 32v192z","M736 480c17.673 0 32 14.327 32 32s-14.327 32-32 32h-704c-17.673 0-32-14.327-32-32s14.327-32 32-32h704z","M246.627 681.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255l192-192c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-169.373 169.373 169.373 169.373z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["log-out"]},"attrs":[{},{},{}],"properties":{"order":648,"id":12,"name":"log-out","prevSize":32,"code":59750},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M109.255 512l457.373 457.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-480-480c-12.497-12.497-12.497-32.758 0-45.255l480-480c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-457.373 457.373z"],"attrs":[{}],"width":576,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-left"]},"attrs":[{}],"properties":{"order":649,"id":11,"name":"minimal-left","prevSize":32,"code":59751},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M9.373 54.627c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l480 480c12.497 12.497 12.497 32.758 0 45.255l-480 480c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.758 0-45.255l457.373-457.373-457.373-457.373z"],"attrs":[{}],"width":576,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minimal-right"]},"attrs":[{}],"properties":{"order":650,"id":10,"name":"minimal-right","prevSize":32,"code":59752},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M64 576v288c0 53.047 42.953 96 96 96s96-42.953 96-96v-288h-192zM160 1024c-88.393 0-160-71.607-160-160v-320c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32v320c0 88.393-71.607 160-160 160z","M320 64v480c0 17.673-14.327 32-32 32s-32-14.327-32-32v-512c0-17.673 14.327-32 32-32h704c17.673 0 32 14.327 32 32v832c0 88.393-71.607 160-160 160h-704c-17.673 0-32-14.327-32-32s14.327-32 32-32h704c53.047 0 96-42.953 96-96v-800h-640z","M480 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M480 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M480 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320z","M480 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paper-2"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":651,"id":9,"name":"paper-2","prevSize":32,"code":59753},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M415.875 915.381c40.456-42.295 80.922-89.015 118.63-138.721 84.064-110.811 141.911-219.832 161.917-319.861 5.020-25.102 7.577-49.389 7.577-72.799 0-176.731-143.269-320-320-320s-320 143.269-320 320c0 23.409 2.557 47.697 7.577 72.799 20.006 100.029 77.853 209.050 161.917 319.861 37.708 49.706 78.175 96.426 118.63 138.721 11.346 11.862 22.031 22.678 31.875 32.358 9.845-9.68 20.529-20.496 31.875-32.358zM768 384c0 27.764-2.997 56.237-8.82 85.35-22.242 111.21-84.295 228.157-173.686 345.99-39.292 51.794-81.325 100.324-123.37 144.279-14.732 15.401-28.428 29.146-40.749 41.066-7.464 7.221-12.861 12.275-15.85 14.993-12.205 11.096-30.846 11.096-43.051 0-2.989-2.718-8.387-7.772-15.85-14.993-12.32-11.92-26.017-25.665-40.749-41.066-42.044-43.955-84.078-92.485-123.37-144.279-89.391-117.833-151.444-234.78-173.686-345.99-5.823-29.113-8.82-57.586-8.82-85.35 0-212.077 171.923-384 384-384s384 171.923 384 384z","M384 576c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM384 512c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z"],"attrs":[{},{}],"width":768,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin-3"]},"attrs":[{},{}],"properties":{"order":652,"id":8,"name":"pin-3","prevSize":32,"code":59754},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M256 288c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256c0-17.673 14.327-32 32-32s32 14.327 32 32v256z","M256 992c0 17.673-14.327 32-32 32s-32-14.327-32-32v-128c0-17.673 14.327-32 32-32s32 14.327 32 32v128z","M768 736c0-17.673 14.327-32 32-32s32 14.327 32 32v256c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256z","M768 32c0-17.673 14.327-32 32-32s32 14.327 32 32v128c0 17.673-14.327 32-32 32s-32-14.327-32-32v-128z","M224 896c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM224 832c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z","M800 576c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM800 512c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["preferences-circle-rotate"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":653,"id":7,"name":"preferences-circle-rotate","prevSize":32,"code":59755},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M256 352c0-17.673 14.327-32 32-32s32 14.327 32 32v640c0 17.673-14.327 32-32 32s-32-14.327-32-32v-640z","M192 256c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM192 192c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M608 320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-512c-17.673 0-32 14.327-32 32v576c0 17.673-14.327 32-32 32s-32-14.327-32-32v-576c0-53.019 42.981-96 96-96h512z","M960 192h-480c-17.673 0-32-14.327-32-32s14.327-32 32-32h512c17.673 0 32 14.327 32 32v576c0 17.673-14.327 32-32 32h-512c-17.673 0-32-14.327-32-32s14.327-32 32-32h480v-512z","M643.378 750.311c-7.904-15.807-1.496-35.029 14.311-42.933s35.029-1.496 42.933 14.311l128 256c7.904 15.807 1.496 35.029-14.311 42.933s-35.029 1.496-42.933-14.311l-128-256z","M576 32c0-17.673 14.327-32 32-32s32 14.327 32 32v128c0 17.673-14.327 32-32 32s-32-14.327-32-32v-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["presentation"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":654,"id":6,"name":"presentation","prevSize":32,"code":59756},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M32 224c-17.673 0-32-14.327-32-32s14.327-32 32-32h608c17.673 0 32 14.327 32 32s-14.327 32-32 32h-608z","M992 160c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32h128z","M32 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M352 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h640c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640z","M32 864c-17.673 0-32-14.327-32-32s14.327-32 32-32h640c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640z","M864 864c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["segmentation"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":655,"id":5,"name":"segmentation","prevSize":32,"code":59757},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M64 64v128h128v-128h-128zM32 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 64v128h128v-128h-128zM416 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 448v128h128v-128h-128zM32 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M64 832v128h128v-128h-128zM32 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 448v128h128v-128h-128zM416 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M448 832v128h128v-128h-128zM416 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 64v128h128v-128h-128zM800 0h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 448v128h128v-128h-128zM800 384h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z","M832 832v128h128v-128h-128zM800 768h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["selection"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":656,"id":4,"name":"selection","prevSize":32,"code":59758},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z","M896 512c0 23.255-2.277 46.542-6.676 70.034l102.486 59.182c15.304 8.837 20.547 28.407 11.71 43.712l-96 166.272c-8.836 15.304-28.405 20.548-43.71 11.714l-102.398-59.108c-35.759 30.519-76.835 54.275-121.349 70.010v118.184c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-118.226c-44.551-15.709-85.659-39.476-121.375-70.017l-102.371 59.093c-15.305 8.835-34.874 3.591-43.71-11.714l-96-166.272c-8.836-15.304-3.594-34.874 11.71-43.712l102.411-59.139c-4.436-23.379-6.728-46.693-6.728-70.014 0-23.354 2.289-46.64 6.727-70.015l-102.409-59.138c-15.304-8.837-20.547-28.407-11.71-43.712l96-166.272c8.838-15.307 28.411-20.55 43.717-11.71l102.318 59.093c35.736-30.529 76.835-54.305 121.358-70.056v-118.191c0-17.673 14.327-32 32-32h192c17.673 0 32 14.327 32 32v118.226c44.55 15.709 85.656 39.474 121.371 70.013l102.305-59.086c15.306-8.84 34.879-3.597 43.717 11.71l96 166.272c8.836 15.304 3.594 34.874-11.71 43.712l-102.409 59.138c4.438 23.375 6.727 46.661 6.727 70.015zM837.118 625.791c-12.324-7.116-18.467-21.516-15.076-35.337 6.565-26.755 9.958-52.77 9.958-78.454 0-25.829-3.417-51.772-10.048-78.238-3.473-13.86 2.664-28.344 15.038-35.49l94.979-54.847-63.998-110.845-94.846 54.778c-12.398 7.16-28.043 5.214-38.309-4.765-37.857-36.799-84.336-63.717-135.51-78.166-13.785-3.892-23.305-16.472-23.305-30.796v-109.632h-128v109.568c0 14.309-9.499 26.878-23.264 30.784-51.161 14.519-97.654 41.46-135.569 78.259-10.267 9.965-25.901 11.903-38.291 4.747l-94.846-54.778-63.998 110.845 94.979 54.847c12.374 7.146 18.511 21.629 15.038 35.49-6.632 26.466-10.048 52.408-10.048 78.238 0 25.79 3.424 51.8 10.048 78.238 3.473 13.86-2.664 28.344-15.038 35.49l-94.979 54.847 64.002 110.851 94.912-54.788c12.397-7.156 28.038-5.209 38.302 4.768 37.857 36.799 84.336 63.717 135.51 78.166 13.785 3.892 23.305 16.472 23.305 30.796v109.632h128v-109.568c0-14.312 9.503-26.884 23.273-30.787 51.151-14.499 97.601-41.409 135.579-78.21 10.266-9.948 25.885-11.88 38.266-4.733l94.912 54.788 64.002-110.851-94.979-54.847z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["settings-gear-65"]},"attrs":[{},{}],"properties":{"order":657,"id":3,"name":"settings-gear-65","prevSize":32,"code":59759},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M64 64v896h768v-896h-768zM32 0h832c17.673 0 32 14.327 32 32v960c0 17.673-14.327 32-32 32h-832c-17.673 0-32-14.327-32-32v-960c0-17.673 14.327-32 32-32z","M544 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M544 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h128c17.673 0 32 14.327 32 32s-14.327 32-32 32h-128z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M256 256v128h128v-128h-128zM224 192h192c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32h-192c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32z"],"attrs":[{},{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["single-paragraph"]},"attrs":[{},{},{},{},{},{}],"properties":{"order":658,"id":2,"name":"single-paragraph","prevSize":32,"code":59760},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M224 256c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 448c-17.673 0-32-14.327-32-32s14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448z","M224 640c-17.673 0-32-14.327-32-32s14.327-32 32-32h192c17.673 0 32 14.327 32 32s-14.327 32-32 32h-192z","M96 64c-17.673 0-32 14.327-32 32v832c0 17.673 14.327 32 32 32h704c17.673 0 32-14.327 32-32v-832c0-17.673-14.327-32-32-32h-704zM96 0h704c53.019-0 96 42.981 96 96v832c0 53.019-42.981 96-96 96h-704c-53.019 0-96-42.981-96-96v-832c-0-53.019 42.981-96 96-96z","M32 832c-17.673 0-32-14.327-32-32s14.327-32 32-32h832c17.673 0 32 14.327 32 32s-14.327 32-32 32h-832z"],"attrs":[{},{},{},{},{}],"width":896,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-reader-31"]},"attrs":[{},{},{},{},{}],"properties":{"order":659,"id":1,"name":"tablet-reader-31","prevSize":32,"code":59761},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M1014.627 969.373c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l192 192z","M416 832c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM416 768c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zoom-split"]},"attrs":[{},{}],"properties":{"order":660,"id":0,"name":"zoom-split","prevSize":32,"code":59762},"setIdx":0,"setId":0,"iconIdx":114}],"height":1024,"metadata":{"name":"galio"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"galio","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"showSelector":false,"showMetrics":false,"showMetadata":false,"includeMetadata":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16,"showGrid":false,"showLiga":false}} ================================================ FILE: package.json ================================================ { "name": "@galio-org/galio", "main": "expo-router/entry", "version": "1.0.0", "repository": { "type": "git", "url": "https://github.com/galio-org/galio-starter-kit.git" }, "author": "", "license": "MIT", "bugs": { "url": "https://github.com/galio-org/galio-starter-kit/issues" }, "homepage": "https://galio.io/", "keywords": [ "android", "ios", "react native", "component library", "ui kit", "bootstrap" ], "scripts": { "start": "expo start", "reset-project": "node ./scripts/reset-project.js", "android": "expo start --android", "ios": "expo start --ios", "web": "expo start --web", "lint": "expo lint" }, "dependencies": { "@expo/vector-icons": "^14.1.0", "@react-native-vector-icons/fontisto": "^12.3.0", "@react-navigation/bottom-tabs": "^7.3.10", "@react-navigation/drawer": "^7.5.6", "@react-navigation/elements": "^2.3.8", "@react-navigation/native": "^7.1.6", "d3-shape": "^3.2.0", "expo": "^54.0.2", "expo-blur": "~14.1.5", "expo-constants": "~17.1.7", "expo-font": "~13.3.2", "expo-haptics": "~14.1.4", "expo-image": "~2.4.0", "expo-linear-gradient": "~14.1.5", "expo-linking": "~7.1.7", "expo-router": "~5.1.4", "expo-splash-screen": "~0.30.10", "expo-status-bar": "~2.2.3", "expo-symbols": "~0.4.5", "expo-system-ui": "~5.0.10", "expo-web-browser": "~14.2.0", "galio-framework": "^0.9.4", "react": "19.0.0", "react-dom": "19.0.0", "react-native": "0.79.5", "react-native-chart-kit": "^6.12.0", "react-native-gesture-handler": "~2.24.0", "react-native-reanimated": "~3.17.4", "react-native-safe-area-context": "5.4.0", "react-native-screens": "~4.11.1", "react-native-svg": "15.11.2", "react-native-web": "~0.20.0", "react-native-webview": "13.13.5" }, "devDependencies": { "@babel/core": "^7.25.2", "@types/react": "~19.0.10", "eslint": "^9.25.0", "eslint-config-expo": "~9.2.0", "typescript": "~5.8.3" }, "private": true } ================================================ FILE: tsconfig.json ================================================ { "compilerOptions": { "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "target": "es2017", "lib": [ "es2017" ], "allowJs": true, "skipLibCheck": true, "noEmit": true, "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "react-native" }, "extends": "expo/tsconfig.base", "include": [ "**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts" ], "exclude": [ "node_modules" ] }