btxui 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -0
- package/app.vue +162 -0
- package/assets/css/_main.js +73 -0
- package/assets/css/btx.min.css +1 -0
- package/assets/css/btx.mob.min.css +1 -0
- package/assets/css/btx.pad.min.css +1 -0
- package/assets/css/btx.webapp.min.css +1 -0
- package/assets/css/custom_fonts/iconfont.css +37 -0
- package/assets/css/custom_fonts/iconfont.eot +0 -0
- package/assets/css/custom_fonts/iconfont.svg +47 -0
- package/assets/css/custom_fonts/iconfont.ttf +0 -0
- package/assets/css/custom_fonts/iconfont.woff +0 -0
- package/assets/css/custom_fonts/iconfont.woff2 +0 -0
- package/assets/css/res-l.css +47 -0
- package/assets/css/res-m.css +47 -0
- package/assets/css/res-s.css +61 -0
- package/assets/custom_fonts/iconfont.css +37 -0
- package/assets/custom_fonts/iconfont.eot +0 -0
- package/assets/custom_fonts/iconfont.svg +47 -0
- package/assets/custom_fonts/iconfont.ttf +0 -0
- package/assets/custom_fonts/iconfont.woff +0 -0
- package/assets/custom_fonts/iconfont.woff2 +0 -0
- package/assets/js/Btx.js +196 -0
- package/assets/js/Utils.js +421 -0
- package/assets/js/fastclick.js +802 -0
- package/assets/js/lazy.min.js +2 -0
- package/assets/js/touchwipe.js +111 -0
- package/assets/server.js +8 -0
- package/assets/start_site_code_str.js +119 -0
- package/cdn/css/btx.min.css +1 -0
- package/cdn/css/btx.min.css.map +1 -0
- package/cdn/fonts/iconfont.ttf +0 -0
- package/cdn/fonts/iconfont.woff +0 -0
- package/cdn/fonts/iconfont.woff2 +0 -0
- package/components/BTXUI/app/app-wid.vue +182 -0
- package/components/BTXUI/btn/btn-wid.vue +128 -0
- package/components/BTXUI/carousel/carousel-wid.vue +138 -0
- package/components/BTXUI/checkbox/checkbox-wid.vue +72 -0
- package/components/BTXUI/confirm/confirm-wid.vue +279 -0
- package/components/BTXUI/content/content-checkbox-wid.vue +44 -0
- package/components/BTXUI/content/content-node-wid.vue +114 -0
- package/components/BTXUI/content/content-tag-wid.vue +25 -0
- package/components/BTXUI/content/content-wid.vue +254 -0
- package/components/BTXUI/core/anis/ani-fail.vue +46 -0
- package/components/BTXUI/core/anis/ani-loading.vue +32 -0
- package/components/BTXUI/core/anis/ani-notic.vue +47 -0
- package/components/BTXUI/core/anis/ani-success.vue +48 -0
- package/components/BTXUI/core/b-drag.vue +258 -0
- package/components/BTXUI/core/b-grid.vue +84 -0
- package/components/BTXUI/core/b-hot.vue +171 -0
- package/components/BTXUI/core/b-icon.vue +76 -0
- package/components/BTXUI/core/b-img.vue +84 -0
- package/components/BTXUI/core/b-input.vue +198 -0
- package/components/BTXUI/core/b-list.vue +276 -0
- package/components/BTXUI/core/b-text/doc.ts +9 -0
- package/components/BTXUI/core/b-text/index.vue +16 -0
- package/components/BTXUI/core/b-textarea.vue +58 -0
- package/components/BTXUI/core/b-video.vue +35 -0
- package/components/BTXUI/core/b-view/doc.ts +10 -0
- package/components/BTXUI/core/b-view/index.vue +20 -0
- package/components/BTXUI/core/b-webview.vue +20 -0
- package/components/BTXUI/core/lib/ChapterLink.js +49 -0
- package/components/BTXUI/core/lib/Search.vue +60 -0
- package/components/BTXUI/core/styles/doc.ts +55 -0
- package/components/BTXUI/core/styles/index.vue +98 -0
- package/components/BTXUI/core/styles/prestyles.ts +471 -0
- package/components/BTXUI/core/styles/theme.ts +29 -0
- package/components/BTXUI/drawer/drawer-wid.vue +165 -0
- package/components/BTXUI/drawer/title-tag-wid.vue +114 -0
- package/components/BTXUI/form/form-select-wid.vue +57 -0
- package/components/BTXUI/form/form-wid.vue +324 -0
- package/components/BTXUI/formPannel/form-pannel-wid.vue +133 -0
- package/components/BTXUI/imgsUpload/imgs-upload-wid.vue +149 -0
- package/components/BTXUI/index.js +83 -0
- package/components/BTXUI/pageFlip/page-flip-wid.vue +206 -0
- package/components/BTXUI/pannel/pannel-wid.vue +167 -0
- package/components/BTXUI/range/range-wid.vue +134 -0
- package/components/BTXUI/search/search-wid.vue +80 -0
- package/components/BTXUI/select/select-wid.vue +186 -0
- package/components/BTXUI/slider/slider-wid.vue +444 -0
- package/components/BTXUI/tab/tab-wid.vue +109 -0
- package/components/BTXUI/table/table-wid.vue +324 -0
- package/components/BTXUI/tag/tag-wid.vue +183 -0
- package/components/BTXUI/tags/tags-wid.vue +121 -0
- package/components/BTXUI/tooltip/tooltip-wid.vue +146 -0
- package/components/BTXUI/upload/upload-wid.vue +215 -0
- package/components/BTXUI/waterfall/waterfall-wid.vue +166 -0
- package/components/header-info.vue +167 -0
- package/composables/@types.ts +4 -0
- package/composables/api.ts +18 -0
- package/env.d.ts +5 -0
- package/main.js +6 -0
- package/nuxt.config.ts +51 -0
- package/package.json +23 -0
- package/pages/article.vue +16 -0
- package/pages/download.vue +50 -0
- package/pages/example/app_wid/app/data_demo.vue +9 -0
- package/pages/example/app_wid/app/download_demo.vue +9 -0
- package/pages/example/app_wid/app/list_demo.vue +11 -0
- package/pages/example/app_wid/app/system_demo.vue +9 -0
- package/pages/example/app_wid/app_wid_demo.vue +198 -0
- package/pages/example/app_wid/btn_wid_demo.vue +179 -0
- package/pages/example/app_wid/carousel_wid_demo.vue +152 -0
- package/pages/example/app_wid/checkbox_wid_demo.vue +65 -0
- package/pages/example/app_wid/confirm_wid_demo.vue +197 -0
- package/pages/example/app_wid/content_wid_demo.vue +369 -0
- package/pages/example/app_wid/drawer_wid_demo.vue +155 -0
- package/pages/example/app_wid/form_pannel_wid_demo.vue +338 -0
- package/pages/example/app_wid/form_wid_demo.vue +550 -0
- package/pages/example/app_wid/imgs_upload_wid_demo.vue +159 -0
- package/pages/example/app_wid/index.js +158 -0
- package/pages/example/app_wid/page_flip_wid_demo.vue +99 -0
- package/pages/example/app_wid/pannel_wid_demo.vue +177 -0
- package/pages/example/app_wid/range_wid_demo.vue +101 -0
- package/pages/example/app_wid/search_wid_demo.vue +75 -0
- package/pages/example/app_wid/select_wid_demo.vue +217 -0
- package/pages/example/app_wid/slider_wid_demo.vue +143 -0
- package/pages/example/app_wid/tab_wid_demo.vue +170 -0
- package/pages/example/app_wid/table_wid_demo.vue +377 -0
- package/pages/example/app_wid/tag_wid_demo.vue +133 -0
- package/pages/example/app_wid/tags_wid_demo.vue +143 -0
- package/pages/example/app_wid/tooltip_wid_demo.vue +117 -0
- package/pages/example/app_wid/upload_wid_demo.vue +123 -0
- package/pages/example/base_wid/b_drag_demo.vue +159 -0
- package/pages/example/base_wid/b_grid_demo.vue +225 -0
- package/pages/example/base_wid/b_hot_demo.vue +135 -0
- package/pages/example/base_wid/b_icon_demo.vue +80 -0
- package/pages/example/base_wid/b_img_demo.vue +95 -0
- package/pages/example/base_wid/b_input_demo.vue +171 -0
- package/pages/example/base_wid/b_list_demo.vue +241 -0
- package/pages/example/base_wid/b_style_demo.vue +928 -0
- package/pages/example/base_wid/b_text_demo.vue +36 -0
- package/pages/example/base_wid/b_textarea_demo.vue +64 -0
- package/pages/example/base_wid/b_video_demo.vue +42 -0
- package/pages/example/base_wid/b_view_demo.vue +36 -0
- package/pages/example/base_wid/index.js +76 -0
- package/pages/example/content.js +49 -0
- package/pages/example/global_style/animation.vue +197 -0
- package/pages/example/global_style/color.vue +134 -0
- package/pages/example/global_style/decoration.vue +546 -0
- package/pages/example/global_style/icon.vue +345 -0
- package/pages/example/global_style/index.js +52 -0
- package/pages/example/global_style/layout.vue +846 -0
- package/pages/example/global_style/special.vue +37 -0
- package/pages/example/global_style/table.vue +298 -0
- package/pages/example/global_style/text.vue +159 -0
- package/pages/index.vue +29 -0
- package/pages/level_widget.vue +11 -0
- package/pages/start.vue +200 -0
- package/plugins/index.ts +2 -0
- package/public/favicon.gif +0 -0
- package/public/fonts/iconfont.ttf +0 -0
- package/public/fonts/iconfont.woff +0 -0
- package/public/fonts/iconfont.woff2 +0 -0
- package/public/img/banner.jpg +0 -0
- package/public/img/banner2.jpg +0 -0
- package/public/img/bg_pattern.png +0 -0
- package/public/img/btx.jpg +0 -0
- package/public/img/btx_ui.jpg +0 -0
- package/public/img/dir.png +0 -0
- package/public/img/f.png +0 -0
- package/public/img/head.jpg +0 -0
- package/public/img/head2.jpg +0 -0
- package/public/img/home_ico.png +0 -0
- package/public/img/icons.svg +164 -0
- package/public/img/mechanism/b-style.png +0 -0
- package/public/img/mechanism/slider-wid.png +0 -0
- package/public/img/mechanism/upload-wid.png +0 -0
- package/public/img/transform_origin.png +0 -0
- package/sass/animation.scss +400 -0
- package/sass/btx.mob.scss +10 -0
- package/sass/btx.pad.scss +3 -0
- package/sass/btx.scss +22 -0
- package/sass/btx.webapp.scss +22 -0
- package/sass/colors.scss +65 -0
- package/sass/decoration.scss +220 -0
- package/sass/flex.scss +29 -0
- package/sass/icons.scss +100 -0
- package/sass/layout.scss +88 -0
- package/sass/reset.scss +111 -0
- package/sass/response/flex_mixin.scss +91 -0
- package/sass/response/layout_mixin.scss +227 -0
- package/sass/response/main.scss +59 -0
- package/sass/response/text_mixin.scss +65 -0
- package/sass/scroll.scss +100 -0
- package/sass/special.scss +13 -0
- package/sass/table.scss +103 -0
- package/sass/text.scss +86 -0
- package/sass/webpack.config.js +31 -0
- package/tsconfig.json +4 -0
package/pages/start.vue
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<article>
|
|
3
|
+
<p>官方指南假设你已了解关于 HTML、CSS、JavaScript 以及 vue2.0 的中级知识。尝试 BTX·UI 最直观的的方法是快速搭建一个静态网页,跟着例子学习一些基础用法。可以使用标准的 html 标签通过全局样式实现,也可以通过框架提供的 webapp 组件库来进行布局。</p>
|
|
4
|
+
<p>首先应该引入全局样式库(此处不考虑响应式布局):</p>
|
|
5
|
+
<p><b>普通 html 网页引入全局样式基础适配版:</b></p>
|
|
6
|
+
<p><code><link rel="stylesheet" src="http://www.75sea.com/cdn/css/v2/btx.min.css"></script></code></p>
|
|
7
|
+
<p><b>webapp 引入基础样式初始化库:</b></p>
|
|
8
|
+
<p><code><link rel="stylesheet" src="http://www.75sea.com/cdn/css/v2/btx.webapp.min"></script></code></p>
|
|
9
|
+
<p><b>如果是开发 webapp,那么接下来可以通过 npm 安装组件库:</b></p>
|
|
10
|
+
<p><code>$ npm install btx-ui -S</code></P>
|
|
11
|
+
<p>所有准备工作都已经完成了,接下来就可以使用 BTX·UI 提供的组件来快速创建一个网页了。</p>
|
|
12
|
+
<p></p>
|
|
13
|
+
|
|
14
|
+
<!--静态网站示例代码-->
|
|
15
|
+
<section>
|
|
16
|
+
<h5>静态网站示例代码</h5>
|
|
17
|
+
<div ref="code_container" :class="`no-scroll line line-dgray thick-1 round-sm round-t bg-color-dgray h-${site_code_spread? 'auto': '40'}`">
|
|
18
|
+
<pre :style="{width: code_area_width}" v-highlightjs><code class="javascript" v-html="site_code"></code></pre>
|
|
19
|
+
</div>
|
|
20
|
+
<b-hot styles="flex-5 line line-neutral shadow thick-1 color-neutral round-md round-b"
|
|
21
|
+
hover="bg-color-neutral shadow-no"
|
|
22
|
+
@on_click="$_toggle_code">
|
|
23
|
+
<span class="color-mgray">{{site_code_spread? "收起": "展开"}}代码</span>
|
|
24
|
+
<span class="mrg-l-1 color-mgray">{{site_code_spread? "-": "+"}}</span>
|
|
25
|
+
</b-hot>
|
|
26
|
+
<p></p>
|
|
27
|
+
</section>
|
|
28
|
+
|
|
29
|
+
<!--静态网站示例效果-->
|
|
30
|
+
<section>
|
|
31
|
+
<h5>静态网站示例效果</h5>
|
|
32
|
+
<b-view styles="resize">
|
|
33
|
+
<!--导航-->
|
|
34
|
+
<b-view styles="flex-between bg-color-sub round-sm pad-h-2">
|
|
35
|
+
<b-icon icon="ui" styles="fsize-2" />
|
|
36
|
+
<b-view styles="flex-4 fsize-1.2 pad-v-1">
|
|
37
|
+
<b-hot hover="color-light" @on_click="$_show_nav('Home')">Home</b-hot>
|
|
38
|
+
<b-hot styles="mrg-l-2" hover="color-light" @on_click="$_show_nav('Service')">Service</b-hot>
|
|
39
|
+
<b-hot styles="mrg-l-2" hover="color-light" link="http://www.75sea.com">75sea</b-hot>
|
|
40
|
+
</b-view>
|
|
41
|
+
</b-view>
|
|
42
|
+
|
|
43
|
+
<!--主图-->
|
|
44
|
+
<b-view styles="rel">
|
|
45
|
+
<b-view styles="abs max flex-column flex-5">
|
|
46
|
+
<b-text styles="color-light fsize-2">BTX·UI Frame</b-text>
|
|
47
|
+
<b-text styles="color-sub">build by btxstudio 2020.</b-text>
|
|
48
|
+
</b-view>
|
|
49
|
+
<b-img img='@/assets/img/banner.jpg' styles="round-md mrg-t-4px" />
|
|
50
|
+
</b-view>
|
|
51
|
+
|
|
52
|
+
<!--栅格均分布局-->
|
|
53
|
+
<b-grid styles="mrg-t-1"
|
|
54
|
+
:col-data="icons_data"
|
|
55
|
+
:grid-height="12"
|
|
56
|
+
:line="['lgray', 1]"
|
|
57
|
+
outline-color="#fff">
|
|
58
|
+
<b-view v-for="item of icons_data.items" styles="pad-2 pcenter" :slot="item.id" :key="item.id">
|
|
59
|
+
<b-icon :icon="item.icon" styles="fsize-2.5 color-sub" />
|
|
60
|
+
<b-view styles="fsize-1.1">{{item.title}}</b-view>
|
|
61
|
+
<b-view styles="alpha-.7 fsize-.8">select this {{item.id}}</b-view>
|
|
62
|
+
</b-view>
|
|
63
|
+
</b-grid>
|
|
64
|
+
|
|
65
|
+
<!--栅格不均分布局-->
|
|
66
|
+
<b-grid styles="mrg-t-2 fsize-1.1" :col-data="article_data">
|
|
67
|
+
<b-img :slot="article_data.items[0].id" img='@/assets/img/banner2.jpg' styles="round-md" />
|
|
68
|
+
<b-view :slot="article_data.items[1].id" styles="pad-2 pleft">
|
|
69
|
+
<b-view styles="fsize-1.7">Javascript with typescript</b-view>
|
|
70
|
+
<b-view styles="color-sub mrg-b-2">the best language in the world</b-view>
|
|
71
|
+
<b-view styles="alpha-.7">Whenever you need me, I'll be here。 Whenever you're in trouble, I'm always near。Whenever you feel alone, and you think everyone has given up。Reach out for me, and I will give you my everlasting love。</b-view>
|
|
72
|
+
</b-view>
|
|
73
|
+
</b-grid>
|
|
74
|
+
|
|
75
|
+
</b-view>
|
|
76
|
+
</section>
|
|
77
|
+
</article>
|
|
78
|
+
</template>
|
|
79
|
+
|
|
80
|
+
<script>
|
|
81
|
+
import BView from "@/components/BTXUI/core/b-view"
|
|
82
|
+
import BText from "@/components/BTXUI/core/b-text"
|
|
83
|
+
import BIcon from "@/components/BTXUI/core/b-icon"
|
|
84
|
+
import BImg from "@/components/BTXUI/core/b-img"
|
|
85
|
+
import BHot from "@/components/BTXUI/core/b-hot"
|
|
86
|
+
import BGrid from "@/components/BTXUI/core/b-grid"
|
|
87
|
+
import start_site_code_str from "@/assets/start_site_code_str"
|
|
88
|
+
|
|
89
|
+
export default {
|
|
90
|
+
name: "start",
|
|
91
|
+
components: {
|
|
92
|
+
BView,
|
|
93
|
+
BText,
|
|
94
|
+
BIcon,
|
|
95
|
+
BImg,
|
|
96
|
+
BHot,
|
|
97
|
+
BGrid
|
|
98
|
+
},
|
|
99
|
+
data(){
|
|
100
|
+
return {
|
|
101
|
+
|
|
102
|
+
//代码区域宽度
|
|
103
|
+
code_area_width: 0,
|
|
104
|
+
|
|
105
|
+
//代码文本
|
|
106
|
+
site_code: start_site_code_str.replace(/</g, "<"),
|
|
107
|
+
|
|
108
|
+
//代码展开状态
|
|
109
|
+
site_code_spread: false,
|
|
110
|
+
|
|
111
|
+
icons_data: {
|
|
112
|
+
common_plan: "col-3 col-6-s",
|
|
113
|
+
items: [
|
|
114
|
+
{
|
|
115
|
+
id: "A",
|
|
116
|
+
icon: "mobile",
|
|
117
|
+
title: "mobile",
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
id: "B",
|
|
121
|
+
icon: "weibo",
|
|
122
|
+
title: "weibo",
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
id: "C",
|
|
126
|
+
icon: "wechat",
|
|
127
|
+
title: "wechat",
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
id: "D",
|
|
131
|
+
icon: "bili",
|
|
132
|
+
title: "bili",
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
id: "E",
|
|
136
|
+
icon: "github",
|
|
137
|
+
title: "github",
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
id: "F",
|
|
141
|
+
icon: "download",
|
|
142
|
+
title: "download",
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
id: "G",
|
|
146
|
+
icon: "user",
|
|
147
|
+
title: "user",
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
id: "H",
|
|
151
|
+
icon: "system",
|
|
152
|
+
title: "system",
|
|
153
|
+
},
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
|
|
157
|
+
article_data: {
|
|
158
|
+
items: [
|
|
159
|
+
{
|
|
160
|
+
id: "a",
|
|
161
|
+
plan: "col-4 col-12-s"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
id: "b",
|
|
165
|
+
plan: "col-8 col-12-s"
|
|
166
|
+
},
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
computed: {
|
|
173
|
+
|
|
174
|
+
//代码容器
|
|
175
|
+
$code_container(){
|
|
176
|
+
return this.$refs.code_container;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
},
|
|
180
|
+
methods: {
|
|
181
|
+
|
|
182
|
+
//折叠代码
|
|
183
|
+
$_toggle_code(){
|
|
184
|
+
if(this.site_code_spread){
|
|
185
|
+
this.$code_container.scrollIntoView();
|
|
186
|
+
this.$code_container.offsetParent.scrollTop -= 10;
|
|
187
|
+
}
|
|
188
|
+
this.site_code_spread = !this.site_code_spread;
|
|
189
|
+
},
|
|
190
|
+
|
|
191
|
+
$_show_nav(nav){
|
|
192
|
+
this.$confirm.toast(`当前导航内容:<b class="color-green">${nav}</b>`);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
},
|
|
196
|
+
mounted(){
|
|
197
|
+
this.code_area_width = `${this.$code_container.clientWidth}px`;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
</script>
|
package/plugins/index.ts
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/img/f.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Creator: CorelDRAW -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="71.966mm" height="57.5728mm" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
|
5
|
+
viewBox="0 0 103.582 82.8657"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
7
|
+
<defs>
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
<![CDATA[
|
|
10
|
+
.fil5 {fill:none}
|
|
11
|
+
.fil0 {fill:#0A0B0C}
|
|
12
|
+
.fil11 {fill:#4D4948}
|
|
13
|
+
.fil7 {fill:#605D5C}
|
|
14
|
+
.fil12 {fill:#838281}
|
|
15
|
+
.fil17 {fill:#87BCCF}
|
|
16
|
+
.fil15 {fill:#969594}
|
|
17
|
+
.fil18 {fill:#AAA9A9}
|
|
18
|
+
.fil16 {fill:#C2C1C1}
|
|
19
|
+
.fil19 {fill:#DEDEDD}
|
|
20
|
+
.fil10 {fill:#32AA51}
|
|
21
|
+
.fil20 {fill:#4185F4}
|
|
22
|
+
.fil8 {fill:#ED4334}
|
|
23
|
+
.fil9 {fill:#FBBD08}
|
|
24
|
+
.fil21 {fill:#FDFCCD}
|
|
25
|
+
.fil6 {fill:#605D5C;fill-rule:nonzero}
|
|
26
|
+
.fil14 {fill:#B6DDC7;fill-rule:nonzero}
|
|
27
|
+
.fil13 {fill:#F7C5B4;fill-rule:nonzero}
|
|
28
|
+
.fil1 {fill:#32AA51;fill-rule:nonzero}
|
|
29
|
+
.fil3 {fill:#4185F4;fill-rule:nonzero}
|
|
30
|
+
.fil2 {fill:#ED4334;fill-rule:nonzero}
|
|
31
|
+
.fil4 {fill:#FBBD08;fill-rule:nonzero}
|
|
32
|
+
]]>
|
|
33
|
+
</style>
|
|
34
|
+
<clipPath id="id0">
|
|
35
|
+
<path d="M11.0327 45.2565c3.32022,0 6.0129,2.69642 6.0129,6.01305 0,1.06121 -0.274622,2.04139 -0.756219,2.88425 -0.284697,0.498149 -0.705986,0.826314 -1.25883,0.980177l-3.4037 0.947936c-0.423736,0.772195 -0.738083,2.04052 -1.76993,2.08529l-3.62795 0.157318c-0.66439,0.0287864 -1.20932,-0.544207 -1.20932,-1.20932l0 -2.74205c-0.308734,-0.0610272 -0.617612,-0.122198 -0.926202,-0.183225 -0.248139,-0.0492247 -0.422728,-0.261668 -0.422728,-0.514557l0 -0.176461c0,-0.331475 0.0880864,-0.615885 0.275342,-0.889356l1.07848 -1.57433c0.123206,-3.2117 2.76623,-5.77873 6.00815,-5.77873z"/>
|
|
36
|
+
</clipPath>
|
|
37
|
+
</defs>
|
|
38
|
+
<g id="图层_x0020_1">
|
|
39
|
+
<metadata id="CorelCorpID_0Corel-Layer"/>
|
|
40
|
+
<path class="fil0" d="M11.0327 45.2565c3.32022,0 6.0129,2.69642 6.0129,6.01305 0,1.06121 -0.274622,2.04139 -0.756219,2.88425 -0.284697,0.498149 -0.705986,0.826314 -1.25883,0.980177l-3.4037 0.947936c-0.423736,0.772195 -0.738083,2.04052 -1.76993,2.08529l-3.62795 0.157318c-0.66439,0.0287864 -1.20932,-0.544207 -1.20932,-1.20932l0 -2.74205c-0.308734,-0.0610272 -0.617612,-0.122198 -0.926202,-0.183225 -0.248139,-0.0492247 -0.422728,-0.261668 -0.422728,-0.514557l0 -0.176461c0,-0.331475 0.0880864,-0.615885 0.275342,-0.889356l1.07848 -1.57433c0.123206,-3.2117 2.76623,-5.77873 6.00815,-5.77873z"/>
|
|
41
|
+
<g style="clip-path:url(#id0)">
|
|
42
|
+
<g id="_20797408">
|
|
43
|
+
<g>
|
|
44
|
+
<path id="_207977201" class="fil1" d="M15.0397 48.5221c0.209277,0 0.399411,0.0854956 0.537298,0.223095l0.000431796 -0.000287864c0.137455,0.137455 0.222663,0.327733 0.222663,0.537586 0,0.209853 -0.0852077,0.400131 -0.222663,0.53773 -0.0928361,0.0926922 -0.209709,0.161636 -0.340687,0.196611l0 5.32707c0,0.108813 -0.0882303,0.197187 -0.197043,0.197187 -0.108813,0 -0.197043,-0.0883742 -0.197043,-0.197187l0 -5.32721c-0.130402,-0.0349755 -0.247131,-0.103919 -0.339823,-0.196467l-0.000863592 -0.000863592c-0.137167,-0.137599 -0.222519,-0.327445 -0.222519,-0.536866 0,-0.209853 0.0852077,-0.400131 0.222663,-0.537586l0.000431796 0.000287864c0.137887,-0.137599 0.328165,-0.223095 0.537154,-0.223095zm0.25879 0.500739c-0.0654891,-0.065633 -0.157174,-0.10651 -0.25879,-0.10651 -0.101472,0 -0.193157,0.0408767 -0.258646,0.10651l0 0.000863592c-0.0663527,0.0662087 -0.107373,0.157749 -0.107373,0.25879 0,0.101328 0.0410206,0.193013 0.106798,0.259222 0.0650573,0.0647694 0.154871,0.105358 0.25404,0.106941l0.000431796 0 0.00474976 0 0.00474976 0 0.000431796 0c0.0990252,-0.00158325 0.188695,-0.042316 0.253608,-0.107229 0.0662087,-0.0663527 0.107373,-0.157893 0.107373,-0.258934 0,-0.10104 -0.0411646,-0.192581 -0.107373,-0.25879l0 -0.000863592z"/>
|
|
45
|
+
<path id="_20797648" class="fil2" d="M14.6321 46.1319c0.0768597,-0.0764279 0.201649,-0.0759961 0.278077,0.000863592 0.0764279,0.0768597 0.0759961,0.201505 -0.000863592,0.277933l-1.16081 1.15793 -0.00331044 3.92071 -0.000143932 0.0818973 -0.0575728 0.0575728 -1.43241 1.43198 0 3.11267c0,0.108813 -0.0882303,0.197187 -0.197043,0.197187 -0.108813,0 -0.197043,-0.0883742 -0.197043,-0.197187l0 -3.19356 0 -0.0810337 0.0584364 -0.0584364 1.43327 -1.43299 0.00331044 -3.92071 0 -0.0818973 0.0577167 -0.0575728 1.21838 -1.21536z"/>
|
|
46
|
+
<path id="_20797576" class="fil3" d="M13.1013 45.3521c0.0768597,-0.0768597 0.201937,-0.0768597 0.278796,0 0.0768597,0.0768597 0.0768597,0.201937 0,0.278796l-1.12497 1.12483 0 2.82179c0.130834,0.0349755 0.247851,0.103919 0.340687,0.196755 0.137599,0.137599 0.222807,0.327877 0.222807,0.53773 0,0.209853 -0.0852077,0.399987 -0.222807,0.537586l-0.00071966 0c-0.137743,0.137599 -0.327733,0.222807 -0.53701,0.222807 -0.208989,0 -0.399267,-0.0854956 -0.537154,-0.223239l-0.000431796 0.000431796c-0.137599,-0.137599 -0.222663,-0.327733 -0.222663,-0.537586 0,-0.209853 0.0850638,-0.400131 0.222663,-0.53773l0.000431796 0.000431796c0.0929801,-0.0929801 0.209709,-0.161924 0.340111,-0.197043l0 -2.90354 0 -0.0817534 0.0575728 -0.0577167 1.18269 -1.18255zm-1.03847 4.59359l-0.00474976 0 -0.00474976 0c-0.0996009,0.00143932 -0.189415,0.0420281 -0.25404,0.106654l0 0.00071966c-0.0662087,0.0662087 -0.107229,0.157893 -0.107229,0.258934 0,0.100896 0.0410206,0.192581 0.107229,0.25879l0 0.000863592c0.065633,0.065633 0.157318,0.10651 0.25879,0.10651 0.101184,0 0.193013,-0.0410206 0.259365,-0.106941l-0.000431796 -0.000431796c0.0662087,-0.0662087 0.107373,-0.157893 0.107373,-0.25879 0,-0.100896 -0.0411646,-0.192725 -0.107373,-0.258934 -0.0652012,-0.0652012 -0.155015,-0.105934 -0.254184,-0.107373z"/>
|
|
47
|
+
<path id="_20797504" class="fil4" d="M13.7461 55.7598c0,0.108813 -0.0883742,0.197043 -0.197187,0.197043 -0.108669,0 -0.197043,-0.0882303 -0.197043,-0.197043l0 -2.44411c0,-0.108813 0.0883742,-0.197043 0.197043,-0.197043 0.108813,0 0.197187,0.0882303 0.197187,0.197043l0 2.44411z"/>
|
|
48
|
+
</g>
|
|
49
|
+
</g>
|
|
50
|
+
</g>
|
|
51
|
+
<path class="fil5" d="M11.0327 45.2565c3.32022,0 6.0129,2.69642 6.0129,6.01305 0,1.06121 -0.274622,2.04139 -0.756219,2.88425 -0.284697,0.498149 -0.705986,0.826314 -1.25883,0.980177l-3.4037 0.947936c-0.423736,0.772195 -0.738083,2.04052 -1.76993,2.08529l-3.62795 0.157318c-0.66439,0.0287864 -1.20932,-0.544207 -1.20932,-1.20932l0 -2.74205c-0.308734,-0.0610272 -0.617612,-0.122198 -0.926202,-0.183225 -0.248139,-0.0492247 -0.422728,-0.261668 -0.422728,-0.514557l0 -0.176461c0,-0.331475 0.0880864,-0.615885 0.275342,-0.889356l1.07848 -1.57433c0.123206,-3.2117 2.76623,-5.77873 6.00815,-5.77873z"/>
|
|
52
|
+
<rect class="fil5" x="-7.1902e-005" y="-7.1902e-005" width="20.7166" height="20.7166"/>
|
|
53
|
+
<rect class="fil5" x="20.7163" y="-7.1902e-005" width="20.7166" height="20.7166"/>
|
|
54
|
+
<rect class="fil5" x="41.4328" y="-7.1902e-005" width="20.7166" height="20.7166"/>
|
|
55
|
+
<rect class="fil5" x="62.1492" y="-7.1902e-005" width="20.7166" height="20.7166"/>
|
|
56
|
+
<rect class="fil5" x="-7.1902e-005" y="20.7163" width="20.7166" height="20.7166"/>
|
|
57
|
+
<rect class="fil5" x="20.7163" y="20.7163" width="20.7166" height="20.7166"/>
|
|
58
|
+
<rect class="fil5" x="41.4328" y="20.7163" width="20.7166" height="20.7166"/>
|
|
59
|
+
<rect class="fil5" x="62.1492" y="20.7163" width="20.7166" height="20.7166"/>
|
|
60
|
+
<rect class="fil5" x="82.8656" y="-7.1902e-005" width="20.7166" height="20.7166"/>
|
|
61
|
+
<rect class="fil5" x="82.8656" y="20.7163" width="20.7166" height="20.7166"/>
|
|
62
|
+
<g id="_116840840">
|
|
63
|
+
<path id="_116841008" class="fil6" d="M26.6623 12.127l0 -0.870645 0 -6.79834c0,-0.198626 0.161204,-0.35983 0.35983,-0.35983 0.198626,0 0.35983,0.161204 0.35983,0.35983l0 5.61364c0.184809,-0.0967223 0.394662,-0.151704 0.616749,-0.151704l5.34045 0c0.00734053,0 0.0151129,-0.00374223 0.0210141,-0.00964344l0.00071966 0.00071966c0.00532548,-0.00590121 0.00892378,-0.0136735 0.00892378,-0.0218777l0 -6.22175c0,-0.198626 0.161204,-0.35983 0.35983,-0.35983 0.198626,0 0.35983,0.161204 0.35983,0.35983l0 6.22175c0,0.205391 -0.084632,0.39279 -0.22036,0.528662l0 0.00143932c-0.135584,0.135584 -0.323703,0.22036 -0.529958,0.22036l-5.34045 0c-0.168976,0 -0.323271,0.069807 -0.435106,0.181642 -0.110108,0.110108 -0.179483,0.261381 -0.181642,0.42719l0 0.00791626 0 0.870645 0 0.234177c0,0.169552 0.0693752,0.323559 0.180491,0.434531l0.00143932 0.00143932c0.111259,0.111403 0.265555,0.180779 0.434819,0.180779l6.15209 0c0.1684,0 0.322552,-0.069951 0.434675,-0.182074l0.00071966 0.00071966c0.111547,-0.112123 0.18121,-0.266562 0.18121,-0.435394l0 -5.85976c0,-0.198626 0.161204,-0.35983 0.35983,-0.35983 0.198626,0 0.35983,0.161204 0.35983,0.35983l0 5.85976c0,0.366163 -0.150841,0.700085 -0.392646,0.942179l0 0.00143932c-0.242094,0.242094 -0.576448,0.39279 -0.943618,0.39279l-6.15209 0c-0.365155,0 -0.699366,-0.150553 -0.942323,-0.392934l-0.00143932 -0.00143932c-0.24195,-0.242381 -0.392646,-0.576016 -0.392646,-0.942035l0 -0.234177z"/>
|
|
64
|
+
<path id="_116840936" class="fil6" d="M28.3874 12.0247c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l5.15953 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-5.15953 0z"/>
|
|
65
|
+
<path id="_116840864" class="fil6" d="M31.0746 2.80178c2.08629,0 3.97555,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.3675,1.36735 -3.25675,2.21339 -5.34304,2.21339 -2.08629,0 -3.97555,-0.846032 -5.34304,-2.21339 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.3675,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm4.8341 2.72233c-1.23724,-1.2371 -2.94658,-2.00267 -4.8341,-2.00267 -1.88752,0 -3.59686,0.765574 -4.8341,2.00267 -1.2371,1.23724 -2.00267,2.94658 -2.00267,4.8341 0,1.88752 0.765574,3.59686 2.00267,4.8341 1.23724,1.2371 2.94658,2.00267 4.8341,2.00267 1.88752,0 3.59686,-0.765574 4.8341,-2.00267 1.2371,-1.23724 2.00267,-2.94658 2.00267,-4.8341 0,-1.88752 -0.765574,-3.59686 -2.00267,-4.8341z"/>
|
|
66
|
+
</g>
|
|
67
|
+
<g id="_116840456">
|
|
68
|
+
<path id="_116840768" class="fil6" d="M51.7911 2.80178c2.08629,0 3.97555,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.3675,1.36735 -3.25675,2.21339 -5.34304,2.21339 -2.08629,0 -3.97555,-0.846032 -5.34304,-2.21339 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.3675,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm4.8341 2.72233c-1.23724,-1.2371 -2.94658,-2.00267 -4.8341,-2.00267 -1.88752,0 -3.59686,0.765574 -4.8341,2.00267 -1.2371,1.23724 -2.00267,2.94658 -2.00267,4.8341 0,1.88752 0.765574,3.59686 2.00267,4.8341 1.23724,1.2371 2.94658,2.00267 4.8341,2.00267 1.88752,0 3.59686,-0.765574 4.8341,-2.00267 1.2371,-1.23724 2.00267,-2.94658 2.00267,-4.8341 0,-1.88752 -0.765574,-3.59686 -2.00267,-4.8341z"/>
|
|
69
|
+
<path id="_116840696" class="fil6" d="M46.5027 8.80921l4.91643 -3.01984 0.000287864 0.000431796c0.10982,-0.0672162 0.244109,-0.100752 0.371632,-0.100752 0.127524,0 0.261956,0.0335362 0.371632,0.100752l0.000287864 -0.000431796 4.91643 3.01984 0.00143932 0c0.0755643,0.04649 0.135152,0.106798 0.177468,0.176029 0.046634,0.0759961 0.0702388,0.159333 0.0702388,0.243965 0,0.0843442 -0.0234609,0.167681 -0.0702388,0.243965 -0.0414524,0.0679359 -0.101328,0.128675 -0.178907,0.176029l-4.91643 3.01984 -0.000287864 -0.000431796c-0.109676,0.0672162 -0.244109,0.100752 -0.371632,0.100752 -0.127524,0 -0.261812,-0.0335362 -0.371632,-0.100752l-0.000287864 0.000431796 -4.91643 -3.01984 -0.00143932 0c-0.0754204,-0.0463461 -0.135152,-0.106798 -0.177468,-0.176029 -0.0467779,-0.076284 -0.0702388,-0.159621 -0.0702388,-0.243965 0,-0.084632 0.0236048,-0.167969 0.0702388,-0.243965 0.0415963,-0.0682238 0.101616,-0.128819 0.178907,-0.176029zm5.29036 -2.40697l-0.00201505 0.00129539 -0.00201505 -0.00129539 -0.00143932 -0.00143932c-0.00503762,-0.0031665 -0.00100752,0.000287864 0.00201505,0.0035983l-4.59892 2.82481 4.59892 2.82481c-0.00287864,0.0031665 -0.00690874,0.00662087 -0.00201505,0.0035983l0.00143932 -0.00143932 0.00201505 -0.00129539 0.00201505 0.00129539 0.00143932 0.00143932c0.00503762,0.0031665 0.00115146,-0.000287864 -0.00201505,-0.0035983l4.59892 -2.82481 -4.59892 -2.82481c0.00287864,-0.0031665 0.00705267,-0.00662087 0.00201505,-0.0035983l-0.00143932 0.00143932zm-0.00201505 0.00129539l-0.00143932 0.000863592 0.00143932 0.00143932c0.00115146,0.00158325 0.00172718,0.00287864 0,0.00287864 -0.00172718,0 -0.00115146,-0.00129539 0,-0.00287864l0.00143932 -0.00143932 -0.00143932 -0.000863592zm0 5.65135l0.00143932 -0.000863592 -0.00143932 -0.00143932c-0.00115146,-0.00158325 -0.00172718,-0.00287864 0,-0.00287864 0.00172718,0 0.00115146,0.00129539 0,0.00287864l-0.00143932 0.00143932 0.00143932 0.000863592z"/>
|
|
70
|
+
<path id="_116840624" class="fil6" d="M54.4725 10.6966c0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898 0.119176,0 0.215898,0.0967223 0.215898,0.215898l0 2.63511c0,0.119176 -0.0967223,0.215898 -0.215898,0.215898 -0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898l0 -2.63511z"/>
|
|
71
|
+
<polygon id="_116840552" class="fil6" points="47.9353,16.5005 47.9353,10.2405 48.3671,10.2405 48.3671,16.5005 "/>
|
|
72
|
+
<circle id="_116840480" class="fil7" cx="54.6884" cy="14.867" r="0.408944"/>
|
|
73
|
+
</g>
|
|
74
|
+
<g id="_116840144">
|
|
75
|
+
<path id="_116840384" class="fil6" d="M72.5075 2.80178c2.08629,0 3.97555,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.3675,1.36735 -3.25675,2.21339 -5.34304,2.21339 -2.08629,0 -3.97555,-0.846032 -5.34304,-2.21339 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.3675,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm4.8341 2.72233c-1.23724,-1.2371 -2.94658,-2.00267 -4.8341,-2.00267 -1.88752,0 -3.59686,0.765574 -4.8341,2.00267 -1.2371,1.23724 -2.00267,2.94658 -2.00267,4.8341 0,1.88752 0.765574,3.59686 2.00267,4.8341 1.23724,1.2371 2.94658,2.00267 4.8341,2.00267 1.88752,0 3.59686,-0.765574 4.8341,-2.00267 1.2371,-1.23724 2.00267,-2.94658 2.00267,-4.8341 0,-1.88752 -0.765574,-3.59686 -2.00267,-4.8341z"/>
|
|
76
|
+
<path id="_116840312" class="fil6" d="M72.5076 6.21095c0.764279,0 1.45746,0.310605 1.95935,0.812352l0.000431796 -0.000431796c0.501459,0.501459 0.81192,1.19478 0.81192,1.95992 0,0.763991 -0.310461,1.45702 -0.81192,1.95891l-0.000431796 0.000431796 -0.000431796 0.000431796c-0.501891,0.501459 -1.19492,0.81192 -1.95891,0.81192 -0.765143,0 -1.45846,-0.310461 -1.95992,-0.81192l0.000431796 -0.000431796c-0.501747,-0.501891 -0.812352,-1.19507 -0.812352,-1.95935 0,-0.765143 0.310461,-1.45846 0.81192,-1.95992l0.000431796 0.000431796c0.501891,-0.501747 1.19521,-0.812352 1.95949,-0.812352zm1.65435 1.11648c-0.422728,-0.422872 -1.00781,-0.684685 -1.65435,-0.684685 -0.646543,0 -1.23177,0.261812 -1.6545,0.684685l0 0.000863592c-0.423448,0.423448 -0.685548,1.00853 -0.685548,1.6545 0,0.646543 0.261812,1.23163 0.684685,1.65435l0.000863592 0c0.423448,0.423448 1.00853,0.685548 1.6545,0.685548 0.646543,0 1.23163,-0.261812 1.65435,-0.684685l0.000863592 -0.000863592c0.422872,-0.422728 0.684685,-1.00796 0.684685,-1.65435 0,-0.645967 -0.2621,-1.23105 -0.685548,-1.6545l0 -0.000863592z"/>
|
|
77
|
+
<path id="_116840240" class="fil6" d="M68.9761 16.3632c-0.0348315,0.195604 -0.221799,0.325862 -0.417403,0.291031 -0.195604,-0.0348315 -0.325862,-0.221799 -0.291031,-0.417403 0.181354,-1.01558 0.719228,-1.90796 1.47919,-2.54342 0.748015,-0.625385 1.71106,-1.00205 2.7609,-1.00205 0.405313,0 0.799398,0.0568531 1.17391,0.162931 0.385306,0.108813 0.749886,0.271168 1.08467,0.477854 0.1684,0.103919 0.220504,0.324998 0.116585,0.493399 -0.103919,0.1684 -0.324998,0.220504 -0.493399,0.116585 -0.276637,-0.170703 -0.579758,-0.305424 -0.901878,-0.396389 -0.309742,-0.0877985 -0.638482,-0.13472 -0.979889,-0.13472 -0.875538,0 -1.67767,0.31334 -2.29975,0.833366 -0.632725,0.529094 -1.08093,1.27265 -1.23191,2.11882z"/>
|
|
78
|
+
<circle id="_116840168" class="fil7" cx="75.8039" cy="14.744" r="0.408944"/>
|
|
79
|
+
</g>
|
|
80
|
+
<g id="_116803152">
|
|
81
|
+
<path id="_116840072" class="fil6" d="M93.2239 2.80178c2.08629,0 3.97555,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.3675,1.36735 -3.25675,2.21339 -5.34304,2.21339 -2.08629,0 -3.97555,-0.846032 -5.34304,-2.21339 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.3675,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm4.8341 2.72233c-1.23724,-1.2371 -2.94658,-2.00267 -4.8341,-2.00267 -1.88752,0 -3.59686,0.765574 -4.8341,2.00267 -1.2371,1.23724 -2.00267,2.94658 -2.00267,4.8341 0,1.88752 0.765574,3.59686 2.00267,4.8341 1.23724,1.2371 2.94658,2.00267 4.8341,2.00267 1.88752,0 3.59686,-0.765574 4.8341,-2.00267 1.2371,-1.23724 2.00267,-2.94658 2.00267,-4.8341 0,-1.88752 -0.765574,-3.59686 -2.00267,-4.8341z"/>
|
|
82
|
+
<path id="_116840000" class="fil6" d="M96.1496 11.2729c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l1.41269 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-1.41269 0zm-1.34864 -3.37549c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l2.76134 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-2.76134 0zm0.674177 1.68789c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l2.08716 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-2.08716 0z"/>
|
|
83
|
+
<path id="_116839928" class="fil6" d="M91.0112 6.94198c0.645247,0 1.23062,0.262244 1.65464,0.685836l0.000431796 0.000431796 0.000431796 0.000431796c0.423592,0.424024 0.685836,1.0094 0.685836,1.65464 0,0.645391 -0.262388,1.23091 -0.686268,1.65493l0.000431796 0.000431796c-0.423448,0.423448 -1.00911,0.685692 -1.65551,0.685692 -0.646399,0 -1.23206,-0.262244 -1.65551,-0.685692l0.000431796 -0.000431796c-0.42388,-0.424024 -0.686268,-1.00954 -0.686268,-1.65493 0,-0.645247 0.262244,-1.23062 0.685836,-1.65464l0.000431796 -0.000431796 0.000431796 -0.000431796c0.424024,-0.423592 1.0094,-0.685836 1.65464,-0.685836zm1.35008 0.990396c-0.344861,-0.345005 -0.822427,-0.5586 -1.35008,-0.5586 -0.527655,0 -1.00522,0.213595 -1.35008,0.5586l-0.000863592 0.000863592c-0.345005,0.344861 -0.5586,0.822427 -0.5586,1.35008 0,0.527511 0.213595,1.00508 0.5586,1.34994l0.000863592 0c0.345437,0.345437 0.823003,0.55932 1.35008,0.55932 0.527079,0 1.00465,-0.213883 1.35008,-0.55932l0.000863592 0c0.345005,-0.344861 0.5586,-0.822427 0.5586,-1.34994 0,-0.527655 -0.213595,-1.00522 -0.5586,-1.35008l-0.000863592 -0.000863592z"/>
|
|
84
|
+
<path id="_116803248" class="fil6" d="M88.2194 15.0798c-0.0588682,0.189415 -0.260373,0.295061 -0.449787,0.236192 -0.189415,-0.0588682 -0.295061,-0.260373 -0.236192,-0.449787 0.233314,-0.750174 0.703396,-1.39686 1.32259,-1.85255 0.603939,-0.444318 1.34979,-0.706994 2.15553,-0.706994 0.34227,0 0.675473,0.0482172 0.992555,0.137743 0.325574,0.0922604 0.63402,0.229428 0.917279,0.404305 0.1684,0.103919 0.220504,0.324998 0.116585,0.493399 -0.103919,0.1684 -0.324998,0.220504 -0.493399,0.116585 -0.224966,-0.138894 -0.471953,-0.248571 -0.734485,-0.322839 -0.252025,-0.0711024 -0.520026,-0.109532 -0.798535,-0.109532 -0.64827,0 -1.24703,0.210573 -1.73093,0.566516 -0.496709,0.365443 -0.873955,0.884606 -1.06121,1.48696z"/>
|
|
85
|
+
<circle id="_116803176" class="fil7" cx="93.9972" cy="14.2303" r="0.408944"/>
|
|
86
|
+
</g>
|
|
87
|
+
<path class="fil8" d="M31.0746 23.5182c0.800118,0 1.57131,0.124501 2.29514,0.35508l0 6.73228c0,0.00820412 -0.0035983,0.0159765 -0.00892378,0.0218777l-0.00071966 -0.00071966c-0.00590121,0.00590121 -0.0136735,0.00964344 -0.0210141,0.00964344l-5.34045 0c-0.222087,0 -0.43194,0.054982 -0.616749,0.151704l0 -6.30724c1.09201,-0.613006 2.3517,-0.962617 3.69272,-0.962617zm3.0148 0.625672c0.874675,0.380988 1.66313,0.922604 2.32824,1.58771 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.36735,1.36735 -3.25675,2.21339 -5.34304,2.21339 -2.08629,0 -3.97569,-0.846032 -5.34304,-2.21339 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 0.288008,-0.288008 0.599333,-0.552843 0.930664,-0.791626l0 7.03281 0 0.870645 0 0.234177c0,0.366019 0.150697,0.699653 0.392646,0.942035l0.00143932 0.00143932c0.242957,0.242381 0.577167,0.392934 0.942323,0.392934l6.15209 0c0.367171,0 0.701525,-0.150697 0.943618,-0.39279l0 -0.00143932c0.241806,-0.242094 0.392646,-0.576016 0.392646,-0.942179l0 -5.85976c0,-0.198626 -0.161204,-0.35983 -0.35983,-0.35983 -0.198626,0 -0.35983,0.161204 -0.35983,0.35983l0 5.85976c0,0.168832 -0.0696631,0.323271 -0.18121,0.435394l-0.00071966 -0.00071966c-0.112123,0.112123 -0.266274,0.182074 -0.434675,0.182074l-6.15209 0c-0.169264,0 -0.323559,-0.0693752 -0.434819,-0.180779l-0.00143932 -0.00143932c-0.111116,-0.110972 -0.180491,-0.264979 -0.180491,-0.434531l0 -0.234177 0 -0.870645 0 -0.00791626c0.00215898,-0.16581 0.0715342,-0.317082 0.181642,-0.42719 0.111835,-0.111835 0.26613,-0.181642 0.435106,-0.181642l5.34045 0c0.206255,0 0.394374,-0.0847759 0.529958,-0.22036l0 -0.00143932c0.135728,-0.135872 0.22036,-0.323271 0.22036,-0.528662l0 -6.46168zm-5.70201 8.5972c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l5.15953 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-5.15953 0z"/>
|
|
88
|
+
<path class="fil9" d="M51.7911 23.5182c2.08629,0 3.97569,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.36735,1.36735 -3.25675,2.21339 -5.34304,2.21339 -1.23235,0 -2.39604,-0.295205 -3.424,-0.818685l0 -6.30163 3.05208 1.87471 0.000287864 -0.000431796c0.10982,0.0672162 0.244109,0.100752 0.371632,0.100752 0.127524,0 0.261956,-0.0335362 0.371632,-0.100752l0.000287864 0.000431796 2.30953 -1.41859 0 2.08126c0,0.119176 0.0967223,0.215898 0.215898,0.215898 0.119176,0 0.215898,-0.0967223 0.215898,-0.215898l0 -2.34652 2.1751 -1.33598c0.0775793,-0.0473536 0.137455,-0.108093 0.178907,-0.176029 0.0467779,-0.076284 0.0702388,-0.159621 0.0702388,-0.243965 0,-0.084632 -0.0236048,-0.167969 -0.0702388,-0.243965 -0.042316,-0.0692313 -0.101904,-0.129539 -0.177468,-0.176029l-0.00143932 0 -4.91643 -3.01984 -0.000287864 0.000431796c-0.109676,-0.0672162 -0.244109,-0.100752 -0.371632,-0.100752 -0.127524,0 -0.261812,0.0335362 -0.371632,0.100752l-0.000287864 -0.000431796 -4.91643 3.01984c-0.0772915,0.0472097 -0.137311,0.107805 -0.178907,0.176029 -0.046634,0.0759961 -0.0702388,0.159333 -0.0702388,0.243965 0,0.0843442 0.0234609,0.167681 0.0702388,0.243965 0.042316,0.0692313 0.102048,0.129683 0.177468,0.176029l0.00143932 0 1.43256 0.879856 0 6.32883c-0.543487,-0.322983 -1.04293,-0.712319 -1.48725,-1.15664 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.36735,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm0.00201505 3.60046l-0.00201505 0.00129539 -0.00201505 -0.00129539 -0.00143932 -0.00143932c-0.00503762,-0.0031665 -0.00100752,0.000287864 0.00201505,0.0035983l-4.59892 2.82481 4.59892 2.82481c-0.00287864,0.0031665 -0.00690874,0.00662087 -0.00201505,0.0035983l0.00143932 -0.00143932 0.00201505 -0.00129539 0.00201505 0.00129539 0.00143932 0.00143932c0.00503762,0.0031665 0.00115146,-0.000287864 -0.00201505,-0.0035983l4.59892 -2.82481 -4.59892 -2.82481c0.00287864,-0.0031665 0.00705267,-0.00662087 0.00201505,-0.0035983l-0.00143932 0.00143932zm-0.00201505 0.00129539l-0.00143932 0.000863592 0.00143932 0.00143932c0.00115146,0.00158325 0.00172718,0.00287864 0,0.00287864 -0.00172718,0 -0.00115146,-0.00129539 0,-0.00287864l0.00143932 -0.00143932 -0.00143932 -0.000863592zm0 5.65135l0.00143932 -0.000863592 -0.00143932 -0.00143932c-0.00115146,-0.00158325 -0.00172718,-0.00287864 0,-0.00287864 0.00172718,0 0.00115146,0.00129539 0,0.00287864l-0.00143932 0.00143932 0.00143932 0.000863592zm2.89735 2.40338c0.225973,0 0.408911,0.182938 0.408911,0.409055 0,0.225685 -0.182938,0.408767 -0.408911,0.408767 -0.225829,0 -0.408911,-0.183082 -0.408911,-0.408767 0,-0.226117 0.183082,-0.409055 0.408911,-0.409055z"/>
|
|
89
|
+
<path class="fil10" d="M72.5076 26.9274c0.764279,0 1.45746,0.310605 1.95935,0.812352l0.000431796 -0.000431796c0.501459,0.501459 0.81192,1.19478 0.81192,1.95992 0,0.763991 -0.310461,1.45702 -0.81192,1.95891l-0.000431796 0.000431796 -0.000431796 0.000431796c-0.501891,0.501459 -1.19492,0.81192 -1.95891,0.81192 -0.765143,0 -1.45846,-0.310461 -1.95992,-0.81192l0.000431796 -0.000431796c-0.501747,-0.501891 -0.812352,-1.19507 -0.812352,-1.95935 0,-0.765143 0.310461,-1.45846 0.81192,-1.95992 0.501459,-0.501459 1.19478,-0.81192 1.95992,-0.81192zm-0.000143932 -3.40917c2.08629,0 3.97569,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.36735,1.36735 -3.25675,2.21339 -5.34304,2.21339 -1.29827,0 -2.52011,-0.327733 -3.58751,-0.904757 0.0122342,-0.964632 0.365443,-1.86248 1.05114,-2.54788 0.649133,-0.649277 1.54626,-1.05099 2.53666,-1.05099 0.341407,0 0.670147,0.0469218 0.979889,0.13472 0.32212,0.090965 0.625241,0.225685 0.901878,0.396389 0.1684,0.103919 0.38948,0.0518155 0.493399,-0.116585 0.103919,-0.1684 0.0518155,-0.38948 -0.116585,-0.493399 -0.334786,-0.206686 -0.699366,-0.369042 -1.08467,-0.477854 -0.374511,-0.106078 -0.768597,-0.162931 -1.17391,-0.162931 -1.18917,0 -2.26621,0.482172 -3.0456,1.26171 -0.687275,0.687131 -1.14325,1.60556 -1.24156,2.62834 -0.378541,-0.261237 -0.732038,-0.556009 -1.05617,-0.880144 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.36735,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm3.29647 11.5334c0.225973,0 0.408911,0.182938 0.408911,0.409055 0,0.225685 -0.182938,0.408767 -0.408911,0.408767 -0.225829,0 -0.408911,-0.183082 -0.408911,-0.408767 0,-0.226117 0.183082,-0.409055 0.408911,-0.409055zm-1.64198 -7.00776c-0.422728,-0.422872 -1.00781,-0.684685 -1.65435,-0.684685 -0.645967,0 -1.23105,0.2621 -1.6545,0.685548 -0.423448,0.423448 -0.685548,1.00853 -0.685548,1.6545 0,0.646543 0.261812,1.23163 0.684685,1.65435l0.000863592 0c0.423448,0.423448 1.00853,0.685548 1.6545,0.685548 0.646399,0 1.23163,-0.261812 1.65435,-0.684685l0.000863592 -0.000863592c0.422872,-0.422728 0.684685,-1.00796 0.684685,-1.65435 0,-0.645967 -0.2621,-1.23105 -0.685548,-1.6545l0 -0.000863592z"/>
|
|
90
|
+
<path class="fil10" d="M96.1496 31.9893c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l1.41269 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-1.41269 0zm-2.92571 -8.47112c2.08629,0 3.97569,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.36735,1.36735 -3.25675,2.21339 -5.34304,2.21339 -1.98238,0 -3.78699,-0.763991 -5.13477,-2.01303 0.0125221,-0.789035 0.336801,-1.50135 0.85438,-2.01893l0.00143932 -0.00143932c0.527943,-0.527943 1.25854,-0.854812 2.06643,-0.854812 0.278508,0 0.54651,0.0384298 0.798535,0.109532 0.262532,0.0742689 0.509519,0.183945 0.734629,0.322696 0.1684,0.103919 0.38948,0.0518155 0.493399,-0.116585 0.103919,-0.1684 0.0518155,-0.38948 -0.116585,-0.493399 -0.283402,-0.174733 -0.591992,-0.312045 -0.917423,-0.404161 -0.317082,-0.0895257 -0.650285,-0.137743 -0.992555,-0.137743 -1.00378,0 -1.91401,0.407759 -2.57394,1.06697l-0.00071966 0.00071966 -0.00071966 0.00071966c-0.495846,0.496421 -0.849487,1.13462 -0.994282,1.84751 -1.10698,-1.31453 -1.77425,-3.01178 -1.77425,-4.86447 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.36735,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm0.773347 11.0197c0.225973,0 0.408911,0.182938 0.408911,0.409055 0,0.225685 -0.182938,0.408767 -0.408911,0.408767 -0.225829,0 -0.408911,-0.183082 -0.408911,-0.408767 0,-0.226117 0.183082,-0.409055 0.408911,-0.409055zm-2.98601 -6.87952c0.645247,0 1.23062,0.262244 1.65464,0.685836l0.000431796 0.000431796 0.000431796 0.000431796c0.423592,0.424024 0.685836,1.0094 0.685836,1.65464 0,0.645391 -0.262388,1.23091 -0.686268,1.65493l0.000431796 0.000431796c-0.423448,0.423448 -1.00911,0.685692 -1.65551,0.685692 -0.646399,0 -1.23206,-0.262244 -1.65551,-0.685692l0.000431796 -0.000431796c-0.42388,-0.424024 -0.686268,-1.00954 -0.686268,-1.65493 0,-0.645247 0.262244,-1.23062 0.685836,-1.65464l0.000431796 -0.000431796 0.000431796 -0.000431796c0.424024,-0.423592 1.0094,-0.685836 1.65464,-0.685836zm1.35008 0.990396c-0.344861,-0.345005 -0.822427,-0.5586 -1.35008,-0.5586 -0.527655,0 -1.00522,0.213595 -1.35008,0.5586l-0.000863592 0.000863592c-0.345005,0.344861 -0.5586,0.822427 -0.5586,1.35008 0,0.527511 0.213595,1.00508 0.5586,1.34994l0.000863592 0c0.345437,0.345437 0.823003,0.55932 1.35008,0.55932 0.527079,0 1.00465,-0.213883 1.35008,-0.55932l0.000863592 0c0.345005,-0.344861 0.5586,-0.822427 0.5586,-1.34994 0,-0.527655 -0.213595,-1.00522 -0.5586,-1.35008l-0.000863592 -0.000863592zm2.43965 -0.0349755c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l2.76134 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-2.76134 0zm0.674177 1.68789c-0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898 0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898l2.08716 0c0.119176,0 0.215898,0.0967223 0.215898,0.215898 0,0.119176 -0.0967223,0.215898 -0.215898,0.215898l-2.08716 0z"/>
|
|
91
|
+
<g id="_116697856">
|
|
92
|
+
<path id="_116742920" class="fil1" d="M35.2249 51.651c0.120759,0 0.218633,-0.10104 0.218633,-0.225685 0,-0.124789 -0.0978738,-0.225829 -0.218633,-0.225829l-0.00546942 0 -1.73812 0 -0.00575728 0c-0.120615,0 -0.218489,0.10104 -0.218489,0.225829 0,0.124645 0.0978738,0.225685 0.218489,0.225685l0.00575728 0 1.73812 0 0.00546942 0z"/>
|
|
93
|
+
<path id="_116698240" class="fil3" d="M26.9183 53.0061c0.120615,0 0.218777,0.101184 0.218777,0.225829 0,0.124789 -0.0981616,0.225973 -0.218777,0.225973l-0.00244684 0 -0.0031665 0 -1.96467 0 0 -3.83363 0 -0.00575728c0,-0.124645 0.0978738,-0.225829 0.218633,-0.225829 0.120471,0 0.218633,0.101184 0.218633,0.225829l0 0.00575728 0 3.38183 1.52741 0 0.0031665 0 0.00244684 0z"/>
|
|
94
|
+
<path id="_116698168" class="fil1" d="M36.7556 49.6185c0,-0.124645 -0.0980177,-0.225829 -0.218777,-0.225829 -0.120471,0 -0.218633,0.101184 -0.218633,0.225829l0 0.00575728 0 3.60204 0 0.00561335c0,0.124789 0.0981616,0.225973 0.218633,0.225973 0.120759,0 0.218777,-0.101184 0.218777,-0.225973l0 -0.00561335 0 -3.60204 0 -0.00575728z"/>
|
|
95
|
+
<path id="_116698096" class="fil2" d="M28.0092 51.4253c0,0.124645 0.0980177,0.225685 0.218633,0.225685l0.00575728 0 0.86316 0 0.00575728 0c0.120759,0 0.218633,-0.10104 0.218633,-0.225685 0,-0.124789 -0.0978738,-0.225829 -0.218633,-0.225829l-0.00575728 0 -0.86316 0 -0.00575728 0c-0.120615,0 -0.218633,0.10104 -0.218633,0.225829z"/>
|
|
96
|
+
<path id="_116698024" class="fil2" d="M29.1025 49.8444c0.120759,0 0.218633,-0.101184 0.218633,-0.225829 0,-0.124645 -0.0978738,-0.225829 -0.218633,-0.225829l-0.00071966 0 -0.00503762 0 -0.00129539 0.000143932c-1.08395,0.0035983 -1.96151,0.912385 -1.96151,2.03246 0,1.12022 0.877553,2.02872 1.96151,2.03232l0.00129539 0.000287864 0.00503762 0 0.00071966 0c0.120759,0 0.218633,-0.101184 0.218633,-0.225973 0,-0.124645 -0.0978738,-0.225829 -0.218633,-0.225829l-0.00071966 0 -0.00503762 0c-0.843154,-0.00287864 -1.52554,-0.709585 -1.52554,-1.58081 0,-0.87122 0.682382,-1.57793 1.52554,-1.58095l0.00503762 0 0.00071966 0z"/>
|
|
97
|
+
<path id="_116697952" class="fil1" d="M35.2249 53.4579c0.120759,0 0.218633,-0.101184 0.218633,-0.225973 0,-0.124645 -0.0978738,-0.225829 -0.218633,-0.225829l-0.00546942 0 -1.73812 0 -0.00575728 0c-0.120615,0 -0.218489,0.101184 -0.218489,0.225829 0,0.124789 0.0978738,0.225973 0.218489,0.225973l0.00575728 0 1.73812 0 0.00546942 0z"/>
|
|
98
|
+
<path id="_116697880" class="fil4" d="M35.2249 49.8444l-0.000143932 0 -0.00590121 0 -1.96179 0c-0.193013,0.000143932 -0.365012,0.134145 -0.419274,0.322839l-0.920589 2.98054c-0.0584364,0.180635 -0.224534,0.304272 -0.40963,0.304272 -0.188551,0 -0.349179,-0.125077 -0.407759,-0.299379l-1.11101 -3.46084 -0.00115146 -0.00302257 0.000287864 0c-0.0122342,-0.0387177 -0.0146811,-0.0813216 -0.00446189,-0.123782 0.0287864,-0.121047 0.147099,-0.195316 0.264403,-0.165378 0.0759961,0.018999 0.133137,0.0775793 0.155878,0.149257l0.00071966 0.00201505 0 0.000143932 1.10309 3.45509 0.913249 -2.97594c0.111691,-0.373647 0.45353,-0.637043 0.836245,-0.637475l1.96179 0 0.00590121 0 0.000143932 0c0.120615,0.000143932 0.218489,0.101184 0.218489,0.225829 0,0.124645 -0.0978738,0.225685 -0.218489,0.225829z"/>
|
|
99
|
+
</g>
|
|
100
|
+
<rect class="fil5" x="-7.1902e-005" y="41.4328" width="20.7166" height="20.7166"/>
|
|
101
|
+
<rect class="fil5" x="20.7163" y="41.4328" width="20.7166" height="20.7166"/>
|
|
102
|
+
<rect class="fil5" x="41.4328" y="41.4328" width="20.7166" height="20.7166"/>
|
|
103
|
+
<rect class="fil5" x="62.1492" y="41.4328" width="20.7166" height="20.7166"/>
|
|
104
|
+
<rect class="fil5" x="82.8656" y="41.4328" width="20.7166" height="20.7166"/>
|
|
105
|
+
<rect class="fil5" x="-7.1902e-005" y="62.1492" width="20.7166" height="20.7166"/>
|
|
106
|
+
<rect class="fil5" x="20.7163" y="62.1492" width="20.7166" height="20.7166"/>
|
|
107
|
+
<rect class="fil5" x="41.4328" y="62.1492" width="20.7166" height="20.7166"/>
|
|
108
|
+
<rect class="fil5" x="62.1492" y="62.1492" width="20.7166" height="20.7166"/>
|
|
109
|
+
<rect class="fil5" x="82.8656" y="62.1492" width="20.7166" height="20.7166"/>
|
|
110
|
+
<g id="_116635248">
|
|
111
|
+
<path id="_116635848" class="fil7" d="M51.7912 80.3525l-6.02758 0c-1.03573,0 -1.88292,-0.847184 -1.88292,-1.88292l0 -0.399843 7.9105 0 0 2.28276z"/>
|
|
112
|
+
<path id="_116635776" class="fil11" d="M59.7014 78.0697l0 0.399843c0,1.03573 -0.847184,1.88292 -1.88292,1.88292l-6.0273 0 0 -2.28276 7.91021 0z"/>
|
|
113
|
+
<path id="_116635704" class="fil7" d="M45.7636 64.6626l6.02758 0 0 2.28276 -7.9105 0 0 -0.399843c0,-1.03573 0.847184,-1.88292 1.88292,-1.88292z"/>
|
|
114
|
+
<path id="_116635632" class="fil11" d="M51.7912 64.6626l6.0273 0c1.03573,0 1.88292,0.847184 1.88292,1.88292l0 0.399843 -7.91021 0 0 -2.28276z"/>
|
|
115
|
+
<rect id="_116635560" class="fil12" x="43.8807" y="66.9454" width="7.91035" height="11.1242"/>
|
|
116
|
+
<rect id="_116635488" class="fil7" x="51.7911" y="66.9454" width="7.91035" height="11.1242"/>
|
|
117
|
+
<path id="_116635416" class="fil2" d="M54.6288 70.1984c0.234177,-0.223958 0.614446,-0.223958 0.848767,0 0.234177,0.223958 0.234177,0.58753 0,0.811489l-4.36056 4.16942c-0.234321,0.223958 -0.614446,0.223958 -0.848767,0l-2.16359 -2.06845c-0.234321,-0.223958 -0.234321,-0.58753 0,-0.811489 0.234177,-0.223958 0.614446,-0.223958 0.848767,0l1.73913 1.6627 3.93625 -3.76368z"/>
|
|
118
|
+
<polyline id="_116635344" class="fil5" points="55.4209,69.4481 50.5685,74.3006 48.1612,71.8933 "/>
|
|
119
|
+
<path id="_116635272" class="fil13" d="M54.6288 69.3837c0.234177,-0.223958 0.614446,-0.223958 0.848767,0 0.234177,0.223958 0.234177,0.58753 0,0.811489l-4.36056 4.16957c-0.234321,0.223958 -0.614446,0.223958 -0.848767,0l-2.16359 -2.06845c-0.234321,-0.224102 -0.234321,-0.58753 0,-0.811489 0.234177,-0.224102 0.614446,-0.224102 0.848767,0l1.73913 1.6627 3.93625 -3.76382z"/>
|
|
120
|
+
</g>
|
|
121
|
+
<g id="_116634864">
|
|
122
|
+
<path id="_116635176" class="fil12" d="M72.5075 64.3806l-2.91102 0c-0.41985,0 -0.782126,0.151416 -1.07344,0.454105l-2.87936 2.99163c-0.280236,0.291318 -0.422728,0.637907 -0.422728,1.04207l0 9.62876c0,1.17722 0.96017,2.13725 2.13725,2.13725l5.14931 0 0 -16.2538z"/>
|
|
123
|
+
<path id="_116635104" class="fil7" d="M79.7943 78.4972l0 -12.3676c0,-0.947936 -0.786876,-1.74877 -1.74877,-1.74877l-5.53807 -0.000143932 0 16.2538 5.1496 0c1.17722,0 2.13725,-0.960026 2.13725,-2.13725z"/>
|
|
124
|
+
<path id="_116635032" class="fil1" d="M75.1288 74.5782c0,1.38765 -0.866471,1.88465 -2.14531,1.88465l0 0.721243c0,0.153288 -0.129539,0.282826 -0.282826,0.282826l-0.405888 0c-0.153288,0 -0.282826,-0.127092 -0.282826,-0.282826l0 -0.721243 -1.72143 0c-0.154151,0 -0.282826,-0.127092 -0.282826,-0.282826l0 -0.215754c0,-0.155734 0.127092,-0.28297 0.282826,-0.28297l1.72143 0.000143932 0 -1.99245 -0.154727 0c-0.543055,0 -0.989532,-0.140334 -1.35023,-0.391351 -0.420857,-0.292614 -0.640353,-0.69951 -0.640353,-1.24429 0,-0.568963 0.21633,-1.01069 0.675041,-1.28071 0.346156,-0.203808 0.758953,-0.283834 1.20946,-0.283834l0.260805 0 0 -0.909506c0,-0.155734 0.127092,-0.282826 0.282826,-0.282826l0.405888 0c0.155734,0 0.282826,0.129107 0.282826,0.282826l0 0.909506 1.61377 0c0.155734,0 0.282826,0.12738 0.282826,0.282826l0 0.181066c0,0.15559 -0.127236,0.282826 -0.282826,0.282826l-1.61377 0 0 1.6722c0.525208,0 1.01933,0.0554138 1.47027,0.354936 0.443167,0.294629 0.675041,0.723834 0.675041,1.31554zm-3.11685 -1.67047l0 -1.6722 -0.260805 0c-0.757226,0 -1.13807,0.273039 -1.13807,0.817822 0,0.261093 0.10176,0.482748 0.320249,0.640353 0.206542,0.149114 0.521897,0.214027 0.9239,0.214027l0.154727 0zm2.33544 1.67047c0,-0.809761 -0.737076,-0.889212 -1.3639,-0.889212l0 1.99245c0.326294,0 0.724554,0.0109388 1.00738,-0.177612 0.24195,-0.161348 0.35652,-0.474976 0.35652,-0.925627z"/>
|
|
125
|
+
<path id="_116634960" class="fil11" d="M68.3978 68.7215c0.641217,0 1.16412,-0.522761 1.16412,-1.16398l0 -3.17672c-0.405169,0.00834806 -0.755643,0.159621 -1.0389,0.453962l-2.87936 2.99163c-0.245692,0.255479 -0.385594,0.553275 -0.416107,0.895113l3.17025 0z"/>
|
|
126
|
+
<path id="_116634888" class="fil14" d="M75.1288 74.0667c0,1.3875 -0.866471,1.8845 -2.14531,1.8845l0 0.721243c0,0.153288 -0.129539,0.282826 -0.282826,0.282826l-0.405888 0c-0.153288,0 -0.282826,-0.127092 -0.282826,-0.282826l0 -0.721243 -1.72143 0c-0.154151,0 -0.282826,-0.126948 -0.282826,-0.282826l0 -0.21561c0,-0.155878 0.127092,-0.283114 0.282826,-0.283114l1.72143 0.000287864 0 -1.99245 -0.154727 0c-0.543055,0 -0.989532,-0.140478 -1.35023,-0.391351 -0.420857,-0.292614 -0.640353,-0.699653 -0.640353,-1.24429 0,-0.568963 0.21633,-1.01069 0.675041,-1.28085 0.346156,-0.203664 0.758953,-0.28369 1.20946,-0.28369l0.260805 0 0 -0.909506c0,-0.155878 0.127092,-0.282826 0.282826,-0.282826l0.405888 0c0.155734,0 0.282826,0.128963 0.282826,0.282826l0 0.909506 1.61377 0c0.155734,0 0.282826,0.127236 0.282826,0.282826l0 0.180923c0,0.15559 -0.127236,0.282826 -0.282826,0.282826l-1.61377 0 0 1.6722c0.525208,0 1.01933,0.0554138 1.47027,0.35508 0.443167,0.294629 0.675041,0.723834 0.675041,1.31554zm-3.11685 -1.67062l0 -1.6722 -0.260805 0c-0.757226,0 -1.13807,0.273039 -1.13807,0.817966 0,0.260949 0.10176,0.482748 0.320249,0.64021 0.206542,0.149114 0.521897,0.214027 0.9239,0.214027l0.154727 0zm2.33544 1.67062c0,-0.809905 -0.737076,-0.889212 -1.3639,-0.889212l0 1.99245c0.326294,0 0.724554,0.0107949 1.00738,-0.177756 0.24195,-0.161348 0.35652,-0.474832 0.35652,-0.925483z"/>
|
|
127
|
+
</g>
|
|
128
|
+
<g id="_116605880">
|
|
129
|
+
<polygon id="_116634792" class="fil15" points="10.3824,63.8179 5.54656,70.3273 5.548,78.0972 10.3601,81.1975 15.1737,78.084 15.1737,70.319 "/>
|
|
130
|
+
<path id="_116634720" class="fil7" d="M10.3601 71.6328l4.81366 -1.32705 -0.00115146 7.77809c-0.0732614,2.09464 -3.35016,3.11382 -4.81251,3.11382l0 -9.56486z"/>
|
|
131
|
+
<path id="_116634648" class="fil12" d="M10.3601 71.6328l-4.81352 -1.32705 0 7.72181c0,1.52237 2.15524,3.1701 4.81352,3.1701l0 -9.56486z"/>
|
|
132
|
+
<polygon id="_116634576" class="fil16" points="8.41657,66.4638 10.3601,71.6328 12.3476,66.4635 "/>
|
|
133
|
+
<path id="_116634504" class="fil17" d="M10.3822 66.8425c0.723546,0 1.39787,-0.13875 1.96539,-0.378973l-1.96539 -2.64576 -0.0221655 0.02965 -1.94351 2.6164c0.561911,0.237344 1.22817,0.37595 1.94351,0.378685l0.0221655 0z"/>
|
|
134
|
+
<polygon id="_116634432" class="fil18" points="12.3476,66.4635 10.3601,71.6328 15.1737,70.319 "/>
|
|
135
|
+
<polygon id="_116634360" class="fil19" points="8.41657,66.4638 10.3601,71.6328 5.54268,70.3092 "/>
|
|
136
|
+
<g>
|
|
137
|
+
<path id="_116606072" class="fil20" d="M10.3821 63.8179l-0.000143932 0.000287864 0 3.0243c0.718796,0 1.38894,-0.136879 1.95402,-0.374079l-1.91631 -2.60013 -0.0375663 -0.0503762z"/>
|
|
138
|
+
<path id="_116606000" class="fil20" d="M12.3478 66.4635l-1.96582 0.000143932 0 0.378829c0.723834,0 1.3983,-0.13875 1.96582,-0.378973z"/>
|
|
139
|
+
<path id="_116605928" class="fil20" d="M10.382 66.8425c0.723834,0 1.3983,-0.13875 1.96582,-0.378973l-1.96582 -2.64576 0 3.02473z"/>
|
|
140
|
+
</g>
|
|
141
|
+
</g>
|
|
142
|
+
<path class="fil20" d="M10.3582 23.5182c2.08629,0 3.97569,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.36735,1.36735 -3.25675,2.21339 -5.34304,2.21339 -2.08629,0 -3.97569,-0.846032 -5.34304,-2.21339 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.36735,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm-0.966935 8.29869c0.225829,0 0.408911,0.183082 0.408911,0.409055 0,0.225829 -0.183082,0.408911 -0.408911,0.408911 -0.225973,0 -0.409055,-0.183082 -0.409055,-0.408911 0,-0.225973 0.183082,-0.409055 0.409055,-0.409055zm1.93416 0c0.225829,0 0.408911,0.183082 0.408911,0.409055 0,0.225829 -0.183082,0.408911 -0.408911,0.408911 -0.225973,0 -0.409055,-0.183082 -0.409055,-0.408911 0,-0.225973 0.183082,-0.409055 0.409055,-0.409055zm-1.93416 1.77785c0.225829,0 0.408911,0.183082 0.408911,0.409055 0,0.225829 -0.183082,0.408911 -0.408911,0.408911 -0.225973,0 -0.409055,-0.183082 -0.409055,-0.408911 0,-0.225973 0.183082,-0.409055 0.409055,-0.409055zm1.93416 0c0.225829,0 0.408911,0.183082 0.408911,0.409055 0,0.225829 -0.183082,0.408911 -0.408911,0.408911 -0.225973,0 -0.409055,-0.183082 -0.409055,-0.408911 0,-0.225973 0.183082,-0.409055 0.409055,-0.409055zm-5.58744 -3.17413c-0.159045,0.11788 -0.383867,0.0844881 -0.501747,-0.0745568 -0.11788,-0.159045 -0.0844881,-0.383867 0.0745568,-0.501747l4.10911 -3.03941c0.283114,-0.209565 0.610991,-0.314491 0.938149,-0.314491 0.327301,0 0.655035,0.104926 0.938293,0.314491l4.10926 3.03941c0.159045,0.11788 0.192437,0.342702 0.0745568,0.501747 -0.11788,0.159045 -0.342702,0.192437 -0.501747,0.0745568l-4.10926 -3.03941c-0.154007,-0.113994 -0.332771,-0.171135 -0.511103,-0.171135 -0.178332,0 -0.356951,0.057141 -0.510959,0.171135l-4.10911 3.03941zm1.17031 4.53904c0,0.119176 -0.0967223,0.215898 -0.215898,0.215898 -0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898l0 -3.6897c0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898 0.119176,0 0.215898,0.0967223 0.215898,0.215898l0 3.6897zm7.33175 0c0,0.119176 -0.0967223,0.215898 -0.215898,0.215898 -0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898l0 -3.6897c0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898 0.119176,0 0.215898,0.0967223 0.215898,0.215898l0 3.6897z"/>
|
|
143
|
+
<g id="_20798728">
|
|
144
|
+
<path id="_116604584" class="fil6" d="M10.3582 2.80178c2.08629,0 3.97555,0.846032 5.34304,2.21339 1.36735,1.3675 2.21339,3.25675 2.21339,5.34304 0,2.08629 -0.846032,3.97555 -2.21339,5.34304 -1.3675,1.36735 -3.25675,2.21339 -5.34304,2.21339 -2.08629,0 -3.97555,-0.846032 -5.34304,-2.21339 -1.36735,-1.3675 -2.21339,-3.25675 -2.21339,-5.34304 0,-2.08629 0.846032,-3.97555 2.21339,-5.34304 1.3675,-1.36735 3.25675,-2.21339 5.34304,-2.21339zm4.8341 2.72233c-1.23724,-1.2371 -2.94658,-2.00267 -4.8341,-2.00267 -1.88752,0 -3.59686,0.765574 -4.8341,2.00267 -1.2371,1.23724 -2.00267,2.94658 -2.00267,4.8341 0,1.88752 0.765574,3.59686 2.00267,4.8341 1.23724,1.2371 2.94658,2.00267 4.8341,2.00267 1.88752,0 3.59686,-0.765574 4.8341,-2.00267 1.2371,-1.23724 2.00267,-2.94658 2.00267,-4.8341 0,-1.88752 -0.765574,-3.59686 -2.00267,-4.8341z"/>
|
|
145
|
+
<path id="_116604512" class="fil6" d="M5.73799 9.70418c-0.159045,0.11788 -0.383867,0.0844881 -0.501747,-0.0745568 -0.11788,-0.159045 -0.0844881,-0.383867 0.0745568,-0.501747l4.10911 -3.03941c0.283114,-0.209565 0.610991,-0.314491 0.938149,-0.314491 0.327301,0 0.655035,0.104926 0.938293,0.314491l4.10926 3.03941c0.159045,0.11788 0.192437,0.342702 0.0745568,0.501747 -0.11788,0.159045 -0.342702,0.192437 -0.501747,0.0745568l-4.10926 -3.03941c-0.154007,-0.113994 -0.332771,-0.171135 -0.511103,-0.171135 -0.178332,0 -0.356951,0.057141 -0.510959,0.171135l-4.10911 3.03941z"/>
|
|
146
|
+
<path id="_116604440" class="fil6" d="M14.2401 14.2432c0,0.119176 -0.0967223,0.215898 -0.215898,0.215898 -0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898l0 -3.6897c0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898 0.119176,0 0.215898,0.0967223 0.215898,0.215898l0 3.6897z"/>
|
|
147
|
+
<path id="_116604368" class="fil6" d="M6.9083 14.2432c0,0.119176 -0.0967223,0.215898 -0.215898,0.215898 -0.119176,0 -0.215898,-0.0967223 -0.215898,-0.215898l0 -3.6897c0,-0.119176 0.0967223,-0.215898 0.215898,-0.215898 0.119176,0 0.215898,0.0967223 0.215898,0.215898l0 3.6897z"/>
|
|
148
|
+
<g>
|
|
149
|
+
<circle id="_116604296" class="fil7" cx="9.39109" cy="11.5094" r="0.408944"/>
|
|
150
|
+
<circle id="_116604224" class="fil7" cx="11.3253" cy="11.5094" r="0.408944"/>
|
|
151
|
+
<circle id="_116604152" class="fil7" cx="9.39109" cy="13.2873" r="0.408944"/>
|
|
152
|
+
<circle id="_20798776" class="fil7" cx="11.3253" cy="13.2873" r="0.408944"/>
|
|
153
|
+
</g>
|
|
154
|
+
</g>
|
|
155
|
+
<g id="_117572984">
|
|
156
|
+
<path id="_20798656" class="fil7" d="M31.0745 81.0687c-4.72701,0 -8.56108,-3.83363 -8.56108,-8.56136 0,-4.72701 3.83406,-8.56093 8.56108,-8.56093l0 17.1223z"/>
|
|
157
|
+
<path id="_20798584" class="fil11" d="M31.0745 63.9464c4.72759,0 8.56136,3.83392 8.56136,8.56093 0,4.72773 -3.83377,8.56136 -8.56136,8.56136l0 -17.1223z"/>
|
|
158
|
+
<path id="_20798512" class="fil12" d="M31.0745 79.5325c-3.87882,0 -7.02489,-3.14578 -7.02489,-7.02518 0,-3.87882 3.14607,-7.02489 7.02489,-7.02489l0 14.0501z"/>
|
|
159
|
+
<path id="_20798440" class="fil7" d="M31.0745 65.4824c3.8794,0 7.02518,3.14607 7.02518,7.02489 0,3.8794 -3.14578,7.02518 -7.02518,7.02518l0 -14.0501z"/>
|
|
160
|
+
<path id="_117571976" class="fil21" d="M28.5436 72.2578l0 -2.12444c0,-0.253752 0.125797,-0.471521 0.345581,-0.598181 0.21964,-0.127092 0.471089,-0.127092 0.691018,-0.000287864l3.67962 2.12444c0.219928,0.126804 0.345581,0.344717 0.345869,0.598469l-5.06209 0z"/>
|
|
161
|
+
<path id="_117562216" class="fil9" d="M33.2598 72.8564l-3.67962 2.12444c-0.219928,0.126948 -0.471377,0.126948 -0.691161,0 -0.21964,-0.126948 -0.345437,-0.344717 -0.345437,-0.598469l0 -2.12458 5.06209 0c0,0.253896 -0.12594,0.471665 -0.345869,0.598613z"/>
|
|
162
|
+
</g>
|
|
163
|
+
</g>
|
|
164
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|