Init commit after damaged repo
|
|
@ -0,0 +1,26 @@
|
|||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/node_modules/*
|
||||
/node_modules/.cache/*
|
||||
/.pnp
|
||||
.pnp.js
|
||||
package-lock.json
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# production
|
||||
# /build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
# .env.local
|
||||
# .env.development.local
|
||||
# .env.test.local
|
||||
# .env.production.local
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
After Width: | Height: | Size: 18 KiB |
|
|
@ -0,0 +1,70 @@
|
|||
# Getting Started with Create React App
|
||||
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
|
||||
### `npm start`
|
||||
|
||||
Runs the app in the development mode.\
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
|
||||
|
||||
The page will reload when you make changes.\
|
||||
You may also see any lint errors in the console.
|
||||
|
||||
### `npm test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.\
|
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||
|
||||
### `npm run build`
|
||||
|
||||
Builds the app for production to the `build` folder.\
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.\
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `npm run eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
|
||||
|
||||
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
|
||||
|
||||
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
|
||||
### Code Splitting
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
|
||||
|
||||
### Analyzing the Bundle Size
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
|
||||
|
||||
### Making a Progressive Web App
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
|
||||
|
||||
### Advanced Configuration
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
|
||||
|
||||
### Deployment
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
|
||||
|
||||
### `npm run build` fails to minify
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
V1:
|
||||
|
||||
#IfModule mod_ssl.c>
|
||||
|
||||
<VirtualHost *:6901>
|
||||
|
||||
ServerAdmin admin@tonetwork.de
|
||||
ServerName thwgat.tonetwork.de
|
||||
DocumentRoot /var/www/thwgat/thwgat_homepage/build/
|
||||
|
||||
FallbackResource ./index.html
|
||||
|
||||
LogLevel info
|
||||
|
||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||
Options -Indexes
|
||||
|
||||
|
||||
<Directory /var/www/thwgat/thwgat_homepage/build/>
|
||||
# Options FollowSymLinks MultiViews
|
||||
# AllowOverride None
|
||||
# Order allow,deny
|
||||
# allow from all
|
||||
|
||||
# # ADDING FOLLOWING LINES SOLVED THE PROBLEM
|
||||
RewriteEngine on
|
||||
# # Don't rewrite files or directories
|
||||
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||||
RewriteCond %{REQUEST_FILENAME} -d
|
||||
RewriteRule ^ - [L]
|
||||
# # Rewrite everything else to index.html to allow html5 state links
|
||||
RewriteRule ^ /index.html [L]
|
||||
|
||||
</Directory>
|
||||
|
||||
|
||||
</VirtualHost>
|
||||
|
||||
|
||||
V2:
|
||||
|
||||
|
||||
<VirtualHost *:6901>
|
||||
|
||||
ServerAdmin admin@tonetwork.de
|
||||
|
||||
ServerName thwgat.tonetwork.de
|
||||
DocumentRoot /var/www/thwgat/thwgat_homepage/build/
|
||||
|
||||
FallbackResource ./index.html
|
||||
|
||||
LogLevel info
|
||||
|
||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||
Options -Indexes
|
||||
|
||||
|
||||
<Directory /var/www/thwgat/thwgat_homepage/build/>
|
||||
|
||||
|
||||
# # ADDING FOLLOWING LINES SOLVED THE PROBLEM
|
||||
RewriteEngine on
|
||||
# # Don't rewrite files or directories
|
||||
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||||
RewriteCond %{REQUEST_FILENAME} -d
|
||||
RewriteRule ^ - [L]
|
||||
# # Rewrite everything else to index.html to allow html5 state links
|
||||
RewriteRule ^ /index.html [L]
|
||||
|
||||
</Directory>
|
||||
|
||||
</VirtualHost>
|
||||
|
After Width: | Height: | Size: 24 KiB |
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"files": {
|
||||
"main.css": "/static/css/main.9f67d0cd.css",
|
||||
"main.js": "/static/js/main.bc4c894c.js",
|
||||
"static/media/david_heidl.png": "/static/media/david_heidl.7d76b235e35396a5415c.png",
|
||||
"static/media/GAT-Logo512.png": "/static/media/GAT-Logo512.695446086fee5d99f133.png",
|
||||
"static/media/GAT-App-Logo512.png": "/static/media/GAT-App-Logo512.a992e911d3eac5bc0156.png",
|
||||
"static/media/KFOjCnqEu92Fr1Mu51TLBCc6CsQ.woff2": "/static/media/KFOjCnqEu92Fr1Mu51TLBCc6CsQ.5b387ea565e67898ca3a.woff2",
|
||||
"static/media/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2": "/static/media/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.12ce041d695984c11669.woff2",
|
||||
"static/media/KFOkCnqEu92Fr1Mu51xIIzI.woff2": "/static/media/KFOkCnqEu92Fr1Mu51xIIzI.e10742dbb1d4a0864ba8.woff2",
|
||||
"static/media/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYobdNZ.woff2": "/static/media/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYobdNZ.b28cd0e32b58dbcea1d0.woff2",
|
||||
"static/media/KFOkCnqEu92Fr1MmgVxIIzI.woff2": "/static/media/KFOkCnqEu92Fr1MmgVxIIzI.30fb0679553d179c3343.woff2",
|
||||
"static/media/KFOlCnqEu92Fr1MmYUtfBBc4.woff2": "/static/media/KFOlCnqEu92Fr1MmYUtfBBc4.2e8becfcae330421664b.woff2",
|
||||
"static/media/KFOmCnqEu92Fr1Mu4mxK.woff2": "/static/media/KFOmCnqEu92Fr1Mu4mxK.b009a76ad6afe4ebd301.woff2",
|
||||
"static/media/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2": "/static/media/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.bb7a4e73944870e385e1.woff2",
|
||||
"static/media/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCQYbw.woff2": "/static/media/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCQYbw.6c26e7ba325616ba4252.woff2",
|
||||
"static/media/ton_logo-breit-white_cut-small.webp": "/static/media/ton_logo-breit-white_cut-small.a63971b466eecde67b39.webp",
|
||||
"index.html": "/index.html",
|
||||
"main.9f67d0cd.css.map": "/static/css/main.9f67d0cd.css.map",
|
||||
"main.bc4c894c.js.map": "/static/js/main.bc4c894c.js.map"
|
||||
},
|
||||
"entrypoints": [
|
||||
"static/css/main.9f67d0cd.css",
|
||||
"static/js/main.bc4c894c.js"
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
|
|
@ -0,0 +1 @@
|
|||
<!doctype html><html lang="de"><head><meta charset="utf-8"/><link rel="icon" href="/GAT-App-Logo512.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#00387B"/><meta name="description" content="Mit thwGAT kannst du dich perfekt auf deine Grundausbildungsprüfung vorbereiten. Developed by ToNetwork UG"/><link rel="apple-touch-icon" href="/GAT-App-Logo512.png"/><link rel="manifest" href="/manifest.json"/><title>thwGAT - Trainer</title><script defer="defer" src="/static/js/main.bc4c894c.js"></script><link href="/static/css/main.9f67d0cd.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 9.4 KiB |
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"short_name": "thwGAT",
|
||||
"name": "THW GA Trainer",
|
||||
"icons": [{
|
||||
"src": "Logo_App.png",
|
||||
"type": "image/png",
|
||||
"sizes": "500x500"
|
||||
}],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#00387B",
|
||||
"background_color": "#D1D2F9"
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
/*!
|
||||
* cookie
|
||||
* Copyright(c) 2012-2014 Roman Shtylman
|
||||
* Copyright(c) 2015 Douglas Christopher Wilson
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* react-dom.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* react-jsx-runtime.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* react.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* scheduler.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v16.13.1
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 712 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "thwgat_homepage",
|
||||
"homepage": "/",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome": "^1.1.8",
|
||||
"@fortawesome/fontawesome-svg-core": "^6.2.0",
|
||||
"@fortawesome/free-regular-svg-icons": "^6.2.0",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.2.0",
|
||||
"@fortawesome/react-fontawesome": "^0.2.0",
|
||||
"localStorage": "^1.0.4",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-router-dom": "5.2.0",
|
||||
"react-scripts": "5.0.1",
|
||||
"universal-cookie": "^4.0.4"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"react-app",
|
||||
"react-app/jest"
|
||||
]
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/GAT-App-Logo512.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#00387B" />
|
||||
<meta name="description" content="Mit thwGAT kannst du dich perfekt auf deine Grundausbildungsprüfung vorbereiten. Developed by ToNetwork UG" />
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/GAT-App-Logo512.png" />
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<title>thwGAT - Trainer</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 9.4 KiB |
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"short_name": "thwGAT",
|
||||
"name": "THW GA Trainer",
|
||||
"icons": [{
|
||||
"src": "Logo_App.png",
|
||||
"type": "image/png",
|
||||
"sizes": "500x500"
|
||||
}],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#00387B",
|
||||
"background_color": "#D1D2F9"
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
body,
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
overflow-x: hidden;
|
||||
background-color: var(--ci_color_mainbg);
|
||||
color: black;
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
|
||||
.mainCon {
|
||||
overflow: hidden;
|
||||
width: 100vw;
|
||||
}
|
||||
|
||||
.abig {
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
section {
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
height: -webkit-fit-content;
|
||||
height: -moz-fit-content;
|
||||
height: fit-content;
|
||||
height: -webkit-min-content;
|
||||
height: -moz-min-content;
|
||||
height: min-content;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
section h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: 52px;
|
||||
text-align: center;
|
||||
color: var(--ci_color_primary);
|
||||
}
|
||||
|
||||
.tool-tip {
|
||||
display: none;
|
||||
z-index: 10;
|
||||
position: absolute;
|
||||
top: 114%;
|
||||
border-radius: 12px;
|
||||
background-color: var(--ci_color_primary);
|
||||
color: white;
|
||||
padding: 8px;
|
||||
width: 330px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.tool-tip:before {
|
||||
content: "";
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
position: absolute;
|
||||
border-left: 10px solid var(--ci_color_primary);
|
||||
border-right: 10px solid transparent;
|
||||
border-left: 10px solid transparent;
|
||||
border-bottom: 10px solid var(--ci_color_primary);
|
||||
;
|
||||
left: 24px;
|
||||
top: -10px;
|
||||
}
|
||||
|
||||
.tip-parent:hover .tool-tip {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.backToPageBtn {
|
||||
position: absolute;
|
||||
margin-top: 20px;
|
||||
left: 40px;
|
||||
z-index: 1;
|
||||
color: var(--ci_color_secondary);
|
||||
font-size: 20px;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.sec_more {
|
||||
padding: 70px 15%;
|
||||
padding-bottom: 10%;
|
||||
/* background-color: var(--ci_color_mainbg); */
|
||||
min-height: 100vh;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.sec_more h2 {
|
||||
/* margin-left: 50px; */
|
||||
width: 70%;
|
||||
text-align: center;
|
||||
color: var(--ci_color_primary);
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.sec_more p {
|
||||
margin-top: 50px;
|
||||
width: 70%;
|
||||
font-size: 22px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
.sec_more li {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.sec_more p .longUL {
|
||||
columns: 3;
|
||||
-webkit-columns: 3;
|
||||
-moz-columns: 3;
|
||||
/* margin-left: 50%;
|
||||
transform: translateX(-50%); */
|
||||
}
|
||||
|
||||
.chb_container {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding-left: 35px;
|
||||
text-align: left;
|
||||
margin-bottom: 12px;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
margin-left: 10px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.chb_container input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
height: 0;
|
||||
width: 0;
|
||||
color: var(--ci_color_secondary);
|
||||
}
|
||||
|
||||
.chb_container font {
|
||||
margin-top: 3px;
|
||||
/* margin-left: 6px; */
|
||||
}
|
||||
|
||||
.checkmark {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
border-radius: 10px;
|
||||
background-color: var(--ci_color_mainbg);
|
||||
border: 3px solid var(--ci_color_primary);
|
||||
}
|
||||
|
||||
.chb_container:hover input~.checkmark {
|
||||
background-color: #ccc
|
||||
}
|
||||
|
||||
.chb_container input:checked~.checkmark {
|
||||
/* background-color: var(--ci_color_tilebg) */
|
||||
background-color: var(--ci_color_primary);
|
||||
}
|
||||
|
||||
.checkmark:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
display: none
|
||||
}
|
||||
|
||||
.chb_container input:checked~.checkmark:after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.chb_container .checkmark:after {
|
||||
left: 9px;
|
||||
top: 5px;
|
||||
width: 5px;
|
||||
height: 10px;
|
||||
/* border: solid var(--ci_color_primary); */
|
||||
border: solid white;
|
||||
border-width: 0 4px 4px 0;
|
||||
/* 3px */
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.inputdiv {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
/* justify-content: center; */
|
||||
/* align-items: center; */
|
||||
margin-top: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.inputdiv input,
|
||||
.inputdiv textarea,
|
||||
.inputdiv select {
|
||||
margin-top: 5px;
|
||||
border-radius: 15px;
|
||||
width: 300px;
|
||||
font-size: 15px;
|
||||
padding: 10px 20px;
|
||||
background-color: rgba(0, 0, 0, 0.0);
|
||||
color: var(--ci_color_primary);
|
||||
border: 3px solid var(--ci_color_primary);
|
||||
box-sizing: content-box;
|
||||
-ms-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box;
|
||||
/* box-sizing:content-box; */
|
||||
}
|
||||
|
||||
.inputdiv input:focus,
|
||||
.inputdiv textarea:focus,
|
||||
.inputdiv select:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.inputdiv input:invalid,
|
||||
.inputdiv textarea:invalid,
|
||||
.inputdiv select:invalid {
|
||||
border-color: var(--ci_color_error) !important;
|
||||
}
|
||||
|
||||
.inputdiv b {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
input[type=range] {
|
||||
height: 26px;
|
||||
-webkit-appearance: none;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
input[type=range]:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
input[type=range]::-webkit-slider-runnable-track {
|
||||
width: 100%;
|
||||
height: 13px;
|
||||
cursor: pointer;
|
||||
box-shadow: 0px 0px 0px #000000;
|
||||
background: var(--ci_color_tilebg);
|
||||
border-radius: 25px;
|
||||
border: 0px solid #000101;
|
||||
transition: 0.1s all;
|
||||
-webkit-transition: 0.1s all;
|
||||
-moz-transition: 0.1s all;
|
||||
-ms-transition: 0.1s all;
|
||||
-o-transition: 0.1s all;
|
||||
}
|
||||
|
||||
input[type=range]::-webkit-slider-thumb {
|
||||
box-shadow: 0px 0px 0px #000000;
|
||||
border: 0px solid #000000;
|
||||
height: 20px;
|
||||
width: 39px;
|
||||
border-radius: 7px;
|
||||
background: var(--ci_color_primary);
|
||||
cursor: pointer;
|
||||
-webkit-appearance: none;
|
||||
margin-top: -3.5px;
|
||||
-webkit-border-radius: 7px;
|
||||
-moz-border-radius: 7px;
|
||||
-ms-border-radius: 7px;
|
||||
-o-border-radius: 7px;
|
||||
}
|
||||
|
||||
input[type=range]:hover::-webkit-slider-runnable-track {
|
||||
background: var(--ci_color_secondary);
|
||||
}
|
||||
|
||||
input[type=range]::-moz-range-track {
|
||||
width: 100%;
|
||||
height: 13px;
|
||||
cursor: pointer;
|
||||
box-shadow: 0px 0px 0px #000000;
|
||||
background: var(--ci_color_tilebg);
|
||||
border-radius: 25px;
|
||||
border: 0px solid #000101;
|
||||
}
|
||||
|
||||
input[type=range]::-moz-range-thumb {
|
||||
box-shadow: 0px 0px 0px #000000;
|
||||
border: 0px solid #000000;
|
||||
height: 20px;
|
||||
width: 39px;
|
||||
border-radius: 7px;
|
||||
background: var(--ci_color_primary);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=range]::-ms-track {
|
||||
width: 100%;
|
||||
height: 13px;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
input[type=range]::-ms-fill-lower {
|
||||
background: var(--ci_color_secondary);
|
||||
border: 0px solid #000101;
|
||||
border-radius: 50px;
|
||||
box-shadow: 0px 0px 0px #000000;
|
||||
}
|
||||
|
||||
input[type=range]::-ms-fill-upper {
|
||||
background: var(--ci_color_tilebg);
|
||||
border: 0px solid #000101;
|
||||
border-radius: 50px;
|
||||
box-shadow: 0px 0px 0px #000000;
|
||||
}
|
||||
|
||||
input[type=range]::-ms-thumb {
|
||||
margin-top: 1px;
|
||||
box-shadow: 0px 0px 0px #000000;
|
||||
border: 0px solid #000000;
|
||||
height: 20px;
|
||||
width: 39px;
|
||||
border-radius: 7px;
|
||||
background: var(--ci_color_primary);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=range]:focus::-ms-fill-lower {
|
||||
background: var(--ci_color_secondary);
|
||||
}
|
||||
|
||||
input[type=range]:focus::-ms-fill-upper {
|
||||
background: var(--ci_color_tilebg);
|
||||
}
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
import { BrowserRouter as Router, Switch, Route, Link, Redirect } from 'react-router-dom'
|
||||
import { React, useEffect, useState } from 'react'
|
||||
|
||||
import './App.min.css'
|
||||
import './MApp.min.css'
|
||||
import './pages/Train/Quest.min.css'
|
||||
|
||||
|
||||
import Cookies from 'universal-cookie'
|
||||
|
||||
import About from './pages/About/About'
|
||||
import Home from './pages/Home/Home'
|
||||
import Page404 from './pages/Page404/Page404'
|
||||
import RandomQuest from './pages/Train/RandomQuest/RandomQuest'
|
||||
import RandomExam from './pages/Train/RandomExam/RandomExam'
|
||||
import CategoryQuest from './pages/Train/CategoryQuest/CategoryQuest'
|
||||
import CategorySelect from './pages/Train/Home/CategorySelect'
|
||||
|
||||
import { generateUUID, getBrowser } from './main.js'
|
||||
|
||||
const cookies = new Cookies()
|
||||
|
||||
export default function App() {
|
||||
useEffect(() => {
|
||||
try {
|
||||
window.screen.orientation.lock("portrait")
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
}, [])
|
||||
|
||||
let cur_userid = cookies.get('userid')
|
||||
let loggedin = (cur_userid != "" && cur_userid != undefined)
|
||||
|
||||
var agentinfo = getBrowser(navigator.userAgent)
|
||||
var location = window.location
|
||||
|
||||
// console.log(agentinfo.browser)
|
||||
// console.log(agentinfo.agent)
|
||||
// console.log(location.pathname)
|
||||
|
||||
// window.localStorage.removeItem('thwgat-quest-id')
|
||||
var personalid = window.localStorage.getItem('thwgat-quest-id')
|
||||
// console.log(personalid)
|
||||
if (personalid == null) {
|
||||
let newid = generateUUID()
|
||||
window.localStorage.setItem('thwgat-quest-id', newid)
|
||||
personalid = newid
|
||||
}
|
||||
|
||||
|
||||
return (
|
||||
<Router>
|
||||
<Switch>
|
||||
<Route path="/about" component={About} />
|
||||
<Route path="/train/randomquest" component={RandomQuest} />
|
||||
<Route path="/train/randomexam" component={RandomExam} />
|
||||
<Route path="/train/categoryselect" component={CategorySelect} />
|
||||
<Route path="/train/categoryquest" component={CategoryQuest} />
|
||||
<Route path="/train*" component={Page404} />
|
||||
|
||||
<Route path="/" component={Home} />
|
||||
<Route path="/*" component={Page404} />
|
||||
<Route component={Page404} />
|
||||
</Switch>
|
||||
</Router>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
body,html{scroll-behavior:smooth}body{margin:0;overflow-x:hidden;background-color:var(--ci_color_mainbg);color:#000;font-family:Roboto,sans-serif}.mainCon{overflow:hidden;width:100vw}.abig{font-size:22px;font-weight:700;text-transform:uppercase;margin-top:10px}section{width:100vw;min-height:100vh;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;height:-webkit-min-content;height:-moz-min-content;height:min-content;position:relative}section h1{font-family:Roboto,sans-serif;font-weight:700;font-size:52px;text-align:center;color:var(--ci_color_primary)}.tool-tip{display:none;z-index:10;position:absolute;top:114%;border-radius:12px;background-color:var(--ci_color_primary);color:#fff;padding:8px;width:330px;font-size:14px}.tool-tip:before{content:"";width:0;height:0;position:absolute;border-left:10px solid var(--ci_color_primary);border-right:10px solid transparent;border-left:10px solid transparent;border-bottom:10px solid var(--ci_color_primary);left:24px;top:-10px}.tip-parent:hover .tool-tip{display:block}.backToPageBtn{position:absolute;margin-top:20px;left:40px;z-index:1;color:var(--ci_color_secondary);font-size:20px;font-weight:400;text-decoration:none}.sec_more{padding:70px 15%;padding-bottom:10%;min-height:100vh;height:auto}.sec_more h2{width:70%;text-align:center;color:var(--ci_color_primary);font-size:32px}.sec_more p{margin-top:50px;width:70%;font-size:22px;line-height:30px}.sec_more li{margin-top:10px}.sec_more p .longUL{columns:3;-webkit-columns:3;-moz-columns:3}.chb_container{display:block;position:relative;padding-left:35px;text-align:left;margin-bottom:12px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-left:10px;margin-top:8px}.chb_container input{position:absolute;opacity:0;cursor:pointer;height:0;width:0;color:var(--ci_color_secondary)}.chb_container font{margin-top:3px}.checkmark{position:absolute;top:0;left:0;height:25px;width:25px;border-radius:10px;background-color:var(--ci_color_mainbg);border:3px solid var(--ci_color_primary)}.chb_container:hover input~.checkmark{background-color:#ccc}.chb_container input:checked~.checkmark{background-color:var(--ci_color_primary)}.checkmark:after{content:"";position:absolute;display:none}.chb_container input:checked~.checkmark:after{display:block}.chb_container .checkmark:after{left:9px;top:5px;width:5px;height:10px;border:solid #fff;border-width:0 4px 4px 0;transform:rotate(45deg)}.inputdiv{display:flex;flex-direction:column;margin-top:20px;position:relative}.inputdiv input,.inputdiv select,.inputdiv textarea{margin-top:5px;border-radius:15px;width:300px;font-size:15px;padding:10px 20px;background-color:rgba(0,0,0,0);color:var(--ci_color_primary);border:3px solid var(--ci_color_primary);box-sizing:content-box;-ms-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}.inputdiv input:focus,.inputdiv select:focus,.inputdiv textarea:focus{outline:0}.inputdiv input:invalid,.inputdiv select:invalid,.inputdiv textarea:invalid{border-color:var(--ci_color_error)!important}.inputdiv b{margin-left:5px}input[type=range]{height:26px;-webkit-appearance:none;border:0}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:13px;cursor:pointer;box-shadow:0 0 0 #000;background:var(--ci_color_tilebg);border-radius:25px;border:0 solid #000101;transition:.1s all;-webkit-transition:.1s all;-moz-transition:.1s all;-ms-transition:.1s all;-o-transition:.1s all}input[type=range]::-webkit-slider-thumb{box-shadow:0 0 0 #000;border:0 solid #000;height:20px;width:39px;border-radius:7px;background:var(--ci_color_primary);cursor:pointer;-webkit-appearance:none;margin-top:-3.5px;-webkit-border-radius:7px;-moz-border-radius:7px;-ms-border-radius:7px;-o-border-radius:7px}input[type=range]:hover::-webkit-slider-runnable-track{background:var(--ci_color_secondary)}input[type=range]::-moz-range-track{width:100%;height:13px;cursor:pointer;box-shadow:0 0 0 #000;background:var(--ci_color_tilebg);border-radius:25px;border:0 solid #000101}input[type=range]::-moz-range-thumb{box-shadow:0 0 0 #000;border:0 solid #000;height:20px;width:39px;border-radius:7px;background:var(--ci_color_primary);cursor:pointer}input[type=range]::-ms-track{width:100%;height:13px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:var(--ci_color_secondary);border:0 solid #000101;border-radius:50px;box-shadow:0 0 0 #000}input[type=range]::-ms-fill-upper{background:var(--ci_color_tilebg);border:0 solid #000101;border-radius:50px;box-shadow:0 0 0 #000}input[type=range]::-ms-thumb{margin-top:1px;box-shadow:0 0 0 #000;border:0 solid #000;height:20px;width:39px;border-radius:7px;background:var(--ci_color_primary);cursor:pointer}input[type=range]:focus::-ms-fill-lower{background:var(--ci_color_secondary)}input[type=range]:focus::-ms-fill-upper{background:var(--ci_color_tilebg)}
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
@media only screen and (max-width: 1380px) {
|
||||
* {
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
section h1 {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.backToPageBtn {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
|
||||
.sec_more {
|
||||
padding: 70px 10%;
|
||||
padding-bottom: 10%;
|
||||
min-height: 100vh;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.sec_more h2 {
|
||||
width: 80%;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.sec_more h3 {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.sec_more p {
|
||||
width: 80%;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.sec_more ul {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.chb_container {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.chb_container font {
|
||||
margin-top: 3px;
|
||||
font-size: 14px
|
||||
}
|
||||
|
||||
.inputdiv {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.inputdiv input {
|
||||
margin-top: 5px;
|
||||
border-radius: 15px;
|
||||
width: 80%;
|
||||
font-size: 15px;
|
||||
padding: 10px 20px;
|
||||
background-color: rgba(0, 0, 0, 0.0);
|
||||
color: var(--ci_color_primary);
|
||||
border: 3px solid var(--ci_color_primary);
|
||||
}
|
||||
|
||||
.inputdiv input:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.inputdiv input:invalid {
|
||||
border-color: var(--ci_color_error) !important;
|
||||
}
|
||||
|
||||
.inputdiv b {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (min-device-width: 480px) and (max-device-width: 640px) and (orientation: landscape) {}
|
||||
|
|
@ -0,0 +1 @@
|
|||
@media only screen and (max-width:1380px){*{-webkit-tap-highlight-color:transparent}section h1{font-size:32px}.backToPageBtn{margin-top:30px}.sec_more{padding:70px 10%;padding-bottom:10%;min-height:100vh;height:auto}.sec_more h2{width:80%;font-size:28px}.sec_more h3{width:80%}.sec_more p{width:80%;font-size:16px;line-height:24px}.sec_more ul{width:70%}.chb_container{width:80%}.chb_container font{margin-top:3px;font-size:14px}.inputdiv{display:flex;flex-direction:column;margin-top:20px;position:relative}.inputdiv input{margin-top:5px;border-radius:15px;width:80%;font-size:15px;padding:10px 20px;background-color:rgba(0,0,0,0);color:var(--ci_color_primary);border:3px solid var(--ci_color_primary)}.inputdiv input:focus{outline:0}.inputdiv input:invalid{border-color:var(--ci_color_error)!important}.inputdiv b{margin-left:5px}}
|
||||
|
|
@ -0,0 +1,311 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 854.7 609.8" style="enable-background:new 0 0 854.7 609.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#D4D4D4;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
.st2{fill:#1C54FF;}
|
||||
.st3{fill:#F91E77;}
|
||||
.st4{fill:#2051FF;}
|
||||
.st5{fill:#D6D6D6;}
|
||||
.st6{fill:#DDDDDD;}
|
||||
.st7{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<rect x="17" y="517.7" width="804.7" height="7.9"/>
|
||||
<g>
|
||||
<path class="st0" d="M522.7,227.3c0,0-10.8-20.8,2-38.8c12.8-18,30.4-38.2,24-52.1c-6.4-13.9-3.6-29.9,22.4-43.5
|
||||
c33-17.3,99.2-16,100.4,34c1.2,50-26,45.2-20.4,54.8c5.6,9.6,26.9,44.8,20.4,65.2S522.7,227.3,522.7,227.3z"/>
|
||||
<path d="M652.5,254.7c-16.3,0-39.2-4.1-58.1-8c-36.1-7.4-71.8-17.4-72.1-17.5c-0.5-0.1-1-0.5-1.2-1c-0.5-0.9-11.2-22.1,2.1-40.9
|
||||
c1.8-2.5,3.8-5.2,5.6-7.7c11.4-15.5,23.2-31.5,18.2-42.4c-5.7-12.5-6.4-30.6,23.3-46.1c22-11.5,58.7-15.2,82.1-1.4
|
||||
c13.5,7.9,20.8,20.8,21.2,37.1c0.8,33.7-11.3,43.5-17.7,48.8c-3.8,3.1-3.9,3.4-2.9,5.1l0.6,1.1c6.5,11.2,26.4,45.1,20,65.7
|
||||
C671.8,252.8,663.7,254.7,652.5,254.7z M524.2,225.7c5.7,1.6,38.2,10.5,71,17.2c21,4.3,38,6.9,50.6,7.6c20,1.2,23.4-2.5,23.9-4.2
|
||||
c5.9-18.8-13.3-51.7-19.6-62.4l-0.7-1.1c-2.8-4.8,0.6-7.5,3.9-10.2c6.4-5.2,17-13.8,16.3-45.6c-0.4-15.1-6.8-26.5-19.2-33.8
|
||||
c-22.2-13.1-57.2-9.5-78.3,1.5c-21.6,11.3-28.8,25-21.5,40.9c6,13-6.5,30-18.6,46.4c-1.9,2.5-3.8,5.2-5.6,7.7
|
||||
C515.8,204.6,522.5,221.9,524.2,225.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M595.3,108.2c0,0-1.4,46.4,32.6,50.4c0,0,10-6.8,15.6,1.6c5.6,8.4-1.4,23.2-24.1,19.6c0,0-6.7,20.9-5.5,32.2
|
||||
c1.2,11.4,16.4,8.8,25.8,13.3s-9.8,48.9-9.8,48.9l-98-45.2l7-15.7l18.4-0.7c0,0,30.6,11.6,27.4-24.4c0,0-30.4,5.4-25.6-51.7
|
||||
C559.1,136.5,565.9,111.8,595.3,108.2z"/>
|
||||
<path d="M629.9,276.1c-0.3,0-0.6-0.1-0.8-0.2l-98-45.2c-1-0.5-1.4-1.6-1-2.6l7-15.7c0.3-0.7,1-1.2,1.7-1.2l18.4-0.7
|
||||
c0.3,0,0.5,0,0.8,0.1c0.1,0,11.8,4.4,19-1.1c4.4-3.4,6.4-9.8,5.9-19.3c-3.2,0.1-9.3-0.7-14.9-5.8c-9.2-8.4-12.8-24.6-10.9-48.2
|
||||
c0-0.1,0-0.2,0.1-0.4c0.1-0.3,1.9-6.7,7.5-13.5c5.1-6.3,14.6-14.3,30.4-16.2c0.6-0.1,1.2,0.1,1.6,0.5c0.4,0.4,0.7,1,0.7,1.5
|
||||
c0,0.4-0.9,44,30.1,48.3c1.7-1,6.1-3.2,10.7-2.3c2.9,0.6,5.2,2.2,7,4.9c2.9,4.3,2.9,10.1-0.1,14.7c-2,3.2-8.4,10.2-24.3,8.2
|
||||
c-1.5,5-5.9,20.8-4.9,29.8c0.6,5.9,5.6,7.1,13.7,8.7c3.7,0.7,7.6,1.5,10.9,3c5.1,2.4,5,11.5-0.3,28.5c-3.6,11.6-8.4,22.8-8.5,23
|
||||
c-0.2,0.5-0.6,0.9-1.1,1.1C630.4,276.1,630.2,276.1,629.9,276.1z M534.6,228l94.3,43.5c10.4-24.5,13.6-42.7,10-44.4
|
||||
c-2.9-1.4-6.5-2-9.9-2.7c-7.5-1.4-16-3.1-17-12.2c-1.2-11.7,5.3-32.2,5.6-33c0.3-0.9,1.2-1.5,2.2-1.4c14.8,2.3,20.3-3.5,22-6.2
|
||||
c2.1-3.3,2.2-7.3,0.1-10.3c-1.2-1.8-2.6-2.8-4.4-3.2c-4-0.8-8.3,2.1-8.4,2.1c-0.4,0.3-0.9,0.4-1.4,0.3c-30.8-3.6-34-40.3-34.3-50.1
|
||||
c-24.9,4.1-31.6,24.1-32.2,26.4c-1.8,21.8,1.5,37.3,9.5,44.7c6.4,5.9,13.5,4.7,13.8,4.7c0.6-0.1,1.1,0,1.6,0.4
|
||||
c0.4,0.3,0.7,0.8,0.8,1.4c1.1,12-1.4,20.3-7.3,24.8c-8.2,6.2-20.1,2.6-22.4,1.8l-16.7,0.7L534.6,228z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M575.8,159.3c-0.7,0-1.4-0.4-1.8-1.1c-0.5-1-0.1-2.2,0.8-2.7c0.1,0,8.5-4.6,11.4-13c2.5-7.3-11.1-13.3-11.3-13.4
|
||||
c-1-0.4-1.5-1.6-1.1-2.6c0.4-1,1.6-1.5,2.6-1.1c0.7,0.3,17.3,7.4,13.5,18.4c-3.4,9.9-13,15-13.4,15.2
|
||||
C576.5,159.2,576.1,159.3,575.8,159.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M580.3,182.1c-1.1,0-2-0.9-2-2s0.9-2,2-2c3.2,0,6.8-2.6,9.6-5.3c-10.1,1.2-17.6-4.4-18-4.7c-0.9-0.7-1-1.9-0.4-2.8
|
||||
s1.9-1,2.8-0.4l0,0c0.4,0.3,9.5,7,20.5,2.4c0.8-0.3,1.8-0.1,2.3,0.6c0.6,0.7,0.6,1.7,0.1,2.4C596.9,170.9,588.9,182.1,580.3,182.1z
|
||||
"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle cx="599.7" cy="155.8" r="4.4"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle cx="576.1" cy="141.5" r="3.9"/>
|
||||
</g>
|
||||
<g id="Layer_2">
|
||||
<g>
|
||||
<path class="st1" d="M474.4,362.4c0,0,3.7,43.6,34.6,50.5s42.3,7.4,42.3,7.4l-29.6-54.9L474.4,362.4z"/>
|
||||
<path d="M551.3,422.3C551.3,422.3,551.3,422.3,551.3,422.3c-0.6,0-12-0.6-42.7-7.5c-13.3-3-23.8-13-30.3-29
|
||||
c-4.8-11.9-5.8-22.8-5.9-23.2c0-0.6,0.2-1.2,0.6-1.6s1-0.6,1.6-0.6l47.3,3c0.7,0,1.3,0.4,1.6,1l29.6,54.9c0.3,0.6,0.3,1.4-0.1,2
|
||||
C552.7,422,552,422.3,551.3,422.3z M476.7,364.5c1.3,8.9,7.7,40.8,32.8,46.4c20.9,4.7,32.9,6.4,38.3,7l-27.3-50.7L476.7,364.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M713.3,564.9H477.5c-0.2-8.1-0.1-15.9,0.2-23.5c4.5-101.3,54.7-157.2,54.7-157.2L492,288.7
|
||||
c4.8-67.4,40.5-76.3,57-76.7c1.4,0,2.7,0,3.8,0c2.8,0.1,4.5,0.5,4.5,0.5c2.6,17.6,9.8,30.1,39.5,34.4c29.6,4.3,42.9-21.6,42.9-21.6
|
||||
c70,9.1,65.8,120.9,65.8,120.9c-21.8-8.8-46.6,8.3-46.6,8.3l-5.7-25.9c-4.7,18.1-17.6,24.4-17.6,24.4
|
||||
C681.1,363.3,713.3,564.9,713.3,564.9z"/>
|
||||
<path d="M713.3,566.9H477.5c-1.1,0-2-0.9-2-1.9c-0.2-7.9-0.1-15.9,0.2-23.7c2.3-52.7,17.2-92.9,29.3-117.4
|
||||
c11.3-23,22.1-36.5,25.1-40.1l-39.9-94.3c-0.1-0.3-0.2-0.6-0.2-0.9c2.1-29.8,10.4-51.6,24.7-64.8c11.9-10.9,25.1-13.5,34.2-13.8
|
||||
c1.3,0,2.6,0,4,0c2.9,0.1,4.7,0.5,4.8,0.5c0.8,0.2,1.5,0.8,1.6,1.7c2.5,17.1,9.7,28.6,37.8,32.7c27.9,4.1,40.7-20.3,40.8-20.6
|
||||
c0.4-0.8,1.2-1.2,2-1.1c29.5,3.9,50.5,26.5,60.8,65.4c7.7,29,6.7,57.3,6.7,57.6c0,0.7-0.4,1.2-0.9,1.6s-1.2,0.4-1.8,0.2
|
||||
c-10.6-4.3-22.2-1.9-30,0.8c-8.6,3-14.7,7.2-14.8,7.2c-0.5,0.4-1.2,0.5-1.9,0.2c-0.6-0.2-1.1-0.8-1.2-1.4l-4.2-18.9
|
||||
c-3.7,8.6-9.1,13.7-12.7,16.4c18.3,8.4,36.2,45.3,53.3,109.9c13.6,51.2,21.7,101.8,21.8,102.3c0.1,0.6-0.1,1.2-0.5,1.6
|
||||
S713.9,566.9,713.3,566.9z M479.5,562.9h231.5c-1.8-10.5-9.5-54.8-21.4-99.6c-22.4-84.5-42-105.6-54.5-108.4
|
||||
c-0.8-0.2-1.4-0.9-1.5-1.7c-0.1-0.8,0.4-1.7,1.1-2c0.1-0.1,12.2-6.1,16.5-23.1c0.2-0.9,1-1.5,2-1.5c0.9,0,1.7,0.7,1.9,1.6l5.1,23.1
|
||||
c6.6-3.9,25.4-13.5,43.3-7.9c0-7.7-0.5-30.5-6.7-53.8c-9.9-37.1-28.7-58-56.1-62.2c-3,4.8-15,22-37.5,22c-2.2,0-4.4-0.2-6.8-0.5
|
||||
c-29.6-4.3-38-17-40.9-34.6c-0.7-0.1-1.7-0.2-2.8-0.2c-1.3-0.1-2.5-0.1-3.7,0c-8.4,0.2-20.7,2.6-31.6,12.7
|
||||
c-13.5,12.4-21.3,33.2-23.4,61.7l40.2,95c0.3,0.7,0.2,1.5-0.4,2.1c-0.5,0.6-49.8,56.7-54.2,156
|
||||
C479.4,548.5,479.3,555.7,479.5,562.9z"/>
|
||||
</g>
|
||||
<g id="Layer_4">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M512.9,296.5C512.9,296.5,512.9,296.5,512.9,296.5c-1.1,0-2-0.9-2-2c0.1-21.9,5.5-37.4,16.1-46.3
|
||||
c8.1-6.8,16.1-6.9,16.5-6.9c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2c-1.2,0-28.4,0.8-28.5,49.2C514.9,295.6,514,296.5,512.9,296.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path class="st1" d="M504,292.3c12.8,62.3,41,93,41,93s-51.6,68.5-65.3,157.1c4.5-101.3,54.7-157.2,54.7-157.2L494,289.7
|
||||
c4.8-67.4,40.5-76.3,57-76.7c1.4,0,2.7,1.3,3.8,1.3C526.1,216.2,494.6,246.4,504,292.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M611.6,359c-0.7,0.4-1.6,0.2-2.1-0.5c-2.1-2.9-7.3-11.1-6.9-19.7c0.5-10.8-2.6-20.7-5.8-24.1
|
||||
c-3.2-3.4-8.3-9.9-4.3-10.8c3.9-0.9,11.4,2.5,15.6,8.3c2.9,3.9,6.7,7.7,8.9,9.6c0.8,0.7,2.1,0.5,2.6-0.5l6.9-13
|
||||
c0.3-0.6,0.2-1.3-0.2-1.8l-6.7-11c-0.5-0.6-2.6-5.3-2.1-5.9l2.9-2.8c0.6-0.8,3.5,1.6,4.2,2.3v0c1.4,1.3,3.6-0.4,2.6-2l-2.6-4.4
|
||||
c-0.4-0.6-2.3-5.5-1.8-6.1l2.4-3.5c0.7-0.9,5.5,2.2,6.1,3.1l16.5,26.1c0.1,0.1,0.2,0.2,0.3,0.3c0.7,0.7,3.7,4-0.1,10
|
||||
c-4.1,6.3-26.2,38.6-28.7,42.2c-0.1,0.2-0.3,0.4-0.6,0.5L611.6,359z"/>
|
||||
<path d="M610.8,361.2c-1.1,0-2.3-0.5-3-1.5c-2.3-3.3-7.7-11.8-7.3-21c0.4-10.1-2.4-19.6-5.2-22.7c-4.8-5.2-6.9-9.1-6.1-11.6
|
||||
c0.2-0.7,0.9-2,2.8-2.5c5.1-1.2,13.3,3,17.7,9c2.6,3.6,6.2,7.1,8.2,9l6.6-12.5c0,0,0,0,0,0l-6.7-11l0,0c-0.7-1.1-3.5-6.1-2-8.1
|
||||
c0.1-0.1,0.1-0.2,0.2-0.3l2.9-2.7c0.4-0.5,1-0.7,1.6-0.8c1.2-0.1,2.7,0.8,3.9,1.7l-1.5-2.6c0-0.1-3.1-6.1-1.8-8.2l0,0l2.4-3.5
|
||||
c0,0,0.1-0.1,0.1-0.1c0.3-0.4,1-1,2.2-0.9c2.2,0.1,6.3,2.9,7.2,4.2l16.5,26.1c0.8,0.7,4.8,5.2,0.1,12.5
|
||||
c-4.2,6.5-27.7,40.8-28.7,42.3c-0.3,0.5-0.8,0.9-1.3,1.1l-6.9,3.7C612,361,611.4,361.2,610.8,361.2z M610.7,357.2
|
||||
C610.7,357.2,610.7,357.2,610.7,357.2L610.7,357.2L610.7,357.2z M593,305.7c0.2,1.1,1.8,3.8,5.2,7.5c3.4,3.7,6.8,13.9,6.3,25.6
|
||||
c-0.3,7.7,4.2,15.2,6.4,18.2l6.5-3.5c1.6-2.3,24.5-35.7,28.6-42.1c2.9-4.6,1.1-6.9,0.4-7.5c-0.2-0.2-0.4-0.4-0.6-0.7l-16.4-26
|
||||
c-0.5-0.5-2.3-1.7-3.4-2.2l-1.4,2.1c0.3,1.1,1.3,3.9,1.6,4.5l2.6,4.4c0.9,1.6,0.6,3.6-0.9,4.7c-1.5,1.1-3.5,1-4.8-0.2
|
||||
c-0.5-0.5-1.5-1.3-2.1-1.7l-1.6,1.5c0.3,1.2,1.3,3.4,1.6,3.9c0.1,0.1,0.1,0.1,0.1,0.2l6.6,10.9c0.8,1.1,1,2.6,0.3,3.9l-6.9,13.1
|
||||
c-0.5,1-1.5,1.7-2.6,1.9c-1.1,0.2-2.2-0.1-3.1-0.9c-2.1-1.9-6.1-5.8-9.1-9.9C602.5,307.9,595.9,305.2,593,305.7z M622,287.9
|
||||
C622,287.9,622,287.9,622,287.9C622,287.9,622,287.9,622,287.9z M624.2,277.7C624.2,277.7,624.2,277.7,624.2,277.7
|
||||
C624.2,277.7,624.2,277.7,624.2,277.7z M624.2,277.7C624.2,277.7,624.2,277.7,624.2,277.7C624.2,277.7,624.2,277.7,624.2,277.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M620.3,308.2c0,0,13.1-2.2,18.7,0c5.6,2.2,7.5,29.3,0,42.5c-7.5,13.2,28.4,39,29.2,41.3s-9.6-29.7-9.3-37.5
|
||||
s28.3-11.3,28.3-11.3l18.4-2.1c0,0,12,63.2,9.7,77.8c-2.2,14.6-18,39.3-40,31c-22.1-8.2-65.1-75.6-65.1-75.6s-4.1-16.2,0-22.1
|
||||
c4.3-6.1,20-26,22.1-28.8c0,0,5.3-4.9,1.3-7C629.5,314.6,612.9,314,620.3,308.2z"/>
|
||||
<path d="M684,453.6c-3.1,0-6.3-0.6-9.4-1.8c-22.4-8.4-64.3-73.6-66.1-76.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.4-1.7-4.2-17.2,0.3-23.7
|
||||
c2.9-4.1,10.8-14.3,16.6-21.7c2.7-3.5,4.9-6.3,5.5-7.2c0.1-0.1,0.2-0.2,0.2-0.3c1.1-1,2.2-2.7,2.1-3.4c0-0.1-0.2-0.2-0.4-0.3
|
||||
c-0.9-0.5-3.1-0.9-5.2-1.4c-5.2-1.1-10.2-2.1-10.9-5.4c-0.4-1.7,0.5-3.4,2.6-5c0.3-0.2,0.6-0.3,0.9-0.4c1.4-0.2,13.8-2.3,19.8,0.1
|
||||
c1.7,0.7,3.1,2.5,4.1,5.5c3,8.7,3.3,28.5-3.1,39.9c-4.9,8.7,14.3,25.8,23.3,33.7c-3.4-11.3-7.4-25.8-7.2-30.9
|
||||
c0.4-8.8,23.1-12.3,30.1-13.2l18.4-2.1c1-0.1,2,0.6,2.2,1.6c0.5,2.6,12,63.7,9.7,78.5c-1.6,10.3-9,24.1-20.1,30.7
|
||||
C692.9,452.3,688.5,453.6,684,453.6z M612.1,373.6c3,4.7,43.4,66.8,63.9,74.5c6.6,2.5,13.1,1.9,19.1-1.6
|
||||
c9.9-5.8,16.8-18.7,18.2-27.8c2-12.7-7.5-64.8-9.4-75.3l-16.5,1.9c-12.7,1.6-26.4,5.7-26.6,9.4c-0.2,4.1,3.2,17.7,9.1,36.3
|
||||
c0,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0,0.1c0,0,0-0.1,0-0.1c0.4,1.4-0.1,2.4-1.2,2.7c-0.7,0.2-1.9,0.1-2.5-1.1
|
||||
c-0.5-0.6-2.4-2.3-4.3-3.9c-11-9.6-31.4-27.5-24.8-39.2c5.8-10.3,5.5-28.8,2.8-36.6c-0.9-2.7-1.8-3-1.8-3.1c-4-1.6-13.2-0.6-17.1,0
|
||||
c-0.3,0.3-0.5,0.5-0.6,0.7c1.1,0.9,5.5,1.9,7.8,2.3c2.6,0.5,4.8,1,6.2,1.7c1.9,0.9,2.4,2.3,2.6,3.3c0.4,3-2.4,5.9-3.2,6.7
|
||||
c-0.8,1.1-2.9,3.7-5.5,7.1c-5.4,7-13.6,17.5-16.4,21.5C609.3,357.2,610.6,367.6,612.1,373.6z M666.4,392.9L666.4,392.9L666.4,392.9
|
||||
z M666.3,392.6C666.3,392.6,666.3,392.6,666.3,392.6C666.3,392.6,666.3,392.6,666.3,392.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M239.8,233.1c0,0-32.4,13.1-37.7,18.4c-8.4,8.4-13,34.6-17.5,79S167,437.8,171,447.7s14.4,38.2,55.2,14.4
|
||||
c0,0-6.3,20.7-12.1,33.7c-5.8,13-15.3,67.8-15.3,71.9H436c0,0-28.7-123.9-40.9-145.5c-12.1-21.6-22-27.8-17.1-53
|
||||
c0,0,38.6,68.7,67.8,57.9c29.2-10.8,31.4-39.1,21.6-64.7c-9.9-25.6-53.9-77.7-55.2-83.5s-9.4-60.3-51.2-56.4
|
||||
C319.2,226.3,239.8,233.1,239.8,233.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M211.9,320.2l-1.6-9.2c0,0,0.7-7.8,8.3-10.5c7.6-2.7,92.1-15.7,92.1-15.7s18.4-3.6,22.9,13
|
||||
c4.5,16.6,22.5,142.4,22.5,142.4s5.4,19.3-21.1,20.7C308.5,462.1,211.9,320.2,211.9,320.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M215.1,309c0,0-10.8,1.3-10.8,15.7S229,472,229,472s1.3,8.5,12.6,6.7c11.2-1.8,97.4-15.3,97.4-15.3
|
||||
s9-1.3,9-18.4s-20.2-140.6-20.2-140.6s-2.2-14.4-13.5-13S215.1,309,215.1,309z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M188.2,415.6c0,0,39.4-24.4,58.3-28.5s0,0,0,0s-10.2,43.7,15.3,48.1l0,0c0,0-29.3,23.6-35.5,26.9S188.2,415.6,188.2,415.6z
|
||||
"/>
|
||||
<path d="M225.6,464.3c-2.9,0-8.3-3.8-22.3-23.1c-8.7-12-16.7-24.5-16.8-24.6c-0.3-0.5-0.4-1-0.3-1.5c0.1-0.5,0.4-1,0.9-1.3
|
||||
c1.6-1,40-24.6,58.9-28.7l8.4-1.8c1.1-0.2,2.1,0.5,2.4,1.5c0,0.1,0,0.3,0,0.4c0,0.9-0.6,1.8-1.6,2l-7.1,1.5c-1,5.3-4.5,26.1,3,37.4
|
||||
c2.6,3.9,6.2,6.2,10.9,7c0.8,0.1,1.4,0.7,1.6,1.5c0.2,0.8-0.1,1.6-0.7,2.1c-1.2,1-29.5,23.8-35.8,27.1
|
||||
C226.8,464.1,226.2,464.3,225.6,464.3z M191,416.2c13.7,21.2,30.3,43.4,34.5,44c5.1-2.8,24.4-18.1,31.9-24.2
|
||||
c-3.9-1.5-7.1-4-9.6-7.7c-7.7-11.6-5.3-31-4-38.6C227.1,394.7,198.3,411.8,191,416.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M246.5,387.1c0,0,28.7-3.6,31.5-11.7s5.5-21.1,12.8-26.9s10.4-28.3,10.4-28.3s9.2,1.3,6.5,18.9
|
||||
s-1.8,8.1-1.8,8.1s36-15.7,40.6-8.1s5,32.3-4.1,40.4c-9.1,8.1-35.3,18.4-41.2,20.2S262,435.1,262,435.1S238.3,432.9,246.5,387.1z"
|
||||
/>
|
||||
<path d="M262,437.2c-0.1,0-0.1,0-0.2,0c-0.3,0-7-0.7-12.4-7.9c-6.7-8.8-8.4-23.2-4.9-42.5c0.2-0.9,0.9-1.5,1.7-1.6
|
||||
c11.4-1.4,28.2-5.6,29.8-10.3c0.5-1.4,1-3.1,1.5-4.8c2.4-8,5.5-17.9,11.9-23.1c5.5-4.4,8.8-21,9.7-27c0.1-0.5,0.4-1,0.8-1.3
|
||||
c0.4-0.3,1-0.5,1.5-0.4c0.3,0,3.3,0.6,5.8,3.9c2.8,3.8,3.6,9.6,2.4,17.3c-0.2,1.6-0.5,3-0.7,4.3c11.5-4.7,34.7-13.1,39.2-5.6
|
||||
c4.8,8,5.7,33.9-4.5,43c-9.7,8.6-37.1,19.1-41.9,20.6c-3.9,1.2-25.6,22.1-38.3,35C263.1,436.9,262.6,437.2,262,437.2z M248.2,388.9
|
||||
c-3.6,21.6,0.3,32.5,4.3,37.8c3.3,4.4,7.1,5.8,8.8,6.2c7-7.1,33.4-33.4,39.2-35.2c5.7-1.8,31.7-12,40.4-19.8c3.6-3.2,6-10.1,6.5-19
|
||||
c0.4-7.7-0.7-15.4-2.8-18.9c-2.1-3.5-20.3,1.3-36.6,8.2c-0.4,2-0.8,3.6-2.7,3.3c-2.1-0.3-1.9-2.2-1.7-4.7c0.1-0.5,0.3-1,0.7-1.4
|
||||
c0.3-1.5,0.6-3.7,1.1-6.8c1.6-10-1-14-2.9-15.6c-1.1,6.5-4.3,21.8-10.7,26.9c-5.5,4.4-8.3,13.7-10.6,21.1c-0.5,1.7-1,3.4-1.5,4.9
|
||||
C277.1,384.2,255.5,387.9,248.2,388.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M226.3,242.6l29.2-32.5l11.4-102.8l62.3-24.9l40.2,20.9v17.8c0,0,5.8,65.7-42.7,63.5c0,0-2.8,30.4,0,33.8
|
||||
s46.3,6.5,46.3,6.5s-12,38.3-47.3,42.6C290.5,271.8,236.7,262.6,226.3,242.6z"/>
|
||||
<path d="M307.4,270.5c-13.6,0-28-1.5-41.1-4.4c-12.7-2.8-34.9-9.5-41.7-22.6c-0.4-0.7-0.3-1.6,0.3-2.3l28.7-32.1L264.8,107
|
||||
c0.1-0.7,0.6-1.4,1.2-1.6l62.3-24.9c0.5-0.2,1.1-0.2,1.7,0.1l40.2,20.9c0.7,0.3,1.1,1,1.1,1.8V121c0.2,2.4,2.7,36.4-14.7,54.6
|
||||
c-7.1,7.5-16.6,11.2-28.1,11.1c-1.1,13.2-1.5,28-0.3,30.4c2.9,1.8,25,4.4,45,5.8c0.6,0,1.2,0.4,1.5,0.9c0.3,0.5,0.4,1.1,0.3,1.7
|
||||
c-0.1,0.4-12.8,39.6-48.9,44C320.2,270.2,313.9,270.5,307.4,270.5z M228.7,242.9c5.1,8,18.9,15,38.4,19.3
|
||||
c18.9,4.2,40.8,5.4,58.4,3.3c28.5-3.5,41.4-30.6,44.7-38.8c-3.9-0.3-11.7-0.9-19.6-1.8c-23.3-2.5-24.8-4.3-25.5-5.2
|
||||
c-3-3.6-1.3-25.8-0.4-35.2c0.1-1.1,1-1.9,2.1-1.8c11.2,0.5,20.3-2.8,27-9.8c16.4-17.2,13.6-51.3,13.6-51.6c0-0.1,0-0.1,0-0.2v-16.6
|
||||
L329,84.6l-60.4,24.1l-11.2,101.6c0,0.4-0.2,0.8-0.5,1.1L228.7,242.9z M328.1,217"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M381.6,128.2c0,0-1.2-0.6-3.2-1.6c-8.9-4.7-33.3-19.1-36.4-35.6l-1.4,25c0,0-42.4-9.4-49,25.5
|
||||
c0,0-12.1-17-19.5-7.8c-7.4,9.2-2.2,18.7,1.8,21.2c4,2.5,18.4,3.6,18.4,3.6s1.8,48,0.3,52.3c-1.5,4.3-17.2,23.4-82.3,36.2
|
||||
c0,0,44.9-48,44.9-84.3c0-36.3-12.3-94.6,61.1-104.4C383.8,49.3,381.6,128.2,381.6,128.2z"/>
|
||||
<path d="M210.3,248.9c-0.7,0-1.4-0.4-1.7-1c-0.4-0.8-0.3-1.7,0.3-2.3c0.4-0.5,44.4-47.8,44.4-82.9c0-4.3-0.2-9-0.4-13.9
|
||||
c-1.3-35.3-3.2-83.7,63.2-92.5c18.8-2.5,34.2,1.5,45.6,11.8c12,10.8,17.3,26.6,19.6,38c2.5,12.2,2.3,21.8,2.3,22.2
|
||||
c0,0.7-0.4,1.3-1,1.6c-0.6,0.4-1.3,0.4-1.9,0.1c-0.1,0-1.3-0.6-3.3-1.7c-8.4-4.5-26.2-15-34-28.2l-0.9,15.9c0,0.6-0.3,1.1-0.8,1.5
|
||||
c-0.5,0.4-1.1,0.5-1.6,0.4c-0.2,0-20.8-4.4-34.6,4.7c-6.3,4.2-10.4,10.6-12,19.2c-0.1,0.8-0.8,1.4-1.5,1.6
|
||||
c-0.8,0.2-1.6-0.1-2.1-0.8c-1.9-2.6-7.8-9.6-12.5-9.7c-1.4,0-2.6,0.6-3.8,2c-3.4,4.2-3.5,8.2-3.1,10.7c0.6,3.5,2.7,6.4,4.4,7.5
|
||||
c2.6,1.6,12.1,2.9,17.5,3.3c1,0.1,1.8,0.9,1.8,1.9c0.3,8.1,1.8,48.6,0.2,53.1c-1.2,3.3-6.7,9.4-18.2,16
|
||||
c-15.5,8.8-37.6,16-65.5,21.5C210.6,248.9,210.5,248.9,210.3,248.9z M326.6,59.6c-3.2,0-6.5,0.2-10,0.7
|
||||
c-62.8,8.3-61.1,52.7-59.7,88.4c0.2,4.9,0.4,9.6,0.4,14c0,15.5-7.7,34.6-22.8,56.9c-7.1,10.5-14.3,19.2-18.6,24.2
|
||||
c24.8-5.3,44.4-12,58.5-19.9c11.8-6.7,15.9-12.2,16.4-13.8c0.9-2.6,0.5-27.3-0.4-49.8c-4.2-0.4-14-1.5-17.5-3.7
|
||||
c-2.5-1.5-5.4-5.3-6.3-10.2c-0.6-3.4-0.4-8.6,3.9-13.9c1.9-2.4,4.3-3.5,7-3.5c5.1,0.1,10.1,4.8,13.1,8.1
|
||||
c2.3-7.7,6.5-13.6,12.8-17.7c12.6-8.3,29.3-6.6,35.4-5.7l1.3-22.7c0.1-1,0.9-1.8,1.9-1.9c1-0.1,1.9,0.6,2.1,1.6
|
||||
c3,15.9,27.8,30.2,35.4,34.2c0.1,0,0.1,0.1,0.2,0.1c-0.3-9.5-2.9-38-20.6-53.9C350.5,63.4,339.6,59.6,326.6,59.6z"/>
|
||||
</g>
|
||||
<g id="Layer_5">
|
||||
<g>
|
||||
<path class="st1" d="M381.6,125.3c0,0-1.2-0.5-3.2-1.5c-1.4-17.2-7-58.3-62.1-63.2C383.8,52.3,381.6,125.3,381.6,125.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M412.6,344.9c0,0,6.3-27.8,5.8-50.7c-0.4-22.9,1.8-34.3,0-36.8s-8.2-12.1,0.7-26.3c8.8-14.2,0-33,0-33
|
||||
s6.3-1.7,10.9,5.9c4.6,7.5,5,23.8,5,23.8l56.9-29.8c0,0,17.6-1.1,6.3,12.3c-11.3,13.4-17.6,19.2-17.6,19.2s2.8,5.4-8,13.4
|
||||
s-24.6,9.2-25.5,18.4c-0.8,9.2,10.1,104.1,10.1,104.1S421.5,368.9,412.6,344.9z"/>
|
||||
<path d="M452.1,367.4c-3.6,0-8.7-0.3-14.2-1.4c-13.9-2.9-23.3-9.9-27.1-20.4c-0.1-0.4-0.2-0.8-0.1-1.1c0.1-0.3,6.2-27.9,5.8-50.3
|
||||
c-0.2-10.9,0.2-19.2,0.5-25.2c0.2-4.9,0.5-9.6-0.1-10.5c-5.8-8.3-5.6-18.5,0.6-28.5c8.2-13.1,0-30.9-0.1-31.1
|
||||
c-0.3-0.5-0.3-1.2,0-1.7c0.3-0.5,0.7-0.9,1.3-1.1c0.3-0.1,7.8-2,13.2,6.7c3.6,5.9,4.8,16.4,5.1,21.7l54.1-28.4
|
||||
c0.2-0.1,0.5-0.2,0.8-0.2c0.9-0.1,9.2-0.4,11.6,4.3c1.5,2.9,0.3,6.6-3.7,11.3c-9,10.6-14.7,16.5-16.8,18.5
|
||||
c0.4,2.5-0.1,7.8-9.1,14.4c-4.1,3-8.7,5.1-12.7,7c-7.2,3.3-11.6,5.6-12,10c-0.6,7.1,6.3,70.9,10.1,103.7c0.1,0.5-0.1,1.1-0.4,1.5
|
||||
c-0.3,0.4-0.8,0.7-1.4,0.7C457.4,367.2,455.3,367.4,452.1,367.4z M414.7,344.7c3.5,9,11.6,14.8,24,17.3c6.9,1.4,13.3,1.4,16.4,1.2
|
||||
c-1.6-14.3-10.6-93.8-9.8-102.4c0.6-7,7.3-10,14.3-13.3c4-1.9,8.2-3.8,12-6.6c9-6.6,7.4-10.9,7.4-10.9c-0.4-0.8-0.2-1.7,0.4-2.3
|
||||
c0.1-0.1,6.3-6,17.4-19.1c3.7-4.4,3.4-6.3,3.1-6.9c-0.8-1.6-4.7-2.2-7.4-2.1l-56.5,29.6c-0.6,0.3-1.3,0.3-1.9,0c-0.6-0.3-1-1-1-1.7
|
||||
c0-0.2-0.5-15.9-4.7-22.8c-2.1-3.4-4.5-4.6-6.3-4.9c2.2,6,6.1,20.3-1.3,32.1c-5.4,8.7-5.7,17.1-0.7,24.1c1.3,1.9,1.2,5.3,0.8,13
|
||||
c-0.3,6-0.7,14.2-0.5,25C420.9,315.1,415.6,340.5,414.7,344.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M430.4,252.8c0,0,3.7-19.6,14.8-20.7s26.9-4.8,27.5-18.5s0.6-16.4,3.2-15.9s7.4,18.6,4.7,31.5"/>
|
||||
<path d="M430.4,254.8c-0.1,0-0.2,0-0.4,0c-1.1-0.2-1.8-1.3-1.6-2.3c0.2-0.9,4.1-21.1,16.6-22.3c11.4-1.1,25.2-4.9,25.7-16.6
|
||||
l0.1-1.6c0.5-11,0.6-14,2.5-15.5c0.8-0.6,1.8-0.8,3-0.6c0.9,0.2,1.6,0.8,2.3,1.8c3.2,4.7,6.3,20.6,4,32.1c-0.2,1.1-1.3,1.8-2.4,1.6
|
||||
c-1.1-0.2-1.8-1.3-1.6-2.4c2.2-11-1.1-25.2-3.1-28.7c-0.4,1.8-0.6,6.2-0.8,11.9l-0.1,1.6c-0.4,8.1-5.7,18.2-29.3,20.4
|
||||
c-7.9,0.8-12.1,14-13.1,19C432.2,254.2,431.4,254.8,430.4,254.8z M475.1,199.5C475.1,199.5,475.1,199.5,475.1,199.5
|
||||
S475.1,199.5,475.1,199.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M332.8,129c-0.5,0-1.1-0.2-1.5-0.7c-4.1-4.5-14.7-1.2-18.5,0.5c-1,0.4-2.2,0-2.6-1c-0.4-1,0-2.2,1-2.6
|
||||
c0.7-0.3,16.2-7,23,0.5c0.7,0.8,0.7,2.1-0.1,2.8C333.8,128.8,333.3,129,332.8,129z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M340.4,158.7c-1,0-1.9-0.8-2-1.9c-0.1-1.1,0.8-2.1,1.9-2.1c1.2-0.1,2.1-0.4,2.5-1.1c0.6-0.9,0.5-2.2,0.3-3.1
|
||||
c-0.1-0.2-0.1-0.5-0.2-0.7c-0.8-2.4-1.5-4.6,0.2-16.7c0.5-3.6,2.1-6.3,4.9-7.9c6.7-4.1,17.8-0.2,18.3-0.1c1,0.4,1.6,1.5,1.2,2.6
|
||||
c-0.4,1-1.5,1.6-2.6,1.2c-2.7-1-10.6-2.9-14.8-0.3c-1.7,1-2.7,2.7-3,5c-1.5,11.2-0.9,13.1-0.3,14.9c0.1,0.3,0.2,0.5,0.3,0.8
|
||||
c0.7,2.4,0.4,4.8-0.8,6.5c-0.8,1.1-2.4,2.6-5.5,2.8C340.5,158.7,340.4,158.7,340.4,158.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M334.2,170.5c-2.7,0-5.1-0.6-7.2-1.7c-5.2-2.8-6.5-7.9-6.5-8.1c-0.3-1.1,0.4-2.2,1.5-2.4c1.1-0.3,2.1,0.4,2.4,1.4
|
||||
c0,0.1,1,3.7,4.6,5.6c3.2,1.7,7.5,1.6,12.9-0.3c1-0.4,2.2,0.2,2.6,1.2c0.4,1-0.2,2.2-1.2,2.6C339.9,169.9,336.9,170.5,334.2,170.5z
|
||||
"/>
|
||||
</g>
|
||||
<g>
|
||||
<ellipse cx="325.4" cy="136.5" rx="3.6" ry="5.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<ellipse cx="356.4" cy="141.2" rx="3.4" ry="4.8"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st5" d="M442.8,311l-3.1-14c0,0-2.6-12.6,12.4-12.6c15,0,106.2,0,106.2,0s14-2.9,19.2,18.3
|
||||
c5.2,21.2,17.6,66.3,17.6,66.3s7.8,16.7-10.4,16.1S460.4,383,460.4,383L442.8,311z"/>
|
||||
<path d="M585.7,387.2c-0.3,0-0.6,0-1,0c-17.9-0.6-123.3-2.1-124.3-2.1c-0.9,0-1.7-0.6-1.9-1.5l-17.6-72c0,0,0,0,0,0l-3.1-14
|
||||
c-0.1-0.3-1.2-6,2.4-10.4c2.5-3.1,6.5-4.6,12-4.6h106.1c2.1-0.3,16.1-1.4,21.3,19.8c5,20.4,16.8,63.3,17.6,66.1
|
||||
c0.5,1.2,3.6,8.8,0.1,14.1C595.1,385.6,591.2,387.2,585.7,387.2z M462,381c13.2,0.2,106.1,1.6,122.9,2.1c4.6,0.2,7.6-0.8,9-2.9
|
||||
c2.1-3.1,0.4-8.5-0.5-10.4c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.5-12.5-45.4-17.6-66.4c-4.6-19-16.3-16.9-16.8-16.8c-0.1,0-0.3,0-0.4,0
|
||||
H452.1c-4.2,0-7.2,1-8.9,3.1c-2.4,2.9-1.6,7.1-1.6,7.1l3.1,13.9L462,381z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M433.3,304.5c0,0-6.9,6.9-2.9,10.5c4,3.6,5.1,4.8,11.2,5.1s22.5,2.5,22.5,2.5s6.5-3.4-3.3-9.1
|
||||
C451.1,307.9,433.3,304.5,433.3,304.5z"/>
|
||||
<path d="M464.1,324.7c-0.1,0-0.2,0-0.3,0c-0.2,0-16.3-2.2-22.3-2.5c-6.7-0.3-8.3-1.8-12.1-5.3l-0.4-0.3c-1.2-1.1-1.9-2.5-1.9-4.1
|
||||
c-0.1-4.3,4.2-8.8,4.7-9.3c0.5-0.5,1.1-0.7,1.8-0.6c0.7,0.1,18.2,3.5,28.2,9.3c4.4,2.5,6.4,5.1,6.4,7.8c-0.1,3.1-2.9,4.6-3.2,4.8
|
||||
C464.7,324.6,464.4,324.7,464.1,324.7z M434,306.7c-1.3,1.5-2.9,3.9-2.8,5.6c0,0.5,0.2,0.9,0.6,1.3l0.4,0.3c3.5,3.2,4.4,4,9.6,4.3
|
||||
c5.5,0.3,18.5,2,21.9,2.4c0.3-0.3,0.6-0.6,0.6-1c0-0.3-0.2-1.8-4.4-4.2C451.8,310.7,438,307.6,434,306.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M433.8,319c0,0-6.9,6.9-2.9,10.5s5.1,4.8,11.2,5.1c6.1,0.3,22.5,2.5,22.5,2.5s6.5-3.4-3.3-9.1
|
||||
C451.6,322.3,433.8,319,433.8,319z"/>
|
||||
<path d="M464.6,339.1c-0.1,0-0.2,0-0.3,0c-0.2,0-16.3-2.2-22.3-2.5c-6.7-0.3-8.3-1.8-12.1-5.3l-0.4-0.3c-1.2-1.1-1.9-2.5-1.9-4.1
|
||||
c-0.1-4.3,4.2-8.8,4.7-9.3c0.5-0.5,1.1-0.7,1.8-0.6c0.7,0.1,18.2,3.5,28.2,9.3c4.4,2.5,6.4,5.1,6.4,7.8c-0.1,3.1-2.9,4.6-3.2,4.8
|
||||
C465.2,339,464.9,339.1,464.6,339.1z M434.5,321.2c-1.3,1.5-2.9,3.9-2.8,5.6c0,0.5,0.2,0.9,0.6,1.3l0.4,0.3c3.5,3.2,4.4,4,9.6,4.3
|
||||
c5.5,0.3,18.5,2,21.9,2.4c0.3-0.3,0.6-0.6,0.6-1c0-0.3-0.2-1.8-4.4-4.2C452.4,325.1,438.5,322,434.5,321.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M432.2,331.4c0,0-6.9,6.9-2.9,10.5s5.1,4.8,11.2,5.1c6.1,0.3,22.5,2.5,22.5,2.5s6.5-3.4-3.3-9.1
|
||||
C449.9,334.8,432.2,331.4,432.2,331.4z"/>
|
||||
<path d="M463,351.5c-0.1,0-0.2,0-0.3,0c-0.2,0-16.3-2.2-22.3-2.5c-6.7-0.3-8.3-1.8-12.1-5.3l-0.4-0.3c-1.2-1.1-1.9-2.5-1.9-4.1
|
||||
c-0.1-4.3,4.2-8.8,4.7-9.3c0.5-0.5,1.1-0.7,1.8-0.6c0.7,0.1,18.2,3.5,28.2,9.3c4.4,2.5,6.4,5.1,6.4,7.8c-0.1,3.1-2.9,4.6-3.2,4.8
|
||||
C463.6,351.4,463.3,351.5,463,351.5z M432.9,333.6c-1.3,1.5-2.9,3.9-2.8,5.6c0,0.5,0.2,0.9,0.6,1.3l0.4,0.3c3.5,3.2,4.4,4,9.6,4.3
|
||||
c5.5,0.3,18.5,2,21.9,2.4c0.3-0.3,0.6-0.6,0.6-1c0-0.3-0.2-1.8-4.4-4.2C450.7,337.5,436.8,334.4,432.9,333.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M346.7,347.5c-17.9,6.4-23.1,8.4-23.1,8.4"/>
|
||||
<path d="M323.6,357.9c-0.8,0-1.6-0.5-1.9-1.3c-0.4-1,0.1-2.2,1.1-2.6c0.1,0,5.4-2.1,23.2-8.4c1.1-0.4,2.2,0.2,2.6,1.2
|
||||
c0.4,1-0.2,2.2-1.2,2.6c-17.7,6.3-23,8.3-23.1,8.4C324.1,357.9,323.8,357.9,323.6,357.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M348,359.6c-17.9,6.4-23.1,8.4-23.1,8.4"/>
|
||||
<path d="M324.8,370c-0.8,0-1.6-0.5-1.9-1.3c-0.4-1,0.1-2.2,1.1-2.6c0.1,0,5.4-2.1,23.2-8.4c1.1-0.4,2.2,0.2,2.6,1.2
|
||||
c0.4,1-0.2,2.2-1.2,2.6c-17.7,6.3-23,8.3-23.1,8.4C325.3,369.9,325.1,370,324.8,370z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M604.1,83.5c0,0,57.5,11,24.2,73.3l13.6-1.1c0,0,27-28.5,4.2-66.9C646.1,88.8,627.8,82.9,604.1,83.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st6" d="M116.8,456.4h-12.8v-23.2L83,402c-3.3,1.4-6.8,2.1-10.4,2.1c-14.9,0-27-12.1-27-27s12.1-27,27-27
|
||||
s27,12.1,27,27c0,6.9-2.6,13.4-7.2,18.4l11.7,19v-84.8l-22.4-44.9c-2.1,0.4-4.3,0.7-6.4,0.7c-17.6,0-32-14.3-32-32s14.3-32,32-32
|
||||
s32,14.3,32,32c0,10.7-5.5,20.8-14.4,26.7l20.4,38.4l12.7-8.8c-1.2-2.9-1.8-6-1.8-9.2c0-13.2,10.7-23.9,23.9-23.9
|
||||
s23.9,10.7,23.9,23.9c0,13.2-10.7,23.9-23.9,23.9c-5.2,0-10.3-1.7-14.4-4.9l-17.6,12l-0.8,60.1l11.5-9.4c-0.8-2.3-1.2-4.8-1.2-7.2
|
||||
c0-12.4,10.1-22.5,22.5-22.5c12.4,0,22.5,10.1,22.5,22.5c0,12.4-10.1,22.5-22.5,22.5c-5.8,0-11.2-2.1-15.3-6.1l-15.8,13.2V456.4z
|
||||
M107.2,453.3h6.5V403l19.2-16l1,1.1c3.7,3.9,8.7,6.1,14.1,6.1c10.7,0,19.4-8.7,19.4-19.4s-8.7-19.4-19.4-19.4
|
||||
c-10.7,0-19.4,8.7-19.4,19.4c0,2.4,0.5,4.8,1.4,7.1l0.4,1.1L112,398.1l0.9-68.5l20.9-14.2l0.9,0.8c3.7,3.1,8.5,4.9,13.3,4.9
|
||||
c11.4,0,20.7-9.3,20.7-20.7c0-11.4-9.3-20.7-20.7-20.7s-20.7,9.3-20.7,20.7c0,3.2,0.7,6.2,2.1,9l0.6,1.2L112.2,323l-23.5-44.1
|
||||
l1.3-0.8c8.7-5.2,14.1-14.7,14.1-24.8c0-15.9-12.9-28.8-28.8-28.8c-15.9,0-28.8,12.9-28.8,28.8s12.9,28.8,28.8,28.8
|
||||
c2.3,0,4.6-0.3,6.9-0.8l1.2-0.3l23.8,47.8v96.6l-18.8-30.5l0.9-0.9c4.6-4.5,7.2-10.6,7.2-17.1c0-13.2-10.7-23.9-23.9-23.9
|
||||
S48.7,363.9,48.7,377s10.7,23.9,23.9,23.9c4.1,0,8.1-1.1,11.7-3.1l1.8,2.6l-0.3,0.2l21.3,31.6V453.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st7" d="M132.5,515.7H90.8c-11.4,0-20.7-9.3-20.7-20.7v-39.8h83v39.8C153.2,506.5,143.9,515.7,132.5,515.7z"/>
|
||||
<path class="st6" d="M132.5,517.3H90.8c-12.3,0-22.2-10-22.2-22.2v-41.4h86.2v41.4C154.7,507.3,144.8,517.3,132.5,517.3z
|
||||
M71.7,456.8v38.2c0,10.5,8.6,19.1,19.1,19.1h41.7c10.5,0,19.1-8.6,19.1-19.1v-38.2H71.7z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 23 KiB |
|
|
@ -0,0 +1,721 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 327.45 236.19" style="enable-background:new 0 0 327.45 236.19;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#A5ADCE;}
|
||||
.st2{fill:#3A51CE;}
|
||||
.st3{fill:#E8EBF9;}
|
||||
.st4{fill:#FFCB80;}
|
||||
.st5{fill:#E89823;}
|
||||
.st6{fill:#BCBFC1;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M277.38,195.72c-0.91-0.95-1.93-1.81-2.58-2.95c-0.62-1.09-0.86-2.4-0.66-3.64
|
||||
c0.13-0.82,0.53-1.69,1.31-1.98c0.68-0.25,1.46,0.03,2.02,0.5c0.56,0.47,0.95,1.1,1.38,1.68c1.53,2.03,3.73,3.54,6.17,4.26
|
||||
c2.87-2.83,5.44-6.46,7.36-10.77c0.12-0.27,0.23-0.53,0.34-0.8c-0.43-0.48-0.98-0.88-1.55-1.19c-1.03-0.54-2.16-0.83-3.27-1.16
|
||||
c-1.11-0.33-2.23-0.71-3.16-1.41c-0.57-0.43-1.08-1.03-1.14-1.75c-0.08-0.93,0.67-1.79,1.56-2.08c0.89-0.29,1.87-0.11,2.74,0.23
|
||||
s1.68,0.83,2.54,1.19c1.27,0.53,2.67,0.77,4.05,0.69c0.9-3.87,1.11-7.65,0.98-11.19c-0.2-0.02-0.41-0.01-0.61,0.01
|
||||
c-0.69,0.07-1.37,0.29-2.06,0.33c-1.19,0.08-2.41-0.39-3.25-1.24c-0.32-0.33-0.59-0.72-0.71-1.16c-0.11-0.45-0.06-0.95,0.23-1.31
|
||||
c0.35-0.45,0.96-0.61,1.53-0.58c0.57,0.02,1.11,0.2,1.67,0.3c0.98,0.18,1.99,0.12,2.94-0.17c-0.32-3.14-0.81-6.03-1.2-8.54
|
||||
c-0.17-0.01-0.33-0.01-0.5-0.01c-0.4,0-0.81,0.01-1.17-0.17c-0.36-0.17-0.63-0.58-0.52-0.97c0.08-0.28,0.36-0.47,0.63-0.57
|
||||
c0.28-0.1,0.58-0.12,0.86-0.2c0.13-0.04,0.27-0.09,0.39-0.15c-0.37-2.79-0.46-4.98,0.26-6.35l-37.03,38.35
|
||||
c2.9,2.8,0.63,9.09,6.59,14.85c3.82,3.69,9.76,3.54,15.52,0.36C278.69,197.23,278.05,196.42,277.38,195.72z M281.28,179.19
|
||||
c0.45,0.48,0.96,0.94,1.11,1.6c0.14,0.64-0.13,1.38-0.71,1.67c-0.35,0.17-0.76,0.17-1.13,0.06c-0.37-0.11-0.71-0.31-1.03-0.53
|
||||
c-0.66-0.44-1.28-0.95-1.84-1.51c-0.5-0.49-0.98-1.13-0.88-1.82c0.09-0.6,0.64-1.07,1.23-1.18c0.6-0.12,1.22,0.07,1.74,0.39
|
||||
C280.34,178.21,280.82,178.7,281.28,179.19z M285.94,166.22c0.27-0.06,0.56,0.01,0.81,0.14c0.48,0.25,1.14,0.84,1.35,1.35
|
||||
c0.14,0.33,0.08,0.77-0.22,0.95c-0.33,0.2-0.75,0.03-1.07-0.18c-0.36-0.23-0.7-0.5-1-0.79c-0.25-0.25-0.5-0.57-0.44-0.92
|
||||
C285.42,166.49,285.67,166.28,285.94,166.22z M287.29,157.86c-0.32-0.25-0.53-0.68-0.41-1.06c0.09-0.3,0.36-0.52,0.64-0.67
|
||||
c0.71-0.39,1.68-0.44,2.33,0.11c0.57,0.49,1.02,1.45,0.29,2.01c-0.24,0.18-0.55,0.25-0.86,0.24c-0.3-0.01-0.6-0.08-0.89-0.16
|
||||
C288.01,158.22,287.61,158.11,287.29,157.86z M281.04,169.14c-0.4-0.28-0.8-0.62-0.88-1.1c-0.09-0.52,0.26-1.05,0.74-1.27
|
||||
c0.48-0.22,1.05-0.17,1.54,0.01c0.5,0.19,0.91,0.5,1.34,0.8c0.49,0.35,1.02,0.6,1.35,1.12c0.34,0.53,0.33,1.33-0.18,1.7
|
||||
c-0.47,0.34-1.13,0.17-1.67-0.05C282.49,170.04,281.73,169.63,281.04,169.14z M268.16,194.29c-0.54-0.16-0.99-0.54-1.37-0.96
|
||||
c-0.63-0.72-1.07-1.61-1.27-2.55c-0.08-0.38-0.12-0.78-0.04-1.16c0.08-0.38,0.31-0.74,0.65-0.92c0.52-0.28,0.9,0,1.29,0.32
|
||||
c0.52,0.44,1.05,0.84,1.5,1.35c0.51,0.57,0.92,1.24,1.08,1.98c0.11,0.54,0.07,1.15-0.29,1.56
|
||||
C269.34,194.33,268.7,194.44,268.16,194.29z"/>
|
||||
<path class="st1" d="M270.67,201.12c-2.92,0-5.53-0.98-7.55-2.93c-3.64-3.52-4.32-7.23-4.87-10.21
|
||||
c-0.37-2.02-0.66-3.61-1.72-4.64c-0.11-0.1-0.17-0.25-0.17-0.4c0-0.15,0.05-0.3,0.16-0.4l37.03-38.35
|
||||
c0.2-0.2,0.51-0.23,0.74-0.07c0.23,0.17,0.3,0.47,0.17,0.72c-0.7,1.34-0.51,3.68-0.2,6.01c0.03,0.24-0.1,0.48-0.32,0.59
|
||||
c-0.16,0.08-0.32,0.14-0.49,0.18c-0.13,0.04-0.27,0.06-0.41,0.09c-0.14,0.03-0.28,0.05-0.41,0.1c-0.16,0.05-0.26,0.14-0.27,0.19
|
||||
c-0.02,0.06,0.07,0.22,0.23,0.29c0.24,0.12,0.58,0.11,0.91,0.11c0.18,0,0.36,0,0.54,0.01c0.26,0.02,0.48,0.22,0.52,0.48
|
||||
l0.22,1.38c0.34,2.15,0.73,4.59,0.99,7.19c0.03,0.27-0.14,0.52-0.4,0.6c-1.05,0.31-2.16,0.37-3.21,0.18
|
||||
c-0.19-0.03-0.38-0.08-0.57-0.12c-0.36-0.08-0.69-0.16-1.02-0.17c-0.48-0.02-0.86,0.12-1.05,0.37c-0.16,0.2-0.2,0.52-0.12,0.82
|
||||
c0.08,0.3,0.27,0.6,0.56,0.91c0.73,0.74,1.78,1.14,2.81,1.07c0.33-0.02,0.67-0.09,1.03-0.16c0.33-0.07,0.66-0.13,1.02-0.17
|
||||
c0.23-0.02,0.47-0.03,0.71-0.01c0.29,0.02,0.51,0.26,0.52,0.54c0.16,4.11-0.17,7.82-0.99,11.35c-0.06,0.25-0.27,0.42-0.52,0.44
|
||||
c-1.47,0.08-2.95-0.18-4.3-0.74c-0.42-0.17-0.82-0.38-1.21-0.57c-0.45-0.23-0.88-0.44-1.32-0.61c-0.92-0.36-1.71-0.43-2.36-0.22
|
||||
c-0.62,0.2-1.22,0.81-1.17,1.49c0.05,0.6,0.6,1.1,0.92,1.34c0.88,0.67,2,1.03,2.98,1.32l0.47,0.14c0.97,0.28,1.97,0.57,2.9,1.06
|
||||
c0.68,0.36,1.25,0.8,1.71,1.31c0.15,0.16,0.18,0.39,0.1,0.6c-0.11,0.27-0.23,0.54-0.35,0.81c-1.85,4.15-4.44,7.93-7.48,10.94
|
||||
c-0.15,0.14-0.36,0.2-0.56,0.14c-2.57-0.75-4.87-2.34-6.47-4.46c-0.1-0.13-0.2-0.27-0.29-0.4c-0.32-0.44-0.62-0.86-1-1.18
|
||||
c-0.36-0.3-0.96-0.59-1.46-0.4c-0.69,0.25-0.9,1.24-0.94,1.54c-0.18,1.12,0.03,2.28,0.6,3.27c0.46,0.81,1.13,1.48,1.84,2.18
|
||||
c0.22,0.22,0.44,0.44,0.65,0.66l0,0c0.9,0.94,1.46,1.77,1.77,2.62c0.09,0.26-0.01,0.56-0.26,0.69
|
||||
C276.3,200.29,273.35,201.12,270.67,201.12z M257.69,182.94c1.01,1.25,1.32,2.92,1.67,4.83c0.55,2.97,1.16,6.34,4.54,9.6
|
||||
c3.41,3.29,8.76,3.47,14.39,0.51c-0.28-0.55-0.71-1.13-1.33-1.77l0,0c-0.21-0.22-0.42-0.43-0.63-0.64
|
||||
c-0.73-0.73-1.49-1.48-2.03-2.42c-0.69-1.21-0.95-2.63-0.73-4.01c0.19-1.22,0.8-2.1,1.67-2.42c0.8-0.3,1.79-0.07,2.58,0.6
|
||||
c0.49,0.41,0.85,0.91,1.19,1.39c0.09,0.13,0.19,0.26,0.28,0.38c1.38,1.84,3.35,3.24,5.56,3.96c2.84-2.87,5.25-6.44,7-10.36
|
||||
c0.07-0.15,0.13-0.29,0.19-0.44c-0.32-0.3-0.71-0.58-1.15-0.81c-0.83-0.44-1.73-0.7-2.69-0.98l-0.48-0.14
|
||||
c-1.07-0.32-2.3-0.72-3.34-1.5c-0.83-0.63-1.3-1.37-1.37-2.16c-0.09-1.13,0.74-2.28,1.95-2.66c0.91-0.29,1.95-0.21,3.12,0.24
|
||||
c0.49,0.19,0.96,0.43,1.42,0.66c0.39,0.2,0.75,0.38,1.13,0.54c1.06,0.44,2.23,0.67,3.37,0.66c0.69-3.14,0.98-6.44,0.88-10.07
|
||||
c0,0,0,0-0.01,0c-0.29,0.03-0.59,0.09-0.9,0.15c-0.38,0.08-0.77,0.15-1.18,0.18c-1.36,0.09-2.74-0.44-3.7-1.41
|
||||
c-0.44-0.45-0.73-0.92-0.85-1.42c-0.17-0.65-0.04-1.32,0.33-1.8c0.42-0.55,1.16-0.85,2-0.8c0.43,0.02,0.84,0.11,1.23,0.2
|
||||
c0.17,0.04,0.35,0.08,0.52,0.11c0.73,0.13,1.49,0.12,2.23-0.04c-0.26-2.38-0.61-4.64-0.93-6.64l-0.14-0.91c-0.05,0-0.13,0-0.19,0
|
||||
c-0.38,0-0.82-0.02-1.24-0.23c-0.55-0.27-1.02-0.94-0.81-1.64c0.13-0.43,0.49-0.77,0.99-0.94c0.2-0.07,0.4-0.11,0.57-0.14
|
||||
c0.08-0.01,0.16-0.03,0.24-0.05c-0.18-1.41-0.29-2.82-0.19-4.04L257.69,182.94z M268.65,194.93c-0.21,0-0.43-0.03-0.64-0.09l0,0
|
||||
c-0.58-0.17-1.12-0.54-1.64-1.13c-0.7-0.8-1.18-1.77-1.4-2.81c-0.11-0.54-0.13-0.98-0.04-1.39c0.13-0.58,0.47-1.05,0.93-1.3
|
||||
c0.9-0.48,1.59,0.11,1.93,0.39l0.33,0.27c0.42,0.34,0.85,0.7,1.23,1.13c0.64,0.71,1.05,1.47,1.21,2.24
|
||||
c0.17,0.81,0.02,1.55-0.42,2.05C269.78,194.7,269.23,194.93,268.65,194.93z M266.55,189.15c-0.05,0-0.1,0.02-0.15,0.05
|
||||
c-0.17,0.09-0.31,0.3-0.36,0.55c-0.05,0.25-0.04,0.54,0.04,0.91c0.18,0.85,0.57,1.64,1.14,2.3c0.37,0.42,0.73,0.68,1.09,0.79
|
||||
c0,0,0,0,0,0c0.37,0.11,0.77,0.02,0.98-0.21c0.19-0.22,0.26-0.62,0.16-1.06c-0.12-0.58-0.44-1.15-0.94-1.72
|
||||
c-0.33-0.37-0.71-0.68-1.11-1.02l-0.34-0.28C266.78,189.22,266.65,189.15,266.55,189.15z M281.06,183.16
|
||||
c-0.22,0-0.45-0.03-0.68-0.1c-0.45-0.13-0.84-0.37-1.19-0.6c-0.69-0.46-1.34-1-1.93-1.58c-0.3-0.3-1.21-1.2-1.04-2.31
|
||||
c0.12-0.81,0.82-1.49,1.69-1.66c0.68-0.13,1.44,0.03,2.14,0.46c0.63,0.38,1.15,0.91,1.63,1.42l0.16,0.17
|
||||
c0.44,0.45,0.93,0.96,1.09,1.71c0.21,0.94-0.22,1.91-1.02,2.3C281.67,183.1,281.37,183.16,281.06,183.16z M278.39,178.01
|
||||
c-0.09,0-0.17,0.01-0.26,0.02c-0.4,0.08-0.73,0.38-0.78,0.71c-0.05,0.36,0.18,0.8,0.72,1.34c0.54,0.53,1.13,1.02,1.76,1.44
|
||||
c0.27,0.18,0.57,0.36,0.87,0.45c0.27,0.08,0.54,0.07,0.73-0.02c0.32-0.15,0.5-0.62,0.41-1.04c-0.09-0.43-0.44-0.79-0.8-1.16
|
||||
l-0.17-0.17l0,0c-0.45-0.47-0.89-0.92-1.4-1.23C279.1,178.12,278.73,178.01,278.39,178.01z M284.29,171.18
|
||||
c-0.53,0-1.01-0.2-1.23-0.29c-0.83-0.34-1.62-0.77-2.35-1.29c0,0,0,0,0,0c-0.46-0.32-0.99-0.78-1.11-1.47
|
||||
c-0.13-0.75,0.32-1.54,1.06-1.88c0.57-0.26,1.27-0.27,1.97-0.01c0.53,0.2,0.95,0.5,1.35,0.79l0.12,0.09
|
||||
c0.11,0.08,0.22,0.15,0.33,0.22c0.4,0.26,0.85,0.55,1.17,1.06c0.47,0.74,0.47,1.89-0.33,2.47
|
||||
C284.97,171.1,284.62,171.18,284.29,171.18z M281.36,168.68c0.66,0.47,1.38,0.86,2.13,1.16c0.54,0.22,0.93,0.26,1.13,0.11
|
||||
c0.24-0.17,0.21-0.65,0.03-0.94c-0.19-0.29-0.48-0.49-0.83-0.71c-0.13-0.08-0.25-0.16-0.37-0.25l-0.12-0.09
|
||||
c-0.36-0.26-0.7-0.51-1.09-0.65c-0.41-0.15-0.81-0.16-1.1-0.03c-0.27,0.13-0.46,0.42-0.42,0.65
|
||||
C280.76,168.22,281.09,168.48,281.36,168.68L281.36,168.68z M287.56,169.32c-0.28,0-0.63-0.09-1.05-0.36
|
||||
c-0.39-0.25-0.76-0.54-1.1-0.87c-0.48-0.47-0.69-0.95-0.6-1.43c0.09-0.49,0.49-0.89,1.01-1.01c0,0,0,0,0,0
|
||||
c0.38-0.08,0.81-0.01,1.2,0.2c0.58,0.3,1.34,0.98,1.61,1.63c0.26,0.63,0.07,1.34-0.45,1.66
|
||||
C288.03,169.24,287.82,169.32,287.56,169.32z M286.07,166.77c-0.08,0.02-0.13,0.08-0.14,0.1c0,0.01-0.02,0.12,0.28,0.41
|
||||
c0.28,0.27,0.58,0.51,0.91,0.72c0.28,0.18,0.45,0.19,0.47,0.17c0.02-0.02,0.04-0.14,0-0.25c-0.15-0.36-0.7-0.86-1.1-1.07
|
||||
C286.33,166.78,286.18,166.75,286.07,166.77z M289.34,159.06c-0.02,0-0.04,0-0.06,0c-0.38-0.01-0.74-0.11-1.02-0.18
|
||||
c-0.38-0.1-0.89-0.24-1.31-0.57l0,0c-0.54-0.42-0.78-1.1-0.6-1.67c0.12-0.4,0.43-0.74,0.91-1c0.84-0.46,2.08-0.58,2.97,0.18
|
||||
c0.43,0.37,0.88,1.02,0.87,1.73c-0.01,0.46-0.22,0.86-0.6,1.15C290.18,158.93,289.79,159.06,289.34,159.06z M288.68,156.4
|
||||
c-0.31,0-0.63,0.09-0.88,0.23c-0.21,0.11-0.34,0.23-0.37,0.34c-0.04,0.12,0.06,0.32,0.22,0.45c0,0,0,0,0,0
|
||||
c0.22,0.17,0.52,0.26,0.9,0.36c0.24,0.06,0.51,0.14,0.76,0.14c0.21,0.01,0.38-0.04,0.5-0.13c0.11-0.08,0.15-0.17,0.16-0.28
|
||||
c0.01-0.25-0.19-0.6-0.47-0.84C289.26,156.48,288.97,156.4,288.68,156.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M281.22,144.32c-0.57,1.13-0.74,2.45-0.46,3.68c0.09,0.38,0.21,0.74,0.28,1.13
|
||||
c0.07,0.38,0.07,0.79-0.08,1.14c-0.15,0.36-0.48,0.65-0.87,0.68c-0.31,0.02-0.61-0.12-0.86-0.31c-0.76-0.55-1.22-1.44-1.48-2.34
|
||||
c-0.26-0.9-0.33-1.85-0.49-2.78c-0.07-0.4-0.15-0.81-0.33-1.18c-0.07-0.15-0.17-0.3-0.28-0.43c-4.9-0.3-10.38-0.11-15.96,1.62
|
||||
c-0.02,1.55,0.54,3.11,1.56,4.27c0.55,0.62,1.21,1.13,1.79,1.72c0.59,0.59,1.11,1.28,1.27,2.09c0.16,0.81-0.13,1.76-0.85,2.17
|
||||
c-0.56,0.32-1.26,0.27-1.86,0.05c-1.25-0.46-2.16-1.56-2.81-2.72c-0.65-1.17-1.09-2.44-1.76-3.59c-0.49-0.85-1.15-1.66-1.97-2.17
|
||||
c-0.1,0.05-0.2,0.09-0.29,0.14c-5.78,2.82-10.27,6.82-13.17,11.07c1,1.48,2.32,2.74,3.85,3.67c0.66,0.4,1.38,0.75,1.88,1.34
|
||||
c0.5,0.59,0.73,1.5,0.28,2.13c-0.31,0.43-0.87,0.63-1.39,0.61s-1.03-0.22-1.5-0.46c-1.15-0.58-2.18-1.38-3.34-1.92
|
||||
c-0.73-0.34-1.55-0.57-2.35-0.55c-0.36,0.92-0.64,1.83-0.84,2.73c1.14,0.32,2.27,0.64,3.41,0.95c0.31,0.09,0.63,0.18,0.89,0.36
|
||||
c0.49,0.34,0.74,1,0.58,1.58c-0.22,0.81-1.09,1.28-1.93,1.38c-0.83,0.09-1.67-0.1-2.51-0.12c-0.26-0.01-0.53,0-0.79,0.04
|
||||
c0.19,2.54,1.15,4.82,2.98,6.58c5.96,5.75,12.17,3.27,15.07,6.07l37.03-38.35C291.69,145.87,287.09,144.97,281.22,144.32z
|
||||
M257.07,164.39c-0.43,0.33-1.02,0.45-1.56,0.34c-0.82-0.16-1.46-0.79-2.03-1.4c-0.44-0.48-0.88-0.97-1.17-1.56
|
||||
c-0.29-0.58-0.42-1.27-0.22-1.89c0.2-0.62,0.78-1.14,1.43-1.14c0.51,0,0.98,0.29,1.32,0.66c0.35,0.37,0.6,0.81,0.89,1.23
|
||||
c0.32,0.46,0.72,0.8,1.17,1.13c0.42,0.32,0.77,0.63,0.82,1.2C257.77,163.5,257.5,164.06,257.07,164.39z M270.96,152.12
|
||||
c0.37,0.05,0.69,0.28,0.96,0.53c0.23,0.22,0.43,0.46,0.61,0.72c0.15,0.22,0.24,0.5,0.42,0.68c0.37,0.38,0.7,0.74,0.83,1.28
|
||||
c0.12,0.49,0,1.05-0.39,1.37c-0.36,0.29-0.87,0.32-1.31,0.18c-0.44-0.14-0.81-0.42-1.16-0.72c-0.46-0.39-0.91-0.83-1.19-1.36
|
||||
c-0.29-0.54-0.4-1.19-0.18-1.76C269.77,152.48,270.36,152.04,270.96,152.12z M253.74,177.48c-0.58,0.23-1.24,0.19-1.83-0.03
|
||||
c-0.58-0.22-1.09-0.61-1.53-1.05c-0.53-0.54-1-1.28-0.82-2.02c0.14-0.56,0.65-0.99,1.21-1.12c0.56-0.14,1.16-0.02,1.69,0.21
|
||||
c0.96,0.42,2.56,1.38,2.4,2.62C254.78,176.72,254.31,177.25,253.74,177.48z"/>
|
||||
<path class="st1" d="M256.91,183.5c-0.15,0-0.29-0.06-0.39-0.16c-1.06-1.02-2.66-1.26-4.69-1.56c-3-0.44-6.74-0.99-10.38-4.51
|
||||
c-1.86-1.8-2.95-4.2-3.15-6.95c-0.02-0.3,0.19-0.56,0.48-0.6c0.28-0.04,0.58-0.06,0.89-0.05c0.32,0.01,0.63,0.04,0.95,0.08
|
||||
c0.52,0.05,1.01,0.11,1.48,0.05c0.59-0.07,1.29-0.39,1.44-0.96c0.09-0.35-0.06-0.76-0.36-0.97c-0.19-0.13-0.46-0.21-0.72-0.28
|
||||
l-3.41-0.95c-0.29-0.08-0.47-0.38-0.4-0.67c0.21-0.93,0.5-1.88,0.87-2.82c0.08-0.22,0.29-0.36,0.52-0.36
|
||||
c0.81-0.02,1.71,0.2,2.6,0.6c0.66,0.31,1.27,0.69,1.86,1.06c0.51,0.32,0.99,0.61,1.49,0.87c0.35,0.18,0.81,0.38,1.27,0.4
|
||||
c0.39,0.01,0.74-0.13,0.91-0.37c0.28-0.39,0.09-1.03-0.25-1.43c-0.35-0.41-0.84-0.69-1.37-1c-0.12-0.07-0.25-0.15-0.37-0.22
|
||||
c-1.59-0.96-2.98-2.29-4.03-3.83c-0.13-0.19-0.13-0.45,0-0.64c3.12-4.57,7.88-8.57,13.39-11.26l0.3-0.14
|
||||
c0.17-0.08,0.38-0.07,0.55,0.03c0.82,0.52,1.55,1.31,2.16,2.37c0.37,0.63,0.67,1.3,0.96,1.94c0.26,0.58,0.51,1.13,0.81,1.66
|
||||
c0.71,1.29,1.56,2.12,2.51,2.46c0.53,0.2,1.04,0.19,1.38-0.01c0.51-0.29,0.68-1.02,0.57-1.56c-0.11-0.58-0.48-1.17-1.11-1.8
|
||||
c-0.23-0.23-0.47-0.44-0.7-0.66c-0.38-0.34-0.76-0.69-1.11-1.09c-1.1-1.26-1.72-2.95-1.7-4.65c0-0.25,0.16-0.46,0.4-0.54
|
||||
c4.83-1.5,9.97-2.02,16.16-1.65c0.16,0.01,0.3,0.08,0.4,0.2c0.14,0.17,0.26,0.35,0.35,0.55c0.21,0.43,0.3,0.89,0.37,1.33
|
||||
c0.05,0.28,0.09,0.56,0.13,0.84c0.09,0.65,0.18,1.27,0.35,1.87c0.18,0.64,0.55,1.52,1.26,2.04c0.19,0.14,0.36,0.21,0.48,0.2
|
||||
c0.14-0.01,0.31-0.15,0.38-0.34c0.09-0.21,0.1-0.48,0.04-0.82c-0.04-0.21-0.09-0.41-0.15-0.62c-0.04-0.16-0.09-0.32-0.12-0.48
|
||||
c-0.31-1.36-0.13-2.8,0.51-4.06c0.11-0.21,0.32-0.33,0.57-0.31c1.02,0.11,2,0.23,2.93,0.35c4.33,0.53,7.75,0.95,9.45-0.01
|
||||
c0.25-0.14,0.56-0.08,0.73,0.15c0.17,0.22,0.16,0.54-0.04,0.74l-37.03,38.35C257.22,183.44,257.07,183.5,256.91,183.5
|
||||
C256.92,183.5,256.92,183.5,256.91,183.5z M239.48,170.81c0.28,2.25,1.2,4.15,2.75,5.65c3.38,3.26,6.77,3.76,9.76,4.2
|
||||
c1.92,0.28,3.6,0.53,4.88,1.5l35.19-36.44c-2.04,0.24-4.78-0.09-7.99-0.49c-0.81-0.1-1.64-0.2-2.51-0.3
|
||||
c-0.38,0.93-0.47,1.98-0.25,2.94c0.03,0.15,0.07,0.29,0.11,0.43c0.07,0.24,0.13,0.48,0.17,0.72c0.1,0.56,0.06,1.05-0.11,1.46
|
||||
c-0.24,0.58-0.77,0.99-1.35,1.03c-0.4,0.03-0.82-0.11-1.24-0.41c-0.77-0.56-1.36-1.48-1.69-2.64c-0.19-0.67-0.29-1.36-0.38-2.02
|
||||
c-0.04-0.27-0.08-0.54-0.12-0.82c-0.07-0.41-0.14-0.74-0.28-1.02c-0.02-0.04-0.04-0.09-0.07-0.13
|
||||
c-5.76-0.33-10.57,0.15-15.08,1.49c0.08,1.28,0.58,2.53,1.41,3.48c0.31,0.35,0.65,0.66,1.02,0.99c0.25,0.23,0.51,0.46,0.75,0.7
|
||||
c0.8,0.8,1.27,1.58,1.42,2.38c0.22,1.13-0.24,2.27-1.12,2.77c-0.64,0.37-1.49,0.4-2.34,0.09c-1.21-0.44-2.26-1.45-3.11-2.98
|
||||
c-0.32-0.57-0.59-1.17-0.85-1.75c-0.29-0.64-0.57-1.25-0.9-1.83c-0.45-0.77-0.97-1.39-1.53-1.8c-5.21,2.54-9.71,6.28-12.72,10.56
|
||||
c0.93,1.28,2.12,2.37,3.45,3.18c0.12,0.07,0.24,0.14,0.36,0.21c0.58,0.34,1.18,0.69,1.66,1.24c0.63,0.74,0.94,1.95,0.31,2.83
|
||||
c-0.39,0.55-1.11,0.87-1.87,0.85c-0.68-0.02-1.28-0.29-1.74-0.52c-0.55-0.28-1.08-0.6-1.58-0.92c-0.59-0.37-1.15-0.71-1.74-0.99
|
||||
c-0.59-0.27-1.18-0.44-1.72-0.49c-0.21,0.58-0.4,1.17-0.55,1.75l2.88,0.81c0.32,0.09,0.71,0.2,1.06,0.44
|
||||
c0.69,0.48,1.03,1.38,0.81,2.19c-0.31,1.16-1.49,1.69-2.41,1.79c-0.6,0.07-1.17,0.01-1.72-0.05c-0.29-0.03-0.58-0.06-0.87-0.07
|
||||
C239.58,170.81,239.53,170.81,239.48,170.81z M252.89,178.21c-0.39,0-0.79-0.07-1.18-0.22c-0.6-0.23-1.17-0.61-1.73-1.18
|
||||
c-0.83-0.83-1.17-1.74-0.97-2.55c0.18-0.74,0.82-1.34,1.63-1.54c0.63-0.15,1.34-0.07,2.06,0.24c0.9,0.39,2.96,1.5,2.73,3.22
|
||||
c-0.1,0.79-0.69,1.51-1.48,1.83l0,0C253.62,178.14,253.26,178.21,252.89,178.21z M251.28,173.78c-0.12,0-0.25,0.01-0.37,0.04
|
||||
c-0.39,0.09-0.72,0.39-0.8,0.71c-0.14,0.58,0.42,1.23,0.67,1.48c0.45,0.45,0.88,0.75,1.33,0.92c0.49,0.18,1.01,0.2,1.41,0.03
|
||||
c0.42-0.17,0.73-0.54,0.78-0.93c0.1-0.78-1.05-1.58-2.07-2.03C251.99,173.89,251.64,173.78,251.28,173.78z M255.9,165.34
|
||||
c-0.17,0-0.34-0.02-0.5-0.05c-0.99-0.2-1.72-0.91-2.33-1.57c-0.46-0.49-0.94-1.03-1.27-1.69c-0.39-0.79-0.48-1.61-0.25-2.32
|
||||
c0.29-0.9,1.09-1.53,1.96-1.54c0.59-0.02,1.23,0.29,1.74,0.83c0.28,0.3,0.5,0.63,0.71,0.94c0.08,0.12,0.15,0.23,0.24,0.35
|
||||
c0.27,0.39,0.61,0.68,1.04,1c0.47,0.35,0.97,0.79,1.05,1.6c0.07,0.73-0.26,1.47-0.87,1.94l0,0
|
||||
C256.99,165.17,256.45,165.34,255.9,165.34z M253.52,159.32C253.52,159.32,253.52,159.32,253.52,159.32
|
||||
c-0.38,0-0.76,0.33-0.9,0.75c-0.13,0.42-0.07,0.96,0.19,1.47c0.26,0.52,0.67,0.99,1.08,1.42c0.51,0.55,1.07,1.1,1.73,1.23
|
||||
c0.39,0.08,0.81-0.01,1.1-0.24c0.29-0.23,0.46-0.59,0.43-0.93c-0.03-0.32-0.22-0.51-0.6-0.8c-0.44-0.33-0.91-0.71-1.29-1.26
|
||||
c-0.09-0.12-0.17-0.25-0.25-0.37c-0.19-0.29-0.37-0.56-0.59-0.79C254.14,159.49,253.81,159.32,253.52,159.32z M272.6,157.54
|
||||
c-0.22,0-0.45-0.04-0.68-0.11c-0.54-0.17-0.97-0.5-1.36-0.83c-0.46-0.39-0.98-0.88-1.33-1.53c-0.39-0.74-0.47-1.55-0.21-2.23
|
||||
c0.32-0.84,1.19-1.39,2.02-1.28c0.43,0.06,0.85,0.28,1.28,0.68c0.26,0.25,0.49,0.52,0.69,0.82c0.07,0.1,0.13,0.21,0.19,0.32
|
||||
c0.06,0.11,0.12,0.23,0.17,0.28c0.38,0.39,0.81,0.84,0.97,1.54c0.18,0.75-0.05,1.51-0.58,1.94
|
||||
C273.44,157.4,273.04,157.54,272.6,157.54z M270.82,152.68c-0.29,0-0.61,0.24-0.74,0.57c-0.14,0.36-0.08,0.85,0.15,1.29
|
||||
c0.26,0.48,0.68,0.87,1.06,1.2c0.3,0.25,0.62,0.5,0.97,0.61c0.3,0.09,0.6,0.06,0.78-0.08c0.19-0.16,0.27-0.49,0.2-0.8
|
||||
c-0.09-0.37-0.32-0.63-0.68-1.01c-0.17-0.17-0.27-0.37-0.36-0.55c-0.04-0.07-0.08-0.15-0.12-0.22c-0.15-0.23-0.33-0.44-0.53-0.62
|
||||
c-0.25-0.23-0.46-0.35-0.65-0.38l0,0C270.87,152.68,270.84,152.68,270.82,152.68z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M282.27,83.51c0.37,2.51,0.75,5.02,1.12,7.53c-1.61-1.97-3.09-4.03-4.46-6.17
|
||||
c-4.75,2.01-9.62,4.44-14.46,7.18c0.14,2.24,0.28,4.47,0.42,6.71c-1.3-1.56-2.61-3.12-3.91-4.68c-0.68,0.41-1.37,0.83-2.05,1.25
|
||||
c1.93,2.57,3.86,5.14,5.79,7.71c-2.87-2.09-5.89-3.98-9.01-5.67c-5.46,3.55-10.72,7.44-15.53,11.51
|
||||
c2.56,2.81,5.12,5.62,7.68,8.43c-3.44-2.04-6.88-4.09-10.33-6.13c-1.46,1.31-2.88,2.63-4.23,3.96c1.51,1.62,3.02,3.24,4.53,4.87
|
||||
c-2.02-1.11-4.04-2.22-6.07-3.33c-4.63,4.74-8.49,9.59-11.21,14.33c2.54,1.95,5.08,3.91,7.62,5.86
|
||||
c-2.97-1.19-6.03-2.19-9.13-2.98c-4.53,9.52-4.05,18.42,4.55,24.93l84.12-80.09C301.04,77.82,292.03,79.72,282.27,83.51z"/>
|
||||
<path class="st1" d="M223.65,159.55l-0.38-0.29c-8.14-6.16-9.77-15.02-4.72-25.63l0.2-0.42l0.45,0.12
|
||||
c1.91,0.49,3.81,1.05,5.67,1.69l-5.04-3.87l0.25-0.43c2.65-4.63,6.45-9.49,11.29-14.44l0.3-0.31l3.35,1.84l-2.5-2.69l0.39-0.39
|
||||
c1.36-1.33,2.79-2.67,4.25-3.98l0.31-0.28l7.41,4.4l-5.51-6.05l0.45-0.38c4.77-4.03,10.01-7.92,15.59-11.55l0.28-0.18l0.3,0.16
|
||||
c2.11,1.14,4.17,2.37,6.17,3.7l-4.05-5.39l0.53-0.33c0.68-0.42,1.37-0.84,2.06-1.25l0.42-0.25l3.11,3.72l-0.34-5.34l0.31-0.18
|
||||
c4.9-2.77,9.79-5.2,14.52-7.21l0.44-0.19l0.26,0.41c0.97,1.52,2.01,3.01,3.1,4.45l-0.88-5.86l0.42-0.16
|
||||
c10.37-4.03,19.27-5.69,25.74-4.83l1.17,0.16L223.65,159.55z M219.38,134.54c-4.54,9.84-3.13,17.74,4.2,23.52l82.88-78.91
|
||||
c-6.08-0.49-14.17,1.13-23.55,4.73l1.36,9.12l-1.31-1.6c-1.51-1.85-2.93-3.8-4.24-5.82c-4.46,1.91-9.05,4.19-13.66,6.79
|
||||
l0.51,8.08l-4.71-5.64c-0.37,0.22-0.73,0.44-1.1,0.67l7.69,10.24l-3.06-2.22c-2.75-2-5.66-3.83-8.65-5.47
|
||||
c-5.25,3.44-10.21,7.1-14.74,10.9l9.84,10.81l-13.24-7.86c-1.2,1.08-2.38,2.18-3.51,3.28l6.56,7.04l-8.78-4.82
|
||||
c-4.49,4.63-8.04,9.16-10.57,13.48l10.5,8.07l-3.83-1.54C225.2,136.26,222.31,135.31,219.38,134.54z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M251.17,153.09c1.34,2.63,2.68,5.26,4.01,7.89c2.43-1.5,4.88-3.26,7.33-5.23
|
||||
c-2.77-3.61-5.54-7.23-8.31-10.84c3.39,3.1,6.78,6.21,10.16,9.31c3.95-3.34,7.87-7.2,11.65-11.4c-1.86-2.42-3.72-4.85-5.58-7.27
|
||||
c2.49,1.71,4.99,3.41,7.48,5.12c3.15-3.64,6.18-7.5,9.03-11.47c-2.61-2.92-5.22-5.84-7.84-8.75c3.18,2.12,6.35,4.23,9.53,6.35
|
||||
c2.93-4.24,5.64-8.58,8.03-12.89c-2.23-1.72-4.47-3.43-6.7-5.15c2.77,0.73,5.53,1.46,8.3,2.19c2.86-5.44,5.19-10.79,6.84-15.79
|
||||
c-1.55-0.6-3.04-1.35-4.45-2.25c1.74-0.1,3.49-0.2,5.23-0.29c1.49-5.19,2.18-9.93,1.84-13.9l-84.12,80.09
|
||||
c6.69,9.8,16.76,9.93,27.63,4.4C250.82,159.85,250.8,156.45,251.17,153.09z"/>
|
||||
<path class="st1" d="M238.03,167.45c-6.07,0-11.11-2.79-14.89-8.32l-0.27-0.4l0.35-0.33l84.97-80.9l0.1,1.18
|
||||
c0.33,3.93-0.29,8.67-1.86,14.11l-0.11,0.39l-3.75,0.21c0.88,0.47,1.8,0.89,2.74,1.26l0.5,0.19l-0.17,0.51
|
||||
c-1.63,4.95-3.94,10.29-6.87,15.88l-0.21,0.4l-6.01-1.59l4.85,3.73l-0.24,0.43c-2.4,4.32-5.11,8.67-8.06,12.94l-0.32,0.46
|
||||
l-6.27-4.18l5.16,5.76l-0.27,0.37c-2.88,4.02-5.93,7.89-9.06,11.51l-0.33,0.38l-4.95-3.39l3.7,4.81l-0.32,0.35
|
||||
c-3.88,4.31-7.82,8.16-11.71,11.45l-0.38,0.32l-5.76-5.28l4.71,6.15l-0.43,0.35c-2.5,2.01-4.99,3.78-7.38,5.27l-0.53,0.33
|
||||
l-3.39-6.67c-0.17,2.66-0.09,5.35,0.24,8.02l0.05,0.4l-0.36,0.18C246.6,166.21,242.08,167.45,238.03,167.45z M224.35,158.88
|
||||
c7.39,10.37,18.27,7.98,26.28,4c-0.38-3.28-0.39-6.59-0.03-9.85l0.21-1.89l4.59,9.03c2.06-1.3,4.17-2.82,6.31-4.51l-7.97-10.4
|
||||
l0.83-0.76l9.79,8.97c3.62-3.1,7.29-6.68,10.9-10.67l-7.47-9.72l10.01,6.85c2.89-3.37,5.72-6.95,8.4-10.67L275.7,117.5
|
||||
l12.78,8.52c2.71-3.95,5.21-7.97,7.45-11.96l-8.55-6.57l10.59,2.8c2.7-5.19,4.86-10.16,6.42-14.8c-1.41-0.58-2.77-1.29-4.04-2.1
|
||||
l-1.48-0.95l6.58-0.37c1.29-4.59,1.89-8.65,1.78-12.1L224.35,158.88z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M94.42,71.38c10.18,38.47,29.9,74.29,56.84,103.38c0.36,0.38,0.33,0.99-0.05,1.34
|
||||
c-0.38,0.36-0.99,0.33-1.34-0.05c0,0-0.01-0.01-0.01-0.01C123.18,146.29,103.99,110.01,94.42,71.38z"/>
|
||||
<path class="st1" d="M150.56,176.92c-0.02,0-0.04,0-0.06,0c-0.4-0.02-0.78-0.19-1.05-0.49c-26.75-29.83-45.96-66.1-55.58-104.92
|
||||
l1.1-0.28c10.16,38.38,29.77,74.05,56.7,103.14c0.28,0.3,0.42,0.68,0.4,1.09c-0.02,0.41-0.19,0.78-0.49,1.06
|
||||
C151.31,176.78,150.94,176.92,150.56,176.92z M150.25,175.63l0.03,0.03c0.07,0.07,0.16,0.11,0.26,0.12c0.1,0,0.2-0.03,0.27-0.1
|
||||
c0.08-0.07,0.12-0.16,0.12-0.27c0-0.1-0.03-0.2-0.1-0.27c-10.87-11.74-20.55-24.54-28.9-38.15
|
||||
C130.08,150.74,139.56,163.71,150.25,175.63z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M141.49,165.2c0.26-6.23,0.54-12.52,2.08-18.57c1.54-6.05,4.46-11.92,9.23-15.94
|
||||
c0.39,3.84,0.6,7.72,0.46,11.58s-0.83,7.75-2.5,11.23C148.62,157.95,145.08,161.83,141.49,165.2z"/>
|
||||
<path class="st1" d="M140.86,166.57l0.06-1.39c0.26-6.17,0.53-12.56,2.09-18.69c1.76-6.91,5.01-12.52,9.41-16.23l0.82-0.69
|
||||
l0.11,1.07c0.44,4.33,0.59,8.14,0.46,11.66c-0.16,4.4-1.02,8.26-2.56,11.46c-2.39,4.98-6.5,9.15-9.38,11.86L140.86,166.57z
|
||||
M152.34,131.86c-4.77,4.45-7.1,10.51-8.22,14.91c-1.41,5.55-1.75,11.37-2,17.04c2.7-2.62,6.08-6.3,8.12-10.56
|
||||
c1.47-3.06,2.29-6.76,2.45-11.01C152.8,139.09,152.68,135.68,152.34,131.86z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M142.59,166.2c-5.85-2.17-11.75-4.35-17.92-5.27c-6.17-0.92-12.71-0.5-18.27,2.34
|
||||
c3.39,1.85,6.89,3.54,10.5,4.9c3.61,1.36,7.47,2.24,11.33,2.04C133.14,169.97,138.09,168.21,142.59,166.2z"/>
|
||||
<path class="st1" d="M127.16,170.81c-3.25,0-6.76-0.71-10.47-2.1c-3.29-1.24-6.75-2.86-10.57-4.94l-0.95-0.51l0.96-0.49
|
||||
c5.13-2.62,11.56-3.45,18.61-2.39c6.26,0.93,12.25,3.16,18.04,5.3l1.31,0.48l-1.27,0.57c-3.61,1.61-9.05,3.78-14.57,4.06
|
||||
C127.89,170.8,127.52,170.81,127.16,170.81z M107.64,163.3c3.39,1.8,6.49,3.23,9.45,4.34c3.98,1.5,7.71,2.18,11.1,2.01
|
||||
c4.71-0.24,9.41-1.92,12.88-3.4c-5.33-1.97-10.82-3.91-16.49-4.76C120.08,160.82,113.59,160.62,107.64,163.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M136.76,159.07c-5.07-3.64-10.19-7.3-15.9-9.82c-5.71-2.52-12.13-3.84-18.24-2.56
|
||||
c2.79,2.68,5.71,5.23,8.84,7.5c3.13,2.27,6.61,4.13,10.39,4.96C126.65,160.2,131.89,159.81,136.76,159.07z"/>
|
||||
<path class="st1" d="M128.36,160.36c-2.18,0-4.45-0.18-6.64-0.66c-3.47-0.76-7.03-2.46-10.6-5.05c-2.85-2.07-5.76-4.54-8.9-7.55
|
||||
l-0.78-0.75l1.05-0.22c5.64-1.17,12.06-0.28,18.59,2.6c5.79,2.55,10.98,6.27,16,9.87l1.13,0.81l-1.38,0.21
|
||||
C134.52,159.98,131.53,160.36,128.36,160.36z M103.82,147.05c2.79,2.63,5.41,4.82,7.97,6.68c3.44,2.5,6.86,4.13,10.18,4.86
|
||||
c4.61,1.01,9.58,0.63,13.32,0.12c-4.62-3.3-9.41-6.63-14.65-8.94C116.47,147.94,110.26,146.03,103.82,147.05z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M128.23,146.88c-5.71-2.51-11.47-5.04-17.58-6.33c-6.11-1.29-12.66-1.25-18.38,1.25
|
||||
c3.28,2.04,6.66,3.94,10.19,5.52c3.53,1.58,7.32,2.67,11.19,2.71C118.57,150.08,123.62,148.61,128.23,146.88z"/>
|
||||
<path class="st1" d="M113.87,150.6c-0.08,0-0.15,0-0.22,0c-3.55-0.03-7.39-0.96-11.41-2.76c-3.21-1.44-6.57-3.25-10.26-5.55
|
||||
l-0.91-0.57l0.99-0.43c5.27-2.31,11.75-2.75,18.72-1.29c6.19,1.3,12.04,3.88,17.69,6.36l1.28,0.56l-1.3,0.49
|
||||
C124.78,148.79,119.32,150.6,113.87,150.6z M93.52,141.91c3.28,2,6.29,3.6,9.18,4.9c3.88,1.73,7.57,2.63,10.96,2.66
|
||||
c4.72,0.04,9.51-1.36,13.06-2.63c-5.2-2.28-10.57-4.54-16.18-5.73C106.08,140.17,99.62,139.59,93.52,141.91z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M122.45,137.66c-4.94-2.92-9.93-5.85-15.37-7.69c-5.44-1.84-11.43-2.52-16.92-0.86
|
||||
c2.77,2.22,5.66,4.32,8.71,6.15c3.05,1.82,6.4,3.24,9.92,3.69C113.28,139.53,118.05,138.74,122.45,137.66z"/>
|
||||
<path class="st1" d="M111.96,139.71c-1.08,0-2.16-0.06-3.24-0.2c-3.24-0.42-6.65-1.69-10.14-3.77c-2.78-1.66-5.65-3.69-8.77-6.19
|
||||
l-0.84-0.67l1.03-0.31c5.08-1.54,11.05-1.24,17.26,0.86c5.51,1.87,10.58,4.85,15.47,7.74l1.2,0.71l-1.35,0.33
|
||||
C119.8,138.89,115.94,139.71,111.96,139.71z M91.4,129.36c2.75,2.16,5.29,3.93,7.77,5.41c3.35,2,6.61,3.22,9.7,3.62
|
||||
c4.25,0.55,8.72-0.19,12.08-0.95c-4.47-2.63-9.09-5.25-14.04-6.93C102.97,129.17,97.18,127.94,91.4,129.36z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M116.12,127.23c-3.94-3.41-7.92-6.85-12.48-9.38c-4.56-2.53-9.8-4.12-14.99-3.53
|
||||
c2.12,2.44,4.35,4.79,6.78,6.92c2.43,2.13,5.19,3.94,8.27,4.92C107.62,127.4,112.02,127.48,116.12,127.23z"/>
|
||||
<path class="st1" d="M112.62,127.91c-2.81,0-6.07-0.25-9.09-1.22c-2.84-0.9-5.69-2.6-8.47-5.03c-2.22-1.94-4.45-4.22-6.84-6.97
|
||||
l-0.71-0.81l1.07-0.12c4.8-0.55,10.1,0.69,15.33,3.59c4.63,2.57,8.67,6.07,12.58,9.45l1.05,0.91l-1.39,0.08
|
||||
C115.12,127.86,113.92,127.91,112.62,127.91z M89.82,114.79c2.07,2.34,4.04,4.31,5.99,6.02c2.66,2.33,5.37,3.95,8.06,4.81
|
||||
c3.65,1.16,7.7,1.25,10.81,1.12c-3.53-3.05-7.21-6.11-11.32-8.39C100.09,116.52,95.17,114.5,89.82,114.79z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M111.27,117.56c-3.26-3.41-6.55-6.85-10.44-9.51c-3.89-2.67-8.48-4.54-13.2-4.45
|
||||
c1.7,2.38,3.51,4.68,5.52,6.81c2.01,2.12,4.34,3.99,7.03,5.13C103.6,116.99,107.55,117.43,111.27,117.56z"/>
|
||||
<path class="st1" d="M112.64,118.17l-1.39-0.05c-3-0.1-7.44-0.43-11.3-2.07c-2.49-1.06-4.91-2.83-7.22-5.27
|
||||
c-1.83-1.94-3.65-4.19-5.57-6.87l-0.63-0.88l1.08-0.02c4.39-0.09,9.06,1.49,13.53,4.55c3.95,2.71,7.3,6.21,10.53,9.59
|
||||
L112.64,118.17z M88.75,104.17c1.64,2.24,3.22,4.16,4.81,5.83c2.19,2.32,4.49,4,6.84,5c3.13,1.33,6.7,1.76,9.48,1.92
|
||||
c-2.89-3.01-5.91-6.04-9.37-8.41C97.74,106.61,93.53,104.4,88.75,104.17z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M106.6,107.17c-2.34-3.33-4.7-6.69-7.68-9.47c-2.97-2.78-6.65-4.98-10.68-5.51
|
||||
c1.14,2.25,2.39,4.45,3.83,6.52c1.44,2.07,3.18,3.97,5.33,5.29C100.13,105.69,103.44,106.58,106.6,107.17z"/>
|
||||
<path class="st1" d="M107.87,107.98l-1.37-0.26c-2.55-0.48-6.31-1.33-9.4-3.24c-1.99-1.23-3.84-3.07-5.5-5.45
|
||||
c-1.31-1.9-2.58-4.05-3.87-6.59l-0.49-0.96l1.07,0.14c3.77,0.5,7.57,2.45,11,5.66c3.03,2.83,5.43,6.25,7.76,9.56L107.87,107.98z
|
||||
M89.27,92.94c1.09,2.06,2.16,3.85,3.27,5.45c1.56,2.26,3.3,3.98,5.16,5.13c2.42,1.49,5.3,2.32,7.62,2.81
|
||||
c-2.04-2.89-4.19-5.8-6.78-8.22C96.46,96.16,93.22,93.78,89.27,92.94z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M103.1,98.5c-1.87-3.22-3.75-6.47-6.24-9.24c-2.49-2.77-5.66-5.07-9.29-5.87c0.86,2.14,1.82,4.25,2.96,6.25
|
||||
c1.14,2,2.58,3.87,4.43,5.25C97.32,96.64,100.27,97.71,103.1,98.5z"/>
|
||||
<path class="st1" d="M104.28,99.42l-1.34-0.37c-2.29-0.64-5.65-1.72-8.32-3.71c-1.72-1.29-3.27-3.11-4.59-5.42
|
||||
c-1.05-1.83-2.03-3.9-3-6.32l-0.4-1l1.05,0.23c3.4,0.76,6.72,2.85,9.59,6.05c2.54,2.83,4.45,6.14,6.31,9.34L104.28,99.42z
|
||||
M88.53,84.23c0.81,1.92,1.63,3.61,2.5,5.12c1.24,2.17,2.68,3.88,4.28,5.07c2.04,1.52,4.54,2.49,6.59,3.13
|
||||
c-1.61-2.76-3.31-5.53-5.45-7.92C94.72,87.72,92.01,85.32,88.53,84.23z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M100.45,90.88c-1.42-3.28-2.85-6.58-4.9-9.49c-2.06-2.92-4.82-5.45-8.19-6.63c0.58,2.13,1.26,4.25,2.12,6.28
|
||||
c0.86,2.03,2.03,3.97,3.63,5.49C95.16,88.46,97.84,89.81,100.45,90.88z"/>
|
||||
<path class="st1" d="M101.52,91.93l-1.29-0.53c-2.11-0.87-5.19-2.27-7.51-4.47c-1.5-1.42-2.77-3.33-3.76-5.68
|
||||
c-0.79-1.86-1.49-3.94-2.15-6.35l-0.28-1.04l1.02,0.35c3.16,1.1,6.08,3.47,8.46,6.84c2.1,2.98,3.56,6.34,4.96,9.6L101.52,91.93z
|
||||
M88.21,75.71c0.55,1.9,1.14,3.58,1.79,5.1c0.94,2.21,2.12,3.99,3.5,5.3c1.75,1.66,3.99,2.85,5.86,3.68
|
||||
c-1.22-2.78-2.52-5.59-4.28-8.08C93.67,79.71,91.37,77.14,88.21,75.71z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M97.74,82.86c-0.92-3.16-1.85-6.35-3.4-9.26s-3.79-5.55-6.74-7.01c0.29,2.02,0.67,4.03,1.22,6
|
||||
c0.56,1.96,1.4,3.87,2.7,5.45C93.17,80.04,95.47,81.58,97.74,82.86z"/>
|
||||
<path class="st1" d="M98.67,84.04l-1.21-0.68c-1.84-1.04-4.5-2.68-6.38-4.97c-1.21-1.48-2.16-3.38-2.81-5.65
|
||||
c-0.51-1.8-0.92-3.78-1.24-6.07l-0.15-1.07l0.97,0.48c2.77,1.38,5.19,3.88,6.99,7.25c1.58,2.97,2.53,6.22,3.45,9.37L98.67,84.04z
|
||||
M88.33,67.65c0.28,1.76,0.63,3.34,1.04,4.78c0.6,2.12,1.48,3.89,2.59,5.24c1.38,1.68,3.25,3.01,4.84,3.98
|
||||
c-0.78-2.65-1.65-5.34-2.96-7.78C92.78,71.9,91.01,69.32,88.33,67.65z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M138.84,160.98c-1.88-5.95-3.76-11.96-4.38-18.17c-0.61-6.21,0.13-12.72,3.24-18.13
|
||||
c1.67,3.48,3.19,7.05,4.37,10.73c1.18,3.68,1.86,7.57,1.48,11.41C143.07,151.73,141.07,156.59,138.84,160.98z"/>
|
||||
<path class="st1" d="M138.72,162.48l-0.42-1.33c-1.86-5.89-3.78-11.98-4.4-18.28c-0.7-7.09,0.45-13.48,3.32-18.47l0.54-0.93
|
||||
l0.47,0.97c1.89,3.92,3.33,7.45,4.4,10.8c1.35,4.2,1.85,8.11,1.5,11.64c-0.55,5.49-2.99,10.82-4.78,14.35L138.72,162.48z
|
||||
M137.68,125.94c-2.97,5.81-3.09,12.3-2.65,16.82c0.56,5.71,2.23,11.29,3.93,16.71c1.65-3.39,3.57-8,4.04-12.69
|
||||
c0.34-3.38-0.15-7.14-1.45-11.18C140.58,132.58,139.31,129.41,137.68,125.94z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M130.31,149.85c-0.91-5.83-1.83-11.7-1.52-17.59s1.92-11.87,5.59-16.48c1.07,3.49,1.98,7.04,2.57,10.64
|
||||
c0.59,3.6,0.67,7.34-0.23,10.87C135.57,141.81,133.01,146.07,130.31,149.85z"/>
|
||||
<path class="st1" d="M129.96,151.32l-0.22-1.38c-0.9-5.77-1.84-11.73-1.53-17.71c0.35-6.73,2.32-12.54,5.72-16.81l0.67-0.84
|
||||
l0.32,1.03c1.21,3.93,2.05,7.44,2.59,10.72c0.67,4.11,0.59,7.85-0.24,11.1c-1.29,5.06-4.33,9.7-6.5,12.74L129.96,151.32z
|
||||
M134.16,117.02c-3.56,4.99-4.58,11-4.81,15.27c-0.28,5.38,0.48,10.8,1.3,16.08c2.01-2.93,4.42-6.93,5.51-11.21
|
||||
c0.79-3.1,0.87-6.68,0.22-10.64C135.91,123.59,135.18,120.47,134.16,117.02z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M124.52,140.96c-1.51-4.97-3.02-9.98-3.48-15.15c-0.45-5.17,0.22-10.58,2.86-15.05
|
||||
c1.36,2.91,2.59,5.89,3.54,8.96c0.95,3.07,1.48,6.31,1.13,9.51C128.12,133.3,126.41,137.33,124.52,140.96z"/>
|
||||
<path class="st1" d="M124.38,142.46l-0.4-1.33c-1.49-4.92-3.04-10.01-3.5-15.26c-0.52-5.92,0.49-11.24,2.94-15.39l0.55-0.93
|
||||
l0.46,0.98c1.53,3.28,2.7,6.24,3.57,9.04c1.09,3.51,1.47,6.79,1.15,9.74c-0.51,4.58-2.59,9-4.11,11.92L124.38,142.46z
|
||||
M123.86,112.02c-2.42,4.74-2.58,10.03-2.25,13.74c0.41,4.66,1.7,9.23,3.04,13.68c1.37-2.77,2.93-6.48,3.35-10.27
|
||||
c0.31-2.79-0.06-5.91-1.1-9.27C126.14,117.44,125.14,114.85,123.86,112.02z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M116.9,127.45c-0.35-4.58-0.69-9.19-0.09-13.74c0.6-4.55,2.23-9.09,5.36-12.44c0.62,2.77,1.1,5.59,1.33,8.42
|
||||
s0.06,5.73-0.86,8.42C121.48,121.54,119.23,124.68,116.9,127.45z"/>
|
||||
<path class="st1" d="M116.44,128.89l-0.1-1.39c-0.34-4.54-0.7-9.23-0.08-13.86c0.69-5.23,2.6-9.64,5.51-12.75l0.74-0.79
|
||||
l0.23,1.05c0.69,3.13,1.13,5.91,1.34,8.49c0.26,3.25-0.03,6.16-0.89,8.65c-1.32,3.86-3.97,7.29-5.85,9.52L116.44,128.89z
|
||||
M121.86,102.5c-2.93,3.59-4.06,8.06-4.48,11.29c-0.53,4.04-0.31,8.17-0.01,12.21c1.69-2.11,3.69-4.96,4.75-8.07
|
||||
c0.8-2.34,1.08-5.1,0.83-8.19C122.76,107.51,122.4,105.14,121.86,102.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M112.46,119.46c-0.02-4.05-0.03-8.14,0.79-12.1c0.82-3.97,2.53-7.86,5.51-10.61
|
||||
c0.37,2.48,0.62,4.99,0.64,7.5c0.02,2.51-0.31,5.05-1.28,7.36C116.87,114.54,114.69,117.17,112.46,119.46z"/>
|
||||
<path class="st1" d="M111.9,120.86l-0.01-1.39c-0.02-4.02-0.03-8.18,0.8-12.22c0.94-4.57,2.9-8.35,5.68-10.92l0.79-0.73
|
||||
l0.16,1.07c0.41,2.8,0.63,5.28,0.65,7.57c0.03,2.89-0.42,5.44-1.33,7.59c-1.41,3.33-3.97,6.18-5.77,8.04L111.9,120.86z
|
||||
M118.35,97.95c-2.73,2.96-3.97,6.75-4.55,9.52c-0.71,3.46-0.78,7.05-0.78,10.57c1.59-1.74,3.46-4.06,4.57-6.66
|
||||
c0.85-2,1.27-4.4,1.24-7.13C118.81,102.32,118.66,100.25,118.35,97.95z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M108.9,111.78c-0.74-3.85-1.48-7.74-1.41-11.66s1.01-7.93,3.34-11.08c0.79,2.3,1.48,4.64,1.95,7.02
|
||||
c0.47,2.38,0.61,4.86,0.09,7.23C112.22,106.32,110.61,109.2,108.9,111.78z"/>
|
||||
<path class="st1" d="M108.61,113.26l-0.26-1.37c-0.73-3.82-1.49-7.78-1.42-11.78c0.08-4.52,1.27-8.47,3.46-11.41l0.64-0.87
|
||||
l0.35,1.02c0.89,2.59,1.54,4.91,1.97,7.09c0.54,2.75,0.57,5.26,0.09,7.47c-0.75,3.42-2.67,6.6-4.06,8.68L108.61,113.26z
|
||||
M110.66,90.31c-2.05,3.29-2.55,7.1-2.6,9.83c-0.06,3.4,0.51,6.82,1.13,10.15c1.2-1.93,2.55-4.46,3.13-7.11
|
||||
c0.45-2.05,0.42-4.41-0.09-7C111.87,94.35,111.35,92.42,110.66,90.31z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M103.63,100c-0.06-3.92-0.11-7.88,0.64-11.73c0.75-3.85,2.37-7.64,5.22-10.33c0.38,2.4,0.65,4.82,0.7,7.25
|
||||
c0.05,2.43-0.24,4.89-1.17,7.14C107.84,95.19,105.76,97.76,103.63,100z"/>
|
||||
<path class="st1" d="M103.08,101.4l-0.02-1.39c-0.06-3.89-0.11-7.92,0.65-11.84c0.87-4.44,2.73-8.12,5.39-10.64l0.78-0.74
|
||||
l0.17,1.06c0.43,2.71,0.66,5.11,0.7,7.33c0.06,2.8-0.35,5.28-1.21,7.37c-1.34,3.24-3.78,6.03-5.51,7.84L103.08,101.4z
|
||||
M109.1,79.16c-2.59,2.88-3.75,6.55-4.28,9.23c-0.65,3.34-0.69,6.8-0.65,10.19c1.52-1.69,3.28-3.95,4.32-6.45
|
||||
c0.8-1.94,1.18-4.27,1.13-6.91C109.58,83.35,109.41,81.36,109.1,79.16z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M101.25,93.24c-0.72-3.59-1.45-7.22-1.42-10.88c0.03-3.67,0.87-7.42,3.02-10.39
|
||||
c0.76,2.14,1.42,4.32,1.89,6.54c0.46,2.22,0.62,4.54,0.15,6.76C104.29,88.1,102.82,90.82,101.25,93.24z"/>
|
||||
<path class="st1" d="M100.96,94.72l-0.28-1.37c-0.72-3.57-1.46-7.26-1.44-11c0.03-4.24,1.12-7.94,3.13-10.72l0.63-0.87l0.36,1.01
|
||||
c0.86,2.42,1.48,4.58,1.91,6.62c0.53,2.57,0.58,4.92,0.15,6.99c-0.67,3.21-2.44,6.2-3.72,8.16L100.96,94.72z M102.68,73.25
|
||||
c-1.84,3.07-2.28,6.6-2.3,9.12c-0.02,3.14,0.52,6.29,1.13,9.37c1.09-1.8,2.29-4.14,2.8-6.58c0.4-1.92,0.35-4.11-0.15-6.53
|
||||
C103.83,76.95,103.34,75.18,102.68,73.25z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M97.82,83.35c-0.22-3.66-0.45-7.35,0.09-10.97c0.53-3.63,1.88-7.23,4.43-9.87c0.46,2.22,0.82,4.47,0.97,6.74
|
||||
c0.15,2.26-0.01,4.58-0.78,6.71C101.54,78.68,99.71,81.16,97.82,83.35z"/>
|
||||
<path class="st1" d="M97.34,84.77l-0.09-1.39c-0.22-3.63-0.45-7.39,0.09-11.09c0.62-4.19,2.2-7.71,4.58-10.18l0.75-0.78
|
||||
l0.22,1.05c0.52,2.51,0.84,4.74,0.98,6.82c0.18,2.61-0.1,4.95-0.81,6.94c-1.11,3.09-3.27,5.8-4.8,7.57L97.34,84.77z M102,63.74
|
||||
c-2.25,2.79-3.16,6.22-3.53,8.72c-0.46,3.11-0.35,6.31-0.17,9.44c1.33-1.64,2.84-3.78,3.68-6.13c0.66-1.85,0.91-4.03,0.75-6.49
|
||||
C102.62,67.57,102.38,65.75,102,63.74z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M96.48,78.99c-1.45-3.37-2.9-6.77-3.63-10.36c-0.72-3.59-0.67-7.44,0.83-10.79
|
||||
c1.18,1.94,2.28,3.93,3.19,6.01c0.91,2.08,1.53,4.31,1.53,6.58C98.41,73.34,97.52,76.29,96.48,78.99z"/>
|
||||
<path class="st1" d="M96.51,80.5l-0.55-1.28c-1.44-3.34-2.92-6.8-3.66-10.47c-0.84-4.15-0.54-8,0.87-11.13l0.44-0.98l0.56,0.92
|
||||
c1.34,2.19,2.39,4.18,3.22,6.08c1.05,2.4,1.58,4.69,1.58,6.81c0,3.28-1.12,6.57-1.96,8.75L96.51,80.5z M93.79,59.12
|
||||
c-1.18,3.38-0.87,6.92-0.38,9.4c0.62,3.08,1.81,6.05,3.03,8.94c0.7-1.99,1.4-4.52,1.4-7.01c0-1.96-0.5-4.1-1.49-6.36
|
||||
C95.67,62.52,94.82,60.89,93.79,59.12z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M302.33,204.65H71.76c-0.92,0-1.66-0.34-1.66-0.76s0.74-0.76,1.66-0.76h230.56c0.92,0,1.66,0.34,1.66,0.76
|
||||
S303.24,204.65,302.33,204.65z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M42.32,117.1c-0.21,0-0.4-0.13-0.47-0.33c-0.1-0.26,0.04-0.55,0.3-0.65c0.71-0.26,17.61-6.34,30.23,0.02
|
||||
c0.25,0.13,0.35,0.43,0.22,0.68c-0.13,0.25-0.43,0.35-0.68,0.22c-12.23-6.16-29.26-0.04-29.43,0.02
|
||||
C42.43,117.09,42.37,117.1,42.32,117.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M262.02,98.66v92.68c0,6.98-5.66,12.64-12.64,12.64H120.62c-6.98,0-12.63-5.66-12.63-12.64V98.66
|
||||
c0-6.98,5.66-12.64,12.63-12.64h128.76C256.36,86.02,262.02,91.68,262.02,98.66z"/>
|
||||
<path class="st2" d="M249.38,204.54H120.62c-7.28,0-13.2-5.92-13.2-13.21V98.66c0-7.28,5.92-13.21,13.2-13.21h128.76
|
||||
c7.28,0,13.21,5.92,13.21,13.21v92.68C262.59,198.62,256.66,204.54,249.38,204.54z M120.62,86.58c-6.65,0-12.07,5.42-12.07,12.07
|
||||
v92.68c0,6.66,5.41,12.07,12.07,12.07h128.76c6.66,0,12.07-5.42,12.07-12.07V98.66c0-6.66-5.42-12.07-12.07-12.07H120.62z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M262.02,98.66v2.75H107.98v-2.75c0-6.98,5.66-12.64,12.63-12.64h128.76
|
||||
C256.36,86.02,262.02,91.68,262.02,98.66z"/>
|
||||
<path class="st2" d="M262.3,101.69H107.7v-3.04c0-7.13,5.79-12.92,12.92-12.92h128.76c7.13,0,12.92,5.8,12.92,12.92V101.69z
|
||||
M108.27,101.13h153.47v-2.47c0-6.81-5.54-12.36-12.36-12.36H120.62c-6.81,0-12.35,5.54-12.35,12.36V101.13z"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle class="st0" cx="117.47" cy="94.82" r="2.85"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle class="st0" cx="127.05" cy="94.82" r="2.85"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle class="st0" cx="136.62" cy="94.6" r="2.85"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M249.84,41.67h-30.68c-7.14,0-12.93,5.79-12.93,12.93v0c0,6.28,4.47,11.51,10.41,12.68l0.57,4.38
|
||||
c0.11,0.82,1.08,1.2,1.71,0.66l5.64-4.79h25.28c7.14,0,12.93-5.79,12.93-12.93v0C262.77,47.46,256.98,41.67,249.84,41.67z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M124.64,44.59c0-6.01-4.87-10.88-10.88-10.88H87.92c-6.01,0-10.88,4.87-10.88,10.88s4.87,10.88,10.88,10.88
|
||||
h21.73l4.44,3.74c0.47,0.35,1.13,0.01,1.13-0.57v-3.28C120.53,54.65,124.64,50.1,124.64,44.59z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M114.62,42.81H86.07c-0.63,0-1.14-0.51-1.14-1.14c0-0.63,0.51-1.14,1.14-1.14h28.55
|
||||
c0.63,0,1.14,0.51,1.14,1.14C115.75,42.3,115.25,42.81,114.62,42.81z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M114.62,47.67H98.41c-0.63,0-1.14-0.51-1.14-1.14c0-0.63,0.51-1.14,1.14-1.14h16.21
|
||||
c0.63,0,1.14,0.51,1.14,1.14C115.75,47.16,115.25,47.67,114.62,47.67z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M250.53,53.4h-28.55c-0.63,0-1.14-0.51-1.14-1.14c0-0.63,0.51-1.14,1.14-1.14h28.55
|
||||
c0.63,0,1.14,0.51,1.14,1.14C251.67,52.89,251.16,53.4,250.53,53.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M238.25,58.26h-16.21c-0.63,0-1.14-0.51-1.14-1.14c0-0.63,0.51-1.14,1.14-1.14h16.21
|
||||
c0.63,0,1.14,0.51,1.14,1.14C239.39,57.75,238.88,58.26,238.25,58.26z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="st0" points="51.48,73.77 53.99,73.24 52.96,79.78 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M53.12,74.16l-0.31,1.99l-0.45-1.83L53.12,74.16 M54.86,72.31l-4.25,0.91l2.51,10.19L54.86,72.31
|
||||
L54.86,72.31z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="st0" points="23.34,64.8 59.34,63.54 54.97,70.4 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M30.17,65.28L58,64.31l-3.38,5.3L30.17,65.28 M16.51,64.32l38.81,6.87l5.36-8.41L16.51,64.32L16.51,64.32z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="st0" points="19.57,65.69 53.8,72.83 47.18,86.1 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M22.64,67.06l30.11,6.27l-5.82,11.67L22.64,67.06 M16.51,64.32l30.94,22.86l7.42-14.87L16.51,64.32
|
||||
L16.51,64.32z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M186.82,72.28c-1.16,16.93-7.31,24.44-12.41,25.69l-32.62-24.34c0,0-7.41-7.31-1.25-12.89
|
||||
c0,0-4.91-10.81,4.91-15.3c13.59-6.22,25.89,11.74,25.89,11.74s3.63-0.4,7.38,0.9C182.99,59.56,187.43,63.25,186.82,72.28z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M186.43,103.65l-6.16,34.83l-23.67,3.17l-7.47-23.23l5.83-1.79l-0.47-6.44l-0.31-4.24
|
||||
c0,0-17.37,3.75-17.32-9.53c0.06-13.23,5.68-31.56,5.68-31.56s3.37,8.95,22.8,0.87c0,0-2.98,6.83,5.87,8.27
|
||||
c0,0-4.72,2.02-1.73,11.07c2.98,9.04,4.23,8.66,4.23,8.66l5.1,15.3L186.43,103.65z"/>
|
||||
<path class="st2" d="M156.21,142.28l-7.79-24.23l5.95-1.83l-0.69-9.59c-2.22,0.38-9.61,1.29-14.03-2.29
|
||||
c-2.23-1.8-3.35-4.47-3.33-7.92c0.06-13.16,5.65-31.54,5.7-31.72l0.49-1.59l0.59,1.56c0.03,0.07,0.75,1.85,3.41,2.98
|
||||
c2.88,1.23,8.46,1.8,18.65-2.44l1.3-0.54l-0.56,1.29c-0.01,0.02-1.03,2.45,0.1,4.52c0.84,1.52,2.63,2.52,5.34,2.96l1.93,0.31
|
||||
l-1.79,0.77c-0.17,0.08-4.18,1.99-1.42,10.37c2.2,6.68,3.41,8,3.7,8.24l0.35-0.11l5.03,15.1l8.11-5.75l-6.47,36.6L156.21,142.28z
|
||||
M149.86,118.8l7.14,22.23l22.78-3.06l5.85-33.06l-7.1,5.03l-5.25-15.75c-1.12-0.62-2.57-3.62-4.32-8.93
|
||||
c-2.17-6.57-0.43-9.65,0.9-10.95c-2.38-0.6-4.02-1.7-4.88-3.29c-0.85-1.57-0.74-3.23-0.51-4.31c-9.91,3.91-15.51,3.25-18.49,1.96
|
||||
c-1.65-0.71-2.66-1.67-3.25-2.42c-1.24,4.3-5.25,19.13-5.3,30.18c-0.01,3.09,0.97,5.45,2.91,7.03c4.71,3.82,13.63,1.96,13.72,1.94
|
||||
l0.64-0.14l0.85,11.78L149.86,118.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M167.09,99.51c0,0-4.87,6.08-12.59,10.2l-0.31-4.24C154.2,105.47,160.07,104.6,167.09,99.51z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M108.43,154.65c0,0-4.35-2.25-3.14-4.83c1.21-2.58,5.6-0.17,5.6-0.17L108.43,154.65z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M226.21,109.25l6.06,3.15c0,0,2.43-5.25-0.03-6.37S227.82,105.91,226.21,109.25z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M135.17,161.52l0.88-0.25c0,0-11.48,33.1-30.17,35c-18.95,1.92-29.28-22.42-31.96-27.24
|
||||
c-2.69-4.82-11.93-36.15-14.24-40.97c-2.31-4.83-9.31-6.69-13.96-7.8c-4.66-1.11-7.09-4.3-7.09-4.3c-2.35-0.31-6.6-6.25-7.71-7.44
|
||||
c-1.11-1.19-0.79-2.88-0.79-2.88l-2.8-3.03c-0.3-2.72,3.55-1.7,3.55-1.7l6.28,3.82c0,0-2.93-6.59-2.65-7.64
|
||||
c0.46-1.71,4.71,1.23,5.85,4.05c1.14,2.83,3.73,5.53,8.66,7.76c4.92,2.22,8.47,2.34,8.47,2.34c2.35-1.08,7.57-1.8,7.57-1.8
|
||||
c-2.41-2.16-4.69-7.69-4.57-10.16c0.12-2.46,3-1.74,3.67-0.42c0.66,1.32,1.38,4.93,6.73,6.79c4.6,1.6,7.96,10.29,8.81,12.67
|
||||
c0.01,0.02,0.01,0.03,0.02,0.05c0.13,0.36,0.19,0.56,0.19,0.56l21.22,43.24c0.44,0.89,1.69,0.9,2.15,0.03l7.17-11.6L135.17,161.52
|
||||
z"/>
|
||||
<path class="st2" d="M103.75,196.95c-16.18,0-25.68-18.58-29.35-25.77c-0.4-0.79-0.72-1.42-0.98-1.87
|
||||
c-1.51-2.71-4.92-13.22-8.21-23.39c-2.58-7.96-5.02-15.49-6.04-17.62c-2.29-4.81-9.91-6.62-13.58-7.49
|
||||
c-4.22-1-6.67-3.62-7.27-4.33c-1.9-0.45-4.4-3.38-6.81-6.36c-0.44-0.55-0.79-0.98-1.01-1.21c-1-1.08-1.02-2.47-0.97-3.07
|
||||
l-2.75-2.97l-0.02-0.19c-0.11-1.03,0.29-1.62,0.64-1.92c1.16-1,3.37-0.45,3.62-0.39l0.15,0.06l4.75,2.89
|
||||
c-0.98-2.31-2.2-5.49-1.97-6.37c0.15-0.55,0.57-0.89,1.15-0.93c1.68-0.09,4.83,2.56,5.78,4.91c1.2,2.98,4.02,5.49,8.37,7.45
|
||||
c4.24,1.91,7.47,2.23,8.13,2.28c1.78-0.78,4.87-1.35,6.51-1.62c-2.23-2.63-4.09-7.47-3.97-9.79c0.06-1.14,0.64-1.92,1.61-2.12
|
||||
c1.15-0.24,2.62,0.45,3.14,1.48c0.1,0.2,0.2,0.44,0.31,0.72c0.65,1.6,1.74,4.27,6.1,5.79c4.8,1.67,8.22,10.39,9.15,13.02
|
||||
c0.11,0.31,0.18,0.5,0.2,0.59l21.2,43.21c0.11,0.22,0.32,0.35,0.57,0.36c0.26,0,0.46-0.12,0.57-0.34l7.45-12.05l24.98,11.03
|
||||
l1.73-0.49l-0.36,1.03c-0.03,0.08-2.95,8.43-8.13,16.9c-6.91,11.29-14.69,17.69-22.52,18.48
|
||||
C105.2,196.91,104.47,196.95,103.75,196.95z M27.88,102.37l2.86,3.09l-0.05,0.28c0,0.01-0.24,1.43,0.65,2.39
|
||||
c0.24,0.26,0.6,0.71,1.06,1.27c1.52,1.88,4.67,5.78,6.31,5.99l0.23,0.03l0.14,0.19c0.02,0.03,2.38,3.05,6.77,4.09
|
||||
c3.83,0.91,11.81,2.81,14.34,8.11c1.05,2.2,3.5,9.75,6.09,17.75c3.13,9.64,6.67,20.58,8.13,23.19c0.26,0.47,0.59,1.1,1,1.91
|
||||
c3.74,7.32,13.66,26.75,30.41,25.04c16.27-1.66,27.17-27.99,29.31-33.58l-24.45-10.79l-6.91,11.18c-0.29,0.56-0.91,0.9-1.57,0.91
|
||||
c-0.67-0.01-1.27-0.39-1.57-0.99l-21.24-43.29l-0.01-0.04c0-0.01-0.06-0.2-0.18-0.53l-0.02-0.06c-1.83-5.17-5.02-11.12-8.46-12.32
|
||||
c-4.85-1.69-6.1-4.78-6.78-6.44c-0.1-0.25-0.19-0.46-0.27-0.64c-0.29-0.57-1.24-1.01-1.89-0.87c-0.16,0.03-0.66,0.14-0.71,1.07
|
||||
c-0.11,2.31,2.08,7.64,4.38,9.71l0.91,0.82L65.15,110c-0.05,0.01-5.17,0.72-7.41,1.75l-0.12,0.06l-0.13,0
|
||||
c-0.15,0-3.72-0.15-8.69-2.39c-4.62-2.09-7.64-4.8-8.95-8.06c-0.86-2.13-3.63-4.28-4.66-4.21c-0.1,0.01-0.1,0.02-0.12,0.09
|
||||
c-0.1,0.62,1.29,4.25,2.62,7.26l0.74,1.66l-7.76-4.71c-0.55-0.13-1.94-0.33-2.51,0.17C28.08,101.67,27.87,101.85,27.88,102.37z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M79.71,118.33c-2.92-7.69-14.63-8.89-14.63-8.89c-2.41-2.16-4.69-7.69-4.57-10.16c0.12-2.46,3-1.74,3.67-0.42
|
||||
c0.66,1.32,1.38,4.93,6.73,6.79C75.51,107.25,78.86,115.94,79.71,118.33z"/>
|
||||
<path class="st2" d="M79.18,118.53c-2.76-7.28-14.05-8.51-14.16-8.52l-0.18-0.02l-0.14-0.12c-2.55-2.3-4.88-8.01-4.76-10.61
|
||||
c0.06-1.14,0.64-1.92,1.61-2.12c1.15-0.24,2.62,0.45,3.14,1.48c0.1,0.2,0.2,0.44,0.31,0.72c0.65,1.6,1.74,4.27,6.1,5.79
|
||||
c4.8,1.67,8.22,10.39,9.16,13.02L79.18,118.53z M65.32,108.9c0.72,0.09,3.29,0.47,6.18,1.57c2.29,0.88,4.2,2,5.69,3.33
|
||||
c-1.78-3.6-4.07-6.77-6.47-7.61c-4.85-1.69-6.1-4.78-6.78-6.44c-0.1-0.25-0.19-0.46-0.27-0.64c-0.29-0.57-1.24-1.01-1.89-0.87
|
||||
c-0.16,0.03-0.66,0.14-0.71,1.07C60.96,101.58,63.07,106.74,65.32,108.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M53.41,112.38c-6.93,0-15.77-6.45-16.2-6.76c-0.25-0.19-0.31-0.54-0.12-0.79c0.19-0.25,0.54-0.31,0.79-0.12
|
||||
c0.12,0.09,11.72,8.55,18.19,6.1c0.29-0.11,0.62,0.04,0.73,0.33c0.11,0.29-0.04,0.62-0.33,0.73
|
||||
C55.52,112.22,54.49,112.38,53.41,112.38z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M47.28,115.42c-4.14,0-6.86-4.67-7.98-6.6l-0.22-0.38c-0.37-0.63-0.91-0.89-1.64-0.79
|
||||
c-0.6,0.08-1.09,0.36-1.09,0.36l-0.31,0.18l-0.3-0.2c-0.02-0.01-2.25-1.51-3.6-2.13c-0.97-0.45-1.52,0.1-1.58,0.16
|
||||
c-0.21,0.23-0.57,0.25-0.8,0.04c-0.23-0.21-0.25-0.56-0.05-0.79c0.38-0.44,1.48-1.09,2.9-0.44c1.16,0.53,2.83,1.61,3.49,2.04
|
||||
c0.28-0.12,0.71-0.28,1.2-0.35c1.18-0.15,2.16,0.32,2.76,1.34l0.23,0.39c1.28,2.2,4.28,7.37,8.74,5.7
|
||||
c5.13-1.92,8.22-3.22,8.25-3.23c0.29-0.12,0.62,0.01,0.74,0.3c0.12,0.29-0.01,0.62-0.3,0.74c-0.03,0.01-3.14,1.32-8.3,3.25
|
||||
C48.67,115.29,47.96,115.42,47.28,115.42z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M252.4,203.97h-92.57l-7.1-15.22l-4.26-9.15l-7.77-16.65l-2.55-5.46l-0.06-0.12l-1.48,4.15l-4.3-1.9
|
||||
l-4.99-2.2l-17.66-7.78c0,0-2.87-1.12-3.78-0.39c0,0,1.88-3.84,4.68-8.49c2.11-3.5,4.74-7.46,7.47-10.59
|
||||
c1.93-2.21,3.92-4.01,5.81-4.95c2.91-1.44,7.2-2.86,11.5-4.09c7.76-2.21,15.58-3.81,15.58-3.81s0.05,10.94,6.25,15.75
|
||||
c1.81,1.4,4.12,2.28,7.11,2.22c0.79-0.01,1.64-0.09,2.53-0.24c3.28-0.57,5.97-2.22,8.18-4.49c8.42-8.65,9.77-26.2,9.77-26.2
|
||||
s2.81-2.9,6.9-5.41c4.09-2.51,9.46-4.64,14.62-3.16c1.25,0.36,2.59,0.78,3.96,1.25c9.6,3.26,21.12,8.59,21.92,8.96
|
||||
c-0.39-0.09-2.96-0.55-4.71,2.63c-0.94,1.71-1.97,9.33-2.77,16.59c-0.81,7.42-1.39,14.45-1.39,14.45l5.91,13.07l0.07,0.16
|
||||
l2.73,6.04l6.84,15.13l4.31,9.53L252.4,203.97z"/>
|
||||
<path class="st2" d="M252.4,204.83h-92.57c-0.33,0-0.63-0.19-0.77-0.49l-20.86-44.72l-0.78,2.19c-0.08,0.22-0.25,0.4-0.47,0.5
|
||||
c-0.22,0.09-0.46,0.09-0.68,0l-26.95-11.88c-1.17-0.45-2.6-0.71-2.91-0.5c-0.31,0.25-0.75,0.25-1.06,0
|
||||
c-0.31-0.25-0.4-0.68-0.23-1.04c0.02-0.04,1.93-3.93,4.72-8.55c2.65-4.4,5.2-8.01,7.56-10.71c2.19-2.51,4.23-4.24,6.08-5.15
|
||||
c2.6-1.28,6.51-2.67,11.65-4.14c7.7-2.19,15.57-3.81,15.64-3.83c0.25-0.05,0.51,0.01,0.71,0.17c0.2,0.16,0.31,0.4,0.32,0.66
|
||||
c0,0.11,0.13,10.58,5.92,15.08c1.81,1.4,4.03,2.09,6.58,2.04c0.76-0.01,1.57-0.09,2.4-0.23c2.86-0.49,5.45-1.92,7.72-4.24
|
||||
c8.1-8.32,9.51-25.5,9.53-25.67c0.01-0.2,0.1-0.38,0.24-0.53c0.12-0.12,2.93-3,7.07-5.54c5.55-3.41,10.84-4.53,15.3-3.25
|
||||
c1.32,0.38,2.66,0.81,4,1.27c9.91,3.36,21.89,8.94,22.01,8.99c0.39,0.18,0.59,0.63,0.45,1.05c-0.14,0.41-0.57,0.65-0.99,0.56
|
||||
c-0.38-0.08-2.36-0.37-3.78,2.21c-0.41,0.74-1.3,3.84-2.67,16.27c-0.72,6.59-1.27,12.96-1.37,14.21l28.99,64.09
|
||||
c0.12,0.26,0.1,0.57-0.06,0.81C252.96,204.68,252.69,204.83,252.4,204.83z M160.37,203.12h90.71l-28.53-63.09
|
||||
c-0.06-0.13-0.08-0.28-0.07-0.42c0.01-0.07,0.59-7.13,1.39-14.47c1.61-14.63,2.56-16.35,2.87-16.91c0.76-1.38,1.67-2.17,2.54-2.61
|
||||
c-4.05-1.82-12.2-5.36-19.27-7.76c-1.32-0.45-2.64-0.87-3.93-1.24c-5.04-1.45-10.36,0.87-13.94,3.06
|
||||
c-3.33,2.04-5.81,4.36-6.53,5.06c-0.23,2.51-1.97,18.18-9.98,26.41c-2.52,2.58-5.43,4.17-8.65,4.73
|
||||
c-0.93,0.16-1.82,0.24-2.67,0.26c-2.94,0.05-5.52-0.75-7.65-2.4c-5.37-4.17-6.36-12.45-6.54-15.38c-2.34,0.5-8.49,1.87-14.54,3.59
|
||||
c-5.03,1.44-8.86,2.8-11.36,4.03c-1.64,0.81-3.51,2.41-5.55,4.74c-2.3,2.63-4.78,6.15-7.38,10.47c-1.73,2.88-3.12,5.46-3.92,6.98
|
||||
c1.06,0.1,2.14,0.49,2.59,0.66l26.15,11.52l1.17-3.29c0.12-0.33,0.42-0.55,0.77-0.57c0.35-0.02,0.67,0.18,0.81,0.5l0.06,0.13
|
||||
L160.37,203.12z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M164.31,135.29L164.31,135.29c-0.01,0.01-5.59,16.42-12.48,16.6c-6.89,0.19-11.35-3.25-14.89-9.31
|
||||
c-3.37-5.76-9.77-13.97-18.9-12.41c1.93-2.21,3.92-4.01,5.81-4.95c2.91-1.44,7.2-2.86,11.5-4.09v0.01c0,0,6.51,2.92,6.97,6.83
|
||||
c0.47,3.91,2.61,12.93,7.35,12c4.11-0.81,5.85-3,7.51-6.9C159,134.47,161.31,135.35,164.31,135.29z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M127.33,157.43l-17.66-7.78c0,0-2.87-1.12-3.78-0.39c0,0,1.88-3.84,4.68-8.49c0,0,10.73-1.15,13.25,5.27
|
||||
C125.38,150.03,126.61,154.57,127.33,157.43z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M152.1,172.36c0,0-2.54,3.37-3.63,7.25l-7.77-16.65c0,0,11.4-9.3,19.22-3.99
|
||||
C167.74,164.27,154.15,166.69,152.1,172.36z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M170.57,159.56c-1.36,6.61,2.14,18.66-1.65,26.35c-2.59,5.26-5.88,13.43-7.68,18.07h-1.41l-7.1-15.22
|
||||
c0,0,2.19-7.23,5.98-10.73c3.79-3.5,8.85-9.92,7.1-16.72c-1.75-6.81-0.97-13.81,2.53-18.67c2.36-3.28,4.98-7.97,6.68-12.08
|
||||
c8.42-8.65,9.77-26.2,9.77-26.2s10.58,9.89,7.18,17.38C188.56,129.22,171.94,152.95,170.57,159.56z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M221.86,203.97c2.63-4.2,4.85-9.28,3.7-13.34c-2.4-8.52-5.64-13.69-13.81-14.89
|
||||
c-8.17-1.2-19.81-6.6-12.61-15.61c6.85-8.56,25.97-0.62,32.89-1.18l6.84,15.13c-1.46-0.14-3.45-0.99-5.75-3.75
|
||||
c-4.92-5.88-12.37-11.17-16.57-6.37c-4.2,4.8,3.8,9.73,6.76,10.81c2.39,0.87,14.1,4.63,19.87,8.83"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="138.15,157.49 138.1,157.37 136.62,161.52 132.31,159.62 131.92,145.21 138.06,156.84 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M191.78,157.33c-7.05,7.5-1.41,16.67,1.41,18.58c2.82,1.91,9.22,10.47,10.16,12.99
|
||||
c1.06,2.82,2.02,15.08,2.02,15.08h-18.82c4.83-11.7,1.41-12.87-6.44-22.73c-7.85-9.87,0-19.33,4.03-25.97
|
||||
c4.03-6.64,14.2-17.52,20.03-31.21c5.84-13.7-12.46-25.11-12.46-25.11c4.09-2.51,9.46-4.64,14.62-3.16
|
||||
c1.25,0.36,2.59,0.78,3.96,1.25c0.65,4.39,1.83,13.95,1.83,18.86c0,5.73,5.73,8.15,5.73,8.15l6.87,1.17
|
||||
c-0.81,7.42-1.39,14.45-1.39,14.45l5.91,13.07c-7.84-0.8-12.19-9.47-17.63-9.27C206.17,143.7,198.82,149.83,191.78,157.33z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="229.31,152.92 207,131.13 223.32,139.69 229.24,152.76 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M266,148.95c0,0-5.17,24.81-8.55,40.98c-0.53,2.56-1.02,4.89-1.44,6.89c-0.7,3.34-1.19,5.71-1.35,6.48
|
||||
c-0.85,4.12-12.21,7.31-12.21,7.31c0.04,0.21,0.07,0.4,0.09,0.59v0.01c0.28,2.38-0.89,3.07-3.2,5.16
|
||||
c-0.86,0.78-1.77,1.19-2.6,1.39c-1.58,0.38-2.84,0.01-2.84,0.01c-2.02,1.87-4.59,0.31-4.59,0.31l-3.07,0.86
|
||||
c-0.82,2.95-4.87,1.63-8.13-1.71c-3.27-3.34,0.23-12.9,2.49-16.26c2.25-3.34,13.69-3.35,13.77-3.35c0,0,0.2-1.78,0.53-4.65
|
||||
c0.22-1.93,0.49-4.35,0.8-7.06c1.46-12.94,3.59-32.39,3.65-35.51c0.08-4.75-26.22-16.18-26.22-16.18l14.84-25.22
|
||||
c0,0,21.94,15.58,31.33,22.04C268.69,137.49,266,148.95,266,148.95z"/>
|
||||
<path class="st2" d="M224.09,221.14c-1.82,0-4.23-1.31-6.39-3.52c-3.69-3.77,0.29-13.79,2.42-16.97c1.03-1.53,3.75-2.6,8.1-3.18
|
||||
c2.42-0.32,4.66-0.4,5.64-0.42l0.48-4.15c0.17-1.45,0.36-3.17,0.58-5.08l0.22-1.98c1.08-9.55,3.59-32.12,3.64-35.46
|
||||
c0.05-3.18-15.84-11.29-25.87-15.65l-0.59-0.26l15.48-26.31l0.5,0.36c0.22,0.16,22.04,15.65,31.32,22.03
|
||||
c9.48,6.52,7.03,18.11,6.94,18.51l-8.54,40.98c-0.53,2.56-1.02,4.89-1.44,6.89c-0.7,3.34-1.19,5.71-1.35,6.48
|
||||
c-0.39,1.9-2.66,3.78-6.75,5.61c-2.26,1.01-4.44,1.71-5.38,2c0.01,0.04,0.01,0.08,0.02,0.12l0,0.04c0.27,2.37-0.82,3.34-2.62,4.93
|
||||
c-0.24,0.21-0.49,0.44-0.77,0.68c-0.82,0.75-1.78,1.26-2.85,1.52c-1.25,0.3-2.32,0.17-2.83,0.08c-1.69,1.35-3.75,0.85-4.81,0.31
|
||||
l-2.55,0.71c-0.4,1.07-1.18,1.49-1.78,1.64C224.65,221.11,224.38,221.14,224.09,221.14z M234.36,198.19
|
||||
c-3.12,0-11.58,0.56-13.3,3.1c-2.1,3.12-5.59,12.44-2.55,15.54c2.15,2.21,4.66,3.49,6.11,3.12c0.54-0.14,0.89-0.52,1.07-1.16
|
||||
l0.09-0.31l3.62-1.01l0.21,0.13c0.09,0.05,2.23,1.3,3.91-0.24l0.24-0.22l0.31,0.09c0.01,0,1.15,0.32,2.55-0.02
|
||||
c0.88-0.22,1.67-0.64,2.35-1.26c0.28-0.25,0.53-0.48,0.78-0.69c1.79-1.58,2.46-2.17,2.24-3.98l0-0.04
|
||||
c-0.02-0.17-0.05-0.34-0.08-0.52l-0.1-0.51l0.5-0.14c3.07-0.86,11.17-3.78,11.81-6.88c0.16-0.77,0.65-3.14,1.35-6.48
|
||||
c0.41-1.99,0.9-4.33,1.44-6.89l8.55-41c0.03-0.11,2.48-11.16-6.47-17.32c-8.49-5.85-27.49-19.31-30.83-21.68l-14.21,24.14
|
||||
c1.76,0.78,7.21,3.24,12.59,6.07c13.44,7.07,13.4,9.56,13.38,10.38c-0.05,3.27-2.31,23.69-3.65,35.57l-0.22,1.98
|
||||
c-0.22,1.91-0.41,3.63-0.58,5.08l-0.59,5.15H234.36z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M238.86,216.02c-0.86,0.78-1.77,1.19-2.6,1.39l0.07-0.18c0,0,3.9-3.96,5.73-6.37
|
||||
C242.34,213.25,241.17,213.93,238.86,216.02z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M38.64,116.53c-0.2,0-0.39-0.11-0.5-0.29c-1.28-2.31-4.07-7.84-2.45-9.15c0.24-0.2,0.6-0.16,0.8,0.08
|
||||
c0.2,0.24,0.16,0.6-0.08,0.8c-0.31,0.25,0.03,2.84,2.72,7.73c0.15,0.27,0.05,0.62-0.22,0.77
|
||||
C38.83,116.5,38.73,116.53,38.64,116.53z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M225.75,219.16c-0.13,0-0.26-0.05-0.37-0.14c-0.12-0.1-2.94-2.55-4.41-4.31c-1.61-1.93,1.23-8.17,1.82-9.4
|
||||
c0.14-0.28,0.47-0.4,0.76-0.27c0.28,0.13,0.4,0.47,0.27,0.76c-1.33,2.79-2.81,7.17-1.97,8.18c1.41,1.69,4.25,4.15,4.28,4.18
|
||||
c0.24,0.21,0.26,0.56,0.06,0.8C226.07,219.09,225.91,219.16,225.75,219.16z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M228.83,218.3c-0.18,0-0.36-0.09-0.47-0.25c-0.05-0.07-1.24-1.85-1.98-3.47c-0.79-1.74,2.32-6.98,3.29-8.55
|
||||
c0.17-0.27,0.52-0.35,0.78-0.18c0.27,0.17,0.35,0.52,0.18,0.78c-1.84,2.96-3.59,6.66-3.22,7.48c0.7,1.54,1.88,3.29,1.89,3.31
|
||||
c0.18,0.26,0.11,0.61-0.15,0.79C229.05,218.27,228.93,218.3,228.83,218.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M233.41,217.99c-0.17,0-0.34-0.08-0.45-0.23c-0.03-0.04-0.82-1.11-1.23-2.85c-0.42-1.79,3.4-6.59,4.58-8.02
|
||||
c0.2-0.24,0.56-0.28,0.8-0.08c0.24,0.2,0.28,0.56,0.08,0.8c-2.25,2.72-4.55,6.19-4.35,7.04c0.35,1.5,1.03,2.42,1.04,2.43
|
||||
c0.19,0.25,0.14,0.61-0.12,0.79C233.65,217.95,233.53,217.99,233.41,217.99z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M256.97,189.59c-0.53,2.56-1.02,4.89-1.44,6.89l-21.12-3.86c0.22-1.93,0.49-4.35,0.8-7.06L256.97,189.59z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M247.9,187.86l-1.11,6.61c-0.1,0.58-0.63,0.98-1.22,0.91l-8.27-0.94c-0.28-0.03-0.53-0.16-0.7-0.36
|
||||
c-0.2-0.23-0.31-0.53-0.27-0.86l0.77-6.83c0.07-0.62,0.63-1.06,1.24-0.97l8.61,1.16c0.03,0.01,0.07,0.01,0.1,0.02
|
||||
C247.63,186.73,248,187.28,247.9,187.86z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M246.78,187.96l-1.01,5.39c-0.08,0.47-0.57,0.8-1.1,0.74l-7.07-0.72c-0.17-0.18-0.27-0.42-0.24-0.67
|
||||
l0.67-5.36c0.06-0.49,0.55-0.83,1.09-0.76l7.52,0.91c0.03,0,0.06,0.01,0.09,0.02C246.79,187.65,246.81,187.8,246.78,187.96z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M179.16,80.46l-2.67-0.74c6.91-16.81-5.16-22.54-5.16-22.54s3.63-0.4,7.38,0.9
|
||||
C187.09,69.54,179.16,80.46,179.16,80.46z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M159.18,93.64h-1.96c-0.92,0-1.66-0.74-1.66-1.66v0c0-0.92,0.74-1.66,1.66-1.66h1.96
|
||||
c0.92,0,1.66,0.74,1.66,1.66v0C160.83,92.89,160.09,93.64,159.18,93.64z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M163.26,92.78h-3.43v-1.14h3.43c0.45,0,0.89-0.15,1.26-0.42l3.07-2.28l0.68,0.91l-3.07,2.28
|
||||
C164.64,92.55,163.95,92.78,163.26,92.78z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st6" d="M181.87,86.02c0,4.41-3.37,7.98-7.52,7.98c-0.59,0-1.16-0.07-1.72-0.21c-3.32-0.82-5.8-3.99-5.8-7.77
|
||||
c0-4.4,3.37-7.97,7.52-7.97c1.44,0,2.79,0.43,3.93,1.18C180.44,80.62,181.87,83.14,181.87,86.02z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M181.87,86.02c0,4.41-3.37,7.98-7.52,7.98c-0.59,0-1.16-0.07-1.72-0.21c-2.15-1.41-3.58-3.92-3.58-6.8
|
||||
c0-4.41,3.37-7.98,7.52-7.98c0.59,0,1.16,0.07,1.71,0.21C180.44,80.62,181.87,83.14,181.87,86.02z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M153.71,73.53c0.4-0.37,1.13-0.82,1.96-0.71c0.83,0.11,3.1,1.36,3.36,2.72
|
||||
C159.28,76.91,152.1,75.02,153.71,73.53z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M144.76,70.61c-1.65,0.04-2.78,1.49-2.72,1.83c0.05,0.34,2.09,0.25,2.72,0.56s2.01,0.15,2.18-0.71
|
||||
S146.38,70.57,144.76,70.61z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M147.34,86.83c-0.05,0-0.1-0.01-0.14-0.02c-1.8-0.47-2.78-1.14-2.98-2.04c-0.16-0.73,0.21-1.48,1.1-2.21
|
||||
c1.04-0.86,1.59-3.28,1.71-4.14c0.04-0.31,0.33-0.53,0.64-0.48c0.31,0.04,0.53,0.33,0.48,0.64c-0.02,0.14-0.52,3.54-2.11,4.85
|
||||
c-0.52,0.42-0.78,0.82-0.72,1.09c0.03,0.16,0.29,0.7,2.15,1.18c0.3,0.08,0.49,0.39,0.41,0.69
|
||||
C147.82,86.66,147.59,86.83,147.34,86.83z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M146.51,90.59c-2.46,0-4.32-1.8-4.42-1.9c-0.22-0.22-0.23-0.58-0.01-0.8c0.22-0.22,0.58-0.23,0.8-0.01
|
||||
c0.11,0.11,2.53,2.43,5.21,1.23c1.25-0.56,2.16-0.65,2.79-0.28c0.42,0.25,0.6,0.66,0.62,0.94c0.03,0.31-0.21,0.59-0.52,0.61
|
||||
c-0.31,0.03-0.59-0.21-0.61-0.52c0,0.01-0.02-0.04-0.08-0.07c-0.1-0.05-0.54-0.18-1.73,0.35
|
||||
C147.85,90.47,147.16,90.59,146.51,90.59z"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<ellipse transform="matrix(0.1135 -0.9935 0.9935 0.1135 57.97 225.881)" class="st2" cx="155.56" cy="80.46" rx="2.14" ry="1.72"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<ellipse transform="matrix(0.1135 -0.9935 0.9935 0.1135 48.7971 211.6883)" class="st2" cx="143.02" cy="78.5" rx="2.14" ry="1.72"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 56 KiB |
|
|
@ -0,0 +1,290 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 722.05 608.38" style="enable-background:new 0 0 722.05 608.38;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#38353E;}
|
||||
.st1{fill:#A5D1FE;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{fill:#4758FF;}
|
||||
.st4{fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st5{fill:#CCD8F2;stroke:#000000;stroke-width:4;stroke-miterlimit:10;}
|
||||
.st6{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st7{fill:#CCD8F2;}
|
||||
.st8{fill:#4758FF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;}
|
||||
.st9{fill:#4758FF;stroke:#000000;stroke-width:3.8137;stroke-miterlimit:10;}
|
||||
.st10{fill:#CCD8F2;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st11{fill:#232228;}
|
||||
.st12{fill:#020202;}
|
||||
.st13{fill:#4657FF;}
|
||||
.st14{fill:none;stroke:#000000;stroke-width:4.0809;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st15{fill:#A2D2FF;stroke:#000333;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="Layer_1">
|
||||
</g>
|
||||
<g id="Layer_17">
|
||||
<polyline class="st0" points="314.13,470.47 509.62,471.09 500,282.08 383.55,275.83 351.46,286.24 305.84,368.22 314.13,468.47
|
||||
"/>
|
||||
</g>
|
||||
<g id="Layer_9">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M387.68,274.35c0,0-14.25,5.46-33.5,5.23c-19.25-0.24-67.24,4.51-97.65,81.5l-61.78,48.95
|
||||
c0,0,5.46,57.5,49.9,56.79c44.43-0.71,42.77-48.47,42.77-48.47l-1.66,50.13l38.97,1c0,0-5.73-157.61,41.39-186.26
|
||||
C366.12,283.21,383.91,278.95,387.68,274.35z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M389.31,273.18c-0.54-0.74-1.49-1.02-2.34-0.7c-0.14,0.06-14.08,5.33-32.76,5.1c-30.25-0.35-72.04,13.61-99.34,82.26
|
||||
l-11.3,8.96l-50.05,39.65c-0.53,0.42-0.82,1.08-0.75,1.76c0.06,0.6,1.48,14.9,8.48,29.34c9.41,19.44,24.41,29.55,43.44,29.25
|
||||
c13.11-0.21,23.64-4.41,31.32-12.48c3.87-4.08,6.63-8.72,8.59-13.34l-0.84,25.42c-0.02,0.53,0.18,1.05,0.54,1.44
|
||||
c0.37,0.39,0.88,0.61,1.41,0.62l38.96,1c0.02,0.01,0.04,0.01,0.06,0.01c0.53,0,1.04-0.22,1.42-0.6c0.39-0.39,0.59-0.93,0.57-1.48
|
||||
c-0.05-1.56-5.14-156.17,40.18-184.32c2.86-0.7,17.51-4.46,21.95-9.03c0.14-0.14,0.26-0.28,0.38-0.42
|
||||
C389.81,274.92,389.84,273.92,389.31,273.18z M365.08,281.49c-20.11,12.23-33.33,47.68-39.32,105.38
|
||||
c-3.84,37-3.31,71.75-3.09,80.54l-34.84-0.89l1.43-43.16c0.22-2.93,0.17-4.84,0.16-5.1c-0.02-0.54-0.25-1.02-0.61-1.37
|
||||
c-0.36-0.35-0.85-0.56-1.39-0.56c-1.08,0-1.96,0.86-2,1.94l-0.14,4.26c-0.51,6.93-2.73,21.11-12.19,31.05
|
||||
c-6.91,7.25-16.48,11.03-28.47,11.22c-17.56,0.33-30.91-8.77-39.73-26.9c-5.65-11.62-7.54-23.46-8.01-27.01l49.13-38.93
|
||||
l11.77-9.32c0.27-0.22,0.49-0.51,0.62-0.83c26.12-66.12,65.66-80.24,94.66-80.24c0.37,0,0.74,0,1.1,0.01
|
||||
c1.19,0.01,2.36,0.01,3.51-0.02c3.25-0.07,6.34-0.29,9.21-0.6c-0.43,0.1-0.83,0.2-1.23,0.3
|
||||
C365.45,281.31,365.26,281.38,365.08,281.49z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_25">
|
||||
<path class="st2" d="M371.02,280.96c-0.03,0.01-1.48,0.33-1.5,0.34"/>
|
||||
<path class="st2" d="M368.23,281.68c-4.83,0.9-9.15,4.47-13.77,4.16c-74.22-4.88-95.49,102.96-95.49,102.96l-9.64-13.15l-1.15-1.57
|
||||
l-1.15-1.57l10.64-8.9c25.7-68.2,65.05-82.07,93.53-81.72c17.59,0.23,30.71-5.01,30.84-5.07c0.8-0.32,1.69-0.04,2.2,0.7
|
||||
c0.5,0.74,0.47,1.73-0.08,2.42c-0.11,0.14,0.21-2.56,0.08-2.42"/>
|
||||
</g>
|
||||
<g id="Layer_21">
|
||||
<g>
|
||||
<path d="M287.26,425.36c-0.02,0-0.04,0-0.07,0c-1.1-0.04-1.97-0.96-1.93-2.07c1.01-30.56,6.63-85.56,6.69-86.11
|
||||
c0.11-1.1,1.1-1.91,2.19-1.79c1.1,0.11,1.9,1.09,1.79,2.19c-0.06,0.55-5.66,55.41-6.67,85.84
|
||||
C289.22,424.51,288.33,425.36,287.26,425.36z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_28">
|
||||
<polyline class="st3" points="233.21,212.55 233.21,286.24 135.43,286.63 135.7,212.03 "/>
|
||||
</g>
|
||||
<g id="Layer_5">
|
||||
<g>
|
||||
<path d="M138.94,289.65l75.66,0.01c0.24-0.01,0.49-0.01,0.76-0.01h0.86c3.16,0,5.88,0,5.88-6.61v-47.78l-88.66,0.01
|
||||
c-0.08,9.14-0.26,35.42,0.03,45.75c0.01,0.42,0.01,0.91-0.01,1.44c-0.04,2-0.09,4.75,1.2,6.07c0.74,0.76,2.05,1.13,3.91,1.13
|
||||
L138.94,289.65z M214.66,296.11l-75.62-0.02l-0.45,0.01c-3.64,0-6.51-1.03-8.5-3.06c-3.18-3.24-3.1-7.91-3.05-10.7
|
||||
c0.01-0.43,0.02-0.82,0.01-1.15c-0.35-12.67-0.01-48.83,0-49.18c0.02-1.77,1.45-3.19,3.22-3.19l95.08,0.01
|
||||
c1.78,0,3.22,1.44,3.22,3.22v51c0,13.06-9.28,13.06-12.33,13.06h-0.86c-0.21,0-0.41,0-0.59,0.01L214.66,296.11L214.66,296.11z"/>
|
||||
<path d="M129.09,228.82h97.41v-19.38h-97.41V228.82z M229.72,235.26H125.87c-1.78,0-3.22-1.44-3.22-3.22v-25.82
|
||||
c0-1.78,1.44-3.22,3.22-3.22h103.85c1.78,0,3.22,1.44,3.22,3.22v25.82C232.94,233.82,231.5,235.26,229.72,235.26z"/>
|
||||
<path d="M165.35,201.56h7.31c-0.15-3.85-1.76-8.36-4.47-12.36c-3.41-5.02-7.88-7.9-12.27-7.9c-1.22,0-2.38,0.22-3.46,0.66
|
||||
c-1.52,0.62-2.69,2.06-3.19,3.96c-0.63,2.37-0.1,4.86,1.45,6.83C153.97,196.9,161.96,200.36,165.35,201.56L165.35,201.56z
|
||||
M178.41,208h-14.13l-0.5-0.17c-0.52-0.18-12.84-4.35-18.14-11.09c-2.78-3.53-3.76-8.19-2.62-12.47c1.03-3.88,3.58-6.89,7-8.28
|
||||
c1.85-0.76,3.83-1.13,5.88-1.13c6.56,0,12.97,3.91,17.6,10.72c4.34,6.39,6.34,13.76,5.34,19.73L178.41,208z"/>
|
||||
<path d="M198.35,181.23c-4.42,0-8.9,2.92-12.31,8c-2.69,4.01-4.26,8.54-4.39,12.39l7.31-0.06c3.39-1.24,11.36-4.77,14.58-8.92
|
||||
c1.54-1.99,2.06-4.49,1.41-6.85c-0.52-1.89-1.69-3.32-3.22-3.93C200.68,181.44,199.54,181.23,198.35,181.23L198.35,181.23z
|
||||
M175.95,208.1l-0.47-2.69c-1.04-5.96,0.91-13.35,5.21-19.77c4.62-6.9,11.06-10.85,17.66-10.85c2.01,0,3.94,0.36,5.76,1.09
|
||||
c3.43,1.36,6,4.35,7.05,8.22c1.17,4.27,0.22,8.94-2.54,12.5c-5.25,6.78-17.54,11.06-18.05,11.23l-0.5,0.17L175.95,208.1z"/>
|
||||
<rect x="174.53" y="205.14" transform="matrix(1 -1.004155e-03 1.004155e-03 1 -0.2499 0.1786)" width="6.44" height="87.74"/>
|
||||
<path d="M133.09,219.93c-0.45,0-0.81-0.36-0.81-0.81V209.1c0-0.45,0.36-0.81,0.81-0.81c0.45,0,0.81,0.36,0.81,0.81v10.02
|
||||
C133.9,219.57,133.54,219.93,133.09,219.93z"/>
|
||||
<path d="M136.72,218.55c-0.45,0-0.81-0.36-0.81-0.81v-12.91c0-0.45,0.36-0.81,0.81-0.81c0.45,0,0.81,0.36,0.81,0.81v12.91
|
||||
C137.52,218.18,137.16,218.55,136.72,218.55z"/>
|
||||
<path d="M140.74,214.93c-0.45,0-0.81-0.36-0.81-0.81v-9.34c0-0.45,0.36-0.81,0.81-0.81s0.81,0.36,0.81,0.81v9.34
|
||||
C141.55,214.56,141.19,214.93,140.74,214.93z"/>
|
||||
<path d="M215.68,217.79c-0.44,0-0.8-0.36-0.81-0.8l-0.06-10.02c-0.01-0.45,0.36-0.81,0.8-0.81h0.01c0.44,0,0.8,0.36,0.81,0.8
|
||||
l0.06,10.02C216.49,217.43,216.12,217.79,215.68,217.79L215.68,217.79z"/>
|
||||
<path d="M219.32,222.05c-0.44,0-0.8-0.36-0.81-0.8l-0.08-12.91c-0.01-0.45,0.36-0.81,0.8-0.81h0.01c0.44,0,0.8,0.36,0.81,0.8
|
||||
l0.08,12.91C220.13,221.68,219.77,222.04,219.32,222.05L219.32,222.05z"/>
|
||||
<path d="M223.21,217.4c-0.44,0-0.8-0.36-0.81-0.8l-0.06-9.33c-0.01-0.44,0.36-0.81,0.8-0.81h0.01c0.44,0,0.8,0.36,0.81,0.8
|
||||
l0.06,9.33C224.02,217.03,223.65,217.4,223.21,217.4L223.21,217.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_11">
|
||||
<g>
|
||||
<path class="st2" d="M196.21,387.99c0,0-6.36-63.2-10.75-71.1c0,0-55.74,9.44-53.11-27.43c1.03-2.41,3.24-2.72,6.08-2.72
|
||||
c0,0-0.95-17.97,11.82-11.51c0,0,1.26-4.05,3.77-4.63c2.51-0.58,7.04-0.69,8.59,3.76c1.54,4.44,1.63,19.4,1.63,19.4
|
||||
s1.75,4.92,5.8,5.21c0,0-1.64-14.96-0.58-20.46c1.06-5.5,4.34-9.65,7.04-9.46c2.7,0.19,5.89,0.29,7.04,8.59
|
||||
c1.16,8.3-2.32,17,3.8,17.6c6.12,0.59,19.76-4.94,27.46-2.77s16.99,5.33,25.88,21.53c8.89,16.2,15.01,46.43,16.4,51.17
|
||||
c1.38,4.74-2.77,19.49-2.77,19.49l-53.34,11.53L196.21,387.99z"/>
|
||||
<path d="M199.99,398.45l-5.72-9.84l-0.04-0.43c-2.4-23.83-6.9-60.43-9.98-69.1c-6.71,0.92-32.94,3.58-46.25-8.5
|
||||
c-5.7-5.17-8.27-12.33-7.63-21.27l0.02-0.34l0.13-0.31c1.25-2.91,3.79-3.67,5.91-3.86c0.11-3.23,0.88-9.24,4.83-11.81
|
||||
c2.17-1.42,4.84-1.55,7.96-0.4c0.81-1.54,2.22-3.45,4.36-3.94c4.1-0.95,9.13-0.12,10.93,5.05c1.51,4.36,1.71,16.92,1.73,19.66
|
||||
c0.21,0.47,0.7,1.47,1.48,2.3c-0.42-4.86-1-13.45-0.21-17.52c1.25-6.48,5.26-11.35,9.15-11.07l0.12,0.01
|
||||
c3.74,0.27,7.5,1.28,8.76,10.3c0.41,2.95,0.28,5.9,0.16,8.49c-0.28,5.97,0.04,7.21,1.86,7.39c2.22,0.21,5.94-0.57,9.88-1.39
|
||||
c6.06-1.27,12.93-2.72,17.93-1.31c8.83,2.49,18.19,6.28,27.09,22.5c7.4,13.49,12.79,35.98,15.38,46.79
|
||||
c0.53,2.22,0.95,3.97,1.19,4.78c1.5,5.14-2.32,19.03-2.76,20.59l-0.33,1.16L199.99,398.45z M198.16,387.35l3.82,6.57l50.73-10.96
|
||||
c1.5-5.62,3.28-14.39,2.45-17.23c-0.27-0.91-0.67-2.61-1.24-4.97c-2.55-10.64-7.85-32.78-14.99-45.8
|
||||
c-8.84-16.11-17.99-18.69-24.67-20.57c-4.05-1.14-10.41,0.19-16.02,1.37c-4.43,0.93-8.25,1.74-11.09,1.46
|
||||
c-5.97-0.58-5.7-6.41-5.47-11.56c0.11-2.42,0.24-5.17-0.12-7.76c-0.92-6.57-2.75-6.7-5.08-6.86l-0.13-0.01
|
||||
c-1.19-0.06-3.97,2.83-4.94,7.84c-0.82,4.27,0.16,15.78,0.6,19.86l0.26,2.38l-2.39-0.17c-5.29-0.38-7.46-6.28-7.55-6.54
|
||||
l-0.11-0.32l0-0.34c-0.02-4.07-0.34-15.37-1.52-18.75c-1.09-3.15-4.38-2.9-6.25-2.47c-0.89,0.21-1.92,2.04-2.31,3.28l-0.71,2.24
|
||||
l-2.1-1.06c-2.59-1.31-4.58-1.54-5.91-0.67c-2.79,1.82-3.12,8.2-3.02,10.29l0.11,2.1l-2.1,0c-2.79,0-3.64,0.38-4.11,1.23
|
||||
c-0.45,7.48,1.68,13.41,6.35,17.65c13.58,12.33,44.15,7.34,44.46,7.29l1.39-0.24l0.69,1.24
|
||||
C191.58,323.79,197.32,379.09,198.16,387.35z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_14">
|
||||
<g>
|
||||
<path class="st1" d="M604.87,442.08c-1.78,5.1-5.8,9.88-12.86,15.7c-15.88,13.11-66.8,10.84-66.8,10.84l-21.43-71.15l-3.49-104.1
|
||||
l-0.29-8.78c27.22,2.52,52.43,33.53,65.6,53.95c13.16,20.42,31.2,62.01,37,80.16C605.82,428.79,607.1,435.69,604.87,442.08z"/>
|
||||
<path class="st4" d="M604.87,442.08c-1.78,5.1-5.8,9.88-12.86,15.7c-15.88,13.11-66.8,10.84-66.8,10.84l-21.43-71.15l-3.49-104.1
|
||||
l-0.29-8.78c27.22,2.52,52.43,33.53,65.6,53.95c13.16,20.42,31.2,62.01,37,80.16C605.82,428.79,607.1,435.69,604.87,442.08z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_24">
|
||||
<path class="st2" d="M603.07,440.64c-10.09-72.42-74.01-145.85-102.79-145.54l-0.29-8.59c26.75,2.47,51.53,32.81,64.48,52.8
|
||||
c12.93,19.98,30.66,60.69,36.37,78.45C604,427.63,605.26,434.39,603.07,440.64z"/>
|
||||
</g>
|
||||
<g id="Layer_20">
|
||||
<g>
|
||||
<path d="M520.69,411.83c-0.65,0-1.28-0.31-1.67-0.89c-0.61-0.92-0.37-2.16,0.55-2.77c0.86-0.58,21.3-14.16,35.76-18.2
|
||||
c1.07-0.3,2.17,0.32,2.46,1.39c0.3,1.06-0.32,2.17-1.39,2.46c-13.85,3.87-34.41,17.54-34.62,17.68
|
||||
C521.46,411.72,521.07,411.83,520.69,411.83z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_10">
|
||||
<g>
|
||||
<path class="st2" d="M193.36,374.38c0,0-8.56-1.54-8.78,6.36s1.54,19.75,1.54,19.75s0.66,9.87,10.97,10.97
|
||||
c10.31,1.1,35.11,0.66,52.89-12.73c17.77-13.39,17.77-26.99,5.49-41.26c0,0-0.22,13.61-9.66,19.53c-9.44,5.92-34.01,13.17-45.64,9
|
||||
S193.36,374.38,193.36,374.38z"/>
|
||||
<path d="M204.94,413.82c-4.22,0-7.15-0.27-8.06-0.37c-9.42-1-12.45-8.72-12.75-12.75c-0.16-1.13-1.76-12.28-1.55-20.02
|
||||
c0.08-2.81,1.04-4.99,2.87-6.47c3.22-2.62,7.75-1.9,8.26-1.8l2.96,0.53l-1.63,2.51c-0.06,0.1-1.14,1.94-0.45,3.91
|
||||
c0.66,1.89,2.82,3.54,6.24,4.77c4.84,1.74,12.84,1.46,22.52-0.78c8.27-1.91,16.66-5.06,21.39-8.03
|
||||
c8.42-5.29,8.72-17.74,8.72-17.87l0.08-5.25l3.43,3.98c6.83,7.93,9.77,15.33,8.99,22.62c-0.82,7.62-5.66,14.67-14.79,21.54
|
||||
C235.73,411.97,215.96,413.82,204.94,413.82z M190.53,376.34c-0.9,0.12-1.85,0.41-2.56,0.99c-0.89,0.73-1.34,1.86-1.38,3.47
|
||||
c-0.21,7.63,1.5,19.28,1.52,19.4l0.02,0.16c0.02,0.33,0.72,8.22,9.19,9.12c3.15,0.34,31.33,2.83,51.47-12.34
|
||||
c8.09-6.09,12.53-12.41,13.22-18.78c0.54-5.04-1.14-10.26-5.12-15.87c-0.96,4.87-3.47,12.11-9.99,16.21
|
||||
c-9.11,5.72-34.65,13.75-47.38,9.19c-4.7-1.69-7.63-4.14-8.69-7.29C190.27,379.03,190.3,377.55,190.53,376.34z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_8">
|
||||
<g>
|
||||
<path class="st2" d="M381.63,247.17c0,0,7.69,20.19,1.92,28.66c0,0,0.19,36.16,39.62,13.46c0,0,9.81-56.93,0-71.35
|
||||
C413.36,203.51,381.63,247.17,381.63,247.17z"/>
|
||||
<path d="M401.08,298.78c-3.49,0-6.59-0.77-9.28-2.32c-10.06-5.78-10.25-20.02-10.25-20.62c0-0.41,0.12-0.8,0.35-1.14
|
||||
c4.24-6.22-0.11-21.47-2.14-26.82c-0.24-0.63-0.15-1.34,0.25-1.89c2.46-3.39,24.36-32.98,37.83-32.98c0.05,0,0.09,0,0.14,0
|
||||
c2.82,0.04,5.19,1.36,6.84,3.8c10.15,14.92,0.72,70.46,0.32,72.82c-0.1,0.59-0.46,1.1-0.97,1.39
|
||||
C415.2,296.19,407.47,298.78,401.08,298.78z M385.57,276.37c0.14,2.48,1.15,12.57,8.24,16.63c6.15,3.52,15.41,1.85,27.54-4.98
|
||||
c0.56-3.41,2.48-15.73,3.5-29.18c1.98-25.91-0.72-35.93-3.34-39.78c-0.93-1.37-2.08-2.02-3.6-2.05c-0.03,0-0.06,0-0.09,0
|
||||
c-4.59,0-12.17,5.44-21.35,15.34c-5.93,6.39-10.9,12.88-12.6,15.15C385.38,251.8,390.51,268.03,385.57,276.37z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_16">
|
||||
<polygon class="st5" points="409.16,326.84 415.6,247.09 509.22,252.26 500,325.6 "/>
|
||||
<path class="st6" d="M424.32,259.3c0,0-2.69-1.02-2.69,3.42s-0.58,20.02-0.58,20.02s-0.8,2.98,5.46,2.77
|
||||
c6.26-0.22,27.15,0.66,27.15,0.66s3.64,0.95,3.93-3.42c0.29-4.37,0-18.63,0-18.63s0.66-5.01-2.47-4.9
|
||||
C451.98,259.3,424.32,259.3,424.32,259.3z"/>
|
||||
</g>
|
||||
<g id="Layer_29">
|
||||
<g>
|
||||
<line class="st7" x1="479.36" y1="252.26" x2="471.58" y2="322.19"/>
|
||||
<rect x="440.29" y="285.23" transform="matrix(0.1104 -0.9939 0.9939 0.1104 137.5159 728.0844)" width="70.35" height="4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_15">
|
||||
<rect x="354.79" y="337.39" class="st8" width="106.42" height="77.57"/>
|
||||
<path class="st8" d="M348.27,322.19v18.62h158.86c0,0,8.16,0.93,8.73-7.14s0-11.48,0-11.48H348.27z"/>
|
||||
<polygon class="st9" points="506.82,340.78 507.13,421.39 451.59,420.05 451.59,340.8 "/>
|
||||
<path class="st10" d="M368.64,350.73c0,0-1.86,26.68,0,28.54c1.86,1.86,1.86,3.72,12.41,4.03c10.55,0.31,31.1,2.23,31.1,2.23
|
||||
s6.49,1.75,7.48-5.74s2.49-14.97,2.49-14.97s3.24-8.48-2.74-9.73S368.64,350.73,368.64,350.73z"/>
|
||||
<g>
|
||||
<rect x="358.94" y="349.27" class="st2" width="4" height="58.19"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="359.12" y="406.96" class="st2" width="69.18" height="4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_26">
|
||||
</g>
|
||||
<g id="Layer_12">
|
||||
<g>
|
||||
<path class="st2" d="M364.06,415.88c0,0-2.21,11.23,10.68,14.73c0,0,4.42,9.94,15.83,12.34c0,0,2.21,9.21,10.13,11.42
|
||||
c0,0-0.55,7.18,15.1,9.76s100.53,8.65,100.53,8.65l6.44-39.22l-14.91-26.88c0,0-13.26,7.36-26.7,4.42
|
||||
c-13.44-2.95-33.14-16.57-34.8-17.68s-11.05-12.15-11.05-15.28s-11.78-2.95-9.02,9.39c2.76,12.34,10.86,20.62,10.86,23.38
|
||||
s-3.87,5.34-20.25,5.52C400.52,416.61,364.06,415.88,364.06,415.88z"/>
|
||||
<path d="M516.33,474.77c-0.05,0-0.1,0-0.14,0c-3.47-0.25-85.15-6.11-100.71-8.67c-12.87-2.12-15.88-7.48-16.57-10.22
|
||||
c-6.29-2.41-9.01-8.6-9.91-11.24c-9.58-2.49-14.27-9.8-15.65-12.34c-13.55-4.21-11.27-16.67-11.25-16.79
|
||||
c0.19-0.95,1.04-1.61,2-1.61c0.37,0.01,36.62,0.74,52.78,0.55c18.07-0.2,18.28-3.39,18.28-3.52c-0.08-0.58-1.34-2.6-2.36-4.23
|
||||
c-2.65-4.23-6.65-10.63-8.46-18.72c-1.56-6.96,1.15-10.32,2.89-11.71c2.61-2.07,5.98-2.2,7.95-1.24c1.33,0.64,2.13,1.81,2.13,3.12
|
||||
c0.18,2.23,8.41,12.38,10.16,13.62l0.36,0.24c6.41,4.33,22.53,14.68,33.75,17.14c12.51,2.74,25.17-4.14,25.3-4.21
|
||||
c0.96-0.53,2.18-0.19,2.72,0.78l14.91,26.88c0.22,0.39,0.3,0.85,0.22,1.29l-6.44,39.22C518.14,474.07,517.3,474.77,516.33,474.77z
|
||||
M402.7,454.51c0,0,0.12,5.44,13.43,7.63c14.11,2.32,86.1,7.6,98.53,8.5l6.04-36.73l-13.65-24.6c-4.19,1.95-15.08,6.19-26.31,3.73
|
||||
c-11.47-2.51-26.94-12.19-35.14-17.74l-0.34-0.23c-1.66-1.11-11.29-11.97-11.91-16.51c-0.55-0.21-1.98-0.25-3.25,0.56
|
||||
c-2.05,1.3-2.71,4.12-1.85,7.96c1.66,7.42,5.44,13.47,7.94,17.47c1.85,2.96,2.97,4.75,2.97,6.35c0,5.1-6.65,7.35-22.23,7.52
|
||||
c-14.08,0.16-43.29-0.37-51.01-0.52c0.01,0.95,0.14,2.21,0.6,3.54c1.21,3.55,4.16,5.97,8.75,7.22c0.58,0.16,1.06,0.57,1.3,1.12
|
||||
c0.04,0.08,4.19,9.05,14.42,11.19c0.76,0.16,1.35,0.74,1.53,1.49c0.02,0.08,2.06,8.1,8.72,9.96
|
||||
C402.16,452.69,402.77,453.56,402.7,454.51L402.7,454.51z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_13">
|
||||
<g>
|
||||
<path class="st2" d="M493.19,411.45c0,0-4.13-18.39,14.62-17.53c20.58,0.95,29.75,29.74,30.76,37.44s2.52,43.29-19.16,47.8
|
||||
s-20.7-8.15-20.7-8.15s14.14-3.27,14.9-14.15c0.76-10.89-2.52-28.22-5.29-35.22C505.54,414.63,502.88,407.68,493.19,411.45z"/>
|
||||
<path d="M511.04,482.14c-4.72,0-8.36-1.11-10.88-3.33c-3.75-3.3-3.45-7.77-3.44-7.95c0.07-0.87,0.69-1.6,1.54-1.79
|
||||
c0.12-0.03,12.71-3.08,13.35-12.34c0.76-10.9-2.6-27.89-5.16-34.34l-0.07-0.17c-3.1-7.82-5.06-11.77-12.47-8.89
|
||||
c-0.54,0.21-1.15,0.17-1.67-0.1c-0.51-0.27-0.88-0.76-1.01-1.33c-0.08-0.37-2-9.23,2.93-15.11c2.94-3.5,7.56-5.13,13.73-4.85
|
||||
c21.12,0.97,31.32,29.06,32.65,39.18c1.62,12.37,1.05,45.48-20.74,50.02C516.57,481.8,513.64,482.14,511.04,482.14z
|
||||
M500.84,472.48c0.21,0.96,0.73,2.27,2.01,3.37c2.01,1.73,6.45,3.38,16.15,1.36c18.71-3.9,18.97-35,17.58-45.58
|
||||
c-1.16-8.87-10.52-34.86-28.87-35.71c-4.86-0.23-8.39,0.93-10.48,3.43c-2.41,2.88-2.57,6.97-2.39,9.46
|
||||
c9.58-2.43,12.71,5.47,15.26,11.92l0.07,0.17c2.75,6.95,6.24,24.47,5.43,36.09C514.91,466.93,504.91,471.16,500.84,472.48z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<path class="st11" d="M343.28,168.66c0,0-23.46,12.35-19.68,24.94c1.8,3.72,9.24,6.36,9.24,6.36s-1.92,16.18,15.1,11.03
|
||||
L343.28,168.66z"/>
|
||||
</g>
|
||||
<g id="Layer_4">
|
||||
<g>
|
||||
<path class="st2" d="M341.97,162.57c0,0-13.36,67.86,26.5,86.38c32.31,14.22,50.01-21.97,50.01-21.97l8.52-3.4
|
||||
c0,0,25.04-3.78,14.35-24.26c-2.87-3-17.51-33.53-17.51-33.53l-26.09-22.28L341.97,162.57z"/>
|
||||
<path class="st4" d="M341.97,162.57c0,0-13.36,67.86,26.5,86.38c32.31,14.22,50.01-21.97,50.01-21.97l8.52-3.4
|
||||
c0,0,25.04-3.78,14.35-24.26c-2.87-3-17.51-33.53-17.51-33.53l-26.09-22.28L341.97,162.57z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_27">
|
||||
<g>
|
||||
<path d="M423.17,215.52c-0.8,0-1.56-0.51-1.93-1.4c-0.52-1.24-0.09-2.74,0.98-3.35c0.87-0.5,8.6-4.89,11.73-5.69
|
||||
c1.17-0.3,2.31,0.56,2.57,1.9c0.26,1.35-0.48,2.68-1.64,2.98c-2.22,0.57-8.52,4.01-10.76,5.29
|
||||
C423.82,215.43,423.49,215.52,423.17,215.52z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_19">
|
||||
</g>
|
||||
<g id="Layer_18">
|
||||
<g>
|
||||
<path class="st12" d="M368.05,217.54c-1.03,0-1.87-0.84-1.87-1.87c0-2.08,0.06-4.23,0.12-6.52c0.28-10.44,0.6-22.28-5.12-26.63
|
||||
c-3.01-2.28-7.79-2.44-14.2-0.46c-0.99,0.3-2.03-0.25-2.34-1.24c-0.3-0.99,0.25-2.03,1.24-2.34c7.74-2.38,13.49-2.04,17.57,1.06
|
||||
c7.25,5.51,6.9,18.37,6.6,29.71c-0.06,2.26-0.12,4.39-0.12,6.42C369.92,216.71,369.09,217.54,368.05,217.54z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M384.97,235.45c-1,0-2.04-0.11-3.1-0.35c-1.08-0.24-1.75-1.31-1.51-2.39s1.32-1.75,2.39-1.51
|
||||
c3.92,0.88,7.62-0.55,10.99-4.26c3.46-3.81,5.36-8.69,5.97-11.56c-10.89,12.14-25.71,11.42-26.36,11.38
|
||||
c-1.1-0.06-1.94-1.01-1.88-2.11c0.06-1.1,1.02-1.94,2.11-1.88c0.18,0.01,14.57,0.64,24.2-11.28c0.06-0.08,0.13-0.15,0.2-0.21
|
||||
c2.24-2.06,3.83-1.47,4.58-0.93c3.13,2.26-0.12,9.94-0.8,11.46C398.63,228.7,392.73,235.45,384.97,235.45z"/>
|
||||
</g>
|
||||
<ellipse transform="matrix(0.9899 -0.1415 0.1415 0.9899 -23.3739 56.8027)" cx="387.68" cy="192.74" rx="3.74" ry="5.9"/>
|
||||
<ellipse transform="matrix(0.944 -0.33 0.33 0.944 -44.726 128.6253)" cx="356.5" cy="196.05" rx="3.74" ry="5.9"/>
|
||||
</g>
|
||||
<g id="Layer_2">
|
||||
<path class="st11" d="M359.5,158.88c0,0,7.14,32.53,30.01,17.63c0,0,13.22,18.89,28.96,5.67l-16.37-27.91L359.5,158.88z"/>
|
||||
</g>
|
||||
<g id="Layer_7">
|
||||
<g>
|
||||
<path class="st13" d="M438.56,199.65l-12.22,0.98L405,170.51l-47.5-24.47l-7.11-3.66c0,0,16.61-25.33,42.84-22.06
|
||||
c2.71,0.34,5.52,0.98,8.42,1.99C432.69,133.08,456.43,154.13,438.56,199.65z"/>
|
||||
<path class="st14" d="M438.56,199.65l-12.22,0.98L405,170.51l-47.5-24.47l-7.11-3.66c0,0,16.61-25.33,42.84-22.06
|
||||
c2.71,0.34,5.52,0.98,8.42,1.99C432.69,133.08,456.43,154.13,438.56,199.65z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Layer_22">
|
||||
<path class="st2" d="M394.08,122.28c-13.61,8.05-27.07,18.55-35.73,25.72l-7.11-3.66C351.24,144.34,367.85,119.01,394.08,122.28z"
|
||||
/>
|
||||
</g>
|
||||
<g id="Layer_6">
|
||||
<path class="st15" d="M425.39,198.17c-1.94-2.94-42.39-63.11-88.6-26.99c-1.82,1.42-3.66,2.99-5.5,4.73l-17.05-14.55
|
||||
c0,0-7.05-8.46,2.59-14.34c1.92-1.17,4.12-2.31,6.54-3.33c9.72-4.13,22.97-6.55,35.78-2.78
|
||||
C375.12,145.61,402.83,159.69,425.39,198.17z"/>
|
||||
</g>
|
||||
<g id="Layer_23">
|
||||
<path class="st2" d="M335.05,169.85c-1.55,1.24-3.13,2.61-4.7,4.12l-14.56-12.69c0,0-6.02-7.38,2.21-12.5
|
||||
c1.64-1.02,3.52-2.01,5.58-2.9c-1.28,3.92-2.04,8.38-0.15,10.88C326,160.15,331.56,166.16,335.05,169.85z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 138 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 119 KiB |
|
|
@ -0,0 +1,482 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#371841;}
|
||||
.st1{fill:#FF866D;}
|
||||
.st2{fill:#2A74CD;}
|
||||
.st3{fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st4{fill:#361740;}
|
||||
.st5{fill:none;stroke:#371841;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st6{fill:#FF9B87;}
|
||||
.st7{fill:#FFFFFF;}
|
||||
.st8{fill:none;stroke:#361740;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st9{fill:#B6D5FF;}
|
||||
.st10{fill:#BFBBC5;}
|
||||
.st11{fill:none;stroke:#A2A4B4;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st12{fill:#54446C;}
|
||||
.st13{fill:none;stroke:#ADACBB;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st14{fill:#A2A4B4;}
|
||||
.st15{fill:#FF5E65;}
|
||||
.st16{fill:#B5D4FF;}
|
||||
.st17{fill:#3B1A44;}
|
||||
.st18{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st19{fill:#FD866C;}
|
||||
.st20{fill:#F47A66;}
|
||||
.st21{fill:#F5796B;}
|
||||
.st22{fill:none;stroke:#E6524D;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st23{fill:#F16A58;}
|
||||
.st24{fill:#F26A57;}
|
||||
.st25{fill:#FFFFFD;}
|
||||
.st26{fill:#33133F;}
|
||||
.st27{fill:none;stroke:#33133F;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st28{fill:none;stroke:#2053C5;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st29{fill:#FF886E;}
|
||||
.st30{fill:#F37B66;}
|
||||
.st31{fill:#F27A67;}
|
||||
.st32{fill:none;stroke:#371841;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st33{fill:#FDFFFC;}
|
||||
</style>
|
||||
<g id="Layer_31">
|
||||
<polyline class="st0" points="404.5,887.7 239.6,887.7 239.6,829.3 415.2,829.3 415.2,887.6 404.5,887.7 "/>
|
||||
</g>
|
||||
<g id="Layer_6">
|
||||
<path class="st1" d="M621.2,305c0,0-17.9,27.5-47.9,33.1s-73,0.5-80.7-11.1c0,0,27.4-5.2,30.9-31.2c0.7-5.2,0.5-11.3-1.2-18.4
|
||||
c53.3-14.2,53.3-14.2,53.3-14.2s0,1.1,0.3,2.9C577.3,275.1,584.4,302.1,621.2,305z"/>
|
||||
</g>
|
||||
<g id="Layer_47">
|
||||
<path class="st0" d="M575.9,266.1c-5.5,18.2-39.9,27.1-52.4,29.7c0.7-5.2,0.5-11.3-1.2-18.4c53.3-14.2,53.3-14.2,53.3-14.2
|
||||
S575.6,264.3,575.9,266.1z"/>
|
||||
</g>
|
||||
<g id="Layer_40">
|
||||
<path class="st2" d="M707.8,813.6c0,0,80.2-5.3,119.9-29.8c0,0,61.3-0.3,75.9-29.8c14.6-29.5,22.9-63.3,12.9-104.7
|
||||
c-9.9-41.4-18.9-76.8-22.2-98.1c-3.3-21.2-32.5-113.3-63.6-148.7s-87.5-95.7-206.4-98.1c0,0-14.1-8.1-15.7-7.7
|
||||
c-1.6,0.5-5,8.6-10.8,12.2c-5.9,3.6-48.4,28.7-95.1,5.6c0,0-11.1,3.2-14.3,10c0,0-40.3,20.5-48.3,20.5c-8,0,83.6,470.5,83.6,470.5
|
||||
L707.8,813.6z"/>
|
||||
<path class="st0" d="M827.7,783.8c0,0,25.3,63.8,20.1,103.9H526V775.3L827.7,783.8z"/>
|
||||
</g>
|
||||
<g id="Layer_42">
|
||||
<path class="st3" d="M842.8,641.2c0,0-23.5-7.5-36.3-5c-12.8,2.5-21.7,2.4-21.7,2.4"/>
|
||||
<path class="st3" d="M803.7,628c0,0,22.1-11.4,40.9-7.8"/>
|
||||
<path class="st4" d="M733.6,631.2c0,0,35.9-5.3,37.3-5s-11.4-146.2-28.5-177.1c0,0,49.1,124.5,42.3,194.9
|
||||
C735.4,635.7,733.6,631.2,733.6,631.2z"/>
|
||||
<path class="st3" d="M740,455.1c0,0-17.9-44.8-19.3-58"/>
|
||||
<line class="st3" x1="742.6" y1="436.1" x2="742.6" y2="406.9"/>
|
||||
</g>
|
||||
<g id="Layer_18">
|
||||
<path class="st0" d="M214.3,426.7c0,0-5.5-32.4,27.6-48.4c0,0,11.6-1,13.6-18.4s29.7-23.5,29.7-23.5s15-7.8,14.7-31.4
|
||||
c-0.3-23.5,17-51.9,35.1-59.5c0,0,17.7-33.8,54.6-21.6c0,0,55.2-3.4,56.6,49.4c1.4,52.9-7,79.1,8.4,87.3c15.4,8.2,21.6,8.9,22.9,29
|
||||
c1.4,20.1,19.8,2,31.4,26.6c11.6,24.6-5.8,40.6-5.8,40.6L214.3,426.7z"/>
|
||||
<path class="st5" d="M197.9,411.4c0,0,5-30.5,24.4-38.4c19.3-7.9,25.4-14.1,28.5-24.3c3.2-10.2,20.7-16.2,30.9-22.6
|
||||
c10.3-6.4,19.8-15.6,22.3-22.2"/>
|
||||
<path class="st5" d="M439.9,337.7c0,0,10.1,17.6,24,21.3c14,3.7,21.7,16.1,24.3,26.9s19,10.8,21.9,13.3
|
||||
c2.9,2.5,17.3,12.1,15.8,41.9"/>
|
||||
</g>
|
||||
<g id="Layer_28">
|
||||
<path class="st6" d="M401.5,399.5c0,0-56.5,54.5-119.7-3.9c0,0,23,3,40.3-33.1c2.9-6.1,5.6-13.2,8.1-21.7c1-3.6,2-7.4,2.9-11.4
|
||||
l48,26c0,0-0.8,1.2-1.8,3.2c-0.2,0.4-0.4,0.7-0.6,1.2C374.5,368.9,368.9,390,401.5,399.5z"/>
|
||||
</g>
|
||||
<g id="Layer_29">
|
||||
<path class="st7" d="M408.7,532.9v73.6l-3.5,48l-6.5,89l-6.3,87H285.6l3.7-173.9l-15.2-258.8c0,0,3.5-7,16.4-5.4
|
||||
c0,0,41.1,48.6,104.9,5.4c3.7-4,7.8-1.4,8.2,0.2c0.5,1.6,3.8,48.1,5.1,62C410,473.9,408.7,532.9,408.7,532.9z"/>
|
||||
<path class="st8" d="M282.6,399.3c0,0,59.5,54.5,116.4,5.5"/>
|
||||
</g>
|
||||
<g id="Layer_45">
|
||||
<path class="st9" d="M326.7,493.6c-4.1,1.3-3.7,11.3-3.7,11.3s-9.3-1.7-10.5,3.2c-1.1,4.9,1.6,7.6,5.9,8.3c0.3,6.3-0.3,10.9,6.5,12
|
||||
c6.7,1.1,8-5.9,8-5.9s6.6,4.9,11.2,2.3c4.6-2.6,4-10.6,0-13.2c1.2-2.6,6-3,4.9-9.2c-1.1-6.2-12.8-2.4-12.8-2.4
|
||||
S335.1,490.9,326.7,493.6z"/>
|
||||
<circle class="st7" cx="332" cy="510.8" r="4.8"/>
|
||||
<path class="st9" d="M363.1,562.8c-4.7,0.9-5.5,11.9-5.5,11.9s-10-3.1-11.9,2.1c-1.9,5.2,0.8,8.6,5.4,9.9c-0.5,7-1.7,12,5.6,14.1
|
||||
c7.3,2.1,9.6-5.5,9.6-5.5s6.6,6.2,12,3.9c5.4-2.3,5.8-11.2,1.7-14.5c1.7-2.7,7-2.6,6.5-9.5c-0.5-6.9-13.7-4.2-13.7-4.2
|
||||
S372.8,560.9,363.1,562.8z"/>
|
||||
<circle class="st7" cx="366.8" cy="582.4" r="5.3"/>
|
||||
<path class="st9" d="M286.6,560c-5.1,1-6,13-6,13s-10.9-3.3-13,2.3s0.8,9.3,5.9,10.8c-0.5,7.6-1.8,13,6.1,15.3
|
||||
c7.9,2.3,10.4-5.9,10.4-5.9s7.2,6.7,13.1,4.3c5.8-2.5,6.3-12.1,1.8-15.8c1.8-2.9,7.6-2.8,7.1-10.3c-0.5-7.5-14.9-4.6-14.9-4.6
|
||||
S297.1,558,286.6,560z"/>
|
||||
<circle class="st7" cx="290.6" cy="581.3" r="5.8"/>
|
||||
<path class="st9" d="M328.2,664.8c-4.7,0.9-5.5,11.9-5.5,11.9s-10-3.1-11.9,2.1c-1.9,5.2,0.8,8.6,5.4,9.9c-0.5,7-1.7,12,5.6,14.1
|
||||
c7.3,2.1,9.6-5.5,9.6-5.5s6.6,6.2,12,3.9s5.8-11.2,1.7-14.5c1.7-2.7,7-2.6,6.5-9.5s-13.7-4.2-13.7-4.2S337.9,662.9,328.2,664.8z"/>
|
||||
<circle class="st7" cx="332" cy="684.4" r="5.3"/>
|
||||
<path class="st9" d="M385.4,632.4c-3.9,1.3-3.5,10.8-3.5,10.8s-8.9-1.6-10,3s1.5,7.3,5.6,7.9c0.3,6-0.3,10.4,6.2,11.5
|
||||
s7.7-5.6,7.7-5.6s6.3,4.6,10.7,2.2c4.4-2.5,3.8-10.1,0-12.6c1.2-2.5,5.7-2.9,4.6-8.8c-1.1-5.9-12.2-2.3-12.2-2.3
|
||||
S393.5,629.8,385.4,632.4z"/>
|
||||
<circle class="st7" cx="390.5" cy="648.8" r="4.6"/>
|
||||
<path class="st9" d="M381.5,444.1c-3.1-0.3-5.6,6.5-5.6,6.5s-5.8-3.7-7.9-0.8c-2.1,2.9-1.1,5.5,1.6,7.2c-1.6,4.3-3.2,7.2,1,9.9
|
||||
c4.2,2.6,7-1.7,7-1.7s3.1,5.1,6.9,4.7c3.8-0.5,5.6-6,3.7-8.8c1.5-1.4,4.9-0.3,5.8-4.8c0.9-4.5-7.9-5.2-7.9-5.2
|
||||
S387.9,444.7,381.5,444.1z"/>
|
||||
<circle class="st7" cx="380.3" cy="457.1" r="3.5"/>
|
||||
<path class="st9" d="M315.2,424.3c-3.1,1.6-1.5,9.4-1.5,9.4s-7.6-0.2-7.9,3.8s2.2,5.8,5.7,5.8c1,5,1.2,8.7,6.7,8.7
|
||||
c5.5,0,5.6-5.7,5.6-5.7s5.9,3,9.2,0.4s1.8-8.9-1.7-10.4c0.6-2.2,4.4-3.2,2.7-7.9c-1.7-4.7-10.4-0.2-10.4-0.2
|
||||
S321.6,421.1,315.2,424.3z"/>
|
||||
<circle class="st7" cx="321.7" cy="437.3" r="3.8"/>
|
||||
</g>
|
||||
<g id="Layer_50">
|
||||
<path class="st0" d="M380.4,359c-0.6,0.2-1.2,0.5-1.7,0.7c-27.6,11.3-45.9,7.9-56.6,2.8c2.9-6.1,8.1-22.7,10.5-31.2
|
||||
c10.1,3.5,24,18.8,46.7,27.2C379.6,358.7,380,358.9,380.4,359z"/>
|
||||
</g>
|
||||
<g id="Layer_30">
|
||||
<path class="st10" d="M279.6,395.2c0,0-30.8-5.7-41.2,13.6c0,0-89.1,29.8-106,78S97.8,629.5,94.5,663.4
|
||||
c-3.3,33.9-18.8,142,59.3,158.1l1.8,66.2h132.9v-69.2c0,0,38.2-9.2,47.5-39c0,0,3.8,4.2,9.3-8.1c0,0-11.5-28.3-11.5-39.8
|
||||
c0,0-3.7-4-11.8,2.2c0,0-11.8-18.8-25.4-19.5c0,0-2.6-123.4-6.3-157.4S279.6,395.2,279.6,395.2z"/>
|
||||
<path class="st10" d="M400.8,397.7c0,0,7.8,249.2,2,265.8L570,705.4l5.7-136c0,0-38-134.4-135.8-154.1
|
||||
C439.9,415.2,430,395.4,400.8,397.7z"/>
|
||||
</g>
|
||||
<g id="Layer_64">
|
||||
<path class="st11" d="M169,841.8c0,0,2.2,41.4,2.3,44.2"/>
|
||||
<path class="st11" d="M186.5,841.8c0,0,0,43.4,0.9,45.3"/>
|
||||
<path class="st11" d="M202.1,839c0,0-0.3,45.9,0.8,48.1"/>
|
||||
<path class="st11" d="M217.7,838.2c0,0-1.4,47.7,0,48.9"/>
|
||||
<path class="st11" d="M233.7,836.1c0,0-0.6,50.9,0,51.1"/>
|
||||
<path class="st11" d="M250.5,832.8c0,0-0.2,50.9,1.4,54.4"/>
|
||||
<path class="st11" d="M270.4,827.3c0,0-0.8,58.1,0,59.8"/>
|
||||
</g>
|
||||
<g id="Layer_53">
|
||||
<path class="st12" d="M517.1,659.6"/>
|
||||
<path class="st13" d="M454.5,422.1c0,0,6,71.9,6,84.9"/>
|
||||
<line class="st13" x1="472.5" y1="430.7" x2="475.2" y2="512"/>
|
||||
<line class="st13" x1="484.5" y1="438.4" x2="490.2" y2="644.2"/>
|
||||
<path class="st13" d="M567.8,575.2c0,0-52.4-121.1-70-126.5c0,0,7.7,181.5,5.3,201.4"/>
|
||||
<path class="st13" d="M555,581.6c0,0-49.1-115.5-56.6-117"/>
|
||||
<path class="st13" d="M543.8,592.1c0,0-32.4-97.3-44.2-100.6"/>
|
||||
<path class="st13" d="M500.6,519.1l35,89.6"/>
|
||||
<path class="st13" d="M529.2,625.6c0,0-23.6-80.9-27.8-83.8"/>
|
||||
<path class="st13" d="M517.1,659.6c0,0-2.7-73.2-14.9-91.4"/>
|
||||
<path class="st14" d="M407.3,405.7c0,0-2.8,3.7,0,3.7c2.8,0,13.8,0.9,16.9,1.9s9.1,3.5,9.1,2.4c0-1.1,2.6-4.3-2.2-5.4
|
||||
C426.3,407.2,407.3,405.7,407.3,405.7z"/>
|
||||
<path class="st14" d="M408.8,418.4c0,0-2.4,2.5-0.9,3.7s13,1,14.7,1.1c1.7,0.2,7.8,2.2,10,2.2s5.8-1.7,3.3-4.3
|
||||
C433.6,418.6,408.8,418.4,408.8,418.4z"/>
|
||||
<path class="st14" d="M408.6,432.7c0,0-1.5,3.3,0,3.9s29,3.3,29,3.3s2.7-5-0.9-5.4c-3.6-0.4-13.8-2.4-16.7-1.9
|
||||
C417.2,433.3,408.6,432.7,408.6,432.7z"/>
|
||||
<path class="st14" d="M410.9,447.2c0,0-2.2,2.2-1.3,3s15.1,1.7,17.7,1.7c2.6,0,8.3,1.3,9.6,0.9c1.2-0.4,3.3-6.3,1-5.6
|
||||
C435.6,447.9,410.9,447.2,410.9,447.2z"/>
|
||||
<path class="st14" d="M410.9,459.8c0,0-0.6,2.6,0,3c0.6,0.4,13.2,1.2,15,1.2s11.6,0.5,11.6,0.5s2.2-3.8,0.4-4.7s-13.8,0.4-15.8,0
|
||||
C420,459.4,410.9,459.8,410.9,459.8z"/>
|
||||
<path class="st14" d="M411.4,471.3c0,0-1.7,2.8-0.7,3.2c1,0.3,25.3,2.6,26.9,2.6c1.7,0,4.3-4.1,1.2-5
|
||||
C435.8,471.2,411.4,471.3,411.4,471.3z"/>
|
||||
<path class="st14" d="M410.7,483.4c0,0-1.5,2.6,0.6,2.8s28.2,2,28.2,2s2.9-3.3,0.7-4.2s-12.1-1-12.1-1L410.7,483.4z"/>
|
||||
<path class="st14" d="M410.7,493.5c0,0-1.1,4.2,0,4.7c1.1,0.4,14.9,0,14.9,0s0.8-3.1,0-4.7C424.8,492,410.7,493.5,410.7,493.5z"/>
|
||||
<path class="st14" d="M408.6,598.9c0,0-0.8,2.5,2.1,3.2c2.8,0.8,11.6,2.1,11.6,2.1v-3.4L408.6,598.9z"/>
|
||||
<path class="st14" d="M408.5,608.7c0,0-1.4,1.4,0,2.5c1.4,1.1,11.1,2.7,13,2.7c1.9,0,9.7,1.9,9.7,1.9s2.1-6.1,0-6.1s-17.8,0-17.8,0
|
||||
L408.5,608.7z"/>
|
||||
<path class="st14" d="M407.8,618.8c-0.2,1.7-1.3,3.6,0.6,4.8s11.2,2.2,13.8,2c2.6-0.2,11.5,1.8,11.5,1.8s1.8-4.7,0-5.6
|
||||
s-10.9-1.4-15.4-1.7C413.9,619.7,407.8,618.8,407.8,618.8z"/>
|
||||
<path class="st14" d="M407.8,630.3c0,0-1.3,3.5,1.2,4.1c2.5,0.6,21.6,2.2,21.6,2.2s3.4-6.1,0-6
|
||||
C427.2,630.7,407.8,630.3,407.8,630.3z"/>
|
||||
<path class="st14" d="M407.8,640.1c0,0-0.5,4.3,0.6,4.6c1.2,0.3,12.5-0.6,12.5-0.6s2-3.7,0-4C418.9,639.9,407.8,640.1,407.8,640.1z
|
||||
"/>
|
||||
</g>
|
||||
<g id="Layer_54">
|
||||
<path class="st11" d="M205.1,428.9c0,0-30.7,36.7-39.3,71.4s-14.7,97.4-15.3,110c-0.7,12.7-5.3,32.7-6,51.4
|
||||
c-0.7,18.7,1,37.5,0,39.9c-1,2.5-4.3,11.4-0.2,17.9c0,0-4.2,22.8,0.4,30.8c4.6,8,13.3,18.2,57,18.5c43.8,0.3,97.1-5.9,103.6-5.9
|
||||
c6.5,0,16-4.6,16-4.6"/>
|
||||
<path class="st11" d="M324.6,766c0,0-28,13.9-49.3,16.3s-58.2,5.2-69.7,5.2s-74-1.5-79.2-30.5c-5.2-29,0-42.2,0-44.7
|
||||
s-1.8-37.3,0-51.8s6.5-67.5,7.7-80.7s15.1-110.6,36.1-126.4"/>
|
||||
<path class="st11" d="M328.6,774c0,0-29.6,21.3-55.8,26.2s-71.2,7.7-84.1,7.1c-12.9-0.6-72.1-10.1-77.7-38.5
|
||||
c-5.5-28.4-4.9-62.6-4.3-73.4s5.5-60.1,5.5-67.5s6.5-63.2,8.3-74.6c1.8-11.4,16-75.8,34.5-91.8"/>
|
||||
<path class="st11" d="M102.2,771.7c0,0,21,54.7,97.8,49.3s112.9-10.7,131.4-41.7"/>
|
||||
<path class="st11" d="M319.6,749.1c0,0-17.7,0.3-27.3,0c-9.6-0.3-57.5-0.8-67.9,0c-10.5,0.8-67.7,14.4-60.8-30.5c0,0,1-4.5-0.6-5.9
|
||||
c-1.6-1.3-1.9-4.5,0-9.9c1.9-5.4,1.4-21.4,1.4-33.4s3.5-84.8,7.8-113.2c4.3-28.4,7.5-50,9.1-58.9c1.6-8.8,14.4-47.6,25.2-58.3"/>
|
||||
<path class="st11" d="M207.7,454.8c0,0-14.4,43.1-17.4,69.3c-2.9,26.2-6.2,53.7-7,71.3s-2.1,26.7-2.1,35s0.5,25.4,0,38.5
|
||||
c-0.5,13.1-1.1,34.5-1.9,40.4c-0.8,5.9-3.7,20.1,4,21.7c7.8,1.6,23.8,1.1,39.3-1.6c15.5-2.7,49.8-4.3,72.2,2.5
|
||||
c22.5,6.9,24.6,8.5,24.6,8.5"/>
|
||||
<path class="st11" d="M195.4,714.9c0,0-1.3-74.9,0-90.7s1.1-39.6,3.2-62.1c2.1-22.5,11-81.6,11-81.6"/>
|
||||
<path class="st11" d="M206.9,425.3c0,0,2.7,12.8,2.7,34s0,49,0,49"/>
|
||||
<path class="st11" d="M219.8,417.3c0,0,3.7,74.9,2.9,115.6s-3.2,92.8-2.9,106.8c0.3,13.9,1.5,65,1.5,65"/>
|
||||
<path class="st11" d="M236.4,703.1c0,0-0.3-76,0-93.1c0.3-17.1,2.9-107.8,2.9-107.8"/>
|
||||
<path class="st11" d="M248.9,703.1c0,0-0.7-98.3,1.1-107.8"/>
|
||||
<path class="st11" d="M264.2,703.1c0,0-0.5-62.9,0-67.2"/>
|
||||
<line class="st11" x1="279.4" y1="708.7" x2="279.4" y2="681.7"/>
|
||||
<path class="st14" d="M245.3,409.6c0,0-2.7,4.8,0,5.9c2.7,1.1,9.6-2.7,14.4-2.9c4.8-0.3,17.1,1.3,17.1,0.1s2.7-5.4-1.3-5.4
|
||||
S245.3,409.6,245.3,409.6z"/>
|
||||
<path class="st14" d="M244.1,426.4c0,0-1.4,4.1,0,4.2s12.9-1.7,16.8-1.8c3.9-0.1,16.8-1.1,16.8-1.1s0.8-2.3-2.4-2.4
|
||||
C272.1,425.2,244.1,426.4,244.1,426.4z"/>
|
||||
<path class="st14" d="M243.5,443.4c0,0-1.6,5.6,0,5.6s18.1-4.6,21.1-4.6c3.1,0,15.1-1,15.1-1s0.4-2.9-1.9-2.9
|
||||
C275.5,440.5,243.5,443.4,243.5,443.4z"/>
|
||||
<path class="st14" d="M243.5,458.3c0,0-1.1,5.3,0,5.3s13-3.6,15.9-3.6c2.9,0,21.6-1.7,21.6-1.7s-0.2-4-2.2-3.5
|
||||
C276.7,455.3,243.5,458.3,243.5,458.3z"/>
|
||||
<path class="st14" d="M244.1,473.8v4.7c0,0,10.2-1.8,13.8-2.3c3.6-0.5,17.7-2.2,18.6-2.3s7.2-2.7,5.7-3.2S244.1,473.8,244.1,473.8z
|
||||
"/>
|
||||
<path class="st14" d="M245.4,489.4c0,0-0.2,5.9,1.6,5.9s25.3-5.9,25.3-5.9l10.2-1.3C282.5,488.1,284.5,482.4,245.4,489.4z"/>
|
||||
<path class="st14" d="M246.3,503.6c0,0-0.7,5.6,0,5.6s17.9-4.3,20.8-4.3c2.9,0,17-1.1,17-1.3s0-3.4-2.3-3.4
|
||||
S246.3,503.6,246.3,503.6z"/>
|
||||
<path class="st14" d="M247.9,519.1c0,0-0.2,5,1.1,5c1.3,0,14.9-3.6,17.2-4.1c2.3-0.5,19-2,19-2s-0.9-3.6-3.4-3.6
|
||||
S247.9,519.1,247.9,519.1z"/>
|
||||
<path class="st14" d="M249,535.3c0,0,1.3,5.7,1.9,5.7s14.6-5.7,17.8-5.7c3.2,0,16.5-3,16.5-3s-0.1-2.7-2.6-2.7
|
||||
C280,529.5,249,535.3,249,535.3z"/>
|
||||
<path class="st14" d="M251.4,552.5c0,0-0.4,4.3,0.6,4.5c1.1,0.2,15.8-5.9,18.1-6.1c2.3-0.2,16.1-2.5,16.1-2.5s-0.1-2.7-3.7-2.7
|
||||
c-3.6,0-24.1,4.7-25.3,4.8C256,550.7,251.4,552.5,251.4,552.5z"/>
|
||||
<path class="st14" d="M253.8,566.8c0,0-0.5,5.6,1.3,5.6c1.8,0,9.9-5,12-5.6c2.2-0.5,11.6-3.6,11.6-3.6l7.5-0.5c0,0,1.1-2.7,0-2.7
|
||||
S253.8,566.8,253.8,566.8z"/>
|
||||
<path class="st14" d="M256.5,580.4c0,0,0.7,5,2,4.5c1.3-0.5,10.6-4.1,16.3-5.9c5.7-1.8,11.5-1.8,11.5-1.8s0.7-2.9-1.1-2.9
|
||||
S256.5,580.4,256.5,580.4z"/>
|
||||
<path class="st14" d="M259.7,596.2c0,0,0,4.8,0.9,4.8s3.3-1.2,9.6-3.4c6.3-2.2,17.5-4.9,17.5-4.9s0.3-2.9-1.3-2.9
|
||||
C284.8,589.9,259.7,596.2,259.7,596.2z"/>
|
||||
<path class="st14" d="M263.1,609.8c0,0-0.5,4.1,1.6,4.1c2.2,0,16.8-5.7,16.8-5.7l7.2-2.5c0,0-1.1-2.3-2.5-2.2
|
||||
C284.8,603.7,263.1,609.8,263.1,609.8z"/>
|
||||
<path class="st14" d="M266.2,621.8c0,0,0.7,4.1,1.8,4.1s21.7-5.4,21.7-5.4s-0.3-3.3-2.9-3S266.2,621.8,266.2,621.8z"/>
|
||||
<path class="st14" d="M270.2,633.1c0,0-0.5,3.8,1.2,3.8c1.7,0,18.2-3.8,18.2-3.8s-1.6-5.4-2-4.3S270.2,633.1,270.2,633.1z"/>
|
||||
<path class="st14" d="M273.7,644.2c0,0,1.9,3.9,2.2,4.1c0.3,0.2,14.6-3,14.6-3s1.4-3.8,0-3.8C289.1,641.6,273.7,644.2,273.7,644.2z
|
||||
"/>
|
||||
<path class="st14" d="M277.9,653.9c0,0-0.5,5,0.8,5c1.3,0,12.5-3.6,12.5-3.6l-1.5-2.3L277.9,653.9z"/>
|
||||
<path class="st14" d="M279.9,665.2c0,0,0.5,2.9,1.5,3c1,0.2,8.2-1.5,8.2-1.5v-3.9L279.9,665.2z"/>
|
||||
<path class="st14" d="M283.7,673.5c0,0,0.1,2.7,0.8,2.9c0.7,0.2,6.7,0,6.7,0V672L283.7,673.5z"/>
|
||||
</g>
|
||||
<g id="Layer_63">
|
||||
<path class="st0" d="M295.6,713.9L286.4,506c0,0,18.3,176.5,17.1,210.2L295.6,713.9z"/>
|
||||
</g>
|
||||
<g id="Layer_9">
|
||||
<path class="st0" d="M618.3,415c0,0-41.8,0.3-41.8,36.7c-2.1,14.9-8.1,25.7-11.6,31.1s-9.9,10.5-9.9,21.5c0,11-15.8,27.8-15.2,35.2
|
||||
c0.6,7.5,26.6,9,26.6,9s10.5-19.7,10.5-27.5s-4.8,27.5-4.8,27.5s29.9,4.8,46.3,1.8c16.4-3,42.4,1,42.4,1s40-3.7,44.8-12.6
|
||||
c-4.2-10.5-12.5-21.2-11.9-26.3c0.6-5.1,5.4,6.6,9,9.3c3.6,2.7,10.7,10.2,10.7,13.4s17-5.7,17-5.7S713,503.2,702.5,500
|
||||
c-2.1-9.2-11-29.8-23-33.9C677.1,452.3,670.6,396.8,618.3,415z"/>
|
||||
<path class="st5" d="M531.7,542c0,0,0.1-13.4,8.1-20s9.5-14.2,10.2-24.8s17.3-18.3,17.3-18.3"/>
|
||||
<path class="st5" d="M676.4,464.6c0,0,16.7,3.2,24.8,16.7c8.1,13.5,8.9,20,15,22.3c6.2,2.3,17.5,9.2,19.4,22.9"/>
|
||||
</g>
|
||||
<g id="Layer_13">
|
||||
<path class="st6" d="M694.9,571.2L631.7,592l-56.1-22.7c0,0,29.8-3.9,35.5-25.5c1-3.6,1.2-7.7,0.6-12.3c-0.7-2.5,1.6-4,5.4-4.8
|
||||
c9.1-2,26.5-0.5,31.2,0c0.1,0,0.2,0,0.4,0c0.6,0.1,0.9,0.1,0.9,0.1s-5.6,29.8,33.8,38.5L694.9,571.2z"/>
|
||||
</g>
|
||||
<g id="Layer_48">
|
||||
<path class="st0" d="M648.8,526.7C648.8,526.7,648.8,526.8,648.8,526.7c-11.1,17.1-27.5,18.4-37.6,17.1c1-3.6,1.2-7.7,0.6-12.3
|
||||
c-0.7-2.5,1.6-4,5.4-4.8H648.8z"/>
|
||||
</g>
|
||||
<g id="Layer_15">
|
||||
<path class="st15" d="M727.7,887.7c0,0-1.8-73.9-11.6-92.2H575.7v92.2H727.7z"/>
|
||||
</g>
|
||||
<g id="girl_shirt">
|
||||
<path class="st16" d="M721.4,799.8c0,0-4.6-130.5-4.6-139.2s33.3-25,33.3-25s-9.6-61.3-66.7-70.2c0,0-33.9,21.9-107.7,4
|
||||
c0,0-56.5,8.1-56.8,96.3s61.6,139.7,61.6,139.7L721.4,799.8z"/>
|
||||
</g>
|
||||
<g id="Layer_58">
|
||||
<path class="st17" d="M581.4,567.7c0,0-67.8,9.1-66.8,97.1l6.6,2.1C521.2,666.9,513.8,591.2,581.4,567.7z"/>
|
||||
</g>
|
||||
<g id="Layer_46">
|
||||
<path class="st18" d="M570.7,592c0,0,11.2,13.8,15.5,10.7c4.4-3.1,8.8-14.5,17.8-7.8c9.1,6.7,10.1,11.9,12.7,11.1
|
||||
c2.6-0.8,7.6-10.6,11.1-10.4c3.4,0.3,7.3,4.4,12.3,5.4"/>
|
||||
<path class="st18" d="M652.4,595.2c0,0,8.5-7.3,11.6-7.5c3.1-0.3,9.1,7.8,14,7.5c4.9-0.3,9.8-9.3,14-9.8c4.1-0.5,10.9,8.3,12.4,8.3
|
||||
s8-2.3,10.9-6"/>
|
||||
<path class="st18" d="M532,648.3c0,0,4.9,12.2,11,10.9c6.1-1.3,10.3-9.6,11.8-9.1s12,11.7,14.5,11.4c2.5-0.3,9.3-9.3,13.7-9.3
|
||||
s10.9,9.3,14,9.3s14-11.9,14-11.9"/>
|
||||
<path class="st18" d="M640.1,622.4c0,0,7.4,7.6,12.3,5.6c4.9-2,7.1-9,13.4-6.7c6.3,2.3,11.2,7.9,15.9,6.7
|
||||
c4.7-1.2,11.6-11.1,14.5-10s8.5,1.4,15.5,7.9"/>
|
||||
<path class="st18" d="M553.1,692.5c0,0,15-10.6,21.7-7.2c6.7,3.4,10.6,8.5,10.6,8.5"/>
|
||||
<path class="st18" d="M596.8,689.2c0,0,4.5,6.9,8.6,4.6s5.9-7.5,9-5.7c3.1,1.8,3.1,6.1,6.2,6.2c3.1,0,6.5-6.7,9.6-6.6
|
||||
c3.1,0.1,5.2,6.1,6.5,6.1s6.5-4.6,6.5-4.6"/>
|
||||
<path class="st18" d="M569.2,727c0,0,7.1-9.1,9.7-7.5s4.7,10.6,10.4,7.5c5.7-3.1,7.8-13.2,15-8.8s6.2,9.8,9.3,7.8
|
||||
c3.1-2.1,10.1-8.9,10.1-8.9"/>
|
||||
<path class="st18" d="M645.5,735c0,0,5.4,12.2,10.9,10.9c5.4-1.3,9.3-9,12.2-8.4c2.8,0.6,8.5,7.8,11.6,10.2
|
||||
c4.1,3.1,12.8-2.9,12.5-8.2"/>
|
||||
<path class="st18" d="M598.9,768.6c0,0,5.7,10.6,9.1,9.8s10.6-8.7,14.5-6s7.2,8.3,8.8,7.5c1.6-0.8,11.9-13.2,14.2-10.6
|
||||
c2.3,2.6,6.7,9.8,9.6,8.8c2.8-1,11.1-9.6,11.1-9.6"/>
|
||||
<path class="st18" d="M669,781.8c0,0,6.9,13.2,11.1,11.4c4.2-1.8,9.8-10.9,12.5-9.6c2.8,1.3,9.2,11,11.6,9.7
|
||||
c2.3-1.2,7.5-16,15.5-7.9"/>
|
||||
<path class="st18" d="M575.7,754.4c0,0,0.8-4.9,5.5-3.1c4.7,1.8,6.6,8,11.9,6.2c5.3-1.8,9.4-16.6,21.6-4.9"/>
|
||||
<path class="st18" d="M581.2,791.2c0,0,8.2,9.6,14,7c5.8-2.7,10.7-11.3,14.3-7c3.6,4.3,5.2,6.5,5.2,6.5"/>
|
||||
</g>
|
||||
<g id="Layer_16">
|
||||
<polygon class="st6" points="751.8,887.7 751.8,753.8 711.5,743.5 723.2,887.7 "/>
|
||||
</g>
|
||||
<g id="Layer_62">
|
||||
<path class="st0" d="M711.8,746.8c0,0-1.1,41.4,4.2,52l2.5-40.4l33.3,11.5l0,10l35,17.8l40.9-13.9L711.8,746.8z"/>
|
||||
</g>
|
||||
<g id="Layer_39">
|
||||
</g>
|
||||
<g id="Layer_8">
|
||||
<path class="st19" d="M592.2,588.1c-0.4,0.2-0.6,0.5-0.8,0.9c-0.4,1.2-1.2,4.1,0.2,6.4c1.9,3.1,7.2,11.3,6.8,13.7s-1.5,3.8-7.7,0.9
|
||||
c-5.3-2.5-28.7-13.5-35.4-16.6c-1-0.4-2.1,0-2.4,1l-0.2,0.7c-0.3,0.8,0.1,1.7,0.8,2.1l28.1,15.5c0.9,0.5,1.2,1.6,0.7,2.4l-0.1,0.1
|
||||
c-0.4,0.7-1.3,1-2.1,0.8l-34.7-11.4c-1-0.3-2,0.3-2.3,1.3l-0.2,1c-0.2,0.8,0.2,1.7,1,2l32,13.6c0.8,0.3,1.2,1.2,1,2l0,0
|
||||
c-0.2,1-1.2,1.6-2.2,1.3l-29.6-7.9c-1-0.3-2,0.3-2.2,1.3l-0.1,0.6c-0.2,0.9,0.3,1.8,1.2,2.1l29.8,9.7c0.8,0.3,1.3,1.1,1.2,1.9
|
||||
l-0.1,0.8c-0.1,0.9-0.9,1.6-1.9,1.5l-21.8-1.6c-1-0.1-1.8,0.6-1.9,1.6l0,0.6c-0.1,0.9,0.6,1.7,1.5,1.9l26.6,4.5
|
||||
c0.1,0,0.2,0,0.3,0.1c1.9,0.7,20.8,7.8,29.1,9.2c0.2,0,0.3,0.1,0.5,0.1c2.1,1,19.2,9.3,22.2,11.9c2.8,2.3,10.9-19.2,13.3-26
|
||||
c0.4-1-0.3-2.1-1.3-2.3c-4.5-0.9-15.4-3.4-18.2-7c-3.6-4.6-15.6-21.4-18-23.6c-2.4-2.2-11.1-14.9-11.3-16.6
|
||||
C594.1,587.3,593,587.7,592.2,588.1z"/>
|
||||
<path class="st2" d="M639.3,639.8c0,0,3.2-9.5,7.8-9.2c4.6,0.3,10.9,4.6,10.9,4.6s45.1-28.7,97,0c16.4,4.6,17.8,5.2,25.6,4.6
|
||||
s4.3-1.1,4.3-1.1l0.8,130.1c0,0-96.6-24-111.6-38.8c-14.8-14.7-35.9-37.3-37.3-51.4c0,0-15.8-2.4-9.8-14.4
|
||||
C632.9,652.1,639.3,639.8,639.3,639.8z"/>
|
||||
</g>
|
||||
<g id="Layer_44">
|
||||
<path class="st3" d="M657.6,637.1c0,0,0.8,29.8-20.9,41.4"/>
|
||||
</g>
|
||||
<g id="Layer_12">
|
||||
<path class="st20" d="M662.1,485.1c0,0,10.8-2.2,9.2,7.8c-1.6,10-6.6,14.6-12.6,14.4C652.6,507.1,662.1,485.1,662.1,485.1z"/>
|
||||
<path class="st21" d="M589.2,483.5c0,0-11-0.4-8.2,13.2s13.6,14.2,13.6,14.2L589.2,483.5z"/>
|
||||
</g>
|
||||
<g id="Layer_10">
|
||||
<path class="st6" d="M586.7,486.5c0,0-2.6-27,4-36.8c0,0,2.3,10.7,0,15.6c0,0,5.1-14.7,4.9-25.6c0,0,6.5,15.8,2.8,21.2
|
||||
c0,0,25.1,6.5,33.8,2.2c0,0-2.3-17.3,2.9-23.4c0,0,1,7.5,1.9,10.5c0.9,3,3.3,7.7,2.8,9.8c-0.5,2.1,13.7,0.5,13.7,0.5
|
||||
s-5.4-20.5-2.8-24.9c0,0,17.2,11.2,14.9,45.8c-2.3,34.6-13.7,45.7-24.4,51.8c-10.7,6.1-38.9,2.6-49.1-23
|
||||
C588.1,494.7,586.7,486.5,586.7,486.5z"/>
|
||||
</g>
|
||||
<g id="Layer_11">
|
||||
<path class="st3" d="M594.6,476.1c0,0,8.8-12.8,24.8-3.8"/>
|
||||
<path class="st3" d="M633.6,471.2c0,0,7.1-11,23.9,0"/>
|
||||
<path class="st22" d="M620.3,477.4c0,0,8.1,11,1.3,23.4"/>
|
||||
<path class="st22" d="M614.8,509.9c0,0,13.9,12.7,25.9-2.3"/>
|
||||
<ellipse class="st0" cx="609" cy="482.7" rx="2.8" ry="3.8"/>
|
||||
<ellipse class="st0" cx="642.9" cy="481.4" rx="2.8" ry="3.8"/>
|
||||
</g>
|
||||
<g id="Layer_2">
|
||||
<path class="st1" d="M480.2,195.1c-1.1,8.4,10.6,71.8,40.7,81.9c30.1,10.1,72.1-0.7,63.7-67.5c-8.4-66.9-38-60.5-38-60.5
|
||||
L480.2,195.1z"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<path class="st0" d="M482.5,142.5c14.2-14.4,29.5-7.4,33.5-9.4c4-2,33.7-12.6,46.8,1.1c11.9,2.9,28.6,7.4,26.5,36.2
|
||||
c4,5.8,22.5,34-4.7,46.3c0,0-7.9-30.8-10.6-33.7c-2.7-2.9-16.6-13.3-13.9-25.6c0,0-5.6-2.5-7.6,3.6c-2,6.1-16.6,12.6-27.2,9.4
|
||||
c-5.4,6.7-9.7,20.7-28.3,19.6c0,0-4.7-0.4-4.7,3.4c0,3.8-2.2,14.2-9.7,14.4c0,0,5.4,28.6,8.3,31.7c0,0-9-5.4-13.5-7
|
||||
c-4.5-1.6-16-10.1-13.7-23.2c2.2-13,2.5-23.6,1.8-27c-0.7-3.4-0.9-7.9,4.5-13.7C470.3,158.4,482.5,142.5,482.5,142.5z"/>
|
||||
<path class="st23" d="M584.5,239.4c0,0,10.1-2.9,10.5-13.3c0.3-10.4,1.4-21.4-12.3-16.7C582.7,209.4,587.7,226.5,584.5,239.4z"/>
|
||||
<path class="st24" d="M487.6,231c0,0-12.6,3.7-5.3,17.7c7.3,14,18.7,11.1,18.7,11.1S489,237.1,487.6,231z"/>
|
||||
</g>
|
||||
<g id="Layer_43">
|
||||
<path class="st5" d="M520.9,186.9c0,0,3.5-9.1,12-9.7c8.5-0.6,25-0.8,25-20.4"/>
|
||||
</g>
|
||||
<g id="Layer_5">
|
||||
<path class="st0" d="M509.6,199.9c-9.3,1.2-12.8,4.9-16.7,13.1c0,0,8.9-7.5,13.8-8.5c4.9-1,18.2,0.2,18.2,0.2
|
||||
S521.7,198.4,509.6,199.9z"/>
|
||||
<path class="st0" d="M555.2,189.5c-8,1.3-15.3,7.3-15.2,9c0.2,1.7,1.7,2.9,4.9,1.1s17.8-10.5,28.1-4.6
|
||||
C573.1,195.1,565.5,187.8,555.2,189.5z"/>
|
||||
</g>
|
||||
<g id="Layer_4">
|
||||
<path class="st22" d="M527,206.4c0,0,12.1,18.1,6.6,28.8"/>
|
||||
<path class="st22" d="M526,247.8c0,0,19.2,7.8,30.7-9.4"/>
|
||||
<ellipse transform="matrix(0.9349 -0.355 0.355 0.9349 -44.6414 197.221)" class="st0" cx="515.2" cy="220.3" rx="3.6" ry="4.7"/>
|
||||
<ellipse transform="matrix(0.9349 -0.355 0.355 0.9349 -38.1598 210.7789)" class="st0" cx="555.4" cy="209.4" rx="3.6" ry="4.7"/>
|
||||
</g>
|
||||
<g id="Layer_23">
|
||||
<path class="st6" d="M491.8,647.2c-24.7,22.8-42,18.9-70.9,5.2c10.2-6.9,14.8-14.7,16.7-21.4c2.2-7.9,0.6-14.4,0-16.4
|
||||
c-0.1-0.4-0.2-0.6-0.2-0.6l37.5-4.1c-0.1,1.6-0.2,3.2-0.2,4.7c0,1.5,0,3,0.1,4.4C475.9,645.6,491.8,647.2,491.8,647.2z"/>
|
||||
</g>
|
||||
<g id="Layer_49">
|
||||
<path class="st0" d="M477.4,614.6c-0.8,1.6-1.6,3.1-2.7,4.4c-9.4,12.3-29.3,12.5-37.2,12c2.2-7.9,0.6-14.4,0-16.4H477.4z"/>
|
||||
</g>
|
||||
<g id="Layer_26">
|
||||
<polygon class="st2" points="393,887.7 397.4,862.8 532,862.8 536.2,887.7 "/>
|
||||
</g>
|
||||
<g id="Layer_25">
|
||||
<path class="st6" d="M342.9,887.7c0,0,7.4-118.8,7.8-128.6c0.4-9.8,40.2,2.6,40.2,2.6s-5.7,71.4-10.3,90.2
|
||||
c-4.5,18.9-9.8,35.8-9.8,35.8H342.9z"/>
|
||||
<path class="st6" d="M571.8,737.5c0,0,6.6,57.8,7.4,80.8c0.8,23,2.1,69.5,2.1,69.5h-27.9c0,0-16-65.4-16.4-69
|
||||
c-0.4-3.7-4.9-73-4.9-73L571.8,737.5z"/>
|
||||
</g>
|
||||
<g id="Layer_20">
|
||||
<path class="st20" d="M487.9,597.1c0,0,9.1,2.8,14.8-7.2c5.7-9.9,1.3-18.1-9.6-14.8L487.9,597.1z"/>
|
||||
<path class="st21" d="M421.9,597.4c0,0-16.9,3.2-17.4-19.4c3.4-5.9,12.4,1.5,12.4,1.5L421.9,597.4z"/>
|
||||
</g>
|
||||
<g id="Layer_19">
|
||||
<path class="st6" d="M450.5,513.7c-28.1,2.2-43.7,35.3-41.5,48.9c2.2,13.6,12.8,60.1,45.7,60.8s45.2-32.9,41.5-82.7
|
||||
C492,510.9,450.5,513.7,450.5,513.7z"/>
|
||||
</g>
|
||||
<g id="Layer_21">
|
||||
<path class="st25" d="M442.4,589.4c0,0,13.3,6.4,31.1,0c0,2.8-1.8,12.7-15.5,12.7S443.8,594,442.4,589.4z"/>
|
||||
</g>
|
||||
<g id="Layer_22">
|
||||
<path class="st22" d="M463,554.6c0,0-13,14-1.5,30.3"/>
|
||||
<path class="st3" d="M426.6,554.6c0,0,13-9.6,21.6,2.3"/>
|
||||
<path class="st3" d="M465.5,553c0,0,11.1-7.5,21,3.9"/>
|
||||
<ellipse class="st0" cx="439.9" cy="569.1" rx="2.5" ry="4.6"/>
|
||||
<ellipse class="st0" cx="473.6" cy="568" rx="2.5" ry="4.6"/>
|
||||
</g>
|
||||
<g id="Layer_36">
|
||||
<path class="st3" d="M439.9,419.6c0,0,7.8,65.6,5.4,84.1"/>
|
||||
</g>
|
||||
<g id="Layer_17">
|
||||
<path class="st0" d="M433.7,522.4c0,0,1.1,18-11.8,18.8c0,0,2.5,20.5-8.4,20.5c0,0-2.2,12.6,2.2,15.7l-9.3,10.3
|
||||
c0,0-8.4-21.5-5.3-30.5c0,0-7.6-17.7,5.6-28.6c0,0,2.5-22.2,20.2-23.9c0,0,18.5-24.4,41-1.1c0,0,21.9-10.6,32,22.1
|
||||
c0,0,17.7,2.1,6.4,29c0,0-1.1,20.4-3.7,24.7c-2.6,4.3-8.7,6.7-8.7,6.7s0.9-37.6-1.5-40.9s-25.1-2.6-29.6-17.3
|
||||
C463,528,440.8,533.4,433.7,522.4z"/>
|
||||
</g>
|
||||
<g id="t-shirt">
|
||||
<path class="st7" d="M536.7,750.9c0,0,3,47.4,3,54.3s-0.5,59.7-0.5,59.7s-28.7,8.8-56.1,5c-12.7,1-20.7,3.6-31.2,3.9
|
||||
c-10.5,0.3-62.2-4.7-62.7-8.8c-0.6-4.2,2.2-99.7,2.2-99.7s-37.3,0.8-45.6-5.2c0,0-12.4-100.8,79.8-113.2c0,0,24.5,25.9,59.2-1.9
|
||||
c0.2-0.2,0.4-0.3,0.6-0.5c0,0,22.8,9.8,36.9,13.4c14.1,3.6,48.4,35.1,53.4,83.4C575.7,741.2,549.4,751.2,536.7,750.9z"/>
|
||||
</g>
|
||||
<g id="Layer_59">
|
||||
<path class="st17" d="M476.8,631.6c0,0,13,12.4,26.4,14.7s46.4,12.8,62.9,51.9l4.7-48v60.2c0,0,12,39.6,15.7,73.8
|
||||
c3.7,34.2,7.8,103.5,7.8,103.5h-13.1c0,0-2.3-67-4.4-92.2c-2.1-25.1-6.2-52.8-6.2-52.8l3.5-0.6c0,0-3.1-17.5-7.4-27.8
|
||||
c-4.3-10.3-17.3-52.9-53.1-58.7C479.5,650.1,476.8,631.6,476.8,631.6z"/>
|
||||
</g>
|
||||
<g id="Layer_60">
|
||||
<path class="st26" d="M407.4,650.7c0,0-46.8,15.1-52,52.6s-5.7,53.6-6.3,71.5c-0.5,17.9-3.6,71.8-3.6,71.8s15-127.5,15.9-134.9
|
||||
C362.2,704.4,366,670.3,407.4,650.7z"/>
|
||||
</g>
|
||||
<g id="Layer_61">
|
||||
<path class="st27" d="M420.1,653.6c0,0,38.3,30.5,70.4-2.2"/>
|
||||
<line class="st27" x1="532.4" y1="706.3" x2="536.2" y2="751.2"/>
|
||||
<path class="st27" d="M566.4,734.1c0,0-11.4,11.1-30.2,7.3"/>
|
||||
<line class="st27" x1="377.1" y1="751.2" x2="392.1" y2="751.2"/>
|
||||
<line class="st27" x1="392.1" y1="744.1" x2="392.1" y2="764.8"/>
|
||||
</g>
|
||||
<g id="Layer_55">
|
||||
<path class="st3" d="M489.9,329c0,0,84.9,44.4,132.3-21.5"/>
|
||||
<path class="st28" d="M505.5,317.4c0,0-8.2,6.2-9,10.4"/>
|
||||
<path class="st28" d="M511.6,319.8c0,0-7,8.6-6.5,10.6"/>
|
||||
<path class="st28" d="M518.1,323.5c0,0-4,9.8-3.8,11.7"/>
|
||||
<path class="st28" d="M526.3,325.1c0,0-3.5,8.5-2.4,11.4"/>
|
||||
<line class="st28" x1="533.7" y1="326.1" x2="533.7" y2="338.6"/>
|
||||
<line class="st28" x1="542.1" y1="326.1" x2="542.8" y2="340.3"/>
|
||||
<line class="st28" x1="550.1" y1="326.1" x2="551.4" y2="340.3"/>
|
||||
<line class="st28" x1="558.6" y1="325.1" x2="561.3" y2="340.1"/>
|
||||
<line class="st28" x1="567.2" y1="323.5" x2="571.2" y2="338.5"/>
|
||||
<line class="st28" x1="575.8" y1="322.5" x2="581.9" y2="335.5"/>
|
||||
<line class="st28" x1="583.4" y1="319.8" x2="592.2" y2="331"/>
|
||||
<line class="st28" x1="592.2" y1="315.7" x2="601.4" y2="325.4"/>
|
||||
<line class="st28" x1="599.9" y1="310.3" x2="609.9" y2="318.5"/>
|
||||
<line class="st28" x1="604.9" y1="305.5" x2="614.8" y2="311.4"/>
|
||||
<line class="st28" x1="609.9" y1="299.9" x2="620.7" y2="306.6"/>
|
||||
</g>
|
||||
<g id="Layer_56">
|
||||
</g>
|
||||
<g id="Layer_57">
|
||||
</g>
|
||||
<g id="Layer_52">
|
||||
</g>
|
||||
<g id="Layer_38">
|
||||
<path class="st23" d="M177.8,425.3c0,0,22.2-2.1,29.2-3.4c7-1.4-2.1,4.8-4.4,6.6c-2.3,1.8-17,9.2-17,9.2L177.8,425.3z"/>
|
||||
</g>
|
||||
<g id="Layer_37">
|
||||
<path class="st29" d="M145.5,448.5c-5.2,5.4,13.7,19.7,17.2,20.6c3.4,0.9,4.6-2.3,1.4-6S151.2,442.5,145.5,448.5z"/>
|
||||
<path class="st1" d="M179.4,422.6c0,0-9.9-2.1-8,7.3c0,0-12.6-2.7-10.5,9.2c0,0-11.9-4.1-7.3,8.1c0,0,14.2,19.8,19.7,18.7
|
||||
c5.5-1.1-4.8-13.5-4.8-13.5s8.5,9.9,11,9.9c2.5,0,9.4,2.5-3.7-21.1c7.7,8.7,11.9,12.8,14.4,12.1
|
||||
C192.7,452.6,196.3,447.2,179.4,422.6z"/>
|
||||
</g>
|
||||
<g id="Layer_35">
|
||||
<path class="st3" d="M138.7,726c0,0,36.1-12.4,54.4-9.7c18.3,2.7,73.3-17.4,110.5-0.1"/>
|
||||
<path class="st3" d="M191.7,486.5c0,0,13.3,27.8,12.3,42"/>
|
||||
<path class="st0" d="M211.3,503.6c0,0-4.5,88.6-7.3,106.3c-2.8,17.7-1.8,88.1,3.6,105.5l17.2-3.3c0,0-4.2-8.2-7.2-37
|
||||
C214.5,646.4,211.3,503.6,211.3,503.6z"/>
|
||||
<path class="st3" d="M238.3,416.5c0,0,2.4,247.7,57.9,279.7"/>
|
||||
<path class="st3" d="M133.2,703.5c0,0,33.4-4.6,46.6,4.1"/>
|
||||
<path class="st3" d="M321.6,736.2c0,0,4.4,37.4,13.3,40.5"/>
|
||||
<path class="st0" d="M153.8,821.3l0.6,18.5c0,0,97.3,4.6,134.2-21.3C288.5,818.5,251.6,833.1,153.8,821.3z"/>
|
||||
</g>
|
||||
<g id="Layer_34">
|
||||
<path class="st30" d="M418.6,342c-7,9.5-21,5.9-21,5.9l21-23.4C418.6,324.6,426.2,331.8,418.6,342z"/>
|
||||
<path class="st31" d="M324.9,285c-1.4,10.5-1.8,24,4.6,29.3c6.4,5.3,9.1-34.3,9.1-34.3S326.5,273.9,324.9,285z"/>
|
||||
</g>
|
||||
<g id="Layer_27">
|
||||
<path class="st6" d="M338.5,280c0,0,8.1-1.8,10.3-12.8c2.2-11,11.2-10.6,11.2-10.6s17.7,2.6,25.1-11.6c1.5-3.1,6.1,2.1,7.8,15
|
||||
c1.7,13,11.7,22.3,22.9,23.1c11.2,0.9,2.8,15.1,5,18.8c2.2,3.7,8.4,5.8,8.4,5.8s-15.1,47.8-52.3,51.6s-43.6-8.9-46.2-45.2
|
||||
C330.7,301.8,338.5,280,338.5,280z"/>
|
||||
</g>
|
||||
<g id="Layer_65">
|
||||
<path class="st32" d="M354.7,267.9c0,0-4.3-4.7,8.5-4.7s22.5,4.5,21.9-18.1"/>
|
||||
</g>
|
||||
<g id="Layer_32">
|
||||
<path class="st6" d="M331.8,737.5c0,0,26.5-4.6,29.1-7.8c2.6-3.1,11.4-19.5,14.6-23.2c3.1-3.6,9.9-17.5,9.9-21.2
|
||||
c0-3.7,5.3,0.2,4.1,6.1c-1.2,5.8-7,16.3-5.8,16.6c1.2,0.2,17.9-9.3,24.5-14.3c6.5-5.1,17.1-9,17.9-8.2c0.9,0.9-15.4,16.4-22.1,21
|
||||
c-6.7,4.6-6.5,5.9-4.7,5.3s30.4-17.7,33-18.2c2.6-0.5,7.9,0.2,5.1,2.3c-2.8,2.1-33.2,21-33.5,21.6c-0.2,0.6,13.6-3.8,20.4-6.9
|
||||
c6.8-3.1,12-3.4,12.1-2.6c0.1,0.7-25.2,15.4-28.2,17.2c-3,1.7,10.4,1.7,14.3,1.1s8.3-0.6,8.3-0.6s1,2.3-7.2,4.3s-18.6,6.1-21.5,6.9
|
||||
c-2.9,0.8-23,11.1-26.3,12.6c-3.3,1.5-34.1,18.5-34.1,18.5L331.8,737.5z"/>
|
||||
</g>
|
||||
<g id="Layer_33">
|
||||
<path class="st22" d="M388.9,293.9c0,0-12.7,6.9-12.1,25.6"/>
|
||||
<path class="st33" d="M355,314.4c-0.8-1.2-1.1,20.4,10.3,22.9c11.4,2.5,22.4-6.1,22.4-6.1S367.3,331.2,355,314.4z"/>
|
||||
<ellipse transform="matrix(0.5 -0.866 0.866 0.5 -70.6232 460.1666)" class="st0" cx="363.2" cy="291.2" rx="4.6" ry="2.1"/>
|
||||
<ellipse transform="matrix(0.5 -0.866 0.866 0.5 -68.7883 498.071)" class="st0" cx="396.9" cy="308.6" rx="4.6" ry="2.1"/>
|
||||
<path class="st0" d="M373.5,273.1c-8.3-4.3-13.1-2.3-21.2,1.3c0,0,12.3,0.6,16.2,1.5c5.7,1.3,14.9,9.8,14.9,9.8
|
||||
S384.3,278.7,373.5,273.1z"/>
|
||||
<path class="st0" d="M411.1,293.4c-6.2-4.4-10.2-3.2-17-1.3c0,0,9.7,1.9,12.7,3c4.4,1.7,10.8,9.5,10.8,9.5S419.1,299.1,411.1,293.4
|
||||
z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 181 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 164 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 140 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 134 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 658 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 738 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 712 KiB |
|
|
@ -0,0 +1,36 @@
|
|||
.ctabutton {
|
||||
display: inline-block;
|
||||
background: 0;
|
||||
background-color: var(--ci_color_secondary);
|
||||
border:0;
|
||||
border-radius: 28px;
|
||||
padding: 10px;
|
||||
padding-left: 18px;
|
||||
padding-right: 18px;
|
||||
width: auto;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-size: 28px;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
.ctabutton #ctaarrow {
|
||||
margin-left: 18px;
|
||||
}
|
||||
.ctabutton:hover {
|
||||
/* font-size: 29px; */
|
||||
/* margin-left: 5px; */
|
||||
/* margin-top: 5px; */
|
||||
background-color: var(--ci_color_primary);
|
||||
-webkit-box-shadow: 10px 10px 30px 4px rgba(107,87,164,0.5);
|
||||
-moz-box-shadow: 10px 10px 30px 4px rgba(107,87,164,0.5);
|
||||
box-shadow: 10px 10px 30px 4px rgba(107,87,164,0.5);
|
||||
}
|
||||
.ctabutton:active {
|
||||
font-size: 27px;
|
||||
margin-top: 0;
|
||||
background-color: var(--ci_color_primary);
|
||||
-webkit-box-shadow: 10px 10px 30px 4px rgba(107,87,164,0.5);
|
||||
-moz-box-shadow: 10px 10px 30px 4px rgba(107,87,164,0.5);
|
||||
box-shadow: 10px 10px 30px 4px rgba(107,87,164,0.5);
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
import { React } from 'react'
|
||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||
import { faArrowRight } from '@fortawesome/free-solid-svg-icons'
|
||||
|
||||
import '../../main.min.css'
|
||||
import './CTAButton.min.css'
|
||||
import './MCTAButton.min.css'
|
||||
import { lP, oP } from '../../main.js'
|
||||
|
||||
|
||||
export default function CTAButton(props) {
|
||||
|
||||
return (
|
||||
// <div className='mainCon'>
|
||||
<div className={'ctabutton noselect ' + props.className} onClick={() => props.onclick()}>
|
||||
<font>{props.title}</font>
|
||||
{props.hideArrow != true ? <FontAwesomeIcon id="ctaarrow" icon={faArrowRight} /> : ""}
|
||||
</div>
|
||||
// </div>
|
||||
)
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
.ctabutton{display:inline-block;background:0;background-color:var(--ci_color_secondary);border:0;border-radius:28px;padding:10px;padding-left:18px;padding-right:18px;width:auto;color:#fff;cursor:pointer;font-family:Roboto,sans-serif;font-size:28px;transition:all .2s}.ctabutton #ctaarrow{margin-left:18px}.ctabutton:hover{background-color:var(--ci_color_primary);-webkit-box-shadow:10px 10px 30px 4px rgba(107,87,164,.5);-moz-box-shadow:10px 10px 30px 4px rgba(107,87,164,.5);box-shadow:10px 10px 30px 4px rgba(107,87,164,.5)}.ctabutton:active{font-size:27px;margin-top:0;background-color:var(--ci_color_primary);-webkit-box-shadow:10px 10px 30px 4px rgba(107,87,164,.5);-moz-box-shadow:10px 10px 30px 4px rgba(107,87,164,.5);box-shadow:10px 10px 30px 4px rgba(107,87,164,.5)}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
@media only screen and (max-width: 1380px) {
|
||||
.ctabutton {
|
||||
font-size: 22px;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
@media only screen and (max-width:1380px){.ctabutton{font-size:22px}}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
@media only screen and (max-width: 1380px) {
|
||||
.mainfooter {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 20px;
|
||||
border-top-left-radius: 70px;
|
||||
border-top-right-radius: 70px;
|
||||
position: relative;
|
||||
background-color: rgba(var(--ci_color_primary_rgb), 0.2);
|
||||
/* background-color: var(--ci_color_mainbg); */
|
||||
border-radius: 0;
|
||||
}
|
||||
.mainfooter .footercont {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.mainfooter .footercont .logocont {
|
||||
width: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.mainfooter .footercont .logocont img {
|
||||
height: 8vh;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
@media only screen and (max-width:1380px){.mainfooter{padding-top:100px;padding-bottom:20px;border-top-left-radius:70px;border-top-right-radius:70px;position:relative;background-color:rgba(var(--ci_color_primary_rgb),.2);border-radius:0}.mainfooter .footercont{width:100%;margin-left:0;display:flex;flex-direction:column;justify-content:space-evenly;align-items:center;gap:40px;padding-bottom:20px}.mainfooter .footercont .logocont{width:auto;display:flex;flex-direction:column;align-items:center}.mainfooter .footercont .logocont img{height:8vh;width:auto}}
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
.mainfooter {
|
||||
/* background-color: var(--ci_color_tilebg); */
|
||||
padding-top: 220px;
|
||||
/* 170 */
|
||||
padding-bottom: 20px;
|
||||
border-top-left-radius: 70px;
|
||||
border-top-right-radius: 70px;
|
||||
color: white;
|
||||
color: var(--ci_color_primary);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.mainfooter .footercont {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.mainfooter .footercont .logocont {
|
||||
color: var(--ci_color_primary);
|
||||
}
|
||||
|
||||
.mainfooter .footercont .logocont img {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.mainfooter .footercont .logocont .tonlogo {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.footerlinkscont {
|
||||
width: 40%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
.mainfooter .footercont .footerlinks {
|
||||
/* color: var(--ci_color_primary); */
|
||||
line-height: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mainfooter .footercont .footerlinks a {
|
||||
/* margin-top: 100px; */
|
||||
/* color: white; */
|
||||
}
|
||||
|
||||
.mainfooter p {
|
||||
/* color: var(--ci_color_primary); */
|
||||
text-align: center;
|
||||
}
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
|
||||
import { React, useState } from 'react'
|
||||
|
||||
import logo_breit from '../../assets/pictures/logos/GAT-Logo512.png'
|
||||
import ton_logo from '../../assets/pictures/logos/ton_logo-breit-white_cut-small.webp'
|
||||
// import socialmedia_placeholder from '../../assets/pictures/social-media-icons.png'
|
||||
|
||||
import { lP, oP, sT, URL_MAINAPI, API_TOKEN } from '../../main.js'
|
||||
|
||||
|
||||
import './MainFooter.min.css'
|
||||
import './MMainFooter.min.css'
|
||||
import '../../main.min.css'
|
||||
|
||||
var alternativeBG = `.mainfooter {
|
||||
background-color: rgba(var(--ci_color_primary_rgb), 0.2);
|
||||
// background-color: var(--ci_color_mainbg);
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.mainfooter .footerimage {
|
||||
display: none;
|
||||
}`
|
||||
|
||||
export default function MainFooter(props) {
|
||||
|
||||
|
||||
return (
|
||||
<div className='mainfooterdiv'>
|
||||
|
||||
{/* <style>{(props.altBG == true) ? alternativeBG : ""}</style> */}
|
||||
<style>{alternativeBG}</style>
|
||||
|
||||
<div className='mainfooter'>
|
||||
{/* <img src={footer_image} className='footerimage' /> */}
|
||||
|
||||
<div className='footercont'>
|
||||
<div className='logocont'>
|
||||
<img src={logo_breit} alt="thwGAT Logo" /><br /><br />
|
||||
<b>Ein Projekt von</b><br /><br />
|
||||
<img className="tonlogo" src={ton_logo} alt="ToNetwork Logo" onClick={() => oP("https://tonetwork.de")} />
|
||||
</div>
|
||||
<div className="footerlinkscont">
|
||||
<div className='footerlinks linkcont1'>
|
||||
<b>Shortcuts</b><br /><br />
|
||||
<a href='/'>Startseite</a><br /><br />
|
||||
<a href='https://tonetwork.de/datenschutz.php'>Impressum+Datenschutz</a><br /><br />
|
||||
<a href='https://tonetwork.de/support.php'>Support</a><br /><br />
|
||||
<a href='/about'>Über die App</a><br /><br />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<p>©2023 thwGAT (Ein Projekt der <a href="https://tonetwork.de" target="_blank">ToNetwork UG</a>)<br /><br />
|
||||
Fragen: v3.4 Dez 2022 (Urheber: THW)</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
.mainfooter{padding-top:220px;padding-bottom:20px;border-top-left-radius:70px;border-top-right-radius:70px;color:#fff;color:var(--ci_color_primary);position:relative}.mainfooter .footercont{display:flex;flex-direction:row;justify-content:space-evenly;align-items:center;gap:20px;padding-bottom:20px}.mainfooter .footercont .logocont{color:var(--ci_color_primary)}.mainfooter .footercont .logocont img{width:200px}.mainfooter .footercont .logocont .tonlogo{cursor:pointer}.footerlinkscont{width:40%;display:flex;flex-direction:column;justify-content:space-evenly}.mainfooter .footercont .footerlinks{line-height:15px;text-align:center}.mainfooter p{text-align:center}
|
||||