网络货运

main
dongmu 5 months ago
parent e50fdc3a77
commit 9e8a9ce993

@ -0,0 +1,22 @@
# 告诉EditorConfig插件这是根文件不用继续往上查找
root = true
# 匹配全部文件
[*]
# 设置字符集
charset = utf-8
# 缩进风格可选space、tab
indent_style = space
# 缩进的空格数
indent_size = 2
# 结尾换行符可选lf、cr、crlf
end_of_line = lf
# 在文件结尾插入新行
insert_final_newline = true
# 删除一行中的前后空格
trim_trailing_whitespace = true
# 匹配md结尾的文件
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

@ -0,0 +1,27 @@
# 页面标题
VUE_APP_TITLE = 鸿运运
# 开发环境配置
ENV = 'development'
# 鸿运运/开发环境
VUE_APP_BASE_API = ''
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
# 代理地址 - 请求地址
# VUE_API_TARGET = "http://localhost:8080/"
VUE_API_TARGET = "http://192.168.111.244:8080/"
# VUE_API_TARGET = "http://112.112.149.149:8088/"
# 腾讯地图key值
VUE_APP_KEY = "MNMBZ-N2XW3-DVH3Q-OQZUH-CIET2-52FQZ"
# 文件服务器地址
VUE_APP_PRO_API = "http://112.112.149.149:19005/"
# 开启加解密 - 如果等于encrypt那么属于开发加密
# VUE_APP_ENCRYPT = 'encrypt'
VUE_APP_ENCRYPT = ''

@ -0,0 +1,24 @@
# 页面标题
VUE_APP_TITLE = 鸿运运
# 生产环境配置
ENV = 'production'
# 鸿运运/生产环境
VUE_APP_BASE_API = '/prod-api'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
# 腾讯地图key值
VUE_APP_KEY = "MNMBZ-N2XW3-DVH3Q-OQZUH-CIET2-52FQZ"
# 代理地址 - 请求地址
# VUE_API_TARGET = "http://112.112.149.146:18010/"
VUE_API_TARGET = "https://hongsentong.com/"
# 文件服务器地址
VUE_APP_PRO_API = "https://hongsentong.com/minio/"
# 开启加解密 - 如果等于encrypt那么属于开发加密
VUE_APP_ENCRYPT = ''

@ -0,0 +1,23 @@
# 页面标题
VUE_APP_TITLE = 鸿运运
# 生产环境配置
ENV = 'staging'
# 鸿运运/测试环境
VUE_APP_BASE_API = 'dev-api'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
# 腾讯地图key值
VUE_APP_KEY = "MNMBZ-N2XW3-DVH3Q-OQZUH-CIET2-52FQZ"
# 代理地址 - 请求地址
VUE_API_TARGET = "http://112.112.149.149:8888/"
# 文件服务器地址
VUE_APP_PRO_API = "http://112.112.149.149:19005/"
# 开启加解密 - 如果等于encrypt那么属于开发加密
VUE_APP_ENCRYPT = ''

@ -0,0 +1,10 @@
# 忽略build目录下类型为js的文件的语法检查
build/*.js
# 忽略src/assets目录下文件的语法检查
src/assets
# 忽略public目录下文件的语法检查
public
# 忽略当前目录下为js的文件的语法检查
*.js
# 忽略当前目录下为vue的文件的语法检查
*.vue

@ -0,0 +1,199 @@
// ESlint 检查配置
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: {
browser: true,
node: true,
es6: true,
},
extends: ['plugin:vue/recommended', 'eslint:recommended'],
// add your custom rules here
//it is base on https://github.com/vuejs/eslint-config-vue
rules: {
"vue/max-attributes-per-line": [2, {
"singleline": 10,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}],
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline":"off",
"vue/name-property-casing": ["error", "PascalCase"],
"vue/no-v-html": "off",
'accessor-pairs': 2,
'arrow-spacing': [2, {
'before': true,
'after': true
}],
'block-spacing': [2, 'always'],
'brace-style': [2, '1tbs', {
'allowSingleLine': true
}],
'camelcase': [0, {
'properties': 'always'
}],
'comma-dangle': [2, 'never'],
'comma-spacing': [2, {
'before': false,
'after': true
}],
'comma-style': [2, 'last'],
'constructor-super': 2,
'curly': [2, 'multi-line'],
'dot-location': [2, 'property'],
'eol-last': 2,
'eqeqeq': ["error", "always", {"null": "ignore"}],
'generator-star-spacing': [2, {
'before': true,
'after': true
}],
'handle-callback-err': [2, '^(err|error)$'],
'indent': [2, 2, {
'SwitchCase': 1
}],
'jsx-quotes': [2, 'prefer-single'],
'key-spacing': [2, {
'beforeColon': false,
'afterColon': true
}],
'keyword-spacing': [2, {
'before': true,
'after': true
}],
'new-cap': [2, {
'newIsCap': true,
'capIsNew': false
}],
'new-parens': 2,
'no-array-constructor': 2,
'no-caller': 2,
'no-console': 'off',
'no-class-assign': 2,
'no-cond-assign': 2,
'no-const-assign': 2,
'no-control-regex': 0,
'no-delete-var': 2,
'no-dupe-args': 2,
'no-dupe-class-members': 2,
'no-dupe-keys': 2,
'no-duplicate-case': 2,
'no-empty-character-class': 2,
'no-empty-pattern': 2,
'no-eval': 2,
'no-ex-assign': 2,
'no-extend-native': 2,
'no-extra-bind': 2,
'no-extra-boolean-cast': 2,
'no-extra-parens': [2, 'functions'],
'no-fallthrough': 2,
'no-floating-decimal': 2,
'no-func-assign': 2,
'no-implied-eval': 2,
'no-inner-declarations': [2, 'functions'],
'no-invalid-regexp': 2,
'no-irregular-whitespace': 2,
'no-iterator': 2,
'no-label-var': 2,
'no-labels': [2, {
'allowLoop': false,
'allowSwitch': false
}],
'no-lone-blocks': 2,
'no-mixed-spaces-and-tabs': 2,
'no-multi-spaces': 2,
'no-multi-str': 2,
'no-multiple-empty-lines': [2, {
'max': 1
}],
'no-native-reassign': 2,
'no-negated-in-lhs': 2,
'no-new-object': 2,
'no-new-require': 2,
'no-new-symbol': 2,
'no-new-wrappers': 2,
'no-obj-calls': 2,
'no-octal': 2,
'no-octal-escape': 2,
'no-path-concat': 2,
'no-proto': 2,
'no-redeclare': 2,
'no-regex-spaces': 2,
'no-return-assign': [2, 'except-parens'],
'no-self-assign': 2,
'no-self-compare': 2,
'no-sequences': 2,
'no-shadow-restricted-names': 2,
'no-spaced-func': 2,
'no-sparse-arrays': 2,
'no-this-before-super': 2,
'no-throw-literal': 2,
'no-trailing-spaces': 2,
'no-undef': 2,
'no-undef-init': 2,
'no-unexpected-multiline': 2,
'no-unmodified-loop-condition': 2,
'no-unneeded-ternary': [2, {
'defaultAssignment': false
}],
'no-unreachable': 2,
'no-unsafe-finally': 2,
'no-unused-vars': [2, {
'vars': 'all',
'args': 'none'
}],
'no-useless-call': 2,
'no-useless-computed-key': 2,
'no-useless-constructor': 2,
'no-useless-escape': 0,
'no-whitespace-before-property': 2,
'no-with': 2,
'one-var': [2, {
'initialized': 'never'
}],
'operator-linebreak': [2, 'after', {
'overrides': {
'?': 'before',
':': 'before'
}
}],
'padded-blocks': [2, 'never'],
'quotes': [2, 'single', {
'avoidEscape': true,
'allowTemplateLiterals': true
}],
'semi': [2, 'never'],
'semi-spacing': [2, {
'before': false,
'after': true
}],
'space-before-blocks': [2, 'always'],
'space-before-function-paren': [2, 'never'],
'space-in-parens': [2, 'never'],
'space-infix-ops': 2,
'space-unary-ops': [2, {
'words': true,
'nonwords': false
}],
'spaced-comment': [2, 'always', {
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
}],
'template-curly-spacing': [2, 'never'],
'use-isnan': 2,
'valid-typeof': 2,
'wrap-iife': [2, 'any'],
'yield-star-spacing': [2, 'both'],
'yoda': [2, 'never'],
'prefer-const': 2,
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'object-curly-spacing': [2, 'always', {
objectsInObjects: false
}],
'array-bracket-spacing': [2, 'never']
}
}

23
.gitignore vendored

@ -0,0 +1,23 @@
.DS_Store
node_modules/
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
**/*.log
tests/**/coverage/
tests/e2e/reports
selenium-debug.log
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.local
package-lock.json
yarn.lock

@ -0,0 +1,13 @@
module.exports = {
presets: [
// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
'@vue/cli-plugin-babel/preset'
],
'env': {
'development': {
// babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require().
// This plugin can significantly increase the speed of hot updates, when you have a large number of pages.
'plugins': ['dynamic-import-node']
}
}
}

@ -0,0 +1,12 @@
@echo off
echo.
echo [信息] 打包Web工程生成dist文件。
echo.
%~d0
cd %~dp0
cd ..
npm run build:prod
pause

@ -0,0 +1,12 @@
@echo off
echo.
echo [信息] 安装Web工程生成node_modules文件。
echo.
%~d0
cd %~dp0
cd ..
npm install --registry=https://registry.npmmirror.com
pause

@ -0,0 +1,12 @@
@echo off
echo.
echo [信息] 使用 Vue CLI 命令运行 Web 工程。
echo.
%~d0
cd %~dp0
cd ..
npm run dev
pause

@ -0,0 +1,35 @@
const { run } = require('runjs')
const chalk = require('chalk')
const config = require('../vue.config.js')
const rawArgv = process.argv.slice(2)
const args = rawArgv.join(' ')
if (process.env.npm_config_preview || rawArgv.includes('--preview')) {
const report = rawArgv.includes('--report')
run(`vue-cli-service build ${args}`)
const port = 9526
const publicPath = config.publicPath
var connect = require('connect')
var serveStatic = require('serve-static')
const app = connect()
app.use(
publicPath,
serveStatic('./dist', {
index: ['index.html', '/']
})
)
app.listen(port, function () {
console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`))
if (report) {
console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`))
}
})
} else {
run(`vue-cli-service build ${args}`)
}

@ -0,0 +1,3 @@
{
"include": ["./src/*", "src/directive/permission/checkPermi.js"]
}

@ -0,0 +1,106 @@
{
"name": "hhkj",
"version": "3.6.2",
"description": "鸿运运",
"author": "鸿晖科技",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"keywords": [
"vue",
"admin",
"dashboard",
"element-ui",
"boilerplate",
"admin-template",
"management-system"
],
"repository": {
"type": "git",
"url": "https://gitee.com/y_project/RuoYi-Cloud.git"
},
"dependencies": {
"@riophae/vue-treeselect": "0.4.0",
"axios": "0.24.0",
"clipboard": "2.0.8",
"core-js": "3.25.3",
"crypto-js": "^4.2.0",
"echarts": "^5.4.0",
"element-china-area-data": "^5.0.2",
"element-ui": "2.15.12",
"encryptlong": "^3.1.4",
"encryptlong-telen": "^3.1.4",
"file-saver": "^2.0.5",
"fuse.js": "6.4.3",
"highlight.js": "9.18.5",
"html2canvas": "^1.4.1",
"js-beautify": "1.13.0",
"jsbarcode": "^3.11.5",
"jsencrypt": "3.0.0-rc.1",
"kr-print-designer": "^1.1.8",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nprogress": "0.2.0",
"qrcodejs2": "^0.0.2",
"quill": "1.3.7",
"screenfull": "5.0.2",
"sortablejs": "1.10.2",
"vue": "2.6.12",
"vue-count-to": "1.0.13",
"vue-cropper": "0.5.5",
"vue-json-excel": "^0.3.0",
"vue-jsonp": "^2.0.0",
"vue-meta": "2.4.0",
"vue-print-nb": "^1.7.5",
"vue-router": "3.4.9",
"vuedraggable": "2.24.3",
"vuex": "3.6.0",
"xlsx": "^0.18.5",
"xlsx-style": "^0.8.13"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.4.6",
"@vue/cli-plugin-eslint": "4.4.6",
"@vue/cli-service": "4.4.6",
"babel-eslint": "10.1.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"chalk": "4.1.0",
"compression-webpack-plugin": "5.0.2",
"connect": "3.6.6",
"eslint": "7.15.0",
"eslint-plugin-vue": "7.2.0",
"js-cookie": "^3.0.1",
"lint-staged": "10.5.3",
"runjs": "4.4.2",
"sass": "1.32.13",
"sass-loader": "^10.1.1",
"script-ext-html-webpack-plugin": "2.1.5",
"script-loader": "^0.7.2",
"svg-sprite-loader": "5.1.1",
"vue-template-compiler": "2.6.12"
},
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

@ -0,0 +1,218 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<title><%= webpackConfig.name %></title>
<!--引入地图定位-->
<script src="https://map.qq.com/api/gljs?v=1.exp&key=MNMBZ-N2XW3-DVH3Q-OQZUH-CIET2-52FQZ"></script>
<script src="https://lbs.qq.com/webApi/javascriptGL/glDoc/glDocVector"></script>
<script></script>
<!--[if lt IE 11
]><script>
window.location.href = "/html/ie.html";
</script><!
[endif]-->
<style>
html,
body,
#app {
height: 100%;
margin: 0px;
padding: 0px;
}
.chromeframe {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
#loader-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 999999;
}
#loader {
display: block;
position: relative;
left: 50%;
top: 50%;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #fff;
-webkit-animation: spin 2s linear infinite;
-ms-animation: spin 2s linear infinite;
-moz-animation: spin 2s linear infinite;
-o-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
z-index: 1001;
}
#loader:before {
content: "";
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #fff;
-webkit-animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
-o-animation: spin 3s linear infinite;
-ms-animation: spin 3s linear infinite;
animation: spin 3s linear infinite;
}
#loader:after {
content: "";
position: absolute;
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #fff;
-moz-animation: spin 1.5s linear infinite;
-o-animation: spin 1.5s linear infinite;
-ms-animation: spin 1.5s linear infinite;
-webkit-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#loader-wrapper .loader-section {
position: fixed;
top: 0;
width: 51%;
height: 100%;
background: #7171c6;
z-index: 1000;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
left: 0;
}
#loader-wrapper .loader-section.section-right {
right: 0;
}
.loaded #loader-wrapper .loader-section.section-left {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
opacity: 0;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
visibility: hidden;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: all 0.3s 1s ease-out;
transition: all 0.3s 1s ease-out;
}
.no-js #loader-wrapper {
display: none;
}
.no-js h1 {
color: #222222;
}
#loader-wrapper .load_title {
font-family: "Open Sans";
color: #fff;
font-size: 19px;
width: 100%;
text-align: center;
z-index: 9999999999999;
position: absolute;
top: 60%;
opacity: 1;
line-height: 30px;
}
#loader-wrapper .load_title span {
font-weight: normal;
font-style: italic;
font-size: 13px;
color: #fff;
opacity: 0.5;
}
</style>
</head>
<!-- <script charset="utf-8" src="https://map.qq.com/api/gljs?v=1.exp&key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77&libraries=geometry"></script> -->
<body>
<div id="app">
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
<div class="load_title">正在加载系统资源,请耐心等待</div>
</div>
</div>
</body>
</html>

@ -0,0 +1,2 @@
User-agent: *
Disallow: /

@ -0,0 +1,32 @@
<template>
<div id="app">
<router-view />
<theme-picker />
</div>
</template>
<script>
import ThemePicker from "@/components/ThemePicker";
export default {
name: "App",
components: { ThemePicker },
metaInfo() {
return {
title:
this.$store.state.settings.dynamicTitle &&
this.$store.state.settings.title,
titleTemplate: (title) => {
return title
? `${title} - ${process.env.VUE_APP_TITLE}`
: process.env.VUE_APP_TITLE;
},
};
},
};
</script>
<style scoped>
#app .theme-picker {
display: none;
}
</style>

@ -0,0 +1,17 @@
import request from "@/utils/request";
// web端首页信息查询
export function webHome(query) {
return request({
url: `/system/webHome`,
method: "get",
params: query,
});
}
// 查询企业待接单列表
export function PendingOrderList(deptId) {
return request({
url: `/order/wlPresetsOrder/query/PendingOrderList/${deptId}`,
method: "get",
});
}

@ -0,0 +1,76 @@
import request from "@/utils/request";
// 登录方法
export function login(username, password, code, uuid) {
return request({
url: "/auth/login",
headers: {
isToken: false,
},
method: "post",
data: { username, password, code, uuid },
});
}
// 注册方法
export function register(data) {
return request({
url: "/auth/register",
headers: {
isToken: false,
},
method: "post",
data: data,
});
}
// 刷新方法
export function refreshToken() {
return request({
url: "/auth/refresh",
method: "post",
});
}
// 获取用户详细信息
export function getInfo() {
return request({
url: "/system/user/getInfo",
method: "get",
});
}
// 退出方法
export function logout() {
return request({
url: "/auth/logout",
method: "delete",
});
}
// 获取图片验证码
export function getCodeImg() {
return request({
url: "/code",
headers: {
isToken: false,
},
method: "get",
timeout: 20000,
});
}
// 获取短信验证码
export function SmsVerificationCode(username) {
return request({
url: "/auth/smsCode",
headers: {
isToken: false,
},
method: "get",
timeout: 20000,
params: {
username: username,
},
});
}

@ -0,0 +1,9 @@
import request from "@/utils/request";
// 获取路由
export const getRouters = () => {
return request({
url: "/system/menu/getRouters",
method: "get",
});
};

@ -0,0 +1,57 @@
import request from '@/utils/request'
// 查询缓存详细
export function getCache() {
return request({
url: '/monitor/cache',
method: 'get'
})
}
// 查询缓存名称列表
export function listCacheName() {
return request({
url: '/monitor/cache/getNames',
method: 'get'
})
}
// 查询缓存键名列表
export function listCacheKey(cacheName) {
return request({
url: '/monitor/cache/getKeys/' + cacheName,
method: 'get'
})
}
// 查询缓存内容
export function getCacheValue(cacheName, cacheKey) {
return request({
url: '/monitor/cache/getValue/' + cacheName + '/' + cacheKey,
method: 'get'
})
}
// 清理指定名称缓存
export function clearCacheName(cacheName) {
return request({
url: '/monitor/cache/clearCacheName/' + cacheName,
method: 'delete'
})
}
// 清理指定键名缓存
export function clearCacheKey(cacheKey) {
return request({
url: '/monitor/cache/clearCacheKey/' + cacheKey,
method: 'delete'
})
}
// 清理全部缓存
export function clearCacheAll() {
return request({
url: '/monitor/cache/clearCacheAll',
method: 'delete'
})
}

@ -0,0 +1,71 @@
import request from '@/utils/request'
// 查询定时任务调度列表
export function listJob(query) {
return request({
url: '/monitor/job/list',
method: 'get',
params: query
})
}
// 查询定时任务调度详细
export function getJob(jobId) {
return request({
url: '/monitor/job/' + jobId,
method: 'get'
})
}
// 新增定时任务调度
export function addJob(data) {
return request({
url: '/monitor/job',
method: 'post',
data: data
})
}
// 修改定时任务调度
export function updateJob(data) {
return request({
url: '/monitor/job',
method: 'put',
data: data
})
}
// 删除定时任务调度
export function delJob(jobId) {
return request({
url: '/monitor/job/' + jobId,
method: 'delete'
})
}
// 任务状态修改
export function changeJobStatus(jobId, status) {
const data = {
jobId,
status
}
return request({
url: '/monitor/job/changeStatus',
method: 'put',
data: data
})
}
// 定时任务立即执行一次
export function runJob(jobId, jobGroup) {
const data = {
jobId,
jobGroup
}
return request({
url: '/monitor/job/run',
method: 'put',
data: data
})
}

@ -0,0 +1,26 @@
import request from '@/utils/request'
// 查询调度日志列表
export function listJobLog(query) {
return request({
url: '/monitor/jobLog/list',
method: 'get',
params: query
})
}
// 删除调度日志
export function delJobLog(jobLogId) {
return request({
url: '/monitor/jobLog/' + jobLogId,
method: 'delete'
})
}
// 清空调度日志
export function cleanJobLog() {
return request({
url: '/monitor/jobLog/clean',
method: 'delete'
})
}

