This commit is contained in:
yzy 2024-02-04 14:32:54 +08:00
commit 9e51d22e30
486 changed files with 77546 additions and 0 deletions

3
.browserslistrc Normal file
View File

@ -0,0 +1,3 @@
> 1%
last 2 versions
not ie <= 8

16
.editorconfig Normal file
View File

@ -0,0 +1,16 @@
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = space

5
.env.dev Normal file
View File

@ -0,0 +1,5 @@
NODE_ENV = dev
VUE_APP_APPLICATION_NAME = security-busi
VUE_APP_SERVER_PATH = http://36.147.33.60:8000
VUE_APP_FLOW_DESIGN_URL = http://36.147.33.60:9999

5
.env.prod Normal file
View File

@ -0,0 +1,5 @@
NODE_ENV = prod
VUE_APP_APPLICATION_NAME = security-busi
VUE_APP_SERVER_PATH = http://36.147.33.60:8000
VUE_APP_FLOW_DESIGN_URL = http://36.147.33.60:9999

5
.env.qprod Normal file
View File

@ -0,0 +1,5 @@
NODE_ENV = qprod
VUE_APP_APPLICATION_NAME = security-busi
VUE_APP_SERVER_PATH = http://197.50.18.66:8000
VUE_APP_FLOW_DESIGN_URL = http://197.50.18.66:9999

17
.eslintrc.js Normal file
View File

@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}

28
.gitignore vendored Normal file
View File

@ -0,0 +1,28 @@
.DS_Store
node_modules
/dist
/tests/e2e/videos/
/tests/e2e/screenshots/
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Editor directories and files
.idea
.vscode
.history
dist.zip
package-lock.json
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
*.lock

5
.postcssrc.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
plugins: {
autoprefixer: {}
}
}

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# security-pc

5
babel.config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}

9
build.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
echo "====================打包文件===================="
yarn build
echo "====================传输文件===================="
scp -P 22 -r ./dist/** root@192.168.0.157:/docker/nginx/web/html
echo "====================部署完毕===================="

64
package.json Normal file
View File

@ -0,0 +1,64 @@
{
"name": "security-pc",
"version": "2.8.1",
"private": true,
"scripts": {
"local": "vue-cli-service serve --mode local",
"build:dev": "vue-cli-service build --mode dev",
"build:qprod": "vue-cli-service build --mode qprod",
"build:prod": "vue-cli-service build --mode prod",
"lint": "vue-cli-service lint",
"analyz": "npm_config_report=true npm run build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e"
},
"dependencies": {
"@amap/amap-vue": "^2.0.13",
"@riophae/vue-treeselect": "^0.4.0",
"@wangeditor/editor": "^5.0.1",
"@wangeditor/editor-for-vue": "^1.0.0",
"avue-plugin-ueditor": "^0.1.4",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"classlist-polyfill": "^1.2.0",
"crypto-js": "^4.0.0",
"echarts": "^5.3.2",
"element-ui": "^2.15.1",
"js-base64": "^2.5.1",
"js-cookie": "^2.2.0",
"js-md5": "^0.7.3",
"mockjs": "^1.0.1-beta3",
"node-gyp": "^5.0.6",
"nprogress": "^0.2.0",
"ol": "^7.1.0",
"portfinder": "^1.0.23",
"qrcodejs2": "0.0.2",
"sass": "^1.53.0",
"script-loader": "^0.7.2",
"vue": "^2.6.10",
"vue-axios": "^2.1.2",
"vue-i18n": "^8.7.0",
"vue-print-nb": "^1.7.5",
"vue-router": "^3.0.1",
"vuex": "^3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.1.1",
"@vue/cli-plugin-eslint": "^3.1.5",
"@vue/cli-service": "^3.1.4",
"chai": "^4.1.2",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.17",
"webpack-bundle-analyzer": "^3.0.3"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}

11
public/cdn/animate/3.5.2/animate.css vendored Normal file

File diff suppressed because one or more lines are too long

9
public/cdn/avue/2.8.12/avue.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

9
public/cdn/axios/1.0.0/axios.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,331 @@
{
"id": "567566",
"name": "avue-cli",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "",
"glyphs": [
{
"icon_id": "5779983",
"name": "中英文",
"font_class": "zhongyingwen",
"unicode": "e61d",
"unicode_decimal": 58909
},
{
"icon_id": "6270863",
"name": "菜单",
"font_class": "caidan",
"unicode": "e891",
"unicode_decimal": 59537
},
{
"icon_id": "696478",
"name": "日志",
"font_class": "rizhi1",
"unicode": "e6af",
"unicode_decimal": 59055
},
{
"icon_id": "3416675",
"name": "锁屏",
"font_class": "suoping",
"unicode": "e6e9",
"unicode_decimal": 59113
},
{
"icon_id": "6631809",
"name": "主题",
"font_class": "zhuti",
"unicode": "e620",
"unicode_decimal": 58912
},
{
"icon_id": "1261208",
"name": "bug",
"font_class": "bug",
"unicode": "e649",
"unicode_decimal": 58953
},
{
"icon_id": "288984",
"name": "微信",
"font_class": "weixin1",
"unicode": "e679",
"unicode_decimal": 59001
},
{
"icon_id": "1037628",
"name": "qq",
"font_class": "qq1",
"unicode": "e609",
"unicode_decimal": 58889
},
{
"icon_id": "1046777",
"name": "验证码",
"font_class": "yanzhengma",
"unicode": "e616",
"unicode_decimal": 58902
},
{
"icon_id": "2559431",
"name": "用户",
"font_class": "yonghu",
"unicode": "e6b3",
"unicode_decimal": 59059
},
{
"icon_id": "2678617",
"name": "密码",
"font_class": "mima",
"unicode": "e652",
"unicode_decimal": 58962
},
{
"icon_id": "2678634",
"name": "手机",
"font_class": "shouji",
"unicode": "e65d",
"unicode_decimal": 58973
},
{
"icon_id": "554313",
"name": "wifi路由",
"font_class": "iconset0265",
"unicode": "e6a4",
"unicode_decimal": 59044
},
{
"icon_id": "1149090",
"name": "动态",
"font_class": "dongtai",
"unicode": "e6a7",
"unicode_decimal": 59047
},
{
"icon_id": "3851337",
"name": "参数",
"font_class": "canshu",
"unicode": "e655",
"unicode_decimal": 58965
},
{
"icon_id": "167168",
"name": "数据展示2",
"font_class": "shujuzhanshi2",
"unicode": "e651",
"unicode_decimal": 58961
},
{
"icon_id": "1025135",
"name": "退出全屏",
"font_class": "tuichuquanping",
"unicode": "e755",
"unicode_decimal": 59221
},
{
"icon_id": "1166053",
"name": "日志",
"font_class": "rizhi",
"unicode": "e61c",
"unicode_decimal": 58908
},
{
"icon_id": "500861",
"name": "错误提示图标",
"font_class": "cuowutishitubiao",
"unicode": "e6a0",
"unicode_decimal": 59040
},
{
"icon_id": "554205",
"name": "闪电",
"font_class": "iconset0216",
"unicode": "e673",
"unicode_decimal": 58995
},
{
"icon_id": "1572731",
"name": "错误",
"font_class": "debug",
"unicode": "e611",
"unicode_decimal": 58897
},
{
"icon_id": "1305474",
"name": "权限",
"font_class": "quanxian",
"unicode": "e63f",
"unicode_decimal": 58943
},
{
"icon_id": "1684809",
"name": "刷新",
"font_class": "shuaxin",
"unicode": "e6ba",
"unicode_decimal": 59066
},
{
"icon_id": "579385",
"name": "全屏",
"font_class": "quanping",
"unicode": "e615",
"unicode_decimal": 58901
},
{
"icon_id": "2154823",
"name": "播放器-锁屏_44",
"font_class": "bofangqi-suoping",
"unicode": "e699",
"unicode_decimal": 59033
},
{
"icon_id": "1160830",
"name": "navicon",
"font_class": "navicon",
"unicode": "e84e",
"unicode_decimal": 59470
},
{
"icon_id": "1250665",
"name": "圆",
"font_class": "yuan",
"unicode": "e657",
"unicode_decimal": 58967
},
{
"icon_id": "680969",
"name": "表单",
"font_class": "biaodan",
"unicode": "e715",
"unicode_decimal": 59157
},
{
"icon_id": "1164693",
"name": "系统管理",
"font_class": "liuliangyunpingtaitubiao08",
"unicode": "e68f",
"unicode_decimal": 59023
},
{
"icon_id": "1723000",
"name": "菜单管理",
"font_class": "caidanguanli",
"unicode": "e7c0",
"unicode_decimal": 59328
},
{
"icon_id": "2486611",
"name": "用户管理",
"font_class": "yonghuguanli",
"unicode": "e610",
"unicode_decimal": 58896
},
{
"icon_id": "2959039",
"name": "角色管理",
"font_class": "jiaoseguanli",
"unicode": "e624",
"unicode_decimal": 58916
},
{
"icon_id": "1164841",
"name": "错误",
"font_class": "cuowu",
"unicode": "e626",
"unicode_decimal": 58918
},
{
"icon_id": "591722",
"name": "wxb工具",
"font_class": "wxbgongju",
"unicode": "e61b",
"unicode_decimal": 58907
},
{
"icon_id": "804054",
"name": "退出",
"font_class": "tuichu",
"unicode": "e642",
"unicode_decimal": 58946
},
{
"icon_id": "1191509",
"name": "导航栏_模式02",
"font_class": "daohanglanmoshi02",
"unicode": "e623",
"unicode_decimal": 58915
},
{
"icon_id": "1005775",
"name": "阿里巴巴",
"font_class": "changyonglogo27",
"unicode": "e714",
"unicode_decimal": 59156
},
{
"icon_id": "128369",
"name": "欢迎页",
"font_class": "huanyingye",
"unicode": "e60c",
"unicode_decimal": 58892
},
{
"icon_id": "586924",
"name": "iframe",
"font_class": "iframe",
"unicode": "e74c",
"unicode_decimal": 59212
},
{
"icon_id": "700335",
"name": "360",
"font_class": "msnui-360",
"unicode": "e78a",
"unicode_decimal": 59274
},
{
"icon_id": "833695",
"name": "搜狐",
"font_class": "souhu",
"unicode": "e62d",
"unicode_decimal": 58925
},
{
"icon_id": "1114667",
"name": "图标",
"font_class": "tubiao",
"unicode": "e630",
"unicode_decimal": 58928
},
{
"icon_id": "1346645",
"name": "百度1",
"font_class": "baidu1",
"unicode": "e621",
"unicode_decimal": 58913
},
{
"icon_id": "1789257",
"name": "表格",
"font_class": "biaoge",
"unicode": "e6b5",
"unicode_decimal": 59061
},
{
"icon_id": "695468",
"name": "QQ",
"font_class": "qq",
"unicode": "e631",
"unicode_decimal": 58929
},
{
"icon_id": "851731",
"name": "微信",
"font_class": "weixin",
"unicode": "e632",
"unicode_decimal": 58930
}
]
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,23 @@
[class^="icon-"]{
font-family: "iconfont" !important;
/* 以下内容参照第三方图标库本身的规则 */
font-size: 18px !important;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.el-menu-item [class^=icon-] {
margin-right: 5px;
width: 24px;
text-align: center;
font-size: 18px;
vertical-align: middle;
}
.el-submenu [class^=icon-] {
vertical-align: middle;
margin-right: 5px;
width: 24px;
text-align: center;
font-size: 18px;
}

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,583 @@
{
"id": "1066523",
"name": "saber",
"font_family": "iconfont",
"css_prefix_text": "icon",
"description": "saber图标库",
"glyphs": [
{
"icon_id": "7396772",
"name": "gitee",
"font_class": "gitee2",
"unicode": "e6d6",
"unicode_decimal": 59094
},
{
"icon_id": "431779",
"name": "github",
"font_class": "github",
"unicode": "e709",
"unicode_decimal": 59145
},
{
"icon_id": "7766806",
"name": "icon_wechat",
"font_class": "icon_wechat",
"unicode": "ebde",
"unicode_decimal": 60382
},
{
"icon_id": "7766735",
"name": "icon_exchange",
"font_class": "icon_exchange",
"unicode": "eba7",
"unicode_decimal": 60327
},
{
"icon_id": "7766736",
"name": "icon_ding",
"font_class": "icon_ding",
"unicode": "eba8",
"unicode_decimal": 60328
},
{
"icon_id": "7766737",
"name": "icon_down",
"font_class": "icon_down",
"unicode": "eba9",
"unicode_decimal": 60329
},
{
"icon_id": "7766740",
"name": "icon_glass",
"font_class": "icon_glass",
"unicode": "ebaa",
"unicode_decimal": 60330
},
{
"icon_id": "7766742",
"name": "icon_GPS",
"font_class": "icon_GPS",
"unicode": "ebab",
"unicode_decimal": 60331
},
{
"icon_id": "7766743",
"name": "icon_hardware_fill",
"font_class": "icon_hardware_fill",
"unicode": "ebac",
"unicode_decimal": 60332
},
{
"icon_id": "7766745",
"name": "icon_im_more",
"font_class": "icon_im_more",
"unicode": "ebad",
"unicode_decimal": 60333
},
{
"icon_id": "7766747",
"name": "icon_group",
"font_class": "icon_group",
"unicode": "ebae",
"unicode_decimal": 60334
},
{
"icon_id": "7766748",
"name": "icon_horn",
"font_class": "icon_horn",
"unicode": "ebaf",
"unicode_decimal": 60335
},
{
"icon_id": "7766749",
"name": "icon_im_face",
"font_class": "icon_im_face",
"unicode": "ebb0",
"unicode_decimal": 60336
},
{
"icon_id": "7766752",
"name": "icon_launch_page",
"font_class": "icon_launch_page",
"unicode": "ebb1",
"unicode_decimal": 60337
},
{
"icon_id": "7766753",
"name": "icon_likegood",
"font_class": "icon_likegood",
"unicode": "ebb2",
"unicode_decimal": 60338
},
{
"icon_id": "7766754",
"name": "icon_index_line",
"font_class": "icon_index_line",
"unicode": "ebb3",
"unicode_decimal": 60339
},
{
"icon_id": "7766755",
"name": "icon_live",
"font_class": "icon_live",
"unicode": "ebb4",
"unicode_decimal": 60340
},
{
"icon_id": "7766756",
"name": "icon_link",
"font_class": "icon_link",
"unicode": "ebb5",
"unicode_decimal": 60341
},
{
"icon_id": "7766757",
"name": "icon_im_voice",
"font_class": "icon_im_voice",
"unicode": "ebb6",
"unicode_decimal": 60342
},
{
"icon_id": "7766758",
"name": "icon_mobilephone",
"font_class": "icon_mobilephone",
"unicode": "ebb7",
"unicode_decimal": 60343
},
{
"icon_id": "7766759",
"name": "icon_dmail",
"font_class": "icon_dmail",
"unicode": "ebb8",
"unicode_decimal": 60344
},
{
"icon_id": "7766760",
"name": "icon_message",
"font_class": "icon_message",
"unicode": "ebb9",
"unicode_decimal": 60345
},
{
"icon_id": "7766763",
"name": "icon_more",
"font_class": "icon_more",
"unicode": "ebba",
"unicode_decimal": 60346
},
{
"icon_id": "7766764",
"name": "icon_left",
"font_class": "icon_left",
"unicode": "ebbb",
"unicode_decimal": 60347
},
{
"icon_id": "7766765",
"name": "icon_next_arrow",
"font_class": "icon_next_arrow",
"unicode": "ebbc",
"unicode_decimal": 60348
},
{
"icon_id": "7766766",
"name": "icon_notice",
"font_class": "icon_notice",
"unicode": "ebbd",
"unicode_decimal": 60349
},
{
"icon_id": "7766769",
"name": "icon_namecard",
"font_class": "icon_namecard",
"unicode": "ebbe",
"unicode_decimal": 60350
},
{
"icon_id": "7766770",
"name": "icon_phone",
"font_class": "icon_phone",
"unicode": "ebbf",
"unicode_decimal": 60351
},
{
"icon_id": "7766771",
"name": "icon_qq",
"font_class": "icon_qq",
"unicode": "ebc0",
"unicode_decimal": 60352
},
{
"icon_id": "7766772",
"name": "icon_photo",
"font_class": "icon_photo",
"unicode": "ebc1",
"unicode_decimal": 60353
},
{
"icon_id": "7766774",
"name": "icon_redpacket",
"font_class": "icon_redpacket",
"unicode": "ebc2",
"unicode_decimal": 60354
},
{
"icon_id": "7766775",
"name": "icon_patriarch",
"font_class": "icon_patriarch",
"unicode": "ebc3",
"unicode_decimal": 60355
},
{
"icon_id": "7766776",
"name": "icon_roundclose",
"font_class": "icon_roundclose",
"unicode": "ebc4",
"unicode_decimal": 60356
},
{
"icon_id": "7766777",
"name": "icon_im_keyboard",
"font_class": "icon_im_keyboard",
"unicode": "ebc5",
"unicode_decimal": 60357
},
{
"icon_id": "7766778",
"name": "icon_roundreduce",
"font_class": "icon_roundreduce",
"unicode": "ebc6",
"unicode_decimal": 60358
},
{
"icon_id": "7766780",
"name": "icon_QRcode",
"font_class": "icon_QRcode",
"unicode": "ebc7",
"unicode_decimal": 60359
},
{
"icon_id": "7766781",
"name": "icon_savememo",
"font_class": "icon_savememo",
"unicode": "ebc8",
"unicode_decimal": 60360
},
{
"icon_id": "7766782",
"name": "icon_roundadd",
"font_class": "icon_roundadd",
"unicode": "ebc9",
"unicode_decimal": 60361
},
{
"icon_id": "7766783",
"name": "icon_refresh",
"font_class": "icon_refresh",
"unicode": "ebca",
"unicode_decimal": 60362
},
{
"icon_id": "7766784",
"name": "icon_search",
"font_class": "icon_search",
"unicode": "ebcb",
"unicode_decimal": 60363
},
{
"icon_id": "7766785",
"name": "icon_scan",
"font_class": "icon_scan",
"unicode": "ebcc",
"unicode_decimal": 60364
},
{
"icon_id": "7766786",
"name": "icon_send",
"font_class": "icon_send",
"unicode": "ebcd",
"unicode_decimal": 60365
},
{
"icon_id": "7766787",
"name": "icon_principal",
"font_class": "icon_principal",
"unicode": "ebce",
"unicode_decimal": 60366
},
{
"icon_id": "7766789",
"name": "icon_scan_namecard",
"font_class": "icon_scan_namecard",
"unicode": "ebcf",
"unicode_decimal": 60367
},
{
"icon_id": "7766790",
"name": "icon_secret",
"font_class": "icon_secret",
"unicode": "ebd0",
"unicode_decimal": 60368
},
{
"icon_id": "7766791",
"name": "icon_share",
"font_class": "icon_share",
"unicode": "ebd1",
"unicode_decimal": 60369
},
{
"icon_id": "7766793",
"name": "icon_sms",
"font_class": "icon_sms",
"unicode": "ebd2",
"unicode_decimal": 60370
},
{
"icon_id": "7766795",
"name": "icon_setting",
"font_class": "icon_setting",
"unicode": "ebd3",
"unicode_decimal": 60371
},
{
"icon_id": "7766798",
"name": "icon_star",
"font_class": "icon_star",
"unicode": "ebd4",
"unicode_decimal": 60372
},
{
"icon_id": "7766799",
"name": "icon_subordinate",
"font_class": "icon_subordinate",
"unicode": "ebd5",
"unicode_decimal": 60373
},
{
"icon_id": "7766800",
"name": "icon_task",
"font_class": "icon_task",
"unicode": "ebd6",
"unicode_decimal": 60374
},
{
"icon_id": "7766803",
"name": "icon_study",
"font_class": "icon_study",
"unicode": "ebd7",
"unicode_decimal": 60375
},
{
"icon_id": "7766808",
"name": "icon_work",
"font_class": "icon_work",
"unicode": "ebd8",
"unicode_decimal": 60376
},
{
"icon_id": "7766811",
"name": "icon_safety",
"font_class": "icon_safety",
"unicode": "ebd9",
"unicode_decimal": 60377
},
{
"icon_id": "7766813",
"name": "icon_voipphone",
"font_class": "icon_voipphone",
"unicode": "ebda",
"unicode_decimal": 60378
},
{
"icon_id": "7766815",
"name": "icon_shakehands",
"font_class": "icon_shakehands",
"unicode": "ebdb",
"unicode_decimal": 60379
},
{
"icon_id": "7766817",
"name": "icon_task_done",
"font_class": "icon_task_done",
"unicode": "ebdc",
"unicode_decimal": 60380
},
{
"icon_id": "7766820",
"name": "icon_workfile_line",
"font_class": "icon_workfile_line",
"unicode": "ebdd",
"unicode_decimal": 60381
},
{
"icon_id": "7766709",
"name": "icon_add",
"font_class": "icon_add",
"unicode": "eb8f",
"unicode_decimal": 60303
},
{
"icon_id": "7766710",
"name": "icon_addmessage",
"font_class": "icon_addmessage",
"unicode": "eb90",
"unicode_decimal": 60304
},
{
"icon_id": "7766711",
"name": "icon_addresslist",
"font_class": "icon_addresslist",
"unicode": "eb91",
"unicode_decimal": 60305
},
{
"icon_id": "7766712",
"name": "icon_affiliations_li",
"font_class": "icon_affiliations_li",
"unicode": "eb92",
"unicode_decimal": 60306
},
{
"icon_id": "7766713",
"name": "icon_addperson",
"font_class": "icon_addperson",
"unicode": "eb93",
"unicode_decimal": 60307
},
{
"icon_id": "7766714",
"name": "icon_boss",
"font_class": "icon_boss",
"unicode": "eb94",
"unicode_decimal": 60308
},
{
"icon_id": "7766715",
"name": "icon_alipay_line",
"font_class": "icon_alipay_line",
"unicode": "eb95",
"unicode_decimal": 60309
},
{
"icon_id": "7766716",
"name": "icon_addressbook",
"font_class": "icon_addressbook",
"unicode": "eb96",
"unicode_decimal": 60310
},
{
"icon_id": "7766717",
"name": "icon_at",
"font_class": "icon_at",
"unicode": "eb97",
"unicode_decimal": 60311
},
{
"icon_id": "7766718",
"name": "icon_airplay",
"font_class": "icon_airplay",
"unicode": "eb98",
"unicode_decimal": 60312
},
{
"icon_id": "7766719",
"name": "icon_calendar",
"font_class": "icon_calendar",
"unicode": "eb99",
"unicode_decimal": 60313
},
{
"icon_id": "7766720",
"name": "icon_attestation",
"font_class": "icon_attestation",
"unicode": "eb9a",
"unicode_decimal": 60314
},
{
"icon_id": "7766721",
"name": "icon_camera",
"font_class": "icon_camera",
"unicode": "eb9b",
"unicode_decimal": 60315
},
{
"icon_id": "7766722",
"name": "icon_certificate_fil",
"font_class": "icon_certificate_fil",
"unicode": "eb9c",
"unicode_decimal": 60316
},
{
"icon_id": "7766723",
"name": "icon_coinpurse_line",
"font_class": "icon_coinpurse_line",
"unicode": "eb9d",
"unicode_decimal": 60317
},
{
"icon_id": "7766725",
"name": "icon_compile",
"font_class": "icon_compile",
"unicode": "eb9e",
"unicode_decimal": 60318
},
{
"icon_id": "7766726",
"name": "icon_details",
"font_class": "icon_details",
"unicode": "eb9f",
"unicode_decimal": 60319
},
{
"icon_id": "7766728",
"name": "icon_cloud_history",
"font_class": "icon_cloud_history",
"unicode": "eba0",
"unicode_decimal": 60320
},
{
"icon_id": "7766729",
"name": "icon_community_line",
"font_class": "icon_community_line",
"unicode": "eba1",
"unicode_decimal": 60321
},
{
"icon_id": "7766730",
"name": "icon_discovery",
"font_class": "icon_discovery",
"unicode": "eba2",
"unicode_decimal": 60322
},
{
"icon_id": "7766731",
"name": "icon_delete",
"font_class": "icon_delete",
"unicode": "eba3",
"unicode_decimal": 60323
},
{
"icon_id": "7766732",
"name": "icon_dispose",
"font_class": "icon_dispose",
"unicode": "eba4",
"unicode_decimal": 60324
},
{
"icon_id": "7766733",
"name": "icon_doc",
"font_class": "icon_doc",
"unicode": "eba5",
"unicode_decimal": 60325
},
{
"icon_id": "7766734",
"name": "icon_cspace",
"font_class": "icon_cspace",
"unicode": "eba6",
"unicode_decimal": 60326
}
]
}

View File

@ -0,0 +1,272 @@
<?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" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="gitee2" unicode="&#59094;" d="M512-128C229.233778-128 0 101.233778 0 384S229.233778 896 512 896s512-229.233778 512-512-229.233778-512-512-512z m259.157333 568.888889l-290.759111-0.014222c-13.966222 0-25.287111-11.320889-25.287111-25.272889l-0.028444-63.217778c0-13.966222 11.306667-25.287111 25.272889-25.287111h177.024c13.966222 0 25.287111-11.306667 25.287111-25.272889v-12.643556A75.847111 75.847111 0 0 0 606.819556 213.333333h-240.213334a25.287111 25.287111 0 0 0-25.287111 25.272889V478.805333a75.847111 75.847111 0 0 0 75.847111 75.847111L771.086222 554.666667c13.966222 0 25.272889 11.306667 25.287111 25.272889L796.444444 643.128889c0 13.966222-11.306667 25.287111-25.272888 25.301333l-353.991112-0.014222C312.462222 668.430222 227.555556 583.523556 227.555556 478.805333v-353.962666c0-13.966222 11.320889-25.287111 25.287111-25.287111H625.777778c94.264889 0 170.666667 76.401778 170.666666 170.666666V415.601778c0 13.952-11.320889 25.272889-25.287111 25.272889z" horiz-adv-x="1024" />
<glyph glyph-name="github" unicode="&#59145;" d="M512 883.36c-282.752 0-512-229.216-512-512 0-226.208 146.72-418.144 350.144-485.824 25.6-4.736 35.008 11.104 35.008 24.64 0 12.192-0.48 52.544-0.704 95.328-142.464-30.976-172.512 60.416-172.512 60.416-23.296 59.168-56.832 74.912-56.832 74.912-46.464 31.776 3.52 31.136 3.52 31.136 51.392-3.616 78.464-52.768 78.464-52.768 45.664-78.272 119.776-55.648 148.992-42.56 4.576 33.088 17.856 55.68 32.512 68.48-113.728 12.928-233.28 56.864-233.28 253.024 0 55.904 20 101.568 52.768 137.44-5.312 12.896-22.848 64.96 4.96 135.488 0 0 43.008 13.76 140.832-52.48 40.832 11.36 84.64 17.024 128.16 17.248 43.488-0.192 87.328-5.888 128.256-17.248 97.728 66.24 140.64 52.48 140.64 52.48 27.872-70.528 10.336-122.592 5.024-135.488 32.832-35.84 52.704-81.536 52.704-137.44 0-196.64-119.776-239.936-233.792-252.64 18.368-15.904 34.72-47.04 34.72-94.816 0-68.512-0.608-123.648-0.608-140.512 0-13.632 9.216-29.6 35.168-24.576 203.328 67.776 349.856 259.616 349.856 485.76 0 282.784-229.248 512-512 512z" horiz-adv-x="1024" />
<glyph glyph-name="icon_wechat" unicode="&#60382;" d="M480.273415 542.676929c-26.28362 0-47.589878 21.306258-47.589878 47.589878s21.306258 47.589878 47.589878 47.589878 47.589878-21.306258 47.589878-47.589878-21.307282-47.589878-47.589878-47.589878z m-222.086098 0c-26.282596 0-47.589878 21.306258-47.589878 47.589878s21.306258 47.589878 47.589878 47.589878 47.589878-21.306258 47.589878-47.589878-21.306258-47.589878-47.589878-47.589878z m464.466404 47.564295a399.151839 399.151839 0 0 1-4.430916 0.025583c-20.759813 0-41.097-1.647523-60.860113-4.807492-37.747719 103.247502-151.84329 179.303712-288.131303 179.303712-167.45178 0-301.401538-114.813932-301.401538-253.81166 0-71.990614 35.929304-139.478681 98.44001-187.514721a31.729655 31.729655 0 0 0 11.567453-32.355919l-19.032472-81.68644 105.269556 54.822606a31.724539 31.724539 0 0 0 22.09932 2.701528c26.76662-6.462179 54.636365-9.777691 83.058694-9.77769h0.428766a290.275129 290.275129 0 0 1 10.526751-63.312978c-3.638877-0.093121-7.291057-0.140193-10.955517-0.140193-29.30135 0-58.165748 3.003404-86.151125 8.886391l-156.183132-81.33647c-24.046672-12.523221-51.705616 8.933463-45.553499 35.338856l30.207999 129.649826C43.754526 344.967008 4.375657 425.038672 4.375657 510.950344c0 176.399569 164.342975 317.26483 364.854709 317.26483 169.34285 0 312.887127-100.474342 353.423355-237.97395z m90.747817-301.376978c-26.28362 0-47.589878 21.306258-47.589878 47.589878s21.306258 47.589878 47.589878 47.589878 47.589878-21.306258 47.589878-47.589878c0-26.282596-21.306258-47.589878-47.589878-47.589878z m-190.358489 0c-26.28362 0-47.589878 21.306258-47.589878 47.589878s21.306258 47.589878 47.589878 47.589878 47.589878-21.306258 47.589878-47.589878c0-26.282596-21.307282-47.589878-47.589878-47.589878z m237.063207-207.569476a31.726585 31.726585 0 0 0 11.728112 34.288944c53.319369 39.149649 84.33578 96.250134 84.335781 157.417239 0 112.948445-105.7106 206.222805-237.949391 206.222805s-237.94939-93.27436-237.94939-206.222805 105.7106-206.222805 237.94939-206.222805c19.938098 0 39.532365 2.125407 58.480926 6.282077a31.730679 31.730679 0 0 0 20.985964-2.612501l76.435856-38.217416-14.017248 49.064462z m94.844112-100.979856c7.583722-26.543539-20.00359-49.438992-44.693922-37.092803l-131.196041 65.598021c-19.874653-3.641947-40.229237-5.494131-60.838623-5.494131-165.637458 0-301.401538 119.792317-301.401538 269.675976S552.585347 542.676929 718.221782 542.676929s301.401538-119.792317 301.401537-269.674952c0-74.875315-34.238802-144.482649-92.689028-194.632839l28.016077-98.054224z" horiz-adv-x="1024" />
<glyph glyph-name="icon_exchange" unicode="&#60327;" d="M703.990662 639.988232H289.031812V761.11187L112.747877 605.707474l176.282912-151.608953V575.990662h446.957635v-0.912789c36.963866-2.12029 72.765257-7.91118 106.506732-17.136285-28.199249 47.562249-80.918961 82.046644-138.504494 82.046644z m-31.998784-129.024585v1.030469H353.028359V384.37453c0-17.672498-14.326287-31.998785-31.998785-31.998785a31.999808 31.999808 0 0 0-20.865213 7.738242L43.156916 581.149149c-13.398148 11.523451-14.918781 31.726585-3.39533 45.124733a31.945573 31.945573 0 0 0 3.100617 3.13848L299.869648 855.981564c13.256932 11.686157 33.476439 10.413164 45.163619-2.842744a31.998785 31.998785 0 0 0 7.995092-21.159926v-127.993092h350.962303c123.70544 0 223.989447-107.446128 223.989447-221.528396a330.016249 330.016249 0 0 0-1.432628-30.886451c-57.589626 38.119179-136.065955 60.424184-222.556819 60.424184a495.247454 495.247454 0 0 1-31.998784-1.031492zM320.009338 128.386298h414.95885v-121.124661l176.282912 155.404395-176.282912 151.609977v-121.892141H288.010553v0.912789c-36.963866 2.12029-72.765257 7.91118-106.506733 17.136285 28.200272-47.562249 80.919984-82.046644 138.505518-82.046644z m31.997761 129.024585v-1.030469h318.963519V384c0 17.672498 14.326287 31.998785 31.998785 31.998785a31.998785 31.998785 0 0 0 20.865213-7.738242L980.843084 187.225381c13.398148-11.523451 14.918781-31.726585 3.39533-45.124733a31.94762 31.94762 0 0 0-3.100617-3.13848L724.129328-87.607034c-13.255908-11.686157-33.476439-10.414187-45.163619 2.842744a31.998785 31.998785 0 0 0-7.995091 21.159926V64.389752H320.009338c-123.70544 0-223.989447 107.446128-223.989447 221.528395 0 10.513448 0.48607 20.817118 1.432628 30.886451 57.589626-38.119179 136.065955-60.423161 222.556819-60.423161a493.786173 493.786173 0 0 1 31.997761 1.029446z" horiz-adv-x="1024" />
<glyph glyph-name="icon_ding" unicode="&#60328;" d="M755.681952 799.980109l-3.796466-20.143782c-4.790096-25.41074-27.03268-43.853787-52.889581-43.853787h-94.111425l-5.205558-58.305941-13.068644-146.363485-4.653996-52.116985 50.154283-14.916734c106.232486-31.594579 148.201343-104.747669 162.039513-176.276773H229.849922c13.83817 71.529103 55.80805 144.682193 162.040536 176.276773l50.154284 14.916734-4.653997 52.116985-13.068643 146.363485-5.205559 58.305941H325.006142c-25.856901 0-48.100508 18.442024-52.889581 43.852764L268.317025 799.980109h487.364927m38.59297 63.996547H229.724055c-1.988284 0-3.972475-0.185218-5.925966-0.553609-17.366529-3.273557-28.791743-20.004613-25.518187-37.372165l10.945283-58.069557c10.494005-55.672974 59.125609-95.995331 115.779934-95.995332h35.573193l13.068643-146.363485c-147.627269-43.904952-213.630519-161.757081-213.630518-301.615409h304.672024l13.141298-287.907199c0.799202-17.494443 15.789615-32.077579 33.460066-32.077579h2.331092c17.930371 0 32.612769 14.361079 33.373085 32.077579l12.360516 287.907199h304.628022c0 139.858328-66.002226 257.710456-213.630519 301.615409l13.068644 146.363485h35.574216c56.653301 0 105.284905 40.322357 115.779934 95.995332l10.944259 58.069557c0.36839 1.954515 0.553609 3.939729 0.553609 5.926989 0.001023 17.672498-14.32424 31.998785-31.997761 31.998785z" horiz-adv-x="1024" />
<glyph glyph-name="icon_down" unicode="&#60329;" d="M512 495.029746L149.978826 133.008572c-12.496615-12.496615-32.756031-12.496615-45.252646 0l-45.252647 45.252647c-12.496615 12.496615-12.496615 32.756031 0 45.252647l429.900144 429.900143c12.496615 12.495592 32.756031 12.495592 45.252646 0l429.900144-429.900143c12.495592-12.496615 12.495592-32.756031 0-45.252647l-45.252647-45.252647c-12.495592-12.496615-32.756031-12.496615-45.252646 0L512 495.029746z" horiz-adv-x="1024" />
<glyph glyph-name="icon_glass" unicode="&#60330;" d="M782.188652 83.160257c96.370885 0 174.494173 78.124312 174.494173 174.494173 0 96.370885-78.123288 174.494173-174.494173 174.494173S607.694479 354.025315 607.694479 257.65443c0-96.370885 78.123288-174.494173 174.494173-174.494173z m-539.346835 0c96.370885 0 174.494173 78.124312 174.494173 174.494173 0 96.370885-78.123288 174.494173-174.494173 174.494173-96.370885 0-174.494173-78.123288-174.494173-174.494173 0-96.370885 78.123288-174.494173 174.494173-174.494173z m649.828089 385.29218L810.298873 646.924201c-14.685467 31.818683-52.384068 45.706995-84.20275 31.021528-0.907673-0.424672-0.907673-0.424672-1.807159-0.868787l-38.944987-19.48989c-15.668865-7.841595-34.728966-1.496074-42.570561 14.173814-7.841595 15.668865-1.496074 34.728966 14.173814 42.570561l38.944987 19.48989c1.797949 0.88823 1.797949 0.88823 3.613294 1.737574 63.637366 29.370935 139.034567 1.592264 168.405501-62.044078l149.191904-323.249125c5.28333-11.447726 3.169179-24.418133-4.359284-33.528628 4.826935-18.891256 7.392364-38.687114 7.392364-59.08263 0-131.415029-106.532315-237.947344-237.947344-237.947343S544.241308 126.240425 544.241308 257.65443c0 5.330402 0.174985 10.619872 0.51984 15.863293h-0.51984c0 17.522072-14.204513 31.726585-31.726585 31.726585s-31.726585-14.204513-31.726585-31.726585h-0.51984a241.694691 241.694691 0 0 0 0.51984-15.863293c0-131.415029-106.532315-237.947344-237.947344-237.947343S4.894474 126.240425 4.894474 257.65443c0 20.357654 2.556219 40.117696 7.365758 58.978253-7.599072 9.115612-9.750061 22.141276-4.446266 33.633005l149.191904 323.249125c29.370935 63.637366 104.768135 91.415013 168.405501 62.044078 1.815345-0.849344 1.815345-0.849344 3.613294-1.737574l38.944988-19.48989c15.668865-7.841595 22.014386-26.900673 14.173814-42.570561-7.841595-15.668865-26.900673-22.014386-42.570561-14.173814l-38.944988 19.48989c-0.898463 0.444115-0.898463 0.444115-1.807158 0.868787-31.818683 14.685467-69.517283 0.796132-84.202751-31.021528l-82.407871-178.550558c33.050744 17.388019 70.691015 27.228131 110.630656 27.228131 97.355305 0 181.054589-58.467623 217.900775-142.204769 14.901385 9.67843 32.680307 15.299451 51.773154 15.299451 19.091824 0 36.871769-5.621021 51.773154-15.299451 36.846186 83.737146 120.54547 142.204769 217.900775 142.204769 39.879266 0 77.466326-9.810437 110.481254-27.149337z" horiz-adv-x="1024" />
<glyph glyph-name="icon_GPS" unicode="&#60331;" d="M512-47.979502c223.989447 224.729298 335.984171 399.577534 335.984171 524.546757 0 187.452299-150.424988 339.412246-335.984171 339.412247S176.015829 664.019555 176.015829 476.567255c0-124.9682 111.994724-299.81746 335.984171-524.546757z m45.327348-45.177945c-25.009603-25.092491-65.645093-25.092491-90.654696 0-235.249909 236.027621-354.653369 422.443311-354.653369 569.724702C112.019283 699.219241 290.950512 879.976048 512 879.976048s399.980717-180.756807 399.980717-403.408793c0-147.281391-119.40346-333.697081-354.653369-569.724702z m-45.327348 445.158662c70.688969 0 127.994116 57.305147 127.994116 127.994116s-57.305147 127.994116-127.994116 127.994116-127.994116-57.305147-127.994116-127.994116 57.305147-127.994116 127.994116-127.994116z m0-63.996546c-106.033965 0-191.990662 85.956697-191.990662 191.990662s85.956697 191.990662 191.990662 191.990662 191.990662-85.956697 191.990662-191.990662-85.957721-191.990662-191.990662-191.990662z" horiz-adv-x="1024" />
<glyph glyph-name="icon_hardware_fill" unicode="&#60332;" d="M128.018675 256.005884h767.96265v-63.996546H128.018675v63.996546z m703.966103 351.983563c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785h31.998785c53.016471 0 95.995331-42.97886 95.995331-95.995331v-543.974226c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V575.990662c0 53.016471 42.97886 95.995331 95.995331 95.995331h31.998785c17.672498 0 31.998785-14.326287 31.998785-31.998784s-14.326287-31.998785-31.998785-31.998785h-31.998785c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-543.974225c0-17.672498 14.326287-31.998785 31.998785-31.998785h703.966103c17.672498 0 31.998785 14.326287 31.998785 31.998785V575.990662c0 17.672498-14.326287 31.998785-31.998785 31.998785h-31.997762zM512 415.998785c-26.508747 0-47.998177 21.48943-47.998177 47.998177s21.48943 47.998177 47.998177 47.998177 47.998177-21.48943 47.998177-47.998177c-0.001023-26.508747-21.48943-47.998177-47.998177-47.998177z m135.75794 199.754486c12.495592-12.495592 12.495592-32.756031 0-45.252646-12.495592-12.496615-32.756031-12.496615-45.252647 0-23.162536 23.162536-55.161321 37.488823-90.505293 37.488822s-67.342758-14.326287-90.505293-37.488822c-12.495592-12.496615-32.756031-12.496615-45.252647 0-12.495592 12.495592-12.495592 32.756031 0 45.252646 34.743292 34.743292 82.741469 56.232722 135.75794 56.232722s101.014648-21.488407 135.75794-56.232722z m113.131617 113.131617c12.496615-12.495592 12.496615-32.756031 0-45.252647-12.495592-12.495592-32.756031-12.495592-45.252647 0-52.114938 52.114938-124.111692 84.349083-203.63691 84.349084s-151.521972-32.234145-203.63691-84.349084c-12.496615-12.495592-32.756031-12.495592-45.252647 0-12.496615 12.496615-12.496615 32.756031 0 45.252647C326.806137 792.581606 414.802284 831.978894 512 831.978894s185.192839-39.397289 248.889557-103.094006z" horiz-adv-x="1024" />
<glyph glyph-name="icon_im_more" unicode="&#60333;" d="M512-91.897757c262.831081 0 475.897757 213.066677 475.897757 475.897757S774.831081 859.897757 512 859.897757 36.102243 646.831081 36.102243 384 249.168919-91.897757 512-91.897757z m0-31.726586c-280.353153 0-507.624343 227.27119-507.624343 507.624343S231.646847 891.624343 512 891.624343s507.624343-227.27119 507.624343-507.624343-227.27119-507.624343-507.624343-507.624343z m-31.726585 539.350928V638.021437c0 17.406438 14.081717 31.516808 31.726585 31.516808 17.522072 0 31.726585-14.116509 31.726585-31.516808v-222.294852h222.294852c17.406438 0 31.516808-14.081717 31.516808-31.726585 0-17.522072-14.116509-31.726585-31.516808-31.726585H543.726585v-222.294852c0-17.406438-14.081717-31.516808-31.726585-31.516808-17.522072 0-31.726585 14.116509-31.726585 31.516808V352.273415H257.978563c-17.406438 0-31.516808 14.081717-31.516808 31.726585 0 17.522072 14.116509 31.726585 31.516808 31.726585h222.294852z" horiz-adv-x="1024" />
<glyph glyph-name="icon_group" unicode="&#60334;" d="M927.602509 143.783986l-0.23229 0.227174h29.299303c-6.963599 16.205077-17.3389 28.650527-32.123628 38.505989-11.113105 7.407714-25.723871 13.758352-46.514383 20.424169-5.110391 1.638313-10.54824 3.289929-17.350157 5.284353-3.324722 0.975211-15.70161 4.557806-18.429745 5.355985-88.184435 25.798573-130.320091 54.177923-130.320091 130.420375 0 23.708981 6.788613 44.428885 18.857487 65.177441 3.789303 6.513344 7.748475 12.511965 13.272281 20.383236-2.675946-3.813862 9.016351 12.731976 11.486613 16.3729 15.338337 22.601764 21.530362 39.328727 21.530362 66.057485V583.99087c0 42.020022-14.459317 72.682369-42.056862 89.419566-29.714765 11.600199-47.465035 27.124777-53.251831 46.573735-1.813299 6.094812-2.127454 19.222807 6.708796 25.606191 4.488221 3.242857 10.018168 4.727675 16.588816 4.455475l0.721431-0.555655-0.228197 0.403182c87.37807-12.452613 135.514393-79.288834 135.514393-165.902494v-71.996754c0-95.995331-65.146743-119.993908-65.146742-167.992085 0-71.996754 112.100124-60.234873 184.111204-108.23305 25.090445-16.72287 43.566238-38.886659 55.428404-66.491367 13.953803-32.473599-1.058099-70.109778-33.531698-84.064604a63.968917 63.968917 0 0 0-9.199522-3.148714l-0.032746-0.109493-0.391926 0.001023-0.179079-0.045026-0.022513 0.046049c-31.827893 0.151449-51.17759 12.536524-58.051137 37.155225-3.069919 10.667967 1.203408 18.968004 12.821003 24.90011l0.722454-0.228198zM375.726314 367.090888c14.781658-24.329105 22.99062-48.275493 22.99062-75.65712 0-87.273692-49.405223-119.287827-159.104671-150.295028-3.53143-0.997724-19.150152-5.370311-23.319102-6.550183-8.773827-2.484587-15.809057-4.539386-22.470781-6.585999-30.438243-9.346879-51.907207-18.339694-68.656682-29.290093-29.495778-19.284205-48.27754-45.904493-57.852616-82.694397h798.615786c-9.473769 36.729529-28.263717 63.308885-57.944713 82.604346-16.529465 10.745738-37.448914 19.615757-66.565045 28.721135-6.931876 2.167363-14.261818 4.338818-23.385617 6.948249-4.428869 1.266853-20.75265 5.875824-24.308638 6.890944-108.392686 30.92943-157.548222 63.22088-157.548223 150.252049 0 27.154453 8.003278 50.982138 22.450315 75.206866 4.670369 7.831362 9.629311 15.159258 16.617469 24.87555-3.558036-4.947685 11.968589 16.485463 15.33322 21.321608 22.096251 31.757285 31.472805 56.463989 31.472806 94.585216v92.567255c0 94.390787-55.488779 151.992693-154.733107 151.992693-100.638071 0-155.976424-57.491389-154.74948-151.154605l0.005117-0.838088v-42.306548c0-28.01403 0-28.01403-0.005117-51.098795-0.497327-37.983079 8.776897-62.33879 31.306007-94.169753 3.366677-4.756327 18.307971-25.061792 15.144931-20.73116 7.015787-9.603729 12.005428-16.8559 16.707521-24.594142zM248.578472 599.990263c-1.616824 123.423007 76.646658 215.989239 218.740909 215.989239 140.467195 0 218.729653-92.313475 218.729654-215.989239v-92.567256c0-123.423007-85.874833-154.277736-85.874833-215.989239 0-92.566232 147.767462-77.444836 242.692414-139.15634 43.26027-28.123524 71.603805-68.215638 85.031629-120.276341 8.827039-34.224476-11.760858-69.124334-45.985334-77.951373a63.993476 63.993476 0 0 0-15.983019-2.028193l-798.61681 0.001024c-35.343973 0-63.996546 28.652574-63.996547 63.996546 0 5.437849 0.692778 10.854209 2.062986 16.117073 13.531178 51.995211 41.785685 92.042299 84.765569 120.141264 94.390787 61.711504 244.575298 46.590108 244.575298 139.15634 0 61.711504-87.757716 92.567255-86.141916 215.989239v92.567256z" horiz-adv-x="1024" />
<glyph glyph-name="icon_horn" unicode="&#60335;" d="M702.383048 225.615737c40.534182 40.534182 65.605184 96.531544 65.605184 158.384263s-25.071002 117.850082-65.605184 158.384263c-12.496615 12.495592-12.496615 32.756031 0 45.252647 12.495592 12.496615 32.756031 12.496615 45.252647 0 52.114938-52.114938 84.349083-124.111692 84.349083-203.63691s-32.234145-151.521972-84.349083-203.63691c-12.495592-12.496615-32.756031-12.496615-45.252647 0-12.496615 12.496615-12.496615 32.757055 0 45.252647z m113.130594-113.131617C885.000226 181.970704 927.979086 277.966035 927.979086 384s-42.97886 202.029296-112.465444 271.51588c-12.495592 12.496615-12.495592 32.756031 0 45.252647 12.496615 12.496615 32.756031 12.496615 45.252646 0C941.834652 619.700163 991.976656 507.70544 991.976656 384s-50.142004-235.700163-131.209344-316.768527c-12.496615-12.496615-32.757055-12.496615-45.25367 0-12.495592 12.496615-12.495592 32.757055 0 45.252647zM312.24449 543.992901H112.019283c-8.836249 0-15.999392-7.163143-15.999392-15.999393v-287.985993c0-8.836249 7.163143-15.999392 15.999392-15.999393H312.245514c25.459858 0 49.875944-10.113335 67.87897-28.116361l163.874301-163.874301V735.983563L380.12346 572.109262a95.992261 95.992261 0 0 0-67.87897-28.116361z m41.371247 92.112907L498.746138 781.23621c40.316218 40.316218 109.249193 11.762905 109.249193-45.252647v-703.966103c0-57.015551-68.933999-85.568864-109.249193-45.252647L353.615737 131.894192a95.994308 95.994308 0 0 1-67.878971 28.116361H96.019891c-35.344996 0-63.996546 28.652574-63.996547 63.996546V543.992901c0 35.344996 28.652574 63.996546 63.996547 63.996546h189.716875a95.996354 95.996354 0 0 1 67.878971 28.116361z" horiz-adv-x="1024" />
<glyph glyph-name="icon_im_face" unicode="&#60336;" d="M702.358489 447.453171c-35.044144 0-63.453171 35.510772-63.453171 79.316463s28.409027 79.316463 63.453171 79.316464 63.453171-35.510772 63.453171-79.316464-28.409027-79.316463-63.453171-79.316463z m-380.718001 0c-35.044144 0-63.453171 35.510772-63.453171 79.316463s28.409027 79.316463 63.453171 79.316464 63.453171-35.510772 63.45317-79.316464-28.409027-79.316463-63.45317-79.316463z m190.359512-539.350928c262.831081 0 475.897757 213.066677 475.897757 475.897757S774.831081 859.897757 512 859.897757 36.102243 646.831081 36.102243 384 249.168919-91.897757 512-91.897757z m0-31.726586c-280.353153 0-507.624343 227.27119-507.624343 507.624343S231.646847 891.624343 512 891.624343s507.624343-227.27119 507.624343-507.624343-227.27119-507.624343-507.624343-507.624343zM226.460732 320.546829H797.538245c0-157.698648-127.84062-285.538245-285.538245-285.538245S226.460732 162.848181 226.460732 320.546829z" horiz-adv-x="1024" />
<glyph glyph-name="icon_launch_page" unicode="&#60337;" d="M336.00873 639.988232c-26.508747 0-47.998177 21.48943-47.998177 47.998177s21.48943 47.998177 47.998177 47.998177 47.998177-21.48943 47.998177-47.998177-21.490453-47.998177-47.998177-47.998177z m-15.999392-671.968341h383.981324c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H320.009338c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785z m511.97544 404.280649l-158.714791 188.417277-231.342926-231.342925c-12.405541-12.405541-32.486902-12.508895-45.019332-0.230244L288.832268 435.02921l-96.817046-96.328929v-242.686274c0-17.672498 14.326287-31.998785 31.998785-31.998785h575.971986c17.672498 0 31.998785 14.326287 31.998785 31.998785V372.30054z m0 99.336426V767.981325c0 17.672498-14.326287 31.998785-31.998785 31.998784H224.014007c-17.672498 0-31.998785-14.326287-31.998785-31.998784v-339.003948l74.075089 73.701583c12.414751 12.352329 32.453133 12.429077 44.963051 0.172938l108.018156-105.82828 233.592152 233.592153c13.256932 13.256932 35.020608 12.32777 47.098691-2.01182l132.222417-156.966985zM128.018675 351.995075V767.982348c0 53.016471 42.97886 95.995331 95.995332 95.995331h575.971986c53.016471 0 95.995331-42.97886 95.995332-95.995331v-671.967318c0-53.016471-42.97886-95.995331-95.995332-95.995331H224.014007c-53.016471 0-95.995331 42.97886-95.995332 95.995331v255.980045z" horiz-adv-x="1024" />
<glyph glyph-name="icon_likegood" unicode="&#60338;" d="M116.072599 383.060605l22.587437-383.981325c0.497327-8.456602 7.500834-15.059997 15.971764-15.059997h36.5658c8.836249 0 15.999392 7.163143 15.999392 15.999392V384c0 8.836249-7.163143 15.999392-15.999392 15.999392h-59.153238c-8.836249 0-15.999392-7.163143-15.999392-15.999392 0-0.313132 0.00921-0.626263 0.027629-0.939395z m-34.931581 80.935334h158.054759c17.672498 0 31.998785-14.326287 31.998785-31.998785v-479.976656c0-17.672498-14.326287-31.998785-31.998785-31.998785H109.374036c-16.942881 0-30.948873 13.205766-31.943526 30.118972l-28.233018 479.978702c-1.037632 17.641799 12.422937 32.784684 30.064736 33.822317a32.846082 32.846082 0 0 0 1.87879 0.054235z m302.047244-479.641012h404.122038a15.998369 15.998369 0 0 1 15.348569 11.484566l106.902752 363.468128a31.984459 31.984459 0 0 1 1.300622 9.028631c0 17.672498-14.326287 31.998785-31.998784 31.998785H687.970804c-45.24446 0-76.202543 45.669132-59.446927 87.697341 24.101931 60.454884 35.925211 116.770494 35.925211 169.098279 0 73.907267-27.838022 118.643144-87.703482 125.826754a490.128877 490.128877 0 0 1-2.293229-12.43931c0.829901 4.808516-3.601015-21.327748-4.946662-28.684296-2.301416-12.577456-4.652973-23.73968-7.455809-34.876322-7.320733-29.093619-17.213034-55.692417-31.254841-81.35489-35.666314-65.179488-90.317005-128.782062-163.605172-191.322443v-433.924807c-0.001023-8.837272 7.16212-16.000416 15.998369-16.000416zM703.046151 506.089639c-4.442172-13.771655-9.467629-27.690666-15.075347-41.757033H878.863459c53.017494 0 95.995331-42.97886 95.995331-95.995331 0-9.168824-1.313925-18.290575-3.900843-27.086915L860.677261-33.702334c-8.010441-27.236318-33.006741-45.939285-61.396325-45.939285H367.18887c-35.344996 0-63.996546 28.652574-63.996546 63.996546V464.332606c79.287811 63.996546 136.441509 127.994116 171.46007 191.990663 52.528354 95.995331 20.530592 191.655018 84.228333 191.655018 128.292921 0 169.564907-99.571786 169.564907-190.84763 0-41.355897-6.231935-84.289732-18.695804-128.800481l-6.703679-22.240537z" horiz-adv-x="1024" />
<glyph glyph-name="icon_index_line" unicode="&#60339;" d="M895.981325 831.978894c17.672498 0 31.998785-14.326287 31.998784-31.998785v-703.966102c0-17.672498-14.326287-31.998785-31.998784-31.998785s-31.998785 14.326287-31.998785 31.998785V799.980109c0 17.672498 14.326287 31.998785 31.998785 31.998785zM639.994116 479.995331c17.672498 0 31.998785-14.326287 31.998785-31.998785v-351.983563c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V447.99757c0 17.671475 14.326287 31.997762 31.998785 31.997761z m-255.988232 95.995331c17.672498 0 31.998785-14.326287 31.998785-31.998784v-447.978895c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V543.992901c0 17.671475 14.326287 31.997762 31.998785 31.997761zM64.021106 0.018675H959.977871c17.672498 0 31.998785-14.326287 31.998785-31.998784s-14.326287-31.998785-31.998785-31.998785H64.021106c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998784z m63.997569 319.984779c17.672498 0 31.998785-14.326287 31.998785-31.998785v-191.990662c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998784 31.998785V288.004669c0 17.672498 14.326287 31.998785 31.998784 31.998785z" horiz-adv-x="1024" />
<glyph glyph-name="icon_live" unicode="&#60340;" d="M628.577089 271.614373l-163.614382-102.258988c-14.986319-9.366322-34.727942-4.810562-44.094264 10.175757a31.998785 31.998785 0 0 0-4.863774 16.959254v204.517976c0 17.672498 14.326287 31.998785 31.998785 31.998785a31.998785 31.998785 0 0 0 16.959253-4.863774l163.614382-102.258989c14.986319-9.366322 19.542078-29.107945 10.175757-44.094264a32.019251 32.019251 0 0 0-10.175757-10.175757zM160.016437 634.733555c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-575.971987c0-17.672498 14.326287-31.998785 31.998785-31.998785h703.966103c17.672498 0 31.998785 14.326287 31.998785 31.998785V602.73477c0 17.672498-14.326287 31.998785-31.998785 31.998785H160.016437z m605.226264 63.996546h98.740862c53.016471 0 95.995331-42.97886 95.995331-95.995331v-575.971987c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V602.73477c0 53.016471 42.97886 95.995331 95.995331 95.995331h98.740862l-83.878363 83.878362c-12.496615 12.495592-12.496615 32.756031 0 45.252647 12.496615 12.496615 32.756031 12.496615 45.252647 0l129.131009-129.131009h325.474816l129.131009 129.131009c12.495592 12.496615 32.756031 12.496615 45.252647 0 12.496615-12.495592 12.496615-32.756031 0-45.252647l-83.878363-83.878362z" horiz-adv-x="1024" />
<glyph glyph-name="icon_link" unicode="&#60341;" d="M828.768527 338.747353c-12.495592-12.496615-32.756031-12.496615-45.252647 0-12.495592 12.495592-12.495592 32.756031 0 45.252647l67.87897 67.87897c74.977645 74.977645 74.977645 196.539258 0 271.51588-74.976622 74.977645-196.538235 74.977645-271.51588 0L421.494707 565.010587c-74.976622-74.976622-74.976622-196.538235 0-271.51588 12.496615-12.495592 12.496615-32.756031 0-45.252647-12.495592-12.495592-32.756031-12.495592-45.252647 0-99.969852 99.968829-99.969852 262.051321 0 362.021174l158.384263 158.384263c99.969852 99.968829 262.051321 99.968829 362.021174 0 99.968829-99.969852 99.968829-262.052345 0-362.021174l-67.87897-67.87897zM647.75794 519.75794c99.969852-99.968829 99.969852-262.051321 0-362.021174L489.373677-0.647497c-99.968829-99.969852-262.051321-99.969852-362.021174 0s-99.969852 262.052345 0 362.021174l45.252647 45.252646c12.496615 12.495592 32.756031 12.495592 45.252646 0 12.496615-12.496615 12.496615-32.756031 0-45.252646l-45.252646-45.252647c-74.976622-74.977645-74.976622-196.539258 0-271.51588s196.539258-74.976622 271.51588 0l158.384263 158.384263c74.976622 74.976622 74.976622 196.538235 0 271.51588-12.496615 12.495592-12.496615 32.756031 0 45.252647 12.495592 12.496615 32.756031 12.496615 45.252647 0z" horiz-adv-x="1024" />
<glyph glyph-name="icon_im_voice" unicode="&#60342;" d="M512 891.624343c-280.357246 0-507.624343-227.275283-507.624343-507.624343s227.267097-507.624343 507.624343-507.624343 507.624343 227.275283 507.624343 507.624343S792.356222 891.624343 512 891.624343z m0-983.5221c-262.832104 0-475.897757 213.069747-475.897757 475.897757S249.167896 859.897757 512 859.897757s475.897757-213.069747 475.897757-475.897757-213.065653-475.897757-475.897757-475.897757zM512 288.820244c69.944002 0 126.906342 56.915267 126.906342 127.107933V574.157921c0 70.191642-56.819077 127.107933-126.906342 127.107933-69.944002 0-126.906342-56.915267-126.906342-127.107933v-158.229744c0-70.191642 56.819077-127.107933 126.906342-127.107933zM718.221782 447.453171c-17.521049 0-31.726585-14.205537-31.726586-31.726586 0-96.371908-78.123288-174.49622-174.496219-174.496219S337.502757 319.353654 337.502757 415.726585c0 17.521049-14.205537 31.726585-31.726585 31.726586s-31.726585-14.205537-31.726586-31.726586c0-120.66315 89.804329-220.335221 206.222805-235.857752v-97.270371c0-17.521049 14.205537-31.726585 31.726586-31.726585s31.726585 14.205537 31.726585 31.726585v97.270371c116.418476 15.522532 206.222805 115.194602 206.222805 235.857752 0 17.521049-14.205537 31.726585-31.726585 31.726586z" horiz-adv-x="1024" />
<glyph glyph-name="icon_mobilephone" unicode="&#60343;" d="M512-63.977871c17.672498 0 31.998785 14.326287 31.998785 31.998785s-14.326287 31.998785-31.998785 31.998785-31.998785-14.326287-31.998785-31.998785 14.326287-31.998785 31.998785-31.998785zM304.009945 799.980109c-26.508747 0-47.998177-21.48943-47.998177-47.998177v-671.967318c0-26.508747 21.48943-47.997154 47.998177-47.997154h415.98011c26.508747 0 47.997154 21.48943 47.997154 47.997154V751.982956c0 26.508747-21.48943 47.998177-47.997154 47.998177H304.009945z m-15.999392 63.996547h447.978894c53.016471 0 95.995331-42.97886 95.995331-95.995331v-767.96265c0-53.016471-42.97886-95.995331-95.995331-95.995331H288.010553c-53.016471 0-95.995331 42.97886-95.995331 95.995331V767.981325c0 53.017494 42.97886 95.995331 95.995331 95.995331z" horiz-adv-x="1024" />
<glyph glyph-name="icon_dmail" unicode="&#60344;" d="M842.458317 631.666706c13.075807 11.887748 33.313733 10.923794 45.201482-2.153036 11.887748-13.075807 10.923794-33.313733-2.153037-45.201482L576.573691 303.463756c-36.614919-33.286104-92.532463-33.286104-129.147382 0L138.492214 584.312188c-13.07683 11.887748-14.039761 32.125675-2.152013 45.201482 11.887748 13.07683 32.124651 14.040784 45.201482 2.153036l308.934094-280.849456c12.204973-11.095709 30.843472-11.095709 43.048446 0L842.458317 631.666706zM99.555413 701.265854c-17.522072 0-31.726585-14.204513-31.726585-31.726586v-571.077513c0-17.522072 14.204513-31.726585 31.726585-31.726585h824.889174c17.522072 0 31.726585 14.204513 31.726585 31.726585V669.539268c0 17.522072-14.204513 31.726585-31.726585 31.726586H99.555413z m0 63.452147h824.889174c52.566216 0 95.179756-42.61354 95.179756-95.179756v-571.077513c0-52.566216-42.61354-95.179756-95.179756-95.179757H99.555413c-52.566216 0-95.179756 42.61354-95.179756 95.179757V669.539268c0 52.565193 42.61354 95.178733 95.179756 95.178733z" horiz-adv-x="1024" />
<glyph glyph-name="icon_message" unicode="&#60345;" d="M320.009338 422.927591c-26.508747 0-47.998177 21.48943-47.998178 47.998177s21.48943 47.998177 47.998178 47.998178 47.998177-21.48943 47.998177-47.998178-21.490453-47.998177-47.998177-47.998177z m191.990662 0c-26.508747 0-47.998177 21.48943-47.998177 47.998177s21.48943 47.998177 47.998177 47.998178 47.998177-21.48943 47.998177-47.998178-21.48943-47.998177-47.998177-47.998177z m191.990662 0c-26.508747 0-47.997154 21.48943-47.997154 47.998177s21.48943 47.998177 47.997154 47.998178c26.508747 0 47.998177-21.48943 47.998178-47.998178s-21.48943-47.998177-47.998178-47.998177zM304.009945 25.803945l184.698583 143.654794a63.99757 63.99757 0 0 0 39.289841 13.481036h351.983563c17.672498 0 31.998785 14.326287 31.998785 31.998785V726.912977c0 17.672498-14.326287 31.998785-31.998785 31.998785H144.017044c-17.672498 0-31.998785-14.326287-31.998784-31.998785v-511.975441c0-17.672498 14.326287-31.998785 31.998784-31.998784h95.995332c35.344996 0 63.996546-28.652574 63.996546-63.996547v-93.13826z m223.989447 93.13826L317.478701-44.795996c-20.924565-16.274662-51.080376-12.504802-67.355037 8.419763a47.994084 47.994084 0 0 0-10.110265 29.468149V118.942205h-95.995331c-53.016471 0-95.995331 42.97886-95.995331 95.995331V726.912977c0 53.016471 42.97886 95.995331 95.995331 95.995331h735.964888c53.016471 0 95.995331-42.97886 95.995331-95.995331v-511.975441c0-53.016471-42.97886-95.995331-95.995331-95.995331H527.999392z" horiz-adv-x="1024" />
<glyph glyph-name="icon_more" unicode="&#60346;" d="M512 479.318926c-53.013401 0-95.995331-42.98193-95.995331-95.995331s42.98193-95.995331 95.995331-95.995332 95.995331 42.98193 95.995331 95.995332-42.98193 95.995331-95.995331 95.995331m-351.983563 0c-53.013401 0-95.995331-42.98193-95.995331-95.995331s42.98193-95.995331 95.995331-95.995332 95.995331 42.98193 95.995331 95.995332-42.98193 95.995331-95.995331 95.995331m703.966103 0c-53.013401 0-95.995331-42.98193-95.995331-95.995331s42.98193-95.995331 95.995331-95.995332 95.995331 42.98193 95.995331 95.995332-42.98193 95.995331-95.995331 95.995331" horiz-adv-x="1024" />
<glyph glyph-name="icon_left" unicode="&#60347;" d="M376.24206 384l384.647497-384.647497c12.496615-12.496615 12.496615-32.756031 0-45.252647l-22.626323-22.626323c-12.496615-12.496615-32.756031-12.496615-45.252647 0L263.110443 361.373677c-12.496615 12.496615-12.496615 32.756031 0 45.252646L693.010587 836.526467c12.496615 12.495592 32.756031 12.495592 45.252647 0l22.626323-22.626323c12.496615-12.495592 12.496615-32.756031 0-45.252647L376.24206 384z" horiz-adv-x="1024" />
<glyph glyph-name="icon_next_arrow" unicode="&#60348;" d="M384.561539-9.148102c-12.365632-12.647041-32.082696-12.551874-44.161802 0.342808l-50.324152 53.724599c-12.023848 12.836353-11.748578 33.491789 0.654916 46.177715l266.968307 273.051863c12.385075 12.667507 12.005428 32.915667-0.891299 45.26595L279.229562 675.252387c-12.877285 12.332886-13.356193 32.516578-1.109264 45.040822l55.647392 56.909128c12.264325 12.542664 32.388664 12.401448 44.645826-0.008187l367.036397-371.605459c12.392238-12.546757 12.409634-32.975019 0.048095-45.616944L384.561539-9.148102z" horiz-adv-x="1024" />
<glyph glyph-name="icon_notice" unicode="&#60349;" d="M320.009338 495.994724c0-63.996546 0-94.871741-31.998785-191.990663-21.331841-65.37801-63.996546-129.375579-127.994116-191.990662h703.966103c-63.996546 63.996546-106.661252 127.994116-127.994116 191.990662-31.998785 95.995331-31.998785 127.994116-31.998785 191.990663 0 127.994116-31.998785 223.989447-191.990662 223.989447-154.75562 0-191.989639-95.995331-191.989639-223.989447z m282.523585-447.978895H421.467077c13.178137-37.284161 48.735981-63.996546 90.532923-63.996546s77.354785 26.712385 90.532923 63.996546z m3.220344 724.683961c114.993011-31.42164 162.233941-127.552048 162.233942-276.705066 0-89.716324 4.64888-99.556437 28.713972-171.752736 17.921161-53.764508 55.119365-109.561301 112.532982-166.975942 40.316218-40.316218 11.762905-109.249193-45.252646-109.249193H668.791999c-14.823614-73.028247-79.389118-127.994116-156.791999-127.994116S370.031615-25.011394 355.208001 48.015829H160.016437c-57.352219 0-85.751013 69.63087-44.756343 109.74038 57.057507 55.825446 94.02035 111.270223 111.967094 166.273955 15.731286 47.745421 25.325805 105.065917 28.78458 171.96456 0 146.069797 49.270147 243.450684 162.078399 275.986705 9.200546 43.417859 47.750537 75.996858 93.909833 75.996858 45.903469 0 84.282568-32.219819 93.753267-75.278497z" horiz-adv-x="1024" />
<glyph glyph-name="icon_namecard" unicode="&#60350;" d="M681.374572 556.197874c-0.415462 31.083949 3.77907 54.29765 32.804127 69.959351 5.940292 3.206018 20.013823 4.89652 26.732851 4.896521 7.361665 0.753153 0.073678 6.757914 16.313547 6.757914 16.239869 0 38.82526-7.154957 49.621141-29.30135 10.79588-22.147416 11.709693-46.454008 11.709693-52.280714s5.963829-2.913353 5.963829-11.654434-2.572592-26.03598-11.72402-37.784558c-9.151427-11.747555-12.133342-14.661931-18.098193-23.403013-5.964852-8.741082-8.946766-18.271132-8.946766-26.223244 0-29.136597 49.848315-31.289634 78.744435-49.689703 11.837606-7.538697 20.006659-17.393135 24.505114-29.563316l0.001023 0.001023c3.64604-9.861602-1.39272-20.812001-11.255345-24.457018a19.023262 19.023262 0 0 0-6.601348-1.180895l-242.358817 0.002047c-10.512425 0-19.034519 8.522094-19.034518 19.034518a19.033495 19.033495 0 0 0 1.191128 6.627954c4.516874 12.158924 12.656251 22.004153 24.419156 29.537734 28.732391 18.400069 78.815043 20.553105 78.815043 49.689702 0 7.759731-2.981914 17.482163-8.946766 26.223245-5.963829 8.741082-8.946766 11.654434-17.893532 23.403013-8.946766 11.748578-11.92868 29.043477-11.92868 37.784558 0.002047 8.739035 5.966898 5.825682 5.966898 11.620665zM163.007561 225.367073h380.718001c17.522072 0 31.726585-14.204513 31.726585-31.726585s-14.204513-31.726585-31.726585-31.726586H163.007561c-17.522072 0-31.726585 14.204513-31.726586 31.726586 0.001023 17.522072 14.204513 31.726585 31.726586 31.726585z m0 126.906342h190.359512c17.522072 0 31.726585-14.204513 31.726585-31.726586s-14.204513-31.726585-31.726585-31.726585H163.007561c-17.522072 0-31.726585 14.204513-31.726586 31.726585s14.204513 31.726585 31.726586 31.726586z m-63.452148 348.992439c-17.522072 0-31.726585-14.204513-31.726585-31.726586v-571.077513c0-17.522072 14.204513-31.726585 31.726585-31.726585h824.889174c17.522072 0 31.726585 14.204513 31.726585 31.726585V669.539268c0 17.522072-14.204513 31.726585-31.726585 31.726586H99.555413z m0 63.452147h824.889174c52.566216 0 95.179756-42.61354 95.179756-95.179756v-571.077513c0-52.566216-42.61354-95.179756-95.179756-95.179757H99.555413c-52.566216 0-95.179756 42.61354-95.179756 95.179757V669.539268c0 52.565193 42.61354 95.178733 95.179756 95.178733z" horiz-adv-x="1024" />
<glyph glyph-name="icon_phone" unicode="&#60351;" d="M594.366939 129.93456c-159.949922 44.407396-286.332331 171.396625-332.337107 334.574055-7.93574 33.57263 0.589424 58.139142 20.833491 76.930114 2.334161 2.166339 8.812713 7.6574 7.883551 6.846941 5.597485 4.881171 10.837836 9.142218 19.834744 16.252149 2.812045 2.220574 2.812045 2.220574 5.558599 4.393054 21.046339 16.672728 30.17116 25.720801 34.406624 34.540677 5.409197 11.263531-8.538467 51.386344-40.708144 92.706425-37.842887 48.608068-70.305229 71.802326-98.924033 71.802326-20.010753 0-40.808428-24.629957-69.484538-82.763982-15.160281-30.733978-16.61133-108.283192-8.523117-161.977091 5.968945-39.624463 27.458375-117.279077 46.62797-162.884764 78.380138-186.474019 248.529353-320.266188 449.951829-352.145246 98.261954-15.363919 197.22692-8.435113 225.184669 15.370059 27.800159 23.671119 41.494043 42.909276 41.494043 51.451836 0 23.763217-29.543873 70.203922-71.062476 103.345739-40.60479 32.412201-79.886445 46.413076-90.551342 41.162492-7.424086-3.65525-15.161305-10.838859-25.971511-24.202215-3.03001-3.746324-21.337981-27.621081-27.841092-35.579333-25.540699-32.458249-44.096311-39.199791-86.37216-29.823236z m36.237319 69.600171l0.445139 0.553609c5.430686 6.613628 23.953551 30.772864 27.774576 35.496446 16.142655 19.956517 29.889751 32.719192 47.458895 41.370223 39.706327 19.550265 100.614535-2.158153 158.744467-48.560996 55.264675-44.11473 95.134731-106.787118 95.134731-153.361877 0-32.958646-22.99062-65.260329-64.002686-100.17963-46.997384-40.016389-160.744008-47.980781-276.618085-29.862121-223.393883 35.356252-412.053684 183.703929-499.004011 390.5663-21.25714 50.572816-44.165896 133.357264-50.913577 178.150446-9.928117 65.907059-8.283664 153.812131 14.411221 199.821001C123.704416 793.946696 155.817812 831.978894 210.914664 831.978894c53.312206 0 100.621698-33.802874 149.422148-96.484471 45.666062-58.655911 66.9846-119.983675 47.899939-159.724795-9.901511-20.61962-23.690562-34.290991-52.357461-57.001225-2.832512-2.241041-2.832512-2.241041-5.615905-4.439102-8.232498-6.506181-12.850679-10.261715-17.455557-14.277168-0.048095-0.041956-5.324262-4.513804-6.405897-5.518691-4.00522-3.716648-4.495384-5.129834-2.434445-13.976316 39.618323-140.435473 149.21851-250.560616 285.85547-288.543695 16.519232-3.64604 10.199293-5.965875 20.781302 7.5213z" horiz-adv-x="1024" />
<glyph glyph-name="icon_qq" unicode="&#60352;" d="M703.746092-95.976656c-87.12122 0-151.618163 18.280342-191.771675 54.357002-40.99774-36.326347-105.213273-54.357002-191.709253-54.357002-86.683245 0-122.68111 37.592177-136.431275 59.997466-15.999392 26.076912-17.749246 60.356646-4.624321 91.714841 9.030677 21.639856 24.311709 39.576367 43.903929 52.294017a462.004329 462.004329 0 0 0-20.436448 35.701107c-16.21838-17.452487-33.935903-27.983331-51.372018-29.826306-17.779945-1.890047-33.435507 5.015224-43.654242 18.780738-21.530362 29.030174-20.030196 81.167624-19.530822 91.323939 4.750187 66.684772 36.154431 134.868687 93.432972 203.428156-4.687766 30.420847-2.405793 80.746022 30.248931 120.915907C216.208227 728.516498 343.732645 863.368812 511.881296 863.978702c168.523181-0.608867 296.111045-135.63412 300.360836-315.625493 32.654724-40.169885 34.904974-90.496084 30.217209-120.915907 57.278541-68.559469 88.682785-136.696312 93.402273-202.771194 0.562818-10.859325 1.968841-63.012126-19.467377-91.964528-10.281157-13.780865-26.092261-20.670785-43.684942-18.796088-17.436114 1.843998-35.154661 12.374842-51.372018 29.826306-5.655813-11.06194-12.405541-22.983457-20.436448-35.701107 19.593244-12.7023 34.873252-30.638811 43.903929-52.278667 13.123902-31.358195 11.374048-65.653279-4.62432-91.74554-13.753235-22.390963-49.751101-59.983139-136.434346-59.98314zM507.97329-37.900959c0.124843-0.124843 0.249687-0.249687 0.37453-0.359181-0.12382 0.124843-0.248663 0.233314-0.37453 0.359181z m8.905834 0.827855c-0.249687-0.26606-0.531096-0.515746-0.812505-0.780783 0.281409 0.249687 0.562818 0.499373 0.812505 0.780783z m-4.936429 60.684104c21.154809-0.047072 34.123168-8.858762 41.279149-16.264429 14.718213-14.217816 54.93517-39.326681 150.524248-39.32668 57.59065 0 76.43381 20.608364 81.870636 29.467125 5.062296 8.218172 5.124717 21.717627 0.156566 33.576723-3.90596 9.296737-14.31196 25.827225-40.404222 31.873941a32.064276 32.064276 0 0 0-22.811542 20.092617 32.009018 32.009018 0 0 0 4.281513 30.077016c35.935444 48.731888 50.810223 85.683475 56.93471 108.104114a32.011064 32.011064 0 0 0 28.31079 23.436782c13.936407 1.109264 26.092261-6.374174 31.685653-18.608824 9.312086-20.421098 18.780739-33.013905 25.873274-40.264029 1.812275 9.484002 3.000334 22.13923 2.343371 35.029818-3.937682 55.122435-33.686217 114.900913-88.370677 176.960341a32.027437 32.027437 0 0 0-5.499247 33.576723c2.312672 7.031137 9.187243 52.450583-20.468171 82.074274a32.094976 32.094976 0 0 0-9.249665 25.498743C748.337683 687.344796 646.685515 799.479713 511.880273 799.980109c-134.556579-0.500397-236.207723-112.635313-236.207723-260.862239 0-8.484232-3.312442-19.686365-9.312086-25.686009-29.65439-29.639041-22.779819-75.074859-20.217461-82.792634 3.624551-10.812253 1.812275-24.311709-5.749957-32.873712-54.68446-62.059428-84.432994-121.822556-88.4024-177.648003-0.62524-12.467963 0.562818-24.935925 2.343372-34.357505 7.124258 7.265474 16.59291 19.84293 25.904996 40.279378 5.625114 12.233626 17.936511 19.701714 31.685653 18.608824a32.010041 32.010041 0 0 0 28.310789-23.436782c6.124488-22.420639 20.999266-59.372226 56.934711-108.104114a32.004925 32.004925 0 0 0 4.281513-30.077016 32.058137 32.058137 0 0 0-22.811542-20.092617c-26.061562-6.046716-36.498262-22.577205-40.404222-31.889291-4.937452-11.859096-4.90573-25.342178 0.156566-33.545 5.436826-8.874111 24.279986-29.482475 81.870636-29.482475 95.558379 0 135.836735 25.124214 151.305031 40.092113 6.313799 6.592139 19.250436 15.4509 40.374546 15.497973z" horiz-adv-x="1024" />
<glyph glyph-name="icon_photo" unicode="&#60353;" d="M288.010553 447.99757c-35.344996 0-63.996546 28.652574-63.996546 63.996546s28.652574 63.996546 63.996546 63.996546c35.344996 0 63.996546-28.652574 63.996546-63.996546s-28.65155-63.996546-63.996546-63.996546z m639.969556-302.169018l-258.988565 258.077823L372.528482 136.259616c-12.629645-11.402701-31.975249-10.92584-44.027749 1.084705L220.383316 245.072881l-124.363425-100.357686v-80.699973c0-17.672498 14.326287-31.998785 31.998784-31.998785h767.96265c17.672498 0 31.998785 14.326287 31.998784 31.998785v81.81333z m0 90.346681V703.984778c0 17.672498-14.326287 31.998785-31.998784 31.998785H128.018675c-17.672498 0-31.998785-14.326287-31.998784-31.998785v-477.033627l84.173074 67.926042c25.424042 20.516266 62.219063 18.58938 85.361133-4.469801l86.61673-86.306668 273.934976 247.308549c25.261337 22.805402 63.951521 21.851681 88.058569-2.170433l213.815736-213.063607zM32.023344 159.726074a45.762253 45.762253 0 0 0 0 0.530072V703.984778c0 53.016471 42.97886 95.995331 95.995331 95.995331h767.96265c53.016471 0 95.995331-42.97886 95.995331-95.995331v-639.969556c0-53.016471-42.97886-95.995331-95.995331-95.995331H128.018675c-53.016471 0-95.995331 42.97886-95.995331 95.995331v95.710852z" horiz-adv-x="1024" />
<glyph glyph-name="icon_redpacket" unicode="&#60354;" d="M799.985993 863.976656H224.014007c-53.016471 0-95.995331-42.97886-95.995332-95.995331v-767.96265c0-53.016471 42.97886-95.995331 95.995332-95.995331h575.971986c53.016471 0 95.995331 42.97886 95.995332 95.995331V767.981325c0 53.017494-42.97886 95.995331-95.995332 95.995331z m31.998785-863.957981c0-17.672498-14.326287-31.998785-31.998785-31.998784H224.014007c-17.672498 0-31.998785 14.326287-31.998785 31.998784V607.057215c57.3031-58.303894 136.441509-100.697423 226.794329-118.194936 10.351766-41.841967 48.148603-72.863495 93.190449-72.863494s82.83766 31.020504 93.190449 72.863494c90.353844 17.498536 169.491229 59.892065 226.794329 118.194936v-607.03854z m0 717.802226c-43.700291-76.847226-128.708384-140.913357-233.40591-164.312276-15.482623 32.230052-48.432059 54.480822-86.578868 54.480822s-71.096245-22.25077-86.578868-54.480822c-104.697527 23.39892-189.70562 87.466074-233.40591 164.312276V767.981325c0 17.672498 14.326287 31.998785 31.998785 31.998784h575.971986c17.672498 0 31.998785-14.326287 31.998785-31.998784v-50.160424z" horiz-adv-x="1024" />
<glyph glyph-name="icon_patriarch" unicode="&#60355;" d="M348.328313 322.52488c-27.057239 47.446615-39.204907 95.198176-46.236044 123.205043-7.027044 28.006867-12.354376 120.150474 0 154.26034 16.32378 45.064358 52.016701 90.969874 66.485227 90.969874 0.457418 0 0.89437-0.045025 1.308809-0.138146 25.354458-5.724375 27.77253-66.605977 85.051071-106.010429 51.141774-35.18229 147.33665-38.439474 186.921204-51.689243 25.745361-8.618285 48.888454-40.683585 52.938699-62.908772 6.671956-36.56273-2.491751-70.7606-18.893302-98.604762-2.859118-4.855588-5.945409-9.600659-9.174963-14.208606-17.018605-24.279986-11.936867-37.396725 0.300852-37.396725 6.136767 0 14.07353 3.299139 21.924335 10.139941 29.369911 25.595958 54.036707 56.132438 72.605621 90.249467 24.541953 45.087894 38.428218 87.269599 38.428218 123.600039 0 179.309852-102.428857 319.984778-287.985993 319.984778S224.014007 723.301729 224.014007 543.992901c0-53.632501 26.225291-118.777197 45.997613-152.990417 19.764136-34.214243 56.567343-68.477604 78.316693-68.477604zM512 799.980109c165.148317 0 223.989447-132.23572 223.989447-255.987208 0-2.89084-0.159636-6.169513-0.550539-9.853416-17.362436 26.174126-43.091424 49.567929-73.265653 59.668985-17.815761 5.962805-39.166021 9.599635-63.891146 13.809517-35.662221 6.074346-84.503603 14.393825-107.072621 29.918403-18.920932 13.016455-28.073382 30.851659-37.764092 49.733705-12.31549 24.006763-29.189809 56.883545-69.461001 65.97562l-8.269338 1.710968h-3.171226C406.680303 782.774239 452.416973 799.980109 512 799.980109zM839.671854 156.948821l-150.711513 94.198405c-13.561877 8.484232-31.341822 5.593392-41.560558-6.655583L561.15349 140.981151a66.013483 66.013483 0 0 0-8.15575-8.1711c-27.186176-22.624277-67.590398-18.905582-90.152253 8.187473l-86.246293 103.495142c-10.249435 12.265348-27.998681 15.171538-41.560558 6.655583l-150.711514-94.198405c-75.338872-47.092551-120.306017-128.244826-120.306016-217.084177v-3.843538c0-17.671475 14.31196-31.998785 31.998785-31.998785s31.998785 14.32731 31.998784 31.998785v3.843538c0 66.6377 33.748638 127.493719 90.245374 162.804946l127.025045 79.402421 68.372204-82.042551c45.154409-54.200436 126.025275-61.559031 180.365904-16.343223a130.004913 130.004913 0 0 1 16.3115 16.343223l68.372204 82.042551 127.025045-79.402421c56.497759-35.311227 90.245374-96.167247 90.245374-162.804946v-3.843538c0-17.671475 14.31196-31.998785 31.998784-31.998785s31.998785 14.32731 31.998785 31.998785v3.843538c-0.001023 88.839351-44.967144 169.991626-120.30704 217.083154z" horiz-adv-x="1024" />
<glyph glyph-name="icon_roundclose" unicode="&#60356;" d="M557.252647 384l135.75794-135.75794c12.495592-12.495592 12.495592-32.757055 0-45.252647-12.495592-12.495592-32.757055-12.495592-45.252647 0L512 338.747353 376.24206 202.989413c-12.496615-12.496615-32.757055-12.495592-45.252647 0-12.495592 12.495592-12.496615 32.756031 0 45.252647l135.75794 135.75794L330.989413 519.75794c-12.496615 12.496615-12.495592 32.757055 0 45.252647 12.495592 12.495592 32.756031 12.496615 45.252647 0l135.75794-135.75794 135.75794 135.75794c12.495592 12.495592 32.756031 12.495592 45.252647 0 12.495592-12.495592 12.495592-32.757055 0-45.252647L557.252647 384z m-429.233972 0c0-212.062813 171.918511-383.981325 383.981325-383.981325s383.981325 171.918511 383.981325 383.981325S724.06179 767.981325 512 767.981325 128.018675 596.062813 128.018675 384z m-63.997569 0c0 247.406786 200.572108 447.978894 447.978894 447.978894S959.977871 631.406786 959.977871 384 759.405763-63.977871 512-63.977871 64.021106 136.594237 64.021106 384z" horiz-adv-x="1024" />
<glyph glyph-name="icon_im_keyboard" unicode="&#60357;" d="M734.085074 447.453171h31.726586c17.522072 0 31.726585-14.204513 31.726585-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726585-31.726585h-31.726586c-17.522072 0-31.726585 14.204513-31.726585 31.726585v31.726585c0 17.522072 14.205537 31.726585 31.726585 31.726586z m0 158.632927h31.726586c17.522072 0 31.726585-14.204513 31.726585-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726585-31.726585h-31.726586c-17.522072 0-31.726585 14.204513-31.726585 31.726585v31.726585c0 17.522072 14.205537 31.726585 31.726585 31.726586z m-158.631903-158.632927h31.726585c17.522072 0 31.726585-14.204513 31.726586-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585h-31.726585c-17.522072 0-31.726585 14.204513-31.726586 31.726585v31.726585c0 17.522072 14.204513 31.726585 31.726586 31.726586z m0 158.632927h31.726585c17.522072 0 31.726585-14.204513 31.726586-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585h-31.726585c-17.522072 0-31.726585 14.204513-31.726586 31.726585v31.726585c0 17.522072 14.204513 31.726585 31.726586 31.726586zM353.367073 257.093658h317.264831c17.522072 0 31.726585-14.204513 31.726585-31.726585v-31.726585c0-17.522072-14.204513-31.726585-31.726585-31.726586H353.367073c-17.522072 0-31.726585 14.204513-31.726585 31.726586v31.726585c0 17.522072 14.204513 31.726585 31.726585 31.726585z m63.453171 190.359513h31.726585c17.522072 0 31.726585-14.204513 31.726586-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585h-31.726585c-17.522072 0-31.726585 14.204513-31.726586 31.726585v31.726585c0 17.522072 14.204513 31.726585 31.726586 31.726586z m0 158.632927h31.726585c17.522072 0 31.726585-14.204513 31.726586-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585h-31.726585c-17.522072 0-31.726585 14.204513-31.726586 31.726585v31.726585c0 17.522072 14.204513 31.726585 31.726586 31.726586z m-158.632927-158.632927h31.726585c17.522072 0 31.726585-14.204513 31.726586-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585h-31.726585c-17.522072 0-31.726585 14.204513-31.726585 31.726585v31.726585c0 17.522072 14.204513 31.726585 31.726585 31.726586z m0 158.632927h31.726585c17.522072 0 31.726585-14.204513 31.726586-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585h-31.726585c-17.522072 0-31.726585 14.204513-31.726585 31.726585v31.726585c0 17.522072 14.204513 31.726585 31.726585 31.726586z m253.812683-697.983855c262.831081 0 475.897757 213.066677 475.897757 475.897757S774.831081 859.897757 512 859.897757 36.102243 646.831081 36.102243 384 249.168919-91.897757 512-91.897757z m0-31.726586c-280.353153 0-507.624343 227.27119-507.624343 507.624343S231.646847 891.624343 512 891.624343s507.624343-227.27119 507.624343-507.624343-227.27119-507.624343-507.624343-507.624343z" horiz-adv-x="1024" />
<glyph glyph-name="icon_roundreduce" unicode="&#60358;" d="M288.011576 415.998785h447.978894c17.671475 0 31.997762-14.326287 31.998785-31.998785-0.001023-17.673521-14.326287-31.998785-31.999808-31.999808H288.010553c-17.671475 0-31.997762 14.326287-31.998785 31.998785 0.001023 17.674545 14.325263 31.998785 31.999808 31.999808z m-159.992901-31.998785c0-212.062813 171.918511-383.981325 383.981325-383.981325s383.981325 171.918511 383.981325 383.981325S724.062813 767.981325 512 767.981325 128.018675 596.062813 128.018675 384z m-63.997569 0c0 247.406786 200.572108 447.978894 447.978894 447.978894S959.977871 631.406786 959.977871 384 759.405763-63.977871 512-63.977871 64.021106 136.594237 64.021106 384z" horiz-adv-x="1024" />
<glyph glyph-name="icon_QRcode" unicode="&#60359;" d="M208.014614 225.182878h127.994116c8.836249 0 15.999392-7.163143 15.999392-15.999392V81.18937c0-8.836249-7.163143-15.999392-15.999392-15.999393H208.014614c-8.836249 0-15.999392 7.163143-15.999392 15.999393V209.183486c0 8.836249 7.163143 15.999392 15.999392 15.999392z m479.976656 479.976656h127.994116c8.836249 0 15.999392-7.163143 15.999392-15.999393v-127.994116c0-8.836249-7.163143-15.999392-15.999392-15.999392H687.99127c-8.836249 0-15.999392 7.163143-15.999392 15.999392V689.160141c0 8.836249 7.163143 15.999392 15.999392 15.999393z m-479.976656 0h127.994116c8.836249 0 15.999392-7.163143 15.999392-15.999393v-127.994116c0-8.836249-7.163143-15.999392-15.999392-15.999392H208.014614c-8.836249 0-15.999392 7.163143-15.999392 15.999392V689.160141c0 8.836249 7.163143 15.999392 15.999392 15.999393z m399.980717 47.997154v-255.987209c0-8.836249 7.163143-15.999392 15.999393-15.999392h255.987208c8.836249 0 15.999392 7.163143 15.999393 15.999392V753.156688c0 8.836249-7.163143 15.999392-15.999393 15.999392H623.994724c-8.836249 0-15.999392-7.163143-15.999393-15.999392z m0 79.996962h287.985994c35.344996 0 63.996546-28.652574 63.996546-63.996547v-287.985993c0-35.344996-28.652574-63.996546-63.996546-63.996546H607.995331c-35.344996 0-63.996546 28.652574-63.996546 63.996546V769.15608c0 35.344996 28.65155 63.99757 63.996546 63.99757z m-479.976656-559.973618v-255.987209c0-8.836249 7.163143-15.999392 15.999393-15.999392h255.987208c8.836249 0 15.999392 7.163143 15.999393 15.999392V273.180032c0 8.836249-7.163143 15.999392-15.999393 15.999392H144.017044c-8.835226 0-15.998369-7.163143-15.998369-15.999392z m0 79.995939h287.985994c35.344996 0 63.996546-28.652574 63.996546-63.996547v-287.985993c0-35.344996-28.652574-63.996546-63.996546-63.996546H128.018675c-35.344996 0-63.996546 28.652574-63.996546 63.996546V289.179424c-0.001023 35.344996 28.65155 63.996546 63.996546 63.996547z m0 399.980717v-255.987209c0-8.836249 7.163143-15.999392 15.999393-15.999392h255.987208c8.836249 0 15.999392 7.163143 15.999393 15.999392V753.156688c0 8.836249-7.163143 15.999392-15.999393 15.999392H144.017044c-8.835226 0-15.998369-7.163143-15.998369-15.999392z m0 79.996962h287.985994c35.344996 0 63.996546-28.652574 63.996546-63.996547v-287.985993c0-35.344996-28.652574-63.996546-63.996546-63.996546H128.018675c-35.344996 0-63.996546 28.652574-63.996546 63.996546V769.15608c-0.001023 35.344996 28.65155 63.99757 63.996546 63.99757z m671.967318-767.963673h-95.995331v-95.995331c0-17.672498-14.326287-31.998785-31.998784-31.998785h-95.995332c-17.672498 0-31.998785 14.326287-31.998784 31.998785v95.995331c0 17.672498 14.326287 31.998785 31.998784 31.998785h95.995332v95.995331h-95.995332c-17.672498 0-31.998785 14.326287-31.998784 31.998785v95.995331c0 17.672498 14.326287 31.998785 31.998784 31.998785h95.995332c17.672498 0 31.998785-14.326287 31.998784-31.998785v-95.995331h95.995331v95.995331c0 17.672498 14.326287 31.998785 31.998785 31.998785h95.995331c17.672498 0 31.998785-14.326287 31.998785-31.998785v-351.98254c0-17.672498-14.326287-31.998785-31.998785-31.998784h-95.995331c-17.672498 0-31.998785 14.326287-31.998785 31.998784v95.994308z" horiz-adv-x="1024" />
<glyph glyph-name="icon_savememo" unicode="&#60360;" d="M863.534332 384c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785c0 53.016471-42.97886 95.995331-95.995331 95.995331-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785c88.361467 0 159.992901-71.631434 159.992901-159.992901z m-351.983563 0c0-50.815339 19.742646-98.353029 54.509474-134.01218a642.830721 642.830721 0 0 0 4.774747-4.850471c3.079128-3.192715 5.89015-6.304589 8.712429-9.739829 17.292851-21.050432 27.998681-45.932122 27.998681-76.027557v-63.355956h191.990662v63.747882c0 29.121248 10.033517 53.527101 26.348088 73.857125a144.827503 144.827503 0 0 0 8.53335 9.689687 264.916579 264.916579 0 0 0 5.012154 5.066389c35.733852 35.803437 56.100716 84.021625 56.100716 135.625933 0 106.033965-85.957721 191.990662-191.990662 191.990663s-191.989639-85.957721-191.989639-191.991686z m-63.996547 0c0 141.377938 114.609271 255.987209 255.987209 255.987209s255.988232-114.609271 255.988232-255.987209c0-70.599941-28.579919-134.523833-74.801637-180.834578-6.704702-6.716982-21.193695-20.009729-21.193694-43.403533v-63.747882c0-35.344996-28.652574-63.996546-63.996547-63.996547H607.5461c-35.344996 0-63.996546 28.652574-63.996547 63.996547V159.369963c0 24.235984-15.984043 38.426171-23.311938 45.942355-44.975331 46.12962-72.683393 109.172445-72.683393 178.687682zM814.412564 0.018675c-22.131043-38.257326-63.495126-63.996546-110.87011-63.996546-47.376007 0-88.74009 25.739221-110.87011 63.996546h221.74022z m-493.955018 767.029394a31.993668 31.993668 0 0 1-14.944364-8.429996L137.847531 591.073172a31.991622 31.991622 0 0 1-8.476045-15.08251h159.088298c17.672498 0 31.998785 14.326287 31.998785 31.998785V767.048069z m63.997569 0.933256v-159.991878c0-53.016471-42.97886-95.995331-95.995331-95.995331H128.466883v-447.978894c0-17.672498 14.326287-31.998785 31.998785-31.998785h255.988232c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H160.465668c-53.016471 0-95.995331 42.97886-95.995331 95.995331V568.438663a95.994308 95.994308 0 0 0 28.140921 67.903529L260.277932 803.887093a95.996354 95.996354 0 0 0 67.85441 28.091801H832.432986c53.016471 0 95.995331-42.97886 95.995332-95.995331v-63.996546c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785v63.996546c0 17.672498-14.326287 31.998785-31.998785 31.998785H384.455115z" horiz-adv-x="1024" />
<glyph glyph-name="icon_roundadd" unicode="&#60361;" d="M543.998785 415.998785h191.990662c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H543.998785v-191.990662c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V352.001215H288.010553c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785h191.990662V607.989447c0 17.672498 14.326287 31.998785 31.998785 31.998785s31.998785-14.326287 31.998785-31.998785v-191.990662z m-415.98011-31.998785c0-212.062813 171.918511-383.981325 383.981325-383.981325s383.981325 171.918511 383.981325 383.981325S724.06179 767.981325 512 767.981325 128.018675 596.062813 128.018675 384z m-63.997569 0c0 247.406786 200.572108 447.978894 447.978894 447.978894S959.977871 631.406786 959.977871 384 759.405763-63.977871 512-63.977871 64.021106 136.594237 64.021106 384z" horiz-adv-x="1024" />
<glyph glyph-name="icon_refresh" unicode="&#60362;" d="M844.617493 575.990662a384.730385 384.730385 0 0 1-30.014594 44.413536c-72.372308 92.496647-182.910866 147.577127-302.602899 147.577127-212.066907 0-383.981325-171.914418-383.981325-383.981325s171.914418-383.981325 383.981325-383.981325c156.391886 0 295.340495 94.355995 354.539782 236.242516 6.804986 16.309454 25.542746 24.01495 41.8522 17.209964 16.309454-6.804986 24.01495-25.542746 17.209964-41.852201-69.059865-165.518754-231.1618-275.596825-413.601946-275.596825-247.411903 0-447.978894 200.566992-447.978894 447.978894S264.588097 831.978894 512 831.978894c139.588175 0 268.630157-64.300468 353.005846-172.137498a448.801632 448.801632 0 0 0 30.975479-44.975331V799.980109c0 17.672498 14.326287 31.998785 31.998784 31.998785s31.998785-14.326287 31.998785-31.998785v-255.987208c0-8.836249-3.581572-16.835434-9.372461-22.626324-5.79089-5.79089-13.790074-9.372461-22.626324-9.372461H671.991878c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785h172.625615z" horiz-adv-x="1024" />
<glyph glyph-name="icon_search" unicode="&#60363;" d="M423.401126 184.582181c159.050436 0 287.985993 128.935558 287.985994 287.985994S582.451562 760.554168 423.401126 760.554168 135.415133 631.618611 135.415133 472.568175s128.935558-287.985993 287.985993-287.985994z m270.491551 62.74709l43.980677-43.980677c10.705829 2.819209 22.590508 0.035816 30.780027-8.153704l169.866782-169.866782c18.708084-18.708084 18.809391-48.938596-0.065491-67.813479-18.7439-18.7439-49.136094-18.741853-67.813479-0.065492L700.774411 127.31592c-8.360412 8.360412-11.131525 20.180622-8.229428 30.855752l-43.90393 43.904952c-61.037145-50.880831-139.563616-81.490989-225.238904-81.490989-194.394409 0-351.983563 157.588131-351.983563 351.983563S229.006717 824.551738 423.401126 824.551738s351.983563-157.588131 351.983563-351.983563c0-85.676311-30.610158-164.201759-81.492012-225.238904z" horiz-adv-x="1024" />
<glyph glyph-name="icon_scan" unicode="&#60364;" d="M64.021106 384c0 17.672498 14.07353 31.998785 31.887244 31.998785h832.182277c17.6111 0 31.887244-14.202467 31.887244-31.998785 0-17.672498-14.07353-31.998785-31.887244-31.998785H95.909373c-17.6111 0-31.888268 14.20349-31.888267 31.998785zM959.977871 543.992901c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V735.983563c0 17.672498-14.326287 31.998785-31.998784 31.998785H160.016437c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-191.990662c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V735.983563c0 53.016471 42.97886 95.995331 95.995332 95.995331H863.981517c53.016471 0 95.995331-42.97886 95.995331-95.995331v-191.990662z m0-319.984779v-191.990662c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V224.008122c0 17.672498 14.326287 31.998785 31.998785 31.998785s31.998785-14.326287 31.998784-31.998785v-191.990662c0-17.672498 14.326287-31.998785 31.998785-31.998785h703.966103c17.672498 0 31.998785 14.326287 31.998785 31.998785V224.008122c0 17.672498 14.326287 31.998785 31.998785 31.998785s31.996738-14.32731 31.996738-31.998785z" horiz-adv-x="1024" />
<glyph glyph-name="icon_send" unicode="&#60365;" d="M218.786958 383.765663L69.050656 743.133404c-22.806425 54.735625 34.657334 108.373243 87.694271 81.855286l767.963673-383.981325c47.168276-23.584138 47.168276-90.89722 0-114.481358L156.744927-57.456341c-53.036937-26.517957-110.500697 27.118638-87.694271 81.854263L218.786958 383.765663z m613.771895-31.764448H274.881534L128.124076-0.215662l704.434777 352.216877z m-0.936325 63.99757L128.124076 767.746988l146.562007-351.749226h556.936445z" horiz-adv-x="1024" />
<glyph glyph-name="icon_principal" unicode="&#60366;" d="M608.705506 96.014007h127.994116c35.344996 0 63.996546-28.652574 63.996546-63.996547H544.707936c0 35.344996 28.652574 63.996546 63.99757 63.996547zM417.792385 364.927619c14.895245-24.828478 23.133883-49.166793 23.133883-76.921927 0-88.714508-50.135864-121.615848-161.599492-153.522536-3.614317-1.034563-19.608593-5.568832-23.87885-6.792706-8.989745-2.577708-16.19996-4.711302-23.029506-6.835686-31.258934-9.721409-53.327556-19.082614-70.601988-30.520107-31.390941-20.784372-51.228755-49.863664-60.931744-90.315982h822.216298c-9.590426 40.393989-29.436426 69.428256-61.021796 90.224908-17.044188 11.221576-38.549991 20.455891-68.452021 29.925566-7.106862 2.25025-14.618952 4.503571-23.968901 7.212262-4.536316 1.313925-21.253046 6.094812-24.891924 7.145748-110.138446 31.827893-160.009274 65.00655-160.009273 153.478533 0 27.53103 8.032954 51.750641 22.591531 76.472696 4.737908 8.046257 9.781784 15.59314 16.899902 25.6154-3.647063-5.135974 12.267395 17.110703 15.726169 22.146393 22.913872 33.350572 32.719192 59.516512 32.719193 99.753935v95.995331c0 99.348706-57.684794 159.991878-159.982668 159.991878-103.730503 0-161.27408-60.542888-159.999041-159.165046l0.005117-0.827855v-43.874253c0-29.051663 0-29.051663-0.005117-52.948933-0.518816-40.121789 9.190313-65.942875 32.558533-99.380428 3.458775-4.948709 18.756179-26.003234 15.536858-21.539572 7.141654-9.899464 12.215206-17.368576 16.984837-25.317619zM288.720727 607.989447C287.065018 735.983563 367.206266 831.978894 512.711198 831.978894c143.837966 0 223.979214-95.732341 223.979214-223.989447v-95.995331c0-127.994116-87.935772-159.991878-87.935772-223.989447 0-95.995331 151.314241-80.313164 248.517074-144.310733 45.429679-29.910217 74.794473-72.873728 88.095407-128.890533 8.16496-34.388205-13.09218-68.88488-47.481408-77.050863a64.002686 64.002686 0 0 0-14.784727-1.731434l-822.215275-0.001024c-35.344996 0-63.99757 28.652574-63.997569 63.99757 0 5.027503 0.592494 10.037611 1.765203 14.926968 13.419637 55.94722 42.696428 98.863658 87.832418 128.749316 96.655364 63.996546 250.443959 48.315402 250.443959 144.310733 0 63.996546-89.86368 95.995331-88.208995 223.989447v95.995331z" horiz-adv-x="1024" />
<glyph glyph-name="icon_scan_namecard" unicode="&#60367;" d="M543.726585 288.820244h444.171172c17.522072 0 31.726585-14.204513 31.726586-31.726586s-14.204513-31.726585-31.726586-31.726585H543.726585c-17.522072 0-31.726585 14.204513-31.726585 31.726585s14.204513 31.726585 31.726585 31.726586z m412.444587 95.179756v31.726585c0 17.522072-14.204513 31.726585-31.726585 31.726586H607.179756c-17.522072 0-31.726585-14.204513-31.726585-31.726586v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585s-31.726585 14.204513-31.726585 31.726585v31.726585c0 52.566216 42.61354 95.179756 95.179756 95.179757h317.264831c52.566216 0 95.179756-42.61354 95.179756-95.179757v-31.726585c0-17.522072-14.204513-31.726585-31.726586-31.726585s-31.726585 14.204513-31.726585 31.726585z m63.453171-253.81166v-31.726585c0-52.566216-42.61354-95.179756-95.179756-95.179756H607.179756c-52.566216 0-95.179756 42.61354-95.179756 95.179756v31.726585c0 17.522072 14.204513 31.726585 31.726585 31.726586s31.726585-14.204513 31.726586-31.726586v-31.726585c0-17.522072 14.204513-31.726585 31.726585-31.726585h317.264831c17.522072 0 31.726585 14.204513 31.726585 31.726585v31.726585c0 17.522072 14.204513 31.726585 31.726585 31.726586s31.726585-14.204513 31.726586-31.726586zM205.476815 587.924459c-0.415462 31.083949 3.77907 54.29765 32.804127 69.959352 5.940292 3.206018 20.013823 4.89652 26.732851 4.89652 7.361665 0.753153 0.073678 6.757914 16.313547 6.757914s38.82526-7.154957 49.621141-29.30135c10.79588-22.147416 11.709693-46.454008 11.709693-52.280713s5.963829-2.913353 5.963828-11.654435-2.572592-26.03598-11.724019-37.784558c-9.151427-11.747555-12.133342-14.661931-18.098193-23.403012-5.964852-8.741082-8.946766-18.271132-8.946766-26.223245 0-29.136597 49.849338-31.289634 78.744435-49.689702 11.837606-7.538697 20.006659-17.393135 24.505113-29.563317l0.001024 0.001024c3.64604-9.861602-1.39272-20.812001-11.255345-24.457018a19.023262 19.023262 0 0 0-6.601348-1.180896l-242.358817 0.002047c-10.512425 0-19.034519 8.522094-19.034519 19.034519a19.033495 19.033495 0 0 0 1.191129 6.627954c4.516874 12.158924 12.656251 22.004153 24.419156 29.537733C188.19829 457.602322 238.280942 459.755358 238.280942 488.891955c0 7.759731-2.981914 17.482163-8.946767 26.223245-5.964852 8.741082-8.946766 11.654434-17.893532 23.403013-8.946766 11.748578-11.92868 29.043477-11.92868 37.784558 0 8.740058 5.964852 5.826705 5.964852 11.621688z m814.147528 18.161639c0-17.522072-14.204513-31.726585-31.726586-31.726586s-31.726585 14.204513-31.726585 31.726586V669.539268c0 17.522072-14.204513 31.726585-31.726585 31.726586H99.555413c-17.522072 0-31.726585-14.204513-31.726585-31.726586v-571.077513c0-17.522072 14.204513-31.726585 31.726585-31.726585h317.264831c17.522072 0 31.726585-14.204513 31.726585-31.726586s-14.204513-31.726585-31.726585-31.726585H99.555413c-52.566216 0-95.179756 42.61354-95.179756 95.179756V669.539268c0 52.566216 42.61354 95.179756 95.179756 95.179757h824.889174c52.566216 0 95.179756-42.61354 95.179756-95.179757v-63.45317z" horiz-adv-x="1024" />
<glyph glyph-name="icon_secret" unicode="&#60368;" d="M736.687342 16.007835c70.688969 0 127.994116 42.97886 127.994116 95.995331 0 9.694803-1.092891 22.73991-3.499707 37.586037-25.429159-12.226462-66.592674-4.440126-82.748633 24.164352-23.26896 40.415478 10.958586 53.444213-48.198745 144.450926-58.189284-120.292714-121.540124-136.227638-121.540124-206.201315-0.001023-53.016471 57.3031-95.995331 127.993093-95.995331z m-191.991686 95.995331c0 127.994116 144.460136 160.322405 144.460136 319.984778 31.998785 0 143.525857-95.995331 143.525858-223.989447 16.821107 0 31.998785 31.884175 31.998785 63.996546 0 0 63.962777-62.168921 63.962777-159.991877 0-97.823979-95.960539-159.971411-191.95587-159.971412s-191.991686 63.97608-191.991686 159.971412zM270.092461 62.135408l15.773242 6.477528a31.998785 31.998785 0 0 0 26.643824-1.068331l15.220656-7.729032c38.971593-19.783579 81.70179-33.206286 125.891222-39.569204 17.492396-2.518357 29.629831-18.74083 27.111474-36.232203-2.51938-17.491373-18.74083-29.629831-36.233226-27.110451-51.059909 7.352455-100.497878 22.88215-145.741315 45.850258l-2.146897 1.090844-2.216481-0.910742c-53.134151-21.799492-109.688191-32.856315-167.983899-32.856316h-0.86981c-23.305799 0-38.793538 24.116257-29.098735 45.309952 14.242376 31.133068 21.629623 65.063855 21.629623 99.550297 0 28.440749-4.874007 56.039317-14.291494 81.72021l-17.993816 46.282092c-13.231349 38.715767-21.066805 94.536097-21.066805 141.052527 0 233.250368 203.907063 431.979502 447.978894 431.979502 224.060055 0 416.890852-168.08623 444.627567-380.535853 2.288113-17.524119-10.063193-33.583886-27.586289-35.871999-17.524119-2.288113-33.583886 10.063193-35.871999 27.586289-23.563672 180.482561-189.155081 324.823993-381.169279 324.823993-209.090109 0-383.981325-170.45109-383.981325-367.981932 0-39.923268 6.873548-88.886423 17.165962-119.092376l17.754362-45.605687c12.239765-33.351596 18.431791-68.415183 18.431792-104.355743 0-26.52819-3.455705-52.812833-10.217713-78.212316 33.878598 3.992941 66.76152 12.493545 98.240465 25.408693z" horiz-adv-x="1024" />
<glyph glyph-name="icon_share" unicode="&#60369;" d="M789.476639 293.494707c0 17.672498 14.326287 31.998785 31.998785 31.998784s31.998785-14.326287 31.998784-31.998784v-255.988232c0-53.016471-42.97886-95.995331-95.995331-95.995332H149.507082c-53.016471 0-95.995331 42.97886-95.995331 95.995332V613.479485c0 53.016471 42.97886 95.995331 95.995331 95.995331h223.989447c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H149.507082c-17.672498 0-31.998785-14.326287-31.998785-31.998784v-575.971987c0-17.672498 14.326287-31.998785 31.998785-31.998785h607.970772c17.672498 0 31.998785 14.326287 31.998785 31.998785V293.494707z m71.761394 351.983563L734.851531 771.863748c-12.495592 12.495592-12.495592 32.756031 0 45.252647 12.496615 12.496615 32.756031 12.496615 45.252646 0l181.010587-181.010587c12.496615-12.496615 12.496615-32.756031 0-45.252646L780.105201 409.842575c-12.496615-12.496615-32.756031-12.496615-45.252647 0-12.495592 12.495592-12.495592 32.756031 0 45.252646l126.385479 126.385479H757.477854c-212.066907 0-383.981325-171.914418-383.981325-383.981325 0-17.672498-14.326287-31.998785-31.998784-31.998784s-31.998785 14.326287-31.998785 31.998784c0 247.411903 200.566992 447.978894 447.978894 447.978895h103.760179z" horiz-adv-x="1024" />
<glyph glyph-name="icon_sms" unicode="&#60370;" d="M244.675582 77.66715l16.799618 6.650467a59.449997 59.449997 0 0 0 47.993061-1.874697l16.20917-7.933693c56.710606-27.750017 121.235179-42.491767 186.321546-42.491767 209.413474 0 383.981325 163.998121 383.981324 351.983563S721.413474 735.983563 512 735.983563 128.018675 571.985442 128.018675 384c0-38.156018 6.891967-85.48086 16.358573-112.345718l19.104104-47.315632c14.182001-37.249369 21.36254-76.445066 21.36254-116.566855a328.276628 328.276628 0 0 0-3.685949-49.066509 383.696846 383.696846 0 0 1 63.517639 18.961864zM959.977871 384c0-221.178425-200.964034-415.980109-447.978894-415.980109-74.91113 0-149.189857 17.003256-214.792995 49.163723l-16.395412 8.040116-16.985859-6.737448c-53.035914-21.013593-109.494787-31.680537-167.82631-31.680536h-0.937348c17.353227 36.632315 26.41665 76.633355 26.416649 117.376291 0 33.505092-5.967922 66.087161-17.740036 97.065709l-18.879999 46.818305C71.028707 287.145092 64.022129 342.75462 64.022129 383.997953 64.021106 605.179448 264.98514 799.980109 512 799.980109S959.977871 605.179448 959.977871 384z" horiz-adv-x="1024" />
<glyph glyph-name="icon_setting" unicode="&#60371;" d="M513.796926-63.977871c-5.249561 0-10.530844 0.077771-15.780405 0.26606a455.752951 455.752951 0 0 0-33.561374 2.422165c-15.249309 1.672082-27.154453 13.890358-28.404933 29.139668-1.812275 21.686928-10.624988 41.575908-25.498744 57.497528-35.311227 37.904285-93.745081 41.091884-132.868123 7.233752-11.562337-9.999748-28.592198-10.406001-40.716331-0.952698-26.936489 21.171182-51.497884 45.51359-72.996524 72.324212-9.561773 11.952216-9.342786 28.998451 0.531096 40.685631 14.062274 16.60826 21.904892 36.872792 22.654976 58.637492 1.781576 51.825342-37.248346 95.354741-88.871074 99.088786-15.280008 1.109264-27.65485 12.921287-29.467125 28.138874a451.200262 451.200262 0 0 0-2.874467 69.105914c0.406253 11.343349 1.187035 22.530133 2.405793 33.592072 1.655709 15.249309 13.905708 27.154453 29.185716 28.420283 21.655206 1.781576 41.498136 10.593266 57.435107 25.468045 37.936007 35.341926 41.091884 93.714382 7.250124 132.899846-9.999748 11.593036-10.406001 28.670993-0.937348 40.71633 21.248953 26.967188 45.560662 51.528584 72.340585 72.964802 11.906168 9.593496 28.967752 9.343809 40.685631-0.546445 16.59291-14.045901 36.872792-21.874193 58.653865-22.639627 52.841485-2.437515 95.339392 37.263695 99.088786 88.901773 1.093914 15.280008 12.905938 27.624151 28.123524 29.451776a452.740338 452.740338 0 0 0 69.121264 2.859117 458.812637 458.812637 0 0 0 33.561373-2.405793c15.249309-1.655709 27.154453-13.905708 28.435633-29.185716 1.781576-21.670555 10.561543-41.545208 25.436322-57.465806 35.311227-37.904285 93.745081-41.076534 132.931568-7.218402 11.562337 9.999748 28.686343 10.406001 40.685631 0.921999 26.967188-21.201881 51.497884-45.528939 72.964802-72.308863 9.593496-11.952216 9.342786-29.013801-0.562818-40.70098-14.030551-16.57756-21.874193-36.842093-22.624277-58.622143-1.781576-51.809993 37.248346-95.339392 88.901773-99.088785 15.311731-1.124614 27.65485-12.921287 29.467125-28.138874 2.687202-22.654976 3.656273-45.904493 2.843768-69.090565-0.406253-11.343349-1.187035-22.545482-2.405793-33.607422-1.655709-15.217586-13.905708-27.139104-29.155017-28.404933-21.655206-1.796926-41.560558-10.608615-57.497529-25.468045-37.904285-35.341926-41.060161-93.729731-7.218401-132.899846 9.999748-11.593036 10.406001-28.65462 0.937348-40.700981-21.217231-26.951839-45.528939-51.513234-72.340585-72.981175-11.968589-9.578146-28.998451-9.342786-40.685631 0.562819-16.562211 14.030551-36.810371 21.842471-58.622142 22.607904-52.934606 2.28095-95.339392-37.248346-99.088786-88.886423-1.093914-15.280008-12.905938-27.6395-28.123524-29.451776a452.746478 452.746478 0 0 0-53.340859-3.14155z m-18.624173 64.433498c1.687432-0.077771 3.374864-0.156566 5.062296-0.202615a397.114436 397.114436 0 0 1 35.560913 0.374531c17.936511 72.136947 83.277682 123.30635 160.804383 120.838135 26.498514-0.937348 52.40351-8.514931 75.120908-21.764699a381.427152 381.427152 0 0 1 28.65462 28.888957c-38.34226 63.669088-28.030403 146.633638 28.28009 199.131293 19.374256 18.077727 43.060725 31.029714 68.527746 37.732369 0.062422 1.719154 0.156566 3.452635 0.218988 5.17179a395.750369 395.750369 0 0 1-0.37453 35.513842c-72.152297 17.905812-123.525338 83.871199-120.838136 160.789033 0.906649 26.498514 8.499581 52.41886 21.74935 75.15263a387.007241 387.007241 0 0 1-28.873608 28.639271c-63.684438-38.325887-146.618289-28.01403-199.146642 28.26474-18.374486 19.701714-31.18628 43.044352-37.811164 68.543096-1.687432 0.077771-3.343141 0.156566-5.030573 0.202615-11.842723 0.390903-23.780613 0.312108-35.560914-0.37453-17.905812-72.152297-82.777285-123.213229-160.804383-120.838136-26.936489 0.952698-52.497655 8.390088-75.215052 21.732977a392.163681 392.163681 0 0 1-28.592198-28.841885c38.34226-63.684438 28.030403-146.648988-28.280091-199.131293-19.374256-18.077727-43.060725-31.045063-68.527746-37.747719-0.062422-1.719154-0.156566-3.437286-0.218987-5.15644-0.406253-11.812023-0.249687-23.701818 0.406252-35.513842 72.121598-17.905812 123.493615-83.871199 120.806414-160.804383-0.906649-26.920116-8.343015-52.497655-21.717628-75.215052a389.053853 389.053853 0 0 1 28.841885-28.576849c63.71616 38.404682 146.618289 28.01403 199.146643-28.26474 18.374486-19.701714 31.18628-43.027979 37.811164-68.543096z m18.467607 191.553711c-105.870236 0-191.990662 86.120426-191.990662 191.990662s86.120426 191.990662 191.990662 191.990662 191.990662-86.120426 191.990662-191.990662-86.120426-191.990662-191.990662-191.990662z m0 319.984778c-70.590731 0-127.994116-57.418734-127.994116-127.994116s57.403385-127.994116 127.994116-127.994116 127.994116 57.418734 127.994116 127.994116-57.403385 127.994116-127.994116 127.994116z" horiz-adv-x="1024" />
<glyph glyph-name="icon_star" unicode="&#60372;" d="M512 692.915675L577.199954 495.927185l14.522762-43.887556h244.308215l-157.179832-131.697461-31.530111-26.41665 10.937097-39.653115 56.411801-204.547652-165.589363 117.718075-37.080523 26.360367-37.080523-26.361391-165.597549-117.722168 56.418964 204.552769 10.937096 39.652092-31.53011 26.417673-157.179832 131.697461h244.304121l14.526855 43.887556 65.200978 196.98849m0 139.063219c-11.816117 0-23.63121-6.791683-28.127617-20.375049l-97.82705-295.566646H93.719498c-27.710109 0-40.267099-34.785248-18.987446-52.612265L304.048831 271.288962l-82.039481-297.444413c-5.655813-20.513196 10.561543-37.82242 28.662806-37.82242 5.698792 0 11.585873 1.717108 17.030885 5.588275l244.296959 173.672458L756.301052-58.389596c5.445012-3.873214 11.335163-5.588275 17.030885-5.588275 18.10024 0 34.31862 17.310248 28.65462 37.82242L719.951169 271.287939l229.316779 192.135972c21.280676 17.827017 8.725732 52.612265-18.991539 52.612264H637.954667L540.127617 811.603845c-4.496407 13.583366-16.311501 20.37505-28.127617 20.375049z" horiz-adv-x="1024" />
<glyph glyph-name="icon_subordinate" unicode="&#60373;" d="M799.985993 32.01746h127.994116V160.010553H799.985993v-127.993093z m-351.983563 0h127.994116V160.010553H448.00243v-127.993093z m-21.331841 191.990662h170.658822c23.562649 0 42.664705-19.101033 42.664705-42.664705v-170.658821c0-23.562649-19.101033-42.664705-42.664705-42.664705H426.670589c-23.562649 0-42.664705 19.102057-42.664705 42.664705V181.343417c0 23.562649 19.102057 42.664705 42.664705 42.664705z m-330.650698-191.990662h127.994116V160.010553H96.019891v-127.993093z m351.982539 575.971987h127.994116V735.983563H448.00243v-127.994116z m31.998785-191.990662V543.992901h-53.330626c-23.562649 0-42.664705 19.101033-42.664705 42.664705V757.315404c0 23.562649 19.101033 42.664705 42.664705 42.664705h170.658822c23.562649 0 42.664705-19.101033 42.664705-42.664705v-170.658821c0-23.562649-19.101033-42.664705-42.664705-42.664705h-53.330626v-127.994116h319.984778c17.672498 0 31.998785-14.326287 31.998785-31.998785v-159.991878h53.330626c23.562649 0 42.664705-19.101033 42.664705-42.664705V10.683573c0-23.562649-19.101033-42.664705-42.664705-42.664706H778.653129c-23.562649 0-42.664705 19.102057-42.664705 42.664706V181.343417c0 23.562649 19.101033 42.664705 42.664705 42.664705h53.330626V352.001215H192.015222v-127.994116h53.330626c23.562649 0 42.664705-19.101033 42.664705-42.664705V10.683573c0-23.562649-19.102057-42.664705-42.664705-42.664706H74.687026c-23.562649 0-42.664705 19.102057-42.664705 42.664706V181.343417c0 23.562649 19.102057 42.664705 42.664705 42.664705h53.330626V384c0 17.672498 14.326287 31.998785 31.998785 31.998785h319.984778z" horiz-adv-x="1024" />
<glyph glyph-name="icon_task" unicode="&#60374;" d="M256.011768 463.995939c0-8.836249 7.163143-15.999392 15.999392-15.999393H710.260459c8.836249 0 15.999392 7.163143 15.999393 15.999393 0 3.284813-1.011027 6.489808-2.895957 9.18008l-99.065249 141.398404a16.000416 16.000416 0 0 0-0.008187 18.349926l99.234095 141.886521c5.064342 7.240915 3.300162 17.216103-3.941775 22.280446a16.001439 16.001439 0 0 1-9.169847 2.888793H272.01116c-8.836249 0-15.999392-7.163143-15.999392-15.999392v-319.984778z m0-79.995939v-447.978894c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V831.978894c0 17.672498 14.326287 31.998785 31.998785 31.998785h578.541509c17.672498 0 31.998785-14.326287 31.998785-31.998785a32.004925 32.004925 0 0 0-5.776564-18.339693l-126.368082-180.682106a15.998369 15.998369 0 0 1 0.008186-18.349927l126.283148-180.2472c10.139941-14.473643 6.627954-34.42709-7.845688-44.567032a31.996738 31.996738 0 0 0-18.361183-5.791913H256.011768z" horiz-adv-x="1024" />
<glyph glyph-name="icon_study" unicode="&#60375;" d="M88.019683 735.983563c0 53.016471 42.97886 95.995331 95.995331 95.995331h639.969556c53.016471 0 95.995331-42.97886 95.995332-95.995331v-543.974225c0-53.016471-42.97886-95.995331-95.995332-95.995331H200.014406c-26.508747 0-47.998177-21.48943-47.998177-47.998178s21.48943-47.998177 47.998177-47.998177h703.966103c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H200.014406c-56.421011 0-111.994724 39.997969-111.994723 95.995332V735.983563z m543.974225 31.997762H184.016037c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-586.749448c14.547321 6.910387 30.820959 10.777461 47.998178 10.777461h623.970164c17.672498 0 31.998785 14.326287 31.998785 31.998785V735.983563c0 17.672498-14.326287 31.998785-31.998785 31.998785H695.991478v-447.978894c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V767.981325z" horiz-adv-x="1024" />
<glyph glyph-name="icon_work" unicode="&#60376;" d="M176.015829 767.981325c-26.508747 0-47.998177-21.48943-47.998177-47.998178v-191.990662c0-26.508747 21.48943-47.998177 47.998177-47.998177h191.990663c26.508747 0 47.998177 21.48943 47.998177 47.998177V719.984171c0 26.508747-21.48943 47.998177-47.998177 47.998177H176.015829z m-15.999392 63.997569h223.989447c53.016471 0 95.995331-42.97886 95.995331-95.995331v-223.989447c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V735.983563c0 53.016471 42.97886 95.995331 95.995331 95.995331z m0-543.974225c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-223.989447c0-17.672498 14.326287-31.998785 31.998785-31.998785h223.989447c17.672498 0 31.998785 14.326287 31.998785 31.998785V256.005884c0 17.672498-14.326287 31.998785-31.998785 31.998785H160.016437z m0 63.996546h223.989447c53.016471 0 95.995331-42.97886 95.995331-95.995331v-223.989447c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V256.005884c0 53.017494 42.97886 95.995331 95.995331 95.995331zM639.994116 767.981325c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-223.989447c0-17.672498 14.326287-31.998785 31.998785-31.998785h223.989447c17.672498 0 31.998785 14.326287 31.998785 31.998785V735.983563c0 17.672498-14.326287 31.998785-31.998785 31.998785H639.994116z m0 63.997569h223.989447c53.016471 0 95.995331-42.97886 95.995331-95.995331v-223.989447c0-53.016471-42.97886-95.995331-95.995331-95.995331H639.994116c-53.016471 0-95.995331 42.97886-95.995331 95.995331V735.983563c0 53.016471 42.977837 95.995331 95.995331 95.995331z m0-543.974225c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-223.989447c0-17.672498 14.326287-31.998785 31.998785-31.998785h223.989447c17.672498 0 31.998785 14.326287 31.998785 31.998785V256.005884c0 17.672498-14.326287 31.998785-31.998785 31.998785H639.994116z m0 63.996546h223.989447c53.016471 0 95.995331-42.97886 95.995331-95.995331v-223.989447c0-53.016471-42.97886-95.995331-95.995331-95.995331H639.994116c-53.016471 0-95.995331 42.97886-95.995331 95.995331V256.005884c0 53.017494 42.977837 95.995331 95.995331 95.995331z" horiz-adv-x="1024" />
<glyph glyph-name="icon_safety" unicode="&#60377;" d="M512 863.976656c-89.698928 0-319.984778-159.991878-415.980109-159.991878v-415.980109c0-127.994116 319.984778-383.981325 415.980109-383.981325s415.980109 255.987209 415.980109 383.981325V703.984778c-95.995331 0-328.582597 159.991878-415.980109 159.991878z m351.98254-575.971987c0-80.423681-275.849582-315.741128-351.693968-319.990918-76.422554 4.249791-352.272135 239.566214-352.272135 319.990918V650.760576c53.071729 15.610536 114.724905 46.143946 178.862667 77.904301C399.653259 758.761336 482.887962 799.980109 512 799.980109c27.740808 0 113.795742-42.470277 170.741709-70.574358 65.062831-32.109302 127.611399-62.97938 181.240831-78.682014v-362.719068zM439.249069 355.476363l-97.241718 72.216765a21.327748 21.327748 0 0 1-21.307282 2.400676l-11.409864-5.021363a17.70729 17.70729 0 0 1-4.886287-3.196809c-7.214309-6.650467-7.67582-17.891486-1.027399-25.107841l138.891303-150.7197c0.562818-0.610914 1.163499-1.187035 1.792833-1.728364 8.940626-7.67582 22.409382-6.650467 30.080086 2.289136L753.003959 571.393971a14.005992 14.005992 0 0 1 2.273787 3.667529c3.035126 7.14984-0.300852 15.405875-7.452739 18.441001l-5.007038 2.125407a21.325701 21.325701 0 0 1-22.822798-3.982707l-253.534343-234.695277c-7.53665-6.975878-18.97005-7.594979-27.211759-1.473561z" horiz-adv-x="1024" />
<glyph glyph-name="icon_voipphone" unicode="&#60378;" d="M575.996546 384c-35.344996 0-63.996546 28.652574-63.996546 63.996546s28.652574 63.996546 63.996546 63.996547c35.344996 0 63.996546-28.652574 63.996547-63.996547s-28.65155-63.996546-63.996547-63.996546z m-20.175505-268.895193C407.166373 156.322557 289.712311 274.186965 246.930949 425.741683c-7.549953 31.902594 0.641613 55.479569 19.97903 73.405847 2.205225 2.044566 8.238638 7.150864 7.343245 6.371104 5.210675 4.538363 10.078543 8.491395 18.423605 15.077394 2.600221 2.050706 2.600221 2.050706 5.134951 4.053316 19.160385 15.159258 27.41642 23.335475 31.112601 31.02255 4.465708 9.287527-8.137331 45.497217-37.347606 82.96762-34.562167 44.335764-64.004733 65.345264-89.534176 65.345264-23.75196 0-36.957727-13.716396-61.117986-72.953545-12.670577-31.066553-15.045671-107.311051-8.587586-150.127206 5.485945-36.374442 25.293059-107.856473 42.929742-149.760862 72.115458-171.346483 228.678236-294.294676 414.019455-323.590909 90.163509-14.07967 181.086311-7.721869 206.209502 13.641695 25.185612 21.416775 37.484729 38.672788 37.484729 45.60671 0 21.046339-26.907836 63.288418-64.754816 93.459579-36.870746 29.393447-72.370261 42.030255-81.143065 37.717019-6.478552-3.185552-13.401218-9.604752-23.189142-21.688974-2.769067-3.418866-19.668968-25.429159-25.726941-32.834826-24.171516-30.673603-42.252313-37.231973-82.34545-28.348652z m32.237216 68.156286l0.445138 0.553609c4.986571 6.065136 22.099321 28.355815 25.660426 32.752961 15.123442 18.671245 28.059056 30.665417 44.680618 38.838564 37.784558 18.580171 94.888114-1.746784 149.275815-45.104268 51.608402-41.142026 88.85777-99.619882 88.857771-143.501298 0-31.374568-21.608134-61.694107-60.024072-94.360088-44.155662-37.547151-149.83761-44.937468-257.598916-28.109198C372.054691-22.901337 196.977233 114.587014 116.282377 306.31878 96.553033 353.193367 75.323523 429.809325 69.056795 471.358627c-8.022721 53.18941-5.323239 139.869584 12.610203 183.840028 32.905434 80.679507 63.813375 112.782669 120.375601 112.78267 50.197262 0 94.485955-31.603789 140.006708-89.996711 42.73122-54.815443 62.723553-112.252597 44.550658-150.046364-9.370415-19.487843-22.293749-32.284287-49.081858-53.477982-2.62171-2.071172-2.62171-2.071172-5.193279-4.099365-7.579629-5.983271-11.824303-9.429767-16.043395-13.104459-0.081864-0.071631-4.912893-4.15974-5.865591-5.042853-3.076058-2.850931-3.216251-3.255137-1.554402-10.403954 36.385698-128.806621 137.045259-229.818199 262.395152-264.621866 14.366196-3.165086 7.592932-5.64865 16.801665 6.073322z m147.93119 232.737692c0 106.033965-85.956697 191.990662-191.990662 191.990662-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785c141.377938 0 255.987209-114.609271 255.987208-255.987209 0-17.672498-14.326287-31.998785-31.998784-31.998785-17.671475-0.001023-31.997762 14.325263-31.997762 31.997762z m159.991878 0c0 194.394409-157.588131 351.983563-351.98254 351.983563-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785c229.739405 0 415.980109-186.240705 415.980109-415.98011 0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.325263-31.998784 31.997762z" horiz-adv-x="1024" />
<glyph glyph-name="icon_shakehands" unicode="&#60379;" d="M669.444868 519.75794v0.002047M986.211349 519.75794L759.949138 746.02322c-37.490869 37.488823-98.269118 37.488823-135.758963 0l-67.879993-67.879993L443.175495 791.274844c-37.482683 37.488823-98.260931 37.488823-135.7518 0L35.905768 519.75794c-37.490869-37.488823-37.490869-98.269118 0-135.756917l407.269727-407.275867c37.490869-37.488823 98.276281-37.488823 135.758963 0l339.397921 339.395874 67.879993 67.879993c37.489846 37.488823 37.489846 98.269118-0.001023 135.756917zM805.204855 293.49573l-22.63144-22.627347-45.255716 45.25367c-12.491499 12.495592-32.748868 12.495592-45.247531 0-12.499685-12.495592-12.499685-32.756031 0-45.25367l45.247531-45.251623-45.247531-45.251624-90.503246 90.503247c-12.499685 12.497639-32.756031 12.497639-45.255717 0-12.499685-12.495592-12.499685-32.756031 0-45.251623l90.503247-90.505294-45.24753-45.251623-135.759987 135.755894c-12.499685 12.495592-32.756031 12.495592-45.255717 0-12.499685-12.495592-12.499685-32.756031 0-45.251624l135.758964-135.758963-22.624277-22.626324c-12.499685-12.495592-32.756031-12.495592-45.255717 0L81.161485 429.252647c-12.499685 12.497639-12.499685 32.756031 0 45.25367l271.510763 271.51588c12.499685 12.495592 32.756031 12.495592 45.255717 0L511.063675 632.888534l-45.255717-45.251624c-37.490869-37.488823-37.490869-98.271164 0-135.758963l45.255717-45.251624c37.482683-37.488823 98.260931-37.488823 135.750777 0l45.255716 45.251624 113.134687-113.131617c12.491499-12.494569 12.491499-32.755008 0-45.2506z m135.750777 135.756917l-67.879993-67.879994-67.871807 67.879994-90.511433 90.505293c-12.491499 12.495592-32.748868 12.497639-45.247531 0.002047l-22.63144-22.627347-45.24753-45.25367c-12.499685-12.495592-32.756031-12.495592-45.255716 0l-45.24753 45.25367c-12.499685 12.495592-12.499685 32.756031 0 45.251623l45.24753 45.25367 113.134686 113.131617c12.491499 12.495592 32.756031 12.495592 45.247531 0l45.255716-45.251623L940.954609 474.50734c12.500709-12.498662 12.500709-32.757055 0.001023-45.254693z" horiz-adv-x="1024" />
<glyph glyph-name="icon_task_done" unicode="&#60380;" d="M450.54637 303.78712l294.450218 294.938336c12.579503 12.353352 32.975019 12.353352 45.554522 0a31.230282 31.230282 0 0 0 0-44.73383L456.553177 169.275567c-12.579503-12.353352-32.975019-12.353352-45.554522 0L233.447866 375.053234a31.230282 31.230282 0 0 0 0 44.73383c12.579503 12.353352 32.975019 12.353352 45.554522 0l136.758734-117.342521c10.161431-8.718569 25.325805-8.133238 34.785248 1.342577zM160.016437 767.981325c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-703.966103c0-17.672498 14.326287-31.998785 31.998785-31.998785h703.966103c17.672498 0 31.998785 14.326287 31.998785 31.998785V735.983563c0 17.672498-14.326287 31.998785-31.998785 31.998785H160.016437z m0 63.997569h703.966103c53.016471 0 95.995331-42.97886 95.995331-95.995331v-703.966103c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V735.983563c0 53.016471 42.97886 95.995331 95.995331 95.995331z" horiz-adv-x="1024" />
<glyph glyph-name="icon_workfile_line" unicode="&#60381;" d="M912.945695 575.416588h-41.439808l-13.731746 54.583152c-10.717086 42.60433-48.882314 72.356958-92.810802 72.356958H486.407112c-6.807033 0-13.568017 2.227738-19.020192 6.277984l-95.614662 71.01745c-16.403598 12.166087-36.669154 18.86465-57.060577 18.86465H112.313995c-52.777017 0-95.707782-42.931788-95.707782-95.707783v-624.571868c-0.615007-4.393054-1.25969-8.782014-1.25969-13.264095 0-52.772924 42.933835-95.707782 95.707782-95.707782h663.645792a95.591125 95.591125 0 0 1 90.796936 65.437362l138.244574 414.738839a95.55224 95.55224 0 0 1 4.912893 30.26735c-0.001023 52.771901-42.935881 95.707782-95.708805 95.707783zM112.313995 734.711594H314.711681c6.791683 0 13.552667-2.243087 19.020193-6.293334l95.614661-71.01745c16.387225-12.150738 36.653805-18.848277 57.060577-18.848277h278.556227c14.642488 0 27.353998-9.923 30.936593-24.12956l9.813506-39.006385H276.948613c-39.368636 0-74.250074-23.61893-88.865957-60.171428L80.411401 246.069581V702.808999c0 17.58654 14.31503 31.902594 31.902594 31.902595z m830.897004-265.093611L804.966425 54.883237a31.906687 31.906687 0 0 0-30.267351-21.812795h-663.644769c-16.490579 0-29.589922 12.672624-31.259958 28.721135 0.105401 1.055029 0.617054 1.974981 0.617054 3.056616v6.66684c0.3776 1.768273 0.346901 3.617387 1.022283 5.303796l165.894308 414.734746a31.897478 31.897478 0 0 0 29.620621 20.055778h635.997082c17.618263 0 31.902594-14.284331 31.902594-31.902594 0-3.426029-0.552585-6.833639-1.63729-10.088776z" horiz-adv-x="1024" />
<glyph glyph-name="icon_add" unicode="&#60303;" d="M542.308283 415.999808H926.290631c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H542.308283v-383.981324c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V352.003262H94.330412c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998784h383.981325V799.981133c0 17.672498 14.326287 31.998785 31.998784 31.998785s31.998785-14.326287 31.998785-31.998785v-383.981325z" horiz-adv-x="1024" />
<glyph glyph-name="icon_addmessage" unicode="&#60304;" d="M735.989447 214.937536V374.930437c0 17.672498 14.326287 31.998785 31.998785 31.998785s31.998785-14.326287 31.998785-31.998785v-159.991877H959.977871c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H799.985993v-159.991877c0-17.672498-14.326287-31.998785-31.998784-31.998785s-31.998785 14.326287-31.998785 31.998785V150.94099H575.996546c-17.672498 0-31.998785 14.326287-31.998784 31.998785s14.326287 31.998785 31.998784 31.998785h159.992901zM991.976656 502.924553c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V726.912977c0 17.672498-14.326287 31.998785-31.998785 31.998785H128.018675c-17.672498 0-31.998785-14.326287-31.998784-31.998785v-511.975441c0-17.672498 14.326287-31.998785 31.998784-31.998784h127.994116c35.344996 0 63.996546-28.652574 63.996547-63.996547v-93.13826l95.995331 74.66349c8.642844 6.722098 21.099551 5.16565 27.821649-3.478218a19.826558 19.826558 0 0 0 4.176112-12.172227v-24.88783c0-9.874905-4.558829-19.196201-12.353352-25.258267l-102.172007-79.466889c-20.924565-16.274662-51.080376-12.504802-67.355038 8.419763a47.994084 47.994084 0 0 0-10.110265 29.468149V118.942205H128.018675c-53.016471 0-95.995331 42.97886-95.995331 95.995331V726.912977c0 53.016471 42.97886 95.995331 95.995331 95.995331h767.96265c53.016471 0 95.995331-42.97886 95.995331-95.995331V502.924553z" horiz-adv-x="1024" />
<glyph glyph-name="icon_addresslist" unicode="&#60305;" d="M751.986793 671.985993v-575.971986c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V671.985993c0 17.672498 14.326287 31.998785 31.998785 31.998785s31.998785-14.326287 31.998785-31.998785zM208.013591 192.009338v-159.991878c0-17.672498 14.326287-31.998785 31.998785-31.998785h607.970771c17.672498 0 31.998785 14.326287 31.998785 31.998785V735.983563c0 17.672498-14.326287 31.998785-31.998785 31.998785H240.011352c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-159.991877h63.996547c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785h-63.996547v-255.988232h63.996547c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785h-63.995523z m-63.99757 63.996546V511.994116h-31.998785c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785h31.998785V735.983563c0 53.016471 42.97886 95.995331 95.995331 95.995331h607.970772c53.016471 0 95.995331-42.97886 95.995331-95.995331v-703.966103c0-53.016471-42.97886-95.995331-95.995331-95.995331H240.011352c-53.016471 0-95.995331 42.97886-95.995331 95.995331V192.009338h-31.998785c-17.672498 0-31.998785 14.326287-31.998785 31.998784s14.326287 31.998785 31.998785 31.998785h31.998785z" horiz-adv-x="1024" />
<glyph glyph-name="icon_affiliations_li" unicode="&#60306;" d="M783.986601 64.015222c88.361467 0 159.991878 71.631434 159.991878 159.991877 0 88.361467-71.631434 159.991878-159.991878 159.991878s-159.991878-71.631434-159.991877-159.991878c0-88.360444 71.630411-159.991878 159.991877-159.991877z m0-63.996547c-123.70544 0-223.989447 100.282984-223.989447 223.989447 0 123.70544 100.284007 223.989447 223.989447 223.989448s223.989447-100.284007 223.989447-223.989448c0-123.706463-100.284007-223.989447-223.989447-223.989447zM750.764965 537.440671c7.057743-16.202007-0.356111-35.057447-16.558117-42.114166-16.202007-7.057743-35.057447 0.356111-42.114167 16.558117-50.404993 115.721605-164.606988 192.100156-292.780183 192.100156-176.325891 0-319.292-143.247518-319.292-319.984778s142.966109-319.984778 319.292-319.984778c24.136723 0 47.901986 2.677992 71.005171 7.933693 17.232476 3.920286 34.378995-6.871501 38.299281-24.103978 3.920286-17.232476-6.871501-34.378995-24.103978-38.299281-27.752064-6.312776-56.278771-9.528004-85.200474-9.528004-211.698516 0-383.288546 171.928744-383.288546 383.981325S187.613982 767.981325 399.312498 767.981325c153.878646 0 290.972001-91.689259 351.452467-230.540654z" horiz-adv-x="1024" />
<glyph glyph-name="icon_addperson" unicode="&#60307;" d="M767.987209 144.01116V272.005276c0 17.672498 14.326287 31.998785 31.998784 31.998785s31.998785-14.326287 31.998785-31.998785v-127.994116H959.977871c17.672498 0 31.998785-14.326287 31.998785-31.998784s-14.326287-31.998785-31.998785-31.998785H831.984778v-127.994116c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998784 31.998785v127.995139H639.994116c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785h127.993093zM606.553493 213.543793l-0.116657-0.069585c-20.713764 23.240307-30.440289 51.80283-30.44029 90.530877 0 28.667923 9.048073 53.575196 25.279757 78.742388 5.132904 7.958252 10.5728 15.404852 18.23327 25.27464-3.815909-4.916986 13.59053 17.342993 17.306154 22.291702 24.740474 32.948413 35.176151 58.473763 35.176151 97.680717v95.995331c0 93.106538-66.784032 159.991878-159.992901 159.991877-93.208868 0-159.991878-66.88534-159.991878-159.991877v-95.995331c0-39.206954 10.435677-64.732303 35.176151-97.680717 3.677762-4.897543 20.762883-26.750247 17.48114-22.516829 7.569396-9.757225 12.964266-17.151635 18.058284-25.049513 16.231683-25.166169 25.279756-50.074466 25.279756-78.742388 0-88.693018-50.975998-123.93773-168.494528-164.215063a8615.7644 8615.7644 0 0 0-19.303648-6.574742 1957.252183 1957.252183 0 0 1-18.833951-6.501064c-36.761252-12.935614-60.7015-23.558555-79.425957-36.001959-14.718213-9.780761-29.498848-26.513864-44.340881-50.198285-4.692882-7.487531-2.426259-17.361413 5.061272-22.053272a16.001439 16.001439 0 0 1 8.495488-2.441609h412.837537c17.672498 0 31.998785-14.326287 31.998784-31.998785s-14.326287-31.998785-31.998784-31.998785H82.765005c-26.508747 0-47.997154 21.48943-47.997154 47.997154 0 3.232624 0.326435 6.456039 0.974188 9.622149 11.691273 57.130162 41.951461 101.920274 90.781586 134.370336 96.3013 63.996546 257.482259 63.996546 257.482259 159.991878 0 63.996546-95.996354 95.689363-95.996354 223.989447v95.995331c0 128.257106 95.241154 223.989447 223.988423 223.989447s223.989447-95.732341 223.989448-223.989447v-95.995331c0-128.300085-95.994308-159.991878-95.994308-223.989447 0-22.995737 9.187243-40.481993 24.490787-54.659901 0.013303-0.010233 0.024559-0.022513 0.036839-0.033769 0.214894-0.199545 0.431835-0.398066 0.649799-0.596587 2.817162-2.831488 4.836145-4.968152 6.028297-6.426363 5.931083-7.256264-0.242524-26.761504-10.867512-34.57547-10.624988-7.813966-31.135114-11.416004-46.880726-0.806365-0.607844 0.409322-2.90619 2.62171-6.897084 6.63921z" horiz-adv-x="1024" />
<glyph glyph-name="icon_boss" unicode="&#60308;" d="M548.416398 105.921657l23.143093-115.715465a42.278919 42.278919 0 0 0-11.561314-38.185694 54.624085 54.624085 0 0 0-38.625716-15.999392h-18.743899a54.624085 54.624085 0 0 0-38.625716 15.999392 42.273802 42.273802 0 0 0-11.561313 38.185694l23.143093 115.715465-31.462573 31.462572c-12.495592 12.496615-12.495592 32.756031 0 45.252647l45.252647 45.252647c12.496615 12.495592 32.756031 12.495592 45.252647 0l45.252646-45.252647c12.495592-12.496615 12.495592-32.756031 0-45.252647l-31.463595-31.462572z m187.633424-169.899528h-0.061398c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785H920.40662c-10.423397 31.153534-29.684066 55.392588-58.752102 74.601068-18.687618 12.349259-42.439578 22.920012-78.478375 35.664268a1892.693842 1892.693842 0 0 1-19.415189 6.726191 8822.897947 8822.897947 0 0 0-19.909445 6.798847c-116.938316 40.194444-167.855986 75.587536-167.855986 164.196642 0 28.667923 9.048073 53.575196 25.279756 78.742389 5.132904 7.958252 10.5728 15.405875 18.23327 25.27464-3.815909-4.916986 13.59053 17.342993 17.306155 22.291702 24.740474 32.948413 35.176151 58.473763 35.17615 97.680717v95.995331c0 93.106538-66.784032 159.991878-159.992901 159.991877-93.208868 0-159.991878-66.88534-159.991877-159.991877v-95.995331c0-39.206954 10.435677-64.732303 35.17615-97.680717 3.677762-4.897543 20.762883-26.750247 17.48114-22.516829 7.569396-9.757225 12.964266-17.151635 18.058285-25.049513 16.231683-25.166169 25.279756-50.074466 25.279756-78.742389 0-88.693018-50.975998-123.93773-168.494529-164.215062a8615.7644 8615.7644 0 0 0-19.303648-6.574742 1957.252183 1957.252183 0 0 1-18.83395-6.501064c-36.761252-12.936637-60.7015-23.558555-79.425958-36.001959-14.718213-9.780761-29.498848-26.513864-44.34088-50.198286-4.692882-7.487531-2.426259-17.361413 5.061272-22.053271a16.001439 16.001439 0 0 1 8.495488-2.441609h156.850328c17.672498 0 31.998785-14.326287 31.998784-31.998785s-14.326287-31.998785-31.998784-31.998785H82.762959c-26.508747 0-47.997154 21.48943-47.997154 47.997154 0 3.232624 0.326435 6.456039 0.974187 9.622148 11.691273 57.130162 41.951461 101.920274 90.781586 134.370337 96.3013 63.996546 257.482259 63.996546 257.482259 159.991878 0 63.996546-95.996354 95.689363-95.996354 223.989447v95.995331c0 128.257106 95.241154 223.989447 223.988424 223.989447s223.989447-95.732341 223.989447-223.989447v-95.995331c0-128.300085-95.994308-159.991878-95.994308-223.989447 0-95.995331 160.097278-95.995331 256.944-159.991878 55.207369-36.481889 86.811158-88.559988 94.812389-156.236343 2.074242-17.549701-10.470469-33.459043-28.02017-35.533285a32.011064 32.011064 0 0 0-3.756557-0.221034H736.049822z" horiz-adv-x="1024" />
<glyph glyph-name="icon_alipay_line" unicode="&#60309;" d="M322.749752 150.762935c74.987878 0 149.936871 47.355541 208.79642 123.163087-83.736123 40.35715-154.673755 69.230758-231.311203 61.753459-20.720927-2.034333-59.624982-11.099802-80.896449-29.652343-63.759139-54.903447-25.614377-155.264203 103.411232-155.264203zM160.016437 831.978894h703.966103c53.016471 0 95.995331-42.97886 95.995331-95.995331v-703.966103c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V735.983563c0 53.016471 42.97886 95.995331 95.995331 95.995331z m735.964888-600.388073V735.983563c0 17.672498-14.326287 31.998785-31.998785 31.998785H160.016437c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-703.966103c0-17.672498 14.326287-31.998785 31.998785-31.998785h703.966103c17.672498 0 31.998785 14.326287 31.998785 31.998785V111.397369c-64.164369 26.708292-209.505571 87.783299-292.64613 127.259382-73.051783-88.768743-167.301354-142.641721-265.137613-142.641721-165.469636 0-221.660402 142.991692-143.308917 237.131768 17.076934 20.521383 46.147016 40.116673 91.247191 51.093679 70.545706 17.113773 182.841282-10.679223 288.069904-44.970214 18.914792 34.440393 34.853809 72.354911 46.715975 112.724341H296.610418v32.458249h167.223583v58.144258H261.292028v32.457226h202.541973v82.95534s0 13.977339 14.329356 13.97734h81.733513v-96.93268h200.257953v-32.457226H559.89687v-58.144258h163.467025c-15.637142-63.282279-39.414685-121.517611-69.210291-172.657338 49.595558-17.72264 94.132914-34.505885 127.311571-45.469588 56.590879-18.723434 92.449575-29.05064 114.51615-34.735106z" horiz-adv-x="1024" />
<glyph glyph-name="icon_addressbook" unicode="&#60310;" d="M863.98254 831.978894H224.014007c-53.017494 0-95.995331-42.97886-95.995332-95.995331v-159.991877h-31.998784c-17.671475 0-31.998785-14.325263-31.998785-31.998785s14.32731-31.998785 31.998785-31.998785h31.998784v-255.988232h-31.998784c-17.671475 0-31.998785-14.325263-31.998785-31.998785s14.32731-31.998785 31.998785-31.998785h31.998784v-159.991877c0-53.017494 42.97886-95.995331 95.995332-95.995331h639.969556c53.017494 0 95.995331 42.97886 95.995331 95.995331V735.983563c-0.001023 53.016471-42.97886 95.995331-95.996354 95.995331z m31.998785-799.961434c0-17.673521-14.32731-31.998785-31.998785-31.998785H224.014007c-17.671475 0-31.998785 14.325263-31.998785 31.998785V192.009338h63.996546c17.671475 0 31.998785 14.325263 31.998785 31.998784 0 17.672498-14.32731 31.998785-31.998785 31.998785h-63.996546V511.994116h63.996546c17.671475 0 31.998785 14.325263 31.998785 31.998785s-14.32731 31.998785-31.998785 31.998785h-63.996546V735.983563c0 17.672498 14.32731 31.998785 31.998785 31.998785h639.969556c17.671475 0 31.998785-14.325263 31.998785-31.998785v-703.966103zM702.803627 331.160561c-2.945075 1.183965-5.835915 1.769296-8.600888 1.769297-9.31618 0-17.663288-6.072299-27.530007-18.430768-1.461281-1.837858-2.738367-3.52529-5.234211-6.896061-14.299681-19.305695-21.717627-24.88169-36.490076-20.212344-19.639293 6.17156-37.428448 17.811668-63.325258 44.131103-24.885783 25.297153-32.943296 36.541241-39.920198 51.995211a132.419915 132.419915 0 0 1-1.827624 3.966335c-7.554046 15.692401-1.355881 25.541723 20.494776 44.105521a619.619066 619.619066 0 0 1 3.472078 2.970658 170.380482 170.380482 0 0 1 1.655709 1.441838c15.421224 13.542434 21.182438 29.688159 16.139586 39.58967-12.866029 25.258267-52.41886 83.198887-65.965388 95.577823-8.679683 7.942903-21.99085 6.418176-40.267099-7.153934-5.464455-4.062526-12.710486-11.083429-19.72218-20.907169-11.042497-15.47546-18.10024-33.564443-19.374256-54.298674-4.046153-65.875337 32.448016-148.60248 93.112677-209.950709 57.149605-57.768705 121.326253-86.84902 191.100386-86.84902 5.077645 0 10.187013 0.161682 15.335267 0.480954 21.49864 1.349741 40.185234 9.556657 56.06797 22.405289 5.655813 4.578272 10.561543 9.441023 14.682397 14.277168 2.508123 2.940982 4.29277 5.354961 5.328356 6.945179 2.476401 3.460822 5.273097 8.553817 6.870477 13.929244 2.124384 7.16212 1.421372 12.386098-2.484587 16.114003-14.795984 14.083763-79.847559 59.470463-93.517907 64.999386z" horiz-adv-x="1024" />
<glyph glyph-name="icon_at" unicode="&#60311;" d="M450.451202 216.348676C525.144368 196.334853 609.444333 253.381104 635.088386 349.075583c25.63996 95.694479-18.844184 187.248661-93.538373 207.262484-74.693166 20.013823-158.993131-37.031405-184.637184-132.725884-25.640983-95.695502 18.84316-187.249685 93.538373-207.263507z m214.549448 324.971349l16.402575 61.217247c4.573155 17.069771 22.12081 27.200502 39.188534 22.626323 17.071817-4.574179 27.201525-22.119787 22.626323-39.190581L703.898565 439.223742c2.210341-15.998369 2.950192-32.494065 2.102894-49.253774 4.584412-29.328979 16.789385-55.654554 34.311457-75.278497 16.850783-18.87386 33.345456-26.687826 43.674708-26.687825 10.329253 0 26.823925 7.812943 43.674709 26.687825 22.575158 25.281803 36.32123 61.684898 36.32123 101.306291 0 194.394409-157.589155 351.983563-351.983563 351.983563-212.066907 0-383.981325-171.914418-383.981325-383.981325s171.914418-383.981325 383.981325-383.981325c153.238057 0 287.122323 82.857103 359.294063 206.212572a32.397874 32.397874 0 0 0 0.953721 1.777483c8.837272 15.304568 28.408003 20.547988 43.712571 11.712763 15.301498-8.836249 20.546965-28.405957 11.711739-43.710524l4.604878 7.978718c-81.794911-147.854443-239.346203-247.967558-420.277995-247.967558-247.411903 0-447.978894 200.566992-447.978895 447.978894s200.568015 447.977871 447.979918 447.977871c229.739405 0 415.980109-186.240705 415.980109-415.980109 0-106.033965-64.467267-191.990662-143.993508-191.990663-41.332361 0-78.595033 23.217794-104.855116 60.404742-47.546899-99.082646-148.956543-155.680688-245.243517-129.880069-110.957091 29.730115-173.095313 157.616784-138.789996 285.642622C329.400219 568.201256 447.158203 647.885086 558.113247 618.154971c44.508703-11.926634 81.163531-39.646975 106.887403-76.834946z" horiz-adv-x="1024" />
<glyph glyph-name="icon_airplay" unicode="&#60312;" d="M737.082338 23.934365l-203.824175 181.176362c-12.123109 10.776438-30.393217 10.776438-42.517349 0l-203.824175-181.176362a31.996738 31.996738 0 0 1-10.739599-23.91569c0-17.672498 14.326287-31.998785 31.998785-31.998784h407.647327c9.140171 0 17.84339 3.90903 23.915689 10.739598 11.741415 13.208836 10.552334 33.434483-2.656503 45.174876zM895.981325 799.980109H128.018675c-53.016471 0-95.995331-42.97886-95.995331-95.995331v-543.974225c0-53.016471 42.97886-95.995331 95.995331-95.995331h63.996547c17.672498 0 31.998785 14.326287 31.998785 31.998785s-14.326287 31.998785-31.998785 31.998784h-63.996547c-17.672498 0-31.998785 14.326287-31.998784 31.998785V703.984778c0 17.672498 14.326287 31.998785 31.998784 31.998785h767.96265c17.672498 0 31.998785-14.326287 31.998784-31.998785v-543.974225c0-17.672498-14.326287-31.998785-31.998784-31.998785h-63.996547c-17.672498 0-31.998785-14.326287-31.998785-31.998785s14.326287-31.998785 31.998785-31.998785h63.996547c53.016471 0 95.995331 42.97886 95.995331 95.995332V703.984778c0 53.016471-42.97886 95.995331-95.995331 95.995331z" horiz-adv-x="1024" />
<glyph glyph-name="icon_calendar" unicode="&#60313;" d="M767.987209 352.001215h-63.996547c-17.672498 0-31.998785-14.326287-31.998784-31.998785s14.326287-31.998785 31.998784-31.998784h63.996547c17.672498 0 31.998785 14.326287 31.998784 31.998784s-14.326287 31.998785-31.998784 31.998785zM256.011768 352.001215c-17.672498 0-31.998785-14.326287-31.998785-31.998785s14.326287-31.998785 31.998785-31.998784h287.985994c17.672498 0 31.998785 14.326287 31.998784 31.998784s-14.326287 31.998785-31.998784 31.998785H256.011768zM767.987209 511.994116H256.011768c-17.672498 0-31.998785-14.326287-31.998785-31.998785s14.326287-31.998785 31.998785-31.998785h511.975441c17.672498 0 31.998785 14.326287 31.998784 31.998785s-14.326287 31.998785-31.998784 31.998785zM863.98254 767.981325h-63.996547c-17.672498 0-31.998785-14.326287-31.998784-31.998785s14.326287-31.998785 31.998784-31.998785h63.996547c17.672498 0 31.998785-14.326287 31.998785-31.998785v-639.969556c0-17.672498-14.326287-31.998785-31.998785-31.998785H160.016437c-17.672498 0-31.998785 14.326287-31.998785 31.998785V671.985993c0 17.672498 14.326287 31.998785 31.998785 31.998785h63.996546c17.672498 0 31.998785 14.326287 31.998785 31.998785s-14.326287 31.998785-31.998785 31.998785h-63.996546c-53.016471 0-95.995331-42.97886-95.995331-95.995331v-639.969557c0-53.016471 42.97886-95.995331 95.995331-95.995331h703.966103c53.016471 0 95.995331 42.97886 95.995331 95.995331V671.985993c0 53.017494-42.977837 95.995331-95.995331 95.995332zM320.009338 639.988232c17.672498 0 31.998785 14.326287 31.998784 31.998785V799.980109c0 17.672498-14.326287 31.998785-31.998784 31.998785s-31.998785-14.326287-31.998785-31.998785v-127.994116c0-17.671475 14.326287-31.997762 31.998785-31.997761zM416.004669 703.984778h191.990662c17.672498 0 31.998785 14.326287 31.998785 31.998785s-14.326287 31.998785-31.998785 31.998785H416.004669c-17.672498 0-31.998785-14.326287-31.998785-31.998785s14.326287-31.998785 31.998785-31.998785zM703.990662 639.988232c17.672498 0 31.998785 14.326287 31.998785 31.998785V799.980109c0 17.672498-14.326287 31.998785-31.998785 31.998785s-31.998785-14.326287-31.998784-31.998785v-127.994116c0-17.671475 14.326287-31.997762 31.998784-31.997761z" horiz-adv-x="1024" />
<glyph glyph-name="icon_attestation" unicode="&#60314;" d="M512 800.647305c4.952802 0 14.475689-1.217734 22.624277-9.371438l86.620823-86.62287a64.007803 64.007803 0 0 1 45.255716-18.744923h119.56412c17.647939 0 31.998785-14.354939 31.998785-31.998784v-119.56412a64.003709 64.003709 0 0 1 18.74083-45.252647l82.472339-82.4662c8.147564-8.153704 9.366322-17.675568 9.366322-22.6253s-1.218758-14.470573-9.374508-22.626323l-82.465177-82.465177a64.002686 64.002686 0 0 1-18.74083-45.252646v-123.721813c0-17.643845-14.350846-31.998785-31.998784-31.998785H662.344147a64.007803 64.007803 0 0 1-45.255717-18.744923l-82.45699-82.464153c-8.15575-8.15575-17.678638-9.373485-22.63144-9.373485s-14.468526 1.217734-22.624277 9.372462l-82.465176 82.465176a64.011896 64.011896 0 0 1-45.255717 18.744923H242.09071c-17.647939 0-31.998785 14.353916-31.998784 31.998785v119.563096a64.001663 64.001663 0 0 1-18.74083 45.251624l-86.62901 86.624916c-8.147564 8.153704-9.366322 17.675568-9.366321 22.6253s1.218758 14.470573 9.374508 22.627347l86.620823 86.623893a64.001663 64.001663 0 0 1 18.74083 45.251623V653.90929c0 17.643845 14.350846 31.998785 31.998784 31.998784h115.408474a64.007803 64.007803 0 0 1 45.255716 18.744923l86.612637 86.620823c8.156774 8.15575 17.679661 9.373485 22.632463 9.373485m0 63.99757c-24.569582 0-49.13814-9.372461-67.879993-28.116361l-86.620823-86.623893h-115.408474c-53.013401 0-95.995331-42.97886-95.995331-95.995331v-115.405404l-86.620823-86.623893c-37.490869-37.488823-37.490869-98.269118 0-135.75794l86.620823-86.623893v-119.563096c0-53.016471 42.98193-95.995331 95.995331-95.995331h119.56412l82.465177-82.465177c18.74083-18.7439 43.310412-28.116361 67.879993-28.116361 24.569582 0 49.13814 9.372461 67.879993 28.116361l82.465177 82.465177h123.720789c53.020564 0 95.995331 42.97886 95.995331 95.995331V233.656877l82.465177 82.465176c37.490869 37.488823 37.490869 98.269118 0 135.75794l-82.465177 82.465177V653.90929c0 53.016471-42.974767 95.995331-95.995331 95.995331H666.499793l-86.620823 86.623893c-18.74083 18.7439-43.310412 28.116361-67.87897 28.116361zM326.642408 377.067101l97.238649-72.217789c8.241708-6.121418 19.676132-5.503341 27.209711 1.471514l253.534344 234.697324a21.333888 21.333888 0 0 0 22.825868 3.982707l5.006014-2.125407c7.150864-3.035126 10.486842-11.291161 7.452739-18.442024a14.084787 14.084787 0 0 0-2.275833-3.667529L458.773751 195.979766c-7.674796-8.93858-21.142529-9.962909-30.081109-2.288113a21.473057 21.473057 0 0 0-1.790785 1.728364L288.010553 346.139717c-6.650467 7.216355-6.191003 18.458397 1.025353 25.107841a17.758456 17.758456 0 0 0 4.88424 3.196809l11.410888 5.021363a21.332864 21.332864 0 0 0 21.311374-2.398629z" horiz-adv-x="1024" />
<glyph glyph-name="icon_camera" unicode="&#60315;" d="M618.132202 717.129146l77.356832-106.366539c23.799032-32.727379 62.166875-52.266387 102.634542-52.266387H956.171172v-507.624343H67.828828V558.49622h158.047596c40.467667 0 78.836533 19.539009 102.630448 52.26434l77.360926 106.368586H618.132202M512 146.051633c104.962563 0 190.359512 85.394902 190.359512 190.359512s-85.396949 190.359512-190.359512 190.359512-190.359512-85.394902-190.359512-190.359512 85.396949-190.359512 190.359512-190.359512M618.132202 780.581294H405.867798a63.453171 63.453171 0 0 1-51.315736-26.132171L277.191136 648.080537a63.452147 63.452147 0 0 0-51.315736-26.13217H67.828828c-35.045167 0-63.453171-28.409027-63.453171-63.453171v-507.624342c0-35.045167 28.40698-63.453171 63.453171-63.453171h888.342344c35.042097 0 63.453171 28.40698 63.453171 63.453171V558.49622c0 35.044144-28.411073 63.453171-63.453171 63.45317H798.123576a63.448054 63.448054 0 0 0-51.315736 26.132171l-77.360925 106.368586A63.455217 63.455217 0 0 1 618.132202 780.581294z m-106.132202-571.07649c-70.087265 0-126.906342 56.81703-126.906342 126.906341 0 70.087265 56.819077 126.906342 126.906342 126.906342s126.906342-56.819077 126.906342-126.906342c0-70.090335-56.819077-126.906342-126.906342-126.906341zM210.598462 717.129146H83.692121c-17.525142 0-31.726585-14.205537-31.726586-31.726585 0-17.523095 14.201443-31.726585 31.726586-31.726585h126.906341c17.521049 0 31.726585 14.20349 31.726586 31.726585 0 17.520025-14.205537 31.726585-31.726586 31.726585z" horiz-adv-x="1024" />
<glyph glyph-name="icon_certificate_fil" unicode="&#60316;" d="M512 320.003454c88.361467 0 159.991878 71.631434 159.991878 159.991877s-71.631434 159.991878-159.991878 159.991878-159.991878-71.631434-159.991878-159.991878 71.630411-159.991878 159.991878-159.991877z m0-63.99757c-123.70544 0-223.989447 100.284007-223.989447 223.989447s100.284007 223.989447 223.989447 223.989447 223.989447-100.284007 223.989447-223.989447-100.284007-223.989447-223.989447-223.989447z m0-95.995331c176.722934 0 319.984778 143.261844 319.984778 319.984778S688.722934 799.980109 512 799.980109 192.015222 656.718265 192.015222 479.995331s143.261844-319.984778 319.984778-319.984778z m0-63.996546c-212.066907 0-383.981325 171.914418-383.981325 383.981324S299.933093 863.976656 512 863.976656 895.981325 692.062238 895.981325 479.995331 724.066907 96.014007 512 96.014007z m-58.258868-36.909632l-78.912258-136.679939c-8.836249-15.304568-28.405957-20.547988-43.710524-11.711739a32.004925 32.004925 0 0 0-11.977799 12.180413l-63.128783 113.718995-130.047892-2.187829c-17.669428-0.296759-32.235169 13.785981-32.531927 31.45541a31.998785 31.998785 0 0 0 4.282537 16.537651l76.53307 132.559085c68.160379-83.715657 167.059853-141.40659 279.493576-155.872047z m393.844973 159.622464l78.698386-136.309502c8.836249-15.304568 3.592828-34.874275-11.711739-43.710524a31.998785 31.998785 0 0 0-16.537652-4.282537l-130.047891 2.187829-63.128783-113.718995c-8.577353-15.4509-28.057009-21.022803-43.50791-12.44545a31.996738 31.996738 0 0 0-12.180413 11.9778L569.885362 59.751105c112.108311 15.705704 210.419384 74.441433 277.700743 158.975734z" horiz-adv-x="1024" />
<glyph glyph-name="icon_coinpurse_line" unicode="&#60317;" d="M703.990662 352.001215c-35.344996 0-63.996546-28.652574-63.996546-63.996546s28.652574-63.996546 63.996546-63.996547h127.994116c35.344996 0 63.996546 28.652574 63.996547 63.996547s-28.652574 63.996546-63.996547 63.996546H703.990662z m0 63.99757h127.994116c70.688969 0 127.994116-57.305147 127.994116-127.994116s-57.305147-127.994116-127.994116-127.994116H703.990662c-70.688969 0-127.994116 57.305147-127.994116 127.994116s57.305147 127.994116 127.994116 127.994116zM339.429643 639.988232h396.559804V740.198561c0 3.774977-0.668219 7.520277-1.972934 11.06194-6.109138 16.582677-24.505114 25.073048-41.087791 18.962888L339.429643 639.988232z m-185.66356-0.200568L670.803819 830.275089c49.748031 18.328437 104.934934-7.142677 123.263371-56.890708a95.990215 95.990215 0 0 0 5.918803-33.18582v-100.211352h31.998785c53.016471 0 95.995331-42.97886 95.995331-95.995331v-63.996547c0-17.672498-14.326287-31.998785-31.998784-31.998785s-31.998785 14.326287-31.998785 31.998785v63.996547c0 17.672498-14.326287 31.998785-31.998785 31.998784H160.016437c-17.672498 0-31.998785-14.326287-31.998785-31.998784v-511.975441c0-17.672498 14.326287-31.998785 31.998785-31.998785h671.967318c17.672498 0 31.998785 14.326287 31.998785 31.998785v63.996546c0 17.672498 14.326287 31.998785 31.998785 31.998785s31.998785-14.326287 31.998784-31.998785v-63.996546c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V543.992901c0 50.916647 39.641859 92.574419 89.744977 95.794763z" horiz-adv-x="1024" />
<glyph glyph-name="icon_compile" unicode="&#60318;" d="M256.011768 224.008122h159.991878c17.672498 0 31.998785-14.326287 31.998784-31.998784s-14.326287-31.998785-31.998784-31.998785H256.011768c-17.672498 0-31.998785 14.326287-31.998785 31.998785 0.001023 17.672498 14.32731 31.998785 31.998785 31.998784zM950.545034 777.379369L679.029154 505.863489c-12.496615-12.496615-32.756031-12.496615-45.252646 0-12.495592 12.495592-12.495592 32.756031 0 45.252646L905.292388 822.632015c12.496615 12.496615 32.756031 12.496615 45.252646 0 12.496615-12.496615 12.496615-32.757055 0-45.252646zM256.011768 416.024367h415.98011c17.672498 0 31.998785-14.326287 31.998784-31.998784s-14.326287-31.998785-31.998784-31.998785H256.011768c-17.672498 0-31.998785 14.326287-31.998785 31.998785 0.001023 17.671475 14.32731 31.998785 31.998785 31.998784z m0 191.990663h223.989447c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H256.011768c-17.672498 0-31.998785 14.326287-31.998785 31.998785 0.001023 17.672498 14.32731 31.998785 31.998785 31.998785z m639.969557-160.01746c0 17.672498 14.326287 31.998785 31.998784 31.998784s31.998785-14.326287 31.998785-31.998784v-415.98011c0-53.016471-42.97886-95.995331-95.995331-95.995331H160.016437c-53.016471 0-95.995331 42.97886-95.995331 95.995331V735.983563c0 53.016471 42.97886 95.995331 95.995331 95.995331h415.980109c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998784H160.016437c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-703.966103c0-17.672498 14.326287-31.998785 31.998785-31.998785h703.966103c17.672498 0 31.998785 14.326287 31.998785 31.998785V447.99757z" horiz-adv-x="1024" />
<glyph glyph-name="icon_details" unicode="&#60319;" d="M510.651282 543.992901c-26.508747 0-47.998177 21.48943-47.998177 47.998177s21.48943 47.998177 47.998177 47.998177 47.997154-21.48943 47.997154-47.998177-21.48943-47.998177-47.997154-47.998177z m-31.998784-63.99757h31.998784c17.672498 0 31.998785-14.326287 31.998785-31.998785v-287.985993h47.998177c8.836249 0 15.999392-7.163143 15.999393-15.999393s-7.163143-15.999392-15.999393-15.999392H430.655344c-8.836249 0-15.999392 7.163143-15.999393 15.999392s7.163143 15.999392 15.999393 15.999393h47.998177V447.99757h-31.998785c-8.836249 0-15.999392 7.163143-15.999392 15.999392s7.163143 15.999392 15.999392 15.999392h31.997762z m31.998784-495.976048c220.909295 0 399.980717 179.071422 399.980718 399.980717S731.560578 783.980717 510.651282 783.980717 110.670565 604.909295 110.670565 384s179.071422-399.980717 399.980717-399.980717zM62.672388 384c0 247.406786 200.572108 447.978894 447.978894 447.978894s447.978894-200.572108 447.978895-447.978894-200.573131-447.977871-447.978895-447.977871S62.672388 136.594237 62.672388 384z" horiz-adv-x="1024" />
<glyph glyph-name="icon_cloud_history" unicode="&#60320;" d="M831.968405 467.254146C830.218552 651.315208 680.476109 799.980109 496.000608 799.980109c-185.561229 0-335.984171-150.422941-335.984171-335.98417 0-3.234671 0.047072-6.457062 0.140193-9.667174-85.331457-41.517579-144.132678-129.052215-144.132678-230.320643 0-141.375891 114.611318-255.987209 255.988232-255.987208h479.976656c141.375891 0 255.987209 114.611318 255.987208 255.987208 0 113.447818-73.79368 209.658044-176.007643 243.246024z m-79.980589-435.236686H272.01116c-106.033965 0-191.990662 85.956697-191.990662 191.990662 0 74.262354 42.513256 140.844795 108.135836 172.772972 22.607904 10.999518 36.678364 34.224476 35.967166 59.356876a291.031353 291.031353 0 0 0-0.109493 7.858992c0 150.21521 121.775484 271.986601 271.986601 271.986601 149.226696 0 270.557042-120.251781 271.971251-269.338284 0.26606-27.420513 17.968234-51.629891 44.013423-60.188824 78.113055-25.666566 131.993197-98.886171 131.993197-182.448333 0.001023-106.033965-85.956697-191.990662-191.990663-191.990662zM678.272931 251.717208L527.999392 338.475154V607.989447c0 17.671475-14.32731 31.998785-31.998784 31.998785s-31.998785-14.32731-31.998785-31.998785v-287.985993c0-1.378393 0.617054-2.554172 0.780782-3.890611 0.281409-2.207271 0.578168-4.320399 1.296529-6.421246 0.679475-1.960655 1.62501-3.667529 2.656503-5.433756 1.01512-1.769296 2.015913-3.437286 3.374864-4.999874 1.461281-1.683339 3.140527-3.000334 4.929266-4.347005 1.062192-0.812505 1.77339-1.929955 2.960425-2.616594L646.273123 196.299037c15.296381-8.835226 34.873252-3.593851 43.708477 11.710716 8.837272 15.302521 3.587712 34.872229-11.708669 43.707455z" horiz-adv-x="1024" />
<glyph glyph-name="icon_community_line" unicode="&#60321;" d="M288.010553 406.929222h447.978894c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H288.010553c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785z m0 191.990662h447.978894c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998784H288.010553c-17.672498 0-31.998785 14.326287-31.998785 31.998784s14.326287 31.998785 31.998785 31.998785z m15.999392-573.115939l184.698583 143.654794a63.99757 63.99757 0 0 0 39.289841 13.481036h351.983563c17.672498 0 31.998785 14.326287 31.998785 31.998785V726.912977c0 17.672498-14.326287 31.998785-31.998785 31.998785H144.017044c-17.672498 0-31.998785-14.326287-31.998784-31.998785v-511.975441c0-17.672498 14.326287-31.998785 31.998784-31.998784h95.995332c35.344996 0 63.996546-28.652574 63.996546-63.996547v-93.13826z m223.989447 93.13826L317.478701-44.795996c-20.924565-16.274662-51.080376-12.504802-67.355037 8.419763a47.994084 47.994084 0 0 0-10.110265 29.468149V118.942205h-95.995331c-53.016471 0-95.995331 42.97886-95.995331 95.995331V726.912977c0 53.016471 42.97886 95.995331 95.995331 95.995331h735.964888c53.016471 0 95.995331-42.97886 95.995331-95.995331v-511.975441c0-53.016471-42.97886-95.995331-95.995331-95.995331H527.999392z" horiz-adv-x="1024" />
<glyph glyph-name="icon_discovery" unicode="&#60322;" d="M768.685103 528.340409c0-17.672498-14.326287-31.998785-31.998784-31.998785s-31.998785 14.326287-31.998785 31.998785c0 70.688969-57.305147 127.994116-127.994116 127.994116-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785c106.034988-0.001023 191.991686-85.958744 191.991685-191.991686zM384.691499-47.632601h256.011768c-29.189809-38.860053-75.662237-63.996546-128.005372-63.996546-52.344159 0-98.816586 25.136493-128.006396 63.996546z m0.01228 95.995331h255.988232c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H384.703779c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785z m-47.806819 180.562379a63.99757 63.99757 0 0 0 27.539216-40.886199l8.735965-43.680849h279.051507l8.735965 43.680849a63.995523 63.995523 0 0 0 27.539217 40.886199c89.354074 58.884109 144.183843 158.439522 144.183843 267.416515 0 176.722934-143.261844 319.984778-319.984778 319.984779S192.713117 673.064558 192.713117 496.341624c0-108.978017 54.828746-208.532407 144.183843-267.416515z m-35.215036-53.43705C197.482747 244.154975 128.715547 362.217904 128.715547 496.341624c0 212.066907 171.914418 383.981325 383.981325 383.981325s383.981325-171.914418 383.981324-383.981325c0-134.12372-68.766177-252.186649-172.965353-320.853565l-8.735965-43.680848c-5.982248-29.913287-32.248472-51.445696-62.754253-51.445696H373.172141c-30.505781 0-56.770981 21.532409-62.754252 51.445696l-8.735965 43.680848z" horiz-adv-x="1024" />
<glyph glyph-name="icon_delete" unicode="&#60323;" d="M800.162002 579.340967c1.850138 17.575284 17.596773 30.322609 35.172058 28.473495 17.575284-1.850138 30.322609-17.596773 28.473494-35.172058l-57.966202-550.673811c-5.143137-48.856731-46.341445-85.946464-95.467306-85.946464H313.625954c-49.126884 0-90.325192 37.089733-95.468329 85.946464L160.192446 572.641381c-1.850138 17.575284 10.898211 33.32192 28.472471 35.172057 17.575284 1.850138 33.32192-10.898211 35.172058-28.473494l57.965179-550.672788c1.714038-16.285918 15.446807-28.64848 31.822776-28.648481h396.74707c16.375969 0 30.108738 12.363585 31.822776 28.648481l57.967226 550.673811z m-192.176904-99.345636c17.672498 0 31.998785-14.326287 31.998785-31.998785v-223.989447c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V447.99757c0 17.671475 14.326287 31.997762 31.998785 31.997761z m-191.990662 0c17.672498 0 31.998785-14.326287 31.998785-31.998785v-223.989447c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V447.99757c0 17.671475 14.326287 31.997762 31.998785 31.997761z m-31.998785 223.989447h255.987209v47.998178c0 8.836249-7.163143 15.999392-15.999393 15.999392H399.995043c-8.836249 0-15.999392-7.163143-15.999392-15.999392v-47.998178z m-63.996546 0V767.981325c0 35.344996 28.652574 63.996546 63.997569 63.996546h255.987209c35.343973 0 63.996546-28.652574 63.996546-63.996546v-63.996547h223.99968c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998784H96.019891c-17.672498 0-31.998785 14.326287-31.998785 31.998784s14.326287 31.998785 31.998785 31.998785h223.979214z" horiz-adv-x="1024" />
<glyph glyph-name="icon_dispose" unicode="&#60324;" d="M617.366769 19.70504l294.142204 294.142204c12.495592 12.496615 32.756031 12.496615 45.252647 0 12.496615-12.495592 12.496615-32.756031 0-45.252647L639.994116-48.17393c-12.496615-12.496615-32.756031-12.496615-45.252647 0L413.729859 132.836657c-12.495592 12.496615-12.495592 32.756031 0 45.252646 12.495592 12.496615 32.756031 12.496615 45.252647 0l158.384263-158.384263z m-399.508973 492.289076H409.848459c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H217.857796c-17.672498 0-31.998785 14.326287-31.998784 31.998785s14.326287 31.998785 31.998784 31.998785z m0-159.992901h319.984779c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998784H217.857796c-17.672498 0-31.998785 14.326287-31.998784 31.998784s14.326287 31.998785 31.998784 31.998785z m0 319.984778h383.981325c17.672498 0 31.998785-14.326287 31.998785-31.998784s-14.326287-31.998785-31.998785-31.998785H217.857796c-17.672498 0-31.998785 14.326287-31.998784 31.998785s14.326287 31.998785 31.998784 31.998784zM409.848459 0.018675c17.672498 0 31.998785-14.326287 31.998785-31.998784s-14.326287-31.998785-31.998785-31.998785H153.860227c-53.016471 0-95.995331 42.97886-95.995331 95.995331V735.983563c0 53.016471 42.97886 95.995331 95.995331 95.995331h639.969556c53.016471 0 95.995331-42.97886 95.995332-95.995331v-223.989447c0-17.672498-14.326287-31.998785-31.998785-31.998785s-31.998785 14.326287-31.998785 31.998785V735.983563c0 17.672498-14.326287 31.998785-31.998785 31.998785H153.860227c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-703.966103c0-17.672498 14.326287-31.998785 31.998785-31.998785H409.848459z" horiz-adv-x="1024" />
<glyph glyph-name="icon_doc" unicode="&#60325;" d="M288.010553 160.010553h383.981325c17.672498 0 31.998785-14.326287 31.998784-31.998785s-14.326287-31.998785-31.998784-31.998785H288.010553c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785z m0 159.992901h191.990662c17.672498 0 31.998785-14.326287 31.998785-31.998785s-14.326287-31.998785-31.998785-31.998785H288.010553c-17.672498 0-31.998785 14.326287-31.998785 31.998785s14.326287 31.998785 31.998785 31.998785zM636.111692 803.862533l231.753272-231.753271a95.994308 95.994308 0 0 0 28.116361-67.87897v-472.212832c0-53.016471-42.97886-95.995331-95.995332-95.995331H224.014007c-53.016471 0-95.995331 42.97886-95.995332 95.995331V735.983563c0 53.016471 42.97886 95.995331 95.995332 95.995331h344.218715c25.459858 0 49.875944-10.114358 67.87897-28.116361z m-28.116361-62.388932v-197.4807h197.4807L607.995331 741.473601z m-53.016471 26.507724H224.014007c-17.672498 0-31.998785-14.326287-31.998785-31.998785v-703.966103c0-17.672498 14.326287-31.998785 31.998785-31.998785h575.971986c17.672498 0 31.998785 14.326287 31.998785 31.998785V490.975407v-10.980076H607.995331c-35.344996 0-63.996546 28.652574-63.996546 63.996547V767.981325h10.980075z" horiz-adv-x="1024" />
<glyph glyph-name="icon_cspace" unicode="&#60326;" d="M687.99127 352.001215c-17.672498 0-31.998785-14.326287-31.998785-31.998785h-0.87902c-7.959276-71.995731-68.997444-127.994116-143.114488-127.994116s-135.154189 55.999408-143.113465 127.99514h-0.87902c0 17.672498-14.326287 31.998785-31.998785 31.998784s-31.998785-14.326287-31.998785-31.998784c0-3.520173 0.568958-6.90834 1.61887-10.075473 12.828167-102.561887 100.333126-181.91519 206.371185-181.91519s193.543018 79.352279 206.371184 181.91519a31.973202 31.973202 0 0 1 1.61887 10.075473c0.001023 17.671475-14.325263 31.997762-31.997761 31.997761zM879.509165 446.020542c0.312108 5.952572 0.472767 11.945053 0.472767 17.975397 0 185.557136-150.426011 335.984171-335.98417 335.98417-163.039283 0-298.954813-116.130927-329.542459-270.182512C99.250468 492.135836 16.023952 383.793292 16.023952 256.005884c0-159.050436 128.935558-287.985993 287.985993-287.985993h447.978895c141.379984 0 255.988232 114.607224 255.988232 255.987208-0.001023 94.945419-51.694359 177.819918-128.467907 222.013443zM751.987816 32.01746H304.009945c-123.509988 0-223.989447 100.479459-223.989447 223.989447 0 97.202832 62.016449 182.78807 154.320715 212.9623a63.996546 63.996546 0 0 1 42.884716 48.364521c25.159006 126.693494 137.352251 218.649835 266.771833 218.649835 149.97371 0 271.986601-122.013915 271.986601-271.986601 0-4.90573-0.128937-9.776667-0.382717-14.619976a63.99757 63.99757 0 0 1 31.979342-58.821686c59.462277-34.224476 96.397491-98.041944 96.397491-166.546154 0-105.863073-86.128613-191.991686-191.990663-191.991686z" horiz-adv-x="1024" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

11944
public/cdn/vue/2.6.10/vue.js Normal file

File diff suppressed because it is too large Load Diff

6
public/cdn/vue/2.6.10/vue.min.js vendored Normal file

File diff suppressed because one or more lines are too long

6
public/cdn/vuex/3.1.1/vuex.min.js vendored Normal file

File diff suppressed because one or more lines are too long

7
public/cdn/xlsx/FileSaver.min.js vendored Normal file
View File

@ -0,0 +1,7 @@
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
var saveAs=saveAs||"undefined"!==typeof navigator&&navigator.msSaveOrOpenBlob&&navigator.msSaveOrOpenBlob.bind(navigator)||function(a){"use strict";if("undefined"===typeof navigator||!/MSIE [1-9]\./.test(navigator.userAgent)){var k=a.document,n=k.createElementNS("http://www.w3.org/1999/xhtml","a"),w="download"in n,x=function(c){var e=k.createEvent("MouseEvents");e.initMouseEvent("click",!0,!1,a,0,0,0,0,0,!1,!1,!1,!1,0,null);c.dispatchEvent(e)},q=a.webkitRequestFileSystem,u=a.requestFileSystem||q||a.mozRequestFileSystem,
y=function(c){(a.setImmediate||a.setTimeout)(function(){throw c;},0)},r=0,s=function(c){var e=function(){"string"===typeof c?(a.URL||a.webkitURL||a).revokeObjectURL(c):c.remove()};a.chrome?e():setTimeout(e,500)},t=function(c,a,d){a=[].concat(a);for(var b=a.length;b--;){var l=c["on"+a[b]];if("function"===typeof l)try{l.call(c,d||c)}catch(f){y(f)}}},m=function(c,e){var d=this,b=c.type,l=!1,f,p,k=function(){t(d,["writestart","progress","write","writeend"])},g=function(){if(l||!f)f=(a.URL||a.webkitURL||
a).createObjectURL(c);p?p.location.href=f:void 0==a.open(f,"_blank")&&"undefined"!==typeof safari&&(a.location.href=f);d.readyState=d.DONE;k();s(f)},h=function(a){return function(){if(d.readyState!==d.DONE)return a.apply(this,arguments)}},m={create:!0,exclusive:!1},v;d.readyState=d.INIT;e||(e="download");if(w)f=(a.URL||a.webkitURL||a).createObjectURL(c),n.href=f,n.download=e,x(n),d.readyState=d.DONE,k(),s(f);else{a.chrome&&b&&"application/octet-stream"!==b&&(v=c.slice||c.webkitSlice,c=v.call(c,0,
c.size,"application/octet-stream"),l=!0);q&&"download"!==e&&(e+=".download");if("application/octet-stream"===b||q)p=a;u?(r+=c.size,u(a.TEMPORARY,r,h(function(a){a.root.getDirectory("saved",m,h(function(a){var b=function(){a.getFile(e,m,h(function(a){a.createWriter(h(function(b){b.onwriteend=function(b){p.location.href=a.toURL();d.readyState=d.DONE;t(d,"writeend",b);s(a)};b.onerror=function(){var a=b.error;a.code!==a.ABORT_ERR&&g()};["writestart","progress","write","abort"].forEach(function(a){b["on"+
a]=d["on"+a]});b.write(c);d.abort=function(){b.abort();d.readyState=d.DONE};d.readyState=d.WRITING}),g)}),g)};a.getFile(e,{create:!1},h(function(a){a.remove();b()}),h(function(a){a.code===a.NOT_FOUND_ERR?b():g()}))}),g)}),g)):g()}},b=m.prototype;b.abort=function(){this.readyState=this.DONE;t(this,"abort")};b.readyState=b.INIT=0;b.WRITING=1;b.DONE=2;b.error=b.onwritestart=b.onprogress=b.onwrite=b.onabort=b.onerror=b.onwriteend=null;return function(a,b){return new m(a,b)}}}("undefined"!==typeof self&&
self||"undefined"!==typeof window&&window||this.content);"undefined"!==typeof module&&null!==module?module.exports=saveAs:"undefined"!==typeof define&&null!==define&&null!=define.amd&&define([],function(){return saveAs});

23
public/cdn/xlsx/xlsx.full.min.js vendored Normal file

File diff suppressed because one or more lines are too long

BIN
public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

508
public/img/bg/403.svg Normal file
View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="227px" height="269px" viewBox="0 0 227 269" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
<title>Group 9</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M0,131.5 C1.52216317e-15,101.788282 2.0023434,70.3064817 6.0070302,37.054599 L6.00703147,37.0545992 C8.23177711,18.5819983 23.2321456,4.27478563 41.7892683,2.9258328 C68.6224469,0.975277594 91.0407969,-6.24317082e-09 109.044318,0 C127.133265,6.27279111e-09 149.842798,0.984554771 177.17292,2.9536643 L177.17292,2.95366535 C195.745345,4.29179116 210.761581,18.6099912 212.981582,37.0977487 C216.993859,70.5112465 218.999998,102.082949 219,131.812857 C219.000002,161.472158 217.003381,192.843579 213.010137,225.927119 L213.010136,225.927119 C210.780269,244.401296 195.772997,258.705423 177.213148,260.046888 C149.974602,262.015629 127.477504,263 109.721856,263 C91.927568,263 69.2911098,262.01134 41.8124813,260.034021 L41.8124814,260.03402 C23.2430488,258.697792 8.22697111,244.385384 6.00173205,225.9014 C2.00057735,192.665746 1.52149174e-15,161.198612 0,131.5 Z" id="path-1"></path>
<filter x="-4.5%" y="-1.4%" width="106.2%" height="104.4%" filterUnits="objectBoundingBox" id="filter-2">
<feMorphology radius="0.81" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
<feOffset dx="-6" dy="4" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<path d="M39.654321,130.992298 C39.654321,110.09311 40.5351746,89.1940983 42.2968819,68.2952631 L42.2968835,68.2952632 C43.2666685,56.7908671 52.197293,47.5570778 63.6629191,46.2039222 C78.8424188,44.4124609 94.0195118,43.5167302 109.194198,43.5167302 C124.360772,43.5167302 139.527341,44.4115034 154.693904,46.2010498 L154.693904,46.2010495 C166.164025,47.5544421 175.09671,56.7944422 176.061501,68.3037662 C177.833381,89.4411461 178.719321,110.482698 178.719321,131.428422 C178.719321,152.307984 177.838969,173.187319 176.078265,194.066429 L176.078265,194.066429 C175.10807,205.571375 166.17633,214.805149 154.709997,216.157282 C139.486491,217.95247 124.287302,218.850064 109.112431,218.850064 C93.9666716,218.850064 78.8209665,217.95591 63.6753158,216.167604 L63.6753156,216.167605 C52.2067135,214.813462 43.275345,205.574785 42.309801,194.06695 C40.539481,172.967394 39.654321,151.94251 39.654321,130.992298 Z" id="path-3"></path>
<filter x="-6.0%" y="-2.3%" width="108.6%" height="105.9%" filterUnits="objectBoundingBox" id="filter-4">
<feMorphology radius="0.81" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
<feOffset dx="-5" dy="3" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<path d="M161.510068,89.8583333 L176.8425,89.8583333 L176.8425,107.391667 L161.510068,107.391667 L161.510068,107.391667 C157.8829,107.391667 154.9425,104.451267 154.9425,100.824099 L154.9425,96.4259009 L154.9425,96.4259009 C154.9425,92.7987335 157.8829,89.8583333 161.510068,89.8583333 Z" id="path-5"></path>
<filter x="-13.7%" y="-5.7%" width="118.3%" height="117.1%" filterUnits="objectBoundingBox" id="filter-6">
<feOffset dx="-2" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<path d="M183.957568,89.8583333 L199.29,89.8583333 L199.29,107.391667 L183.957568,107.391667 L183.957568,107.391667 C180.3304,107.391667 177.39,104.451267 177.39,100.824099 L177.39,96.4259009 L177.39,96.4259009 C177.39,92.7987335 180.3304,89.8583333 183.957568,89.8583333 Z" id="path-7"></path>
<filter x="-2.3%" y="-2.9%" width="109.1%" height="111.4%" filterUnits="objectBoundingBox" id="filter-8">
<feOffset dx="1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<filter x="-55.5%" y="-9.3%" width="177.5%" height="148.0%" filterUnits="objectBoundingBox" id="filter-9">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-55.5%" y="-9.3%" width="177.5%" height="148.0%" filterUnits="objectBoundingBox" id="filter-10">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<path d="M8.86493515,17.2480344 C8.4007802,16.9327578 8.09567896,16.3993146 8.09567896,15.7943295 C8.09567896,14.82567 8.87784133,14.0404164 9.84268751,14.0404164 C10.8075337,14.0404164 11.5896961,14.82567 11.5896961,15.7943295 C11.5896961,16.3993146 11.2845948,16.9327578 10.8204399,17.2480344 L11.7961308,19.984547 C11.9101195,20.3042502 11.743355,20.6558271 11.4236517,20.7698158 C11.3574028,20.7934365 11.2875908,20.8055099 11.2172568,20.8055099 L8.46811816,20.8055099 L8.46811816,20.8055099 C8.1287016,20.8055099 7.85355011,20.5303584 7.85355011,20.1909418 C7.85355011,20.1206079 7.86562345,20.0507959 7.8892442,19.984547 L8.86493515,17.2480344 Z" id="path-11"></path>
<filter x="-12.0%" y="-7.4%" width="124.1%" height="114.8%" filterUnits="objectBoundingBox" id="filter-12">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-13">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-14">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-15">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-16">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-17">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-18">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-19">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-20">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-21">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-22">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-44.4%" y="-20.0%" width="166.7%" height="160.0%" filterUnits="objectBoundingBox" id="filter-23">
<feOffset dx="-2" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-44.4%" y="-20.0%" width="166.7%" height="160.0%" filterUnits="objectBoundingBox" id="filter-24">
<feOffset dx="-2" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-44.4%" y="-20.0%" width="166.7%" height="160.0%" filterUnits="objectBoundingBox" id="filter-25">
<feOffset dx="-2" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-44.4%" y="-20.0%" width="166.7%" height="160.0%" filterUnits="objectBoundingBox" id="filter-26">
<feOffset dx="-2" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-44.4%" y="-20.0%" width="166.7%" height="160.0%" filterUnits="objectBoundingBox" id="filter-27">
<feOffset dx="-2" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-44.4%" y="-20.0%" width="166.7%" height="160.0%" filterUnits="objectBoundingBox" id="filter-28">
<feOffset dx="-2" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-44.4%" y="-20.0%" width="166.7%" height="160.0%" filterUnits="objectBoundingBox" id="filter-29">
<feOffset dx="-2" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<rect id="path-30" x="79.0833333" y="68.7939815" width="60.8333333" height="24.3518519"></rect>
<filter x="-2.5%" y="-2.1%" width="103.3%" height="108.2%" filterUnits="objectBoundingBox" id="filter-31">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<rect id="path-32" x="119.233333" y="71.2346165" width="18.2504951" height="19.5072939"></rect>
<path d="M6.69173423,0.214583333 L15.4541667,0.214583333 L15.4541667,30.8979167 L6.69173423,30.8979167 L6.69173423,30.8979167 C3.06456682,30.8979167 0.124166667,27.9575165 0.124166667,24.3303491 L0.124166667,6.7821509 L0.124166667,6.7821509 C0.124166667,3.15498349 3.06456682,0.214583333 6.69173423,0.214583333 Z" id="path-34"></path>
<filter x="-29.4%" y="-4.9%" width="139.1%" height="116.3%" filterUnits="objectBoundingBox" id="filter-35">
<feOffset dx="-3" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.866666667 0 0 0 0 0.890196078 0 0 0 0 0.909803922 0 0 0 1 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-36">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-37">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<path d="M42.8291667,11.875589 L42.8291667,19.236911 C42.8291667,19.9264853 42.3373793,20.5354959 41.738915,20.595957 L17.6441667,22.6791667 L17.6441667,8.43333333 L41.738915,10.516543 C42.3410444,10.5773757 42.8291667,11.185286 42.8291667,11.875589 Z" id="path-38"></path>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-39">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-40">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<rect id="path-41" x="12.23" y="6.78958333" width="7.1175" height="17.5333333" rx="1.09459459"></rect>
<filter x="-42.1%" y="-5.7%" width="156.2%" height="117.1%" filterUnits="objectBoundingBox" id="filter-42">
<feOffset dx="-2" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<path d="M6.69173423,0.214583333 L15.4541667,0.214583333 L15.4541667,30.8979167 L6.69173423,30.8979167 L6.69173423,30.8979167 C3.06456682,30.8979167 0.124166667,27.9575165 0.124166667,24.3303491 L0.124166667,6.7821509 L0.124166667,6.7821509 C0.124166667,3.15498349 3.06456682,0.214583333 6.69173423,0.214583333 Z" id="path-43"></path>
<filter x="-29.4%" y="-4.9%" width="139.1%" height="116.3%" filterUnits="objectBoundingBox" id="filter-44">
<feOffset dx="-3" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.866666667 0 0 0 0 0.890196078 0 0 0 0 0.909803922 0 0 0 1 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-45">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-46">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<path d="M42.8291667,11.875589 L42.8291667,19.236911 C42.8291667,19.9264853 42.3373793,20.5354959 41.738915,20.595957 L17.6441667,22.6791667 L17.6441667,8.43333333 L41.738915,10.516543 C42.3410444,10.5773757 42.8291667,11.185286 42.8291667,11.875589 Z" id="path-47"></path>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-48">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter x="-50.0%" y="-10.0%" width="160.0%" height="160.0%" filterUnits="objectBoundingBox" id="filter-49">
<feOffset dx="-1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<rect id="path-50" x="12.23" y="6.78958333" width="7.1175" height="17.5333333" rx="1.09459459"></rect>
<filter x="-42.1%" y="-5.7%" width="156.2%" height="117.1%" filterUnits="objectBoundingBox" id="filter-51">
<feOffset dx="-2" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<path d="M24.5975819,18.9156325 C22.7107005,18.6906938 20.1873316,18.3702571 18.5998357,18.0903387 C15.7716385,17.5916513 10.2254435,16.2267099 10.2254435,16.2267099 L9.43228672,20.7249253 C9.43228672,20.7249253 15.1331234,21.2766981 17.950402,21.7734603 C19.3152185,22.0141143 21.3273422,22.4758916 23.0359088,22.887195 C22.0718328,24.3735021 20.9147108,26.1229174 20.0932954,27.2534987 C18.405278,29.5768553 14.7471849,33.9633914 14.7471849,33.9633914 L18.4424572,36.6481639 C18.4424572,36.6481639 21.4374695,31.7661671 23.1189701,29.4517801 C23.9598468,28.2944125 25.3148663,26.6203912 26.4570264,25.2388063 C27.4382453,26.7462318 28.6051214,28.5736505 29.3214044,29.8142891 C30.7573178,32.301364 33.2767374,37.4273633 33.2767374,37.4273633 L37.2324017,35.1435594 C37.2324017,35.1435594 33.990657,30.4217925 32.5602872,27.9443193 C31.8079686,26.6412654 30.764866,24.5861738 29.94691,22.9346427 C31.7349883,22.451283 33.9931664,21.8608332 35.4733174,21.5462174 C38.2823878,20.9491311 43.9360463,20.1370415 43.9360463,20.1370415 L42.9863873,15.669247 C42.9863873,15.669247 37.4939659,17.2932232 34.6957402,17.8880045 C33.1431973,18.2180076 30.6947576,18.5971515 28.8277097,18.8686298 C28.722602,16.9801623 28.6032977,14.4864013 28.6032977,12.8962937 C28.6032977,10.024467 28.984416,4.32551158 28.984416,4.32551158 L24.4168083,4.32551158 C24.4168083,4.32551158 24.8633581,10.0355541 24.8633581,12.8962937 C24.8633581,14.5048733 24.7214143,17.0240015 24.5975819,18.9156325 Z" id="path-52"></path>
<filter x="-14.6%" y="-6.2%" width="120.9%" height="121.4%" filterUnits="objectBoundingBox" id="filter-54">
<feMorphology radius="0.547297297" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
<feOffset dx="-3" dy="3" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.639215686 0 0 0 0 0.694117647 0 0 0 0 0.749019608 0 0 0 0.3 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<ellipse id="path-55" cx="26.802716" cy="22.6705733" rx="4.38" ry="4.38333333"></ellipse>
<filter x="-34.2%" y="-11.4%" width="145.7%" height="134.2%" filterUnits="objectBoundingBox" id="filter-56">
<feOffset dx="-2" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.596078431 0 0 0 0 0.647058824 0 0 0 0 0.701960784 0 0 0 1 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
</defs>
<g id="Ant-Design-Pro-3.0" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="403" transform="translate(-592.000000, -260.000000)">
<g id="Group-9" transform="translate(599.000000, 261.000000)">
<g id="Group-11">
<g id="Rectangle-355">
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
<use stroke="#A3B1BF" stroke-width="1.62" fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-1"></use>
</g>
<g id="Rectangle-355">
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
<use stroke="#A3B1BF" stroke-width="1.62" fill-opacity="0.15" fill="#A3B1BF" fill-rule="evenodd" xlink:href="#path-3"></use>
</g>
<g id="Rectangle-357">
<use fill="black" fill-opacity="1" filter="url(#filter-6)" xlink:href="#path-5"></use>
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-5"></use>
<path stroke="#A3B1BF" stroke-width="1.62" d="M176.0325,106.581667 L176.0325,90.6683333 L161.510068,90.6683333 C158.330251,90.6683333 155.7525,93.2460841 155.7525,96.4259009 L155.7525,100.824099 C155.7525,104.003916 158.330251,106.581667 161.510068,106.581667 L176.0325,106.581667 Z"></path>
</g>
<g id="Rectangle-357" transform="translate(188.340000, 98.625000) scale(-1, 1) translate(-188.340000, -98.625000) ">
<use fill="black" fill-opacity="1" filter="url(#filter-8)" xlink:href="#path-7"></use>
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-7"></use>
<path stroke="#A3B1BF" stroke-width="1.62" d="M198.48,106.581667 L198.48,90.6683333 L183.957568,90.6683333 C180.777751,90.6683333 178.2,93.2460841 178.2,96.4259009 L178.2,100.824099 C178.2,104.003916 180.777751,106.581667 183.957568,106.581667 L198.48,106.581667 Z"></path>
</g>
<path d="M169.537821,109.198898 L179.520726,109.198898 L179.520726,106.316665 C179.657239,106.659699 174.968976,106.316665 172.419859,106.316665 L174.153055,100.243742 C171.605657,100.243742 169.537821,102.294522 169.537821,104.822572 L169.537821,109.198898 Z M181.404585,106.764356 L181.334952,105.82938 C178.493277,106.319657 175.877716,105.82938 172.088276,105.82938 L174.153055,98.0162037 C170.365914,98.0162037 167.291667,101.063519 167.291667,104.822572 L167.291667,106.764356 L166.869647,106.764356 L166.869647,106.764356 C165.758829,106.764356 164.858333,107.664852 164.858333,108.775669 L164.858333,108.775669 L164.858333,115.540394 C164.858333,119.983665 168.460316,123.585648 172.903588,123.585648 L176.279745,123.585648 C180.723017,123.585648 184.325,119.983665 184.325,115.540394 L184.325,108.775669 C184.325,107.664852 183.424504,106.764356 182.313686,106.764356 L181.404585,106.764356 Z" id="Shape" fill="#D4DBE2" fill-rule="nonzero"></path>
<g id="Group-6" filter="url(#filter-9)" transform="translate(160.419753, 95.472603)">
<ellipse id="Oval-191" stroke="#D9D9D9" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#D9D9D9" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6" filter="url(#filter-10)" transform="translate(189.259259, 95.472603)">
<ellipse id="Oval-191" stroke="#D9D9D9" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#D9D9D9" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="lock" transform="translate(166.683333, 96.798611)">
<path d="M2.43333333,9.34812925 L2.43333333,7.750693 C2.43333333,4.33901358 4.64933408,1.45058816 7.70555556,0.476293029 L7.70555556,4.05203095 C6.57838885,4.84048413 5.84,6.15673686 5.84,7.64734194 L5.84,9.34812925 L14.4830461,9.34812925 C14.4830461,8.8280509 14.4830461,8.25372782 14.4830461,7.64734194 C14.4830461,6.44285214 14.0009139,5.352206 13.2211113,4.56188949 L13.2211113,0.864048014 C15.7633754,2.09038625 17.52,4.7131478 17.52,7.750693 C17.52,8.30041562 17.52,8.83504216 17.52,9.3491485 C18.6008993,9.38327886 19.4666667,10.2702555 19.4666667,11.3594429 L19.4666667,18.3317768 C19.4666667,22.7750482 15.8646835,26.3770314 11.4214121,26.3770314 L8.04525456,26.3770314 C3.60198316,26.3770314 5.4414381e-16,22.7750482 0,18.3317768 L0,11.3594429 C-1.36035952e-16,10.248625 0.900495789,9.34812925 2.01131364,9.34812925 L2.01131364,9.34812925 L2.43333333,9.34812925 Z" id="Combined-Shape" stroke="#A3B1BF" stroke-width="1.62" fill="#F0F2F5"></path>
<g id="Oval-1115">
<use fill-opacity="0.3" fill="#A3B1BF" fill-rule="evenodd" xlink:href="#path-11"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-12)" xlink:href="#path-11"></use>
</g>
</g>
<g id="Group-6" filter="url(#filter-13)" transform="translate(64.000000, 75.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy-11" filter="url(#filter-14)" transform="translate(152.000000, 75.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy-2" filter="url(#filter-15)" transform="translate(57.000000, 120.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy-3" filter="url(#filter-16)" transform="translate(57.000000, 137.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy-4" filter="url(#filter-17)" transform="translate(64.000000, 186.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy-5" filter="url(#filter-18)" transform="translate(93.000000, 191.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy-6" filter="url(#filter-19)" transform="translate(122.000000, 191.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy-7" filter="url(#filter-20)" transform="translate(152.000000, 186.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6" filter="url(#filter-21)" transform="translate(160.419753, 95.472603)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F5F5F5" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6" filter="url(#filter-22)" transform="translate(189.259259, 95.472603)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6" filter="url(#filter-23)" transform="translate(25.000000, 38.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.64189189" fill="#F7FAFC" cx="4.38" cy="4.93125" rx="4.38" ry="4.38333333"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="4.0041131 9.13310534 7.56201455 8.23226901 2.34303487 0.44644438 0.446211571 3.63004005 0.788921826 7.80592737"></polygon>
</g>
<g id="Group-6-Copy-8" filter="url(#filter-24)" transform="translate(25.000000, 218.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.64189189" fill="#F7FAFC" cx="4.38" cy="4.93125" rx="4.38" ry="4.38333333"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="4.0041131 9.13310534 7.56201455 8.23226901 2.34303487 0.44644438 0.446211571 3.63004005 0.788921826 7.80592737"></polygon>
</g>
<g id="Group-6-Copy-9" filter="url(#filter-25)" transform="translate(106.000000, 237.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.64189189" fill="#F7FAFC" cx="4.38" cy="4.93125" rx="4.38" ry="4.38333333"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="4.0041131 9.13310534 7.56201455 8.23226901 2.34303487 0.44644438 0.446211571 3.63004005 0.788921826 7.80592737"></polygon>
</g>
<g id="Group-6-Copy-10" filter="url(#filter-26)" transform="translate(185.000000, 219.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.64189189" fill="#F7FAFC" cx="4.38" cy="4.93125" rx="4.38" ry="4.38333333"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="4.0041131 9.13310534 7.56201455 8.23226901 2.34303487 0.44644438 0.446211571 3.63004005 0.788921826 7.80592737"></polygon>
</g>
<g id="Group-6" filter="url(#filter-27)" transform="translate(14.419753, 129.698630)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.64189189" fill="#F7FAFC" cx="4.38" cy="4.93125" rx="4.38" ry="4.38333333"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="4.0041131 9.13310534 7.56201455 8.23226901 2.34303487 0.44644438 0.446211571 3.63004005 0.788921826 7.80592737"></polygon>
</g>
<g id="Group-6" filter="url(#filter-28)" transform="translate(105.444444, 20.715753)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.64189189" fill="#F7FAFC" cx="4.38" cy="4.93125" rx="4.38" ry="4.38333333"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="4.0041131 9.13310534 7.56201455 8.23226901 2.34303487 0.44644438 0.446211571 3.63004005 0.788921826 7.80592737"></polygon>
</g>
<g id="Group-6" filter="url(#filter-29)" transform="translate(185.055000, 37.806250)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.64189189" fill="#F5F5F5" cx="4.38" cy="4.93125" rx="4.38" ry="4.38333333"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="4.0041131 9.13310534 7.56201455 8.23226901 2.34303487 0.44644438 0.446211571 3.63004005 0.788921826 7.80592737"></polygon>
</g>
<g id="Rectangle-373">
<use fill="black" fill-opacity="1" filter="url(#filter-31)" xlink:href="#path-30"></use>
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-30"></use>
<rect stroke="#A3B1BF" stroke-width="2.43" x="80.2983333" y="70.0089815" width="58.4033333" height="21.9218519"></rect>
</g>
<mask id="mask-33" fill="white">
<use xlink:href="#path-32"></use>
</mask>
<use id="Mask" fill-opacity="0.3" fill="#A3B1BF" xlink:href="#path-32"></use>
<rect id="Rectangle-375" fill="#A3B1BF" x="114.366667" y="77.3171296" width="1.825" height="8.11728395" rx="0.9125"></rect>
<rect id="Rectangle-375" fill="#A3B1BF" x="118.016667" y="72.6496914" width="2.43333333" height="16.2345679" rx="1.21666667"></rect>
<g id="Group-4" transform="translate(25.000000, 88.000000)">
<g id="Rectangle-369">
<use fill="black" fill-opacity="1" filter="url(#filter-35)" xlink:href="#path-34"></use>
<use fill="#EAEFF3" fill-rule="evenodd" xlink:href="#path-34"></use>
<path stroke="#A3B1BF" stroke-width="1.62" d="M14.6441667,30.0879167 L14.6441667,1.02458333 L6.69173423,1.02458333 C3.51191747,1.02458333 0.934166667,3.60233414 0.934166667,6.7821509 L0.934166667,24.3303491 C0.934166667,27.5101659 3.51191747,30.0879167 6.69173423,30.0879167 L14.6441667,30.0879167 Z"></path>
</g>
<g id="Group-6" filter="url(#filter-36)" transform="translate(6.207500, 6.789583)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6" filter="url(#filter-37)" transform="translate(6.543210, 19.181507)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Rectangle-371">
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-38"></use>
<path stroke="#A3B1BF" stroke-width="1.62" d="M18.4541667,9.31638699 L18.4541667,21.7961161 L41.6574976,19.7900592 C41.8219325,19.7734468 42.0191667,19.5280875 42.0191667,19.236911 L42.0191667,11.875589 C42.0191667,11.5822335 41.824213,11.3392839 41.6691435,11.3235325 L18.4541667,9.31638699 Z"></path>
</g>
<g id="Group-6" filter="url(#filter-39)" transform="translate(23.000000, 13.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy" filter="url(#filter-40)" transform="translate(33.000000, 13.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Rectangle-370">
<use fill="black" fill-opacity="1" filter="url(#filter-42)" xlink:href="#path-41"></use>
<use fill="#EAEFF3" fill-rule="evenodd" xlink:href="#path-41"></use>
<rect stroke="#A3B1BF" stroke-width="1.62" x="13.04" y="7.59958333" width="5.4975" height="15.9133333" rx="1.09459459"></rect>
</g>
<path d="M13.59875,15.55625 L17.97875,15.55625" id="Line" stroke="#A3B1BF" stroke-width="2.18918919" stroke-linecap="square"></path>
</g>
<g id="Group-4-Copy" transform="translate(25.000000, 145.000000)">
<g id="Rectangle-369">
<use fill="black" fill-opacity="1" filter="url(#filter-44)" xlink:href="#path-43"></use>
<use fill="#EAEFF3" fill-rule="evenodd" xlink:href="#path-43"></use>
<path stroke="#A3B1BF" stroke-width="1.62" d="M14.6441667,30.0879167 L14.6441667,1.02458333 L6.69173423,1.02458333 C3.51191747,1.02458333 0.934166667,3.60233414 0.934166667,6.7821509 L0.934166667,24.3303491 C0.934166667,27.5101659 3.51191747,30.0879167 6.69173423,30.0879167 L14.6441667,30.0879167 Z"></path>
</g>
<g id="Group-6" filter="url(#filter-45)" transform="translate(6.207500, 6.789583)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6" filter="url(#filter-46)" transform="translate(6.543210, 19.181507)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Rectangle-371">
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-47"></use>
<path stroke="#A3B1BF" stroke-width="1.62" d="M18.4541667,9.31638699 L18.4541667,21.7961161 L41.6574976,19.7900592 C41.8219325,19.7734468 42.0191667,19.5280875 42.0191667,19.236911 L42.0191667,11.875589 C42.0191667,11.5822335 41.824213,11.3392839 41.6691435,11.3235325 L18.4541667,9.31638699 Z"></path>
</g>
<g id="Group-6" filter="url(#filter-48)" transform="translate(23.000000, 13.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Group-6-Copy" filter="url(#filter-49)" transform="translate(33.000000, 13.000000)">
<ellipse id="Oval-191" stroke="#A3B1BF" stroke-width="1.09459459" fill="#F7FAFC" cx="2.19" cy="2.73958333" rx="2.19" ry="2.19166667"></ellipse>
<polygon id="Path-301" fill="#A3B1BF" points="3.78100727 4.39009284 1.17151744 0.497180523 0.223105786 2.08897836 0.101076918 4.39009284"></polygon>
</g>
<g id="Rectangle-370">
<use fill="black" fill-opacity="1" filter="url(#filter-51)" xlink:href="#path-50"></use>
<use fill="#EAEFF3" fill-rule="evenodd" xlink:href="#path-50"></use>
<rect stroke="#A3B1BF" stroke-width="1.62" x="13.04" y="7.59958333" width="5.4975" height="15.9133333" rx="1.09459459"></rect>
</g>
<path d="M13.59875,15.55625 L17.97875,15.55625" id="Line" stroke="#A3B1BF" stroke-width="2.18918919" stroke-linecap="square"></path>
</g>
</g>
<g id="Group-17" transform="translate(135.185185, 131.500000)">
<path d="M22.4835494,46.23099 C10.0861375,46.23099 0.0360493827,36.1732534 0.0360493827,23.7664066 C0.0360493827,11.3595599 10.0861375,1.30182331 22.4835494,1.30182331 C34.8809613,1.30182331 44.9310494,11.3595599 44.9310494,23.7664066 C44.9310494,36.1732534 34.8809613,46.23099 22.4835494,46.23099 Z M22.4835494,39.65599 C31.2524505,39.65599 38.3610494,32.5419812 38.3610494,23.7664066 C38.3610494,14.9908321 31.2524505,7.87682331 22.4835494,7.87682331 C13.7146483,7.87682331 6.60604938,14.9908321 6.60604938,23.7664066 C6.60604938,32.5419812 13.7146483,39.65599 22.4835494,39.65599 Z" id="Oval-190" fill-opacity="0.3" fill="#A3B1BF"></path>
<mask id="mask-53" fill="white">
<use xlink:href="#path-52"></use>
</mask>
<g id="Mask">
<use fill="black" fill-opacity="1" filter="url(#filter-54)" xlink:href="#path-52"></use>
<use stroke="#A3B1BF" stroke-width="1.09459459" fill="#A3B1BF" fill-rule="evenodd" xlink:href="#path-52"></use>
</g>
<g id="Group-7" transform="translate(0.360494, 0.078598)" fill="#98A5B3">
<path d="M20.5636489,0.927088888 C22.1113303,0.589405992 23.7186545,0.411496914 25.3675,0.411496914 C37.7649119,0.411496914 47.815,10.4692335 47.815,22.8760802 C47.815,33.7386653 40.1110508,42.8005273 29.8728116,44.8880725 L27.4696515,38.6276265 C35.2448963,37.5983622 41.245,30.9384541 41.245,22.8760802 C41.245,14.1005057 34.1364011,6.98649691 25.3675,6.98649691 C22.0362626,6.98649691 18.9446369,8.01317718 16.3913275,9.76760576 L15.30877,6.94744709 L20.5636489,0.927088888 Z" id="Oval-190"></path>
</g>
<path d="M26.802716,45.1351566 C14.4053041,45.1351566 4.35521605,35.0774201 4.35521605,22.6705733 C4.35521605,10.2637265 14.4053041,0.20598998 26.802716,0.20598998 C39.200128,0.20598998 49.250216,10.2637265 49.250216,22.6705733 C49.250216,35.0774201 39.200128,45.1351566 26.802716,45.1351566 Z M26.802716,38.5601566 C35.5716172,38.5601566 42.680216,31.4461479 42.680216,22.6705733 C42.680216,13.8949988 35.5716172,6.78098998 26.802716,6.78098998 C18.0338149,6.78098998 10.925216,13.8949988 10.925216,22.6705733 C10.925216,31.4461479 18.0338149,38.5601566 26.802716,38.5601566 Z" id="Oval-190" fill="#A3B1BF"></path>
<path d="M37.5685802,6.47400902 C37.5685802,6.47400902 40.3560433,8.0639828 43.0005786,12.4958138 C45.6451139,16.9276447 45.9870813,21.4863845 45.9870813,21.4863845" id="Line" stroke="#F7FAFC" stroke-width="1.62" stroke-linecap="round"></path>
<g id="Oval-199">
<use fill="black" fill-opacity="1" filter="url(#filter-56)" xlink:href="#path-55"></use>
<use fill="#A3B1BF" fill-rule="evenodd" xlink:href="#path-55"></use>
</g>
<path d="M27.0403924,24.1861178 C28.3842853,24.1861178 29.4737257,23.0958483 29.4737257,21.7509326 C29.4737257,20.406017 28.3842853,19.3157475 27.0403924,19.3157475 C27.0403924,19.3157475 27.6699621,20.406017 27.6699621,21.7509326 C27.6699621,23.0958483 27.0403924,24.1861178 27.0403924,24.1861178 Z" id="Oval-199" fill="#F7FAFC" transform="translate(28.257059, 21.750933) rotate(-43.000000) translate(-28.257059, -21.750933) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 54 KiB

314
public/img/bg/404.svg Normal file
View File

@ -0,0 +1,314 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="423px" height="341px" viewBox="0 0 423 341" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
<title>Group 4</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Ant-Design-Pro-3.0" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="404" transform="translate(-484.000000, -221.000000)">
<g id="Group-4" transform="translate(464.000000, 222.000000)">
<g id="Group-5" transform="translate(75.417348, 0.163879)" stroke="#A3B1BF" stroke-width="1.62" opacity="0.6" stroke-linejoin="round" stroke-dasharray="12.15">
<path d="M169.575185,288.890375 C103.647066,288.890375 50.2010204,235.455806 50.2010204,169.540425 C50.2010204,103.625045 103.647066,50.1904762 169.575185,50.1904762 C235.50394,50.1904762 288.94935,103.625045 288.94935,169.540425 C288.94935,235.455806 235.50394,288.890375 169.575185,288.890375 Z" id="Stroke-1"></path>
<path d="M169.405699,338.555288 C76.0274364,338.555288 0.329411882,262.872619 0.329411882,169.513299 C0.329411882,76.1539786 76.0274364,0.471309613 169.405699,0.471309613 C262.783961,0.471309613 338.481985,76.1539786 338.481985,169.513299 C338.481985,262.872619 262.783961,338.555288 169.405699,338.555288 Z" id="Stroke-3"></path>
</g>
<polygon id="Fill-6" fill="#F5F5F5" transform="translate(106.914750, 199.432805) rotate(22.000000) translate(-106.914750, -199.432805) " points="97.7112298 198.803016 116.11827 190.231152 107.544667 208.634458"></polygon>
<polygon id="Stroke-7" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(106.914750, 199.432805) rotate(22.000000) translate(-106.914750, -199.432805) " points="97.7112298 198.803016 116.11827 190.231152 107.544667 208.634458"></polygon>
<polygon id="Fill-8" transform="translate(58.996118, 219.767028) rotate(22.000000) translate(-58.996118, -219.767028) " points="38.8543444 215.183828 54.4119879 199.629341 79.1378915 224.350228 63.580248 239.904716"></polygon>
<polygon id="Stroke-9" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(58.996118, 219.767028) rotate(22.000000) translate(-58.996118, -219.767028) " points="38.8543444 215.183828 54.4119879 199.629341 79.1378915 224.350228 63.580248 239.904716"></polygon>
<polygon id="Fill-10" fill="#F5F5F5" transform="translate(71.226096, 214.577614) rotate(22.000000) translate(-71.226096, -214.577614) " points="51.4642422 198.657893 55.3028278 194.820086 90.9879502 230.497335 87.1487294 234.335141"></polygon>
<polygon id="Stroke-11" stroke="#A3B1BF" stroke-width="1.62" fill="#F0F2F5" stroke-linejoin="round" transform="translate(71.226096, 214.577614) rotate(22.000000) translate(-71.226096, -214.577614) " points="51.4642422 198.657893 55.3028278 194.820086 90.9879502 230.497335 87.1487294 234.335141"></polygon>
<polygon id="Fill-12" transform="translate(84.698338, 273.903349) rotate(22.000000) translate(-84.698338, -273.903349) " points="56.0769883 259.690379 70.4821667 245.288122 113.319688 288.116319 98.9145099 302.518575"></polygon>
<polygon id="Stroke-13" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(84.698338, 273.903349) rotate(22.000000) translate(-84.698338, -273.903349) " points="56.0769883 259.690379 70.4821667 245.288122 113.319688 288.116319 98.9145099 302.518575"></polygon>
<polygon id="Fill-14" transform="translate(75.456149, 212.782520) rotate(22.000000) translate(-75.456149, -212.782520) " points="63.8911557 203.879723 66.5512281 201.22019 87.0211429 221.685318 84.3604352 224.34485"></polygon>
<polygon id="Stroke-15" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(75.456149, 212.782520) rotate(22.000000) translate(-75.456149, -212.782520) " points="63.8911557 203.879723 66.5512281 201.22019 87.0211429 221.685318 84.3604352 224.34485"></polygon>
<polygon id="Fill-16" fill="#F5F5F5" transform="translate(78.176142, 202.618192) rotate(22.000000) translate(-78.176142, -202.618192) " points="74.4026766 205.006817 80.5652518 198.845492 81.9496076 200.229567 75.7870324 206.390892"></polygon>
<polygon id="Stroke-17" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(78.176142, 202.618192) rotate(22.000000) translate(-78.176142, -202.618192) " points="74.4026766 205.006817 80.5652518 198.845492 81.9496076 200.229567 75.7870324 206.390892"></polygon>
<polygon id="Fill-18" fill="#F5F5F5" transform="translate(84.676979, 217.928886) rotate(22.000000) translate(-84.676979, -217.928886) " points="80.9035138 220.317511 87.066089 214.156186 88.4504448 215.540261 82.2878696 221.701586"></polygon>
<polygon id="Stroke-19" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(84.676979, 217.928886) rotate(22.000000) translate(-84.676979, -217.928886) " points="80.9035138 220.317511 87.066089 214.156186 88.4504448 215.540261 82.2878696 221.701586"></polygon>
<polygon id="Fill-20" transform="translate(70.238421, 242.404581) rotate(22.000000) translate(-70.238421, -242.404581) " points="67.8493111 238.631881 74.0118863 244.793206 72.6275305 246.177281 66.4649553 240.015956"></polygon>
<polygon id="Stroke-21" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(70.238421, 242.404581) rotate(22.000000) translate(-70.238421, -242.404581) " points="67.8493111 238.631881 74.0118863 244.793206 72.6275305 246.177281 66.4649553 240.015956"></polygon>
<polygon id="Fill-22" transform="translate(48.081755, 224.398789) rotate(22.000000) translate(-48.081755, -224.398789) " points="35.1127107 220.725179 36.3242602 211.432376 61.0507992 236.153899 51.756111 237.365203"></polygon>
<polygon id="Stroke-23" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(48.081755, 224.398789) rotate(22.000000) translate(-48.081755, -224.398789) " points="35.1127107 220.725179 36.3242602 211.432376 61.0507992 236.153899 51.756111 237.365203"></polygon>
<polygon id="Fill-24" transform="translate(38.612968, 228.416820) rotate(22.000000) translate(-38.612968, -228.416820) " points="32.9179858 217.470622 26.2496982 216.056058 50.9762371 240.777581 49.5613861 234.110647"></polygon>
<polygon id="Stroke-25" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(38.612968, 228.416820) rotate(22.000000) translate(-38.612968, -228.416820) " points="32.9179858 217.470622 26.2496982 216.056058 50.9762371 240.777581 49.5613861 234.110647"></polygon>
<polygon id="Fill-26" transform="translate(31.086342, 221.523909) rotate(22.000000) translate(-31.086342, -221.523909) " points="32.6469986 217.297684 26.8592604 218.37941 34.2314793 225.750133 35.3134242 219.963569"></polygon>
<polygon id="Stroke-27" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(31.086342, 221.523909) rotate(22.000000) translate(-31.086342, -221.523909) " points="32.6469986 217.297684 26.8592604 218.37941 34.2314793 225.750133 35.3134242 219.963569"></polygon>
<polygon id="Fill-28" transform="translate(38.344372, 238.617819) rotate(22.000000) translate(-38.344372, -238.617819) " points="39.9050284 234.391595 34.1172902 235.47332 41.4895091 242.844044 42.571454 237.05748"></polygon>
<polygon id="Stroke-29" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(38.344372, 238.617819) rotate(22.000000) translate(-38.344372, -238.617819) " points="39.9050284 234.391595 34.1172902 235.47332 41.4895091 242.844044 42.571454 237.05748"></polygon>
<polygon id="Fill-30" fill="#F0F2F5" transform="translate(75.352798, 203.766862) rotate(22.000000) translate(-75.352798, -203.766862) " points="71.4417859 201.708217 73.2937351 199.856644 79.2638092 205.824871 77.4118601 207.67708"></polygon>
<polygon id="Stroke-31" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(75.352798, 203.766862) rotate(22.000000) translate(-75.352798, -203.766862) " points="71.4417859 201.708217 73.2937351 199.856644 79.2638092 205.824871 77.4118601 207.67708"></polygon>
<polygon id="Fill-32" fill="#F0F2F5" transform="translate(81.871541, 219.119730) rotate(22.000000) translate(-81.871541, -219.119730) " points="77.9605297 217.061085 79.8124789 215.209512 85.7825531 221.177739 83.9306039 223.029948"></polygon>
<polygon id="Stroke-33" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(81.871541, 219.119730) rotate(22.000000) translate(-81.871541, -219.119730) " points="77.9605297 217.061085 79.8124789 215.209512 85.7825531 221.177739 83.9306039 223.029948"></polygon>
<polygon id="Fill-34" transform="translate(68.034935, 237.215417) rotate(22.000000) translate(-68.034935, -237.215417) " points="65.1594898 237.106164 67.9256601 234.340555 70.9103796 237.324669 68.1442092 240.090278"></polygon>
<polygon id="Stroke-35" stroke="#A3B1BF" stroke-width="1.62" fill="#F5F5F5" stroke-linejoin="round" transform="translate(68.034935, 237.215417) rotate(22.000000) translate(-68.034935, -237.215417) " points="65.1594898 237.106164 67.9256601 234.340555 70.9103796 237.324669 68.1442092 240.090278"></polygon>
<path d="M90.2556147,213.065319 C79.2271463,202.039088 74.6433339,188.153875 78.4889079,179.512775 C79.1248602,178.084237 80.8319571,175.429786 84.5339495,179.131027 C88.2353065,182.832268 120.560237,215.150007 123.931865,218.52095 C127.303492,221.891894 125.245065,224.192545 123.817508,224.827733 C115.174655,228.675068 101.284718,224.092186 90.2556147,213.065319 Z" id="Fill-36" fill="#F5F5F5" transform="translate(101.453924, 201.708917) rotate(22.000000) translate(-101.453924, -201.708917) "></path>
<path d="M90.2556147,213.065319 C79.2271463,202.039088 74.6433339,188.153875 78.4889079,179.512775 C79.1248602,178.084237 80.8319571,175.429786 84.5339495,179.131027 C88.2353065,182.832268 120.560237,215.150007 123.931865,218.52095 C127.303492,221.891894 125.245065,224.192545 123.817508,224.827733 C115.174655,228.675068 101.284718,224.092186 90.2556147,213.065319 Z" id="Stroke-38" stroke="#A3B1BF" stroke-width="1.62" fill="#F0F2F5" stroke-linejoin="round" transform="translate(101.453924, 201.708917) rotate(22.000000) translate(-101.453924, -201.708917) "></path>
<polygon id="Fill-40" fill="#F0F2F5" transform="translate(86.633853, 208.038961) rotate(22.000000) translate(-86.633853, -208.038961) " points="77.9716233 201.230061 79.8235724 199.378488 95.2960835 214.84786 93.4441343 216.699433"></polygon>
<polygon id="Stroke-42" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(86.633853, 208.038961) rotate(22.000000) translate(-86.633853, -208.038961) " points="77.9716233 201.230061 79.8235724 199.378488 95.2960835 214.84786 93.4441343 216.699433"></polygon>
<path d="M121.635514,196.068815 C120.517356,197.186746 118.704797,197.186746 117.586639,196.068815 C116.469116,194.950884 116.469116,193.138692 117.586639,192.020761 C118.704797,190.903465 120.517356,190.903465 121.635514,192.020761 C122.753672,193.138692 122.753672,194.950884 121.635514,196.068815" id="Fill-44" fill="#A3B1BF" transform="translate(119.611315, 194.045026) rotate(22.000000) translate(-119.611315, -194.045026) "></path>
<polygon id="Fill-46" fill-opacity="0.6" fill="#A3B1BF" transform="translate(81.250567, 248.056422) rotate(22.000000) translate(-81.250567, -248.056422) " points="81.2505672 249.672341 79.6343206 248.056422 81.2505672 246.440503 82.8668137 248.056422"></polygon>
<polygon id="Stroke-48" transform="translate(81.250567, 248.056422) rotate(22.000000) translate(-81.250567, -248.056422) " points="81.2505672 249.672341 79.6343206 248.056422 81.2505672 246.440503 82.8668137 248.056422"></polygon>
<polygon id="Fill-50" fill-opacity="0.6" fill="#A3B1BF" transform="translate(82.702196, 251.475282) rotate(22.000000) translate(-82.702196, -251.475282) " points="82.7021965 253.091201 81.0859499 251.475282 82.7021965 249.859363 84.318443 251.475282"></polygon>
<polygon id="Stroke-52" transform="translate(82.702196, 251.475282) rotate(22.000000) translate(-82.702196, -251.475282) " points="82.7021965 253.091201 81.0859499 251.475282 82.7021965 249.859363 84.318443 251.475282"></polygon>
<polygon id="Fill-54" fill-opacity="0.6" fill="#A3B1BF" transform="translate(84.153791, 254.894059) rotate(22.000000) translate(-84.153791, -254.894059) " points="84.1537906 256.509978 82.5375441 254.894059 84.1537906 253.278141 85.7700372 254.894059"></polygon>
<polygon id="Stroke-56" transform="translate(84.153791, 254.894059) rotate(22.000000) translate(-84.153791, -254.894059) " points="84.1537906 256.509978 82.5375441 254.894059 84.1537906 253.278141 85.7700372 254.894059"></polygon>
<polygon id="Fill-58" fill-opacity="0.6" fill="#A3B1BF" transform="translate(85.605385, 258.312837) rotate(22.000000) translate(-85.605385, -258.312837) " points="85.6053848 259.928756 83.9891383 258.312837 85.6053848 256.696918 87.2216313 258.312837"></polygon>
<polygon id="Stroke-60" transform="translate(85.605385, 258.312837) rotate(22.000000) translate(-85.605385, -258.312837) " points="85.6053848 259.928756 83.9891383 258.312837 85.6053848 256.696918 87.2216313 258.312837"></polygon>
<polygon id="Fill-62" fill-opacity="0.6" fill="#A3B1BF" transform="translate(78.094482, 249.395723) rotate(22.000000) translate(-78.094482, -249.395723) " points="78.0944819 251.011642 76.4782353 249.395723 78.0944819 247.779804 79.7107284 249.395723"></polygon>
<polygon id="Stroke-64" transform="translate(78.094482, 249.395723) rotate(22.000000) translate(-78.094482, -249.395723) " points="78.0944819 251.011642 76.4782353 249.395723 78.0944819 247.779804 79.7107284 249.395723"></polygon>
<polygon id="Fill-66" fill-opacity="0.6" fill="#A3B1BF" transform="translate(79.546052, 252.814559) rotate(22.000000) translate(-79.546052, -252.814559) " points="79.5460522 254.430478 77.9298057 252.814559 79.5460522 251.198641 81.1622988 252.814559"></polygon>
<polygon id="Stroke-68" transform="translate(79.546052, 252.814559) rotate(22.000000) translate(-79.546052, -252.814559) " points="79.5460522 254.430478 77.9298057 252.814559 79.5460522 251.198641 81.1622988 252.814559"></polygon>
<polygon id="Fill-70" fill-opacity="0.6" fill="#A3B1BF" transform="translate(80.997705, 256.233360) rotate(22.000000) translate(-80.997705, -256.233360) " points="80.9977053 257.849279 79.3814588 256.23336 80.9977053 254.617442 82.6139518 256.23336"></polygon>
<polygon id="Stroke-72" transform="translate(80.997705, 256.233360) rotate(22.000000) translate(-80.997705, -256.233360) " points="79.3814588 256.23336 80.9977053 254.617442 82.6139518 256.23336 80.9977053 257.849279"></polygon>
<polygon id="Fill-74" fill-opacity="0.6" fill="#A3B1BF" transform="translate(82.449276, 259.652197) rotate(22.000000) translate(-82.449276, -259.652197) " points="82.4492757 261.268115 80.8330292 259.652197 82.4492757 258.036278 84.0655222 259.652197"></polygon>
<polygon id="Stroke-76" transform="translate(82.449276, 259.652197) rotate(22.000000) translate(-82.449276, -259.652197) " points="82.4492757 261.268115 80.8330292 259.652197 82.4492757 258.036278 84.0655222 259.652197"></polygon>
<polygon id="Fill-78" fill-opacity="0.6" fill="#A3B1BF" transform="translate(74.938373, 250.735083) rotate(22.000000) translate(-74.938373, -250.735083) " points="74.9383727 252.351002 73.3221262 250.735083 74.9383727 249.119164 76.5546193 250.735083"></polygon>
<polygon id="Stroke-80" transform="translate(74.938373, 250.735083) rotate(22.000000) translate(-74.938373, -250.735083) " points="74.9383727 252.351002 73.3221262 250.735083 74.9383727 249.119164 76.5546193 250.735083"></polygon>
<polygon id="Fill-82" fill-opacity="0.6" fill="#A3B1BF" transform="translate(76.389967, 254.153860) rotate(22.000000) translate(-76.389967, -254.153860) " points="76.3899669 255.769779 74.7737204 254.15386 76.3899669 252.537942 78.0062134 254.15386"></polygon>
<polygon id="Stroke-84" transform="translate(76.389967, 254.153860) rotate(22.000000) translate(-76.389967, -254.153860) " points="76.3899669 255.769779 74.7737204 254.15386 76.3899669 252.537942 78.0062134 254.15386"></polygon>
<polygon id="Fill-86" fill-opacity="0.6" fill="#A3B1BF" transform="translate(77.841620, 257.572661) rotate(22.000000) translate(-77.841620, -257.572661) " points="77.84162 259.18858 76.2253735 257.572661 77.84162 255.956743 79.4578665 257.572661"></polygon>
<polygon id="Stroke-88" transform="translate(77.841620, 257.572661) rotate(22.000000) translate(-77.841620, -257.572661) " points="77.84162 259.18858 76.2253735 257.572661 77.84162 255.956743 79.4578665 257.572661"></polygon>
<polygon id="Fill-90" fill-opacity="0.6" fill="#A3B1BF" transform="translate(79.293190, 260.991498) rotate(22.000000) translate(-79.293190, -260.991498) " points="79.2931904 262.607416 77.6769438 260.991498 79.2931904 259.375579 80.9094369 260.991498"></polygon>
<polygon id="Stroke-92" transform="translate(79.293190, 260.991498) rotate(22.000000) translate(-79.293190, -260.991498) " points="79.2931904 262.607416 77.6769438 260.991498 79.2931904 259.375579 80.9094369 260.991498"></polygon>
<polygon id="Fill-94" fill-opacity="0.6" fill="#A3B1BF" transform="translate(71.782287, 252.074384) rotate(22.000000) translate(-71.782287, -252.074384) " points="71.7822874 253.690302 70.1660409 252.074384 71.7822874 250.458465 73.3985339 252.074384"></polygon>
<polygon id="Stroke-96" transform="translate(71.782287, 252.074384) rotate(22.000000) translate(-71.782287, -252.074384) " points="71.7822874 253.690302 70.1660409 252.074384 71.7822874 250.458465 73.3985339 252.074384"></polygon>
<polygon id="Fill-98" fill-opacity="0.6" fill="#A3B1BF" transform="translate(73.233882, 255.493161) rotate(22.000000) translate(-73.233882, -255.493161) " points="73.2338816 257.10908 71.6176351 255.493161 73.2338816 253.877242 74.8501281 255.493161"></polygon>
<polygon id="Stroke-100" transform="translate(73.233882, 255.493161) rotate(22.000000) translate(-73.233882, -255.493161) " points="73.2338816 257.10908 71.6176351 255.493161 73.2338816 253.877242 74.8501281 255.493161"></polygon>
<polygon id="Fill-102" fill-opacity="0.6" fill="#A3B1BF" transform="translate(74.685535, 258.911962) rotate(22.000000) translate(-74.685535, -258.911962) " points="74.6855347 260.527881 73.0692881 258.911962 74.6855347 257.296044 76.3017812 258.911962"></polygon>
<polygon id="Stroke-104" transform="translate(74.685535, 258.911962) rotate(22.000000) translate(-74.685535, -258.911962) " points="74.6855347 260.527881 73.0692881 258.911962 74.6855347 257.296044 76.3017812 258.911962"></polygon>
<polygon id="Fill-106" fill-opacity="0.6" fill="#A3B1BF" transform="translate(76.137105, 262.330799) rotate(22.000000) translate(-76.137105, -262.330799) " points="76.137105 263.946717 74.5208585 262.330799 76.137105 260.71488 77.7533516 262.330799"></polygon>
<polygon id="Stroke-108" transform="translate(76.137105, 262.330799) rotate(22.000000) translate(-76.137105, -262.330799) " points="76.137105 263.946717 74.5208585 262.330799 76.137105 260.71488 77.7533516 262.330799"></polygon>
<polygon id="Fill-110" fill-opacity="0.6" fill="#A3B1BF" transform="translate(68.626202, 253.413685) rotate(22.000000) translate(-68.626202, -253.413685) " points="68.6262021 255.029603 67.0099556 253.413685 68.6262021 251.797766 70.2424486 253.413685"></polygon>
<polygon id="Stroke-112" transform="translate(68.626202, 253.413685) rotate(22.000000) translate(-68.626202, -253.413685) " points="68.6262021 255.029603 67.0099556 253.413685 68.6262021 251.797766 70.2424486 253.413685"></polygon>
<polygon id="Fill-114" fill-opacity="0.6" fill="#A3B1BF" transform="translate(70.077796, 256.832462) rotate(22.000000) translate(-70.077796, -256.832462) " points="70.0777963 258.448381 68.4615497 256.832462 70.0777963 255.216543 71.6940428 256.832462"></polygon>
<polygon id="Stroke-116" transform="translate(70.077796, 256.832462) rotate(22.000000) translate(-70.077796, -256.832462) " points="70.0777963 258.448381 68.4615497 256.832462 70.0777963 255.216543 71.6940428 256.832462"></polygon>
<polygon id="Fill-118" fill-opacity="0.6" fill="#A3B1BF" transform="translate(71.529426, 260.251322) rotate(22.000000) translate(-71.529426, -260.251322) " points="71.5294256 261.867241 69.913179 260.251322 71.5294256 258.635403 73.1456721 260.251322"></polygon>
<polygon id="Stroke-120" transform="translate(71.529426, 260.251322) rotate(22.000000) translate(-71.529426, -260.251322) " points="71.5294256 261.867241 69.913179 260.251322 71.5294256 258.635403 73.1456721 260.251322"></polygon>
<polygon id="Fill-122" fill-opacity="0.6" fill="#A3B1BF" transform="translate(72.981020, 263.670099) rotate(22.000000) translate(-72.981020, -263.670099) " points="72.9810197 265.286018 71.3647732 263.670099 72.9810197 262.054181 74.5972663 263.670099"></polygon>
<polygon id="Stroke-124" transform="translate(72.981020, 263.670099) rotate(22.000000) translate(-72.981020, -263.670099) " points="72.9810197 265.286018 71.3647732 263.670099 72.9810197 262.054181 74.5972663 263.670099"></polygon>
<polygon id="Fill-126" fill-opacity="0.6" fill="#A3B1BF" transform="translate(88.852907, 265.961362) rotate(22.000000) translate(-88.852907, -265.961362) " points="88.8529067 267.577281 87.2366602 265.961362 88.8529067 264.345443 90.4691533 265.961362"></polygon>
<polygon id="Stroke-128" transform="translate(88.852907, 265.961362) rotate(22.000000) translate(-88.852907, -265.961362) " points="88.8529067 267.577281 87.2366602 265.961362 88.8529067 264.345443 90.4691533 265.961362"></polygon>
<polygon id="Fill-130" fill-opacity="0.6" fill="#A3B1BF" transform="translate(90.304501, 269.380139) rotate(22.000000) translate(-90.304501, -269.380139) " points="90.3045009 270.996058 88.6882544 269.380139 90.3045009 267.764221 91.9207474 269.380139"></polygon>
<polygon id="Stroke-132" transform="translate(90.304501, 269.380139) rotate(22.000000) translate(-90.304501, -269.380139) " points="90.3045009 270.996058 88.6882544 269.380139 90.3045009 267.764221 91.9207474 269.380139"></polygon>
<polygon id="Fill-134" fill-opacity="0.6" fill="#A3B1BF" transform="translate(91.756130, 272.798999) rotate(22.000000) translate(-91.756130, -272.798999) " points="91.7561302 274.414918 90.1398837 272.798999 91.7561302 271.183081 93.3723767 272.798999"></polygon>
<polygon id="Stroke-136" transform="translate(91.756130, 272.798999) rotate(22.000000) translate(-91.756130, -272.798999) " points="91.7561302 274.414918 90.1398837 272.798999 91.7561302 271.183081 93.3723767 272.798999"></polygon>
<polygon id="Fill-138" fill-opacity="0.6" fill="#A3B1BF" transform="translate(93.207724, 276.217777) rotate(22.000000) translate(-93.207724, -276.217777) " points="93.2077244 277.833695 91.5914778 276.217777 93.2077244 274.601858 94.8239709 276.217777"></polygon>
<polygon id="Stroke-140" transform="translate(93.207724, 276.217777) rotate(22.000000) translate(-93.207724, -276.217777) " points="93.2077244 277.833695 91.5914778 276.217777 93.2077244 274.601858 94.8239709 276.217777"></polygon>
<polygon id="Fill-142" fill-opacity="0.6" fill="#A3B1BF" transform="translate(85.696821, 267.300663) rotate(22.000000) translate(-85.696821, -267.300663) " points="85.6968214 268.916582 84.0805749 267.300663 85.6968214 265.684744 87.313068 267.300663"></polygon>
<polygon id="Stroke-144" transform="translate(85.696821, 267.300663) rotate(22.000000) translate(-85.696821, -267.300663) " points="85.6968214 268.916582 84.0805749 267.300663 85.6968214 265.684744 87.313068 267.300663"></polygon>
<polygon id="Fill-146" fill-opacity="0.6" fill="#A3B1BF" transform="translate(87.148416, 270.719440) rotate(22.000000) translate(-87.148416, -270.719440) " points="87.1484156 272.335359 85.5321691 270.71944 87.1484156 269.103521 88.7646621 270.71944"></polygon>
<polygon id="Stroke-148" transform="translate(87.148416, 270.719440) rotate(22.000000) translate(-87.148416, -270.719440) " points="87.1484156 272.335359 85.5321691 270.71944 87.1484156 269.103521 88.7646621 270.71944"></polygon>
<polygon id="Fill-150" fill-opacity="0.6" fill="#A3B1BF" transform="translate(88.599986, 274.138276) rotate(22.000000) translate(-88.599986, -274.138276) " points="88.599986 275.754195 86.9837394 274.138276 88.599986 272.522358 90.2162325 274.138276"></polygon>
<polygon id="Stroke-152" transform="translate(88.599986, 274.138276) rotate(22.000000) translate(-88.599986, -274.138276) " points="88.599986 275.754195 86.9837394 274.138276 88.599986 272.522358 90.2162325 274.138276"></polygon>
<polygon id="Fill-154" fill-opacity="0.6" fill="#A3B1BF" transform="translate(90.051639, 277.557078) rotate(22.000000) translate(-90.051639, -277.557078) " points="90.0516391 279.172996 88.4353925 277.557078 90.0516391 275.941159 91.6678856 277.557078"></polygon>
<polygon id="Stroke-156" transform="translate(90.051639, 277.557078) rotate(22.000000) translate(-90.051639, -277.557078) " points="90.0516391 279.172996 88.4353925 277.557078 90.0516391 275.941159 91.6678856 277.557078"></polygon>
<polygon id="Fill-158" fill-opacity="0.6" fill="#A3B1BF" transform="translate(82.540736, 268.639964) rotate(22.000000) translate(-82.540736, -268.639964) " points="82.5407361 270.255882 80.9244896 268.639964 82.5407361 267.024045 84.1569826 268.639964"></polygon>
<polygon id="Stroke-160" transform="translate(82.540736, 268.639964) rotate(22.000000) translate(-82.540736, -268.639964) " points="82.5407361 270.255882 80.9244896 268.639964 82.5407361 267.024045 84.1569826 268.639964"></polygon>
<polygon id="Fill-162" fill-opacity="0.6" fill="#A3B1BF" transform="translate(83.992306, 272.058800) rotate(22.000000) translate(-83.992306, -272.058800) " points="83.9923065 273.674719 82.3760599 272.0588 83.9923065 270.442881 85.608553 272.0588"></polygon>
<polygon id="Stroke-164" transform="translate(83.992306, 272.058800) rotate(22.000000) translate(-83.992306, -272.058800) " points="83.9923065 273.674719 82.3760599 272.0588 83.9923065 270.442881 85.608553 272.0588"></polygon>
<polygon id="Fill-166" fill-opacity="0.6" fill="#A3B1BF" transform="translate(85.443901, 275.477577) rotate(22.000000) translate(-85.443901, -275.477577) " points="85.4439007 277.093496 83.8276541 275.477577 85.4439007 273.861659 87.0601472 275.477577"></polygon>
<polygon id="Stroke-168" transform="translate(85.443901, 275.477577) rotate(22.000000) translate(-85.443901, -275.477577) " points="85.4439007 277.093496 83.8276541 275.477577 85.4439007 273.861659 87.0601472 275.477577"></polygon>
<polygon id="Fill-170" fill-opacity="0.6" fill="#A3B1BF" transform="translate(86.895554, 278.896378) rotate(22.000000) translate(-86.895554, -278.896378) " points="86.8955537 280.512297 85.2793072 278.896378 86.8955537 277.28046 88.5118003 278.896378"></polygon>
<polygon id="Stroke-172" transform="translate(86.895554, 278.896378) rotate(22.000000) translate(-86.895554, -278.896378) " points="86.8955537 280.512297 85.2793072 278.896378 86.8955537 277.28046 88.5118003 278.896378"></polygon>
<polygon id="Fill-174" fill-opacity="0.6" fill="#A3B1BF" transform="translate(79.384651, 269.979265) rotate(22.000000) translate(-79.384651, -269.979265) " points="79.3846508 271.595183 77.7684043 269.979265 79.3846508 268.363346 81.0008973 269.979265"></polygon>
<polygon id="Stroke-176" transform="translate(79.384651, 269.979265) rotate(22.000000) translate(-79.384651, -269.979265) " points="79.3846508 271.595183 77.7684043 269.979265 79.3846508 268.363346 81.0008973 269.979265"></polygon>
<polygon id="Fill-178" fill-opacity="0.6" fill="#A3B1BF" transform="translate(80.836221, 273.398101) rotate(22.000000) translate(-80.836221, -273.398101) " points="80.8362212 275.01402 79.2199746 273.398101 80.8362212 271.782182 82.4524677 273.398101"></polygon>
<polygon id="Stroke-180" transform="translate(80.836221, 273.398101) rotate(22.000000) translate(-80.836221, -273.398101) " points="80.8362212 275.01402 79.2199746 273.398101 80.8362212 271.782182 82.4524677 273.398101"></polygon>
<polygon id="Fill-182" fill-opacity="0.6" fill="#A3B1BF" transform="translate(82.287815, 276.816878) rotate(22.000000) translate(-82.287815, -276.816878) " points="82.2878153 278.432797 80.6715688 276.816878 82.2878153 275.20096 83.9040619 276.816878"></polygon>
<polygon id="Stroke-184" transform="translate(82.287815, 276.816878) rotate(22.000000) translate(-82.287815, -276.816878) " points="82.2878153 278.432797 80.6715688 276.816878 82.2878153 275.20096 83.9040619 276.816878"></polygon>
<polygon id="Fill-186" fill-opacity="0.6" fill="#A3B1BF" transform="translate(83.739445, 280.235738) rotate(22.000000) translate(-83.739445, -280.235738) " points="83.7394446 281.851657 82.1231981 280.235738 83.7394446 278.61982 85.3556912 280.235738"></polygon>
<polygon id="Stroke-188" transform="translate(83.739445, 280.235738) rotate(22.000000) translate(-83.739445, -280.235738) " points="83.7394446 281.851657 82.1231981 280.235738 83.7394446 278.61982 85.3556912 280.235738"></polygon>
<polygon id="Fill-190" fill-opacity="0.6" fill="#A3B1BF" transform="translate(76.228483, 271.318601) rotate(22.000000) translate(-76.228483, -271.318601) " points="76.2284828 272.934519 74.6122362 271.318601 76.2284828 269.702682 77.8447293 271.318601"></polygon>
<polygon id="Stroke-192" transform="translate(76.228483, 271.318601) rotate(22.000000) translate(-76.228483, -271.318601) " points="76.2284828 272.934519 74.6122362 271.318601 76.2284828 269.702682 77.8447293 271.318601"></polygon>
<polygon id="Fill-194" fill-opacity="0.6" fill="#A3B1BF" transform="translate(77.680136, 274.737402) rotate(22.000000) translate(-77.680136, -274.737402) " points="77.6801358 276.353321 76.0638893 274.737402 77.6801358 273.121483 79.2963824 274.737402"></polygon>
<polygon id="Stroke-196" transform="translate(77.680136, 274.737402) rotate(22.000000) translate(-77.680136, -274.737402) " points="77.6801358 276.353321 76.0638893 274.737402 77.6801358 273.121483 79.2963824 274.737402"></polygon>
<polygon id="Fill-198" fill-opacity="0.6" fill="#A3B1BF" transform="translate(79.131730, 278.156179) rotate(22.000000) translate(-79.131730, -278.156179) " points="79.13173 279.772098 77.5154835 278.156179 79.13173 276.540261 80.7479765 278.156179"></polygon>
<polygon id="Stroke-200" transform="translate(79.131730, 278.156179) rotate(22.000000) translate(-79.131730, -278.156179) " points="79.13173 279.772098 77.5154835 278.156179 79.13173 276.540261 80.7479765 278.156179"></polygon>
<polygon id="Fill-202" fill-opacity="0.6" fill="#A3B1BF" transform="translate(80.583359, 281.575039) rotate(22.000000) translate(-80.583359, -281.575039) " points="80.5833593 283.190958 78.9671128 281.575039 80.5833593 279.959121 82.1996058 281.575039"></polygon>
<polygon id="Stroke-204" transform="translate(80.583359, 281.575039) rotate(22.000000) translate(-80.583359, -281.575039) " points="80.5833593 283.190958 78.9671128 281.575039 80.5833593 279.959121 82.1996058 281.575039"></polygon>
<polygon id="Fill-206" fill-opacity="0.6" fill="#A3B1BF" transform="translate(96.455246, 283.866302) rotate(22.000000) translate(-96.455246, -283.866302) " points="96.4552463 285.48222 94.8389998 283.866302 96.4552463 282.250383 98.0714929 283.866302"></polygon>
<polygon id="Stroke-208" transform="translate(96.455246, 283.866302) rotate(22.000000) translate(-96.455246, -283.866302) " points="96.4552463 285.48222 94.8389998 283.866302 96.4552463 282.250383 98.0714929 283.866302"></polygon>
<polygon id="Fill-210" fill-opacity="0.6" fill="#A3B1BF" transform="translate(97.906840, 287.285079) rotate(22.000000) translate(-97.906840, -287.285079) " points="97.9068405 288.900998 96.290594 287.285079 97.9068405 285.66916 99.523087 287.285079"></polygon>
<polygon id="Stroke-212" transform="translate(97.906840, 287.285079) rotate(22.000000) translate(-97.906840, -287.285079) " points="97.9068405 288.900998 96.290594 287.285079 97.9068405 285.66916 99.523087 287.285079"></polygon>
<polygon id="Fill-214" fill-opacity="0.6" fill="#A3B1BF" transform="translate(99.358435, 290.703856) rotate(22.000000) translate(-99.358435, -290.703856) " points="99.3584347 292.319775 97.7421881 290.703856 99.3584347 289.087938 100.974681 290.703856"></polygon>
<polygon id="Stroke-216" transform="translate(99.358435, 290.703856) rotate(22.000000) translate(-99.358435, -290.703856) " points="99.3584347 292.319775 97.7421881 290.703856 99.3584347 289.087938 100.974681 290.703856"></polygon>
<polygon id="Fill-218" fill-opacity="0.6" fill="#A3B1BF" transform="translate(100.810064, 294.122716) rotate(22.000000) translate(-100.810064, -294.122716) " points="100.810064 295.738635 99.1938174 294.122716 100.810064 292.506798 102.42631 294.122716"></polygon>
<polygon id="Stroke-220" transform="translate(100.810064, 294.122716) rotate(22.000000) translate(-100.810064, -294.122716) " points="100.810064 295.738635 99.1938174 294.122716 100.810064 292.506798 102.42631 294.122716"></polygon>
<polygon id="Fill-222" fill-opacity="0.6" fill="#A3B1BF" transform="translate(93.299102, 285.205579) rotate(22.000000) translate(-93.299102, -285.205579) " points="93.2991021 286.821497 91.6828556 285.205579 93.2991021 283.58966 94.9153486 285.205579"></polygon>
<polygon id="Stroke-224" transform="translate(93.299102, 285.205579) rotate(22.000000) translate(-93.299102, -285.205579) " points="93.2991021 286.821497 91.6828556 285.205579 93.2991021 283.58966 94.9153486 285.205579"></polygon>
<polygon id="Fill-226" fill-opacity="0.6" fill="#A3B1BF" transform="translate(94.750755, 288.624380) rotate(22.000000) translate(-94.750755, -288.624380) " points="94.7507552 290.240299 93.1345086 288.62438 94.7507552 287.008461 96.3670017 288.62438"></polygon>
<polygon id="Stroke-228" transform="translate(94.750755, 288.624380) rotate(22.000000) translate(-94.750755, -288.624380) " points="94.7507552 290.240299 93.1345086 288.62438 94.7507552 287.008461 96.3670017 288.62438"></polygon>
<polygon id="Fill-230" fill-opacity="0.6" fill="#A3B1BF" transform="translate(96.202326, 292.043216) rotate(22.000000) translate(-96.202326, -292.043216) " points="96.2023255 293.659135 94.586079 292.043216 96.2023255 290.427297 97.8185721 292.043216"></polygon>
<polygon id="Stroke-232" transform="translate(96.202326, 292.043216) rotate(22.000000) translate(-96.202326, -292.043216) " points="96.2023255 293.659135 94.586079 292.043216 96.2023255 290.427297 97.8185721 292.043216"></polygon>
<polygon id="Fill-234" fill-opacity="0.6" fill="#A3B1BF" transform="translate(97.653979, 295.462017) rotate(22.000000) translate(-97.653979, -295.462017) " points="97.6539786 297.077936 96.0377321 295.462017 97.6539786 293.846099 99.2702252 295.462017"></polygon>
<polygon id="Stroke-236" transform="translate(97.653979, 295.462017) rotate(22.000000) translate(-97.653979, -295.462017) " points="97.6539786 297.077936 96.0377321 295.462017 97.6539786 293.846099 99.2702252 295.462017"></polygon>
<polygon id="Fill-238" fill-opacity="0.6" fill="#A3B1BF" transform="translate(90.143017, 286.544880) rotate(22.000000) translate(-90.143017, -286.544880) " points="90.1430168 288.160798 88.5267702 286.54488 90.1430168 284.928961 91.7592633 286.54488"></polygon>
<polygon id="Stroke-240" transform="translate(90.143017, 286.544880) rotate(22.000000) translate(-90.143017, -286.544880) " points="90.1430168 288.160798 88.5267702 286.54488 90.1430168 284.928961 91.7592633 286.54488"></polygon>
<polygon id="Fill-242" fill-opacity="0.6" fill="#A3B1BF" transform="translate(91.594670, 289.963681) rotate(22.000000) translate(-91.594670, -289.963681) " points="91.5946698 291.5796 89.9784233 289.963681 91.5946698 288.347762 93.2109164 289.963681"></polygon>
<polygon id="Stroke-244" transform="translate(91.594670, 289.963681) rotate(22.000000) translate(-91.594670, -289.963681) " points="91.5946698 291.5796 89.9784233 289.963681 91.5946698 288.347762 93.2109164 289.963681"></polygon>
<polygon id="Fill-246" fill-opacity="0.6" fill="#A3B1BF" transform="translate(93.046240, 293.382517) rotate(22.000000) translate(-93.046240, -293.382517) " points="93.0462402 294.998436 91.4299937 293.382517 93.0462402 291.766598 94.6624868 293.382517"></polygon>
<polygon id="Stroke-248" transform="translate(93.046240, 293.382517) rotate(22.000000) translate(-93.046240, -293.382517) " points="93.0462402 294.998436 91.4299937 293.382517 93.0462402 291.766598 94.6624868 293.382517"></polygon>
<polygon id="Fill-250" fill-opacity="0.6" fill="#A3B1BF" transform="translate(94.497893, 296.801318) rotate(22.000000) translate(-94.497893, -296.801318) " points="94.4978933 298.417237 92.8816468 296.801318 94.4978933 295.1854 96.1141398 296.801318"></polygon>
<polygon id="Stroke-252" transform="translate(94.497893, 296.801318) rotate(22.000000) translate(-94.497893, -296.801318) " points="94.4978933 298.417237 92.8816468 296.801318 94.4978933 295.1854 96.1141398 296.801318"></polygon>
<polygon id="Fill-254" fill-opacity="0.6" fill="#A3B1BF" transform="translate(86.986931, 287.884181) rotate(22.000000) translate(-86.986931, -287.884181) " points="86.9869315 289.500099 85.3706849 287.884181 86.9869315 286.268262 88.603178 287.884181"></polygon>
<polygon id="Stroke-256" transform="translate(86.986931, 287.884181) rotate(22.000000) translate(-86.986931, -287.884181) " points="86.9869315 289.500099 85.3706849 287.884181 86.9869315 286.268262 88.603178 287.884181"></polygon>
<polygon id="Fill-258" fill-opacity="0.6" fill="#A3B1BF" transform="translate(88.438585, 291.302982) rotate(22.000000) translate(-88.438585, -291.302982) " points="88.4385845 292.9189 86.822338 291.302982 88.4385845 289.687063 90.0548311 291.302982"></polygon>
<polygon id="Stroke-260" transform="translate(88.438585, 291.302982) rotate(22.000000) translate(-88.438585, -291.302982) " points="88.4385845 292.9189 86.822338 291.302982 88.4385845 289.687063 90.0548311 291.302982"></polygon>
<polygon id="Fill-262" fill-opacity="0.6" fill="#A3B1BF" transform="translate(89.890155, 294.721818) rotate(22.000000) translate(-89.890155, -294.721818) " points="89.8901549 296.337737 88.2739084 294.721818 89.8901549 293.105899 91.5064014 294.721818"></polygon>
<polygon id="Stroke-264" transform="translate(89.890155, 294.721818) rotate(22.000000) translate(-89.890155, -294.721818) " points="89.8901549 296.337737 88.2739084 294.721818 89.8901549 293.105899 91.5064014 294.721818"></polygon>
<polygon id="Fill-266" fill-opacity="0.6" fill="#A3B1BF" transform="translate(91.341749, 298.140595) rotate(22.000000) translate(-91.341749, -298.140595) " points="91.3417491 299.756514 89.7255025 298.140595 91.3417491 296.524677 92.9579956 298.140595"></polygon>
<polygon id="Stroke-268" transform="translate(91.341749, 298.140595) rotate(22.000000) translate(-91.341749, -298.140595) " points="91.3417491 299.756514 89.7255025 298.140595 91.3417491 296.524677 92.9579956 298.140595"></polygon>
<polygon id="Fill-270" fill-opacity="0.6" fill="#A3B1BF" transform="translate(83.830846, 289.223482) rotate(22.000000) translate(-83.830846, -289.223482) " points="83.8308461 290.8394 82.2145996 289.223482 83.8308461 287.607563 85.4470927 289.223482"></polygon>
<polygon id="Stroke-272" transform="translate(83.830846, 289.223482) rotate(22.000000) translate(-83.830846, -289.223482) " points="82.2145996 289.223482 83.8308461 287.607563 85.4470927 289.223482 83.8308461 290.8394"></polygon>
<polygon id="Fill-274" fill-opacity="0.6" fill="#A3B1BF" transform="translate(85.282417, 292.642318) rotate(22.000000) translate(-85.282417, -292.642318) " points="85.2824165 294.258236 83.66617 292.642318 85.2824165 291.026399 86.898663 292.642318"></polygon>
<polygon id="Stroke-276" transform="translate(85.282417, 292.642318) rotate(22.000000) translate(-85.282417, -292.642318) " points="85.2824165 294.258236 83.66617 292.642318 85.2824165 291.026399 86.898663 292.642318"></polygon>
<polygon id="Fill-278" fill-opacity="0.6" fill="#A3B1BF" transform="translate(86.734070, 296.061119) rotate(22.000000) translate(-86.734070, -296.061119) " points="86.7340696 297.677038 85.1178231 296.061119 86.7340696 294.4452 88.3503161 296.061119"></polygon>
<polygon id="Stroke-280" transform="translate(86.734070, 296.061119) rotate(22.000000) translate(-86.734070, -296.061119) " points="86.7340696 297.677038 85.1178231 296.061119 86.7340696 294.4452 88.3503161 296.061119"></polygon>
<polygon id="Fill-282" fill-opacity="0.6" fill="#A3B1BF" transform="translate(88.185664, 299.479896) rotate(22.000000) translate(-88.185664, -299.479896) " points="88.1856638 301.095815 86.5694172 299.479896 88.1856638 297.863978 89.8019103 299.479896"></polygon>
<polygon id="Stroke-284" transform="translate(88.185664, 299.479896) rotate(22.000000) translate(-88.185664, -299.479896) " points="88.1856638 301.095815 86.5694172 299.479896 88.1856638 297.863978 89.8019103 299.479896"></polygon>
<polygon id="Fill-286" transform="translate(37.779995, 163.402514) rotate(22.000000) translate(-37.779995, -163.402514) " points="51.9961666 192.018058 66.401345 177.615802 23.5644587 134.78697 9.15864501 149.189862"></polygon>
<polygon id="Fill-290" transform="translate(50.400318, 195.682118) rotate(22.000000) translate(-50.400318, -195.682118) " points="54.1737837 198.070743 48.0112085 191.909418 46.6268527 193.293493 52.7894279 199.454818"></polygon>
<polygon id="Stroke-292" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(50.400318, 195.682118) rotate(22.000000) translate(-50.400318, -195.682118) " points="54.1737837 198.070743 48.0112085 191.909418 46.6268527 193.293493 52.7894279 199.454818"></polygon>
<polygon id="Fill-294" fill-opacity="0.8" fill="#A3B1BF" transform="translate(52.603532, 200.871447) rotate(22.000000) translate(-52.603532, -200.871447) " points="52.712807 203.746308 55.4789773 200.980699 52.4942579 197.996585 49.7280876 200.762195"></polygon>
<polygon id="Stroke-296" stroke="#A3B1BF" stroke-width="1.62" fill="#FFFFFF" stroke-linejoin="round" transform="translate(52.603532, 200.871447) rotate(22.000000) translate(-52.603532, -200.871447) " points="52.712807 203.746308 55.4789773 200.980699 52.4942579 197.996585 49.7280876 200.762195"></polygon>
<polygon id="Fill-298" fill-opacity="0.8" fill="#A3B1BF" transform="translate(53.983257, 183.836778) rotate(22.000000) translate(-53.983257, -183.836778) " points="52.3670108 183.836778 53.9832574 185.452697 55.5995039 183.836778 53.9832574 182.22086"></polygon>
<polygon id="Stroke-300" transform="translate(53.983257, 183.836778) rotate(22.000000) translate(-53.983257, -183.836778) " points="52.3670108 183.836778 53.9832574 185.452697 55.5995039 183.836778 53.9832574 182.22086"></polygon>
<polygon id="Fill-302" fill-opacity="0.8" fill="#A3B1BF" transform="translate(52.531663, 180.418001) rotate(22.000000) translate(-52.531663, -180.418001) " points="50.9154167 180.418001 52.5316632 182.03392 54.1479097 180.418001 52.5316632 178.802082"></polygon>
<polygon id="Stroke-304" transform="translate(52.531663, 180.418001) rotate(22.000000) translate(-52.531663, -180.418001) " points="50.9154167 180.418001 52.5316632 182.03392 54.1479097 180.418001 52.5316632 178.802082"></polygon>
<polygon id="Fill-306" fill-opacity="0.8" fill="#A3B1BF" transform="translate(51.080034, 176.999141) rotate(22.000000) translate(-51.080034, -176.999141) " points="49.4637874 176.999141 51.0800339 178.61506 52.6962805 176.999141 51.0800339 175.383222"></polygon>
<polygon id="Stroke-308" transform="translate(51.080034, 176.999141) rotate(22.000000) translate(-51.080034, -176.999141) " points="49.4637874 176.999141 51.0800339 178.61506 52.6962805 176.999141 51.0800339 175.383222"></polygon>
<polygon id="Fill-310" fill-opacity="0.8" fill="#A3B1BF" transform="translate(49.628440, 173.580364) rotate(22.000000) translate(-49.628440, -173.580364) " points="48.0121932 173.580364 49.6284397 175.196282 51.2446863 173.580364 49.6284397 171.964445"></polygon>
<polygon id="Stroke-312" transform="translate(49.628440, 173.580364) rotate(22.000000) translate(-49.628440, -173.580364) " points="48.0121932 173.580364 49.6284397 175.196282 51.2446863 173.580364 49.6284397 171.964445"></polygon>
<polygon id="Fill-314" fill-opacity="0.8" fill="#A3B1BF" transform="translate(50.827172, 185.176079) rotate(22.000000) translate(-50.827172, -185.176079) " points="49.2109255 185.176079 50.8271721 186.791998 52.4434186 185.176079 50.8271721 183.560161"></polygon>
<polygon id="Stroke-316" transform="translate(50.827172, 185.176079) rotate(22.000000) translate(-50.827172, -185.176079) " points="49.2109255 185.176079 50.8271721 186.791998 52.4434186 185.176079 50.8271721 183.560161"></polygon>
<polygon id="Fill-318" fill-opacity="0.8" fill="#A3B1BF" transform="translate(49.375578, 181.757302) rotate(22.000000) translate(-49.375578, -181.757302) " points="47.7593313 181.757302 49.3755779 183.373221 50.9918244 181.757302 49.3755779 180.141383"></polygon>
<polygon id="Stroke-320" transform="translate(49.375578, 181.757302) rotate(22.000000) translate(-49.375578, -181.757302) " points="47.7593313 181.757302 49.3755779 183.373221 50.9918244 181.757302 49.3755779 180.141383"></polygon>
<polygon id="Fill-322" fill-opacity="0.8" fill="#A3B1BF" transform="translate(47.923949, 178.338442) rotate(22.000000) translate(-47.923949, -178.338442) " points="46.3077021 178.338442 47.9239486 179.954361 49.5401951 178.338442 47.9239486 176.722523"></polygon>
<polygon id="Stroke-324" transform="translate(47.923949, 178.338442) rotate(22.000000) translate(-47.923949, -178.338442) " points="46.3077021 178.338442 47.9239486 179.954361 49.5401951 178.338442 47.9239486 176.722523"></polygon>
<polygon id="Fill-326" fill-opacity="0.8" fill="#A3B1BF" transform="translate(46.472354, 174.919665) rotate(22.000000) translate(-46.472354, -174.919665) " points="44.8561079 174.919665 46.4723544 176.535583 48.088601 174.919665 46.4723544 173.303746"></polygon>
<polygon id="Stroke-328" transform="translate(46.472354, 174.919665) rotate(22.000000) translate(-46.472354, -174.919665) " points="44.8561079 174.919665 46.4723544 176.535583 48.088601 174.919665 46.4723544 173.303746"></polygon>
<polygon id="Fill-330" fill-opacity="0.8" fill="#A3B1BF" transform="translate(47.671087, 186.515380) rotate(22.000000) translate(-47.671087, -186.515380) " points="46.0548402 186.51538 47.6710867 188.131299 49.2873333 186.51538 47.6710867 184.899461"></polygon>
<polygon id="Stroke-332" transform="translate(47.671087, 186.515380) rotate(22.000000) translate(-47.671087, -186.515380) " points="46.0548402 186.51538 47.6710867 188.131299 49.2873333 186.51538 47.6710867 184.899461"></polygon>
<polygon id="Fill-334" fill-opacity="0.8" fill="#A3B1BF" transform="translate(46.219493, 183.096603) rotate(22.000000) translate(-46.219493, -183.096603) " points="44.603246 183.096603 46.2194926 184.712521 47.8357391 183.096603 46.2194926 181.480684"></polygon>
<polygon id="Stroke-336" transform="translate(46.219493, 183.096603) rotate(22.000000) translate(-46.219493, -183.096603) " points="44.603246 183.096603 46.2194926 184.712521 47.8357391 183.096603 46.2194926 181.480684"></polygon>
<polygon id="Fill-338" fill-opacity="0.8" fill="#A3B1BF" transform="translate(44.767839, 179.677802) rotate(22.000000) translate(-44.767839, -179.677802) " points="43.1515929 179.677802 44.7678395 181.29372 46.384086 179.677802 44.7678395 178.061883"></polygon>
<polygon id="Stroke-340" transform="translate(44.767839, 179.677802) rotate(22.000000) translate(-44.767839, -179.677802) " points="43.1515929 179.677802 44.7678395 181.29372 46.384086 179.677802 44.7678395 178.061883"></polygon>
<polygon id="Fill-342" fill-opacity="0.8" fill="#A3B1BF" transform="translate(43.316269, 176.258965) rotate(22.000000) translate(-43.316269, -176.258965) " points="41.7000226 176.258965 43.3162691 177.874884 44.9325156 176.258965 43.3162691 174.643047"></polygon>
<polygon id="Stroke-344" transform="translate(43.316269, 176.258965) rotate(22.000000) translate(-43.316269, -176.258965) " points="41.7000226 176.258965 43.3162691 177.874884 44.9325156 176.258965 43.3162691 174.643047"></polygon>
<polygon id="Fill-346" fill-opacity="0.8" fill="#A3B1BF" transform="translate(44.514978, 187.854740) rotate(22.000000) translate(-44.514978, -187.854740) " points="42.8987311 187.85474 44.5149776 189.470659 46.1312242 187.85474 44.5149776 186.238821"></polygon>
<polygon id="Stroke-348" transform="translate(44.514978, 187.854740) rotate(22.000000) translate(-44.514978, -187.854740) " points="42.8987311 187.85474 44.5149776 189.470659 46.1312242 187.85474 44.5149776 186.238821"></polygon>
<polygon id="Fill-350" fill-opacity="0.8" fill="#A3B1BF" transform="translate(43.063348, 184.435880) rotate(22.000000) translate(-43.063348, -184.435880) " points="41.4471018 184.43588 43.0633483 186.051799 44.6795949 184.43588 43.0633483 182.819961"></polygon>
<polygon id="Stroke-352" transform="translate(43.063348, 184.435880) rotate(22.000000) translate(-43.063348, -184.435880) " points="41.4471018 184.43588 43.0633483 186.051799 44.6795949 184.43588 43.0633483 182.819961"></polygon>
<polygon id="Fill-354" fill-opacity="0.8" fill="#A3B1BF" transform="translate(41.611754, 181.017103) rotate(22.000000) translate(-41.611754, -181.017103) " points="39.9955076 181.017103 41.6117542 182.633021 43.2280007 181.017103 41.6117542 179.401184"></polygon>
<polygon id="Stroke-356" transform="translate(41.611754, 181.017103) rotate(22.000000) translate(-41.611754, -181.017103) " points="39.9955076 181.017103 41.6117542 182.633021 43.2280007 181.017103 41.6117542 179.401184"></polygon>
<polygon id="Fill-358" fill-opacity="0.8" fill="#A3B1BF" transform="translate(40.160184, 177.598266) rotate(22.000000) translate(-40.160184, -177.598266) " points="38.5439373 177.598266 40.1601838 179.214185 41.7764303 177.598266 40.1601838 175.982348"></polygon>
<polygon id="Stroke-360" transform="translate(40.160184, 177.598266) rotate(22.000000) translate(-40.160184, -177.598266) " points="38.5439373 177.598266 40.1601838 179.214185 41.7764303 177.598266 40.1601838 175.982348"></polygon>
<polygon id="Fill-362" fill-opacity="0.8" fill="#A3B1BF" transform="translate(41.358892, 189.194041) rotate(22.000000) translate(-41.358892, -189.194041) " points="39.7426458 189.194041 41.3588923 190.80996 42.9751388 189.194041 41.3588923 187.578122"></polygon>
<polygon id="Stroke-364" transform="translate(41.358892, 189.194041) rotate(22.000000) translate(-41.358892, -189.194041) " points="39.7426458 189.194041 41.3588923 190.80996 42.9751388 189.194041 41.3588923 187.578122"></polygon>
<polygon id="Fill-366" fill-opacity="0.8" fill="#A3B1BF" transform="translate(39.907263, 185.775181) rotate(22.000000) translate(-39.907263, -185.775181) " points="38.2910165 185.775181 39.907263 187.3911 41.5235095 185.775181 39.907263 184.159262"></polygon>
<polygon id="Stroke-368" transform="translate(39.907263, 185.775181) rotate(22.000000) translate(-39.907263, -185.775181) " points="38.2910165 185.775181 39.907263 187.3911 41.5235095 185.775181 39.907263 184.159262"></polygon>
<polygon id="Fill-370" fill-opacity="0.8" fill="#A3B1BF" transform="translate(38.455669, 182.356404) rotate(22.000000) translate(-38.455669, -182.356404) " points="36.8394223 182.356404 38.4556688 183.972322 40.0719154 182.356404 38.4556688 180.740485"></polygon>
<polygon id="Stroke-372" transform="translate(38.455669, 182.356404) rotate(22.000000) translate(-38.455669, -182.356404) " points="36.8394223 182.356404 38.4556688 183.972322 40.0719154 182.356404 38.4556688 180.740485"></polygon>
<polygon id="Fill-374" fill-opacity="0.8" fill="#A3B1BF" transform="translate(37.004016, 178.937602) rotate(22.000000) translate(-37.004016, -178.937602) " points="35.3877692 178.937602 37.0040158 180.553521 38.6202623 178.937602 37.0040158 177.321684"></polygon>
<polygon id="Stroke-376" transform="translate(37.004016, 178.937602) rotate(22.000000) translate(-37.004016, -178.937602) " points="35.3877692 178.937602 37.0040158 180.553521 38.6202623 178.937602 37.0040158 177.321684"></polygon>
<polygon id="Fill-378" fill-opacity="0.8" fill="#A3B1BF" transform="translate(46.380894, 165.931897) rotate(22.000000) translate(-46.380894, -165.931897) " points="44.7646475 165.931897 46.380894 167.547816 47.9971405 165.931897 46.380894 164.315979"></polygon>
<polygon id="Stroke-380" transform="translate(46.380894, 165.931897) rotate(22.000000) translate(-46.380894, -165.931897) " points="44.7646475 165.931897 46.380894 167.547816 47.9971405 165.931897 46.380894 164.315979"></polygon>
<polygon id="Fill-382" fill-opacity="0.8" fill="#A3B1BF" transform="translate(44.929324, 162.513061) rotate(22.000000) translate(-44.929324, -162.513061) " points="43.3130771 162.513061 44.9293236 164.12898 46.5455702 162.513061 44.9293236 160.897143"></polygon>
<polygon id="Stroke-384" transform="translate(44.929324, 162.513061) rotate(22.000000) translate(-44.929324, -162.513061) " points="43.3130771 162.513061 44.9293236 164.12898 46.5455702 162.513061 44.9293236 160.897143"></polygon>
<polygon id="Fill-386" fill-opacity="0.8" fill="#A3B1BF" transform="translate(43.477729, 159.094284) rotate(22.000000) translate(-43.477729, -159.094284) " points="41.8614829 159.094284 43.4777295 160.710203 45.093976 159.094284 43.4777295 157.478365"></polygon>
<polygon id="Stroke-388" transform="translate(43.477729, 159.094284) rotate(22.000000) translate(-43.477729, -159.094284) " points="41.8614829 159.094284 43.4777295 160.710203 45.093976 159.094284 43.4777295 157.478365"></polygon>
<polygon id="Fill-390" fill-opacity="0.8" fill="#A3B1BF" transform="translate(42.026100, 155.675424) rotate(22.000000) translate(-42.026100, -155.675424) " points="40.4098536 155.675424 42.0261002 157.291342 43.6423467 155.675424 42.0261002 154.059505"></polygon>
<polygon id="Stroke-392" transform="translate(42.026100, 155.675424) rotate(22.000000) translate(-42.026100, -155.675424) " points="40.4098536 155.675424 42.0261002 157.291342 43.6423467 155.675424 42.0261002 154.059505"></polygon>
<polygon id="Fill-394" fill-opacity="0.8" fill="#A3B1BF" transform="translate(43.224809, 167.271198) rotate(22.000000) translate(-43.224809, -167.271198) " points="41.6085622 167.271198 43.2248087 168.887117 44.8410552 167.271198 43.2248087 165.65528"></polygon>
<polygon id="Stroke-396" transform="translate(43.224809, 167.271198) rotate(22.000000) translate(-43.224809, -167.271198) " points="41.6085622 167.271198 43.2248087 168.887117 44.8410552 167.271198 43.2248087 165.65528"></polygon>
<polygon id="Fill-398" fill-opacity="0.8" fill="#A3B1BF" transform="translate(41.773238, 163.852362) rotate(22.000000) translate(-41.773238, -163.852362) " points="40.1569918 163.852362 41.7732383 165.468281 43.3894848 163.852362 41.7732383 162.236443"></polygon>
<polygon id="Stroke-400" transform="translate(41.773238, 163.852362) rotate(22.000000) translate(-41.773238, -163.852362) " points="40.1569918 163.852362 41.7732383 165.468281 43.3894848 163.852362 41.7732383 162.236443"></polygon>
<polygon id="Fill-402" fill-opacity="0.8" fill="#A3B1BF" transform="translate(40.321585, 160.433561) rotate(22.000000) translate(-40.321585, -160.433561) " points="38.7053387 160.433561 40.3215852 162.04948 41.9378318 160.433561 40.3215852 158.817642"></polygon>
<polygon id="Stroke-404" transform="translate(40.321585, 160.433561) rotate(22.000000) translate(-40.321585, -160.433561) " points="38.7053387 160.433561 40.3215852 162.04948 41.9378318 160.433561 40.3215852 158.817642"></polygon>
<polygon id="Fill-406" fill-opacity="0.8" fill="#A3B1BF" transform="translate(38.869991, 157.014784) rotate(22.000000) translate(-38.869991, -157.014784) " points="37.2537445 157.014784 38.8699911 158.630702 40.4862376 157.014784 38.8699911 155.398865"></polygon>
<polygon id="Stroke-408" transform="translate(38.869991, 157.014784) rotate(22.000000) translate(-38.869991, -157.014784) " points="37.2537445 157.014784 38.8699911 158.630702 40.4862376 157.014784 38.8699911 155.398865"></polygon>
<polygon id="Fill-410" fill-opacity="0.8" fill="#A3B1BF" transform="translate(40.068723, 168.610499) rotate(22.000000) translate(-40.068723, -168.610499) " points="38.4524768 168.610499 40.0687234 170.226418 41.6849699 168.610499 40.0687234 166.994581"></polygon>
<polygon id="Stroke-412" transform="translate(40.068723, 168.610499) rotate(22.000000) translate(-40.068723, -168.610499) " points="38.4524768 168.610499 40.0687234 170.226418 41.6849699 168.610499 40.0687234 166.994581"></polygon>
<polygon id="Fill-414" fill-opacity="0.8" fill="#A3B1BF" transform="translate(38.617129, 165.191722) rotate(22.000000) translate(-38.617129, -165.191722) " points="37.0008827 165.191722 38.6171292 166.807641 40.2333757 165.191722 38.6171292 163.575803"></polygon>
<polygon id="Stroke-416" transform="translate(38.617129, 165.191722) rotate(22.000000) translate(-38.617129, -165.191722) " points="37.0008827 165.191722 38.6171292 166.807641 40.2333757 165.191722 38.6171292 163.575803"></polygon>
<polygon id="Fill-418" fill-opacity="0.8" fill="#A3B1BF" transform="translate(37.165500, 161.772862) rotate(22.000000) translate(-37.165500, -161.772862) " points="35.5492534 161.772862 37.1654999 163.388781 38.7817464 161.772862 37.1654999 160.156943"></polygon>
<polygon id="Stroke-420" transform="translate(37.165500, 161.772862) rotate(22.000000) translate(-37.165500, -161.772862) " points="35.5492534 161.772862 37.1654999 163.388781 38.7817464 161.772862 37.1654999 160.156943"></polygon>
<polygon id="Fill-422" fill-opacity="0.8" fill="#A3B1BF" transform="translate(35.713906, 158.354085) rotate(22.000000) translate(-35.713906, -158.354085) " points="34.0976592 158.354085 35.7139057 159.970003 37.3301523 158.354085 35.7139057 156.738166"></polygon>
<polygon id="Stroke-424" transform="translate(35.713906, 158.354085) rotate(22.000000) translate(-35.713906, -158.354085) " points="34.0976592 158.354085 35.7139057 159.970003 37.3301523 158.354085 35.7139057 156.738166"></polygon>
<polygon id="Fill-426" fill-opacity="0.8" fill="#A3B1BF" transform="translate(36.912638, 169.949800) rotate(22.000000) translate(-36.912638, -169.949800) " points="35.2963915 169.9498 36.912638 171.565719 38.5288846 169.9498 36.912638 168.333882"></polygon>
<polygon id="Stroke-428" transform="translate(36.912638, 169.949800) rotate(22.000000) translate(-36.912638, -169.949800) " points="35.2963915 169.9498 36.912638 171.565719 38.5288846 169.9498 36.912638 168.333882"></polygon>
<polygon id="Fill-430" fill-opacity="0.8" fill="#A3B1BF" transform="translate(35.461068, 166.530964) rotate(22.000000) translate(-35.461068, -166.530964) " points="33.8448211 166.530964 35.4610677 168.146883 37.0773142 166.530964 35.4610677 164.915045"></polygon>
<polygon id="Stroke-432" transform="translate(35.461068, 166.530964) rotate(22.000000) translate(-35.461068, -166.530964) " points="33.8448211 166.530964 35.4610677 168.146883 37.0773142 166.530964 35.4610677 164.915045"></polygon>
<polygon id="Fill-434" fill-opacity="0.8" fill="#A3B1BF" transform="translate(34.009415, 163.112163) rotate(22.000000) translate(-34.009415, -163.112163) " points="32.3931681 163.112163 34.0094146 164.728081 35.6256611 163.112163 34.0094146 161.496244"></polygon>
<polygon id="Stroke-436" transform="translate(34.009415, 163.112163) rotate(22.000000) translate(-34.009415, -163.112163) " points="32.3931681 163.112163 34.0094146 164.728081 35.6256611 163.112163 34.0094146 161.496244"></polygon>
<polygon id="Fill-438" fill-opacity="0.8" fill="#A3B1BF" transform="translate(32.557820, 159.693385) rotate(22.000000) translate(-32.557820, -159.693385) " points="30.9415739 159.693385 32.5578204 161.309304 34.174067 159.693385 32.5578204 158.077467"></polygon>
<polygon id="Stroke-440" transform="translate(32.557820, 159.693385) rotate(22.000000) translate(-32.557820, -159.693385) " points="30.9415739 159.693385 32.5578204 161.309304 34.174067 159.693385 32.5578204 158.077467"></polygon>
<polygon id="Fill-442" fill-opacity="0.8" fill="#A3B1BF" transform="translate(33.756553, 171.289101) rotate(22.000000) translate(-33.756553, -171.289101) " points="32.1403062 171.289101 33.7565527 172.90502 35.3727993 171.289101 33.7565527 169.673182"></polygon>
<polygon id="Stroke-444" transform="translate(33.756553, 171.289101) rotate(22.000000) translate(-33.756553, -171.289101) " points="32.1403062 171.289101 33.7565527 172.90502 35.3727993 171.289101 33.7565527 169.673182"></polygon>
<polygon id="Fill-446" fill-opacity="0.8" fill="#A3B1BF" transform="translate(32.304959, 167.870324) rotate(22.000000) translate(-32.304959, -167.870324) " points="30.688712 167.870324 32.3049586 169.486242 33.9212051 167.870324 32.3049586 166.254405"></polygon>
<polygon id="Stroke-448" transform="translate(32.304959, 167.870324) rotate(22.000000) translate(-32.304959, -167.870324) " points="30.688712 167.870324 32.3049586 169.486242 33.9212051 167.870324 32.3049586 166.254405"></polygon>
<polygon id="Fill-450" fill-opacity="0.8" fill="#A3B1BF" transform="translate(30.853329, 164.451464) rotate(22.000000) translate(-30.853329, -164.451464) " points="29.2370827 164.451464 30.8533293 166.067382 32.4695758 164.451464 30.8533293 162.835545"></polygon>
<polygon id="Stroke-452" transform="translate(30.853329, 164.451464) rotate(22.000000) translate(-30.853329, -164.451464) " points="29.2370827 164.451464 30.8533293 166.067382 32.4695758 164.451464 30.8533293 162.835545"></polygon>
<polygon id="Fill-454" fill-opacity="0.8" fill="#A3B1BF" transform="translate(29.401735, 161.032686) rotate(22.000000) translate(-29.401735, -161.032686) " points="27.7854886 161.032686 29.4017351 162.648605 31.0179816 161.032686 29.4017351 159.416768"></polygon>
<polygon id="Stroke-456" transform="translate(29.401735, 161.032686) rotate(22.000000) translate(-29.401735, -161.032686) " points="27.7854886 161.032686 29.4017351 162.648605 31.0179816 161.032686 29.4017351 159.416768"></polygon>
<polygon id="Fill-458" fill-opacity="0.8" fill="#A3B1BF" transform="translate(38.778613, 148.026981) rotate(22.000000) translate(-38.778613, -148.026981) " points="37.1623668 148.026981 38.7786133 149.6429 40.3948599 148.026981 38.7786133 146.411063"></polygon>
<polygon id="Stroke-460" transform="translate(38.778613, 148.026981) rotate(22.000000) translate(-38.778613, -148.026981) " points="37.1623668 148.026981 38.7786133 149.6429 40.3948599 148.026981 38.7786133 146.411063"></polygon>
<polygon id="Fill-462" fill-opacity="0.8" fill="#A3B1BF" transform="translate(37.326984, 144.608121) rotate(22.000000) translate(-37.326984, -144.608121) " points="35.7107375 144.608121 37.3269841 146.22404 38.9432306 144.608121 37.3269841 142.992203"></polygon>
<polygon id="Stroke-464" transform="translate(37.326984, 144.608121) rotate(22.000000) translate(-37.326984, -144.608121) " points="35.7107375 144.608121 37.3269841 146.22404 38.9432306 144.608121 37.3269841 142.992203"></polygon>
<polygon id="Fill-466" fill-opacity="0.8" fill="#A3B1BF" transform="translate(35.875390, 141.189344) rotate(22.000000) translate(-35.875390, -141.189344) " points="34.2591433 141.189344 35.8753899 142.805263 37.4916364 141.189344 35.8753899 139.573425"></polygon>
<polygon id="Stroke-468" transform="translate(35.875390, 141.189344) rotate(22.000000) translate(-35.875390, -141.189344) " points="34.2591433 141.189344 35.8753899 142.805263 37.4916364 141.189344 35.8753899 139.573425"></polygon>
<polygon id="Fill-470" fill-opacity="0.8" fill="#A3B1BF" transform="translate(34.423796, 137.770567) rotate(22.000000) translate(-34.423796, -137.770567) " points="32.8075492 137.770567 34.4237957 139.386485 36.0400422 137.770567 34.4237957 136.154648"></polygon>
<polygon id="Stroke-472" fill="#B2BECA" transform="translate(34.423796, 137.770567) rotate(22.000000) translate(-34.423796, -137.770567) " points="34.4237957 139.386485 36.0400422 137.770567 34.4237957 136.154648 32.8075492 137.770567"></polygon>
<polygon id="Fill-474" fill-opacity="0.8" fill="#A3B1BF" transform="translate(35.622528, 149.366282) rotate(22.000000) translate(-35.622528, -149.366282) " points="34.0062815 149.366282 35.622528 150.982201 37.2387746 149.366282 35.622528 147.750364"></polygon>
<polygon id="Stroke-476" transform="translate(35.622528, 149.366282) rotate(22.000000) translate(-35.622528, -149.366282) " points="34.0062815 149.366282 35.622528 150.982201 37.2387746 149.366282 35.622528 147.750364"></polygon>
<polygon id="Fill-478" fill-opacity="0.8" fill="#A3B1BF" transform="translate(34.170875, 145.947481) rotate(22.000000) translate(-34.170875, -145.947481) " points="32.5546284 145.947481 34.1708749 147.5634 35.7871215 145.947481 34.1708749 144.331563"></polygon>
<polygon id="Stroke-480" transform="translate(34.170875, 145.947481) rotate(22.000000) translate(-34.170875, -145.947481) " points="32.5546284 145.947481 34.1708749 147.5634 35.7871215 145.947481 34.1708749 144.331563"></polygon>
<polygon id="Fill-482" fill-opacity="0.8" fill="#A3B1BF" transform="translate(32.719305, 142.528645) rotate(22.000000) translate(-32.719305, -142.528645) " points="31.103058 142.528645 32.7193046 144.144564 34.3355511 142.528645 32.7193046 140.912726"></polygon>
<polygon id="Stroke-484" transform="translate(32.719305, 142.528645) rotate(22.000000) translate(-32.719305, -142.528645) " points="31.103058 142.528645 32.7193046 144.144564 34.3355511 142.528645 32.7193046 140.912726"></polygon>
<polygon id="Fill-486" fill-opacity="0.8" fill="#A3B1BF" transform="translate(31.267651, 139.109844) rotate(22.000000) translate(-31.267651, -139.109844) " points="29.651405 139.109844 31.2676515 140.725763 32.883898 139.109844 31.2676515 137.493925"></polygon>
<polygon id="Stroke-488" transform="translate(31.267651, 139.109844) rotate(22.000000) translate(-31.267651, -139.109844) " points="29.651405 139.109844 31.2676515 140.725763 32.883898 139.109844 31.2676515 137.493925"></polygon>
<polygon id="Fill-490" fill-opacity="0.8" fill="#A3B1BF" transform="translate(32.466384, 150.705559) rotate(22.000000) translate(-32.466384, -150.705559) " points="30.8501373 150.705559 32.4663838 152.321478 34.0826303 150.705559 32.4663838 149.089641"></polygon>
<polygon id="Stroke-492" transform="translate(32.466384, 150.705559) rotate(22.000000) translate(-32.466384, -150.705559) " points="30.8501373 150.705559 32.4663838 152.321478 34.0826303 150.705559 32.4663838 149.089641"></polygon>
<polygon id="Fill-494" fill-opacity="0.8" fill="#A3B1BF" transform="translate(31.014790, 147.286782) rotate(22.000000) translate(-31.014790, -147.286782) " points="29.3985431 147.286782 31.0147896 148.902701 32.6310362 147.286782 31.0147896 145.670863"></polygon>
<polygon id="Stroke-496" transform="translate(31.014790, 147.286782) rotate(22.000000) translate(-31.014790, -147.286782) " points="29.3985431 147.286782 31.0147896 148.902701 32.6310362 147.286782 31.0147896 145.670863"></polygon>
<polygon id="Fill-498" fill-opacity="0.8" fill="#A3B1BF" transform="translate(29.563219, 143.867946) rotate(22.000000) translate(-29.563219, -143.867946) " points="27.9469727 143.867946 29.5632192 145.483865 31.1794658 143.867946 29.5632192 142.252027"></polygon>
<polygon id="Stroke-500" transform="translate(29.563219, 143.867946) rotate(22.000000) translate(-29.563219, -143.867946) " points="27.9469727 143.867946 29.5632192 145.483865 31.1794658 143.867946 29.5632192 142.252027"></polygon>
<polygon id="Fill-502" fill-opacity="0.8" fill="#A3B1BF" transform="translate(28.111566, 140.449145) rotate(22.000000) translate(-28.111566, -140.449145) " points="26.4953196 140.449145 28.1115662 142.065063 29.7278127 140.449145 28.1115662 138.833226"></polygon>
<polygon id="Stroke-504" transform="translate(28.111566, 140.449145) rotate(22.000000) translate(-28.111566, -140.449145) " points="26.4953196 140.449145 28.1115662 142.065063 29.7278127 140.449145 28.1115662 138.833226"></polygon>
<polygon id="Fill-506" fill-opacity="0.8" fill="#A3B1BF" transform="translate(29.310298, 152.044860) rotate(22.000000) translate(-29.310298, -152.044860) " points="27.6940519 152.04486 29.3102985 153.660779 30.926545 152.04486 29.3102985 150.428942"></polygon>
<polygon id="Stroke-508" transform="translate(29.310298, 152.044860) rotate(22.000000) translate(-29.310298, -152.044860) " points="27.6940519 152.04486 29.3102985 153.660779 30.926545 152.04486 29.3102985 150.428942"></polygon>
<polygon id="Fill-510" fill-opacity="0.8" fill="#A3B1BF" transform="translate(27.858704, 148.626083) rotate(22.000000) translate(-27.858704, -148.626083) " points="26.2424578 148.626083 27.8587043 150.242002 29.4749508 148.626083 27.8587043 147.010164"></polygon>
<polygon id="Stroke-512" transform="translate(27.858704, 148.626083) rotate(22.000000) translate(-27.858704, -148.626083) " points="26.2424578 148.626083 27.8587043 150.242002 29.4749508 148.626083 27.8587043 147.010164"></polygon>
<polygon id="Fill-514" fill-opacity="0.8" fill="#A3B1BF" transform="translate(26.407134, 145.207247) rotate(22.000000) translate(-26.407134, -145.207247) " points="24.7908874 145.207247 26.4071339 146.823166 28.0233805 145.207247 26.4071339 143.591328"></polygon>
<polygon id="Stroke-516" transform="translate(26.407134, 145.207247) rotate(22.000000) translate(-26.407134, -145.207247) " points="24.7908874 145.207247 26.4071339 146.823166 28.0233805 145.207247 26.4071339 143.591328"></polygon>
<polygon id="Fill-518" fill-opacity="0.8" fill="#A3B1BF" transform="translate(24.955481, 141.788446) rotate(22.000000) translate(-24.955481, -141.788446) " points="23.3392343 141.788446 24.9554808 143.404364 26.5717274 141.788446 24.9554808 140.172527"></polygon>
<polygon id="Stroke-520" transform="translate(24.955481, 141.788446) rotate(22.000000) translate(-24.955481, -141.788446) " points="23.3392343 141.788446 24.9554808 143.404364 26.5717274 141.788446 24.9554808 140.172527"></polygon>
<polygon id="Fill-522" fill-opacity="0.8" fill="#A3B1BF" transform="translate(26.154213, 153.384161) rotate(22.000000) translate(-26.154213, -153.384161) " points="24.5379666 153.384161 26.1542132 155.00008 27.7704597 153.384161 26.1542132 151.768243"></polygon>
<polygon id="Stroke-524" transform="translate(26.154213, 153.384161) rotate(22.000000) translate(-26.154213, -153.384161) " points="24.5379666 153.384161 26.1542132 155.00008 27.7704597 153.384161 26.1542132 151.768243"></polygon>
<polygon id="Fill-526" fill-opacity="0.8" fill="#A3B1BF" transform="translate(24.702619, 149.965384) rotate(22.000000) translate(-24.702619, -149.965384) " points="23.0863724 149.965384 24.702619 151.581303 26.3188655 149.965384 24.702619 148.349465"></polygon>
<polygon id="Stroke-528" transform="translate(24.702619, 149.965384) rotate(22.000000) translate(-24.702619, -149.965384) " points="23.0863724 149.965384 24.702619 151.581303 26.3188655 149.965384 24.702619 148.349465"></polygon>
<polygon id="Fill-530" fill-opacity="0.8" fill="#A3B1BF" transform="translate(23.250966, 146.546583) rotate(22.000000) translate(-23.250966, -146.546583) " points="21.6347194 146.546583 23.2509659 148.162502 24.8672124 146.546583 23.2509659 144.930664"></polygon>
<polygon id="Stroke-532" transform="translate(23.250966, 146.546583) rotate(22.000000) translate(-23.250966, -146.546583) " points="21.6347194 146.546583 23.2509659 148.162502 24.8672124 146.546583 23.2509659 144.930664"></polygon>
<polygon id="Fill-534" fill-opacity="0.8" fill="#A3B1BF" transform="translate(21.799396, 143.127747) rotate(22.000000) translate(-21.799396, -143.127747) " points="20.183149 143.127747 21.7993955 144.743665 23.4156421 143.127747 21.7993955 141.511828"></polygon>
<polygon id="Stroke-536" transform="translate(21.799396, 143.127747) rotate(22.000000) translate(-21.799396, -143.127747) " points="20.183149 143.127747 21.7993955 144.743665 23.4156421 143.127747 21.7993955 141.511828"></polygon>
<path d="M129.314819,189.942425 C126.372666,187.000233 124.490222,184.112668 125.110927,183.492089 C125.731631,182.87151 128.619783,184.753573 131.562571,187.695129 C134.504724,190.637321 136.387169,193.524886 135.766464,194.145465 C135.145759,194.766044 132.257608,192.883981 129.314819,189.942425 Z" id="Fill-538" fill="#F5F5F5" transform="translate(130.438695, 188.818777) rotate(22.000000) translate(-130.438695, -188.818777) "></path>
<path d="M129.314819,189.942425 C126.372666,187.000233 124.490222,184.112668 125.110927,183.492089 C125.731631,182.87151 128.619783,184.753573 131.562571,187.695129 C134.504724,190.637321 136.387169,193.524886 135.766464,194.145465 C135.145759,194.766044 132.257608,192.883981 129.314819,189.942425 Z" id="Stroke-540" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(130.438695, 188.818777) rotate(22.000000) translate(-130.438695, -188.818777) "></path>
<path d="M136.083433,187.715086 C130.20421,181.837055 126.443133,176.067006 127.683272,174.827118 C128.92341,173.587231 134.69463,177.347545 140.573854,183.225576 C146.453713,189.104243 150.21479,194.874292 148.974651,196.114179 C147.734513,197.354066 141.963293,193.593752 136.083433,187.715086 Z" id="Fill-542" fill="#F5F5F5" transform="translate(138.328961, 185.470648) rotate(22.000000) translate(-138.328961, -185.470648) "></path>
<path d="M136.083433,187.715086 C130.20421,181.837055 126.443133,176.067006 127.683272,174.827118 C128.92341,173.587231 134.69463,177.347545 140.573854,183.225576 C146.453713,189.104243 150.21479,194.874292 148.974651,196.114179 C147.734513,197.354066 141.963293,193.593752 136.083433,187.715086 Z" id="Stroke-544" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(138.328961, 185.470648) rotate(22.000000) translate(-138.328961, -185.470648) "></path>
<path d="M146.697288,183.650834 C138.818086,175.773231 133.777481,168.04045 135.43947,166.378798 C137.101459,164.717146 144.835809,169.756729 152.715011,177.634332 C160.594213,185.511936 165.634818,193.244716 163.972829,194.906369 C162.310839,196.568021 154.57649,191.528438 146.697288,183.650834 Z" id="Fill-546" fill-opacity="0.35" fill="#F5F5F5" transform="translate(149.706149, 180.642583) rotate(22.000000) translate(-149.706149, -180.642583) "></path>
<path d="M146.697288,183.650834 C138.818086,175.773231 133.777481,168.04045 135.43947,166.378798 C137.101459,164.717146 144.835809,169.756729 152.715011,177.634332 C160.594213,185.511936 165.634818,193.244716 163.972829,194.906369 C162.310839,196.568021 154.57649,191.528438 146.697288,183.650834 Z" id="Stroke-548" stroke="#A3B1BF" stroke-width="1.62" stroke-linejoin="round" transform="translate(149.706149, 180.642583) rotate(22.000000) translate(-149.706149, -180.642583) "></path>
<path d="M65.2279553,90.2345285 C62.4548336,90.0320836 60.4105231,89.3345405 60.4105231,88.5051511 C60.4105231,87.676673 62.4503446,86.9797514 65.2188187,86.7764428 C65.4149139,84.0068366 66.0879499,81.9659221 66.8880741,81.9659221 C67.6881984,81.9659221 68.3612344,84.0068366 68.5573295,86.7764428 C71.3258036,86.9797514 73.3656251,87.676673 73.3656251,88.5051511 C73.3656251,89.3345405 71.3213146,90.0320836 68.548193,90.2345285 C68.3410329,92.9408238 67.6762073,94.9210242 66.8880741,94.9210242 C66.0999409,94.9210242 65.4351154,92.9408238 65.2279553,90.2345285 Z" id="Oval-80-Copy-3" fill-opacity="0.4" fill="#A3B1BF" opacity="0.85" transform="translate(66.888074, 88.443473) rotate(-340.000000) translate(-66.888074, -88.443473) "></path>
<path d="M118.775569,329.140492 L118.424988,329.526146 C117.522244,330.5192 115.985396,330.592411 114.992341,329.689667 C114.596934,329.330218 114.331035,328.850456 114.235803,328.324641 L114.143075,327.812647 L113.669257,327.599091 C112.445737,327.047635 111.900921,325.608734 112.452377,324.385214 C112.672015,323.8979 113.046204,323.496601 113.516991,323.243469 L113.97521,322.997095 L114.032158,322.478985 C114.178786,321.144967 115.379087,320.182398 116.713105,320.329026 C117.24418,320.387399 117.741214,320.61917 118.127299,320.988476 L118.503957,321.348765 L119.01334,321.242962 C120.327346,320.970031 121.613813,321.813989 121.886744,323.127995 C121.995449,323.651349 121.928561,324.195943 121.696437,324.677436 L121.470742,325.145594 L121.728812,325.597409 C122.394441,326.762759 121.989337,328.247061 120.823987,328.91269 C120.359975,329.177726 119.82154,329.282421 119.292023,329.21057 L118.775569,329.140492 Z" id="Star-1-Copy-16" fill-opacity="0.4" fill="#A3B1BF"></path>
<path d="M432.83752,120.004816 L432.837087,120.005044 L432.837087,120.005044 C432.092472,120.396429 431.171561,120.110079 430.780176,119.365464 C430.624337,119.068978 430.570573,118.729391 430.627206,118.399266 L430.627206,118.399266 L430.627206,118.399266 L430.627206,118.399266 C430.024845,117.812233 430.01242,116.848039 430.599453,116.245678 C430.833262,116.005765 431.139652,115.849637 431.471171,115.801474 L431.471471,115.801431 L431.471471,115.801431 L431.471471,115.801431 C431.843891,115.046982 432.757399,114.737288 433.511848,115.109709 C433.812195,115.25797 434.055308,115.501083 434.20357,115.801431 L434.20357,115.801431 L434.203869,115.801474 L434.203869,115.801474 C435.036229,115.922398 435.612963,116.695187 435.492039,117.527547 C435.443876,117.859067 435.287748,118.165457 435.047835,118.399266 L435.047835,118.399266 L435.047835,118.399266 L435.047835,118.399266 C435.190066,119.228364 434.63325,120.015783 433.804152,120.158014 C433.474027,120.214647 433.134439,120.160883 432.837954,120.005044 L432.83752,120.004816 Z" id="Star-1-Copy-18" fill-opacity="0.4" fill="#A3B1BF" transform="translate(432.837619, 117.566125) rotate(-3.000000) translate(-432.837619, -117.566125) "></path>
<path d="M99.7727703,38.762372 L99.0266308,39.1545584 L99.0266308,39.1545584 C97.8386845,39.7789675 96.36948,39.3221304 95.7450708,38.134184 C95.4964477,37.6611755 95.4106732,37.1194035 95.5010241,36.5927278 L95.6433921,35.7628333 L95.0407812,35.1755563 L95.0407812,35.1755563 C94.0796578,34.2388893 94.059832,32.7004261 94.996499,31.7393027 C95.369563,31.3564979 95.8584376,31.1073808 96.3874089,31.0305329 L97.2206742,30.9094778 L97.5937913,30.1536188 L97.5937913,30.1536188 C98.1878378,28.950202 99.6449697,28.4562097 100.848387,29.0502562 C101.327469,29.2867472 101.715258,29.6745363 101.951749,30.1536188 L102.324866,30.9094778 L103.158132,31.0305329 L103.158132,31.0305329 C104.486241,31.223478 105.406474,32.4565366 105.213529,33.7846464 C105.136681,34.3136177 104.887564,34.8024923 104.504759,35.1755563 L103.902148,35.7628333 L104.044516,36.5927278 L104.044516,36.5927278 C104.27143,37.9154575 103.383095,39.1716915 102.060366,39.398605 C101.53369,39.4889559 100.991918,39.4031814 100.51891,39.1545584 L99.7727703,38.762372 Z" id="Star-1-Copy-19" fill-opacity="0.4" fill="#A3B1BF" transform="translate(99.772928, 34.116388) rotate(19.000000) translate(-99.772928, -34.116388) "></path>
<path d="M396.631073,305.744172 L396.098125,305.608596 C394.797498,305.277731 394.01135,303.955146 394.342215,302.654518 C394.473956,302.136643 394.772729,301.676633 395.192288,301.345694 L395.623376,301.00566 L395.587617,300.458372 C395.500116,299.119176 396.514815,297.962609 397.854012,297.875108 C398.387399,297.840257 398.917395,297.982247 399.361919,298.279089 L399.818473,298.583965 L400.329362,298.380373 C401.576068,297.883555 402.989473,298.491459 403.486291,299.738164 C403.684076,300.23448 403.712777,300.782145 403.567956,301.296416 L403.418882,301.825788 L403.76981,302.247972 C404.627682,303.280038 404.486471,304.812135 403.454406,305.670007 C403.043346,306.011688 402.531095,306.208301 401.996987,306.229395 L401.44896,306.251039 L401.15585,306.715309 C400.439401,307.850123 398.938655,308.189275 397.80384,307.472826 C397.351988,307.187555 397.006767,306.761296 396.821614,306.260029 L396.631073,305.744172 Z" id="Star-1-Copy-20" fill-opacity="0.4" fill="#A3B1BF"></path>
<path d="M439.755536,146.347757 L439.755103,146.347984 L439.755103,146.347984 C439.010488,146.739369 438.089577,146.45302 437.698192,145.708405 C437.542353,145.411919 437.488589,145.072331 437.545222,144.742206 L437.545222,144.742206 L437.545222,144.742206 L437.545222,144.742206 C436.942861,144.155173 436.930436,143.190979 437.517469,142.588619 C437.751277,142.348705 438.057668,142.192577 438.389187,142.144415 L438.389487,142.144371 L438.389487,142.144371 L438.389487,142.144371 C438.761907,141.389923 439.675415,141.080228 440.429864,141.452649 C440.730211,141.600911 440.973324,141.844024 441.121586,142.144371 L441.121586,142.144371 L441.121885,142.144415 L441.121885,142.144415 C441.954245,142.265338 442.530978,143.038128 442.410055,143.870488 C442.361892,144.202007 442.205764,144.508398 441.965851,144.742206 L441.965851,144.742206 L441.965851,144.742206 L441.965851,144.742206 C442.108082,145.571305 441.551266,146.358723 440.722168,146.500955 C440.392043,146.557588 440.052455,146.503823 439.755969,146.347984 L439.755536,146.347757 Z" id="Star-1-Copy-21" fill-opacity="0.4" fill="#A3B1BF" transform="translate(439.755635, 143.909066) rotate(-12.000000) translate(-439.755635, -143.909066) "></path>
<path d="M244.621971,220.61341 C277.15945,220.61341 303.536288,194.242112 303.536288,161.711467 C303.536288,129.180822 277.15945,102.809524 244.621971,102.809524 C212.084491,102.809524 185.707653,129.180822 185.707653,161.711467 C185.707653,194.242112 212.084491,220.61341 244.621971,220.61341 Z" id="Oval-8-Copy-2" fill-opacity="0.66" fill="#A3B1BF"></path>
<path d="M245.345696,141.060063 C241.146656,141.060063 237.880736,142.342349 235.547936,144.906921 C233.215136,147.354921 232.107056,150.618921 232.107056,154.698921 L236.714336,154.698921 C236.714336,151.842921 237.355856,149.628063 238.638896,147.996063 C240.038576,146.072635 242.196416,145.140063 245.112416,145.140063 C247.561856,145.140063 249.486416,145.781206 250.827776,147.180063 C252.110816,148.462349 252.810656,150.269206 252.810656,152.600635 C252.810656,154.232635 252.227456,155.748063 251.061056,157.205206 C250.711136,157.671492 250.011296,158.370921 249.078176,159.303492 C245.928896,162.101206 244.004336,164.316063 243.187856,166.064635 C242.488016,167.521778 242.138096,169.212063 242.138096,171.135492 L242.138096,172.476063 L246.803696,172.476063 L246.803696,171.135492 C246.803696,169.561778 247.153616,168.162921 247.911776,166.880635 C248.494976,165.831492 249.369776,164.782349 250.652816,163.674921 C253.218896,161.401778 254.793536,159.886349 255.376736,159.186921 C256.834736,157.263492 257.592896,154.990349 257.592896,152.367492 C257.592896,148.870349 256.484816,146.130921 254.326976,144.149206 C252.052496,142.050921 249.078176,141.060063 245.345696,141.060063 Z M244.470896,176.556063 C243.479456,176.556063 242.662976,176.847492 241.963136,177.546921 C241.263296,178.188063 240.971696,179.004063 240.971696,179.994921 C240.971696,180.985778 241.263296,181.801778 241.963136,182.501206 C242.662976,183.142349 243.479456,183.492063 244.470896,183.492063 C245.462336,183.492063 246.278816,183.142349 246.978656,182.501206 C247.678496,181.860063 248.028416,181.044063 248.028416,179.994921 C248.028416,179.004063 247.678496,178.188063 247.036976,177.546921 C246.337136,176.847492 245.462336,176.556063 244.470896,176.556063 Z" id="" fill="#FFFFFF"></path>
<path d="M223.261662,133.139924 C229.077338,129.782947 239.631808,125.828273 236.274126,120.013819 C232.916444,114.199364 220.565868,115.043746 214.750193,118.400722 C208.934517,121.757699 202.729834,131.623951 206.087516,137.438405 C209.445198,143.252859 217.445986,136.4969 223.261662,133.139924" id="Oval-8-Copy-2" fill="#FAFAFA"></path>
<path d="M249.679003,119.820589 C252.365149,119.820589 254.5427,117.643495 254.5427,114.957913 C254.5427,112.272332 252.365149,110.095238 249.679003,110.095238 C246.992857,110.095238 244.815306,112.272332 244.815306,114.957913 C244.815306,117.643495 246.992857,119.820589 249.679003,119.820589 Z" id="Oval-10-Copy" fill="#FAFAFA"></path>
<path d="M421.5,321.5 L423,323" id="Line-2" stroke="#979797" stroke-linecap="square"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 87 KiB

208
public/img/bg/500.svg Normal file
View File

@ -0,0 +1,208 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="422px" height="193px" viewBox="0 0 422 193" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
<title>Group 4</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Ant-Design-Pro-3.0" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="500" transform="translate(-477.000000, -299.000000)">
<g id="Group-4" transform="translate(479.000000, 290.000000)">
<polygon id="Fill-1" fill-opacity="0.25" fill="#A3B1BF" opacity="0.900000036" transform="translate(271.351592, 80.180646) rotate(90.000000) translate(-271.351592, -80.180646) " points="214.065678 134.970601 328.637506 134.970601 328.637506 25.3906904 214.065678 25.3906904"></polygon>
<polygon id="Stroke-2" stroke="#A3B1BF" stroke-width="1.62" transform="translate(271.351592, 80.180646) rotate(90.000000) translate(-271.351592, -80.180646) " points="214.065678 134.970601 328.637506 134.970601 328.637506 25.3906904 214.065678 25.3906904"></polygon>
<path d="M276.053859,94.8252648 C271.491929,94.8252648 267.759441,91.0782313 267.759441,86.4985238 L267.759441,73.9594928 C267.759441,69.3797853 271.491929,65.6327519 276.053859,65.6327519 L393.542211,65.6327519 C398.104141,65.6327519 401.836629,69.3797853 401.836629,73.9594928 L401.836629,86.4985238 C401.836629,91.0782313 398.104141,94.8252648 393.542211,94.8252648 L276.053859,94.8252648 Z" id="Fill-3" fill="#F0F2F5" transform="translate(334.798035, 80.229008) rotate(90.000000) translate(-334.798035, -80.229008) "></path>
<path d="M276.053859,94.8252648 C271.491929,94.8252648 267.759441,91.0782313 267.759441,86.4985238 L267.759441,73.9594928 C267.759441,69.3797853 271.491929,65.6327519 276.053859,65.6327519 L393.542211,65.6327519 C398.104141,65.6327519 401.836629,69.3797853 401.836629,73.9594928 L401.836629,86.4985238 C401.836629,91.0782313 398.104141,94.8252648 393.542211,94.8252648 L276.053859,94.8252648 L276.053859,94.8252648 Z" id="Stroke-5" stroke="#A3B1BF" stroke-width="1.62" transform="translate(334.798035, 80.229008) rotate(90.000000) translate(-334.798035, -80.229008) "></path>
<path d="M373.091719,31.232323 C373.091719,32.058752 372.424019,32.7290547 371.600798,32.7290547 C370.77654,32.7290547 370.108839,32.058752 370.108839,31.232323 C370.108839,30.405894 370.77654,29.7355913 371.600798,29.7355913 C372.424019,29.7355913 373.091719,30.405894 373.091719,31.232323 L356.360842,4.74110287 L349.082491,-8.6444393" id="Fill-7" transform="translate(361.087105, 12.042308) rotate(90.000000) translate(-361.087105, -12.042308) "></path>
<path d="M343.448596,22.5884924 C343.448596,23.4149215 342.780895,24.0852241 341.957674,24.0852241 C341.133416,24.0852241 340.465716,23.4149215 340.465716,22.5884924 C340.465716,21.7620634 341.133416,21.0917607 341.957674,21.0917607 C342.780895,21.0917607 343.448596,21.7620634 343.448596,22.5884924 L343.448596,22.5884924 Z" id="Stroke-9" stroke="#A3B1BF" stroke-width="0.81" transform="translate(341.957156, 22.588492) rotate(90.000000) translate(-341.957156, -22.588492) "></path>
<path d="M343.448596,31.5121872 C343.448596,32.3386162 342.780895,33.0089189 341.957674,33.0089189 C341.133416,33.0089189 340.465716,32.3386162 340.465716,31.5121872 C340.465716,30.6857582 341.133416,30.0154555 341.957674,30.0154555 C342.780895,30.0154555 343.448596,30.6857582 343.448596,31.5121872" id="Fill-11" fill="#FFFFFF" transform="translate(341.957156, 31.512187) rotate(90.000000) translate(-341.957156, -31.512187) "></path>
<path d="M343.448596,31.5121872 C343.448596,32.3386162 342.780895,33.0089189 341.957674,33.0089189 C341.133416,33.0089189 340.465716,32.3386162 340.465716,31.5121872 C340.465716,30.6857582 341.133416,30.0154555 341.957674,30.0154555 C342.780895,30.0154555 343.448596,30.6857582 343.448596,31.5121872 L343.448596,31.5121872 Z" id="Stroke-13" stroke="#A3B1BF" stroke-width="0.81" transform="translate(341.957156, 31.512187) rotate(90.000000) translate(-341.957156, -31.512187) "></path>
<path d="M343.448596,40.435882 C343.448596,41.262311 342.780895,41.9326137 341.957674,41.9326137 C341.133416,41.9326137 340.465716,41.262311 340.465716,40.435882 C340.465716,39.609453 341.133416,38.9391503 341.957674,38.9391503 C342.780895,38.9391503 343.448596,39.609453 343.448596,40.435882" id="Fill-15" fill="#FFFFFF" transform="translate(341.957156, 40.435882) rotate(90.000000) translate(-341.957156, -40.435882) "></path>
<path d="M343.448596,40.435882 C343.448596,41.262311 342.780895,41.9326137 341.957674,41.9326137 C341.133416,41.9326137 340.465716,41.262311 340.465716,40.435882 C340.465716,39.609453 341.133416,38.9391503 341.957674,38.9391503 C342.780895,38.9391503 343.448596,39.609453 343.448596,40.435882 L343.448596,40.435882 Z" id="Stroke-17" stroke="#A3B1BF" stroke-width="0.81" transform="translate(341.957156, 40.435882) rotate(90.000000) translate(-341.957156, -40.435882) "></path>
<path d="M343.448596,49.3595768 C343.448596,50.1860058 342.780895,50.8563085 341.957674,50.8563085 C341.133416,50.8563085 340.465716,50.1860058 340.465716,49.3595768 C340.465716,48.5331477 341.133416,47.8628451 341.957674,47.8628451 C342.780895,47.8628451 343.448596,48.5331477 343.448596,49.3595768" id="Fill-19" fill="#FFFFFF" transform="translate(341.957156, 49.359577) rotate(90.000000) translate(-341.957156, -49.359577) "></path>
<path d="M343.448596,49.3595768 C343.448596,50.1860058 342.780895,50.8563085 341.957674,50.8563085 C341.133416,50.8563085 340.465716,50.1860058 340.465716,49.3595768 C340.465716,48.5331477 341.133416,47.8628451 341.957674,47.8628451 C342.780895,47.8628451 343.448596,48.5331477 343.448596,49.3595768 L343.448596,49.3595768 Z" id="Stroke-21" stroke="#A3B1BF" stroke-width="0.81" transform="translate(341.957156, 49.359577) rotate(90.000000) translate(-341.957156, -49.359577) "></path>
<path d="M343.448596,58.2832715 C343.448596,59.1097006 342.780895,59.7800032 341.957674,59.7800032 C341.133416,59.7800032 340.465716,59.1097006 340.465716,58.2832715 C340.465716,57.4568425 341.133416,56.7865399 341.957674,56.7865399 C342.780895,56.7865399 343.448596,57.4568425 343.448596,58.2832715" id="Fill-23" fill="#FFFFFF" transform="translate(341.957156, 58.283272) rotate(90.000000) translate(-341.957156, -58.283272) "></path>
<path d="M343.448596,58.2832715 C343.448596,59.1097006 342.780895,59.7800032 341.957674,59.7800032 C341.133416,59.7800032 340.465716,59.1097006 340.465716,58.2832715 C340.465716,57.4568425 341.133416,56.7865399 341.957674,56.7865399 C342.780895,56.7865399 343.448596,57.4568425 343.448596,58.2832715 L343.448596,58.2832715 Z" id="Stroke-25" stroke="#A3B1BF" stroke-width="0.81" transform="translate(341.957156, 58.283272) rotate(90.000000) translate(-341.957156, -58.283272) "></path>
<path d="M343.448596,67.2069663 C343.448596,68.0333954 342.780895,68.703698 341.957674,68.703698 C341.133416,68.703698 340.465716,68.0333954 340.465716,67.2069663 C340.465716,66.3805373 341.133416,65.7102346 341.957674,65.7102346 C342.780895,65.7102346 343.448596,66.3805373 343.448596,67.2069663" id="Fill-27" fill="#FFFFFF" transform="translate(341.957156, 67.206966) rotate(90.000000) translate(-341.957156, -67.206966) "></path>
<path d="M343.448596,67.2069663 C343.448596,68.0333954 342.780895,68.703698 341.957674,68.703698 C341.133416,68.703698 340.465716,68.0333954 340.465716,67.2069663 C340.465716,66.3805373 341.133416,65.7102346 341.957674,65.7102346 C342.780895,65.7102346 343.448596,66.3805373 343.448596,67.2069663 L343.448596,67.2069663 Z" id="Stroke-29" stroke="#A3B1BF" stroke-width="0.81" transform="translate(341.957156, 67.206966) rotate(90.000000) translate(-341.957156, -67.206966) "></path>
<path d="M327.400971,24.0852241 C326.576713,24.0852241 325.909013,23.4149215 325.909013,22.5884924 C325.909013,21.7620634 326.576713,21.0917607 327.400971,21.0917607 C328.224192,21.0917607 328.891893,21.7620634 328.891893,22.5884924 C328.891893,23.4149215 328.224192,24.0852241 327.400971,24.0852241 Z" id="Fill-31" fill="#FFFFFF" transform="translate(327.400453, 22.588492) rotate(90.000000) translate(-327.400453, -22.588492) "></path>
<path d="M328.891893,22.5884924 C328.891893,23.4149215 328.224192,24.0852241 327.400971,24.0852241 C326.576713,24.0852241 325.909013,23.4149215 325.909013,22.5884924 C325.909013,21.7620634 326.576713,21.0917607 327.400971,21.0917607 C328.224192,21.0917607 328.891893,21.7620634 328.891893,22.5884924 L328.891893,22.5884924 Z" id="Stroke-33" stroke="#A3B1BF" stroke-width="0.81" transform="translate(327.400453, 22.588492) rotate(90.000000) translate(-327.400453, -22.588492) "></path>
<path d="M328.891893,31.5121872 C328.891893,32.3386162 328.224192,33.0089189 327.400971,33.0089189 C326.576713,33.0089189 325.909013,32.3386162 325.909013,31.5121872 C325.909013,30.6857582 326.576713,30.0154555 327.400971,30.0154555 C328.224192,30.0154555 328.891893,30.6857582 328.891893,31.5121872" id="Fill-35" fill="#FFFFFF" transform="translate(327.400453, 31.512187) rotate(90.000000) translate(-327.400453, -31.512187) "></path>
<path d="M328.891893,31.5121872 C328.891893,32.3386162 328.224192,33.0089189 327.400971,33.0089189 C326.576713,33.0089189 325.909013,32.3386162 325.909013,31.5121872 C325.909013,30.6857582 326.576713,30.0154555 327.400971,30.0154555 C328.224192,30.0154555 328.891893,30.6857582 328.891893,31.5121872 L328.891893,31.5121872 Z" id="Stroke-37" stroke="#A3B1BF" stroke-width="0.81" transform="translate(327.400453, 31.512187) rotate(90.000000) translate(-327.400453, -31.512187) "></path>
<path d="M328.891893,40.435882 C328.891893,41.262311 328.224192,41.9326137 327.400971,41.9326137 C326.576713,41.9326137 325.909013,41.262311 325.909013,40.435882 C325.909013,39.609453 326.576713,38.9391503 327.400971,38.9391503 C328.224192,38.9391503 328.891893,39.609453 328.891893,40.435882" id="Fill-39" fill="#FFFFFF" transform="translate(327.400453, 40.435882) rotate(90.000000) translate(-327.400453, -40.435882) "></path>
<path d="M328.891893,40.435882 C328.891893,41.262311 328.224192,41.9326137 327.400971,41.9326137 C326.576713,41.9326137 325.909013,41.262311 325.909013,40.435882 C325.909013,39.609453 326.576713,38.9391503 327.400971,38.9391503 C328.224192,38.9391503 328.891893,39.609453 328.891893,40.435882 L328.891893,40.435882 Z" id="Stroke-41" stroke="#A3B1BF" stroke-width="0.81" transform="translate(327.400453, 40.435882) rotate(90.000000) translate(-327.400453, -40.435882) "></path>
<path d="M328.891893,49.3595768 C328.891893,50.1860058 328.224192,50.8563085 327.400971,50.8563085 C326.576713,50.8563085 325.909013,50.1860058 325.909013,49.3595768 C325.909013,48.5331477 326.576713,47.8628451 327.400971,47.8628451 C328.224192,47.8628451 328.891893,48.5331477 328.891893,49.3595768" id="Fill-43" fill="#FFFFFF" transform="translate(327.400453, 49.359577) rotate(90.000000) translate(-327.400453, -49.359577) "></path>
<path d="M328.891893,49.3595768 C328.891893,50.1860058 328.224192,50.8563085 327.400971,50.8563085 C326.576713,50.8563085 325.909013,50.1860058 325.909013,49.3595768 C325.909013,48.5331477 326.576713,47.8628451 327.400971,47.8628451 C328.224192,47.8628451 328.891893,48.5331477 328.891893,49.3595768 L328.891893,49.3595768 Z" id="Stroke-45" stroke="#A3B1BF" stroke-width="0.81" transform="translate(327.400453, 49.359577) rotate(90.000000) translate(-327.400453, -49.359577) "></path>
<path d="M328.891893,58.2832715 C328.891893,59.1097006 328.224192,59.7800032 327.400971,59.7800032 C326.576713,59.7800032 325.909013,59.1097006 325.909013,58.2832715 C325.909013,57.4568425 326.576713,56.7865399 327.400971,56.7865399 C328.224192,56.7865399 328.891893,57.4568425 328.891893,58.2832715" id="Fill-47" fill="#FFFFFF" transform="translate(327.400453, 58.283272) rotate(90.000000) translate(-327.400453, -58.283272) "></path>
<path d="M328.891893,58.2832715 C328.891893,59.1097006 328.224192,59.7800032 327.400971,59.7800032 C326.576713,59.7800032 325.909013,59.1097006 325.909013,58.2832715 C325.909013,57.4568425 326.576713,56.7865399 327.400971,56.7865399 C328.224192,56.7865399 328.891893,57.4568425 328.891893,58.2832715 L328.891893,58.2832715 Z" id="Stroke-49" stroke="#A3B1BF" stroke-width="0.81" transform="translate(327.400453, 58.283272) rotate(90.000000) translate(-327.400453, -58.283272) "></path>
<path d="M328.891893,67.2069663 C328.891893,68.0333954 328.224192,68.703698 327.400971,68.703698 C326.576713,68.703698 325.909013,68.0333954 325.909013,67.2069663 C325.909013,66.3805373 326.576713,65.7102346 327.400971,65.7102346 C328.224192,65.7102346 328.891893,66.3805373 328.891893,67.2069663" id="Fill-51" fill="#FFFFFF" transform="translate(327.400453, 67.206966) rotate(90.000000) translate(-327.400453, -67.206966) "></path>
<path d="M328.891893,67.2069663 C328.891893,68.0333954 328.224192,68.703698 327.400971,68.703698 C326.576713,68.703698 325.909013,68.0333954 325.909013,67.2069663 C325.909013,66.3805373 326.576713,65.7102346 327.400971,65.7102346 C328.224192,65.7102346 328.891893,66.3805373 328.891893,67.2069663 L328.891893,67.2069663 Z" id="Stroke-53" stroke="#A3B1BF" stroke-width="0.81" transform="translate(327.400453, 67.206966) rotate(90.000000) translate(-327.400453, -67.206966) "></path>
<path d="M334.679323,28.141449 C333.855065,28.141449 333.187364,27.4711464 333.187364,26.6447173 C333.187364,25.8182883 333.855065,25.1479856 334.679323,25.1479856 C335.502544,25.1479856 336.170244,25.8182883 336.170244,26.6447173 C336.170244,27.4711464 335.502544,28.141449 334.679323,28.141449 Z" id="Fill-55" fill="#FFFFFF" transform="translate(334.678804, 26.644717) rotate(90.000000) translate(-334.678804, -26.644717) "></path>
<path d="M336.170244,26.6447173 C336.170244,27.4711464 335.502544,28.141449 334.679323,28.141449 C333.855065,28.141449 333.187364,27.4711464 333.187364,26.6447173 C333.187364,25.8182883 333.855065,25.1479856 334.679323,25.1479856 C335.502544,25.1479856 336.170244,25.8182883 336.170244,26.6447173 L336.170244,26.6447173 Z" id="Stroke-57" stroke="#A3B1BF" stroke-width="0.81" transform="translate(334.678804, 26.644717) rotate(90.000000) translate(-334.678804, -26.644717) "></path>
<path d="M336.170244,35.5684121 C336.170244,36.3948411 335.502544,37.0651438 334.679323,37.0651438 C333.855065,37.0651438 333.187364,36.3948411 333.187364,35.5684121 C333.187364,34.7419831 333.855065,34.0716804 334.679323,34.0716804 C335.502544,34.0716804 336.170244,34.7419831 336.170244,35.5684121" id="Fill-59" fill="#FFFFFF" transform="translate(334.678804, 35.568412) rotate(90.000000) translate(-334.678804, -35.568412) "></path>
<path d="M336.170244,35.5684121 C336.170244,36.3948411 335.502544,37.0651438 334.679323,37.0651438 C333.855065,37.0651438 333.187364,36.3948411 333.187364,35.5684121 C333.187364,34.7419831 333.855065,34.0716804 334.679323,34.0716804 C335.502544,34.0716804 336.170244,34.7419831 336.170244,35.5684121 L336.170244,35.5684121 Z" id="Stroke-61" stroke="#A3B1BF" stroke-width="0.81" transform="translate(334.678804, 35.568412) rotate(90.000000) translate(-334.678804, -35.568412) "></path>
<path d="M336.170244,44.4921069 C336.170244,45.3185359 335.502544,45.9888386 334.679323,45.9888386 C333.855065,45.9888386 333.187364,45.3185359 333.187364,44.4921069 C333.187364,43.6656779 333.855065,42.9953752 334.679323,42.9953752 C335.502544,42.9953752 336.170244,43.6656779 336.170244,44.4921069" id="Fill-63" fill="#FFFFFF" transform="translate(334.678804, 44.492107) rotate(90.000000) translate(-334.678804, -44.492107) "></path>
<path d="M336.170244,44.4921069 C336.170244,45.3185359 335.502544,45.9888386 334.679323,45.9888386 C333.855065,45.9888386 333.187364,45.3185359 333.187364,44.4921069 C333.187364,43.6656779 333.855065,42.9953752 334.679323,42.9953752 C335.502544,42.9953752 336.170244,43.6656779 336.170244,44.4921069 L336.170244,44.4921069 Z" id="Stroke-65" stroke="#A3B1BF" stroke-width="0.81" transform="translate(334.678804, 44.492107) rotate(90.000000) translate(-334.678804, -44.492107) "></path>
<path d="M336.170244,53.4158017 C336.170244,54.2422307 335.502544,54.9125333 334.679323,54.9125333 C333.855065,54.9125333 333.187364,54.2422307 333.187364,53.4158017 C333.187364,52.5893726 333.855065,51.91907 334.679323,51.91907 C335.502544,51.91907 336.170244,52.5893726 336.170244,53.4158017" id="Fill-67" fill="#FFFFFF" transform="translate(334.678804, 53.415802) rotate(90.000000) translate(-334.678804, -53.415802) "></path>
<path d="M336.170244,53.4158017 C336.170244,54.2422307 335.502544,54.9125333 334.679323,54.9125333 C333.855065,54.9125333 333.187364,54.2422307 333.187364,53.4158017 C333.187364,52.5893726 333.855065,51.91907 334.679323,51.91907 C335.502544,51.91907 336.170244,52.5893726 336.170244,53.4158017 L336.170244,53.4158017 Z" id="Stroke-69" stroke="#A3B1BF" stroke-width="0.81" transform="translate(334.678804, 53.415802) rotate(90.000000) translate(-334.678804, -53.415802) "></path>
<path d="M336.170244,62.3394964 C336.170244,63.1659255 335.502544,63.8362281 334.679323,63.8362281 C333.855065,63.8362281 333.187364,63.1659255 333.187364,62.3394964 C333.187364,61.5130674 333.855065,60.8427648 334.679323,60.8427648 C335.502544,60.8427648 336.170244,61.5130674 336.170244,62.3394964" id="Fill-71" fill="#FFFFFF" transform="translate(334.678804, 62.339496) rotate(90.000000) translate(-334.678804, -62.339496) "></path>
<path d="M336.170244,62.3394964 C336.170244,63.1659255 335.502544,63.8362281 334.679323,63.8362281 C333.855065,63.8362281 333.187364,63.1659255 333.187364,62.3394964 C333.187364,61.5130674 333.855065,60.8427648 334.679323,60.8427648 C335.502544,60.8427648 336.170244,61.5130674 336.170244,62.3394964 L336.170244,62.3394964 Z" id="Stroke-73" stroke="#A3B1BF" stroke-width="0.81" transform="translate(334.678804, 62.339496) rotate(90.000000) translate(-334.678804, -62.339496) "></path>
<path d="M336.170244,71.2631912 C336.170244,72.0896203 335.502544,72.7599229 334.679323,72.7599229 C333.855065,72.7599229 333.187364,72.0896203 333.187364,71.2631912 C333.187364,70.4367622 333.855065,69.7664595 334.679323,69.7664595 C335.502544,69.7664595 336.170244,70.4367622 336.170244,71.2631912" id="Fill-75" fill="#FFFFFF" transform="translate(334.678804, 71.263191) rotate(90.000000) translate(-334.678804, -71.263191) "></path>
<path d="M336.170244,71.2631912 C336.170244,72.0896203 335.502544,72.7599229 334.679323,72.7599229 C333.855065,72.7599229 333.187364,72.0896203 333.187364,71.2631912 C333.187364,70.4367622 333.855065,69.7664595 334.679323,69.7664595 C335.502544,69.7664595 336.170244,70.4367622 336.170244,71.2631912 L336.170244,71.2631912 Z" id="Stroke-77" stroke="#A3B1BF" stroke-width="0.81" transform="translate(334.678804, 71.263191) rotate(90.000000) translate(-334.678804, -71.263191) "></path>
<path d="M335.089444,136.046978 C332.700651,136.046978 330.763905,134.102684 330.763905,131.704582 C330.763905,129.306481 332.700651,127.362187 335.089444,127.362187 C337.478236,127.362187 339.414983,129.306481 339.414983,131.704582 C339.414983,134.102684 337.478236,136.046978 335.089444,136.046978 Z" id="Fill-79" fill="#A3B1BF" transform="translate(335.089444, 131.704582) rotate(90.000000) translate(-335.089444, -131.704582) "></path>
<path d="M307.865544,121.56038 C307.865544,122.386809 307.197843,123.057112 306.374622,123.057112 C305.550365,123.057112 304.882664,122.386809 304.882664,121.56038 C304.882664,120.733951 305.550365,120.063648 306.374622,120.063648 C307.197843,120.063648 307.865544,120.733951 307.865544,121.56038" id="Fill-81" fill="#F5F5F5" transform="translate(306.374104, 121.560380) rotate(90.000000) translate(-306.374104, -121.560380) "></path>
<path d="M307.865544,121.56038 C307.865544,122.386809 307.197843,123.057112 306.374622,123.057112 C305.550365,123.057112 304.882664,122.386809 304.882664,121.56038 C304.882664,120.733951 305.550365,120.063648 306.374622,120.063648 C307.197843,120.063648 307.865544,120.733951 307.865544,121.56038 L307.865544,121.56038 Z" id="Stroke-83" stroke="#A3B1BF" stroke-width="0.81" transform="translate(306.374104, 121.560380) rotate(90.000000) translate(-306.374104, -121.560380) "></path>
<path d="M294.117547,121.56038 C294.117547,122.386809 293.449846,123.057112 292.626625,123.057112 C291.802367,123.057112 291.134667,122.386809 291.134667,121.56038 C291.134667,120.733951 291.802367,120.063648 292.626625,120.063648 C293.449846,120.063648 294.117547,120.733951 294.117547,121.56038" id="Fill-85" fill="#F5F5F5" transform="translate(292.626107, 121.560380) rotate(90.000000) translate(-292.626107, -121.560380) "></path>
<path d="M294.117547,121.56038 C294.117547,122.386809 293.449846,123.057112 292.626625,123.057112 C291.802367,123.057112 291.134667,122.386809 291.134667,121.56038 C291.134667,120.733951 291.802367,120.063648 292.626625,120.063648 C293.449846,120.063648 294.117547,120.733951 294.117547,121.56038 L294.117547,121.56038 Z" id="Stroke-87" stroke="#A3B1BF" stroke-width="0.81" transform="translate(292.626107, 121.560380) rotate(90.000000) translate(-292.626107, -121.560380) "></path>
<path d="M307.865544,38.813392 C307.865544,39.6398211 307.197843,40.3101237 306.374622,40.3101237 C305.550365,40.3101237 304.882664,39.6398211 304.882664,38.813392 C304.882664,37.986963 305.550365,37.3166603 306.374622,37.3166603 C307.197843,37.3166603 307.865544,37.986963 307.865544,38.813392" id="Fill-89" fill="#F5F5F5" transform="translate(306.374104, 38.813392) rotate(90.000000) translate(-306.374104, -38.813392) "></path>
<path d="M307.865544,38.813392 C307.865544,39.6398211 307.197843,40.3101237 306.374622,40.3101237 C305.550365,40.3101237 304.882664,39.6398211 304.882664,38.813392 C304.882664,37.986963 305.550365,37.3166603 306.374622,37.3166603 C307.197843,37.3166603 307.865544,37.986963 307.865544,38.813392 L307.865544,38.813392 Z" id="Stroke-91" stroke="#A3B1BF" stroke-width="0.81" transform="translate(306.374104, 38.813392) rotate(90.000000) translate(-306.374104, -38.813392) "></path>
<path d="M294.117547,38.813392 C294.117547,39.6398211 293.449846,40.3101237 292.626625,40.3101237 C291.802367,40.3101237 291.134667,39.6398211 291.134667,38.813392 C291.134667,37.986963 291.802367,37.3166603 292.626625,37.3166603 C293.449846,37.3166603 294.117547,37.986963 294.117547,38.813392" id="Fill-93" fill="#F5F5F5" transform="translate(292.626107, 38.813392) rotate(90.000000) translate(-292.626107, -38.813392) "></path>
<path d="M294.117547,38.813392 C294.117547,39.6398211 293.449846,40.3101237 292.626625,40.3101237 C291.802367,40.3101237 291.134667,39.6398211 291.134667,38.813392 C291.134667,37.986963 291.802367,37.3166603 292.626625,37.3166603 C293.449846,37.3166603 294.117547,37.986963 294.117547,38.813392 L294.117547,38.813392 Z" id="Stroke-95" stroke="#A3B1BF" stroke-width="0.81" transform="translate(292.626107, 38.813392) rotate(90.000000) translate(-292.626107, -38.813392) "></path>
<path d="M205.696461,94.8252648 C201.134531,94.8252648 197.402043,91.0782313 197.402043,86.4985238 L197.402043,73.9594928 C197.402043,69.3797853 201.134531,65.6327519 205.696461,65.6327519 L323.184813,65.6327519 C327.746743,65.6327519 331.479231,69.3797853 331.479231,73.9594928 L331.479231,86.4985238 C331.479231,91.0782313 327.746743,94.8252648 323.184813,94.8252648 L205.696461,94.8252648 Z" id="Fill-97" fill="#F0F2F5" transform="translate(264.440637, 80.229008) rotate(90.000000) translate(-264.440637, -80.229008) "></path>
<path d="M205.696461,94.8252648 C201.134531,94.8252648 197.402043,91.0782313 197.402043,86.4985238 L197.402043,73.9594928 C197.402043,69.3797853 201.134531,65.6327519 205.696461,65.6327519 L323.184813,65.6327519 C327.746743,65.6327519 331.479231,69.3797853 331.479231,73.9594928 L331.479231,86.4985238 C331.479231,91.0782313 327.746743,94.8252648 323.184813,94.8252648 L205.696461,94.8252648 L205.696461,94.8252648 Z" id="Stroke-99" stroke="#A3B1BF" stroke-width="1.62" transform="translate(264.440637, 80.229008) rotate(90.000000) translate(-264.440637, -80.229008) "></path>
<path d="M273.091198,22.5884924 C273.091198,23.4149215 272.423497,24.0852241 271.600276,24.0852241 C270.776019,24.0852241 270.108318,23.4149215 270.108318,22.5884924 C270.108318,21.7620634 270.776019,21.0917607 271.600276,21.0917607 C272.423497,21.0917607 273.091198,21.7620634 273.091198,22.5884924" id="Fill-101" fill="#FFFFFF" transform="translate(271.599758, 22.588492) rotate(90.000000) translate(-271.599758, -22.588492) "></path>
<path d="M273.091198,22.5884924 C273.091198,23.4149215 272.423497,24.0852241 271.600276,24.0852241 C270.776019,24.0852241 270.108318,23.4149215 270.108318,22.5884924 C270.108318,21.7620634 270.776019,21.0917607 271.600276,21.0917607 C272.423497,21.0917607 273.091198,21.7620634 273.091198,22.5884924 L273.091198,22.5884924 Z" id="Stroke-103" stroke="#A3B1BF" stroke-width="0.81" transform="translate(271.599758, 22.588492) rotate(90.000000) translate(-271.599758, -22.588492) "></path>
<path d="M273.091198,31.5121872 C273.091198,32.3386162 272.423497,33.0089189 271.600276,33.0089189 C270.776019,33.0089189 270.108318,32.3386162 270.108318,31.5121872 C270.108318,30.6857582 270.776019,30.0154555 271.600276,30.0154555 C272.423497,30.0154555 273.091198,30.6857582 273.091198,31.5121872" id="Fill-105" fill="#FFFFFF" transform="translate(271.599758, 31.512187) rotate(90.000000) translate(-271.599758, -31.512187) "></path>
<path d="M273.091198,31.5121872 C273.091198,32.3386162 272.423497,33.0089189 271.600276,33.0089189 C270.776019,33.0089189 270.108318,32.3386162 270.108318,31.5121872 C270.108318,30.6857582 270.776019,30.0154555 271.600276,30.0154555 C272.423497,30.0154555 273.091198,30.6857582 273.091198,31.5121872 L273.091198,31.5121872 Z" id="Stroke-107" stroke="#A3B1BF" stroke-width="0.81" transform="translate(271.599758, 31.512187) rotate(90.000000) translate(-271.599758, -31.512187) "></path>
<path d="M273.091198,40.435882 C273.091198,41.262311 272.423497,41.9326137 271.600276,41.9326137 C270.776019,41.9326137 270.108318,41.262311 270.108318,40.435882 C270.108318,39.609453 270.776019,38.9391503 271.600276,38.9391503 C272.423497,38.9391503 273.091198,39.609453 273.091198,40.435882" id="Fill-109" fill="#FFFFFF" transform="translate(271.599758, 40.435882) rotate(90.000000) translate(-271.599758, -40.435882) "></path>
<path d="M273.091198,40.435882 C273.091198,41.262311 272.423497,41.9326137 271.600276,41.9326137 C270.776019,41.9326137 270.108318,41.262311 270.108318,40.435882 C270.108318,39.609453 270.776019,38.9391503 271.600276,38.9391503 C272.423497,38.9391503 273.091198,39.609453 273.091198,40.435882 L273.091198,40.435882 Z" id="Stroke-111" stroke="#A3B1BF" stroke-width="0.81" transform="translate(271.599758, 40.435882) rotate(90.000000) translate(-271.599758, -40.435882) "></path>
<path d="M273.091198,49.3595768 C273.091198,50.1860058 272.423497,50.8563085 271.600276,50.8563085 C270.776019,50.8563085 270.108318,50.1860058 270.108318,49.3595768 C270.108318,48.5331477 270.776019,47.8628451 271.600276,47.8628451 C272.423497,47.8628451 273.091198,48.5331477 273.091198,49.3595768" id="Fill-113" fill="#FFFFFF" transform="translate(271.599758, 49.359577) rotate(90.000000) translate(-271.599758, -49.359577) "></path>
<path d="M273.091198,49.3595768 C273.091198,50.1860058 272.423497,50.8563085 271.600276,50.8563085 C270.776019,50.8563085 270.108318,50.1860058 270.108318,49.3595768 C270.108318,48.5331477 270.776019,47.8628451 271.600276,47.8628451 C272.423497,47.8628451 273.091198,48.5331477 273.091198,49.3595768 L273.091198,49.3595768 Z" id="Stroke-115" stroke="#A3B1BF" stroke-width="0.81" transform="translate(271.599758, 49.359577) rotate(90.000000) translate(-271.599758, -49.359577) "></path>
<path d="M273.091198,58.2832715 C273.091198,59.1097006 272.423497,59.7800032 271.600276,59.7800032 C270.776019,59.7800032 270.108318,59.1097006 270.108318,58.2832715 C270.108318,57.4568425 270.776019,56.7865399 271.600276,56.7865399 C272.423497,56.7865399 273.091198,57.4568425 273.091198,58.2832715" id="Fill-117" fill="#FFFFFF" transform="translate(271.599758, 58.283272) rotate(90.000000) translate(-271.599758, -58.283272) "></path>
<path d="M273.091198,58.2832715 C273.091198,59.1097006 272.423497,59.7800032 271.600276,59.7800032 C270.776019,59.7800032 270.108318,59.1097006 270.108318,58.2832715 C270.108318,57.4568425 270.776019,56.7865399 271.600276,56.7865399 C272.423497,56.7865399 273.091198,57.4568425 273.091198,58.2832715 L273.091198,58.2832715 Z" id="Stroke-119" stroke="#A3B1BF" stroke-width="0.81" transform="translate(271.599758, 58.283272) rotate(90.000000) translate(-271.599758, -58.283272) "></path>
<path d="M271.600276,68.703698 C270.776019,68.703698 270.108318,68.0333954 270.108318,67.2069663 C270.108318,66.3805373 270.776019,65.7102346 271.600276,65.7102346 C272.423497,65.7102346 273.091198,66.3805373 273.091198,67.2069663 C273.091198,68.0333954 272.423497,68.703698 271.600276,68.703698 Z" id="Fill-121" fill="#FFFFFF" transform="translate(271.599758, 67.206966) rotate(90.000000) translate(-271.599758, -67.206966) "></path>
<path d="M273.091198,67.2069663 C273.091198,68.0333954 272.423497,68.703698 271.600276,68.703698 C270.776019,68.703698 270.108318,68.0333954 270.108318,67.2069663 C270.108318,66.3805373 270.776019,65.7102346 271.600276,65.7102346 C272.423497,65.7102346 273.091198,66.3805373 273.091198,67.2069663 L273.091198,67.2069663 Z" id="Stroke-123" stroke="#A3B1BF" stroke-width="0.81" transform="translate(271.599758, 67.206966) rotate(90.000000) translate(-271.599758, -67.206966) "></path>
<path d="M258.534495,22.5884924 C258.534495,23.4149215 257.866794,24.0852241 257.043573,24.0852241 C256.219316,24.0852241 255.551615,23.4149215 255.551615,22.5884924 C255.551615,21.7620634 256.219316,21.0917607 257.043573,21.0917607 C257.866794,21.0917607 258.534495,21.7620634 258.534495,22.5884924" id="Fill-125" fill="#FFFFFF" transform="translate(257.043055, 22.588492) rotate(90.000000) translate(-257.043055, -22.588492) "></path>
<path d="M258.534495,22.5884924 C258.534495,23.4149215 257.866794,24.0852241 257.043573,24.0852241 C256.219316,24.0852241 255.551615,23.4149215 255.551615,22.5884924 C255.551615,21.7620634 256.219316,21.0917607 257.043573,21.0917607 C257.866794,21.0917607 258.534495,21.7620634 258.534495,22.5884924 L258.534495,22.5884924 Z" id="Stroke-127" stroke="#A3B1BF" stroke-width="0.81" transform="translate(257.043055, 22.588492) rotate(90.000000) translate(-257.043055, -22.588492) "></path>
<path d="M258.534495,31.5121872 C258.534495,32.3386162 257.866794,33.0089189 257.043573,33.0089189 C256.219316,33.0089189 255.551615,32.3386162 255.551615,31.5121872 C255.551615,30.6857582 256.219316,30.0154555 257.043573,30.0154555 C257.866794,30.0154555 258.534495,30.6857582 258.534495,31.5121872" id="Fill-129" fill="#FFFFFF" transform="translate(257.043055, 31.512187) rotate(90.000000) translate(-257.043055, -31.512187) "></path>
<path d="M258.534495,31.5121872 C258.534495,32.3386162 257.866794,33.0089189 257.043573,33.0089189 C256.219316,33.0089189 255.551615,32.3386162 255.551615,31.5121872 C255.551615,30.6857582 256.219316,30.0154555 257.043573,30.0154555 C257.866794,30.0154555 258.534495,30.6857582 258.534495,31.5121872 L258.534495,31.5121872 Z" id="Stroke-131" stroke="#A3B1BF" stroke-width="0.81" transform="translate(257.043055, 31.512187) rotate(90.000000) translate(-257.043055, -31.512187) "></path>
<path d="M258.534495,40.435882 C258.534495,41.262311 257.866794,41.9326137 257.043573,41.9326137 C256.219316,41.9326137 255.551615,41.262311 255.551615,40.435882 C255.551615,39.609453 256.219316,38.9391503 257.043573,38.9391503 C257.866794,38.9391503 258.534495,39.609453 258.534495,40.435882" id="Fill-133" fill="#FFFFFF" transform="translate(257.043055, 40.435882) rotate(90.000000) translate(-257.043055, -40.435882) "></path>
<path d="M258.534495,40.435882 C258.534495,41.262311 257.866794,41.9326137 257.043573,41.9326137 C256.219316,41.9326137 255.551615,41.262311 255.551615,40.435882 C255.551615,39.609453 256.219316,38.9391503 257.043573,38.9391503 C257.866794,38.9391503 258.534495,39.609453 258.534495,40.435882 L258.534495,40.435882 Z" id="Stroke-135" stroke="#A3B1BF" stroke-width="0.81" transform="translate(257.043055, 40.435882) rotate(90.000000) translate(-257.043055, -40.435882) "></path>
<path d="M258.534495,49.3595768 C258.534495,50.1860058 257.866794,50.8563085 257.043573,50.8563085 C256.219316,50.8563085 255.551615,50.1860058 255.551615,49.3595768 C255.551615,48.5331477 256.219316,47.8628451 257.043573,47.8628451 C257.866794,47.8628451 258.534495,48.5331477 258.534495,49.3595768" id="Fill-137" fill="#FFFFFF" transform="translate(257.043055, 49.359577) rotate(90.000000) translate(-257.043055, -49.359577) "></path>
<path d="M258.534495,49.3595768 C258.534495,50.1860058 257.866794,50.8563085 257.043573,50.8563085 C256.219316,50.8563085 255.551615,50.1860058 255.551615,49.3595768 C255.551615,48.5331477 256.219316,47.8628451 257.043573,47.8628451 C257.866794,47.8628451 258.534495,48.5331477 258.534495,49.3595768 L258.534495,49.3595768 Z" id="Stroke-139" stroke="#A3B1BF" stroke-width="0.81" transform="translate(257.043055, 49.359577) rotate(90.000000) translate(-257.043055, -49.359577) "></path>
<path d="M258.534495,58.2832715 C258.534495,59.1097006 257.866794,59.7800032 257.043573,59.7800032 C256.219316,59.7800032 255.551615,59.1097006 255.551615,58.2832715 C255.551615,57.4568425 256.219316,56.7865399 257.043573,56.7865399 C257.866794,56.7865399 258.534495,57.4568425 258.534495,58.2832715" id="Fill-141" fill="#FFFFFF" transform="translate(257.043055, 58.283272) rotate(90.000000) translate(-257.043055, -58.283272) "></path>
<path d="M258.534495,58.2832715 C258.534495,59.1097006 257.866794,59.7800032 257.043573,59.7800032 C256.219316,59.7800032 255.551615,59.1097006 255.551615,58.2832715 C255.551615,57.4568425 256.219316,56.7865399 257.043573,56.7865399 C257.866794,56.7865399 258.534495,57.4568425 258.534495,58.2832715 L258.534495,58.2832715 Z" id="Stroke-143" stroke="#A3B1BF" stroke-width="0.81" transform="translate(257.043055, 58.283272) rotate(90.000000) translate(-257.043055, -58.283272) "></path>
<path d="M258.534495,67.2069663 C258.534495,68.0333954 257.866794,68.703698 257.043573,68.703698 C256.219316,68.703698 255.551615,68.0333954 255.551615,67.2069663 C255.551615,66.3805373 256.219316,65.7102346 257.043573,65.7102346 C257.866794,65.7102346 258.534495,66.3805373 258.534495,67.2069663" id="Fill-145" fill="#FFFFFF" transform="translate(257.043055, 67.206966) rotate(90.000000) translate(-257.043055, -67.206966) "></path>
<path d="M258.534495,67.2069663 C258.534495,68.0333954 257.866794,68.703698 257.043573,68.703698 C256.219316,68.703698 255.551615,68.0333954 255.551615,67.2069663 C255.551615,66.3805373 256.219316,65.7102346 257.043573,65.7102346 C257.866794,65.7102346 258.534495,66.3805373 258.534495,67.2069663 L258.534495,67.2069663 Z" id="Stroke-147" stroke="#A3B1BF" stroke-width="0.81" transform="translate(257.043055, 67.206966) rotate(90.000000) translate(-257.043055, -67.206966) "></path>
<path d="M265.812846,26.6447173 C265.812846,27.4711464 265.145146,28.141449 264.321925,28.141449 C263.497667,28.141449 262.829967,27.4711464 262.829967,26.6447173 C262.829967,25.8182883 263.497667,25.1479856 264.321925,25.1479856 C265.145146,25.1479856 265.812846,25.8182883 265.812846,26.6447173" id="Fill-149" fill="#FFFFFF" transform="translate(264.321407, 26.644717) rotate(90.000000) translate(-264.321407, -26.644717) "></path>
<path d="M265.812846,26.6447173 C265.812846,27.4711464 265.145146,28.141449 264.321925,28.141449 C263.497667,28.141449 262.829967,27.4711464 262.829967,26.6447173 C262.829967,25.8182883 263.497667,25.1479856 264.321925,25.1479856 C265.145146,25.1479856 265.812846,25.8182883 265.812846,26.6447173 L265.812846,26.6447173 Z" id="Stroke-151" stroke="#A3B1BF" stroke-width="0.81" transform="translate(264.321407, 26.644717) rotate(90.000000) translate(-264.321407, -26.644717) "></path>
<path d="M265.812846,35.5684121 C265.812846,36.3948411 265.145146,37.0651438 264.321925,37.0651438 C263.497667,37.0651438 262.829967,36.3948411 262.829967,35.5684121 C262.829967,34.7419831 263.497667,34.0716804 264.321925,34.0716804 C265.145146,34.0716804 265.812846,34.7419831 265.812846,35.5684121" id="Fill-153" fill="#FFFFFF" transform="translate(264.321407, 35.568412) rotate(90.000000) translate(-264.321407, -35.568412) "></path>
<path d="M265.812846,35.5684121 C265.812846,36.3948411 265.145146,37.0651438 264.321925,37.0651438 C263.497667,37.0651438 262.829967,36.3948411 262.829967,35.5684121 C262.829967,34.7419831 263.497667,34.0716804 264.321925,34.0716804 C265.145146,34.0716804 265.812846,34.7419831 265.812846,35.5684121 L265.812846,35.5684121 Z" id="Stroke-155" stroke="#A3B1BF" stroke-width="0.81" transform="translate(264.321407, 35.568412) rotate(90.000000) translate(-264.321407, -35.568412) "></path>
<path d="M265.812846,44.4921069 C265.812846,45.3185359 265.145146,45.9888386 264.321925,45.9888386 C263.497667,45.9888386 262.829967,45.3185359 262.829967,44.4921069 C262.829967,43.6656779 263.497667,42.9953752 264.321925,42.9953752 C265.145146,42.9953752 265.812846,43.6656779 265.812846,44.4921069" id="Fill-157" fill="#FFFFFF" transform="translate(264.321407, 44.492107) rotate(90.000000) translate(-264.321407, -44.492107) "></path>
<path d="M265.812846,44.4921069 C265.812846,45.3185359 265.145146,45.9888386 264.321925,45.9888386 C263.497667,45.9888386 262.829967,45.3185359 262.829967,44.4921069 C262.829967,43.6656779 263.497667,42.9953752 264.321925,42.9953752 C265.145146,42.9953752 265.812846,43.6656779 265.812846,44.4921069 L265.812846,44.4921069 Z" id="Stroke-159" stroke="#A3B1BF" stroke-width="0.81" transform="translate(264.321407, 44.492107) rotate(90.000000) translate(-264.321407, -44.492107) "></path>
<path d="M265.812846,53.4158017 C265.812846,54.2422307 265.145146,54.9125333 264.321925,54.9125333 C263.497667,54.9125333 262.829967,54.2422307 262.829967,53.4158017 C262.829967,52.5893726 263.497667,51.91907 264.321925,51.91907 C265.145146,51.91907 265.812846,52.5893726 265.812846,53.4158017" id="Fill-161" fill="#FFFFFF" transform="translate(264.321407, 53.415802) rotate(90.000000) translate(-264.321407, -53.415802) "></path>
<path d="M265.812846,53.4158017 C265.812846,54.2422307 265.145146,54.9125333 264.321925,54.9125333 C263.497667,54.9125333 262.829967,54.2422307 262.829967,53.4158017 C262.829967,52.5893726 263.497667,51.91907 264.321925,51.91907 C265.145146,51.91907 265.812846,52.5893726 265.812846,53.4158017 L265.812846,53.4158017 Z" id="Stroke-163" stroke="#A3B1BF" stroke-width="0.81" transform="translate(264.321407, 53.415802) rotate(90.000000) translate(-264.321407, -53.415802) "></path>
<path d="M265.812846,62.3394964 C265.812846,63.1659255 265.145146,63.8362281 264.321925,63.8362281 C263.497667,63.8362281 262.829967,63.1659255 262.829967,62.3394964 C262.829967,61.5130674 263.497667,60.8427648 264.321925,60.8427648 C265.145146,60.8427648 265.812846,61.5130674 265.812846,62.3394964" id="Fill-165" fill="#FFFFFF" transform="translate(264.321407, 62.339496) rotate(90.000000) translate(-264.321407, -62.339496) "></path>
<path d="M265.812846,62.3394964 C265.812846,63.1659255 265.145146,63.8362281 264.321925,63.8362281 C263.497667,63.8362281 262.829967,63.1659255 262.829967,62.3394964 C262.829967,61.5130674 263.497667,60.8427648 264.321925,60.8427648 C265.145146,60.8427648 265.812846,61.5130674 265.812846,62.3394964 L265.812846,62.3394964 Z" id="Stroke-167" stroke="#A3B1BF" stroke-width="0.81" transform="translate(264.321407, 62.339496) rotate(90.000000) translate(-264.321407, -62.339496) "></path>
<path d="M265.812846,71.2631912 C265.812846,72.0896203 265.145146,72.7599229 264.321925,72.7599229 C263.497667,72.7599229 262.829967,72.0896203 262.829967,71.2631912 C262.829967,70.4367622 263.497667,69.7664595 264.321925,69.7664595 C265.145146,69.7664595 265.812846,70.4367622 265.812846,71.2631912" id="Fill-169" fill="#FFFFFF" transform="translate(264.321407, 71.263191) rotate(90.000000) translate(-264.321407, -71.263191) "></path>
<path d="M265.812846,71.2631912 C265.812846,72.0896203 265.145146,72.7599229 264.321925,72.7599229 C263.497667,72.7599229 262.829967,72.0896203 262.829967,71.2631912 C262.829967,70.4367622 263.497667,69.7664595 264.321925,69.7664595 C265.145146,69.7664595 265.812846,70.4367622 265.812846,71.2631912 L265.812846,71.2631912 Z" id="Stroke-171" stroke="#A3B1BF" stroke-width="0.81" transform="translate(264.321407, 71.263191) rotate(90.000000) translate(-264.321407, -71.263191) "></path>
<path d="M263.92334,136.046978 C261.534548,136.046978 259.597801,134.102684 259.597801,131.704582 C259.597801,129.306481 261.534548,127.362187 263.92334,127.362187 C266.312132,127.362187 268.248879,129.306481 268.248879,131.704582 C268.248879,134.102684 266.312132,136.046978 263.92334,136.046978 Z" id="Fill-173" fill="#A3B1BF" transform="translate(263.923340, 131.704582) rotate(90.000000) translate(-263.923340, -131.704582) "></path>
<path d="M170.113409,94.8252648 C165.551479,94.8252648 161.818991,91.0782313 161.818991,86.4985238 L161.818991,73.9594928 C161.818991,69.3797853 165.551479,65.6327519 170.113409,65.6327519 L287.601762,65.6327519 C292.163691,65.6327519 295.896179,69.3797853 295.896179,73.9594928 L295.896179,86.4985238 C295.896179,91.0782313 292.163691,94.8252648 287.601762,94.8252648 L170.113409,94.8252648 Z" id="Fill-175" fill="#F0F2F5" transform="translate(228.857585, 80.229008) rotate(90.000000) translate(-228.857585, -80.229008) "></path>
<path d="M170.113409,94.8252648 C165.551479,94.8252648 161.818991,91.0782313 161.818991,86.4985238 L161.818991,73.9594928 C161.818991,69.3797853 165.551479,65.6327519 170.113409,65.6327519 L287.601762,65.6327519 C292.163691,65.6327519 295.896179,69.3797853 295.896179,73.9594928 L295.896179,86.4985238 C295.896179,91.0782313 292.163691,94.8252648 287.601762,94.8252648 L170.113409,94.8252648 L170.113409,94.8252648 Z" id="Stroke-177" stroke="#A3B1BF" stroke-width="1.62" transform="translate(228.857585, 80.229008) rotate(90.000000) translate(-228.857585, -80.229008) "></path>
<path d="M237.508146,22.5884924 C237.508146,23.4149215 236.840446,24.0852241 236.017225,24.0852241 C235.192967,24.0852241 234.525266,23.4149215 234.525266,22.5884924 C234.525266,21.7620634 235.192967,21.0917607 236.017225,21.0917607 C236.840446,21.0917607 237.508146,21.7620634 237.508146,22.5884924" id="Fill-179" transform="translate(236.016706, 22.588492) rotate(90.000000) translate(-236.016706, -22.588492) "></path>
<path d="M237.508146,22.5884924 C237.508146,23.4149215 236.840446,24.0852241 236.017225,24.0852241 C235.192967,24.0852241 234.525266,23.4149215 234.525266,22.5884924 C234.525266,21.7620634 235.192967,21.0917607 236.017225,21.0917607 C236.840446,21.0917607 237.508146,21.7620634 237.508146,22.5884924 L237.508146,22.5884924 Z" id="Stroke-181" stroke="#A3B1BF" stroke-width="0.81" transform="translate(236.016706, 22.588492) rotate(90.000000) translate(-236.016706, -22.588492) "></path>
<path d="M237.508146,31.5121872 C237.508146,32.3386162 236.840446,33.0089189 236.017225,33.0089189 C235.192967,33.0089189 234.525266,32.3386162 234.525266,31.5121872 C234.525266,30.6857582 235.192967,30.0154555 236.017225,30.0154555 C236.840446,30.0154555 237.508146,30.6857582 237.508146,31.5121872" id="Fill-183" transform="translate(236.016706, 31.512187) rotate(90.000000) translate(-236.016706, -31.512187) "></path>
<path d="M237.508146,31.5121872 C237.508146,32.3386162 236.840446,33.0089189 236.017225,33.0089189 C235.192967,33.0089189 234.525266,32.3386162 234.525266,31.5121872 C234.525266,30.6857582 235.192967,30.0154555 236.017225,30.0154555 C236.840446,30.0154555 237.508146,30.6857582 237.508146,31.5121872 L237.508146,31.5121872 Z" id="Stroke-185" stroke="#A3B1BF" stroke-width="0.81" transform="translate(236.016706, 31.512187) rotate(90.000000) translate(-236.016706, -31.512187) "></path>
<path d="M237.508146,40.435882 C237.508146,41.262311 236.840446,41.9326137 236.017225,41.9326137 C235.192967,41.9326137 234.525266,41.262311 234.525266,40.435882 C234.525266,39.609453 235.192967,38.9391503 236.017225,38.9391503 C236.840446,38.9391503 237.508146,39.609453 237.508146,40.435882" id="Fill-187" transform="translate(236.016706, 40.435882) rotate(90.000000) translate(-236.016706, -40.435882) "></path>
<path d="M237.508146,40.435882 C237.508146,41.262311 236.840446,41.9326137 236.017225,41.9326137 C235.192967,41.9326137 234.525266,41.262311 234.525266,40.435882 C234.525266,39.609453 235.192967,38.9391503 236.017225,38.9391503 C236.840446,38.9391503 237.508146,39.609453 237.508146,40.435882 L237.508146,40.435882 Z" id="Stroke-189" stroke="#A3B1BF" stroke-width="0.81" transform="translate(236.016706, 40.435882) rotate(90.000000) translate(-236.016706, -40.435882) "></path>
<path d="M237.508146,49.3595768 C237.508146,50.1860058 236.840446,50.8563085 236.017225,50.8563085 C235.192967,50.8563085 234.525266,50.1860058 234.525266,49.3595768 C234.525266,48.5331477 235.192967,47.8628451 236.017225,47.8628451 C236.840446,47.8628451 237.508146,48.5331477 237.508146,49.3595768" id="Fill-191" transform="translate(236.016706, 49.359577) rotate(90.000000) translate(-236.016706, -49.359577) "></path>
<path d="M237.508146,49.3595768 C237.508146,50.1860058 236.840446,50.8563085 236.017225,50.8563085 C235.192967,50.8563085 234.525266,50.1860058 234.525266,49.3595768 C234.525266,48.5331477 235.192967,47.8628451 236.017225,47.8628451 C236.840446,47.8628451 237.508146,48.5331477 237.508146,49.3595768 L237.508146,49.3595768 Z" id="Stroke-193" stroke="#A3B1BF" stroke-width="0.81" transform="translate(236.016706, 49.359577) rotate(90.000000) translate(-236.016706, -49.359577) "></path>
<path d="M237.508146,58.2832715 C237.508146,59.1097006 236.840446,59.7800032 236.017225,59.7800032 C235.192967,59.7800032 234.525266,59.1097006 234.525266,58.2832715 C234.525266,57.4568425 235.192967,56.7865399 236.017225,56.7865399 C236.840446,56.7865399 237.508146,57.4568425 237.508146,58.2832715" id="Fill-195" transform="translate(236.016706, 58.283272) rotate(90.000000) translate(-236.016706, -58.283272) "></path>
<path d="M237.508146,58.2832715 C237.508146,59.1097006 236.840446,59.7800032 236.017225,59.7800032 C235.192967,59.7800032 234.525266,59.1097006 234.525266,58.2832715 C234.525266,57.4568425 235.192967,56.7865399 236.017225,56.7865399 C236.840446,56.7865399 237.508146,57.4568425 237.508146,58.2832715 L237.508146,58.2832715 Z" id="Stroke-197" stroke-opacity="0.85" stroke="#A3B1BF" stroke-width="0.81" transform="translate(236.016706, 58.283272) rotate(90.000000) translate(-236.016706, -58.283272) "></path>
<path d="M237.508146,67.2069663 C237.508146,68.0333954 236.840446,68.703698 236.017225,68.703698 C235.192967,68.703698 234.525266,68.0333954 234.525266,67.2069663 C234.525266,66.3805373 235.192967,65.7102346 236.017225,65.7102346 C236.840446,65.7102346 237.508146,66.3805373 237.508146,67.2069663" id="Fill-199" transform="translate(236.016706, 67.206966) rotate(90.000000) translate(-236.016706, -67.206966) "></path>
<path d="M237.508146,67.2069663 C237.508146,68.0333954 236.840446,68.703698 236.017225,68.703698 C235.192967,68.703698 234.525266,68.0333954 234.525266,67.2069663 C234.525266,66.3805373 235.192967,65.7102346 236.017225,65.7102346 C236.840446,65.7102346 237.508146,66.3805373 237.508146,67.2069663 L237.508146,67.2069663 Z" id="Stroke-201" stroke="#A3B1BF" stroke-width="0.81" transform="translate(236.016706, 67.206966) rotate(90.000000) translate(-236.016706, -67.206966) "></path>
<path d="M223.760149,22.5884924 C223.760149,23.4149215 223.092448,24.0852241 222.269227,24.0852241 C221.44497,24.0852241 220.777269,23.4149215 220.777269,22.5884924 C220.777269,21.7620634 221.44497,21.0917607 222.269227,21.0917607 C223.092448,21.0917607 223.760149,21.7620634 223.760149,22.5884924" id="Fill-203" transform="translate(222.268709, 22.588492) rotate(90.000000) translate(-222.268709, -22.588492) "></path>
<path d="M223.760149,22.5884924 C223.760149,23.4149215 223.092448,24.0852241 222.269227,24.0852241 C221.44497,24.0852241 220.777269,23.4149215 220.777269,22.5884924 C220.777269,21.7620634 221.44497,21.0917607 222.269227,21.0917607 C223.092448,21.0917607 223.760149,21.7620634 223.760149,22.5884924 L223.760149,22.5884924 Z" id="Stroke-205" stroke="#A3B1BF" stroke-width="0.81" transform="translate(222.268709, 22.588492) rotate(90.000000) translate(-222.268709, -22.588492) "></path>
<path d="M223.760149,31.5121872 C223.760149,32.3386162 223.092448,33.0089189 222.269227,33.0089189 C221.44497,33.0089189 220.777269,32.3386162 220.777269,31.5121872 C220.777269,30.6857582 221.44497,30.0154555 222.269227,30.0154555 C223.092448,30.0154555 223.760149,30.6857582 223.760149,31.5121872" id="Fill-207" transform="translate(222.268709, 31.512187) rotate(90.000000) translate(-222.268709, -31.512187) "></path>
<path d="M223.760149,31.5121872 C223.760149,32.3386162 223.092448,33.0089189 222.269227,33.0089189 C221.44497,33.0089189 220.777269,32.3386162 220.777269,31.5121872 C220.777269,30.6857582 221.44497,30.0154555 222.269227,30.0154555 C223.092448,30.0154555 223.760149,30.6857582 223.760149,31.5121872 L223.760149,31.5121872 Z" id="Stroke-209" stroke="#A3B1BF" stroke-width="0.81" transform="translate(222.268709, 31.512187) rotate(90.000000) translate(-222.268709, -31.512187) "></path>
<path d="M223.760149,40.435882 C223.760149,41.262311 223.092448,41.9326137 222.269227,41.9326137 C221.44497,41.9326137 220.777269,41.262311 220.777269,40.435882 C220.777269,39.609453 221.44497,38.9391503 222.269227,38.9391503 C223.092448,38.9391503 223.760149,39.609453 223.760149,40.435882" id="Fill-211" transform="translate(222.268709, 40.435882) rotate(90.000000) translate(-222.268709, -40.435882) "></path>
<path d="M223.760149,40.435882 C223.760149,41.262311 223.092448,41.9326137 222.269227,41.9326137 C221.44497,41.9326137 220.777269,41.262311 220.777269,40.435882 C220.777269,39.609453 221.44497,38.9391503 222.269227,38.9391503 C223.092448,38.9391503 223.760149,39.609453 223.760149,40.435882 L223.760149,40.435882 Z" id="Stroke-213" stroke="#A3B1BF" stroke-width="0.81" transform="translate(222.268709, 40.435882) rotate(90.000000) translate(-222.268709, -40.435882) "></path>
<path d="M223.760149,49.3595768 C223.760149,50.1860058 223.092448,50.8563085 222.269227,50.8563085 C221.44497,50.8563085 220.777269,50.1860058 220.777269,49.3595768 C220.777269,48.5331477 221.44497,47.8628451 222.269227,47.8628451 C223.092448,47.8628451 223.760149,48.5331477 223.760149,49.3595768" id="Fill-215" transform="translate(222.268709, 49.359577) rotate(90.000000) translate(-222.268709, -49.359577) "></path>
<path d="M223.760149,49.3595768 C223.760149,50.1860058 223.092448,50.8563085 222.269227,50.8563085 C221.44497,50.8563085 220.777269,50.1860058 220.777269,49.3595768 C220.777269,48.5331477 221.44497,47.8628451 222.269227,47.8628451 C223.092448,47.8628451 223.760149,48.5331477 223.760149,49.3595768 L223.760149,49.3595768 Z" id="Stroke-217" stroke="#A3B1BF" stroke-width="0.81" transform="translate(222.268709, 49.359577) rotate(90.000000) translate(-222.268709, -49.359577) "></path>
<path d="M223.760149,58.2832715 C223.760149,59.1097006 223.092448,59.7800032 222.269227,59.7800032 C221.44497,59.7800032 220.777269,59.1097006 220.777269,58.2832715 C220.777269,57.4568425 221.44497,56.7865399 222.269227,56.7865399 C223.092448,56.7865399 223.760149,57.4568425 223.760149,58.2832715" id="Fill-219" transform="translate(222.268709, 58.283272) rotate(90.000000) translate(-222.268709, -58.283272) "></path>
<path d="M223.760149,58.2832715 C223.760149,59.1097006 223.092448,59.7800032 222.269227,59.7800032 C221.44497,59.7800032 220.777269,59.1097006 220.777269,58.2832715 C220.777269,57.4568425 221.44497,56.7865399 222.269227,56.7865399 C223.092448,56.7865399 223.760149,57.4568425 223.760149,58.2832715 L223.760149,58.2832715 Z" id="Stroke-221" stroke="#A3B1BF" stroke-width="0.81" transform="translate(222.268709, 58.283272) rotate(90.000000) translate(-222.268709, -58.283272) "></path>
<path d="M223.760149,67.2069663 C223.760149,68.0333954 223.092448,68.703698 222.269227,68.703698 C221.44497,68.703698 220.777269,68.0333954 220.777269,67.2069663 C220.777269,66.3805373 221.44497,65.7102346 222.269227,65.7102346 C223.092448,65.7102346 223.760149,66.3805373 223.760149,67.2069663" id="Fill-223" transform="translate(222.268709, 67.206966) rotate(90.000000) translate(-222.268709, -67.206966) "></path>
<path d="M223.760149,67.2069663 C223.760149,68.0333954 223.092448,68.703698 222.269227,68.703698 C221.44497,68.703698 220.777269,68.0333954 220.777269,67.2069663 C220.777269,66.3805373 221.44497,65.7102346 222.269227,65.7102346 C223.092448,65.7102346 223.760149,66.3805373 223.760149,67.2069663 L223.760149,67.2069663 Z" id="Stroke-225" stroke="#A3B1BF" stroke-width="0.81" transform="translate(222.268709, 67.206966) rotate(90.000000) translate(-222.268709, -67.206966) "></path>
<path d="M230.229795,26.6447173 C230.229795,27.4711464 229.562094,28.141449 228.738873,28.141449 C227.914615,28.141449 227.246915,27.4711464 227.246915,26.6447173 C227.246915,25.8182883 227.914615,25.1479856 228.738873,25.1479856 C229.562094,25.1479856 230.229795,25.8182883 230.229795,26.6447173" id="Fill-227" transform="translate(228.738355, 26.644717) rotate(90.000000) translate(-228.738355, -26.644717) "></path>
<path d="M230.229795,26.6447173 C230.229795,27.4711464 229.562094,28.141449 228.738873,28.141449 C227.914615,28.141449 227.246915,27.4711464 227.246915,26.6447173 C227.246915,25.8182883 227.914615,25.1479856 228.738873,25.1479856 C229.562094,25.1479856 230.229795,25.8182883 230.229795,26.6447173 L230.229795,26.6447173 Z" id="Stroke-229" stroke="#A3B1BF" stroke-width="0.81" transform="translate(228.738355, 26.644717) rotate(90.000000) translate(-228.738355, -26.644717) "></path>
<path d="M230.229795,35.5684121 C230.229795,36.3948411 229.562094,37.0651438 228.738873,37.0651438 C227.914615,37.0651438 227.246915,36.3948411 227.246915,35.5684121 C227.246915,34.7419831 227.914615,34.0716804 228.738873,34.0716804 C229.562094,34.0716804 230.229795,34.7419831 230.229795,35.5684121" id="Fill-231" transform="translate(228.738355, 35.568412) rotate(90.000000) translate(-228.738355, -35.568412) "></path>
<path d="M230.229795,35.5684121 C230.229795,36.3948411 229.562094,37.0651438 228.738873,37.0651438 C227.914615,37.0651438 227.246915,36.3948411 227.246915,35.5684121 C227.246915,34.7419831 227.914615,34.0716804 228.738873,34.0716804 C229.562094,34.0716804 230.229795,34.7419831 230.229795,35.5684121 L230.229795,35.5684121 Z" id="Stroke-233" stroke="#A3B1BF" stroke-width="0.81" transform="translate(228.738355, 35.568412) rotate(90.000000) translate(-228.738355, -35.568412) "></path>
<path d="M230.229795,44.4921069 C230.229795,45.3185359 229.562094,45.9888386 228.738873,45.9888386 C227.914615,45.9888386 227.246915,45.3185359 227.246915,44.4921069 C227.246915,43.6656779 227.914615,42.9953752 228.738873,42.9953752 C229.562094,42.9953752 230.229795,43.6656779 230.229795,44.4921069" id="Fill-235" transform="translate(228.738355, 44.492107) rotate(90.000000) translate(-228.738355, -44.492107) "></path>
<path d="M230.229795,44.4921069 C230.229795,45.3185359 229.562094,45.9888386 228.738873,45.9888386 C227.914615,45.9888386 227.246915,45.3185359 227.246915,44.4921069 C227.246915,43.6656779 227.914615,42.9953752 228.738873,42.9953752 C229.562094,42.9953752 230.229795,43.6656779 230.229795,44.4921069 L230.229795,44.4921069 Z" id="Stroke-237" stroke="#A3B1BF" stroke-width="0.81" transform="translate(228.738355, 44.492107) rotate(90.000000) translate(-228.738355, -44.492107) "></path>
<path d="M230.229795,53.4158017 C230.229795,54.2422307 229.562094,54.9125333 228.738873,54.9125333 C227.914615,54.9125333 227.246915,54.2422307 227.246915,53.4158017 C227.246915,52.5893726 227.914615,51.91907 228.738873,51.91907 C229.562094,51.91907 230.229795,52.5893726 230.229795,53.4158017" id="Fill-239" transform="translate(228.738355, 53.415802) rotate(90.000000) translate(-228.738355, -53.415802) "></path>
<path d="M230.229795,53.4158017 C230.229795,54.2422307 229.562094,54.9125333 228.738873,54.9125333 C227.914615,54.9125333 227.246915,54.2422307 227.246915,53.4158017 C227.246915,52.5893726 227.914615,51.91907 228.738873,51.91907 C229.562094,51.91907 230.229795,52.5893726 230.229795,53.4158017 L230.229795,53.4158017 Z" id="Stroke-241" stroke="#A3B1BF" stroke-width="0.81" transform="translate(228.738355, 53.415802) rotate(90.000000) translate(-228.738355, -53.415802) "></path>
<path d="M230.229795,62.3394964 C230.229795,63.1659255 229.562094,63.8362281 228.738873,63.8362281 C227.914615,63.8362281 227.246915,63.1659255 227.246915,62.3394964 C227.246915,61.5130674 227.914615,60.8427648 228.738873,60.8427648 C229.562094,60.8427648 230.229795,61.5130674 230.229795,62.3394964" id="Fill-243" transform="translate(228.738355, 62.339496) rotate(90.000000) translate(-228.738355, -62.339496) "></path>
<path d="M230.229795,62.3394964 C230.229795,63.1659255 229.562094,63.8362281 228.738873,63.8362281 C227.914615,63.8362281 227.246915,63.1659255 227.246915,62.3394964 C227.246915,61.5130674 227.914615,60.8427648 228.738873,60.8427648 C229.562094,60.8427648 230.229795,61.5130674 230.229795,62.3394964 L230.229795,62.3394964 Z" id="Stroke-245" stroke="#A3B1BF" stroke-width="0.81" transform="translate(228.738355, 62.339496) rotate(90.000000) translate(-228.738355, -62.339496) "></path>
<path d="M230.229795,71.2631912 C230.229795,72.0896203 229.562094,72.7599229 228.738873,72.7599229 C227.914615,72.7599229 227.246915,72.0896203 227.246915,71.2631912 C227.246915,70.4367622 227.914615,69.7664595 228.738873,69.7664595 C229.562094,69.7664595 230.229795,70.4367622 230.229795,71.2631912" id="Fill-247" transform="translate(228.738355, 71.263191) rotate(90.000000) translate(-228.738355, -71.263191) "></path>
<path d="M230.229795,71.2631912 C230.229795,72.0896203 229.562094,72.7599229 228.738873,72.7599229 C227.914615,72.7599229 227.246915,72.0896203 227.246915,71.2631912 C227.246915,70.4367622 227.914615,69.7664595 228.738873,69.7664595 C229.562094,69.7664595 230.229795,70.4367622 230.229795,71.2631912 L230.229795,71.2631912 Z" id="Stroke-249" stroke="#A3B1BF" stroke-width="0.81" transform="translate(228.738355, 71.263191) rotate(90.000000) translate(-228.738355, -71.263191) "></path>
<path d="M233.474533,131.704582 C233.474533,134.102684 231.537786,136.046978 229.148994,136.046978 C226.760202,136.046978 224.823455,134.102684 224.823455,131.704582 C224.823455,129.306481 226.760202,127.362187 229.148994,127.362187 C231.537786,127.362187 233.474533,129.306481 233.474533,131.704582 L226.809752,131.704582" id="Fill-251" fill="#A3B1BF" transform="translate(229.148994, 131.704582) rotate(90.000000) translate(-229.148994, -131.704582) "></path>
<path d="M116.93208,108.951605 L112.95698,97.0641411 C111.505457,92.7217457 113.856924,87.977585 118.181426,86.5204054 C118.181426,86.5204054 144.947552,77.5008125 158.330615,72.991016 C182.074402,64.9898842 229.561977,48.9876206 229.561977,48.9876206 C233.887516,47.530441 238.61326,49.8900312 240.064784,54.2313857 L244.039883,66.1188493 C245.491406,70.4612446 243.140976,75.2054053 238.815437,76.662585 L127.434886,114.19537 C123.110384,115.652549 118.383603,113.292959 116.93208,108.951605 Z" id="Stroke-255" stroke="#A3B1BF" stroke-width="1.62" transform="translate(178.498482, 81.591495) rotate(90.000000) translate(-178.498482, -81.591495) "></path>
<path d="M170.986678,36.9877796 C170.205966,37.2511128 169.360972,36.8295715 169.098661,36.0447762 C168.83635,35.2610217 169.257292,34.412735 170.038004,34.1494018 C170.818716,33.8860686 171.66371,34.3086507 171.926021,35.0924052 C172.188332,35.8761597 171.76739,36.7254872 170.986678,36.9877796 Z" id="Fill-257" transform="translate(170.512341, 35.568641) rotate(90.000000) translate(-170.512341, -35.568641) "></path>
<path d="M170.986678,36.9877796 C170.205966,37.2511128 169.360972,36.8295715 169.098661,36.0447762 C168.83635,35.2610217 169.257292,34.412735 170.038004,34.1494018 C170.818716,33.8860686 171.66371,34.3086507 171.926021,35.0924052 C172.188332,35.8761597 171.76739,36.7254872 170.986678,36.9877796 Z" id="Stroke-259" stroke="#A3B1BF" stroke-width="0.81" transform="translate(170.512341, 35.568641) rotate(90.000000) translate(-170.512341, -35.568641) "></path>
<path d="M174.352138,44.0161 C174.614449,44.7998545 174.193507,45.649182 173.412795,45.9114744 C172.632083,46.1748075 171.787089,45.7532663 171.524778,44.968471 C171.262467,44.1847165 171.683409,43.3364297 172.464121,43.0730966 C173.244833,42.8097634 174.089827,43.2323455 174.352138,44.0161" id="Fill-261" transform="translate(172.938458, 44.492336) rotate(90.000000) translate(-172.938458, -44.492336) "></path>
<path d="M173.412795,45.9114744 C172.632083,46.1748075 171.787089,45.7532663 171.524778,44.968471 C171.262467,44.1847165 171.683409,43.3364297 172.464121,43.0730966 C173.244833,42.8097634 174.089827,43.2323455 174.352138,44.0161 C174.614449,44.7998545 174.193507,45.649182 173.412795,45.9114744 Z" id="Stroke-263" stroke="#A3B1BF" stroke-width="0.81" transform="translate(172.938458, 44.492336) rotate(90.000000) translate(-172.938458, -44.492336) "></path>
<path d="M177.586961,52.1285498 C177.849272,52.9123043 177.42833,53.7616318 176.647618,54.0239242 C175.866906,54.2872573 175.021912,53.8657161 174.759601,53.0809208 C174.49729,52.2971663 174.918232,51.4488795 175.698944,51.1855464 C176.479656,50.9222132 177.32465,51.3447953 177.586961,52.1285498" id="Fill-265" transform="translate(176.173281, 52.604786) rotate(90.000000) translate(-176.173281, -52.604786) "></path>
<path d="M176.647618,54.0239242 C175.866906,54.2872573 175.021912,53.8657161 174.759601,53.0809208 C174.49729,52.2971663 174.918232,51.4488795 175.698944,51.1855464 C176.479656,50.9222132 177.32465,51.3447953 177.586961,52.1285498 C177.849272,52.9123043 177.42833,53.7616318 176.647618,54.0239242 Z" id="Stroke-267" stroke="#A3B1BF" stroke-width="0.81" transform="translate(176.173281, 52.604786) rotate(90.000000) translate(-176.173281, -52.604786) "></path>
<path d="M180.013078,61.0522445 C180.275389,61.835999 179.854447,62.6853266 179.073735,62.9476189 C178.293023,63.2109521 177.448029,62.7894109 177.185718,62.0046155 C176.923407,61.220861 177.344349,60.3725743 178.125061,60.1092411 C178.905773,59.845908 179.750767,60.2684901 180.013078,61.0522445" id="Fill-269" transform="translate(178.599398, 61.528481) rotate(90.000000) translate(-178.599398, -61.528481) "></path>
<path d="M180.013078,61.0522445 C180.275389,61.835999 179.854447,62.6853266 179.073735,62.9476189 C178.293023,63.2109521 177.448029,62.7894109 177.185718,62.0046155 C176.923407,61.220861 177.344349,60.3725743 178.125061,60.1092411 C178.905773,59.845908 179.750767,60.2684901 180.013078,61.0522445 L180.013078,61.0522445 Z" id="Stroke-271" stroke="#A3B1BF" stroke-width="0.81" transform="translate(178.599398, 61.528481) rotate(90.000000) translate(-178.599398, -61.528481) "></path>
<path d="M183.247901,69.1646943 C183.510212,69.9484488 183.08927,70.7977764 182.308558,71.0600687 C181.527846,71.3234019 180.682852,70.9018607 180.420541,70.1170653 C180.15823,69.3333108 180.579172,68.4850241 181.359884,68.2216909 C182.140596,67.9583578 182.98559,68.3809399 183.247901,69.1646943" id="Fill-273" transform="translate(181.834221, 69.640931) rotate(90.000000) translate(-181.834221, -69.640931) "></path>
<path d="M183.247901,69.1646943 C183.510212,69.9484488 183.08927,70.7977764 182.308558,71.0600687 C181.527846,71.3234019 180.682852,70.9018607 180.420541,70.1170653 C180.15823,69.3333108 180.579172,68.4850241 181.359884,68.2216909 C182.140596,67.9583578 182.98559,68.3809399 183.247901,69.1646943 L183.247901,69.1646943 Z" id="Stroke-275" stroke="#A3B1BF" stroke-width="0.81" transform="translate(181.834221, 69.640931) rotate(90.000000) translate(-181.834221, -69.640931) "></path>
<path d="M185.674018,78.0883891 C185.936329,78.8721436 185.515387,79.7214712 184.734675,79.9837635 C183.953963,80.2470967 183.108969,79.8255554 182.846658,79.0407601 C182.584347,78.2570056 183.005289,77.4087189 183.786001,77.1453857 C184.566713,76.8820525 185.411707,77.3046346 185.674018,78.0883891" id="Fill-277" transform="translate(184.260338, 78.564625) rotate(90.000000) translate(-184.260338, -78.564625) "></path>
<path d="M185.674018,78.0883891 C185.936329,78.8721436 185.515387,79.7214712 184.734675,79.9837635 C183.953963,80.2470967 183.108969,79.8255554 182.846658,79.0407601 C182.584347,78.2570056 183.005289,77.4087189 183.786001,77.1453857 C184.566713,76.8820525 185.411707,77.3046346 185.674018,78.0883891 L185.674018,78.0883891 Z" id="Stroke-279" stroke="#A3B1BF" stroke-width="0.81" transform="translate(184.260338, 78.564625) rotate(90.000000) translate(-184.260338, -78.564625) "></path>
<path d="M168.691198,39.9598751 C168.953509,40.7436296 168.532567,41.5929571 167.751855,41.8552495 C166.971143,42.1185826 166.126149,41.6970414 165.863838,40.9122461 C165.601527,40.1284916 166.022469,39.2802048 166.803181,39.0168717 C167.583893,38.7535385 168.428887,39.1761206 168.691198,39.9598751" id="Fill-281" transform="translate(167.277518, 40.436111) rotate(90.000000) translate(-167.277518, -40.436111) "></path>
<path d="M156.962155,41.8552495 C156.181443,42.1185826 155.336449,41.6970414 155.074139,40.9122461 C154.811828,40.1284916 155.232769,39.2802048 156.013481,39.0168717 C156.794193,38.7535385 157.639187,39.1761206 157.901498,39.9598751 C158.163809,40.7436296 157.742867,41.5929571 156.962155,41.8552495 Z" id="Stroke-283" stroke="#A3B1BF" stroke-width="0.81" transform="translate(156.487818, 40.436111) rotate(90.000000) translate(-156.487818, -40.436111) "></path>
<path d="M171.117315,48.0723249 C171.379626,48.8560794 170.958684,49.7054069 170.177972,49.9676993 C169.39726,50.2310324 168.552266,49.8094912 168.289955,49.0246959 C168.027644,48.2409414 168.448586,47.3926546 169.229298,47.1293215 C170.01001,46.8659883 170.855004,47.2885704 171.117315,48.0723249" id="Fill-285" transform="translate(169.703635, 48.548561) rotate(90.000000) translate(-169.703635, -48.548561) "></path>
<path d="M160.327615,48.0723249 C160.589926,48.8560794 160.168985,49.7054069 159.388273,49.9676993 C158.60756,50.2310324 157.762567,49.8094912 157.500256,49.0246959 C157.237945,48.2409414 157.658886,47.3926546 158.439598,47.1293215 C159.220311,46.8659883 160.065304,47.2885704 160.327615,48.0723249 L160.327615,48.0723249 Z" id="Stroke-287" stroke="#A3B1BF" stroke-width="0.81" transform="translate(158.913936, 48.548561) rotate(90.000000) translate(-158.913936, -48.548561) "></path>
<path d="M174.352138,56.9960196 C174.614449,57.7797741 174.193507,58.6291017 173.412795,58.891394 C172.632083,59.1547272 171.787089,58.733186 171.524778,57.9483906 C171.262467,57.1646361 171.683409,56.3163494 172.464121,56.0530162 C173.244833,55.7896831 174.089827,56.2122652 174.352138,56.9960196" id="Fill-289" transform="translate(172.938458, 57.472256) rotate(90.000000) translate(-172.938458, -57.472256) "></path>
<path d="M163.562438,56.9960196 C163.824749,57.7797741 163.403807,58.6291017 162.623095,58.891394 C161.842383,59.1547272 160.99739,58.733186 160.735079,57.9483906 C160.472768,57.1646361 160.893709,56.3163494 161.674421,56.0530162 C162.455133,55.7896831 163.300127,56.2122652 163.562438,56.9960196 L163.562438,56.9960196 Z" id="Stroke-291" stroke="#A3B1BF" stroke-width="0.81" transform="translate(162.148758, 57.472256) rotate(90.000000) translate(-162.148758, -57.472256) "></path>
<path d="M166.265081,65.1084694 C166.527392,65.8922239 166.10645,66.7415515 165.325738,67.0038438 C164.545026,67.267177 163.700032,66.8456358 163.437721,66.0608404 C163.17541,65.2770859 163.596352,64.4287992 164.377064,64.165466 C165.157776,63.9021329 166.00277,64.324715 166.265081,65.1084694" id="Fill-293" transform="translate(164.851401, 65.584706) rotate(90.000000) translate(-164.851401, -65.584706) "></path>
<path d="M166.265081,65.1084694 C166.527392,65.8922239 166.10645,66.7415515 165.325738,67.0038438 C164.545026,67.267177 163.700032,66.8456358 163.437721,66.0608404 C163.17541,65.2770859 163.596352,64.4287992 164.377064,64.165466 C165.157776,63.9021329 166.00277,64.324715 166.265081,65.1084694 L166.265081,65.1084694 Z" id="Stroke-295" stroke="#A3B1BF" stroke-width="0.81" transform="translate(164.851401, 65.584706) rotate(90.000000) translate(-164.851401, -65.584706) "></path>
<path d="M169.499903,74.0321642 C169.762214,74.8159187 169.341273,75.6652463 168.560561,75.9275386 C167.779849,76.1908718 166.934855,75.7693305 166.672544,74.9845352 C166.410233,74.2007807 166.831175,73.352494 167.611887,73.0891608 C168.392599,72.8258276 169.237592,73.2484097 169.499903,74.0321642" id="Fill-297" transform="translate(168.086224, 74.508400) rotate(90.000000) translate(-168.086224, -74.508400) "></path>
<path d="M169.499903,74.0321642 C169.762214,74.8159187 169.341273,75.6652463 168.560561,75.9275386 C167.779849,76.1908718 166.934855,75.7693305 166.672544,74.9845352 C166.410233,74.2007807 166.831175,73.352494 167.611887,73.0891608 C168.392599,72.8258276 169.237592,73.2484097 169.499903,74.0321642 L169.499903,74.0321642 Z" id="Stroke-299" stroke="#A3B1BF" stroke-width="0.81" transform="translate(168.086224, 74.508400) rotate(90.000000) translate(-168.086224, -74.508400) "></path>
<path d="M172.734726,82.144614 C172.997037,82.9283685 172.576096,83.7776961 171.795384,84.0399884 C171.014671,84.3033216 170.169678,83.8817803 169.907367,83.096985 C169.645056,82.3132305 170.065997,81.4649438 170.84671,81.2016106 C171.627422,80.9382774 172.472415,81.3608595 172.734726,82.144614" id="Fill-301" transform="translate(171.321047, 82.620850) rotate(90.000000) translate(-171.321047, -82.620850) "></path>
<path d="M172.734726,82.144614 C172.997037,82.9283685 172.576096,83.7776961 171.795384,84.0399884 C171.014671,84.3033216 170.169678,83.8817803 169.907367,83.096985 C169.645056,82.3132305 170.065997,81.4649438 170.84671,81.2016106 C171.627422,80.9382774 172.472415,81.3608595 172.734726,82.144614 L172.734726,82.144614 Z" id="Stroke-303" stroke="#A3B1BF" stroke-width="0.81" transform="translate(171.321047, 82.620850) rotate(90.000000) translate(-171.321047, -82.620850) "></path>
<path d="M166.265081,41.582365 C166.527392,42.3661195 166.10645,43.2154471 165.325738,43.4777394 C164.545026,43.7410726 163.700032,43.3195314 163.437721,42.534736 C163.17541,41.7509815 163.596352,40.9026948 164.377064,40.6393616 C165.157776,40.3760284 166.00277,40.7986105 166.265081,41.582365" id="Fill-305" transform="translate(164.851401, 42.058601) rotate(90.000000) translate(-164.851401, -42.058601) "></path>
<path d="M166.265081,41.582365 C166.527392,42.3661195 166.10645,43.2154471 165.325738,43.4777394 C164.545026,43.7410726 163.700032,43.3195314 163.437721,42.534736 C163.17541,41.7509815 163.596352,40.9026948 164.377064,40.6393616 C165.157776,40.3760284 166.00277,40.7986105 166.265081,41.582365 L166.265081,41.582365 Z" id="Stroke-307" stroke="#A3B1BF" stroke-width="0.81" transform="translate(164.851401, 42.058601) rotate(90.000000) translate(-164.851401, -42.058601) "></path>
<path d="M169.499903,50.5060598 C169.762214,51.2898143 169.341273,52.1391419 168.560561,52.4014342 C167.779849,52.6647674 166.934855,52.2432261 166.672544,51.4584308 C166.410233,50.6746763 166.831175,49.8263896 167.611887,49.5630564 C168.392599,49.2997232 169.237592,49.7223053 169.499903,50.5060598" id="Fill-309" transform="translate(168.086224, 50.982296) rotate(90.000000) translate(-168.086224, -50.982296) "></path>
<path d="M169.499903,50.5060598 C169.762214,51.2898143 169.341273,52.1391419 168.560561,52.4014342 C167.779849,52.6647674 166.934855,52.2432261 166.672544,51.4584308 C166.410233,50.6746763 166.831175,49.8263896 167.611887,49.5630564 C168.392599,49.2997232 169.237592,49.7223053 169.499903,50.5060598 L169.499903,50.5060598 Z" id="Stroke-311" stroke-opacity="0.85" stroke="#A3B1BF" stroke-width="0.81" transform="translate(168.086224, 50.982296) rotate(90.000000) translate(-168.086224, -50.982296) "></path>
<path d="M171.926021,58.6185096 C172.188332,59.4022641 171.76739,60.2515917 170.986678,60.513884 C170.205966,60.7772172 169.360972,60.3556759 169.098661,59.5708806 C168.83635,58.7871261 169.257292,57.9388394 170.038004,57.6755062 C170.818716,57.412173 171.66371,57.8347551 171.926021,58.6185096" id="Fill-313" transform="translate(170.512341, 59.094746) rotate(90.000000) translate(-170.512341, -59.094746) "></path>
<path d="M171.926021,58.6185096 C172.188332,59.4022641 171.76739,60.2515917 170.986678,60.513884 C170.205966,60.7772172 169.360972,60.3556759 169.098661,59.5708806 C168.83635,58.7871261 169.257292,57.9388394 170.038004,57.6755062 C170.818716,57.412173 171.66371,57.8347551 171.926021,58.6185096 L171.926021,58.6185096 Z" id="Stroke-315" stroke="#A3B1BF" stroke-width="0.81" transform="translate(170.512341, 59.094746) rotate(90.000000) translate(-170.512341, -59.094746) "></path>
<path d="M175.160844,67.5422044 C175.423154,68.3259589 175.002213,69.1752864 174.221501,69.4375788 C173.440789,69.700912 172.595795,69.2793707 172.333484,68.4945754 C172.071173,67.7108209 172.492115,66.8625342 173.272827,66.599201 C174.053539,66.3358678 174.898533,66.7584499 175.160844,67.5422044" id="Fill-317" transform="translate(173.747164, 68.018441) rotate(90.000000) translate(-173.747164, -68.018441) "></path>
<path d="M175.160844,67.5422044 C175.423154,68.3259589 175.002213,69.1752864 174.221501,69.4375788 C173.440789,69.700912 172.595795,69.2793707 172.333484,68.4945754 C172.071173,67.7108209 172.492115,66.8625342 173.272827,66.599201 C174.053539,66.3358678 174.898533,66.7584499 175.160844,67.5422044 L175.160844,67.5422044 Z" id="Stroke-319" stroke="#A3B1BF" stroke-width="0.81" transform="translate(173.747164, 68.018441) rotate(90.000000) translate(-173.747164, -68.018441) "></path>
<path d="M177.586961,75.6546542 C177.849272,76.4384087 177.42833,77.2877362 176.647618,77.5500286 C175.866906,77.8133618 175.021912,77.3918205 174.759601,76.6070252 C174.49729,75.8232707 174.918232,74.974984 175.698944,74.7116508 C176.479656,74.4483176 177.32465,74.8708997 177.586961,75.6546542" id="Fill-321" transform="translate(176.173281, 76.130890) rotate(90.000000) translate(-176.173281, -76.130890) "></path>
<path d="M177.586961,75.6546542 C177.849272,76.4384087 177.42833,77.2877362 176.647618,77.5500286 C175.866906,77.8133618 175.021912,77.3918205 174.759601,76.6070252 C174.49729,75.8232707 174.918232,74.974984 175.698944,74.7116508 C176.479656,74.4483176 177.32465,74.8708997 177.586961,75.6546542 L177.586961,75.6546542 Z" id="Stroke-323" stroke="#A3B1BF" stroke-width="0.81" transform="translate(176.173281, 76.130890) rotate(90.000000) translate(-176.173281, -76.130890) "></path>
<path d="M180.821784,84.578349 C181.084095,85.3621035 180.663153,86.211431 179.882441,86.4737234 C179.101729,86.7370565 178.256735,86.3155153 177.994424,85.53072 C177.732113,84.7469655 178.153055,83.8986787 178.933767,83.6353456 C179.714479,83.3720124 180.559473,83.7945945 180.821784,84.578349" id="Fill-325" transform="translate(179.408104, 85.054585) rotate(90.000000) translate(-179.408104, -85.054585) "></path>
<path d="M180.821784,84.578349 C181.084095,85.3621035 180.663153,86.211431 179.882441,86.4737234 C179.101729,86.7370565 178.256735,86.3155153 177.994424,85.53072 C177.732113,84.7469655 178.153055,83.8986787 178.933767,83.6353456 C179.714479,83.3720124 180.559473,83.7945945 180.821784,84.578349 L180.821784,84.578349 Z" id="Stroke-327" stroke="#A3B1BF" stroke-width="0.81" transform="translate(179.408104, 85.054585) rotate(90.000000) translate(-179.408104, -85.054585) "></path>
<path d="M199.285547,130.323988 C200.045523,132.597188 198.826243,135.059822 196.56083,135.82276 C194.296454,136.585697 191.844417,135.361666 191.084441,133.087425 C190.323428,130.814225 191.543745,128.352632 193.808121,127.588654 C196.073533,126.825716 198.525571,128.050788 199.285547,130.323988" id="Fill-329" fill="#A3B1BF" transform="translate(195.184790, 131.705757) rotate(90.000000) translate(-195.184790, -131.705757) "></path>
<polygon id="Stroke-333" stroke="#A3B1BF" stroke-width="0.81" transform="translate(194.281082, 12.765148) rotate(90.000000) translate(-194.281082, -12.765148) " points="192.77098 15.3911937 191.260359 12.7651478 192.77098 10.1391019 195.791185 10.1391019 197.301806 12.7651478 195.791185 15.3911937"></polygon>
<polygon id="Fill-335" transform="translate(263.829774, 193.672778) rotate(90.000000) translate(-263.829774, -193.672778) " points="262.319672 196.298824 260.809051 193.672778 262.319672 191.046732 265.339877 191.046732 266.850498 193.672778 265.339877 196.298824"></polygon>
<polygon id="Stroke-337" stroke="#A3B1BF" stroke-width="0.81" transform="translate(263.829774, 193.672778) rotate(90.000000) translate(-263.829774, -193.672778) " points="262.319672 196.298824 260.809051 193.672778 262.319672 191.046732 265.339877 191.046732 266.850498 193.672778 265.339877 196.298824"></polygon>
<polygon id="Stroke-341" stroke="#A3B1BF" stroke-width="0.81" transform="translate(199.942022, 45.214947) rotate(90.000000) translate(-199.942022, -45.214947) " points="196.921299 45.214947 198.43192 42.588901 201.452125 42.588901 202.962746 45.214947 201.452125 47.8409929 198.43192 47.8409929"></polygon>
<polygon id="Stroke-345" stroke="#A3B1BF" stroke-width="0.81" transform="translate(203.176845, 35.480007) rotate(90.000000) translate(-203.176845, -35.480007) " points="200.156122 35.4800072 201.666743 32.8539613 204.686948 32.8539613 206.197569 35.4800072 204.686948 38.1060531 201.666743 38.1060531"></polygon>
<path d="M28.7090531,149.674699 L408.800743,149.674699" id="Path-13-Copy" stroke="#A3B1BF" stroke-width="2.43"></path>
<path d="M126.73696,157.381526 C130.786107,157.381526 138.956903,157.381526 138.956903,157.381526 C138.956903,157.381526 146.694174,157.381526 150.585513,157.381526 C275.808174,157.381526 408.39639,157.381526 408.39639,157.381526 C408.39639,157.381526 348.147813,204.433735 274.15124,201.594378 C200.154666,198.75502 175.893495,186.586345 157.293263,179.67788 C138.693031,172.769415 101.923452,169.955823 76.4120034,175.634538 C50.9005548,181.313253 28.3047003,157.381526 28.3047003,157.381526 C28.3047003,157.381526 34.3629836,157.381526 126.73696,157.381526 Z" id="Path-22-Copy" fill-opacity="0.25" fill="#A3B1BF"></path>
<g id="Group-2" transform="translate(0.000000, 75.851406)">
<ellipse id="Oval-40-Copy-2" stroke="#A3B1BF" stroke-width="2.43" fill-opacity="0.25" fill="#A3B1BF" cx="35.5830518" cy="35.6947791" rx="35.5830518" ry="35.6947791"></ellipse>
<ellipse id="Oval-40-Copy-3" fill="#F0F2F5" cx="35.8526204" cy="35.9651941" rx="30.4612489" ry="30.5568942"></ellipse>
</g>
<path d="M39.6265804,107.895582 L78.4444551,119.253012" id="Path-736" stroke="#A3B1BF" stroke-width="0.81"></path>
<path d="M32.7525817,115.60241 L65.9095164,140.751004" id="Path-736-Copy" stroke="#A3B1BF" stroke-width="0.81" transform="translate(49.331049, 128.176707) scale(-1, -1) translate(-49.331049, -128.176707) "></path>
<g id="Group" transform="translate(95.154052, 106.919777) rotate(19.000000) translate(-95.154052, -106.919777) translate(34.154052, 63.919777)" fill="#A3B1BF">
<path d="M42.7522815,72.4570067 C42.7522815,75.8233475 45.3271005,78.562549 48.4926445,78.562549 C51.6578573,78.562549 54.2333386,75.8233475 54.2333386,72.4570067 C54.2333386,69.091018 51.6578573,66.3525208 48.4926445,66.3525208 C45.3271005,66.3525208 42.7522815,69.091018 42.7522815,72.4570067 M40.1907075,72.4570067 C40.1907075,67.5898976 43.9148573,63.6284609 48.4926445,63.6284609 C53.0707627,63.6284609 56.7949126,67.5898976 56.7949126,72.4570067 C56.7949126,77.3251722 53.0707627,81.2859046 48.4926445,81.2859046 C43.9148573,81.2859046 40.1907075,77.3251722 40.1907075,72.4570067 L54.193687,73.4098081" id="Fill-13" fill-opacity="0.4"></path>
<path d="M37.9000472,72.2309321 C37.9000472,78.1565371 42.4331326,82.9775175 48.0049535,82.9775175 C53.5774367,82.9775175 58.110191,78.1565371 58.110191,72.2309321 C58.110191,66.3056792 53.5774367,61.485051 48.0049535,61.485051 C42.4331326,61.485051 37.9000472,66.3056792 37.9000472,72.2309321 M35.3384731,72.2309321 C35.3384731,64.8035024 41.0205583,58.760991 48.0049535,58.760991 C54.9893488,58.760991 60.6724273,64.8035024 60.6724273,72.2309321 C60.6724273,79.6587139 54.9893488,85.7019295 48.0049535,85.7019295 C41.0205583,85.7019295 35.3384731,79.6587139 35.3384731,72.2309321" id="Fill-15"></path>
<path d="M1.80809546,66.1576486 C1.80809546,68.834124 3.79009311,71.0116629 6.22625634,71.0116629 C8.66270911,71.0116629 10.644562,68.834124 10.644562,66.1576486 C10.644562,63.4813322 8.66270911,61.3039523 6.22625634,61.3039523 C3.79009311,61.3039523 1.80809546,63.4813322 1.80809546,66.1576486 M0.688100292,66.1576486 C0.688100292,62.8028295 3.17247427,60.0735498 6.22625634,60.0735498 C9.2800384,60.0735498 11.7648467,62.8028295 11.7648467,66.1576486 C11.7648467,69.5126267 9.2800384,72.2422245 6.22625634,72.2422245 C3.17247427,72.2422245 0.688100292,69.5126267 0.688100292,66.1576486" id="Fill-15-Copy"></path>
<path d="M8.98009502,66.0939913 L39.179583,29.1533303 L87.9014765,24.076001 L44.6752454,68.7902332 L45.5153066,69.7089343 L8.98009502,66.0939913 Z M5.34865982,69.3835683 L46.1480843,73.419304 C47.0103308,73.4270508 47.6235721,72.9654113 47.8811865,72.2953123 L49.8354794,74.4316711 L93.1120414,29.6649719 L108.025528,67.5588426 C108.413605,68.5455044 109.312607,69.1391917 110.258627,69.1391917 C110.569884,69.1391917 110.886107,69.0747523 111.192066,68.9391832 C112.424508,68.3905682 113.0053,66.8827574 112.490071,65.5728423 L88.7958421,5.36886461 L92.7040968,5.36886461 L92.7040968,12.726573 C92.7040968,13.562172 93.3408479,14.2400178 94.1272671,14.2400178 L108.786782,14.2400178 C109.171548,14.2400178 109.540751,14.0741657 109.809292,13.7794348 L117.408916,5.43506461 C117.934078,5.90550723 118.567187,6.70025945 118.772153,7.90031067 C119.120826,9.94441199 118.336394,13.6565422 112.619209,19.7367313 C112.062921,20.3272495 112.062921,21.2857411 112.619209,21.8769635 C112.896691,22.1727507 113.26159,22.3206444 113.625495,22.3206444 C113.989731,22.3206444 114.354298,22.1727507 114.63178,21.8769635 C119.954265,16.2168628 122.285045,11.3085547 121.560215,7.28796059 C120.892339,3.580408 117.884078,2.16415038 117.756265,2.10569718 C117.213553,1.85709502 116.581768,1.9916078 116.170513,2.44303552 L108.184137,11.2131281 L95.5507685,11.2131281 L95.5507685,5.36886461 L97.3534067,5.36886461 C98.6894914,5.36886461 99.7725975,4.21670276 99.7725975,2.7962196 C99.7725975,1.37538432 98.6894914,0.223222475 97.3534067,0.223222475 L85.1604334,0.223222475 C84.3508356,0.223222475 83.5948798,0.653874656 83.1465381,1.37045453 C82.6972031,2.08738654 82.6157466,2.99517176 82.9286587,3.78957186 L89.4140503,20.2684441 L40.3087153,25.3855639 L38.2463901,12.9619427 C37.9924181,11.9967607 37.0503708,11.4323 36.1411047,11.7044947 C35.232832,11.9752809 34.703365,12.9777884 34.9583303,13.9436747 L36.9981391,26.2845459 L4.21787189,66.3834403 C3.79767573,66.8968425 3.68310688,67.6183522 3.92184717,68.2504214 C4.1595941,68.883547 4.71058417,69.3198332 5.34865982,69.3835683 Z" id="Fill-17"></path>
</g>
<path d="M120.0928,133.044177 C120.0928,133.044177 117.26233,133.044177 117.26233,134.261044 C117.26233,135.477912 128.179857,144.401606 128.179857,144.401606 L120.0928,133.044177 Z" id="Path-731" fill="#A3B1BF"></path>
<path d="M146.375736,133.044177 C146.375736,133.044177 149.206206,133.044177 149.206206,134.261044 C149.206206,135.477912 138.288678,144.401606 138.288678,144.401606 L146.375736,133.044177 Z" id="Path-731-Copy-2" fill="#A3B1BF"></path>
<path d="M114.922075,137.687235 C114.922075,137.687235 112.297709,138.747548 112.753556,139.875807 C113.209402,141.004067 126.674832,145.188195 126.674832,145.188195 L114.922075,137.687235 Z" id="Path-731-Copy" fill="#A3B1BF"></path>
<path d="M150.02854,138.516693 C150.02854,138.516693 152.652906,139.580123 152.198396,140.708383 C151.743886,141.836643 138.288257,146.008745 138.288257,146.008745 L150.02854,138.516693 Z" id="Path-731-Copy-3" fill="#A3B1BF"></path>
<path d="M74.4009265,59.626506 C72.9743667,59.2687463 68.3698232,57.9570172 67.9312807,60.437751 C67.5752067,62.4519795 70.5119271,68.4526327 73.5922208,69.3614461 C80.4662194,71.3895585 88.1489236,68.5502009 95.0229222,70.5783133 C101.896921,72.6064258 101.500006,68.9632854 100.279509,67.7389559 C97.8533925,65.3052209 77.6357492,60.437751 74.4009265,59.626506 Z" id="Path-735" stroke="#A3B1BF" stroke-width="2.43"></path>
<g id="Group-2-Copy" transform="translate(346.684026, 76.257028)">
<ellipse id="Oval-40-Copy-2" stroke="#A3B1BF" stroke-width="2.43" fill="#DCE1E7" cx="35.5830518" cy="35.6947791" rx="35.5830518" ry="35.6947791"></ellipse>
<ellipse id="Oval-40-Copy-3" fill="#F0F2F5" cx="35.8526204" cy="35.9651941" rx="30.4612489" ry="30.5568942"></ellipse>
</g>
<path d="M364.90109,93.2931727 C363.56683,94.0412049 361.930683,95.8872138 360.413184,99.4391645 C355.560949,110.796594 356.774008,120.937157 356.774008,120.937157 C356.774008,120.937157 358.391419,101.467276 364.861065,97.8166743" id="Path-738" fill="#A3B1BF"></path>
<path d="M408.39639,103.839357 C407.06213,104.58739 405.425983,106.433399 403.908483,109.985349 C399.056249,121.342779 400.269308,131.483341 400.269308,131.483341 C400.269308,131.483341 401.886718,112.013461 408.356365,108.362859" id="Path-738-Copy" fill="#A3B1BF" transform="translate(404.265457, 117.661349) scale(-1, -1) translate(-404.265457, -117.661349) "></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 87 KiB

BIN
public/img/bg/bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
public/img/bg/bg1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 KiB

BIN
public/img/bg/bg2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 KiB

BIN
public/img/bg/bg3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

BIN
public/img/bg/bg4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

BIN
public/img/bg/cloud.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
public/img/bg/img-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
public/img/bg/login.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

BIN
public/img/bg/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 KiB

BIN
public/img/bg/vip1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
public/img/bg/vip2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
public/img/bg/vip3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
public/img/bg/vip4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
public/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
public/img/mock/cli/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

BIN
public/img/mock/cli/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

BIN
public/img/mock/cli/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 KiB

110
public/index.html Normal file
View File

@ -0,0 +1,110 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<link rel="stylesheet" href="<%= BASE_URL %>cdn/element-ui/2.15.1/theme-chalk/index.css">
<link rel="stylesheet" href="<%= BASE_URL %>cdn/animate/3.5.2/animate.css">
<link rel="stylesheet" href="<%= BASE_URL %>cdn/iconfont/index.css">
<link rel="stylesheet" href="<%= BASE_URL %>cdn/iconfont/avue/iconfont.css">
<link rel="stylesheet" href="<%= BASE_URL %>cdn/iconfont/saber/iconfont.css">
<link rel="stylesheet" href="<%= BASE_URL %>cdn/avue/2.8.12/index.css">
<script src="<%= BASE_URL %>cdn/xlsx/FileSaver.min.js"></script>
<script src="<%= BASE_URL %>cdn/xlsx/xlsx.full.min.js"></script>
<link rel="icon" href="<%= BASE_URL %>favicon.png">
<title>安全管理信息化平台</title>
<style>
html,
body,
#app {
height: 100%;
margin: 0;
padding: 0;
}
.avue-home {
background-color: #303133;
height: 100%;
display: flex;
flex-direction: column;
}
.avue-home__main {
user-select: none;
width: 100%;
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.avue-home__footer {
width: 100%;
flex-grow: 0;
text-align: center;
padding: 1em 0;
}
.avue-home__footer > a {
font-size: 12px;
color: #ABABAB;
text-decoration: none;
}
.avue-home__loading {
height: 32px;
width: 32px;
margin-bottom: 20px;
}
.avue-home__title {
color: #FFF;
font-size: 14px;
margin-bottom: 10px;
}
.avue-home__sub-title {
color: #ABABAB;
font-size: 12px;
}
</style>
</head>
<body>
<noscript>
<strong>
很抱歉,如果没有 JavaScript 支持Saber 将不能正常工作。请启用浏览器的 JavaScript 然后继续。
</strong>
</noscript>
<div id="app">
<div class="avue-home">
<div class="avue-home__main">
<img class="avue-home__loading" src="<%= BASE_URL %>svg/loading-spin.svg" alt="loading">
<div class="avue-home__title">
正在加载资源
</div>
<div class="avue-home__sub-title d">
初次加载资源可能需要较多时间 请耐心等待
</div>
</div>
</div>
</div>
<!-- built files will be auto injected -->
<script src="<%= BASE_URL %>util/aes.js" charset="utf-8"></script>
<script src="<%= BASE_URL %>cdn/vue/2.6.10/vue.js" charset="utf-8"></script>
<script src="<%= BASE_URL %>cdn/vuex/3.1.1/vuex.min.js" charset="utf-8"></script>
<script src="<%= BASE_URL %>cdn/vue-router/3.0.1/vue-router.min.js" charset="utf-8"></script>
<script src="<%= BASE_URL %>cdn/axios/1.0.0/axios.min.js" charset="utf-8"></script>
<script src="<%= BASE_URL %>cdn/element-ui/2.15.1/index.js" charset="utf-8"></script>
<script src="<%= BASE_URL %>cdn/avue/2.8.12/avue.min.js" charset="utf-8"></script>
</body>
</html>

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="white">
<path opacity=".25" d="M16 0 A16 16 0 0 0 16 32 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 16 28 A12 12 0 0 1 16 4"/>
<path d="M16 0 A16 16 0 0 1 32 16 L28 16 A12 12 0 0 0 16 4z">
<animateTransform attributeName="transform" type="rotate" from="0 16 16" to="360 16 16" dur="0.8s" repeatCount="indefinite" />
</path>
</svg>

After

Width:  |  Height:  |  Size: 422 B

105
public/util/aes.js Normal file
View File

@ -0,0 +1,105 @@
/*
CryptoJS v3.1.2
code.google.com/p/crypto-js
(c) 2009-2013 by Jeff Mott. All rights reserved.
code.google.com/p/crypto-js/wiki/License
*/
var CryptoJS = CryptoJS || function (u, p) {
var d = {}, l = d.lib = {}, s = function () { }, t = l.Base = { extend: function (a) { s.prototype = this; var c = new s; a && c.mixIn(a); c.hasOwnProperty("init") || (c.init = function () { c.$super.init.apply(this, arguments) }); c.init.prototype = c; c.$super = this; return c }, create: function () { var a = this.extend(); a.init.apply(a, arguments); return a }, init: function () { }, mixIn: function (a) { for (var c in a) a.hasOwnProperty(c) && (this[c] = a[c]); a.hasOwnProperty("toString") && (this.toString = a.toString) }, clone: function () { return this.init.prototype.extend(this) } },
r = l.WordArray = t.extend({
init: function (a, c) { a = this.words = a || []; this.sigBytes = c != p ? c : 4 * a.length }, toString: function (a) { return (a || v).stringify(this) }, concat: function (a) { var c = this.words, e = a.words, j = this.sigBytes; a = a.sigBytes; this.clamp(); if (j % 4) for (var k = 0; k < a; k++)c[j + k >>> 2] |= (e[k >>> 2] >>> 24 - 8 * (k % 4) & 255) << 24 - 8 * ((j + k) % 4); else if (65535 < e.length) for (k = 0; k < a; k += 4)c[j + k >>> 2] = e[k >>> 2]; else c.push.apply(c, e); this.sigBytes += a; return this }, clamp: function () {
var a = this.words, c = this.sigBytes; a[c >>> 2] &= 4294967295 <<
32 - 8 * (c % 4); a.length = u.ceil(c / 4)
}, clone: function () { var a = t.clone.call(this); a.words = this.words.slice(0); return a }, random: function (a) { for (var c = [], e = 0; e < a; e += 4)c.push(4294967296 * u.random() | 0); return new r.init(c, a) }
}), w = d.enc = {}, v = w.Hex = {
stringify: function (a) { var c = a.words; a = a.sigBytes; for (var e = [], j = 0; j < a; j++) { var k = c[j >>> 2] >>> 24 - 8 * (j % 4) & 255; e.push((k >>> 4).toString(16)); e.push((k & 15).toString(16)) } return e.join("") }, parse: function (a) {
for (var c = a.length, e = [], j = 0; j < c; j += 2)e[j >>> 3] |= parseInt(a.substr(j,
2), 16) << 24 - 4 * (j % 8); return new r.init(e, c / 2)
}
}, b = w.Latin1 = { stringify: function (a) { var c = a.words; a = a.sigBytes; for (var e = [], j = 0; j < a; j++)e.push(String.fromCharCode(c[j >>> 2] >>> 24 - 8 * (j % 4) & 255)); return e.join("") }, parse: function (a) { for (var c = a.length, e = [], j = 0; j < c; j++)e[j >>> 2] |= (a.charCodeAt(j) & 255) << 24 - 8 * (j % 4); return new r.init(e, c) } }, x = w.Utf8 = { stringify: function (a) { try { return decodeURIComponent(escape(b.stringify(a))) } catch (c) { throw Error("Malformed UTF-8 data"); } }, parse: function (a) { return b.parse(unescape(encodeURIComponent(a))) } },
q = l.BufferedBlockAlgorithm = t.extend({
reset: function () { this._data = new r.init; this._nDataBytes = 0 }, _append: function (a) { "string" == typeof a && (a = x.parse(a)); this._data.concat(a); this._nDataBytes += a.sigBytes }, _process: function (a) { var c = this._data, e = c.words, j = c.sigBytes, k = this.blockSize, b = j / (4 * k), b = a ? u.ceil(b) : u.max((b | 0) - this._minBufferSize, 0); a = b * k; j = u.min(4 * a, j); if (a) { for (var q = 0; q < a; q += k)this._doProcessBlock(e, q); q = e.splice(0, a); c.sigBytes -= j } return new r.init(q, j) }, clone: function () {
var a = t.clone.call(this);
a._data = this._data.clone(); return a
}, _minBufferSize: 0
}); l.Hasher = q.extend({
cfg: t.extend(), init: function (a) { this.cfg = this.cfg.extend(a); this.reset() }, reset: function () { q.reset.call(this); this._doReset() }, update: function (a) { this._append(a); this._process(); return this }, finalize: function (a) { a && this._append(a); return this._doFinalize() }, blockSize: 16, _createHelper: function (a) { return function (b, e) { return (new a.init(e)).finalize(b) } }, _createHmacHelper: function (a) {
return function (b, e) {
return (new n.HMAC.init(a,
e)).finalize(b)
}
}
}); var n = d.algo = {}; return d
}(Math);
(function () {
var u = CryptoJS, p = u.lib.WordArray; u.enc.Base64 = {
stringify: function (d) { var l = d.words, p = d.sigBytes, t = this._map; d.clamp(); d = []; for (var r = 0; r < p; r += 3)for (var w = (l[r >>> 2] >>> 24 - 8 * (r % 4) & 255) << 16 | (l[r + 1 >>> 2] >>> 24 - 8 * ((r + 1) % 4) & 255) << 8 | l[r + 2 >>> 2] >>> 24 - 8 * ((r + 2) % 4) & 255, v = 0; 4 > v && r + 0.75 * v < p; v++)d.push(t.charAt(w >>> 6 * (3 - v) & 63)); if (l = t.charAt(64)) for (; d.length % 4;)d.push(l); return d.join("") }, parse: function (d) {
var l = d.length, s = this._map, t = s.charAt(64); t && (t = d.indexOf(t), -1 != t && (l = t)); for (var t = [], r = 0, w = 0; w <
l; w++)if (w % 4) { var v = s.indexOf(d.charAt(w - 1)) << 2 * (w % 4), b = s.indexOf(d.charAt(w)) >>> 6 - 2 * (w % 4); t[r >>> 2] |= (v | b) << 24 - 8 * (r % 4); r++ } return p.create(t, r)
}, _map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
}
})();
(function (u) {
function p(b, n, a, c, e, j, k) { b = b + (n & a | ~n & c) + e + k; return (b << j | b >>> 32 - j) + n } function d(b, n, a, c, e, j, k) { b = b + (n & c | a & ~c) + e + k; return (b << j | b >>> 32 - j) + n } function l(b, n, a, c, e, j, k) { b = b + (n ^ a ^ c) + e + k; return (b << j | b >>> 32 - j) + n } function s(b, n, a, c, e, j, k) { b = b + (a ^ (n | ~c)) + e + k; return (b << j | b >>> 32 - j) + n } for (var t = CryptoJS, r = t.lib, w = r.WordArray, v = r.Hasher, r = t.algo, b = [], x = 0; 64 > x; x++)b[x] = 4294967296 * u.abs(u.sin(x + 1)) | 0; r = r.MD5 = v.extend({
_doReset: function () { this._hash = new w.init([1732584193, 4023233417, 2562383102, 271733878]) },
_doProcessBlock: function (q, n) {
for (var a = 0; 16 > a; a++) { var c = n + a, e = q[c]; q[c] = (e << 8 | e >>> 24) & 16711935 | (e << 24 | e >>> 8) & 4278255360 } var a = this._hash.words, c = q[n + 0], e = q[n + 1], j = q[n + 2], k = q[n + 3], z = q[n + 4], r = q[n + 5], t = q[n + 6], w = q[n + 7], v = q[n + 8], A = q[n + 9], B = q[n + 10], C = q[n + 11], u = q[n + 12], D = q[n + 13], E = q[n + 14], x = q[n + 15], f = a[0], m = a[1], g = a[2], h = a[3], f = p(f, m, g, h, c, 7, b[0]), h = p(h, f, m, g, e, 12, b[1]), g = p(g, h, f, m, j, 17, b[2]), m = p(m, g, h, f, k, 22, b[3]), f = p(f, m, g, h, z, 7, b[4]), h = p(h, f, m, g, r, 12, b[5]), g = p(g, h, f, m, t, 17, b[6]), m = p(m, g, h, f, w, 22, b[7]),
f = p(f, m, g, h, v, 7, b[8]), h = p(h, f, m, g, A, 12, b[9]), g = p(g, h, f, m, B, 17, b[10]), m = p(m, g, h, f, C, 22, b[11]), f = p(f, m, g, h, u, 7, b[12]), h = p(h, f, m, g, D, 12, b[13]), g = p(g, h, f, m, E, 17, b[14]), m = p(m, g, h, f, x, 22, b[15]), f = d(f, m, g, h, e, 5, b[16]), h = d(h, f, m, g, t, 9, b[17]), g = d(g, h, f, m, C, 14, b[18]), m = d(m, g, h, f, c, 20, b[19]), f = d(f, m, g, h, r, 5, b[20]), h = d(h, f, m, g, B, 9, b[21]), g = d(g, h, f, m, x, 14, b[22]), m = d(m, g, h, f, z, 20, b[23]), f = d(f, m, g, h, A, 5, b[24]), h = d(h, f, m, g, E, 9, b[25]), g = d(g, h, f, m, k, 14, b[26]), m = d(m, g, h, f, v, 20, b[27]), f = d(f, m, g, h, D, 5, b[28]), h = d(h, f,
m, g, j, 9, b[29]), g = d(g, h, f, m, w, 14, b[30]), m = d(m, g, h, f, u, 20, b[31]), f = l(f, m, g, h, r, 4, b[32]), h = l(h, f, m, g, v, 11, b[33]), g = l(g, h, f, m, C, 16, b[34]), m = l(m, g, h, f, E, 23, b[35]), f = l(f, m, g, h, e, 4, b[36]), h = l(h, f, m, g, z, 11, b[37]), g = l(g, h, f, m, w, 16, b[38]), m = l(m, g, h, f, B, 23, b[39]), f = l(f, m, g, h, D, 4, b[40]), h = l(h, f, m, g, c, 11, b[41]), g = l(g, h, f, m, k, 16, b[42]), m = l(m, g, h, f, t, 23, b[43]), f = l(f, m, g, h, A, 4, b[44]), h = l(h, f, m, g, u, 11, b[45]), g = l(g, h, f, m, x, 16, b[46]), m = l(m, g, h, f, j, 23, b[47]), f = s(f, m, g, h, c, 6, b[48]), h = s(h, f, m, g, w, 10, b[49]), g = s(g, h, f, m,
E, 15, b[50]), m = s(m, g, h, f, r, 21, b[51]), f = s(f, m, g, h, u, 6, b[52]), h = s(h, f, m, g, k, 10, b[53]), g = s(g, h, f, m, B, 15, b[54]), m = s(m, g, h, f, e, 21, b[55]), f = s(f, m, g, h, v, 6, b[56]), h = s(h, f, m, g, x, 10, b[57]), g = s(g, h, f, m, t, 15, b[58]), m = s(m, g, h, f, D, 21, b[59]), f = s(f, m, g, h, z, 6, b[60]), h = s(h, f, m, g, C, 10, b[61]), g = s(g, h, f, m, j, 15, b[62]), m = s(m, g, h, f, A, 21, b[63]); a[0] = a[0] + f | 0; a[1] = a[1] + m | 0; a[2] = a[2] + g | 0; a[3] = a[3] + h | 0
}, _doFinalize: function () {
var b = this._data, n = b.words, a = 8 * this._nDataBytes, c = 8 * b.sigBytes; n[c >>> 5] |= 128 << 24 - c % 32; var e = u.floor(a /
4294967296); n[(c + 64 >>> 9 << 4) + 15] = (e << 8 | e >>> 24) & 16711935 | (e << 24 | e >>> 8) & 4278255360; n[(c + 64 >>> 9 << 4) + 14] = (a << 8 | a >>> 24) & 16711935 | (a << 24 | a >>> 8) & 4278255360; b.sigBytes = 4 * (n.length + 1); this._process(); b = this._hash; n = b.words; for (a = 0; 4 > a; a++)c = n[a], n[a] = (c << 8 | c >>> 24) & 16711935 | (c << 24 | c >>> 8) & 4278255360; return b
}, clone: function () { var b = v.clone.call(this); b._hash = this._hash.clone(); return b }
}); t.MD5 = v._createHelper(r); t.HmacMD5 = v._createHmacHelper(r)
})(Math);
(function () {
var u = CryptoJS, p = u.lib, d = p.Base, l = p.WordArray, p = u.algo, s = p.EvpKDF = d.extend({ cfg: d.extend({ keySize: 4, hasher: p.MD5, iterations: 1 }), init: function (d) { this.cfg = this.cfg.extend(d) }, compute: function (d, r) { for (var p = this.cfg, s = p.hasher.create(), b = l.create(), u = b.words, q = p.keySize, p = p.iterations; u.length < q;) { n && s.update(n); var n = s.update(d).finalize(r); s.reset(); for (var a = 1; a < p; a++)n = s.finalize(n), s.reset(); b.concat(n) } b.sigBytes = 4 * q; return b } }); u.EvpKDF = function (d, l, p) {
return s.create(p).compute(d,
l)
}
})();
CryptoJS.lib.Cipher || function (u) {
var p = CryptoJS, d = p.lib, l = d.Base, s = d.WordArray, t = d.BufferedBlockAlgorithm, r = p.enc.Base64, w = p.algo.EvpKDF, v = d.Cipher = t.extend({
cfg: l.extend(), createEncryptor: function (e, a) { return this.create(this._ENC_XFORM_MODE, e, a) }, createDecryptor: function (e, a) { return this.create(this._DEC_XFORM_MODE, e, a) }, init: function (e, a, b) { this.cfg = this.cfg.extend(b); this._xformMode = e; this._key = a; this.reset() }, reset: function () { t.reset.call(this); this._doReset() }, process: function (e) { this._append(e); return this._process() },
finalize: function (e) { e && this._append(e); return this._doFinalize() }, keySize: 4, ivSize: 4, _ENC_XFORM_MODE: 1, _DEC_XFORM_MODE: 2, _createHelper: function (e) { return { encrypt: function (b, k, d) { return ("string" == typeof k ? c : a).encrypt(e, b, k, d) }, decrypt: function (b, k, d) { return ("string" == typeof k ? c : a).decrypt(e, b, k, d) } } }
}); d.StreamCipher = v.extend({ _doFinalize: function () { return this._process(!0) }, blockSize: 1 }); var b = p.mode = {}, x = function (e, a, b) {
var c = this._iv; c ? this._iv = u : c = this._prevBlock; for (var d = 0; d < b; d++)e[a + d] ^=
c[d]
}, q = (d.BlockCipherMode = l.extend({ createEncryptor: function (e, a) { return this.Encryptor.create(e, a) }, createDecryptor: function (e, a) { return this.Decryptor.create(e, a) }, init: function (e, a) { this._cipher = e; this._iv = a } })).extend(); q.Encryptor = q.extend({ processBlock: function (e, a) { var b = this._cipher, c = b.blockSize; x.call(this, e, a, c); b.encryptBlock(e, a); this._prevBlock = e.slice(a, a + c) } }); q.Decryptor = q.extend({
processBlock: function (e, a) {
var b = this._cipher, c = b.blockSize, d = e.slice(a, a + c); b.decryptBlock(e, a); x.call(this,
e, a, c); this._prevBlock = d
}
}); b = b.CBC = q; q = (p.pad = {}).Pkcs7 = { pad: function (a, b) { for (var c = 4 * b, c = c - a.sigBytes % c, d = c << 24 | c << 16 | c << 8 | c, l = [], n = 0; n < c; n += 4)l.push(d); c = s.create(l, c); a.concat(c) }, unpad: function (a) { a.sigBytes -= a.words[a.sigBytes - 1 >>> 2] & 255 } }; d.BlockCipher = v.extend({
cfg: v.cfg.extend({ mode: b, padding: q }), reset: function () {
v.reset.call(this); var a = this.cfg, b = a.iv, a = a.mode; if (this._xformMode == this._ENC_XFORM_MODE) var c = a.createEncryptor; else c = a.createDecryptor, this._minBufferSize = 1; this._mode = c.call(a,
this, b && b.words)
}, _doProcessBlock: function (a, b) { this._mode.processBlock(a, b) }, _doFinalize: function () { var a = this.cfg.padding; if (this._xformMode == this._ENC_XFORM_MODE) { a.pad(this._data, this.blockSize); var b = this._process(!0) } else b = this._process(!0), a.unpad(b); return b }, blockSize: 4
}); var n = d.CipherParams = l.extend({ init: function (a) { this.mixIn(a) }, toString: function (a) { return (a || this.formatter).stringify(this) } }), b = (p.format = {}).OpenSSL = {
stringify: function (a) {
var b = a.ciphertext; a = a.salt; return (a ? s.create([1398893684,
1701076831]).concat(a).concat(b) : b).toString(r)
}, parse: function (a) { a = r.parse(a); var b = a.words; if (1398893684 == b[0] && 1701076831 == b[1]) { var c = s.create(b.slice(2, 4)); b.splice(0, 4); a.sigBytes -= 16 } return n.create({ ciphertext: a, salt: c }) }
}, a = d.SerializableCipher = l.extend({
cfg: l.extend({ format: b }), encrypt: function (a, b, c, d) { d = this.cfg.extend(d); var l = a.createEncryptor(c, d); b = l.finalize(b); l = l.cfg; return n.create({ ciphertext: b, key: c, iv: l.iv, algorithm: a, mode: l.mode, padding: l.padding, blockSize: a.blockSize, formatter: d.format }) },
decrypt: function (a, b, c, d) { d = this.cfg.extend(d); b = this._parse(b, d.format); return a.createDecryptor(c, d).finalize(b.ciphertext) }, _parse: function (a, b) { return "string" == typeof a ? b.parse(a, this) : a }
}), p = (p.kdf = {}).OpenSSL = { execute: function (a, b, c, d) { d || (d = s.random(8)); a = w.create({ keySize: b + c }).compute(a, d); c = s.create(a.words.slice(b), 4 * c); a.sigBytes = 4 * b; return n.create({ key: a, iv: c, salt: d }) } }, c = d.PasswordBasedCipher = a.extend({
cfg: a.cfg.extend({ kdf: p }), encrypt: function (b, c, d, l) {
l = this.cfg.extend(l); d = l.kdf.execute(d,
b.keySize, b.ivSize); l.iv = d.iv; b = a.encrypt.call(this, b, c, d.key, l); b.mixIn(d); return b
}, decrypt: function (b, c, d, l) { l = this.cfg.extend(l); c = this._parse(c, l.format); d = l.kdf.execute(d, b.keySize, b.ivSize, c.salt); l.iv = d.iv; return a.decrypt.call(this, b, c, d.key, l) }
})
}();
(function () {
for (var u = CryptoJS, p = u.lib.BlockCipher, d = u.algo, l = [], s = [], t = [], r = [], w = [], v = [], b = [], x = [], q = [], n = [], a = [], c = 0; 256 > c; c++)a[c] = 128 > c ? c << 1 : c << 1 ^ 283; for (var e = 0, j = 0, c = 0; 256 > c; c++) { var k = j ^ j << 1 ^ j << 2 ^ j << 3 ^ j << 4, k = k >>> 8 ^ k & 255 ^ 99; l[e] = k; s[k] = e; var z = a[e], F = a[z], G = a[F], y = 257 * a[k] ^ 16843008 * k; t[e] = y << 24 | y >>> 8; r[e] = y << 16 | y >>> 16; w[e] = y << 8 | y >>> 24; v[e] = y; y = 16843009 * G ^ 65537 * F ^ 257 * z ^ 16843008 * e; b[k] = y << 24 | y >>> 8; x[k] = y << 16 | y >>> 16; q[k] = y << 8 | y >>> 24; n[k] = y; e ? (e = z ^ a[a[a[G ^ z]]], j ^= a[a[j]]) : e = j = 1 } var H = [0, 1, 2, 4, 8,
16, 32, 64, 128, 27, 54], d = d.AES = p.extend({
_doReset: function () {
for (var a = this._key, c = a.words, d = a.sigBytes / 4, a = 4 * ((this._nRounds = d + 6) + 1), e = this._keySchedule = [], j = 0; j < a; j++)if (j < d) e[j] = c[j]; else { var k = e[j - 1]; j % d ? 6 < d && 4 == j % d && (k = l[k >>> 24] << 24 | l[k >>> 16 & 255] << 16 | l[k >>> 8 & 255] << 8 | l[k & 255]) : (k = k << 8 | k >>> 24, k = l[k >>> 24] << 24 | l[k >>> 16 & 255] << 16 | l[k >>> 8 & 255] << 8 | l[k & 255], k ^= H[j / d | 0] << 24); e[j] = e[j - d] ^ k } c = this._invKeySchedule = []; for (d = 0; d < a; d++)j = a - d, k = d % 4 ? e[j] : e[j - 4], c[d] = 4 > d || 4 >= j ? k : b[l[k >>> 24]] ^ x[l[k >>> 16 & 255]] ^ q[l[k >>>
8 & 255]] ^ n[l[k & 255]]
}, encryptBlock: function (a, b) { this._doCryptBlock(a, b, this._keySchedule, t, r, w, v, l) }, decryptBlock: function (a, c) { var d = a[c + 1]; a[c + 1] = a[c + 3]; a[c + 3] = d; this._doCryptBlock(a, c, this._invKeySchedule, b, x, q, n, s); d = a[c + 1]; a[c + 1] = a[c + 3]; a[c + 3] = d }, _doCryptBlock: function (a, b, c, d, e, j, l, f) {
for (var m = this._nRounds, g = a[b] ^ c[0], h = a[b + 1] ^ c[1], k = a[b + 2] ^ c[2], n = a[b + 3] ^ c[3], p = 4, r = 1; r < m; r++)var q = d[g >>> 24] ^ e[h >>> 16 & 255] ^ j[k >>> 8 & 255] ^ l[n & 255] ^ c[p++], s = d[h >>> 24] ^ e[k >>> 16 & 255] ^ j[n >>> 8 & 255] ^ l[g & 255] ^ c[p++], t =
d[k >>> 24] ^ e[n >>> 16 & 255] ^ j[g >>> 8 & 255] ^ l[h & 255] ^ c[p++], n = d[n >>> 24] ^ e[g >>> 16 & 255] ^ j[h >>> 8 & 255] ^ l[k & 255] ^ c[p++], g = q, h = s, k = t; q = (f[g >>> 24] << 24 | f[h >>> 16 & 255] << 16 | f[k >>> 8 & 255] << 8 | f[n & 255]) ^ c[p++]; s = (f[h >>> 24] << 24 | f[k >>> 16 & 255] << 16 | f[n >>> 8 & 255] << 8 | f[g & 255]) ^ c[p++]; t = (f[k >>> 24] << 24 | f[n >>> 16 & 255] << 16 | f[g >>> 8 & 255] << 8 | f[h & 255]) ^ c[p++]; n = (f[n >>> 24] << 24 | f[g >>> 16 & 255] << 16 | f[h >>> 8 & 255] << 8 | f[k & 255]) ^ c[p++]; a[b] = q; a[b + 1] = s; a[b + 2] = t; a[b + 3] = n
}, keySize: 8
}); u.AES = p._createHelper(d)
})();

BIN
public/util/screen/guge.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 421 KiB

View File

@ -0,0 +1,32 @@
.el-tip {
position: fixed;
left: 50%;
top: 50%;
width: 500px;
padding: 8px 16px;
margin: 0;
margin-left: -250px;
margin-top: -60px;
box-sizing: border-box;
border-radius: 4px;
position: relative;
background-color: #fff;
overflow: hidden;
opacity: 1;
display: flex;
align-items: center;
transition: opacity .2s;
}
.el-tip--warning {
background-color: #fdf6ec;
color: #e6a23c;
}
.el-tip__title {
line-height: 18px;
}
.el-tip_img img{
width: 80px;
height: 80px;
}

View File

@ -0,0 +1,47 @@
function util() {
this.flag = true;
var body = document.body;
var safe = this;
var validVersion = function() {
var browser = navigator.appName
var b_version = navigator.appVersion
var version = b_version.split(";");
var trim_Version = version[1].replace(/[ ]/g, "");
if (trim_Version == 'WOW64') {
safe.flag = false
} else if (browser == "Microsoft Internet Explorer" && trim_Version == "MSIE6.0") {
safe.flag = false
} else if (browser == "Microsoft Internet Explorer" && trim_Version == "MSIE7.0") {
safe.flag = false
} else if (browser == "Microsoft Internet Explorer" && trim_Version == "MSIE8.0") {
safe.flag = false
} else if (browser == "Microsoft Internet Explorer" && trim_Version == "MSIE9.0") {
safe.flag = false
}
}
this.setBody = function() {
var str = '<div class="el-tip el-tip--warning" id="tip">' +
'<div class="el-tip_content">' +
'<span class="el-tip__title">' +
'您乘坐的浏览器版本太低了,你可以把浏览器从兼容模式调到极速模式' +
'<br /> 实在不行就换浏览器吧;' +
'</span>' +
'<div class="el-tip_img">' +
'<img src="/util/screen/huohu.png" alt="">' +
'<img src="/util/screen/guge.png" alt="">' +
'</div>' +
'</div>' +
'</div>';
body.innerHTML = str + body.innerHTML
}
this.init = function() {
validVersion(); //检测浏览器的版本
return this;
}
}
var creen = new util().init();
var flag = creen.flag;
if (!flag) {
creen.setBody();
}

40
src/App.vue Normal file
View File

@ -0,0 +1,40 @@
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: "app",
data() {
return {};
},
watch: {},
created() {
if (location && location.hash) {
var hashList = location.hash.split('?');
if (hashList.length === 2 && hashList[0] === '#/single-login') {
let obj = {};
let reg = /([^?=&]+)=([^?=&]+)/g;
location.href.replace(reg, function () {
obj[arguments[1]] = decodeURIComponent(arguments[2])
});
this.$router.push({
path: 'single-login-handle',
query: obj
})
}
}
},
methods: {},
computed: {}
};
</script>
<style lang="scss" scoped>
#app {
width: 100%;
height: 100%;
overflow: hidden;
}
</style>

53
src/api/base/region.js Normal file
View File

@ -0,0 +1,53 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/security-system/region/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getLazyTree = (parentCode, params) => {
return request({
url: '/api/security-system/region/lazy-tree',
method: 'get',
params: {
...params,
parentCode
}
})
}
export const getDetail = (code) => {
return request({
url: '/api/security-system/region/detail',
method: 'get',
params: {
code
}
})
}
export const remove = (id) => {
return request({
url: '/api/security-system/region/remove',
method: 'post',
params: {
id,
}
})
}
export const submit = (row) => {
return request({
url: '/api/security-system/region/submit',
method: 'post',
data: row
})
}

13
src/api/demo/user/user.js Normal file
View File

@ -0,0 +1,13 @@
import request from '@/router/axios';
/**
* 获取列表
*/
export const getList = (pageSize, pageIndex, params) => {
return request({
url: '/api/example',
methods: 'get',
params: {
pageIndex, pageSize, ...params
}
})
}

50
src/api/desk/notice.js Normal file
View File

@ -0,0 +1,50 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/security-desk/notice/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const remove = (ids) => {
return request({
url: '/api/security-desk/notice/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/security-desk/notice/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/security-desk/notice/submit',
method: 'post',
data: row
})
}
export const getNotice = (id) => {
return request({
url: '/api/security-desk/notice/detail',
method: 'get',
params: {
id
}
})
}

99
src/api/flow/flow.js Normal file
View File

@ -0,0 +1,99 @@
import request from '@/router/axios';
export const modelList = (current, size, params) => {
return request({
url: '/api/security-flow/model/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const managerList = (current, size, params) => {
return request({
url: '/api/security-flow/manager/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const followList = (current, size, params) => {
return request({
url: '/api/security-flow/follow/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const removeModel = (ids) => {
return request({
url: '/api/security-flow/model/remove',
method: 'post',
params: {
ids,
}
})
}
export const deployModel = (params) => {
return request({
url: '/api/security-flow/model/deploy',
method: 'post',
params
})
}
export const changeState = (params) => {
return request({
url: '/api/security-flow/manager/change-state',
method: 'post',
params
})
}
export const deployUpload = (category, tenantIds, files) => {
const formData = new FormData();
formData.append('category', category);
formData.append('tenantIds', tenantIds);
files.forEach(file => {
formData.append('files', file);
});
return request({
headers: {
"Content-Type": "multipart/form-data"
},
url: '/api/security-flow/manager/deploy-upload',
method: 'post',
data: formData
})
}
export const deleteDeployment = (deploymentIds) => {
return request({
url: '/api/security-flow/manager/delete-deployment',
method: 'post',
params: {
deploymentIds,
}
})
}
export const deleteProcessInstance = (params) => {
return request({
url: '/api/security-flow/follow/delete-process-instance',
method: 'post',
params
})
}

64
src/api/logs.js Normal file
View File

@ -0,0 +1,64 @@
import request from '@/router/axios';
export const getUsualList = (current, size) => {
return request({
url: '/api/security-log/usual/list',
method: 'get',
params: {
current,
size
}
})
}
export const getApiList = (current, size) => {
return request({
url: '/api/security-log/api/list',
method: 'get',
params: {
current,
size
}
})
}
export const getErrorList = (current, size) => {
return request({
url: '/api/security-log/error/list',
method: 'get',
params: {
current,
size
}
})
}
export const getUsualLogs = (id) => {
return request({
url: '/api/security-log/usual/detail',
method: 'get',
params: {
id,
}
})
}
export const getApiLogs = (id) => {
return request({
url: '/api/security-log/api/detail',
method: 'get',
params: {
id,
}
})
}
export const getErrorLogs = (id) => {
return request({
url: '/api/security-log/error/detail',
method: 'get',
params: {
id,
}
})
}

22
src/api/report/report.js Normal file
View File

@ -0,0 +1,22 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/security-report/report/rest/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const remove = (ids) => {
return request({
url: '/api/security-report/report/rest/remove',
method: 'post',
params: {
ids,
}
})
}

View File

@ -0,0 +1,50 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/security-resource/attach/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/security-resource/attach/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/security-resource/attach/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/security-resource/attach/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/security-resource/attach/submit',
method: 'post',
data: row
})
}

59
src/api/resource/oss.js Normal file
View File

@ -0,0 +1,59 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/security-resource/oss/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/security-resource/oss/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/security-resource/oss/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/security-resource/oss/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/security-resource/oss/submit',
method: 'post',
data: row
})
}
export const enable = (id) => {
return request({
url: '/api/security-resource/oss/enable',
method: 'post',
params: {
id
}
})
}

72
src/api/resource/sms.js Normal file
View File

@ -0,0 +1,72 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/security-resource/sms/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/security-resource/sms/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/security-resource/sms/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/security-resource/sms/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/security-resource/sms/submit',
method: 'post',
data: row
})
}
export const enable = (id) => {
return request({
url: '/api/security-resource/sms/enable',
method: 'post',
params: {
id
}
})
}
export const send = (code, phones, params) => {
return request({
url: '/api/security-resource/sms/endpoint/send-message',
method: 'post',
params: {
code,
phones,
params,
}
})
}

View File

@ -0,0 +1,74 @@
/**
* 加班报备
*/
import request from '@/router/axios';
import website from '@/config/website';
// 查询详情
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/dutyrecords/detail/${id}`,
method: 'get'
})
}
// 暂存
export const save = (params) => {
return request({
url: `/api/${website.applicationName}/dutyrecords/save`,
method: 'post',
data: params
})
}
// 提交
export const handin = (params) => {
return request({
url: `/api/${website.applicationName}/dutyrecords/handin`,
method: 'post',
data: params
})
}
// 删除
export const remove = (params) => {
return request({
url: `/api/${website.applicationName}/dutyrecords/remove`,
method: 'post',
params: {
'ids': params
}
})
}
// 查询分页信息
export const getPage = (params) => {
return request({
url: `/api/${website.applicationName}/dutyrecords/page`,
method: 'get',
params: {
...params
}
})
}
// 删除明细行
export const removeLine = (params) => {
return request({
url: `/api/${website.applicationName}/dutyrecordslines/remove`,
method: 'post',
params: {
'ids': params
}
})
}
// 导出excel
export const exportDutyExcel = (params) => {
return request({
url: `/api/${website.applicationName}/dutyrecords/export`,
method: 'post',
params: {
'ids': params
},
responseType:'blob',
header:{
headers:{'Content-Type':'application/x-download'}
}
})
}

View File

@ -0,0 +1,76 @@
/**
* 工作提醒便签功能
*/
import request from '@/router/axios';
import website from '@/config/website';
// 查询详情
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/noteremind/detail/${id}`,
method: 'get'
})
}
// 暂存
export const saveOrUpdate = (params) => {
return request({
url: `/api/${website.applicationName}/noteremind/saveOrUpdate`,
method: 'post',
data: params
})
}
// 提交
export const handin = (params) => {
return request({
url: `/api/${website.applicationName}/noteremind/handin`,
method: 'post',
data: params
})
}
// 完成工作
export const finishWork = (params) => {
return request({
url: `/api/${website.applicationName}/noteremind/finish`,
method: 'post',
data: params
})
}
// 关闭提醒
export const closeReminder = (ids) => {
return request({
url: `/api/${website.applicationName}/noteremind/closeReminder`,
method: 'post',
params: {
'ids': ids
}
})
}
// 删除
export const batchDelete = (ids) => {
return request({
url: `/api/${website.applicationName}/noteremind/remove`,
method: 'post',
params: {
'ids': ids
}
})
}
// 查询分页信息
export const getPage = (params) => {
return request({
url: `/api/${website.applicationName}/noteremind/page`,
method: 'get',
params: {
...params
}
})
}
// 首页查询分页信息
export const getTodoPage = (params) => {
return request({
url: `/api/${website.applicationName}/noteremind/todoPage`,
method: 'get',
params: {
...params
}
})
}

View File

@ -0,0 +1,48 @@
/**
* 加班报备
*/
import request from '@/router/axios';
import website from '@/config/website';
// 查询详情
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/workfiling/detail/${id}`,
method: 'get'
})
}
// 暂存
export const save = (params) => {
return request({
url: `/api/${website.applicationName}/workfiling/save`,
method: 'post',
data: params
})
}
// 提交
export const handin = (params) => {
return request({
url: `/api/${website.applicationName}/workfiling/handin`,
method: 'post',
data: params
})
}
// 删除
export const remove = (params) => {
return request({
url: `/api/${website.applicationName}/workfiling/remove`,
method: 'post',
params: {
'ids': params
}
})
}
// 查询分页信息
export const getPage = (params) => {
return request({
url: `/api/${website.applicationName}/workfiling/page`,
method: 'get',
params: {
...params
}
})
}

View File

@ -0,0 +1,50 @@
import request from '@/router/axios';
import website from '@/config/website';
export const detail = (data) => {
return request({
url: `/api/${website.applicationName}/assessment/detail`,
method: 'get',
params: data
})
}
export const page = (data) => {
return request({
url: `/api/${website.applicationName}/assessment/list`,
method: 'get',
params: data
})
}
export const save = (data) => {
return request({
url: `/api/${website.applicationName}/assessment/save`,
method: 'post',
data: data
})
}
export const remove = (ids) => {
return request({
url: `/api/${website.applicationName}/assessment/remove`,
method: 'post',
params: {ids}
})
}
export const handIn = (data) => {
return request({
url: `/api/${website.applicationName}/assessment/handIn`,
method: 'post',
data: data
})
}
export const removeDetails = (ids) => {
return request({
url: `/api/${website.applicationName}/assessment/removeDetails`,
method: 'post',
params: {ids}
})
}

View File

@ -0,0 +1,105 @@
/**
* 部门列表
*/
import request from '@/router/axios';
import website from '@/config/website';
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/department/detail/${id}`,
method: 'get'
})
}
export const save = (params) => {
return request({
url: `/api/${website.applicationName}/department/save`,
method: 'post',
data: params
})
}
export const update = (params) => {
return request({
url: `/api/${website.applicationName}/department/update`,
method: 'post',
data: params
})
}
export const remove = (params) => {
return request({
url: `/api/${website.applicationName}/department/remove`,
method: 'post',
data: params
})
}
export const getLazyList = (params, parentId) => {
return request({
url: `/api/${website.applicationName}/department/lazy-list`,
method: 'get',
params: {
...params,
parentId
}
})
}
// 获取部门树 从安保任务下发提报的角度只查询出总分支去掉非安保业务相关的部室eg.金融部)
export const getLazyListForTask = (params, parentId) => {
return request({
url: `/api/${website.applicationName}/department/lazy-list-for-task`,
method: 'get',
params: {
...params,
parentId
}
})
}
export const getTree = (params) => {
return request({
url: `/api/${website.applicationName}/department/tree`,
method: 'get',
params
})
}
export const childDeptTree = (topDeptId) => {
return request({
url: `/api/${website.applicationName}/department/child-dept-tree`,
method: "get",
params: {
topDeptId,
}
});
}
export const getMapData = () => {
return request({
url: `/api/${website.applicationName}/department/map`,
method: "get"
});
}
// 新增自助行
export const addSelfBank = (params) => {
return request({
url: `/api/${website.applicationName}/department/addSelfBank`,
method: 'post',
data: params
})
}
// 查询自助行列表
export const selfBankList = () => {
return request({
url: `/api/${website.applicationName}/department/self-bank-list`,
method: "get"
});
}
// 查询总行各部室
export const getHeadDept = () => {
return request({
url: `/api/${website.applicationName}/department/budget-dept`,
method: 'get',
})
}

View File

@ -0,0 +1,74 @@
/**
* 设备列表
*/
import request from '@/router/axios';
import website from '@/config/website';
// 查询设备列表
export const getPage = (params) => {
return request({
url: `/api/${website.applicationName}/device/page`,
method: 'get',
params
})
}
// 查询设备详情
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/device/detail/${id}`,
method: 'get'
})
}
// 保存设备信息
export const save = (params) => {
return request({
url: `/api/${website.applicationName}/device/save`,
method: 'post',
data: params
})
}
// (批量)删除设备
export const batchDelete = (ids) => {
return request({
url: `/api/${website.applicationName}/device/remove`,
method: 'post',
params: {
ids
}
})
}
// 查询设备类型树形数据
export const deviceCascade = () => {
return request({
url: `/api/${website.applicationName}/devicecategorysettings/cascade`,
method: "get"
});
}
// export const search = (params) => {
// return request({
// url: `/api/${website.applicationName}/device/search`,
// method: 'get',
// params
// })
// }
// 生成/更新设备二维码
export const newQRCode = (ids) => {
return request({
url: `/api/${website.applicationName}/device/create/QR_code`,
method: 'post',
params: {
ids
}
})
}
// 处置设备
export const deviceDisposal = (ids) => {
return request({
url: `/api/${website.applicationName}/device/disposal`,
method: 'post',
params: {
ids
}
})
}

View File

@ -0,0 +1,68 @@
/**
* 员工列表
*/
import request from '@/router/axios';
import website from '@/config/website';
export const getPage = (params) => {
return request({
url: `/api/${website.applicationName}/employee/page`,
method: 'get',
params
})
}
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/employee/${id}`,
method: 'get'
})
}
export const save = (params) => {
return request({
url: `/api/${website.applicationName}/employee/save`,
method: 'post',
data: params
})
}
export const update = (params) => {
return request({
url: `/api/${website.applicationName}/employee/update`,
method: 'post',
data: params
})
}
export const batchDelete = (ids) => {
return request({
url: `/api/${website.applicationName}/employee/remove`,
method: 'post',
params: {
ids
}
})
}
export const getLeader = () => {
return request({
url: `/api/${website.applicationName}/employee/leader`,
method: 'get'
})
}
// 删除家庭成员明细
export const deleteFamily = (ids) => {
return request({
url: `/api/${website.applicationName}/family/remove`,
method: 'post',
params: {
ids
}
})
}
// 删除工作履历明细
export const deleteJobRecords= (ids) => {
return request({
url: `/api/${website.applicationName}/jobrecord/remove`,
method: 'post',
params: {
ids
}
})
}

View File

@ -0,0 +1,44 @@
import request from '@/router/axios';
import website from '@/config/website';
export const getPage = (params) => {
return request({
url: `/api/${website.applicationName}/law/page`,
method: 'get',
params
})
}
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/law/${id}`,
method: 'get',
})
}
export const remove = (ids) => {
return request({
url: `/api/${website.applicationName}/law/remove`,
method: 'post',
params: {
ids,
}
})
}
export const save = (row) => {
return request({
url: `/api/${website.applicationName}/law/save`,
method: 'post',
data: row
})
}
export const submit = (row) => {
return request({
url: `/api/${website.applicationName}/law/submit`,
method: 'post',
data: row
})
}

View File

@ -0,0 +1,42 @@
/**
* 自助银行列表
*/
import request from '@/router/axios';
import website from '@/config/website';
export const getPage = (params) => {
return request({
url: `/api/${website.applicationName}/selfhelpbank/page`,
method: 'get',
params
})
}
export const getDetail = (id) => {
return request({
url: `/api/${website.applicationName}/selfhelpbank/detail/${id}`,
method: 'get'
})
}
export const save = (params) => {
return request({
url: `/api/${website.applicationName}/selfhelpbank/save`,
method: 'post',
data: params
})
}
export const update = (params) => {
return request({
url: `/api/${website.applicationName}/selfhelpbank/update`,
method: 'post',
data: params
})
}
export const batchDelete = (ids) => {
return request({
url: `/api/${website.applicationName}/selfhelpbank/remove`,
method: 'post',
params: {
ids
}
})
}

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