@ -0,0 +1,34 @@
import request from '@/utils/request'
// 查询登录日志列表
export function list(query) {
return request({
url: '/monitor/logininfor/list',
method: 'get',
params: query
})
}
// 删除登录日志
export function delLogininfor(infoId) {
return request({
url: '/monitor/logininfor/' + infoId,
method: 'delete'
})
}
// 解锁用户登录状态
export function unlockLogininfor(userName) {
return request({
url: '/monitor/logininfor/unlock/' + userName,
method: 'get'
})
}
// 清空登录日志
export function cleanLogininfor() {
return request({
url: '/monitor/logininfor/clean',
method: 'delete'
})
}

@ -0,0 +1,18 @@
import request from '@/utils/request'
// 查询在线用户列表
export function list(query) {
return request({
url: '/monitor/online/list',
method: 'get',
params: query
})
}
// 强退用户
export function forceLogout(tokenId) {
return request({
url: '/monitor/online/' + tokenId,
method: 'delete'
})
}

@ -0,0 +1,26 @@
import request from '@/utils/request'
// 查询操作日志列表
export function list(query) {
return request({
url: '/monitor/operlog/list',
method: 'get',
params: query
})
}
// 删除操作日志
export function delOperlog(operId) {
return request({
url: '/monitor/operlog/' + operId,
method: 'delete'
})
}
// 清空操作日志
export function cleanOperlog() {
return request({
url: '/monitor/operlog/clean',
method: 'delete'
})
}

@ -0,0 +1,9 @@
import request from '@/utils/request'
// 获取服务信息
export function getServer() {
return request({
url: '/monitor/server',
method: 'get'
})
}

@ -0,0 +1,60 @@
import request from '@/utils/request'
// 查询参数列表
export function listConfig(query) {
return request({
url: '/system/config/list',
method: 'get',
params: query
})
}
// 查询参数详细
export function getConfig(configId) {
return request({
url: '/system/config/' + configId,
method: 'get'
})
}
// 根据参数键名查询参数值
export function getConfigKey(configKey) {
return request({
url: '/system/config/configKey/' + configKey,
method: 'get'
})
}
// 新增参数配置
export function addConfig(data) {
return request({
url: '/system/config',
method: 'post',
data: data
})
}
// 修改参数配置
export function updateConfig(data) {
return request({
url: '/system/config',
method: 'put',
data: data
})
}
// 删除参数配置
export function delConfig(configId) {
return request({
url: '/system/config/' + configId,
method: 'delete'
})
}
// 刷新参数缓存
export function refreshCache() {
return request({
url: '/system/config/refreshCache',
method: 'delete'
})
}

@ -0,0 +1,52 @@
import request from '@/utils/request'
// 查询部门列表
export function listDept(query) {
return request({
url: '/system/dept/list',
method: 'get',
params: query
})
}
// 查询部门列表(排除节点)
export function listDeptExcludeChild(deptId) {
return request({
url: '/system/dept/list/exclude/' + deptId,
method: 'get'
})
}
// 查询部门详细
export function getDept(deptId) {
return request({
url: '/system/dept/' + deptId,
method: 'get'
})
}
// 新增部门
export function addDept(data) {
return request({
url: '/system/dept',
method: 'post',
data: data
})
}
// 修改部门
export function updateDept(data) {
return request({
url: '/system/dept',
method: 'put',
data: data
})
}
// 删除部门
export function delDept(deptId) {
return request({
url: '/system/dept/' + deptId,
method: 'delete'
})
}

@ -0,0 +1,52 @@
import request from '@/utils/request'
// 查询字典数据列表
export function listData(query) {
return request({
url: '/system/dict/data/list',
method: 'get',
params: query
})
}
// 查询字典数据详细
export function getData(dictCode) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'get'
})
}
// 根据字典类型查询字典数据信息
export function getDicts(dictType) {
return request({
url: '/system/dict/data/type/' + dictType,
method: 'get'
})
}
// 新增字典数据
export function addData(data) {
return request({
url: '/system/dict/data',
method: 'post',
data: data
})
}
// 修改字典数据
export function updateData(data) {
return request({
url: '/system/dict/data',
method: 'put',
data: data
})
}
// 删除字典数据
export function delData(dictCode) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'delete'
})
}

@ -0,0 +1,60 @@
import request from '@/utils/request'
// 查询字典类型列表
export function listType(query) {
return request({
url: '/system/dict/type/list',
method: 'get',
params: query
})
}
// 查询字典类型详细
export function getType(dictId) {
return request({
url: '/system/dict/type/' + dictId,
method: 'get'
})
}
// 新增字典类型
export function addType(data) {
return request({
url: '/system/dict/type',
method: 'post',
data: data
})
}
// 修改字典类型
export function updateType(data) {
return request({
url: '/system/dict/type',
method: 'put',
data: data
})
}
// 删除字典类型
export function delType(dictId) {
return request({
url: '/system/dict/type/' + dictId,
method: 'delete'
})
}
// 刷新字典缓存
export function refreshCache() {
return request({
url: '/system/dict/type/refreshCache',
method: 'delete'
})
}
// 获取字典选择框列表
export function optionselect() {
return request({
url: '/system/dict/type/optionselect',
method: 'get'
})
}

@ -0,0 +1,60 @@
import request from '@/utils/request'
// 查询菜单列表
export function listMenu(query) {
return request({
url: '/system/menu/list',
method: 'get',
params: query
})
}
// 查询菜单详细
export function getMenu(menuId) {
return request({
url: '/system/menu/' + menuId,
method: 'get'
})
}
// 查询菜单下拉树结构
export function treeselect() {
return request({
url: '/system/menu/treeselect',
method: 'get'
})
}
// 根据角色ID查询菜单下拉树结构
export function roleMenuTreeselect(roleId) {
return request({
url: '/system/menu/roleMenuTreeselect/' + roleId,
method: 'get'
})
}
// 新增菜单
export function addMenu(data) {
return request({
url: '/system/menu',
method: 'post',
data: data
})
}
// 修改菜单
export function updateMenu(data) {
return request({
url: '/system/menu',
method: 'put',
data: data
})
}
// 删除菜单
export function delMenu(menuId) {
return request({
url: '/system/menu/' + menuId,
method: 'delete'
})
}

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询公告列表
export function listNotice(query) {
return request({
url: '/system/notice/list',
method: 'get',
params: query
})
}
// 查询公告详细
export function getNotice(noticeId) {
return request({
url: '/system/notice/' + noticeId,
method: 'get'
})
}
// 新增公告
export function addNotice(data) {
return request({
url: '/system/notice',
method: 'post',
data: data
})
}
// 修改公告
export function updateNotice(data) {
return request({
url: '/system/notice',
method: 'put',
data: data
})
}
// 删除公告
export function delNotice(noticeId) {
return request({
url: '/system/notice/' + noticeId,
method: 'delete'
})
}

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询岗位列表
export function listPost(query) {
return request({
url: '/system/post/list',
method: 'get',
params: query
})
}
// 查询岗位详细
export function getPost(postId) {
return request({
url: '/system/post/' + postId,
method: 'get'
})
}
// 新增岗位
export function addPost(data) {
return request({
url: '/system/post',
method: 'post',
data: data
})
}
// 修改岗位
export function updatePost(data) {
return request({
url: '/system/post',
method: 'put',
data: data
})
}
// 删除岗位
export function delPost(postId) {
return request({
url: '/system/post/' + postId,
method: 'delete'
})
}

@ -0,0 +1,119 @@
import request from '@/utils/request'
// 查询角色列表
export function listRole(query) {
return request({
url: '/system/role/list',
method: 'get',
params: query
})
}
// 查询角色详细
export function getRole(roleId) {
return request({
url: '/system/role/' + roleId,
method: 'get'
})
}
// 新增角色
export function addRole(data) {
return request({
url: '/system/role',
method: 'post',
data: data
})
}
// 修改角色
export function updateRole(data) {
return request({
url: '/system/role',
method: 'put',
data: data
})
}
// 角色数据权限
export function dataScope(data) {
return request({
url: '/system/role/dataScope',
method: 'put',
data: data
})
}
// 角色状态修改
export function changeRoleStatus(roleId, status) {
const data = {
roleId,
status
}
return request({
url: '/system/role/changeStatus',
method: 'put',
data: data
})
}
// 删除角色
export function delRole(roleId) {
return request({
url: '/system/role/' + roleId,
method: 'delete'
})
}
// 查询角色已授权用户列表
export function allocatedUserList(query) {
return request({
url: '/system/role/authUser/allocatedList',
method: 'get',
params: query
})
}
// 查询角色未授权用户列表
export function unallocatedUserList(query) {
return request({
url: '/system/role/authUser/unallocatedList',
method: 'get',
params: query
})
}
// 取消用户授权角色
export function authUserCancel(data) {
return request({
url: '/system/role/authUser/cancel',
method: 'put',
data: data
})
}
// 批量取消用户授权角色
export function authUserCancelAll(data) {
return request({
url: '/system/role/authUser/cancelAll',
method: 'put',
params: data
})
}
// 授权用户选择
export function authUserSelectAll(data) {
return request({
url: '/system/role/authUser/selectAll',
method: 'put',
params: data
})
}
// 根据角色ID查询部门树结构
export function deptTreeSelect(roleId) {
return request({
url: '/system/role/deptTree/' + roleId,
method: 'get'
})
}

@ -0,0 +1,135 @@
import request from '@/utils/request'
import { parseStrEmpty } from "@/utils/ruoyi";
// 查询用户列表
export function listUser(query) {
return request({
url: '/system/user/list',
method: 'get',
params: query
})
}
// 查询用户详细
export function getUser(userId) {
return request({
url: '/system/user/' + parseStrEmpty(userId),
method: 'get'
})
}
// 新增用户
export function addUser(data) {
return request({
url: '/system/user',
method: 'post',
data: data
})
}
// 修改用户
export function updateUser(data) {
return request({
url: '/system/user',
method: 'put',
data: data
})
}
// 删除用户
export function delUser(userId) {
return request({
url: '/system/user/' + userId,
method: 'delete'
})
}
// 用户密码重置
export function resetUserPwd(userId, password) {
const data = {
userId,
password
}
return request({
url: '/system/user/resetPwd',
method: 'put',
data: data
})
}
// 用户状态修改
export function changeUserStatus(userId, status) {
const data = {
userId,
status
}
return request({
url: '/system/user/changeStatus',
method: 'put',
data: data
})
}
// 查询用户个人信息
export function getUserProfile() {
return request({
url: '/system/user/profile',
method: 'get'
})
}
// 修改用户个人信息
export function updateUserProfile(data) {
return request({
url: '/system/user/profile',
method: 'put',
data: data
})
}
// 用户密码重置
export function updateUserPwd(oldPassword, newPassword) {
const data = {
oldPassword,
newPassword
}
return request({
url: '/system/user/profile/updatePwd',
method: 'put',
params: data
})
}
// 用户头像上传
export function uploadAvatar(data) {
return request({
url: '/system/user/profile/avatar',
method: 'post',
data: data
})
}
// 查询授权角色
export function getAuthRole(userId) {
return request({
url: '/system/user/authRole/' + userId,
method: 'get'
})
}
// 保存授权角色
export function updateAuthRole(data) {
return request({
url: '/system/user/authRole',
method: 'put',
params: data
})
}
// 查询部门下拉树结构
export function deptTreeSelect() {
return request({
url: '/system/user/deptTree',
method: 'get'
})
}

@ -0,0 +1,85 @@
import request from '@/utils/request'
// 查询生成表数据
export function listTable(query) {
return request({
url: '/tool/gen/list',
method: 'get',
params: query
})
}
// 查询db数据库列表
export function listDbTable(query) {
return request({
url: '/tool/gen/db/list',
method: 'get',
params: query
})
}
// 查询表详细信息
export function getGenTable(tableId) {
return request({
url: '/tool/gen/' + tableId,
method: 'get'
})
}
// 修改代码生成信息
export function updateGenTable(data) {
return request({
url: '/tool/gen',
method: 'put',
data: data
})
}
// 导入表
export function importTable(data) {
return request({
url: '/tool/gen/importTable',
method: 'post',
params: data
})
}
// 创建表
export function createTable(data) {
return request({
url: '/tool/gen/createTable',
method: 'post',
params: data
})
}
// 预览生成代码
export function previewTable(tableId) {
return request({
url: '/tool/gen/preview/' + tableId,
method: 'get'
})
}
// 删除表数据
export function delTable(tableId) {
return request({
url: '/tool/gen/' + tableId,
method: 'delete'
})
}
// 生成代码(自定义路径)
export function genCode(tableName) {
return request({
url: '/tool/gen/genCode/' + tableName,
method: 'get'
})
}
// 同步数据库
export function synchDb(tableName) {
return request({
url: '/tool/gen/synchDb/' + tableName,
method: 'get'
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

@ -0,0 +1,9 @@
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg component
// register globally
Vue.component('svg-icon', SvgIcon)
const req = require.context('./svg', false, /\.svg$/)
const requireAll = requireContext => requireContext.keys().map(requireContext)
requireAll(req)

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M121.718 73.272v9.953c3.957-7.584 6.199-16.05 6.199-24.995C127.917 26.079 99.273 0 63.958 0 28.644 0 0 26.079 0 58.23c0 .403.028.806.028 1.21l22.97-25.953h13.34l-19.76 27.187h6.42V53.77l13.728-19.477v49.361H22.998V73.272H2.158c5.951 20.284 23.608 36.208 45.998 41.399-1.44 3.3-5.618 11.263-12.565 12.674-8.607 1.764 23.358.428 46.163-13.178 17.519-4.611 31.938-15.849 39.77-30.513h-13.506V73.272H85.02V59.464l22.998-25.977h13.008l-19.429 27.187h6.421v-7.433l13.727-19.402v39.433h-.027zm-78.24 2.822a10.516 10.516 0 0 1-.996-4.535V44.548c0-1.613.332-3.124.996-4.535a11.66 11.66 0 0 1 2.713-3.68c1.134-1.032 2.49-1.864 4.04-2.468 1.55-.605 3.21-.908 4.982-.908h11.292c1.77 0 3.431.303 4.981.908 1.522.604 2.85 1.41 3.986 2.418l-12.26 16.303v-2.898a1.96 1.96 0 0 0-.665-1.512c-.443-.403-.996-.604-1.66-.604-.665 0-1.218.201-1.661.604a1.96 1.96 0 0 0-.664 1.512v9.071L44.364 77.606a10.556 10.556 0 0 1-.886-1.512zm35.73-4.535c0 1.613-.332 3.124-.997 4.535a11.66 11.66 0 0 1-2.712 3.68c-1.134 1.032-2.49 1.864-4.04 2.469-1.55.604-3.21.907-4.982.907H55.185c-1.77 0-3.431-.303-4.981-.907-1.55-.605-2.906-1.437-4.041-2.47a12.49 12.49 0 0 1-1.384-1.512l13.727-18.217v6.375c0 .605.222 1.109.665 1.512.442.403.996.604 1.66.604.664 0 1.218-.201 1.66-.604a1.96 1.96 0 0 0 .665-1.512V53.87L75.97 36.838c.913.932 1.66 1.99 2.214 3.175.664 1.41.996 2.922.996 4.535v27.011h.028z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M222.625919 488.232108c4.753578 19.014313 26.342747 25.352418 26.342746 25.352418 30.304062 10.893617 54.270019 1.38646 54.27002 1.38646 27.927273-8.318762 27.531141-26.936944 27.531141-26.936943-0.396132-17.627853-25.748549-26.936944-25.748549-26.936944l-1.782592 2.178723-17.033656 20.994971c-6.53617 8.912959-14.458801 2.772921-14.458801 2.772921l-23.569826-25.74855c-24.362089 8.912959-25.550484 26.936944-25.550483 26.936944zM19.212379 1019.246422c-15.845261 2.970986-11.289749-24.758221-11.289748-24.758221l6.338104-33.275048 115.274275-578.352031c2.178723-13.270406 10.497485-14.260735 10.497485-14.260735h47.733849C161.423598 332.156286 137.061509 267.388781 137.061509 267.388781c-32.680851-73.284333-16.439458-134.090522-16.439459-134.090522C153.104836 4.951644 277.490135 5.941973 277.490135 5.941973c147.162863 11.091683 161.225532 143.201547 161.225532 143.201547 8.516828 98.240619-70.511412 217.080077-71.699806 218.86267H881.39265c11.487814 0.990329 13.270406 14.854932 13.270406 14.854932l119.631722 612.023211c8.516828 16.83559-9.705222 24.164023-9.705223 24.164023l-985.377176 0.198066z m187.766344-619.54971H156.471954l-55.260349 277.292069 75.066925-0.198065c15.845261 2.376789 13.666538 16.439458 13.666538 16.439458 0.792263 11.883946-12.478143 15.845261-12.478143 15.845261l-82.395358-0.396131-24.164023 124.187234 189.152804 0.594197 5.941973-58.627466c1.38646-14.854932 15.845261-13.07234 15.845261-13.072341 15.251064-0.990329 14.854932 13.270406 14.854933 13.270407l-5.347776 57.835203h222.625919c16.83559-0.396132 13.666538 16.83559 13.666537 16.83559l0.594198 138.051837 454.560928-1.38646-55.260348-278.480464-178.853385 1.188394 1.980658 28.719536c1.188395 10.101354-11.883946 12.280077-11.883946 12.280077-14.260735 2.376789-16.83559-10.497485-16.83559-10.497485l-2.772921-30.304062-140.032495-0.594197c-15.251064 0.396132-14.062669-14.458801-14.062669-14.458801-0.990329-14.656867 15.647195-17.033656 15.647195-17.033656l133.892457 1.980658-11.68588-124.583366h-177.070794v75.264991c-2.376789 13.666538-14.656867 12.082012-14.656866 12.082011-14.062669-0.198066-14.656867-12.676209-14.656867-12.676209l-0.594197-74.274661-112.303288 0.198066c-12.280077 0-13.864603-15.44913-13.864604-15.44913-0.198066-14.656867 12.874275-15.052998 12.874275-15.052998l112.897486-1.980658-0.990329-122.206576h-146.568666l-26.540812 35.453772c43.376402 18.420116 40.405416 53.675822 40.405416 53.675822-6.140039 68.332689-96.061896 59.419729-96.061896 59.419729-66.550097 125.969826 6.53617 146.766731 6.536171 146.766731 58.033269 30.898259 103.192263-10.695551 103.192263-10.695551 20.598839-16.241393 58.825532-27.13501 58.825532-27.13501 79.622437-10.29942 106.559381 63.57911 106.559381 63.57911 9.705222 47.535783 30.502128 69.917215 30.502127 69.917215 40.999613 35.05764 116.264603-11.289749 116.264604-11.289749 79.226306-27.729207 126.960155 43.9706 126.960154 43.9706 48.328046-2.376789 74.670793 17.231721 74.670793 17.231722 62.984913 62.786847-18.023985 98.438685-18.023984 98.438684-80.216634 25.748549-115.274275-20.796905-115.274275-20.796905-39.018956-58.4294 26.936944-84.17795 26.936944-84.17795-32.680851-37.632495-71.303675-28.125338-71.303675-28.125338l-68.332688 24.164023c-97.646422 21.787234-117.84913-56.448743-117.84913-56.448743-29.313733-140.428627-126.564023-67.738491-126.564023-67.738491-93.288975 67.34236-160.8294 3.961315-160.829401 3.961315-67.936557-54.864217-2.970986-169.148162-2.970986-169.148162C192.717988 518.932302 194.104449 495.758607 194.104449 495.758607c-7.724565-37.038298 37.236364-59.815861 37.236363-59.81586l-23.965957-35.651838-0.396132-0.594197zM921.798066 677.384913l-23.767892-123.593037h-164.988781l13.468472 123.593037h175.288201z m-30.304062-154.491296l-24.164023-123.196905h-149.539652l12.082011 123.196905h161.621664z m-62.390716 394.15087c59.419729-5.14971 52.883559-32.878917 52.883559-32.878916-9.111025-31.690522-52.883559-29.90793-52.883559-29.907931-45.951257-1.584526-54.864217 31.492456-54.864216 31.492457 9.111025 32.28472 54.864217 31.294391 54.864216 31.29439zM701.152805 522.893617l-12.082012-123.196905H526.854932V522.893617h174.297873zM497.145068 987.952031V863.566731H286.799226l-11.883946 124.3853H497.145068zM327.402708 372.363636c76.651451-107.54971 81.603095-198.26383 81.603095-198.263829C400.885106 33.67118 274.519149 37.632495 274.519149 37.632495c-89.723791 4.951644-121.018182 85.56441-121.018182 85.56441-25.946615 79.226306 31.294391 176.674662 31.294391 176.674662 61.598453 116.264603 93.288975 145.578337 93.288975 145.578336 13.270406-13.468472 49.318375-73.086267 49.318375-73.086267z m-81.603095 615.588395l10.101354-124.3853H64.173308l-23.767892 124.3853h205.394197z" /></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M127.88 73.143c0 1.412-.506 2.635-1.518 3.669-1.011 1.033-2.209 1.55-3.592 1.55h-17.887c0 9.296-1.783 17.178-5.35 23.645l16.609 17.044c1.011 1.034 1.517 2.257 1.517 3.67 0 1.412-.506 2.635-1.517 3.668-.958 1.033-2.155 1.55-3.593 1.55-1.438 0-2.635-.517-3.593-1.55l-15.811-16.063a15.49 15.49 0 0 1-1.196 1.06c-.532.434-1.65 1.208-3.353 2.322a50.104 50.104 0 0 1-5.192 2.974c-1.758.87-3.94 1.658-6.546 2.364-2.607.706-5.189 1.06-7.748 1.06V47.044H58.89v73.062c-2.716 0-5.417-.367-8.106-1.102-2.688-.734-5.003-1.631-6.945-2.692a66.769 66.769 0 0 1-5.268-3.179c-1.571-1.057-2.73-1.94-3.476-2.65L33.9 109.34l-14.611 16.877c-1.066 1.14-2.344 1.711-3.833 1.711-1.277 0-2.422-.434-3.434-1.304-1.012-.978-1.557-2.187-1.635-3.627-.079-1.44.333-2.705 1.236-3.794l16.129-18.51c-3.087-6.197-4.63-13.644-4.63-22.342H5.235c-1.383 0-2.58-.517-3.592-1.55S.125 74.545.125 73.132c0-1.412.506-2.635 1.518-3.668 1.012-1.034 2.21-1.55 3.592-1.55h17.887V43.939L9.308 29.833c-1.012-1.033-1.517-2.256-1.517-3.669 0-1.412.505-2.635 1.517-3.668 1.012-1.034 2.21-1.55 3.593-1.55s2.58.516 3.593 1.55l13.813 14.106h67.396l13.814-14.106c1.012-1.034 2.21-1.55 3.592-1.55 1.384 0 2.581.516 3.593 1.55 1.012 1.033 1.518 2.256 1.518 3.668 0 1.413-.506 2.636-1.518 3.67l-13.814 14.105v23.975h17.887c1.383 0 2.58.516 3.593 1.55 1.011 1.033 1.517 2.256 1.517 3.668l-.005.01zM89.552 26.175H38.448c0-7.23 2.489-13.386 7.466-18.469C50.892 2.623 56.92.082 64 .082c7.08 0 13.108 2.541 18.086 7.624 4.977 5.083 7.466 11.24 7.466 18.469z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1568899741379" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2054" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M960 591.424V368.96c0-0.288 0.16-0.512 0.16-0.768S960 367.68 960 367.424V192a32 32 0 0 0-32-32H96a32 32 0 0 0-32 32v175.424c0 0.288-0.16 0.512-0.16 0.768s0.16 0.48 0.16 0.768v222.464c0 0.288-0.16 0.512-0.16 0.768s0.16 0.48 0.16 0.768V864a32 32 0 0 0 32 32h832a32 32 0 0 0 32-32v-271.04c0-0.288 0.16-0.512 0.16-0.768S960 591.68 960 591.424z m-560-31.232v-160H608v160h-208z m208 64V832h-208v-207.808H608z m-480-224h208v160H128v-160z m544 0h224v160h-224v-160zM896 224v112.192H128V224h768zM128 624.192h208V832H128v-207.808zM672 832v-207.808h224V832h-224z" p-id="2055"></path></svg>

After

Width:  |  Height:  |  Size: 954 B

@ -0,0 +1 @@
<svg t="1697596772725" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="51381" width="16" height="16"><path d="M410.9 102.1H181.7c-42.4 0-76.8 34.5-76.8 76.8v229.2c0 42.4 34.5 76.8 76.8 76.8h229.2c42.4 0 76.8-34.5 76.8-76.8V178.9c0-42.3-34.5-76.8-76.8-76.8z m6.8 306c0 3.8-3.1 6.8-6.8 6.8H181.7c-3.8 0-6.8-3.1-6.8-6.8V178.9c0-3.8 3.1-6.8 6.8-6.8h229.2c3.8 0 6.8 3.1 6.8 6.8v229.2zM410.9 542.5H181.7c-42.4 0-76.8 34.5-76.8 76.8v229.2c0 42.4 34.5 76.8 76.8 76.8h229.2c42.4 0 76.8-34.5 76.8-76.8V619.3c0-42.4-34.5-76.8-76.8-76.8z m6.8 305.9c0 3.8-3.1 6.8-6.8 6.8H181.7c-3.8 0-6.8-3.1-6.8-6.8V619.3c0-3.8 3.1-6.8 6.8-6.8h229.2c3.8 0 6.8 3.1 6.8 6.8v229.1zM738.8 484.9c105.5 0 191.4-85.9 191.4-191.4s-85.9-191.4-191.4-191.4S547.4 188 547.4 293.5s85.8 191.4 191.4 191.4z m0-312.8c66.9 0 121.4 54.5 121.4 121.4s-54.5 121.4-121.4 121.4-121.4-54.5-121.4-121.4 54.4-121.4 121.4-121.4zM853.4 542.5H624.2c-42.4 0-76.8 34.5-76.8 76.8v229.2c0 42.4 34.5 76.8 76.8 76.8h229.2c42.4 0 76.8-34.5 76.8-76.8V619.3c0-42.4-34.5-76.8-76.8-76.8z m6.8 305.9c0 3.8-3.1 6.8-6.8 6.8H624.2c-3.8 0-6.8-3.1-6.8-6.8V619.3c0-3.8 3.1-6.8 6.8-6.8h229.2c3.8 0 6.8 3.1 6.8 6.8v229.1z" p-id="51382"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M599.68 375.168l-27.296 24.256V208.544h-80.832v311.072a316.544 316.544 0 0 1 151.072-105.952c-14.112-12.768-27.872-25.408-42.944-38.496z m-184.48 40.704a2178.88 2178.88 0 0 1-55.712 83.616c-7.456-4.832-15.04-9.568-22.848-14.208v-26.208a952.64 952.64 0 0 0 58.528-78.88v-66.88h-90.88l49.056-28.992a1231.808 1231.808 0 0 0-66.336-84.736L222.912 235.84a1318.624 1318.624 0 0 1 56.576 77.472H179.424v72.448h125.408c-37.152 48.704-82.496 94.592-136 137.696 9.312 26.4 17.664 54.464 25.088 84.16 23.04-21.344 44.8-42.336 65.248-62.944v213.44h77.472v-195.36c25.248 19.008 51.84 39.52 79.712 61.632l42.304-53.056c0.96-1.888 1.76-3.84 2.752-5.728l-53.152-35.136a2006.24 2006.24 0 0 0 62.688-79.424l-55.744-35.168z" fill="#CFCFCF" /><path d="M653.472 702.944l40.416 78.24s65.6-159.104 169.088-212.064c-2.496 37.856-12.608 70.688 5.056 111.104-45.44 10.112-138.848 123.68-169.152 179.328-42.912-53.088-93.408-93.44-128.704-106.08l83.296-50.528z" fill="#CFCFCF" /><path d="M440 819.424H92.032a10.624 10.624 0 0 1-10.624-10.592V130.08c0-5.824 4.768-10.624 10.624-10.624h678.752c5.888 0 10.656 4.768 10.656 10.624v268.672a314.144 314.144 0 0 1 74.24 18.944V130.08a84.864 84.864 0 0 0-84.896-84.832H92.032A84.864 84.864 0 0 0 7.2 130.08v678.752a84.896 84.896 0 0 0 84.832 84.864h385.536a318.272 318.272 0 0 1-37.568-74.272z" fill="#CFCFCF" /><path d="M740.384 438.56a275.712 275.712 0 0 0-275.744 275.744 275.68 275.68 0 0 0 275.744 275.744 275.712 275.712 0 0 0 275.744-275.744 275.744 275.744 0 0 0-275.744-275.744z m0 477.248a201.504 201.504 0 1 1 0-403.008 201.504 201.504 0 1 1 0 403.008z" fill="#CFCFCF" /></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1588670460195" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1314" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M230.4 307.712c13.824 0 25.088-11.264 25.088-25.088 0-100.352 81.92-182.272 182.272-182.272s182.272 81.408 182.272 182.272c0 13.824 11.264 25.088 25.088 25.088s25.088-11.264 24.576-25.088c0-127.488-103.936-231.936-231.936-231.936S205.824 154.624 205.824 282.624c-0.512 14.336 10.752 25.088 24.576 25.088z m564.736 234.496c-11.264 0-21.504 2.048-31.232 6.144 0-44.544-40.448-81.92-88.064-81.92-14.848 0-28.16 3.584-39.936 10.24-13.824-28.16-44.544-48.128-78.848-48.128-12.288 0-24.576 2.56-35.328 7.68V284.16c0-45.568-37.888-81.92-84.48-81.92s-84.48 36.864-84.48 81.92v348.672l-69.12-112.64c-18.432-28.16-58.368-36.864-91.136-19.968-26.624 14.336-46.592 47.104-30.208 88.064 3.072 8.192 76.8 205.312 171.52 311.296 0 0 28.16 24.576 43.008 58.88 4.096 9.728 13.312 15.36 22.528 15.36 3.072 0 6.656-0.512 9.728-2.048 12.288-5.12 18.432-19.968 12.8-32.256-19.456-44.544-53.76-74.752-53.76-74.752C281.6 768 209.408 573.44 208.384 570.88c-5.12-12.8-2.56-20.992 7.168-26.112 9.216-4.608 21.504-4.608 26.112 2.56l113.152 184.32c4.096 8.704 12.8 14.336 22.528 14.336 13.824 0 25.088-10.752 25.088-25.088V284.16c0-17.92 15.36-32.256 34.816-32.256s34.816 14.336 34.816 32.256v284.16c0 13.824 10.24 25.088 24.576 25.088 13.824 0 25.088-11.264 25.088-25.088v-57.344c0-17.92 15.36-32.768 34.816-32.768 19.968 0 37.376 15.36 37.376 32.768v95.232c0 7.168 3.072 13.312 7.68 17.92 4.608 4.608 10.752 7.168 17.92 7.168 13.824 0 24.576-11.264 24.576-25.088V547.84c0-18.432 13.824-32.256 32.256-32.256 20.48 0 38.912 15.36 38.912 32.256v95.232c0 13.824 11.264 25.088 25.088 25.088s24.576-11.264 25.088-25.088v-18.944c0-18.944 12.8-32.256 30.72-32.256 18.432 0 22.528 18.944 22.528 31.744 0 1.024-11.776 99.84-50.688 173.056-30.72 58.368-45.056 112.128-51.2 146.944-2.56 13.312 6.656 26.112 19.968 28.672 1.536 0 3.072 0.512 4.608 0.512 11.776 0 22.016-8.192 24.064-20.48 5.632-31.232 18.432-79.36 46.08-132.608 43.52-81.92 55.808-186.88 56.32-193.536-0.512-50.688-29.696-83.968-72.704-83.968z"></path></path></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1576153230908" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="971" xmlns:xlink="http://www.w3.org/1999/xlink" width="81" height="81"><defs><style type="text/css"></style></defs><path d="M772.87036133 734.06115723c-43.34106445 0-80.00793458 27.93273926-93.76831055 66.57714843H475.90991211c-56.60705567 0-102.66723633-46.06018067-102.66723633-102.66723633V600.82446289h305.859375c13.76037598 38.64440918 50.42724609 66.57714844 93.76831055 66.57714844 55.12390137 0 99.94812012-44.82421875 99.94812012-99.94812012S827.9942627 467.50537109 772.87036133 467.50537109c-43.34106445 0-80.00793458 27.93273926-93.76831055 66.57714844H373.24267578V401.01062011h321.92687989c55.12390137 0 99.94812012-44.82421875 99.94812011-99.94812011V190.07312011C795.11767578 134.94921875 750.29345703 90.125 695.16955567 90.125H251.12963867C196.0057373 90.125 151.18151855 134.94921875 151.18151855 190.07312011V301.0625c0 55.12390137 44.82421875 99.94812012 99.94812012 99.94812012h55.53588867v296.96044921c0 93.35632325 75.97045898 169.32678223 169.32678224 169.32678223h203.19213866c13.76037598 38.64440918 50.42724609 66.57714844 93.76831055 66.57714844 55.12390137 0 99.94812012-44.82421875 99.94812012-99.94812012s-44.90661622-99.86572266-100.03051758-99.86572265z m0-199.89624024c18.37463379 0 33.28857422 14.91394043 33.28857422 33.28857423s-14.91394043 33.28857422-33.28857422 33.28857421-33.28857422-14.91394043-33.28857422-33.28857421 14.91394043-33.28857422 33.28857422-33.28857422zM217.75866699 301.0625V190.07312011c0-18.37463379 14.91394043-33.28857422 33.28857423-33.28857421h444.03991698c18.37463379 0 33.28857422 14.91394043 33.28857422 33.28857422V301.0625c0 18.37463379-14.91394043 33.28857422-33.28857422 33.28857422H251.12963867c-18.37463379 0-33.37097168-14.91394043-33.37097168-33.28857422z m555.11169434 566.23535156c-18.37463379 0-33.28857422-14.91394043-33.28857422-33.28857422 0-18.37463379 14.91394043-33.28857422 33.28857422-33.28857422s33.28857422 14.91394043 33.28857422 33.28857422c0.08239747 18.29223633-14.91394043 33.28857422-33.28857422 33.28857422z" p-id="972"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M705.536 961.024c-150.016 0-267.264-117.248-267.264-267.264 0-147.456 119.808-267.264 267.264-267.264 74.24 0 142.848 28.672 194.048 80.896 48.64 50.176 74.752 116.224 73.216 185.856 0 150.016-117.248 267.776-267.264 267.776z m0-511.488c-135.168 0-244.736 110.08-244.736 244.736s110.08 244.736 244.736 244.736 244.736-110.08 244.736-244.736-109.568-244.736-244.736-244.736zM67.072 948.224c-8.192-2.048-15.872-11.264-15.872-18.432V82.432c0-8.704 10.24-18.944 18.944-18.944h715.264c8.704 0 18.944 10.24 18.944 18.944v246.784c-6.144-0.512-12.8-1.024-19.456-1.536-5.632-0.512-11.264-1.024-16.384-1.024-2.048 0-4.096-0.512-6.144-0.512v-225.28H93.184V906.24h286.208c3.584 5.632 7.168 12.8 10.752 19.968 3.072 5.632 7.168 14.336 12.288 22.528H67.072z m722.944-122.88h-2.56l-2.048-2.048-75.776-39.936-72.704 38.4c-3.072 1.024-6.144 1.024-9.216 1.024-3.584 0-6.656-1.024-8.192-2.56-6.144-6.144-8.192-10.752-8.192-18.432l8.704-85.504-60.416-56.832c-6.144-6.144-6.144-9.216-4.096-14.336 3.584-9.728 7.68-10.752 11.776-10.752h1.024l83.456-13.312 38.912-73.728c3.072-5.12 9.216-8.192 16.384-8.192 4.096 0 9.728 1.536 11.776 5.632v0.512l39.424 74.752 81.92 12.8c8.192 2.56 11.264 5.12 13.824 9.728 0 8.192 0 17.408-2.56 26.624l-58.368 54.272 13.312 82.432c0 5.12-2.048 9.216-6.144 14.336-0.512 0-0.512 0.512-1.024 0.512s-1.024 0.512-1.536 0.512l-1.024 0.512-1.024 1.024c-3.584 2.56-4.608 2.56-5.632 2.56z m-83.968-78.848h2.56l1.024 1.024 53.248 37.888-7.68-65.024c0-6.144 0-9.728 4.096-13.824 31.744-26.624 34.816-29.696 30.208-39.424l-3.584-6.144-40.448-4.608c-5.12-2.56-10.24-5.12-11.776-9.216l-27.648-55.808-27.648 55.808c-3.072 6.144-7.168 8.192-8.192 8.704h-1.024l-62.976 7.68 45.056 45.056 1.536 0.512c0.512 0.512 1.024 3.584 1.024 12.8l-7.68 54.784 56.32-27.648 2.56-2.56v-0.512c0.512 0.512 0.512 0.512 1.024 0.512z m-502.784-97.792v-38.4h134.144v38.4H203.264z m0-187.904v-38.4h293.888V460.8H203.264z m0-163.84v-38.4h373.248V296.96H203.264z" fill="#1A73E9" /></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -0,0 +1 @@
<svg t="1697600923122" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="20959" width="16" height="16"><path d="M274.286 969.143c-7.314 0-14.629-3.657-20.114-7.314-5.486-5.486-9.143-12.8-9.143-20.114v-82.286h-54.857c-21.943 0-42.057-9.143-56.686-23.771s-23.771-34.743-23.771-56.686V577.829c0-3.657 0-5.486 1.829-7.314l23.771-67.657-43.886-27.429c-7.314-3.657-10.971-9.143-12.8-16.457s0-14.629 3.657-21.943l7.314-9.143c3.657-7.314 10.971-12.8 18.286-14.629h7.314c5.486 0 10.971 1.829 14.629 3.657l36.571 21.943 76.8-181.029c3.657-9.143 12.8-14.629 21.943-14.629h301.714c7.314 16.457 18.286 32.914 29.257 45.714H279.771l-65.829 149.943h268.8c-5.486 14.629-10.971 31.086-14.629 45.714H195.656l-38.4 95.086v197.486c0 9.143 3.657 18.286 9.143 23.771s14.629 9.143 23.771 9.143c146.286 0 272.457 0 371.2-1.829l5.486 42.057c-5.486 1.829-10.971 3.657-18.286 3.657H341.941v80.457c0 7.314-3.657 14.629-7.314 20.114-5.486 10.971-12.8 14.629-20.114 14.629h-40.229z m376.685-10.972c-10.971 0-21.943-9.143-23.771-21.943l-36.571-245.029-56.686-1.829c-7.314 0-12.8-1.829-16.457-7.314-3.657-3.657-7.314-10.971-7.314-16.457V544.913c1.829-117.029 100.571-213.943 217.6-213.943 118.857 0 215.771 96.914 219.429 215.771V663.77c0 5.486-1.829 12.8-7.314 16.457-3.657 3.657-9.143 7.314-16.457 7.314h-53.029l-34.743 246.857c-1.829 10.971-10.971 20.114-23.771 21.943H650.973zM729.6 380.343c-93.257 0-170.057 74.971-170.057 168.229v95.086l54.857 1.829c10.971 0 21.943 9.143 23.771 21.943l34.743 245.029 120.686 1.829 34.743-246.857c1.829-10.971 10.971-20.114 23.771-21.943h1.829l1.829-1.829h43.886l1.829-95.086c-3.657-93.257-78.629-168.229-171.886-168.229zM288.914 680.229c-14.629 0-29.257-5.486-40.229-16.457s-16.457-23.771-16.457-40.229c0-21.943 12.8-42.057 34.743-51.2 7.314-3.657 14.629-3.657 21.943-3.657 14.629 0 29.257 5.486 40.229 16.457 16.457 16.457 20.114 40.229 12.8 60.343-9.143 20.114-29.257 34.743-53.029 34.743z m442.515-365.715c-69.486 0-128-60.343-128-129.829 0-34.743 12.8-67.657 36.571-91.429s56.686-36.571 89.6-36.571c34.743 0 69.486 14.629 93.257 38.4s36.571 58.514 36.571 91.429c0 34.743-12.8 67.657-36.571 91.429-23.771 21.943-56.686 36.571-91.429 36.571z m0-212.114c-45.714 0-82.286 36.571-82.286 82.286s36.571 82.286 82.286 82.286 82.286-36.571 82.286-82.286c0-43.886-36.571-80.457-82.286-82.286z" p-id="20960" fill="#cdcdcd"></path></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M0 54.857h36.571V128H0V54.857zM91.429 27.43H128V128H91.429V27.429zM45.714 0h36.572v128H45.714V0z"/></svg>

After

Width:  |  Height:  |  Size: 179 B

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1575982282951" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="902" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M828.40625 90.125H195.59375C137.375 90.125 90.125 137.375 90.125 195.59375v632.8125c0 58.21875 47.25 105.46875 105.46875 105.46875h632.8125c58.21875 0 105.46875-47.25 105.46875-105.46875V195.59375c0-58.21875-47.25-105.46875-105.46875-105.46875z m52.734375 738.28125c0 29.16-23.57015625 52.734375-52.734375 52.734375H195.59375c-29.109375 0-52.734375-23.574375-52.734375-52.734375V195.59375c0-29.109375 23.625-52.734375 52.734375-52.734375h632.8125c29.16 0 52.734375 23.625 52.734375 52.734375v632.8125z" p-id="903"></path><path d="M421.52890625 709.55984375a36.28125 36.28125 0 0 1-27.55265625-12.66890625L205.17453125 476.613125a36.28546875 36.28546875 0 0 1 55.10109375-47.22890625l164.986875 192.4846875 342.16171875-298.48078125a36.2896875 36.2896875 0 0 1 47.70984375 54.68765625L445.3859375 700.6203125a36.3234375 36.3234375 0 0 1-23.85703125 8.93953125z" p-id="904"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1591754363642" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2753" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M921.6 51.2a51.2 51.2 0 0 1 51.2 51.2v665.6a51.2 51.2 0 0 1-51.2 51.2H102.4a51.2 51.2 0 0 1-51.2-51.2V102.4a51.2 51.2 0 0 1 51.2-51.2h819.2m0-51.2H102.4a102.4 102.4 0 0 0-102.4 102.4v665.6a102.4 102.4 0 0 0 102.4 102.4h819.2a102.4 102.4 0 0 0 102.4-102.4V102.4a102.4 102.4 0 0 0-102.4-102.4z" p-id="2754"></path><path d="M102.4 972.8l819.2 0 0 51.2-819.2 0 0-51.2Z" p-id="2755"></path><path d="M537.088 204.8a25.6 25.6 0 0 1 25.6 25.6v60.928a153.6 153.6 0 0 1 48.128 27.648l51.2-30.208a25.6 25.6 0 0 1 35.328 9.216l25.6 44.032a25.6 25.6 0 0 1-9.216 35.328l-51.2 30.208a139.776 139.776 0 0 1 0 55.808l51.2 30.208a25.6 25.6 0 0 1 9.216 35.328l-25.6 44.032a25.6 25.6 0 0 1-35.328 9.216l-51.2-30.208a153.6 153.6 0 0 1-48.128 27.648v60.416a25.6 25.6 0 0 1-25.6 25.6h-51.2a25.6 25.6 0 0 1-25.6-25.6v-60.416a153.6 153.6 0 0 1-48.128-27.648l-51.2 30.208a25.6 25.6 0 0 1-35.328-9.216l-25.6-44.032a25.6 25.6 0 0 1 7.168-35.84l51.2-30.208A139.776 139.776 0 0 1 360.96 409.6L307.2 377.344a25.6 25.6 0 0 1-9.216-35.328l25.6-44.032A25.6 25.6 0 0 1 358.4 288.768l51.2 30.208a153.6 153.6 0 0 1 51.2-27.648V230.4a25.6 25.6 0 0 1 25.6-25.6h51.2m0-51.2h-51.2A77.312 77.312 0 0 0 409.6 230.4V256l-23.552-13.824a76.8 76.8 0 0 0-104.96 28.16l-25.088 46.08a77.312 77.312 0 0 0 28.16 104.96L307.2 435.2l-23.552 13.824A77.312 77.312 0 0 0 256 553.984l25.6 44.032a76.8 76.8 0 0 0 104.96 28.16L409.6 614.4v27.136A77.312 77.312 0 0 0 486.4 716.8h51.2a77.312 77.312 0 0 0 76.8-76.8V614.4l23.552 13.824a76.8 76.8 0 0 0 104.96-28.16l25.6-44.032a77.312 77.312 0 0 0-28.16-104.96L716.8 435.2l23.552-13.824A77.312 77.312 0 0 0 768 316.416l-25.6-44.032a76.8 76.8 0 0 0-104.96-28.16L614.4 256v-25.6A77.312 77.312 0 0 0 537.088 153.6z" p-id="2756"></path><path d="M512 384a51.2 51.2 0 1 1-51.2 51.2 51.2 51.2 0 0 1 51.2-51.2m0-51.2a102.4 102.4 0 1 0 102.4 102.4 102.4 102.4 0 0 0-102.4-102.4z" p-id="2757"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M54.857 118.857h64V73.143H89.143c-1.902 0-3.52-.668-4.855-2.002-1.335-1.335-2.002-2.954-2.002-4.855V36.57H54.857v82.286zM73.143 16v-4.571a2.2 2.2 0 0 0-.677-1.61 2.198 2.198 0 0 0-1.609-.676H20.571c-.621 0-1.158.225-1.609.676a2.198 2.198 0 0 0-.676 1.61V16a2.2 2.2 0 0 0 .676 1.61c.451.45.988.676 1.61.676h50.285c.622 0 1.158-.226 1.61-.677.45-.45.676-.987.676-1.609zm18.286 48h21.357L91.43 42.642V64zM128 73.143v48c0 1.902-.667 3.52-2.002 4.855-1.335 1.335-2.953 2.002-4.855 2.002H52.57c-1.901 0-3.52-.667-4.854-2.002-1.335-1.335-2.003-2.953-2.003-4.855v-11.429H6.857c-1.902 0-3.52-.667-4.855-2.002C.667 106.377 0 104.759 0 102.857v-96c0-1.902.667-3.52 2.002-4.855C3.337.667 4.955 0 6.857 0h77.714c1.902 0 3.52.667 4.855 2.002 1.335 1.335 2.003 2.953 2.003 4.855V30.29c1 .622 1.856 1.29 2.569 2.003l29.147 29.147c1.335 1.335 2.478 3.145 3.429 5.43.95 2.287 1.426 4.383 1.426 6.291v-.018z"/></svg>

After

Width:  |  Height:  |  Size: 971 B

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1546567861908" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2422" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M318.577778 819.2L17.066667 512l301.511111-307.2 45.511111 45.511111L96.711111 512l267.377778 261.688889zM705.422222 819.2l-45.511111-45.511111L927.288889 512l-267.377778-261.688889 45.511111-45.511111L1006.933333 512zM540.785778 221.866667l55.751111 11.150222L483.157333 802.133333l-55.751111-11.093333z" p-id="2423"></path></svg>

After

Width:  |  Height:  |  Size: 717 B

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1577252187056" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2508" xmlns:xlink="http://www.w3.org/1999/xlink" width="81" height="81"><defs><style type="text/css"></style></defs><path d="M747.59340925 691.12859384c11.51396329 0.25305413 22.43746719-0.21087818 40.74171707-1.51832482 29.35428085-2.10878421 35.84933734-2.36183835 46.47761114-0.8856895 24.71495444 3.37405491 41.12129828 21.76265671 32.47528161 47.95376084-85.57447632 258.19957947-442.00123984 249.76444099-628.67084683 50.73735554-153.47733892-159.33976008-153.09775772-414.41833795 0.92786545-573.42069196 159.71934128-162.67163983 424.03439521-166.59397897 565.78689185 0.63263534 80.38686649 94.81095318 108.34934958 169.16669549 89.11723508 230.57450162-15.01454608 47.99593598-50.61082928 77.68762207-119.77896259 114.63352789-4.89237973 2.65706845-29.35428085 15.52065436-35.84933652 19.02123633-46.94154346 25.30541465-63.51659033 41.20565021-62.20914449 58.45550757 2.95229856 39.13904114 24.16667102 52.7196135 70.98168823 53.81618115z m44.41100207 50.10472101c-19.82257471 1.43397372-32.05352527 1.940082-45.63409763 1.6448519-70.34905207-1.60267593-115.98314969-30.91478165-121.38163769-101.64341492-3.45840683-46.05585397 24.7571304-73.13264758 89.24376132-107.96976837 6.7902866-3.66928501 31.37871396-16.57504688 36.06021551-19.06341229 57.69634516-30.83042972 85.15271997-53.73183005 94.76877722-84.47790866 12.77923398-40.78389304-9.10994898-98.94417051-79.24812286-181.6507002-121.17075953-142.97559219-350.14258521-139.60153647-489.2380134 2.06660824-134.49827774 138.84237405-134.79350784 362.12048163-0.42175717 501.637667 158.53842169 168.99799328 451.9968783 181.18676788 534.57688175-11.80919339-4.68150156 0.2952301-10.71262573 0.67481131-18.72600705 1.26527069z" p-id="2509"></path><path d="M346.03865637 637.18588562a78.82636652 78.82636652 0 0 0 78.32025825-79.29029883c0-43.69401562-35.005823-79.29029883-78.32025825-79.29029882a78.82636652 78.82636652 0 0 0-78.36243338 79.29029882c0 43.69401562 35.005823 79.29029883 78.36243338 79.29029883z m0-51.7495729a27.07679361 27.07679361 0 0 1-26.5706845-27.54072593c0-15.30977536 11.97789643-27.54072593 26.5706845-27.54072592 14.55061295 0 26.57068533 12.23095057 26.57068533 27.54072592a27.07679361 27.07679361 0 0 1-26.57068533 27.54072593zM475.7289063 807.11174353a78.82636652 78.82636652 0 0 0 78.3624334-79.29029882c0-43.69401562-34.96364785-79.29029883-78.32025825-79.29029883a78.82636652 78.82636652 0 0 0-78.32025742 79.29029883c0 43.69401562 34.96364785 79.29029883 78.32025742 79.29029882z m0-51.74957208a27.07679361 27.07679361 0 0 1-26.57068532-27.54072674c0-15.30977536 12.06224753-27.54072593 26.57068532-27.54072593 14.59278892 0 26.57068533 12.23095057 26.57068453 27.54072593a27.07679361 27.07679361 0 0 1-26.57068453 27.54072674zM601.24376214 377.21492718a78.82636652 78.82636652 0 0 0 78.32025742-79.29029883c0-43.69401562-34.96364785-79.29029883-78.32025742-79.29029882a78.82636652 78.82636652 0 0 0-78.32025823 79.29029883c0 43.69401562 34.96364785 79.29029883 78.32025824 79.29029883z m1e-8-51.74957208a27.07679361 27.07679361 0 0 1-26.57068534-27.54072675c0-15.30977536 11.97789643-27.54072593 26.57068534-27.54072591 14.55061295 0 26.57068533 12.23095057 26.57068451 27.54072592a27.07679361 27.07679361 0 0 1-26.57068451 27.54072674zM378.80916809 433.85687983a78.82636652 78.82636652 0 0 0 78.32025824-79.29029883c0-43.69401562-34.96364785-79.29029883-78.32025824-79.29029802a78.82636652 78.82636652 0 0 0-78.32025742 79.29029802c0 43.69401562 34.96364785 79.29029883 78.32025742 79.29029883z m0-51.74957209a27.07679361 27.07679361 0 0 1-26.57068451-27.54072674c0-15.30977536 11.97789643-27.54072593 26.57068451-27.54072593 14.55061295 0 26.57068533 12.23095057 26.57068533 27.54072593a27.07679361 27.07679361 0 0 1-26.57068533 27.54072674z" p-id="2510"></path></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1575804206892" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3145" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M826.56 470.016c-32.896 0-64.384 12.288-89.984 35.52l0-104.96c0-62.208-50.496-112.832-112.64-113.088L623.936 287.04 519.552 287.104C541.824 262.72 554.56 230.72 554.56 197.12c0-73.536-59.904-133.44-133.504-133.44-73.472 0-133.376 59.904-133.376 133.44 0 32.896 12.224 64.256 35.52 89.984L175.232 287.104l0 0.576C113.728 288.704 64 338.88 64 400.576l0.32 0 0.32 116.48C60.864 544.896 70.592 577.728 100.8 588.48c12.736 4.608 37.632 7.488 60.864-25.28 12.992-18.368 34.24-29.248 56.64-29.248 38.336 0 69.504 31.104 69.504 69.312 0 38.4-31.168 69.504-69.504 69.504-22.656 0-44.032-11.264-57.344-30.4C138.688 610.112 112.576 615.36 102.464 619.136c-29.824 10.752-39.104 43.776-38.144 67.392l0 160.384L64 846.912C64 909.248 114.752 960 177.216 960l446.272 0c62.4 0 113.152-50.752 113.152-113.152l0-145.024c24.384 22.272 56.384 35.008 89.984 35.008 73.536 0 133.44-59.904 133.44-133.504C960 529.92 900.096 470.016 826.56 470.016zM826.56 672.896c-22.72 0-44.032-11.264-57.344-30.4-22.272-32.384-48.448-27.136-58.56-23.36-29.824 10.752-39.04 43.776-38.08 67.392l0 160.384c0 27.136-22.016 49.152-49.152 49.152L177.216 896.064C150.08 896 128 873.984 128 846.848l0.32 0 0-145.024c24.384 22.272 56.384 35.008 89.984 35.008 73.6 0 133.504-59.904 133.504-133.504 0-73.472-59.904-133.376-133.504-133.376-32.896 0-64.32 12.288-89.984 35.52l0-104.96L128 400.512c0-27.072 22.08-49.152 49.216-49.152L177.216 351.04 334.656 350.72c3.776 0.512 7.616 0.832 11.52 0.832 24.896 0 50.752-10.816 60.032-37.056 4.544-12.736 7.424-37.568-25.344-60.736C362.624 240.768 351.68 219.52 351.68 197.12c0-38.272 31.104-69.44 69.376-69.44 38.336 0 69.504 31.168 69.504 69.44 0 22.72-11.264 44.032-30.528 57.472C427.968 276.736 433.088 302.784 436.8 313.024c10.752 29.888 43.072 39.232 67.392 38.08l119.232 0 0 0.384c27.136 0 49.152 22.08 49.152 49.152l0.256 116.48c-3.776 27.84 6.016 60.736 36.224 71.488 12.736 4.608 37.632 7.488 60.8-25.28 13.056-18.368 34.24-29.248 56.704-29.248C864.832 534.016 896 565.12 896 603.392 896 641.728 864.832 672.896 826.56 672.896z" p-id="3146"></path></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

@ -0,0 +1 @@
<svg width="128" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M27.429 63.638c0-2.508-.893-4.65-2.679-6.424-1.786-1.775-3.94-2.662-6.464-2.662-2.524 0-4.679.887-6.465 2.662-1.785 1.774-2.678 3.916-2.678 6.424 0 2.508.893 4.65 2.678 6.424 1.786 1.775 3.94 2.662 6.465 2.662 2.524 0 4.678-.887 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zm13.714-31.801c0-2.508-.893-4.65-2.679-6.424-1.785-1.775-3.94-2.662-6.464-2.662-2.524 0-4.679.887-6.464 2.662-1.786 1.774-2.679 3.916-2.679 6.424 0 2.508.893 4.65 2.679 6.424 1.785 1.774 3.94 2.662 6.464 2.662 2.524 0 4.679-.888 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zM71.714 65.98l7.215-27.116c.285-1.23.107-2.378-.536-3.443-.643-1.064-1.56-1.762-2.75-2.094-1.19-.33-2.333-.177-3.429.462-1.095.639-1.81 1.573-2.143 2.804l-7.214 27.116c-2.857.237-5.405 1.266-7.643 3.088-2.238 1.822-3.738 4.152-4.5 6.992-.952 3.644-.476 7.098 1.429 10.364 1.905 3.265 4.69 5.37 8.357 6.317 3.667.947 7.143.474 10.429-1.42 3.285-1.892 5.404-4.66 6.357-8.305.762-2.84.619-5.607-.429-8.305-1.047-2.697-2.762-4.85-5.143-6.46zm47.143-2.342c0-2.508-.893-4.65-2.678-6.424-1.786-1.775-3.94-2.662-6.465-2.662-2.524 0-4.678.887-6.464 2.662-1.786 1.774-2.679 3.916-2.679 6.424 0 2.508.893 4.65 2.679 6.424 1.786 1.775 3.94 2.662 6.464 2.662 2.524 0 4.679-.887 6.465-2.662 1.785-1.775 2.678-3.916 2.678-6.424zm-45.714-45.43c0-2.509-.893-4.65-2.679-6.425C68.68 10.01 66.524 9.122 64 9.122c-2.524 0-4.679.887-6.464 2.661-1.786 1.775-2.679 3.916-2.679 6.425 0 2.508.893 4.65 2.679 6.424 1.785 1.774 3.94 2.662 6.464 2.662 2.524 0 4.679-.888 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zm32 13.629c0-2.508-.893-4.65-2.679-6.424-1.785-1.775-3.94-2.662-6.464-2.662-2.524 0-4.679.887-6.464 2.662-1.786 1.774-2.679 3.916-2.679 6.424 0 2.508.893 4.65 2.679 6.424 1.785 1.774 3.94 2.662 6.464 2.662 2.524 0 4.679-.888 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zM128 63.638c0 12.351-3.357 23.78-10.071 34.286-.905 1.372-2.19 2.058-3.858 2.058H13.93c-1.667 0-2.953-.686-3.858-2.058C3.357 87.465 0 76.037 0 63.638c0-8.613 1.69-16.847 5.071-24.703C8.452 31.08 13 24.312 18.714 18.634c5.715-5.68 12.524-10.199 20.429-13.559C47.048 1.715 55.333.035 64 .035c8.667 0 16.952 1.68 24.857 5.04 7.905 3.36 14.714 7.88 20.429 13.559 5.714 5.678 10.262 12.446 13.643 20.301 3.38 7.856 5.071 16.09 5.071 24.703z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1579774833889" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1376" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M887.466667 192.853333h-100.693334V119.466667c0-10.24-6.826667-17.066667-17.066666-17.066667s-17.066667 6.826667-17.066667 17.066667v73.386666H303.786667V119.466667c0-10.24-6.826667-17.066667-17.066667-17.066667s-17.066667 6.826667-17.066667 17.066667v73.386666H168.96c-46.08 0-85.333333 37.546667-85.333333 85.333334V836.266667c0 46.08 37.546667 85.333333 85.333333 85.333333H887.466667c46.08 0 85.333333-37.546667 85.333333-85.333333V278.186667c0-47.786667-37.546667-85.333333-85.333333-85.333334z m-718.506667 34.133334h100.693333v66.56c0 10.24 6.826667 17.066667 17.066667 17.066666s17.066667-6.826667 17.066667-17.066666v-66.56h450.56v66.56c0 10.24 6.826667 17.066667 17.066666 17.066666s17.066667-6.826667 17.066667-17.066666v-66.56H887.466667c27.306667 0 51.2 22.186667 51.2 51.2v88.746666H117.76v-88.746666c0-29.013333 22.186667-51.2 51.2-51.2zM887.466667 887.466667H168.96c-27.306667 0-51.2-22.186667-51.2-51.2V401.066667H938.666667V836.266667c0 27.306667-22.186667 51.2-51.2 51.2z" p-id="1377"></path><path d="M858.453333 493.226667H327.68c-10.24 0-17.066667 6.826667-17.066667 17.066666v114.346667h-116.053333c-10.24 0-17.066667 6.826667-17.066667 17.066667v133.12c0 10.24 6.826667 17.066667 17.066667 17.066666H460.8c10.24 0 17.066667-6.826667 17.066667-17.066666v-114.346667h380.586666c10.24 0 17.066667-6.826667 17.066667-17.066667v-133.12c0-10.24-6.826667-17.066667-17.066667-17.066666z m-413.013333 34.133333v97.28h-98.986667v-97.28h98.986667z m-230.4 131.413333h98.986667v98.986667h-98.986667v-98.986667z m131.413333 97.28v-97.28h98.986667v97.28h-98.986667z m133.12-228.693333h97.28v98.986667h-97.28v-98.986667z m131.413334 0h98.986666v98.986667h-98.986666v-98.986667z m230.4 97.28h-98.986667v-98.986667h98.986667v98.986667z" p-id="1378"></path></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1577186573535" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1068" xmlns:xlink="http://www.w3.org/1999/xlink" width="81" height="81"><defs><style type="text/css"></style></defs><path d="M479.85714249 608.42857168h64.28571502c19.28571417 0 32.14285751-12.85714249 32.14285664-32.14285751s-12.85714249-32.14285751-32.14285664-32.14285664h-64.28571504c-19.28571417 0-32.14285751 12.85714249-32.14285664 32.14285662s12.85714249 32.14285751 32.14285664 32.14285753z m-2e-8 122.14285665h64.28571504c19.28571417 0 32.14285751-12.85714249 32.14285664-32.14285665s-12.85714249-32.14285751-32.14285664-32.14285751h-64.28571504c-19.28571417 0-32.14285751 12.85714249-32.14285664 32.14285751s12.85714249 32.14285751 32.14285664 32.14285664z m353.57142921-559.28571416h-128.57142921v-32.14285664c0-19.28571417-12.85714249-32.14285751-32.14285664-32.14285753s-32.14285751 12.85714249-32.14285751 32.14285753v32.14285664h-257.14285665v-32.14285664c0-19.28571417-12.85714249-32.14285751-32.14285752-32.14285753s-32.14285751 12.85714249-32.14285664 32.14285753v32.14285664h-128.57142919c-70.71428585 0-128.57142832 57.85714249-128.57142832 122.14285751v501.42857081c0 70.71428585 57.85714249 128.57142832 128.57142832 122.14285751h642.85714335c70.71428585 0 128.57142832-57.85714249 128.57142833-122.14285751v-501.42857081c0-70.71428585-57.85714249-122.14285753-128.57142833-122.14285751z m64.28571415 623.57142832c0 32.14285751-32.14285751 64.28571415-64.28571416 64.28571504h-642.85714335c-32.14285751 0-64.28571415-25.71428583-64.28571417-64.28571504v-372.85714249h771.42857168v372.85714249z m0-437.14285664h-771.42857168v-64.28571417c0-32.14285751 32.14285751-64.28571415 64.28571417-64.28571415h128.57142919v32.14285664c0 19.28571417 12.85714249 32.14285751 32.14285664 32.14285751s32.14285751-12.85714249 32.14285753-32.14285751v-32.14285664h257.14285665v32.14285664c0 19.28571417 12.85714249 32.14285751 32.1428575 32.14285751s32.14285751-12.85714249 32.14285664-32.14285751v-32.14285664h128.57142921c32.14285751 0 64.28571415 25.71428583 64.28571415 64.28571415v64.28571417z m-610.71428583 372.85714247h64.28571415c19.28571417 0 32.14285751-12.85714249 32.14285753-32.14285664s-12.85714249-32.14285751-32.14285753-32.14285751h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285751 32.14285751s12.85714249 32.14285751 32.14285751 32.14285665z m385.71428583-122.14285664h64.28571417c19.28571417 0 32.14285751-12.85714249 32.14285751-32.14285751s-12.85714249-32.14285751-32.14285751-32.14285664h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285753 32.14285664s12.85714249 32.14285751 32.14285753 32.14285751z m-385.71428583 0h64.28571415c19.28571417 0 32.14285751-12.85714249 32.14285753-32.14285751s-12.85714249-32.14285751-32.14285753-32.14285664h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285751 32.14285664s12.85714249 32.14285751 32.14285751 32.14285751z m385.71428583 122.14285665h64.28571417c19.28571417 0 32.14285751-12.85714249 32.14285751-32.14285665s-12.85714249-32.14285751-32.14285751-32.14285751h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285753 32.14285751s12.85714249 32.14285751 32.14285753 32.14285665z" p-id="1069"></path></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

@ -0,0 +1 @@
<svg t="1697595770128" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="38750" width="16" height="16"><path d="M597.334 68.266h-170.666c-18.844 0.018-34.114 15.29-34.134 34.134v34.134c0.018 18.844 15.29 34.114 34.134 34.134h170.666c18.844-0.018 34.114-15.29 34.134-34.134V102.4c-0.02-18.844-15.292-34.114-34.134-34.134z m-68.268 68.268h-102.4V102.4h102.4v34.134z m34.134 0V102.4h34.134l0.024 34.134H563.2zM135.166 795.642a13.044 13.044 0 0 0-1.542-3.066 317.62 317.62 0 0 0-2.042-2.558c-0.858-0.682-1.708-1.366-2.558-2.05a12.996 12.996 0 0 0-3.076-1.542 10.78 10.78 0 0 0-3.076-1.016 17.078 17.078 0 1 0-3.41 33.792c1.142-0.04 2.28-0.154 3.408-0.342a11.104 11.104 0 0 0 3.074-1.024 13.034 13.034 0 0 0 3.076-1.542c0.85-0.674 1.7-1.358 2.558-2.042a17.976 17.976 0 0 0 4.95-12.116 26.42 26.42 0 0 0-0.342-3.416 10.926 10.926 0 0 0-1.02-3.078zM175.616 790.016c-0.682 0.85-1.366 1.7-2.05 2.558a13.16 13.16 0 0 0-1.542 3.066 10.83 10.83 0 0 0-1.016 3.074 25.11 25.11 0 0 0-0.342 3.418 17.14 17.14 0 0 0 29.184 12.118 17.306 17.306 0 0 0 0-24.234 17.864 17.864 0 0 0-24.234 0zM271.7 795.642a13.044 13.044 0 0 0-1.542-3.066 24.88 24.88 0 0 0-2.042-2.558 17.866 17.866 0 0 0-24.234 0c-0.738 0.808-1.422 1.662-2.05 2.558a13.16 13.16 0 0 0-1.542 3.066 10.768 10.768 0 0 0-1.016 3.074 25.11 25.11 0 0 0-0.342 3.418 17.934 17.934 0 0 0 4.95 12.118 19.826 19.826 0 0 0 5.626 3.584 16.08 16.08 0 0 0 12.974 0 19.866 19.866 0 0 0 5.634-3.584 17.976 17.976 0 0 0 4.95-12.118 26.42 26.42 0 0 0-0.342-3.416 11.072 11.072 0 0 0-1.024-3.076z" fill="" p-id="38751"></path><path d="M989.866 597.334h-307.2c-18.844 0.018-34.114 15.29-34.134 34.134V716.8h-70.69a68.168 68.168 0 0 0-48.776-48.776V563.2H665.6c18.844-0.018 34.114-15.29 34.134-34.134v-204.8a34.014 34.014 0 0 0-17.066-29.386v-43.628a34.018 34.018 0 0 0 17.066-29.386V34.134C699.714 15.29 684.444 0.018 665.6 0H358.4c-18.844 0.018-34.114 15.29-34.134 34.134v187.734a34.018 34.018 0 0 0 17.066 29.386v43.628a34.018 34.018 0 0 0-17.066 29.386v204.8c0.018 18.844 15.29 34.114 34.134 34.134h136.534v104.824a68.168 68.168 0 0 0-48.776 48.776h-70.69v-85.334c-0.018-18.844-15.29-34.114-34.134-34.134h-307.2C15.29 597.352 0.018 612.624 0 631.466v221.866c0.018 18.844 15.29 34.114 34.134 34.134h85.334V921.6c-28.264 0.03-51.17 22.936-51.2 51.2v34.134A17.066 17.066 0 0 0 85.334 1024h204.8a17.066 17.066 0 0 0 17.066-17.066V972.8c-0.03-28.264-22.936-51.17-51.2-51.2v-34.134h85.334c18.844-0.018 34.114-15.29 34.134-34.134v-102.4h70.69c7.654 30.118 34.768 51.202 65.844 51.202s58.188-21.084 65.844-51.202h70.69v102.4c0.018 18.844 15.29 34.114 34.134 34.134H768V921.6c-28.264 0.03-51.17 22.936-51.2 51.2v34.134a17.066 17.066 0 0 0 17.066 17.066h204.8a17.066 17.066 0 0 0 17.066-17.066V972.8c-0.03-28.264-22.936-51.17-51.2-51.2v-34.134h85.334c18.844-0.018 34.114-15.29 34.134-34.134V631.466c-0.018-18.842-15.29-34.114-34.134-34.132zM273.066 972.8v17.066H102.4V972.8a17.088 17.088 0 0 1 17.066-17.066H256a17.088 17.088 0 0 1 17.066 17.066zM153.6 921.6v-34.134h68.266V921.6H153.6z m85.334-68.266h-204.8V631.466h307.2l0.012 102.342-0.012 0.058 0.012 0.058 0.014 119.41h-102.426z m119.466-819.2l307.2 0.05v187.684H358.4V34.134zM648.534 256v34.134H375.466V256h273.068zM426.666 529.066v-102.4a17.066 17.066 0 0 0-34.132 0v102.4H358.4v-204.8h34.134V358.4c0 9.426 7.64 17.066 17.066 17.066s17.066-7.64 17.066-17.066v-34.134H665.6v204.8H426.666zM512 768c-18.852 0-34.134-15.282-34.134-34.134s15.282-34.134 34.134-34.134 34.134 15.282 34.134 34.134c-0.02 18.844-15.29 34.116-34.134 34.134z m409.6 204.8v17.066h-170.666V972.8a17.088 17.088 0 0 1 17.066-17.066h136.534a17.088 17.088 0 0 1 17.066 17.066z m-119.466-51.2v-34.134H870.4V921.6h-68.266z m85.332-68.266h-204.8V631.466h307.2l0.024 221.866h-102.424z" fill="" p-id="38752"></path><path d="M783.7 795.642a13.044 13.044 0 0 0-1.542-3.066c-0.674-0.858-1.358-1.708-2.042-2.558-0.858-0.682-1.708-1.366-2.558-2.05a12.996 12.996 0 0 0-3.076-1.542 10.768 10.768 0 0 0-3.074-1.016A17.076 17.076 0 1 0 768 819.202c1.142-0.04 2.282-0.154 3.408-0.342a11.104 11.104 0 0 0 3.074-1.024 13.034 13.034 0 0 0 3.076-1.542c0.85-0.674 1.7-1.358 2.558-2.042a17.976 17.976 0 0 0 4.95-12.116 26.42 26.42 0 0 0-0.342-3.416 11.064 11.064 0 0 0-1.024-3.078zM824.15 790.016c-0.682 0.85-1.366 1.7-2.05 2.558a13.16 13.16 0 0 0-1.542 3.066 10.768 10.768 0 0 0-1.016 3.074 24.794 24.794 0 0 0-0.34 3.418 17.14 17.14 0 0 0 29.184 12.118 17.306 17.306 0 0 0 0-24.234 17.866 17.866 0 0 0-24.236 0zM920.234 795.642a13.044 13.044 0 0 0-1.542-3.066 24.88 24.88 0 0 0-2.042-2.558 17.866 17.866 0 0 0-24.234 0c-0.738 0.808-1.422 1.662-2.05 2.558a13.16 13.16 0 0 0-1.542 3.066 10.768 10.768 0 0 0-1.016 3.074 25.11 25.11 0 0 0-0.342 3.418 17.934 17.934 0 0 0 4.95 12.118 19.826 19.826 0 0 0 5.626 3.584 16.08 16.08 0 0 0 12.974 0 19.866 19.866 0 0 0 5.634-3.584 17.976 17.976 0 0 0 4.95-12.118 26.42 26.42 0 0 0-0.342-3.416 11.14 11.14 0 0 0-1.024-3.076z" fill="" p-id="38753"></path></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1566035680909" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3601" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M1002.0848 744.672l-33.568 10.368c0.96 7.264 2.144 14.304 2.144 21.76 0 7.328-1.184 14.432-2.368 21.568l33.792 10.56c7.936 2.24 14.496 7.616 18.336 14.752 3.84 7.328 4.672 15.808 1.952 23.552-5.376 16-23.168 24.672-39.936 19.68l-34.176-10.624c-7.136 12.8-15.776 24.672-26.208 35.2l20.8 27.488a28.96 28.96 0 0 1 5.824 22.816 29.696 29.696 0 0 1-12.704 19.616 32.544 32.544 0 0 1-44.416-6.752l-20.8-27.552c-13.696 6.56-28.192 11.2-43.008 13.888v33.632c0 16.736-14.112 30.432-31.648 30.432-17.6 0-31.872-13.696-31.872-30.432v-33.632a167.616 167.616 0 0 1-42.88-13.888l-20.928 27.552c-10.72 13.76-30.08 16.64-44.288 6.752a29.632 29.632 0 0 1-12.704-19.616 29.28 29.28 0 0 1 5.696-22.816l20.896-27.808a166.72 166.72 0 0 1-27.008-34.688l-33.376 10.432c-16.8 5.184-34.56-3.552-39.936-19.616a29.824 29.824 0 0 1 20.224-38.24l33.472-10.432c-0.8-7.264-2.016-14.304-2.016-21.824 0-7.36 1.184-14.496 2.304-21.632l-33.792-10.368c-16.672-5.376-25.632-22.496-20.224-38.432 5.376-16 23.136-24.672 39.936-19.68l34.016 10.752c7.328-12.672 15.84-24.8 26.336-35.328l-20.8-27.552a29.44 29.44 0 0 1 6.944-42.432 32.704 32.704 0 0 1 44.384 6.752l20.832 27.616c13.696-6.432 28.224-11.2 43.104-13.952v-33.568c0-16.736 14.048-30.432 31.648-30.432 17.536 0 31.808 13.568 31.808 30.432v33.504c15.072 2.688 29.344 7.808 42.848 14.016l20.992-27.616a32.48 32.48 0 0 1 44.224-6.752 29.568 29.568 0 0 1 7.136 42.432l-21.024 27.808c10.432 10.432 19.872 21.888 27.04 34.752l33.376-10.432c16.768-5.12 34.56 3.68 39.936 19.68 5.536 15.936-3.712 33.056-20.32 38.304z m-206.016-74.432c-61.344 0-111.136 47.808-111.136 106.56 0 58.88 49.792 106.496 111.136 106.496 61.312 0 111.104-47.616 111.104-106.496 0-58.752-49.792-106.56-111.104-106.56z" p-id="3602"></path><path d="M802.7888 57.152h-76.448c0-22.08-21.024-38.24-42.848-38.24H39.3968a39.68 39.68 0 0 0-39.36 40.032v795.616s41.888 120.192 110.752 120.192H673.2848a227.488 227.488 0 0 1-107.04-97.44H117.6368s-40.608-13.696-40.608-41.248l470.304-0.256 1.664 3.36a227.68 227.68 0 0 1-12.64-73.632c0-60.576 24-118.624 66.88-161.44a228.352 228.352 0 0 1 123.552-63.392l-3.2 0.288 2.144-424.672h38.208l0.576 421.024c27.04 0 52.672 4.8 76.64 13.344V101.536c0.032 0-6.304-44.384-38.368-44.384zM149.7648 514.336H72.3888v-77.408H149.7648v77.408z m0-144.32H72.3888v-77.44H149.7648v77.44z m0-137.248H72.3888v-77.44H149.7648v77.44z m501.856 281.568H206.0848v-77.408h445.536v77.408z m0-144.32H206.0848v-77.44h445.536v77.44z m0-137.248H206.0848v-77.44h445.536v77.44z" p-id="3603"></path></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M460.2 849.8h-232c-11.1 0-20.4-10.2-20.4-22.2v-635c0-12 9.3-22.2 20.4-22.2h514.7c11.1 0 20.4 10.2 20.4 22.2v312.1c0 16.6 13.4 30 30 30s30-13.4 30-30V192.6c0-45.3-36.1-82.2-80.4-82.2H228.1c-44.3 0-80.4 36.9-80.4 82.2v634.9c0 45.3 36.1 82.2 80.4 82.2h232c16.6 0 30-13.4 30-30s-13.4-29.9-29.9-29.9zM856.1 783.3c-11.8-8.1-18.9-21.5-18.9-35.8 0-14.2 7-27.6 18.6-35.6l13.6-9.5-5.6-15.5c-7.5-21.1-18.8-40.5-33.6-57.5l-10.7-12.3-14.7 6.9c-5.8 2.7-12 4.1-18.3 4.1-22.6 0-41.2-16.9-43.3-39.4l-1.5-16.3-16-3c-21.9-4.1-44.7-4.1-66.5 0l-16 3-1.5 16.3c-2 22.5-20.7 39.4-43.3 39.4-6.3 0-12.6-1.4-18.3-4.1l-14.7-6.9-10.7 12.3c-14.7 17-25.9 36.4-33.6 57.5l-5.6 15.5 13.6 9.5c11.7 8.2 18.6 21.5 18.6 35.6 0 14.3-7.1 27.8-18.9 35.8l-13.6 9.3 5.4 15.6c7.3 21.1 18.4 40.5 32.9 57.6l10.8 12.7 15.1-7.3c5.9-2.9 12.3-4.3 18.9-4.3 22.8 0 41.9 17.8 43.4 40.5l1.1 16.7 16.5 3c10.9 2 22.1 3 33.2 3 11.1 0 22.3-1 33.2-3l16.5-3 1.1-16.7c1.5-22.7 20.6-40.5 43.4-40.5 6.7 0 13 1.5 18.9 4.3l15.1 7.3 10.8-12.7c14.5-17.1 25.6-36.5 32.9-57.6l5.4-15.6-13.7-9.3z m-48.7 43.1c-6.8-1.6-13.7-2.5-20.8-2.5-39.2 0-72.9 26.5-83.2 62.9-7.2 0.5-14.5 0.5-21.7 0-10.3-36.4-44-62.9-83.2-62.9-7.1 0-14 0.9-20.8 2.5-4.1-6-7.8-12.4-10.9-18.9 15.3-15.9 24.1-37.4 24.1-59.9 0-22.3-8.6-43.5-23.6-59.3 3.2-6.8 7-13.2 11.3-19.4 6.5 1.5 13.1 2.3 19.8 2.3 21.7 0 42.5-8.1 58.5-22.7 11.5-10.5 19.8-23.8 24.2-38.4 7.5-0.6 15.1-0.6 22.6 0 4.5 14.6 12.8 27.9 24.2 38.4 16 14.6 36.7 22.7 58.5 22.7 6.8 0 13.4-0.8 19.8-2.3 4.3 6.1 8.1 12.6 11.3 19.4-15 15.9-23.6 37.1-23.6 59.3 0 22.6 8.8 43.9 24.1 59.9-2.9 6.5-6.6 12.8-10.6 18.9zM692.5 671.7c-42.2 0-76.6 34.3-76.6 76.6 0 42.2 34.3 76.6 76.6 76.6s76.6-34.3 76.6-76.6-34.4-76.6-76.6-76.6z m0 110.1c-18.5 0-33.6-15.1-33.6-33.6s15.1-33.6 33.6-33.6 33.6 15.1 33.6 33.6-15.1 33.6-33.6 33.6zM651.8 296H319.1c-16.6 0-30 13.4-30 30s13.4 30 30 30h332.7c16.6 0 30-13.4 30-30s-13.4-30-30-30z m30 186.1c0-16.6-13.4-30-30-30H319.1c-16.6 0-30 13.4-30 30s13.4 30 30 30h332.7c16.6 0 30-13.4 30-30zM319.6 608.2c-16.6 0-30 13.4-30 30s13.4 30 30 30h139.8c16.6 0 30-13.4 30-30s-13.4-30-30-30H319.6z" /></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M588.446932 345.904457c0-5.628623-4.605237-10.23386-10.23386-10.23386L246.636018 335.670598c-5.628623 0-10.23386 4.605237-10.23386 10.23386l0 2.046772c0 5.628623 4.605237 10.23386 10.23386 10.23386l331.577054 0c5.628623 0 10.23386-4.605237 10.23386-10.23386L588.446932 345.904457zM246.124325 443.126124c-5.628623 0-9.722167 4.502898-9.722167 10.131521l0 2.046772c0 5.628623 4.093544 10.336198 9.722167 10.336198L530.113932 465.640616l19.341995-22.514491c-0.102339 0-0.307016 0-0.409354 0L246.124325 443.126124zM236.402159 556.619628l0 2.046772c0 5.628623 4.40056 10.336198 10.029182 10.336198L441.079352 569.002598l19.444333-22.514491L246.431341 546.488107C240.802718 546.488107 236.402159 550.991005 236.402159 556.619628zM236.402159 663.051769l0 2.046772c0 5.628623 4.298221 10.336198 9.926844 10.336198l152.484509 0 8.289426-22.514491L246.329003 652.920248C240.70038 652.920248 236.402159 657.423146 236.402159 663.051769zM246.226664 760.375775c-5.628623 0-9.824505 4.809914-9.824505 10.438537l0 2.046772c0 5.628623 4.195882 10.029182 9.824505 10.029182l118.712772 0c1.228063 0 2.353788-0.102339 3.377174-0.511693-3.888867-3.581851-5.8333-9.210474-3.684189-15.043774l2.456126-6.652009c-0.71637-0.102339-1.43274-0.307016-2.149111-0.307016L246.226664 760.375775zM951.851289 222.177094l-100.803518-86.885469c-11.564261-9.926844-29.064162-8.596442-38.991005 2.865481L711.253248 255.334799 711.253248 225.144913 582.306616 88.011193l-36.330202 0L159.238857 88.011193c-32.748351 0-59.970418 26.608035-59.970418 59.356386l0 720.463722c0 32.748351 27.222067 59.356386 59.970418 59.356386l491.429942 0c32.748351 0 59.254048-26.608035 59.254048-59.254048l0.71637-323.389966L954.819109 261.065761C964.745952 249.603838 963.415551 232.103938 951.851289 222.177094zM665.098541 867.831301c0 7.777733-6.652009 14.327404-14.429742 14.327404L159.238857 882.158705c-7.880072 0-14.941435-6.54967-14.941435-14.327404L144.297422 147.367579c0-7.777733 7.061363-14.327404 14.941435-14.327404L545.464721 133.040176l0 124.853088 121.271237 0-0.102339 49.224865L549.455926 443.023786l-19.341995 22.514491-69.692584 80.847492-19.444333 22.514491-0.307016 0.409354c-0.511693 0.614032-1.023386 1.228063-1.43274 1.842095-1.842095 1.739756-3.377174 3.991205-4.40056 6.54967l-27.836098 75.11653-8.289426 22.514491-31.622626 85.452728-2.456126 6.652009c-2.149111 5.8333-0.204677 11.564261 3.684189 15.043774 3.786528 3.479512 9.415151 4.912253 14.941435 2.456126l191.270837-85.043374c2.967819-1.330402 5.423946-3.377174 7.163702-5.935639 0.511693-0.511693 1.125725-1.125725 1.637418-1.739756l82.484909-95.686588L665.098541 867.831301zM425.93324 702.042774l30.59924-82.689586 72.558065 62.528883-84.531681 37.558265C411.298821 733.460724 411.298821 733.460724 425.93324 702.042774zM561.736558 664.075155 471.780931 586.604837l362.073956-420.202279 89.955627 77.470318L561.736558 664.075155zM824.746752 250.320208 541.1665 581.385569c-4.40056 5.11693-3.786528 12.894663 1.330402 17.295223l0 0c5.11693 4.40056 12.894663 3.786528 17.295223-1.330402l283.580252-331.065361c4.40056-5.11693 3.786528-12.894663-1.330402-17.295223C836.925045 244.589246 829.147312 245.203278 824.746752 250.320208z" fill="#272636" /></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M512 621.696l-150.848-150.826667 30.165333-30.186666L512 561.365333l120.682667-120.682666 30.165333 30.165333L512 621.696z m150.848-150.826667l-30.165333-30.186666a170.666667 170.666667 0 1 0-241.365334 0L361.173333 470.826667c-83.306667-83.306667-83.306667-218.389333 0-301.696 83.306667-83.306667 218.389333-83.306667 301.696 0 83.306667 83.306667 83.306667 218.389333 0 301.696zM512 362.666667a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z m-134.186667 365.290666a21.333333 21.333333 0 1 1 30.144-30.165333l110.634667 110.613333L857.664 469.333333H768v-42.666666h106.538667A63.936 63.936 0 0 1 938.666667 490.474667V874.88A64 64 0 0 1 874.602667 938.666667H149.397333A63.914667 63.914667 0 0 1 85.333333 874.858667V490.453333A63.808 63.808 0 0 1 149.461333 426.666667H256v42.666666H149.461333A21.141333 21.141333 0 0 0 128 490.474667v302.208l200.042667-200.042667a21.205333 21.205333 0 0 1 30.058666 0.128c8.32 8.32 8.192 21.973333 0.106667 30.037333L130.474667 850.56a21.333333 21.333333 0 0 1-2.474667 2.133333v22.186667c0 11.669333 9.536 21.141333 21.397333 21.141333h396.437334l-168.042667-168.042666zM874.581333 896A21.333333 21.333333 0 0 0 896 874.858667V491.050667a21.973333 21.973333 0 0 1-1.984 2.261333L548.757333 838.592l54.186667 54.186667c1.002667 1.002667 1.898667 2.090667 2.666667 3.221333h269.013333z" fill="#3D3D3D" /></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="14.41px" viewBox="0 0 1137 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M124.7232 467.614255v467.614254s-15.453091 77.935709 52.317091 77.935709H961.629091s52.335709 11.170909 52.335709-51.944727V467.614255l-52.335709 25.990981v441.623273s5.082764 25.990982-26.121309 25.990982H203.180218s-26.139927 0.390982-26.139927-25.990982v-441.623273l-52.317091-25.990981z" /><path d="M1056.079127 519.298327H84.098327S3.239564 512.837818 0 454.618764c24.259491-80.858764 97.037964-329.728 97.037964-329.728s32.339782-67.919127 109.9776-66.299346H927.930182s67.639855 8.527127 97.093818 67.490909c20.182109 41.890909 98.974255 328.536436 98.974255 328.536437s0 64.679564-67.919128 64.679563zM982.779345 166.074182c-25.376582-50.771782-83.614255-58.107345-83.614254-58.107346H236.432291c-66.857891-1.396364-94.710691 57.101964-94.710691 57.101964s-62.687418 177.729164-83.577018 247.361164c2.792727 50.138764 72.424727 55.7056 72.424727 55.7056h878.945746c58.498327 0 58.498327-55.7056 58.498327-55.7056S1000.150109 202.156218 982.779345 166.074182zM569.344 831.301818H307.795782a52.130909 52.130909 0 0 1-52.298473-51.963345v-103.889455a52.130909 52.130909 0 0 1 52.298473-51.963345H569.344a52.130909 52.130909 0 0 1 52.298473 51.963345v103.889455A52.112291 52.112291 0 0 1 569.344 831.301818z m12.734836-129.973527c0-19.027782-15.508945-33.289309-34.667054-33.289309H332.148364a34.573964 34.573964 0 0 0-34.685673 34.443636v45.633164c0 19.009164 15.527564 34.443636 34.685673 34.443636h215.263418a34.536727 34.536727 0 0 0 34.667054-34.443636v-46.787491zM690.7904 975.927855V690.176h223.194764v285.751855H690.7904zM876.544 724.042473h-150.006691v251.810909H876.544V724.042473z" /><path d="M540.690618 150.7328h57.288146v257.079855h-57.288146V150.7328zM758.690909 163.467636l55.351855-14.782836 81.529018 246.3744-55.333237 14.801455L758.690909 163.467636zM324.663855 148.6848l55.333236 14.782836-81.547636 246.393019-55.333237-14.801455 81.547637-246.3744z" /></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M71.984 44.815H115.9L71.984 9.642v35.173zM16.094.05h63.875l47.906 38.37v76.74c0 3.392-1.682 6.645-4.677 9.044-2.995 2.399-7.056 3.746-11.292 3.746H16.094c-4.236 0-8.297-1.347-11.292-3.746-2.995-2.399-4.677-5.652-4.677-9.044V12.84C.125 5.742 7.23.05 16.094.05zm71.86 102.32V89.58h-71.86v12.79h71.86zm23.952-25.58V64H16.094v12.79h95.812z"/></svg>

After

Width:  |  Height:  |  Size: 418 B

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1569915748289" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3062" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M768.35456 416a256 256 0 1 0-512 0 192 192 0 1 0 0 384v64a256 256 0 0 1-58.88-505.216 320.128 320.128 0 0 1 629.76 0A256.128 256.128 0 0 1 768.35456 864v-64a192 192 0 0 0 0-384z m-512 384h64v64H256.35456v-64z m448 0h64v64h-64v-64z" fill="#333333" p-id="3063"></path><path d="M539.04256 845.248V512.192a32.448 32.448 0 0 0-32-32.192c-17.664 0-32 14.912-32 32.192v333.056l-36.096-36.096a32.192 32.192 0 0 0-45.056 0.192 31.616 31.616 0 0 0-0.192 45.056l90.88 90.944a31.36 31.36 0 0 0 22.528 9.088 30.08 30.08 0 0 0 22.4-9.088l90.88-90.88a32.192 32.192 0 0 0-0.192-45.12 31.616 31.616 0 0 0-45.056-0.192l-36.096 36.096z" fill="#333333" p-id="3064"></path></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M73.137 29.08h-9.209 29.7L63.886.093 34.373 29.08h20.49v27.035H27.238v17.948h27.625v27.133h18.274V74.063h27.41V56.115h-27.41V29.08zm-9.245 98.827l27.518-26.711H36.59l27.302 26.71zM.042 64.982l27.196 27.029V38.167L.042 64.982zm100.505-26.815V92.01l27.41-27.029-27.41-26.815z"/></svg>

After

Width:  |  Height:  |  Size: 356 B

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1566036347051" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5853" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M832 128H192a64.19 64.19 0 0 0-64 64v640a64.19 64.19 0 0 0 64 64h640a64.19 64.19 0 0 0 64-64V192a64.19 64.19 0 0 0-64-64z m0 703.89l-0.11 0.11H192.11l-0.11-0.11V768h640zM832 544H720L605.6 696.54 442.18 435.07 333.25 544H192v-64h114.75l147.07-147.07L610.4 583.46 688 480h144z m0-288H192v-63.89l0.11-0.11h639.78l0.11 0.11z" p-id="5854"></path></svg>

After

Width:  |  Height:  |  Size: 724 B

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M106.133 67.2a4.797 4.797 0 0 0-4.8 4.8c0 .187.014.36.027.533h-.027V118.4H9.6V26.667h50.133c2.654 0 4.8-2.147 4.8-4.8 0-2.654-2.146-4.8-4.8-4.8H9.6a9.594 9.594 0 0 0-9.6 9.6V118.4c0 5.307 4.293 9.6 9.6 9.6h91.733c5.307 0 9.6-4.293 9.6-9.6V72.533h-.026c.013-.173.026-.346.026-.533 0-2.653-2.146-4.8-4.8-4.8z"/><path d="M125.16 13.373L114.587 2.8c-3.747-3.747-9.854-3.72-13.6.027l-52.96 52.96a4.264 4.264 0 0 0-.907 1.36L33.813 88.533c-.746 1.76-.226 3.534.907 4.68 1.133 1.147 2.92 1.667 4.693.92l31.4-13.293c.507-.213.96-.52 1.36-.907l52.96-52.96c3.747-3.746 3.774-9.853.027-13.6zM66.107 72.4l-18.32 7.76 7.76-18.32L92.72 24.667l10.56 10.56L66.107 72.4zm52.226-52.227l-8.266 8.267-10.56-10.56 8.266-8.267.027-.026 10.56 10.56-.027.026z"/></svg>

After

Width:  |  Height:  |  Size: 818 B

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M88.883 119.565c-7.284 0-19.434 2.495-21.333 8.25v.127c-4.232.13-5.222 0-7.108 0-1.895-5.76-14.045-8.256-21.333-8.256H0V0h42.523c9.179 0 17.109 5.47 21.47 13.551C68.352 5.475 76.295 0 85.478 0H128v119.57l-39.113-.005h-.004zM60.442 24.763c0-9.651-8.978-16.507-17.777-16.507H7.108V111.43H39.11c7.054-.14 18.177.082 21.333 6.12v-4.628c-.134-5.722-.004-13.522 0-13.832V27.413l.004-2.655-.004.005zm60.442-16.517h-35.55c-8.802 0-17.78 6.856-17.78 16.493v74.259c.004.32.138 8.115 0 13.813v4.627c3.155-6.022 14.279-6.26 21.333-6.114h32V8.25l-.003-.005z"/></svg>

After

Width:  |  Height:  |  Size: 627 B

@ -0,0 +1 @@
<svg width="128" height="96" xmlns="http://www.w3.org/2000/svg"><path d="M64.125 56.975L120.188.912A12.476 12.476 0 0 0 115.5 0h-103c-1.588 0-3.113.3-4.513.838l56.138 56.137z"/><path d="M64.125 68.287l-62.3-62.3A12.42 12.42 0 0 0 0 12.5v71C0 90.4 5.6 96 12.5 96h103c6.9 0 12.5-5.6 12.5-12.5v-71a12.47 12.47 0 0 0-1.737-6.35L64.125 68.287z"/></svg>

After

Width:  |  Height:  |  Size: 347 B

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M96.258 57.462h31.421C124.794 27.323 100.426 2.956 70.287.07v31.422a32.856 32.856 0 0 1 25.971 25.97zm-38.796-25.97V.07C27.323 2.956 2.956 27.323.07 57.462h31.422a32.856 32.856 0 0 1 25.97-25.97zm12.825 64.766v31.421c30.46-2.885 54.507-27.253 57.713-57.712H96.579c-2.886 13.466-13.146 23.726-26.292 26.291zM31.492 70.287H.07c2.886 30.46 27.253 54.507 57.713 57.713V96.579c-13.466-2.886-23.726-13.146-26.291-26.292z"/></svg>

After

Width:  |  Height:  |  Size: 497 B

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M78.208 16.576v8.384h38.72v5.376h-38.72v8.704h38.72v5.376h-38.72v8.576h38.72v5.376h-38.72v8.576h38.72v5.376h-38.72v8.576h38.72v5.376h-38.72v8.512h38.72v5.376h-38.72v11.136H128v-94.72H78.208zM0 114.368L72.128 128V0L0 13.632v100.736z"/><path d="M28.672 82.56h-11.2l14.784-23.488-14.08-22.592h11.52l8.192 14.976 8.448-14.976h11.136l-14.08 22.208L58.368 82.56H46.656l-8.768-15.68z"/></svg>

After

Width:  |  Height:  |  Size: 459 B

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M49.217 41.329l-.136-35.24c-.06-2.715-2.302-4.345-5.022-4.405h-3.65c-2.712-.06-4.866 2.303-4.806 5.016l.152 19.164-24.151-23.79a6.698 6.698 0 0 0-9.499 0 6.76 6.76 0 0 0 0 9.526l23.93 23.713-18.345.074c-2.712-.069-5.228 1.813-5.64 5.02v3.462c.069 2.721 2.31 4.97 5.022 5.03l35.028-.207c.052.005.087.025.133.025l2.457.054a4.626 4.626 0 0 0 3.436-1.38c.88-.874 1.205-2.096 1.169-3.462l-.262-2.465c0-.048.182-.081.182-.136h.002zm52.523 51.212l18.32-.073c2.713.06 5.224-1.609 5.64-4.815v-3.462c-.068-2.722-2.317-4.97-5.021-5.04l-34.58.21c-.053 0-.086-.021-.138-.021l-2.451-.06a4.64 4.64 0 0 0-3.445 1.381c-.885.868-1.201 2.094-1.174 3.46l.27 2.46c.005.06-.177.095-.177.141l.141 34.697c.069 2.713 2.31 4.338 5.022 4.397l3.45.006c2.705.062 4.867-2.31 4.8-5.026l-.153-18.752 24.151 23.946a6.69 6.69 0 0 0 9.494 0 6.747 6.747 0 0 0 0-9.523L101.74 92.54v.001zM48.125 80.662a4.636 4.636 0 0 0-3.437-1.382l-2.457.06c-.05 0-.082.022-.137.022l-35.025-.21c-2.712.07-4.957 2.318-5.022 5.04v3.462c.409 3.206 2.925 4.874 5.633 4.814l18.554.06-24.132 23.928c-2.62 2.626-2.62 6.89 0 9.524a6.694 6.694 0 0 0 9.496 0l24.155-23.79-.155 18.866c-.06 2.722 2.094 5.093 4.801 5.025h3.65c2.72-.069 4.962-1.685 5.022-4.406l.141-34.956c0-.05-.182-.082-.182-.136l.262-2.46c.03-1.366-.286-2.592-1.166-3.46h-.001zM80.08 47.397a4.62 4.62 0 0 0 3.443 1.374l2.45-.054c.055 0 .088-.02.143-.028l35.08.21c2.712-.062 4.953-2.312 5.021-5.033l.009-3.463c-.417-3.211-2.937-5.084-5.64-5.025l-18.615-.073 23.917-23.715c2.63-2.623 2.63-6.879.008-9.513a6.691 6.691 0 0 0-9.494 0L92.251 26.016l.155-19.312c.065-2.713-2.097-5.085-4.802-5.025h-3.45c-2.713.069-4.954 1.693-5.022 4.406l-.139 35.247c0 .054.18.088.18.136l-.267 2.465c-.028 1.366.288 2.588 1.174 3.463v.001z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="128" height="128"><defs><style/></defs><path d="M512 128q69.675 0 135.51 21.163t115.498 54.997 93.483 74.837 73.685 82.006 51.67 74.837 32.17 54.827L1024 512q-2.347 4.992-6.315 13.483T998.87 560.17t-31.658 51.669-44.331 59.99-56.832 64.34-69.504 60.16-82.347 51.5-94.848 34.687T512 896q-69.675 0-135.51-21.163t-115.498-54.826-93.483-74.326-73.685-81.493-51.67-74.496-32.17-54.997L0 513.707q2.347-4.992 6.315-13.483t18.816-34.816 31.658-51.84 44.331-60.33 56.832-64.683 69.504-60.331 82.347-51.84 94.848-34.816T512 128.085zm0 85.333q-46.677 0-91.648 12.331t-81.152 31.83-70.656 47.146-59.648 54.485-48.853 57.686-37.675 52.821-26.325 43.99q12.33 21.674 26.325 43.52t37.675 52.351 48.853 57.003 59.648 53.845T339.2 767.02t81.152 31.488T512 810.667t91.648-12.331 81.152-31.659 70.656-46.848 59.648-54.186 48.853-57.344 37.675-52.651T927.957 512q-12.33-21.675-26.325-43.648t-37.675-52.65-48.853-57.345-59.648-54.186-70.656-46.848-81.152-31.659T512 213.334zm0 128q70.656 0 120.661 50.006T682.667 512 632.66 632.661 512 682.667 391.339 632.66 341.333 512t50.006-120.661T512 341.333zm0 85.334q-35.328 0-60.33 25.002T426.666 512t25.002 60.33T512 597.334t60.33-25.002T597.334 512t-25.002-60.33T512 426.666z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1 @@
<svg width="128" height="64" xmlns="http://www.w3.org/2000/svg"><path d="M127.072 7.994c1.37-2.208.914-5.152-.914-6.87-2.056-1.717-4.797-1.226-6.396.982-.229.245-25.586 32.382-55.74 32.382-29.24 0-55.74-32.382-55.968-32.627-1.6-1.963-4.57-2.208-6.397-.49C-.17 3.086-.399 6.275 1.2 8.238c.457.736 5.94 7.36 14.62 14.72L4.17 35.96c-1.828 1.963-1.6 5.152.228 6.87.457.98 1.6 1.471 2.742 1.471s2.284-.49 3.198-1.472l12.564-13.983c5.94 4.416 13.021 8.587 20.788 11.53l-4.797 17.418c-.685 2.699.686 5.397 3.198 6.133h1.37c2.057 0 3.884-1.472 4.341-3.68L52.6 42.83c3.655.736 7.538 1.227 11.422 1.227 3.883 0 7.767-.49 11.422-1.227l4.797 17.173c.457 2.208 2.513 3.68 4.34 3.68.457 0 .914 0 1.143-.246 2.513-.736 3.883-3.434 3.198-6.133l-4.797-17.172c7.767-2.944 14.848-7.114 20.788-11.53l12.336 13.738c.913.981 2.056 1.472 3.198 1.472s2.284-.49 3.198-1.472c1.828-1.963 1.828-4.906.228-6.87l-11.65-13.001c9.366-7.36 14.849-14.474 14.849-14.474z"/></svg>

After

Width:  |  Height:  |  Size: 944 B

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M910.222222 960c0 35.271111-27.477333 64-61.269333 64H175.047111C141.255111 1024 113.777778 995.271111 113.777778 960V64C113.777778 28.728889 141.255111 0 175.047111 0h367.616c14.051556 0 30.094222 4.437333 44.828445 11.150222l6.257777-2.901333 153.144889 143.985778 130.446222 122.595555 22.755556 21.390222-2.730667 7.338667c7.793778 15.416889 12.856889 32.768 12.856889 48.412445v608.028444zM625.777778 113.777778v170.666666h170.666666L625.777778 113.777778z m227.555555 227.555555H568.888889V56.888889H170.666667v910.222222h682.666666V341.333333zM341.333333 455.111111h341.333334v170.666667h56.888889v170.666666H568.888889v-170.666666h56.888889V512H398.222222v113.777778h56.888889v170.666666H284.444444v-170.666666h56.888889V455.111111z m284.444445 284.444445h56.888889v-56.888889H625.777778v56.888889z m-284.444445-56.888889v56.888889h56.888889v-56.888889H341.333333z" /></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M84.068 23.784c-1.02 0-1.877-.32-2.572-.96a8.588 8.588 0 0 1-1.738-2.237 11.524 11.524 0 0 1-1.042-2.621c-.232-.895-.348-1.641-.348-2.238V0h.278c.834 0 1.622.085 2.363.256.742.17 1.645.575 2.711 1.214 1.066.64 2.363 1.535 3.892 2.686 1.53 1.15 3.453 2.664 5.77 4.54 2.502 2.045 4.494 3.771 5.977 5.178 1.483 1.406 2.618 2.6 3.406 3.58.787.98 1.274 1.812 1.46 2.494.185.682.277 1.278.277 1.79v2.046H84.068zM127.3 84.01c.278.682.464 1.535.556 2.558.093 1.023-.37 2.003-1.39 2.94-.463.427-.88.832-1.25 1.215-.372.384-.696.704-.974.96a6.69 6.69 0 0 1-.973.767l-11.816-10.741a44.331 44.331 0 0 0 1.877-1.535 31.028 31.028 0 0 1 1.737-1.406c1.112-.938 2.317-1.343 3.615-1.215 1.297.128 2.363.405 3.197.83.927.427 1.923 1.173 2.989 2.239 1.065 1.065 1.876 2.195 2.432 3.388zM78.23 95.902c2.038 0 3.752-.511 5.143-1.534l-26.969 25.83H18.037c-1.761 0-3.684-.47-5.77-1.407a24.549 24.549 0 0 1-5.838-3.709 21.373 21.373 0 0 1-4.518-5.306c-1.204-2.003-1.807-4.07-1.807-6.202V16.495c0-1.79.44-3.665 1.32-5.626A18.41 18.41 0 0 1 5.04 5.562a21.798 21.798 0 0 1 5.213-3.964C12.198.533 14.237 0 16.37 0h53.24v15.984c0 1.62.278 3.367.834 5.242a16.704 16.704 0 0 0 2.572 5.179c1.159 1.577 2.665 2.898 4.518 3.964 1.853 1.066 4.078 1.598 6.673 1.598h20.295v42.325L85.458 92.45c1.02-1.364 1.529-2.856 1.529-4.476 0-2.216-.857-4.113-2.572-5.69-1.714-1.577-3.776-2.366-6.186-2.366H26.1c-2.409 0-4.448.789-6.116 2.366-1.668 1.577-2.502 3.474-2.502 5.69 0 2.217.834 4.092 2.502 5.626 1.668 1.535 3.707 2.302 6.117 2.302h52.13zM26.1 47.951c-2.41 0-4.449.789-6.117 2.366-1.668 1.577-2.502 3.473-2.502 5.69 0 2.216.834 4.092 2.502 5.626 1.668 1.534 3.707 2.302 6.117 2.302h52.13c2.409 0 4.47-.768 6.185-2.302 1.715-1.534 2.572-3.41 2.572-5.626 0-2.217-.857-4.113-2.572-5.69-1.714-1.577-3.776-2.366-6.186-2.366H26.1zm52.407 64.063l1.807-1.663 3.476-3.196a479.75 479.75 0 0 0 4.587-4.284 500.757 500.757 0 0 1 5.004-4.667c3.985-3.666 8.48-7.758 13.485-12.276l11.677 10.741-13.485 12.404-5.004 4.603-4.587 4.22a179.46 179.46 0 0 0-3.267 3.068c-.88.853-1.367 1.322-1.46 1.407-.463.341-.973.703-1.529 1.087-.556.383-1.112.703-1.668.959-.556.256-1.413.575-2.572.959a83.5 83.5 0 0 1-3.545 1.087 72.2 72.2 0 0 1-3.475.895c-1.112.256-1.946.426-2.502.511-1.112.17-1.854.043-2.224-.383-.371-.426-.464-1.151-.278-2.174.092-.511.278-1.279.556-2.302.278-1.023.602-2.067.973-3.132l1.042-3.005c.325-.938.58-1.577.765-1.918a10.157 10.157 0 0 1 2.224-2.941z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M38.47 52L52 38.462l-23.648-23.67L43.209 0H.035L0 43.137l14.757-14.865L38.47 52zm74.773 47.726L89.526 76 76 89.536l23.648 23.672L84.795 128h43.174L128 84.863l-14.757 14.863zM89.538 52l23.668-23.648L128 43.207V.038L84.866 0 99.73 14.76 76 38.472 89.538 52zM38.46 76L14.792 99.651 0 84.794v43.173l43.137.033-14.865-14.757L52 89.53 38.46 76z"/></svg>

After

Width:  |  Height:  |  Size: 421 B

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M893.110363 880.834924h78.261289v30.182987h-107.387244v-5.126475h-1.057032v-100.505022h30.182987v75.451069zM702.307202 813.888736a190.751973 190.751973 0 0 0-12.745805 51.187971h-106.017966c-14.135558 0-25.591426-11.455868-25.591426-25.593985 0-14.135558 11.44563-25.593985 25.591426-25.593986H702.302083z m-11.381646 102.375942a190.570256 190.570256 0 0 0 15.855474 51.187971h-123.237599c-14.135558 0-25.591426-11.455868-25.591426-25.593986 0-14.135558 11.44563-25.593985 25.591426-25.593985h107.382125z m108.42636-204.751884a192.625453 192.625453 0 0 0-66.416392 51.187971H583.545991c-14.135558 0-25.591426-11.455868-25.591426-25.593985 0-14.135558 11.44563-25.593985 25.591426-25.593986h215.808485z m162.168611 0h31.53179c14.135558 0 25.591426 11.455868 25.591426 25.593986a25.496728 25.496728 0 0 1-3.053363 12.136668A192.387429 192.387429 0 0 0 961.520527 711.512794zM524.679824 964.913725H70.079455C30.723584 957.227851 16.715996 935.240059 16.715996 935.240059c-32.504361-29.033817-7.591176-85.181902-7.591176-85.181903L446.037185 98.178528c24.805691-46.542662 63.729024-38.836313 63.729024-38.836313 49.613941 0 68.005779 36.333222 68.005779 36.333221l267.789869 461.771804h-82.151574L511.882831 122.544002 61.738375 900.867336H524.679824v64.046389z m0-286.926492h-28.194334l-46.192025-292.050408c0-25.466015 20.67994-46.112684 46.192025-46.112684h30.794683c25.512085 0 46.194584 20.646668 46.194584 46.112684l-27.129624 171.510415H524.679824v120.539993z m0 40.456413v115.070558c-4.120632 0.906027-8.402505 1.387194-12.796993 1.387194-32.5965 0-59.024849-26.38228-59.024849-58.922473 0-32.542752 26.428349-58.922473 59.024849-58.922473 4.394487 0 8.676361 0.478608 12.796993 1.387194zM557.952005 634.730838c0-14.135558 11.44563-25.593985 25.591426-25.593985H993.049757c14.135558 0 25.591426 11.455868 25.591426 25.593985 0 14.135558-11.44563 25.593985-25.591426 25.593986H583.545991c-14.135558 0-25.591426-11.455868-25.591426-25.593986z m324.992427 389.269162c-77.662389 0-140.848821-63.122446-140.848821-140.710613 0-77.585607 63.186431-140.705494 140.85138-140.705494 77.65983 0 140.843702 63.119887 140.843702 140.705494 0 77.588167-63.183872 140.710613-140.843702 140.710613z m0-251.263833c-61.02118 0-110.668393 49.590906-110.668393 110.55322 0 60.964873 49.647213 110.558339 110.668393 110.558339 61.023739 0 110.668393-49.593466 110.668393-110.558339 0-60.962314-49.644654-110.55322-110.668393-110.55322z" fill="#333333" /></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1581238998885" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4187" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M511.542857 14.057143C228.914286 13.942857 0 242.742857 0 525.142857 0 748.457143 143.2 938.285714 342.628571 1008c26.857143 6.742857 22.742857-12.342857 22.742858-25.371429v-88.571428c-155.085714 18.171429-161.371429-84.457143-171.771429-101.6C172.571429 756.571429 122.857143 747.428571 137.714286 730.285714c35.314286-18.171429 71.314286 4.571429 113.028571 66.171429 30.171429 44.685714 89.028571 37.142857 118.857143 29.714286 6.514286-26.857143 20.457143-50.857143 39.657143-69.485715-160.685714-28.8-227.657143-126.857143-227.657143-243.428571 0-56.571429 18.628571-108.571429 55.2-150.514286-23.314286-69.142857 2.171429-128.342857 5.6-137.142857 66.4-5.942857 135.428571 47.542857 140.8 51.771429 37.714286-10.171429 80.8-15.542857 129.028571-15.542858 48.457143 0 91.657143 5.6 129.714286 15.885715 12.914286-9.828571 76.914286-55.771429 138.628572-50.171429 3.314286 8.8 28.228571 66.628571 6.285714 134.857143 37.028571 42.057143 55.885714 94.514286 55.885714 151.2 0 116.8-67.428571 214.971429-228.571428 243.314286a145.714286 145.714286 0 0 1 43.542857 104v128.571428c0.914286 10.285714 0 20.457143 17.142857 20.457143 202.4-68.228571 348.114286-259.428571 348.114286-484.685714 0-282.514286-229.028571-511.2-511.428572-511.2z" p-id="4188"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M1.482 70.131l36.204 16.18 69.932-65.485-61.38 70.594 46.435 18.735c1.119.425 2.397-.17 2.797-1.363v-.085L127.998.047 1.322 65.874c-1.12.597-1.519 1.959-1.04 3.151.32.511.72.937 1.2 1.107zm44.676 57.821L64.22 107.26l-18.062-7.834v28.527z"/></svg>

After

Width:  |  Height:  |  Size: 320 B

@ -0,0 +1 @@
<svg t="1697593558417" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2698" width="200" height="200"><path d="M859.380732 616.400768c1.602498-13.670348 2.641153-27.466562 2.641153-41.244356 0-123.152854-62.866816-234.974639-168.160931-299.129798l-13.725606 22.519899c97.380888 59.326177 155.51696 162.733315 155.51696 276.608876 0 11.260461-0.793062 22.51683-1.950422 33.707706-8.463766-1.609661-17.168008-2.534729-26.093285-2.53473-76.920904 0-139.499148 62.577221-139.499147 139.499148S730.685651 885.327684 807.607578 885.327684s139.499148-62.577221 139.499148-139.499148c0-58.620096-36.388768-108.815311-87.725994-129.427768zM807.607578 858.957083c-62.377676 0-113.128547-50.744731-113.128547-113.128547 0-62.384839 50.750871-113.128547 113.128547-113.128547s113.128547 50.744731 113.128547 113.128547c0 62.383816-50.750871 113.128547-113.128547 113.128547zM512 439.237813c-76.920904 0-139.499148 62.577221-139.499148 139.499147s62.577221 139.499148 139.499148 139.499148 139.499148-62.577221 139.499148-139.499148-62.578244-139.499148-139.499148-139.499147z m0 252.627694c-62.377676 0-113.128547-50.744731-113.128547-113.128547 0-62.377676 50.750871-113.128547 113.128547-113.128547s113.128547 50.750871 113.128547 113.128547c0 62.383816-50.750871 113.128547-113.128547 113.128547zM512 898.80872c-69.289086 0-134.61286-21.556968-190.081173-62.011333 21.10876-24.451902 33.971719-56.20714 33.971719-90.968851 0-76.920904-62.577221-139.499148-139.499147-139.499147S76.893274 668.906609 76.893274 745.828536 139.470495 885.327684 216.392422 885.327684c32.54216 0 62.446237-11.289114 86.201267-30.037107 60.799738 45.596478 132.875287 69.888743 209.406311 69.888743 57.620325 0 114.76379-14.3181 165.250648-41.396829l-12.463869-23.228027c-46.668902 25.03007-99.499132 38.254256-152.786779 38.254256zM103.262852 745.828536c0-62.384839 50.750871-113.128547 113.128547-113.128547s113.128547 50.744731 113.128546 113.128547c0 62.384839-50.750871 113.128547-113.128546 113.128547s-113.128547-50.744731-113.128547-113.128547zM378.963031 280.248775c17.84339 56.491619 70.722738 97.570199 133.036969 97.5702 76.920904 0 139.499148-62.577221 139.499148-139.499148S588.920904 98.82068 512 98.82068 372.500852 161.398924 372.500852 238.319827c0 5.269004 0.353041 10.451026 0.925069 15.569604-128.72271 55.466266-211.447806 180.308599-211.447806 321.266981h26.370601c-0.001023-128.542608 74.394361-242.583944 190.614315-294.907637z m133.036969-155.057495c62.377676 0 113.128547 50.750871 113.128547 113.128547s-50.750871 113.128547-113.128547 113.128547-113.128547-50.750871-113.128547-113.128547 50.750871-113.128547 113.128547-113.128547z" p-id="2699"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M949.711552 538.055422l-55.942103-36.121685-92.848665-113.834628c-2.950192-3.523243-8.196683-9.057283-12.791327-9.057283L650.510122 379.041826l0-108.316961c0-8.55791-3.26537-15.542998-11.824303-15.542998L383.816061 255.181867c-22.090111-61.930491-83.641979-112.051005-156.079778-112.051005-90.944292 0-163.895791 73.995271-163.895791 164.939563 0 57.667398 29.30135 108.438735 75.748195 137.921209l0 310.443471 0 74.720795c0 8.55791 4.868891 12.367679 13.426801 12.367679l124.343983 0c12.171204 30.934546 35.455513 37.34556 62.45954 37.34556 26.988678 0 50.256614-6.411013 62.428841-37.34556l304.749796 0c12.172227 30.934546 35.455513 37.34556 62.45954 37.34556s50.257637-6.411013 62.427818-37.34556l105.686041 0c8.55791 0 22.588461-3.809769 22.588461-12.367679l0-74.720795L960.159508 550.921451C960.158485 545.766035 954.020694 540.912493 949.711552 538.055422zM780.870122 410.007071l88.767719 110.010533c0.953721 1.133823 5.624091 3.870144 6.865361 4.702092l52.690036 34.487465 0 175.940105L650.510122 735.147266 650.510122 438.870446l0-28.863375L780.870122 410.007071zM93.776292 308.086797c0-73.844845 60.099796-133.945665 133.958968-133.945665 73.859171 0 133.959991 60.099796 133.959991 133.945665 0 73.859171-60.10082 133.974317-133.959991 133.974317C153.877111 442.060091 93.776292 381.944945 93.776292 308.086797zM228.763682 473.011011c90.944292 0 164.410514-74.010621 164.410514-164.954913 0-7.423063-1.178849-21.907962-2.146896-21.907962l228.517577 0 0 115.362424 0 37.360909 0 296.275797L170.552909 735.147266 170.552909 461.83753C186.035532 468.943368 207.868793 473.011011 228.763682 473.011011zM170.552909 812.559357l0-46.447868 110.448508 0c-7.982812 15.482623-12.715603 26.821879-12.715603 41.880853 0 1.088798 0.272199 4.567016 0.272199 4.567016L170.552909 812.559357zM339.817987 853.018837c-22.36231 0-40.565904-18.203594-40.565904-40.550555 0-22.376637 18.203594-40.551578 40.565904-40.551578 22.36231 0 40.550555 18.174941 40.550555 40.551578C380.368542 834.815243 362.179274 853.018837 339.817987 853.018837zM411.00019 812.559357c0 0 0.332575-3.477194 0.332575-4.567016 0-15.058974-4.748141-26.39823-12.729929-41.880853l240.084007 0 71.952752 0c-7.982812 15.482623-12.715603 26.821879-12.715603 41.880853 0 1.088798 0.272199 4.567016 0.272199 4.567016L411.00019 812.559357zM769.456165 853.018837c-22.363334 0-40.566928-18.203594-40.566928-40.550555 0-22.376637 18.203594-40.551578 40.566928-40.551578 22.361287 0 40.550555 18.174941 40.550555 40.551578C810.006719 834.815243 791.816428 853.018837 769.456165 853.018837zM840.63939 812.559357c0 0 0.331551-3.477194 0.331551-4.567016 0-15.058974-4.747117-26.39823-12.730952-41.880853l100.95325 0 0 46.447868L840.63939 812.559357zM227.735259 317.112358l-74.720795 0c-8.55791 0-15.482623-6.940063-15.482623-15.482623 0-8.556886 6.924713-15.482623 15.482623-15.482623l63.986313 0 0-52.766784c0-8.556886 6.924713-15.482623 15.482623-15.482623s15.482623 6.925736 15.482623 15.482623l0 74.706469C247.966023 316.659033 236.293169 317.112358 227.735259 317.112358z" /></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M966.208 246.752L534.144 21.408a47.968 47.968 0 0 0-44.128-0.128L58.08 243.136A47.968 47.968 0 0 0 32 285.824V744.64c0 18.208 10.304 34.848 26.592 42.976l432 215.36a48 48 0 0 0 42.816 0l432-215.36A48 48 0 0 0 992 744.672V289.344c0-17.92-9.952-34.304-25.792-42.592zM508.384 463.68l-162.176-79.808 367.36-196.704 158.4 82.624-363.584 193.888z m3.488-381.696l132.992 69.376-369.312 197.76-144.896-71.328 381.216-195.808zM96 332.096l153.216 75.392v168.256a32 32 0 0 0 64 0v-136.736L480 521.024v405.184L96 734.752V332.096z m448 594.112V517.184l384-204.736v422.304l-384 191.456z" /></svg>

After

Width:  |  Height:  |  Size: 847 B

@ -0,0 +1 @@
<svg t="1697621609345" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4202" width="16" height="16"><path d="M43.636364 206.894545L377.018182 28.276364a250.414545 250.414545 0 0 1 231.214545 0l333.265455 178.618181 1.629091 0.814546a23.272727 23.272727 0 0 1 8.145454 35.723636 34.094545 34.094545 0 0 1-42.24 6.865455L576 71.796364a179.665455 179.665455 0 0 0-166.050909 0L76.218182 250.298182a34.909091 34.909091 0 0 1-16.290909 3.956363 31.650909 31.650909 0 0 1-25.832728-11.636363 23.272727 23.272727 0 0 1 9.541819-35.723637zM952.436364 998.283636A25.716364 25.716364 0 0 1 926.72 1024H132.072727A114.618182 114.618182 0 0 1 17.454545 909.381818V341.643636a25.716364 25.716364 0 0 1 51.432728 0v567.738182a63.185455 63.185455 0 0 0 63.185454 63.185455h794.647273a25.716364 25.716364 0 0 1 25.716364 25.716363z" fill="#cdcdcd" p-id="4203"></path><path d="M609.512727 874.007273H477.090909a106.007273 106.007273 0 0 1-210.269091 0h-42.123636a64.349091 64.349091 0 0 1-64.349091-64.232728V672.116364c2.676364-65.978182 14.429091-83.898182 33.512727-105.541819l99.141818-112.174545a130.210909 130.210909 0 0 1 86.807273-38.981818h77.381818v-62.72a64.349091 64.349091 0 0 1 64.232728-64.349091h420.18909A64.465455 64.465455 0 0 1 1006.545455 352.698182v308.829091a64.349091 64.349091 0 0 1-64.349091 64.232727h-4.305455v84.014545a64.349091 64.349091 0 0 1-64.349091 64.232728h-53.876363a105.890909 105.890909 0 0 1-210.152728 0z m-239.825454-71.796364a60.16 60.16 0 1 0 2.327272 120.203636A61.44 61.44 0 0 0 433.454545 861.090909a61.556364 61.556364 0 0 0-61.323636-59.112727z m342.458182 0a59.578182 59.578182 0 1 0 2.327272 0z m-190.72-76.334545a64.349091 64.349091 0 0 1-64.349091-64.232728V459.869091h-77.381819a85.294545 85.294545 0 0 0-53.294545 23.970909L217.483636 606.254545c-8.029091 10.938182-13.265455 32.116364-12.567272 99.723637v104.029091a19.898182 19.898182 0 0 0 19.898181 19.781818h45.963637a105.890909 105.890909 0 0 1 202.356363 0h140.218182a105.890909 105.890909 0 0 1 202.356364 0h57.018182a19.898182 19.898182 0 0 0 19.898182-19.781818v-84.130909z m-256-30.487273v-61.090909a67.956364 67.956364 0 0 1 8.02909-30.836364l52.13091-89.483636a39.68 39.68 0 0 1 32.465454-18.501818h40.261818A28.858182 28.858182 0 0 1 427.287273 523.636364v171.752727a28.858182 28.858182 0 0 1-28.858182 28.741818h-104.727273a28.858182 28.858182 0 0 1-28.625454-28.741818z m128.34909-166.632727h-35.490909a9.541818 9.541818 0 0 0-3.723636 1.978181l-52.247273 89.483637a36.072727 36.072727 0 0 0-3.723636 13.963636v56.32h95.069091z m567.621819 132.887272V352.698182a19.781818 19.781818 0 0 0-19.781819-19.781818h-420.072727a19.898182 19.898182 0 0 0-19.898182 19.781818v308.945454a19.898182 19.898182 0 0 0 19.898182 19.781819h420.072727a19.898182 19.898182 0 0 0 19.781819-19.781819z" fill="#cdcdcd" p-id="4204"></path></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@ -0,0 +1 @@
<svg t="1697598935009" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7468" id="mx_n_1697598935010" width="16" height="16"><path d="M720.433 496.4c63.2 0 114.7 51.4 114.7 114.7 0 63.2-51.4 114.7-114.7 114.7-63.2 0-114.7-51.4-114.7-114.7 0.1-63.3 51.5-114.7 114.7-114.7m0-17.2c-72.7 0-131.8 59.1-131.8 131.8s59.1 131.8 131.8 131.8 131.8-59.1 131.8-131.8c0-72.6-59.1-131.8-131.8-131.8z" p-id="7469" fill="#cdcdcd"></path><path d="M810.333 341.8c0-7.5-4.1-14.3-10.7-17.8l-276.4-147a20.14 20.14 0 0 0-18.5 0l-276.4 141.5c-5.5 2.9-9.3 8-10.5 14-2.2 3.3-3.5 7.3-3.5 11.4v314.5c0.1 7.1 4 13.6 10.2 17.1l276.4 170c3.1 1.9 6.6 2.9 10.2 3 0.4 0 0.8 0 1.2-0.1 0.5 0 1 0.1 1.5 0.1 3.3 0 6.5-0.9 9.3-2.6l90.9-53.7c6-2.9 9.8-8.8 9.9-15.3 0-6.5-3.8-12.4-9.8-15.3-6-2.9-13.2-2.3-18.6 1.5l-64.4 38.1v-304l244.6-125.3-0.1 80.1c0 7.8 5.2 14.5 12.6 16.4 7.4 1.9 15.3-1.5 19.4-8.3 1.7-2.8 2.5-6 2.5-9.3l0.1-105.6a11.305 11.305 0 0 0 0-2.6c0.1-0.2 0.1-0.5 0.1-0.8z m-296.2-136.4l102.4 53.901-242.1 133.9-110.9-58.8 250.6-129.001z m-270.1 157.2l108.8 57.8v87.7c0 6.8 3.5 13.1 9.3 16.6l14.2 8.7c7.2 4.4 16.5-0.8 16.5-9.3v-82.6l108.5 57.6V811l-257.3-158.4v-290z m270.7 105l-97.9-51.9 242.4-133.9 106.2 55.9-250.7 129.9z" p-id="7470" fill="#cdcdcd"></path><path d="M510.89 1024C228.79 1024 0 795.21 0 513.11S228.79 0 510.89 0s510.889 228.79 510.889 510.89S792.989 1024 510.889 1024z m0-977.354c-257.667 0-466.465 208.799-466.465 466.465S253.223 979.575 510.89 979.575 977.354 770.777 977.354 513.11 768.555 46.646 510.889 46.646z" p-id="7471" fill="#cdcdcd"></path><path d="M698.541 537.335c-7.064 14.015-16.236 27.86-26.092 39.595-5.413 6.438-16.352 17.434-21.82 22.048-2.451 2.051-3.078 3.59-1.54 3.59 1.596 0 27.062-20.225 36.406-28.885l5.925-5.47-0.399 16.864c-0.456 16.807-0.456 16.92 0.74 16.92 1.596 0 7.75-6.836 9.515-10.596 1.424-2.962 1.424-3.076 1.424-19.086V556.25l2.45-2.905c4.671-5.584 10.084-12.876 10.084-13.673 0-0.741-10.255-7.748-12.534-8.546-0.627-0.285-1.709 1.367-4.159 6.21z" p-id="7472" fill="#cdcdcd"></path><path d="M732.896 551.748v18.175l-4.672 1.822c-2.62 1.026-7.92 3.02-11.85 4.444-7.577 2.678-8.546 3.248-7.634 4.16 0.398 0.398 1.595 0.398 3.702-0.057 4.9-1.026 13.958-3.362 16.522-4.217 3.704-1.31 3.932-1.196 3.932 1.938 0 3.76 1.709 8.944 3.93 12.249 3.76 5.469 10.768 8.374 21.934 9.229 3.02 0.228 5.47 0.57 5.47 0.74 0 0.228-1.082 1.425-2.393 2.735l-2.45 2.336-29.625 0.683-29.625 0.628-7.065-3.134c-3.874-1.766-7.178-3.076-7.292-2.962-0.399 0.341-0.285 68.081 0.114 68.707 1.196 1.938 4.671-0.512 8.602-6.038 4.843-6.78 4.785-6.381 4.785-31.22v-21.82l21.536-0.4c11.793-0.17 25.524-0.512 30.48-0.683l8.944-0.4v26.55c0 14.584 0.172 26.89 0.343 27.403 0.227 0.57 1.025 0.911 2.05 0.911 2.565 0 9.857-7.52 12.477-12.818l1.938-3.988-0.171-16.75-0.171-16.75 2.107-3.361c1.14-1.88 1.938-3.475 1.88-3.533-0.113-0.113-2.62-1.48-5.525-3.019l-5.242-2.849 8.489-0.626c9.628-0.741 20.168-2.62 22.276-3.931 3.134-1.937 4.558-3.76 4.558-5.754 0-1.71-0.513-2.507-3.305-5.185-4.102-3.931-4.9-6.096-4.557-11.793 0.227-3.76 0.17-4.216-0.741-4.216-0.627 0-1.538 1.197-2.678 3.59-1.823 3.987-4.615 7.462-6.893 8.602-5.926 3.02-34.753 5.584-39.653 3.532-2.45-1.025-3.133-2.393-3.133-6.153 0-7.007-0.171-6.722 7.577-9.514 8.545-3.076 18.972-7.577 28.315-12.306 3.931-1.994 7.691-3.76 8.432-3.988 0.684-0.17 1.253-0.683 1.253-1.025 0-0.399-1.88-3.02-4.158-5.868l-4.16-5.185-1.652 1.367c-9.742 8.09-27.005 19.314-33.614 21.82l-1.48 0.57 0.341-5.013c0.741-11.224 0.855-11.964 2.621-14.471 0.912-1.367 1.652-2.62 1.652-2.848 0-0.4-15.496-8.432-16.237-8.432-0.17 0-0.284 8.147-0.284 18.116z" p-id="7473" fill="#cdcdcd"></path><path d="M724.121 618.348c0.229 1.197 0.457 6.154 0.4 10.996 0 6.894-0.229 9.97-1.197 14.015-5.526 24.384-25.523 40.793-60.618 49.794-6.95 1.766-8.716 2.791-7.406 4.102 0.626 0.627 9.343-1.083 19.769-3.817 36.177-9.458 56.687-25.01 62.384-47.287 0.684-2.62 1.311-7.463 1.538-11.394 0.228-4.273 0.627-7.236 1.083-7.976 1.538-2.223 0.911-2.792-7.35-6.723-4.444-2.108-8.317-3.817-8.545-3.817-0.228 0-0.285 0.968-0.058 2.107z m11.395 42.786c-0.57 0.912 0.627 1.71 5.925 4.217 11.338 5.298 22.162 12.875 30.48 21.307 8.66 8.774 11.508 9.23 14.528 2.336 2.336-5.299 2.05-10.881-0.798-13.959-3.304-3.646-16.465-7.861-38.57-12.362-10.767-2.165-11.109-2.222-11.565-1.539z" p-id="7474" fill="#cdcdcd"></path></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="16px" height="16.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M763.228 475.123c-8.42 0-15.25-6.972-15.25-15.56 0-8.589 6.83-15.562 15.25-15.562h52.956c7.824 0 14.266 6.013 15.145 13.758l52.625 351.928c0.412 2.765 0.615 5.466 0.615 8.105 0 16.176-7.17 30.754-18.347 41.777-10.531 10.394-24.835 17.645-39.924 19.905l-0.523 0.062c-3.28 0.46-6.49 0.716-9.59 0.716H207.765c-3.3 0-6.71-0.272-10.14-0.785-15.07-2.246-29.367-9.485-39.904-19.874-11.142-10.965-18.285-25.525-18.28-41.776-0.064-2.633 0.143-5.347 0.553-8.13l52.702-352.434c1.14-7.712 7.65-13.244 15.069-13.237l52.948-0.015c8.421 0 15.25 6.972 15.25 15.563 0 8.587-6.829 15.559-15.25 15.559h-39.86l-50.721 339.183a24.4 24.4 0 0 0-0.255 3.51c-0.06 7.203 3.454 14.011 8.933 19.41 6.074 5.985 14.403 10.181 23.223 11.494 1.799 0.268 3.722 0.41 5.733 0.41h608.417c1.9 0 3.697-0.119 5.367-0.349l0.343-0.055c8.83-1.319 17.153-5.526 23.239-11.527 5.44-5.372 8.94-12.174 8.94-19.407 0-1.177-0.088-2.354-0.258-3.486l-50.72-339.183H763.23zM512.002 145.687c62.236 0 118.652 25.282 159.521 66.158 40.919 40.916 66.24 97.471 66.24 159.925 0 76.39-96.67 222.298-165.366 325.975-19.015 28.706-35.876 54.146-47.473 73.196-4.437 7.284-13.831 9.512-20.963 4.987a15.324 15.324 0 0 1-5.048-5.265c-11.59-19.022-28.382-44.348-47.303-72.918-68.704-103.684-165.372-249.584-165.372-325.975 0-62.454 25.314-118.995 66.244-159.925 40.866-40.876 97.286-66.158 159.52-66.158z m138.197 88.28c-35.304-35.31-84.17-57.16-138.197-57.16-54.025 0-102.892 21.848-138.196 57.158-35.26 35.26-57.07 83.984-57.07 137.804 0 66.936 93.605 208.201 160.131 308.599 12.978 19.586 24.946 37.648 35.135 53.552 10.19-15.904 22.16-33.966 35.136-53.552 66.519-100.39 160.125-241.662 160.125-308.598 0-53.82-21.815-102.557-57.064-137.804zM512 266.568c28.85 0 55.042 11.757 74.032 30.748 19.05 19.053 30.84 45.373 30.84 74.454 0 29.068-11.793 55.408-30.84 74.448-18.99 18.991-45.182 30.747-74.032 30.747-28.855 0-55.039-11.757-74.03-30.748-19.046-19.04-30.841-45.38-30.841-74.448 0-29.074 11.788-55.408 30.841-74.454 18.991-18.99 45.175-30.747 74.03-30.747z m51.414 54.212C550.312 307.68 532.13 299.57 512 299.57c-20.135 0-38.31 8.11-51.412 21.211-13.045 13.04-21.118 31.072-21.118 50.99 0 19.912 8.073 37.943 21.118 50.981 13.102 13.102 31.277 21.213 51.412 21.213 20.13 0 38.312-8.11 51.414-21.213 13.045-13.038 21.116-31.07 21.116-50.98s-8.077-37.95-21.116-50.99z" /></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M115.147.062a13 13 0 0 1 4.94.945c1.55.63 2.907 1.526 4.069 2.688a13.148 13.148 0 0 1 2.761 4.069c.678 1.55 1.017 3.245 1.017 5.086v102.3c0 3.681-1.187 6.733-3.56 9.155-2.373 2.422-5.352 3.633-8.937 3.633H12.992c-3.875 0-7-1.26-9.373-3.779-2.373-2.518-3.56-5.667-3.56-9.445V12.704c0-3.39 1.163-6.345 3.488-8.863C5.872 1.32 8.972.062 12.847.062h102.3zM81.434 109.047c1.744 0 3.003-.412 3.778-1.235.775-.824 1.163-1.914 1.163-3.27 0-1.26-.388-2.325-1.163-3.197-.775-.872-2.034-1.307-3.778-1.307H72.57c.097-.194.145-.485.145-.872V27.09h9.01c1.743 0 2.954-.436 3.633-1.308.678-.872 1.017-1.938 1.017-3.197 0-1.26-.34-2.325-1.017-3.197-.679-.872-1.89-1.308-3.633-1.308H46.268c-1.743 0-2.954.436-3.632 1.308-.678.872-1.018 1.938-1.018 3.197 0 1.26.34 2.325 1.018 3.197.678.872 1.889 1.308 3.632 1.308h8.138v72.075c0 .193.024.339.073.436.048.096.072.242.072.436H46.56c-1.744 0-3.003.435-3.778 1.307-.775.872-1.163 1.938-1.163 3.197 0 1.356.388 2.446 1.163 3.27.775.823 2.034 1.235 3.778 1.235h34.875z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1575802859706" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3102" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M896 224H128c-35.2 0-64 28.8-64 64v448c0 35.2 28.8 64 64 64h768c35.2 0 64-28.8 64-64V288c0-35.2-28.8-64-64-64z m0 480c0 19.2-12.8 32-32 32H160c-19.2 0-32-12.8-32-32V320c0-19.2 12.8-32 32-32h704c19.2 0 32 12.8 32 32v384z" p-id="3103"></path><path d="M224 352c-19.2 0-32 12.8-32 32v256c0 16 12.8 32 32 32s32-12.8 32-32V384c0-16-12.8-32-32-32z" p-id="3104"></path></svg>

After

Width:  |  Height:  |  Size: 744 B

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M83.287 103.01c-1.57-3.84-6.778-10.414-15.447-19.548-2.327-2.444-2.182-4.306-1.338-9.862v-.64c.553-3.81 1.513-6.05 14.313-8.087 6.516-1.018 8.203 1.57 10.589 5.178l.785 1.193a12.625 12.625 0 0 0 6.43 5.207c1.134.524 2.53 1.164 4.421 2.24 4.596 2.53 4.596 5.41 4.596 11.753v.727a26.91 26.91 0 0 1-5.178 17.454 59.055 59.055 0 0 1-19.025 11.026c3.49-6.546.814-14.313 0-16.553l-.146-.087zM64 5.12a58.502 58.502 0 0 1 25.484 5.818 54.313 54.313 0 0 0-12.859 10.327c-.93 1.28-1.716 2.473-2.472 3.579-2.444 3.694-3.637 5.352-5.818 5.614a25.105 25.105 0 0 1-4.219 0c-4.276-.29-10.094-.64-11.956 4.422-1.193 3.23-1.396 11.956 2.444 16.495.66 1.077.778 2.4.32 3.578a7.01 7.01 0 0 1-2.066 3.229 18.938 18.938 0 0 1-2.909-2.91 18.91 18.91 0 0 0-8.32-6.603c-1.25-.349-2.647-.64-3.985-.93-3.782-.786-8.03-1.688-9.019-3.812a14.895 14.895 0 0 1-.727-5.818 21.935 21.935 0 0 0-1.396-9.25 8.873 8.873 0 0 0-5.557-4.946A58.705 58.705 0 0 1 64 5.12zM0 64c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64C28.654 0 0 28.654 0 64z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -0,0 +1 @@
<svg t="1697596476811" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="48291" width="16" height="16"><path d="M536.4 208c-16.1-16.6-42.6-17-59.1-0.9L365.2 315.7 253.1 207c-16.6-16.1-43.1-15.7-59.2 0.9-16.1 16.6-15.7 43.1 0.9 59.2l73.2 71h-21.3c-23.1 0-41.8 18.7-41.8 41.8 0 23.1 18.7 41.8 41.8 41.8h74v38.4H239c-23.1 0-41.8 18.7-41.8 41.8 0 23.1 18.7 41.8 41.8 41.8h81.8v81.2c0 23.1 18.7 41.8 41.8 41.8 23.1 0 41.8-18.7 41.8-41.8v-81.2h101.9c23.1 0 41.8-18.7 41.8-41.8 0-23.1-18.7-41.8-41.8-41.8H404.4v-38.4h94.1c23.1 0 41.8-18.7 41.8-41.8 0-23.1-18.7-41.8-41.8-41.8h-36.2l73.2-71c16.6-16.1 17-42.6 0.9-59.1z" p-id="48292"></path><path d="M527.6 934.1h-378V91.3h708.6v367.8c0 23.1 18.7 41.8 41.8 41.8 23.1 0 41.8-18.7 41.8-41.8V59.5c0-28.6-23.3-51.9-51.9-51.9H117.8c-28.6 0-51.9 23.3-51.9 51.9v906.4c0 28.6 23.3 51.9 51.9 51.9h409.8c23.1 0 41.8-18.7 41.8-41.8 0.1-23.1-18.7-41.9-41.8-41.9z" p-id="48293"></path><path d="M632.3 338.1c-23.1 0-41.8 18.7-41.8 41.8 0 23.1 18.7 41.8 41.8 41.8h128.1c23.1 0 41.8-18.7 41.8-41.8 0-23.1-18.7-41.8-41.8-41.8H632.3zM977.5 804c-6.7-7.5-6.8-19.2-0.4-26.1 17.2-18.6 22.4-45.9 13.2-69.7v-0.1c-7.4-19-18-35.9-29-52.5-15-20.4-41.2-30.1-67-24.7-4.9 1.1-9.4 0.3-14-2.2-4-2.3-7.2-6.1-8.6-10.8-7.7-24.3-28.3-41.9-54.8-46.1-20-2.4-40-2.4-60.3 0.2-25.4 4-45.9 21.6-53.3 45-1.3 3.8-3.9 8.9-8.8 11.6-4.7 2.6-9.3 3.4-14.5 2.2-24.7-5.2-50.8 4.1-66.6 23.8-12.7 16.1-23.3 34.3-30.5 52.8-9.2 23.8-4 51.1 12.8 69.2 6.7 7.5 6.8 19.2 0.4 26.1-17.2 18.6-22.4 45.9-13.2 69.8 6.7 17.2 16.5 34.2 30.5 52.8 15.9 19.8 41.1 28.9 66 23.7 10-2.2 19.8 3.3 22.8 13 7.7 24.3 28.3 41.9 53.4 45.9 9.9 1.7 20.6 2.5 31 2.5 9.2 0 19.2-0.7 28.4-1.5l2.3-0.3c25.3-4 45.9-21.6 53.3-45 1.3-3.8 3.9-8.9 8.8-11.6 4.7-2.6 9.3-3.4 14.2-2.3 24.4 5.4 50.4-3.9 66.3-23.8 12.7-16.1 23.2-34.3 30.4-52.7 9.2-23.7 4-51.1-12.8-69.2z m-45.7 46.4c-4.9 12.6-12.3 25.3-21.1 36.5-1 1.2-2.8 1.7-3.7 1.5-20-4.4-40.2-1.3-58.4 8.9-17.1 9.6-30.3 25.8-37.6 46.5-0.5 1.7-1.8 2.5-3 2.8-14 1.2-29 1.7-42.4-0.6-1.1-0.2-3-0.8-3.5-2.6-10.7-35-42.5-57.6-78-57.6-5.9 0-11.8 0.6-17.8 1.9-1.6 0.3-2.9-0.2-3.3-0.7-10-13.3-17.1-25.4-21.6-37.1-0.6-1.5-0.1-3.5 0.7-4.4 28.3-30.6 28.5-79.1 0-111.1-0.8-0.9-1.3-2.8-0.7-4.2 4.9-12.6 12.3-25.3 21.1-36.5 1-1.2 3-1.9 4.3-1.5 20 4.5 40.2 1.4 58.4-8.8 17.1-9.6 30.3-25.8 37.6-46.5 0.6-2 2.3-2.7 2.6-2.8 14.2-1.8 29-1.8 42.8-0.1 1.1 0.2 3 0.8 3.4 2.3 5.8 19.6 19.5 36.8 37.7 47.1 18.2 10.2 38.4 13.3 58.2 8.9 1.5-0.3 2.8 0.2 2.3-0.7 9.6 14.4 17 26.6 22 39.3 0.6 1.5 0.1 3.4-0.7 4.3-28.3 30.6-28.5 79.1 0 111 0.9 1 1.2 2.9 0.7 4.2z" p-id="48294"></path><path d="M783.8 710.2c-44.3 0-80.4 36.1-80.4 80.4 0 44.4 36.1 80.4 80.4 80.4 44.4 0 80.4-36.1 80.4-80.4 0-44.3-36.1-80.4-80.4-80.4z m0 98.1c-9.6 0-17.7-8.1-17.7-17.7s8.1-17.7 17.7-17.7 17.7 8.1 17.7 17.7-8.1 17.7-17.7 17.7z" p-id="48295"></path></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save